1987-04-29 10:22:07 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*
|
|
|
|
* Author: Ceriel J.H. Jacobs
|
|
|
|
*/
|
|
|
|
|
1986-04-17 09:28:09 +00:00
|
|
|
/* U S E R O P T I O N - H A N D L I N G */
|
|
|
|
|
1987-04-29 10:22:07 +00:00
|
|
|
/* $Header$ */
|
|
|
|
|
1986-04-17 09:28:09 +00:00
|
|
|
#include "idfsize.h"
|
1986-04-25 10:14:08 +00:00
|
|
|
#include "ndir.h"
|
1986-04-17 09:28:09 +00:00
|
|
|
|
1986-05-01 19:06:53 +00:00
|
|
|
#include <em_arith.h>
|
|
|
|
#include <em_label.h>
|
|
|
|
|
1986-04-17 09:28:09 +00:00
|
|
|
#include "type.h"
|
1986-04-25 10:14:08 +00:00
|
|
|
#include "main.h"
|
1986-11-05 14:33:00 +00:00
|
|
|
#include "warning.h"
|
1986-04-17 09:28:09 +00:00
|
|
|
|
1986-11-17 11:41:28 +00:00
|
|
|
#define MINIDFSIZE 14
|
|
|
|
|
|
|
|
#if MINIDFSIZE < 14
|
|
|
|
You fouled up! MINIDFSIZE has to be at least 14 or the compiler will not
|
|
|
|
recognize some keywords!
|
|
|
|
#endif
|
|
|
|
|
1986-04-17 09:28:09 +00:00
|
|
|
extern int idfsize;
|
1987-04-29 10:22:07 +00:00
|
|
|
static int ndirs = 1;
|
1986-11-05 14:33:00 +00:00
|
|
|
int warning_classes;
|
1986-04-25 10:14:08 +00:00
|
|
|
|
1986-05-01 19:06:53 +00:00
|
|
|
DoOption(text)
|
1986-10-06 20:36:30 +00:00
|
|
|
register char *text;
|
1986-04-17 09:28:09 +00:00
|
|
|
{
|
|
|
|
switch(*text++) {
|
|
|
|
|
1987-04-29 10:22:07 +00:00
|
|
|
case '-':
|
|
|
|
options[*text]++; /* debug options etc. */
|
1986-04-17 09:28:09 +00:00
|
|
|
break;
|
|
|
|
|
1987-04-29 10:22:07 +00:00
|
|
|
case 'L': /* no fil/lin */
|
|
|
|
case 'p': /* call procentry/procexit */
|
|
|
|
case 'n': /* no register messages */
|
|
|
|
case 'x': /* every name global */
|
|
|
|
options[text[-1]]++;
|
|
|
|
break;
|
1986-04-17 09:28:09 +00:00
|
|
|
|
1986-11-05 14:33:00 +00:00
|
|
|
case 'w':
|
|
|
|
if (*text) {
|
|
|
|
while (*text) {
|
|
|
|
switch(*text++) {
|
|
|
|
case 'O':
|
|
|
|
warning_classes &= ~W_OLDFASHIONED;
|
|
|
|
break;
|
|
|
|
case 'R':
|
|
|
|
warning_classes &= ~W_STRICT;
|
|
|
|
break;
|
|
|
|
case 'W':
|
|
|
|
warning_classes &= ~W_ORDINARY;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else warning_classes = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'W':
|
|
|
|
while (*text) {
|
|
|
|
switch(*text++) {
|
|
|
|
case 'O':
|
|
|
|
warning_classes |= W_OLDFASHIONED;
|
|
|
|
break;
|
|
|
|
case 'R':
|
|
|
|
warning_classes |= W_STRICT;
|
|
|
|
break;
|
|
|
|
case 'W':
|
|
|
|
warning_classes |= W_ORDINARY;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
1986-10-06 20:36:30 +00:00
|
|
|
case 'M': { /* maximum identifier length */
|
|
|
|
char *t = text; /* because &text is illegal */
|
|
|
|
|
|
|
|
idfsize = txt2int(&t);
|
|
|
|
if (*t || idfsize <= 0)
|
1986-04-17 09:28:09 +00:00
|
|
|
fatal("malformed -M option");
|
1986-11-17 11:41:28 +00:00
|
|
|
if (idfsize > IDFSIZE) {
|
|
|
|
idfsize = IDFSIZE;
|
|
|
|
warning(W_ORDINARY,"maximum identifier length is %d", IDFSIZE);
|
|
|
|
}
|
|
|
|
if (idfsize < MINIDFSIZE) {
|
|
|
|
warning(W_ORDINARY, "minimum identifier length is %d", MINIDFSIZE);
|
|
|
|
idfsize = MINIDFSIZE;
|
|
|
|
}
|
1986-10-06 20:36:30 +00:00
|
|
|
}
|
1986-04-17 09:28:09 +00:00
|
|
|
break;
|
|
|
|
|
1986-04-25 10:14:08 +00:00
|
|
|
case 'I' :
|
1986-12-09 17:41:06 +00:00
|
|
|
if (*text) {
|
|
|
|
register int i = ndirs++;
|
|
|
|
register char *new = text;
|
|
|
|
while (new) {
|
|
|
|
register char *tmp = DEFPATH[i];
|
|
|
|
|
|
|
|
if (i >= NDIRS)
|
|
|
|
fatal("too many -I options");
|
|
|
|
DEFPATH[i++] = new;
|
|
|
|
new = tmp;
|
|
|
|
}
|
1986-04-25 10:14:08 +00:00
|
|
|
}
|
1986-12-09 17:41:06 +00:00
|
|
|
else DEFPATH[ndirs] = 0;
|
1986-04-25 10:14:08 +00:00
|
|
|
break;
|
|
|
|
|
1986-04-17 09:28:09 +00:00
|
|
|
case 'V' : /* set object sizes and alignment requirements */
|
|
|
|
{
|
|
|
|
arith size;
|
|
|
|
int align;
|
|
|
|
char c;
|
1986-10-06 20:36:30 +00:00
|
|
|
char *t;
|
1986-04-17 09:28:09 +00:00
|
|
|
|
|
|
|
while (c = *text++) {
|
1986-10-06 20:36:30 +00:00
|
|
|
t = text;
|
|
|
|
size = txt2int(&t);
|
1986-04-17 09:28:09 +00:00
|
|
|
align = 0;
|
1986-10-06 20:36:30 +00:00
|
|
|
if (*(text = t) == '.') {
|
|
|
|
t = text + 1;
|
|
|
|
align = txt2int(&t);
|
|
|
|
text = t;
|
1986-04-17 09:28:09 +00:00
|
|
|
}
|
|
|
|
switch (c) {
|
|
|
|
|
|
|
|
case 'w': /* word */
|
1986-05-16 17:15:36 +00:00
|
|
|
if (size != (arith)0) {
|
|
|
|
word_size = size;
|
|
|
|
dword_size = 2 * size;
|
|
|
|
}
|
1986-04-17 09:28:09 +00:00
|
|
|
if (align != 0) word_align = align;
|
|
|
|
break;
|
|
|
|
case 'i': /* int */
|
|
|
|
if (size != (arith)0) int_size = size;
|
|
|
|
if (align != 0) int_align = align;
|
|
|
|
break;
|
1986-11-17 11:41:28 +00:00
|
|
|
case 's': /* short (subranges) */
|
|
|
|
if (size != 0) short_size = size;
|
|
|
|
if (align != 0) short_align = align;
|
|
|
|
break;
|
1986-04-17 09:28:09 +00:00
|
|
|
case 'l': /* longint */
|
|
|
|
if (size != (arith)0) long_size = size;
|
|
|
|
if (align != 0) long_align = align;
|
|
|
|
break;
|
|
|
|
case 'f': /* real */
|
|
|
|
if (size != (arith)0) float_size = size;
|
|
|
|
if (align != 0) float_align = align;
|
|
|
|
break;
|
|
|
|
case 'd': /* longreal */
|
|
|
|
if (size != (arith)0) double_size = size;
|
|
|
|
if (align != 0) double_align = align;
|
|
|
|
break;
|
|
|
|
case 'p': /* pointer */
|
|
|
|
if (size != (arith)0) pointer_size = size;
|
|
|
|
if (align != 0) pointer_align = align;
|
|
|
|
break;
|
|
|
|
case 'S': /* initial record alignment */
|
|
|
|
if (align != (arith)0) struct_align = align;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error("-V: bad type indicator %c\n", c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
txt2int(tp)
|
1986-10-06 20:36:30 +00:00
|
|
|
register char **tp;
|
1986-04-17 09:28:09 +00:00
|
|
|
{
|
|
|
|
/* the integer pointed to by *tp is read, while increasing
|
|
|
|
*tp; the resulting value is yielded.
|
|
|
|
*/
|
|
|
|
register int val = 0;
|
|
|
|
register int ch;
|
|
|
|
|
|
|
|
while (ch = **tp, ch >= '0' && ch <= '9') {
|
|
|
|
val = val * 10 + ch - '0';
|
|
|
|
(*tp)++;
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|