ack/lang/cem/cemcom/domacro.c

760 lines
17 KiB
C
Raw Normal View History

/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
1994-06-24 14:02:31 +00:00
/* $Id$ */
1986-03-10 13:07:55 +00:00
/* PREPROCESSOR: CONTROLLINE INTERPRETER */
#include "interface.h"
#include "arith.h"
#include "LLlex.h"
#include "Lpars.h"
#include "debug.h"
#include "idf.h"
#include "input.h"
#include "nopp.h"
#include "lint.h"
1986-03-10 13:07:55 +00:00
#ifndef NOPP
1991-11-08 15:12:28 +00:00
#include "ifdepth.h"
#include "botch_free.h"
#include "nparams.h"
#include "parbufsize.h"
#include "textsize.h"
#include "idfsize.h"
1986-03-10 13:07:55 +00:00
#include "assert.h"
#include <alloc.h>
1986-03-10 13:07:55 +00:00
#include "class.h"
#include "macro.h"
1991-11-08 15:12:28 +00:00
#include "dbsymtab.h"
#ifdef DBSYMTAB
#include <stb.h>
#include <em.h>
1991-11-08 15:12:28 +00:00
int IncludeLevel = 0;
extern char options[];
#endif
1986-03-10 13:07:55 +00:00
IMPORT char **inctable; /* list of include directories */
IMPORT char *getwdir();
1986-03-10 13:07:55 +00:00
PRIVATE char ifstack[IFDEPTH]; /* if-stack: the content of an entry is */
/* 1 if a corresponding ELSE has been */
/* encountered. */
int nestlevel = -1;
PRIVATE do_include();
PRIVATE ifexpr();
PRIVATE do_define();
PRIVATE push_if();
PRIVATE do_elif();
PRIVATE do_else();
PRIVATE do_endif();
PRIVATE do_if();
PRIVATE do_ifdef();
PRIVATE do_undef();
PRIVATE int getparams();
PRIVATE char *get_text();
PRIVATE int macroeq();
PRIVATE SkipRestOfLine();
PRIVATE do_line();
struct idf *
1986-03-10 13:07:55 +00:00
GetIdentifier()
{
/* returns a pointer to the descriptor of the identifier that is
read from the input stream. A null-pointer is returned if
the input does not contain an identifier.
The substitution of macros is disabled.
*/
int tok;
struct token tk;
ReplaceMacros = 0;
tok = GetToken(&tk);
ReplaceMacros = 1;
return tok == IDENTIFIER ? tk.tk_idf : (struct idf *)0;
}
/* domacro() is the control line interpreter. The '#' has already
been read by the lexical analyzer by which domacro() is called.
The token appearing directly after the '#' is obtained by calling
the basic lexical analyzing function GetToken() and is interpreted
to perform the action belonging to that token.
An error message is produced when the token is not recognized,
i.e. it is not one of "define" .. "undef" , integer or newline.
*/
EXPORT
domacro()
{
struct token tk; /* the token itself */
EoiForNewline = 1;
SkipEscNewline = 1;
switch(GetToken(&tk)) { /* select control line action */
case IDENTIFIER: /* is it a macro keyword? */
switch (tk.tk_idf->id_resmac) {
case K_DEFINE: /* "define" */
do_define();
break;
case K_ELIF: /* "elif" */
do_elif();
break;
case K_ELSE: /* "else" */
do_else();
break;
case K_ENDIF: /* "endif" */
do_endif();
break;
case K_IF: /* "if" */
do_if();
break;
case K_IFDEF: /* "ifdef" */
do_ifdef(1);
break;
case K_IFNDEF: /* "ifndef" */
do_ifdef(0);
break;
case K_INCLUDE: /* "include" */
do_include();
break;
case K_LINE: /* "line" */
/* set LineNumber and FileName according to
the arguments.
*/
if (GetToken(&tk) != INTEGER) {
lexerror("#line without linenumber");
SkipRestOfLine();
}
else
do_line((unsigned int)tk.tk_ival);
break;
case K_UNDEF: /* "undef" */
do_undef();
break;
1989-03-31 11:47:12 +00:00
case K_PRAGMA: /* "pragma" */
/* ignore for now
*/
SkipRestOfLine();
break;
1986-03-10 13:07:55 +00:00
default:
/* invalid word seen after the '#' */
lexerror("%s: unknown control", tk.tk_idf->id_text);
SkipRestOfLine();
}
break;
case INTEGER: /* # <integer> [<filespecifier>]? */
do_line((unsigned int)tk.tk_ival);
break;
case EOI: /* only `#' on this line: do nothing, ignore */
break;
default: /* invalid token following '#' */
lexerror("illegal # line");
SkipRestOfLine();
}
EoiForNewline = 0;
SkipEscNewline = 0;
}
#ifdef LINT
int lint_skip_comment;
#endif
1986-03-10 13:07:55 +00:00
PRIVATE
1989-05-29 11:32:23 +00:00
skip_block(to_endif)
1986-03-10 13:07:55 +00:00
{
/* skip_block() skips the input from
1) a false #if, #ifdef, #ifndef or #elif until the
corresponding #elif (resulting in true), #else or
#endif is read.
2) a #else corresponding to a true #if, #ifdef,
#ifndef or #elif until the corresponding #endif is
seen.
*/
register int ch;
register int skiplevel = nestlevel; /* current nesting level */
1986-03-10 13:07:55 +00:00
struct token tk;
#ifdef LINT
lint_skip_comment++;
#endif
1986-03-10 13:07:55 +00:00
NoUnstack++;
for (;;) {
LoadChar(ch); /* read first character after newline */
if (ch != '#') {
if (ch == EOI) {
NoUnstack--;
#ifdef LINT
lint_skip_comment--;
#endif
1986-03-10 13:07:55 +00:00
return;
}
SkipRestOfLine();
continue;
}
if (GetToken(&tk) != IDENTIFIER) {
SkipRestOfLine();
continue;
}
/* an IDENTIFIER: look for #if, #ifdef and #ifndef
without interpreting them.
Interpret #else, #elif and #endif if they occur
on the same level.
*/
switch(tk.tk_idf->id_resmac) {
default:
SkipRestOfLine();
break;
1986-03-10 13:07:55 +00:00
case K_IF:
case K_IFDEF:
case K_IFNDEF:
push_if();
SkipRestOfLine();
1986-03-10 13:07:55 +00:00
break;
case K_ELIF:
if (ifstack[nestlevel])
lexwarning("#elif without corresponding #if");
1989-05-29 11:32:23 +00:00
if (! to_endif && nestlevel == skiplevel) {
1986-03-10 13:07:55 +00:00
nestlevel--;
push_if();
if (ifexpr()) {
NoUnstack--;
#ifdef LINT
lint_skip_comment--;
#endif
1986-03-10 13:07:55 +00:00
return;
}
}
else SkipRestOfLine();
1986-03-10 13:07:55 +00:00
break;
case K_ELSE:
if (ifstack[nestlevel])
lexwarning("#else without corresponding #if");
SkipRestOfLine();
1989-05-29 11:32:23 +00:00
if (! to_endif) {
++(ifstack[nestlevel]);
if (nestlevel == skiplevel) {
NoUnstack--;
#ifdef LINT
lint_skip_comment--;
#endif
1989-05-29 11:32:23 +00:00
return;
}
1986-03-10 13:07:55 +00:00
}
break;
case K_ENDIF:
ASSERT(nestlevel > nestlow);
SkipRestOfLine();
1986-03-10 13:07:55 +00:00
if (nestlevel == skiplevel) {
nestlevel--;
NoUnstack--;
#ifdef LINT
lint_skip_comment--;
#endif
1986-03-10 13:07:55 +00:00
return;
}
nestlevel--;
break;
}
}
}
PRIVATE
ifexpr()
{
/* ifexpr() returns whether the restricted constant
expression following #if or #elif evaluates to true. This
is done by calling the LLgen generated subparser for
constant expressions. The result of this expression will
be given in the extern long variable "ifval".
*/
IMPORT arith ifval;
int errors = err_occurred;
ifval = (arith)0;
AccDefined = 1;
UnknownIdIsZero = 1;
PushLex(); /* NEW parser */
If_expr(); /* invoke constant expression parser */
PopLex(); /* OLD parser */
AccDefined = 0;
UnknownIdIsZero = 0;
return (errors == err_occurred) && (ifval != (arith)0);
}
PRIVATE
do_include()
{
/* do_include() performs the inclusion of a file.
*/
char *filenm;
char *result;
1986-03-10 13:07:55 +00:00
int tok;
struct token tk;
AccFileSpecifier = 1;
if (((tok = GetToken(&tk)) == FILESPECIFIER) || tok == STRING)
filenm = tk.tk_bts;
1986-03-10 13:07:55 +00:00
else {
lexerror("bad include syntax");
filenm = (char *)0;
}
AccFileSpecifier = 0;
SkipRestOfLine();
inctable[0] = WorkingDir;
if (filenm) {
if (!InsertFile(filenm, &inctable[tok==FILESPECIFIER],&result)){
fatal("cannot open include file \"%s\"", filenm);
}
else {
1990-06-06 14:42:53 +00:00
add_dependency(result);
WorkingDir = getwdir(result);
File_Inserted = 1;
FileName = result;
LineNumber = 0;
nestlow = nestlevel;
1991-11-08 15:12:28 +00:00
#ifdef DBSYMTAB
IncludeLevel++;
if (options['g']) {
C_ms_stb_cst(FileName, N_BINCL, 0, (arith) 0);
1991-11-08 15:12:28 +00:00
}
#endif /* DBSYMTAB */
}
}
1986-03-10 13:07:55 +00:00
}
PRIVATE
do_define()
{
/* do_define() interprets a #define control line.
*/
struct idf *id; /* the #defined identifier's descriptor */
int nformals = -1; /* keep track of the number of formals */
char *formals[NPARAMS]; /* pointers to the names of the formals */
char parbuf[PARBUFSIZE]; /* names of formals */
char *repl_text; /* start of the replacement text */
int length; /* length of the replacement text */
register ch;
/* read the #defined macro's name */
if (!(id = GetIdentifier())) {
lexerror("#define: illegal macro name");
SkipRestOfLine();
return;
}
/* there is a formal parameter list if the identifier is
1991-11-08 15:12:28 +00:00
followed immediately by a '('.
1986-03-10 13:07:55 +00:00
*/
LoadChar(ch);
if (ch == '(') {
if ((nformals = getparams(formals, parbuf)) == -1) {
SkipRestOfLine();
return; /* an error occurred */
}
LoadChar(ch);
}
/* read the replacement text if there is any */
ch = skipspaces(ch,0); /* find first character of the text */
1986-03-10 13:07:55 +00:00
ASSERT(ch != EOI);
if (class(ch) == STNL) {
/* Treat `#define something' as `#define something ""'
*/
repl_text = "";
length = 0;
}
else {
PushBack();
repl_text = get_text((nformals > 0) ? formals : 0, &length);
}
macro_def(id, repl_text, nformals, length, NOFLAG);
LineNumber++;
}
PRIVATE
push_if()
{
if (nestlevel >= IFDEPTH)
fatal("too many nested #if/#ifdef/#ifndef");
else
ifstack[++nestlevel] = 0;
}
PRIVATE
do_elif()
{
if (nestlevel <= nestlow || (ifstack[nestlevel])) {
1986-03-10 13:07:55 +00:00
lexerror("#elif without corresponding #if");
SkipRestOfLine();
}
else { /* restart at this level as if a #if is detected. */
1986-03-10 13:07:55 +00:00
nestlevel--;
push_if();
1989-05-29 11:32:23 +00:00
skip_block(1);
1986-03-10 13:07:55 +00:00
}
}
PRIVATE
do_else()
{
SkipRestOfLine();
if (nestlevel <= nestlow || (ifstack[nestlevel]))
1986-03-10 13:07:55 +00:00
lexerror("#else without corresponding #if");
else { /* mark this level as else-d */
++(ifstack[nestlevel]);
1989-05-29 11:32:23 +00:00
skip_block(1);
1986-03-10 13:07:55 +00:00
}
}
PRIVATE
do_endif()
{
SkipRestOfLine();
if (nestlevel <= nestlow) {
1986-03-10 13:07:55 +00:00
lexerror("#endif without corresponding #if");
}
else nestlevel--;
1986-03-10 13:07:55 +00:00
}
PRIVATE
do_if()
{
push_if();
if (!ifexpr()) /* a false #if/#elif expression */
1989-05-29 11:32:23 +00:00
skip_block(0);
1986-03-10 13:07:55 +00:00
}
PRIVATE
do_ifdef(how)
{
register struct idf *id;
1986-03-10 13:07:55 +00:00
/* how == 1 : ifdef; how == 0 : ifndef
*/
push_if();
if (!(id = GetIdentifier()))
1986-03-10 13:07:55 +00:00
lexerror("illegal #ifdef construction");
/* The next test is a shorthand for:
(how && !id->id_macro) || (!how && id->id_macro)
*/
if (how ^ (id && id->id_macro != 0))
1989-05-29 11:32:23 +00:00
skip_block(0);
else
1986-03-10 13:07:55 +00:00
SkipRestOfLine();
}
PRIVATE
do_undef()
{
register struct idf *id;
1986-03-10 13:07:55 +00:00
/* Forget a macro definition. */
if (id = GetIdentifier()) {
if (id->id_macro) { /* forget the macro */
1986-03-10 13:07:55 +00:00
free_macro(id->id_macro);
id->id_macro = (struct macro *) 0;
} /* else: don't complain */
1986-03-10 13:07:55 +00:00
}
else
lexerror("illegal #undef construction");
SkipRestOfLine();
}
PRIVATE int
getparams(buf, parbuf)
char *buf[];
char parbuf[];
{
/* getparams() reads the formal parameter list of a macro
definition.
The number of parameters is returned.
As a formal parameter list is expected when calling this
routine, -1 is returned if an error is detected, for
example:
#define one(1), where 1 is not an identifier.
Note that the '(' has already been eaten.
The names of the formal parameters are stored into parbuf.
*/
register char **pbuf = &buf[0];
register int c;
1986-03-10 13:07:55 +00:00
register char *ptr = &parbuf[0];
register char **pbuf2;
1986-03-10 13:07:55 +00:00
LoadChar(c);
c = skipspaces(c,0);
1986-03-10 13:07:55 +00:00
if (c == ')') { /* no parameters: #define name() */
*pbuf = (char *) 0;
1986-03-10 13:07:55 +00:00
return 0;
}
for (;;) { /* eat the formal parameter list */
if (class(c) != STIDF) { /* not an identifier */
lexerror("#define: bad formal parameter");
return -1;
}
*pbuf = ptr; /* name of the formal */
1986-03-10 13:07:55 +00:00
*ptr++ = c;
if (ptr >= &parbuf[PARBUFSIZE])
fatal("formal parameter buffer overflow");
do { /* eat the identifier name */
LoadChar(c);
*ptr++ = c;
if (ptr >= &parbuf[PARBUFSIZE])
fatal("formal parameter buffer overflow");
} while (in_idf(c));
*(ptr - 1) = '\0'; /* mark end of the name */
/* Check if this formal parameter is already used.
Usually, macros do not have many parameters, so ...
*/
for (pbuf2 = pbuf - 1; pbuf2 >= &buf[0]; pbuf2--) {
if (!strcmp(*pbuf2, *pbuf)) {
warning("formal parameter \"%s\" already used",
*pbuf);
}
}
pbuf++;
c = skipspaces(c,0);
1986-03-10 13:07:55 +00:00
if (c == ')') { /* end of the formal parameter list */
*pbuf = (char *) 0;
return pbuf - buf;
1986-03-10 13:07:55 +00:00
}
if (c != ',') {
lexerror("#define: bad formal parameter list");
return -1;
}
LoadChar(c);
c = skipspaces(c,0);
1986-03-10 13:07:55 +00:00
}
/*NOTREACHED*/
1986-03-10 13:07:55 +00:00
}
EXPORT
macro_def(id, text, nformals, length, flags)
register struct idf *id;
1986-03-10 13:07:55 +00:00
char *text;
{
register struct macro *newdef = id->id_macro;
/* macro_def() puts the contents and information of a macro
definition into a structure and stores it into the symbol
table entry belonging to the name of the macro.
A warning is given if the definition overwrites another.
1986-03-10 13:07:55 +00:00
*/
if (newdef) { /* is there a redefinition? */
if (macroeq(newdef->mc_text, text))
return;
lexwarning("redefine \"%s\"", id->id_text);
1986-03-10 13:07:55 +00:00
}
else
id->id_macro = newdef = new_macro();
newdef->mc_text = text; /* replacement text */
1991-11-08 15:12:28 +00:00
newdef->mc_nps = nformals; /* nr of formals */
1986-03-10 13:07:55 +00:00
newdef->mc_length = length; /* length of repl. text */
newdef->mc_flag = flags; /* special flags */
newdef->mc_count = 0;
1986-03-10 13:07:55 +00:00
}
PRIVATE int
find_name(nm, index)
char *nm, *index[];
{
/* find_name() returns the index of "nm" in the namelist
"index" if it can be found there. 0 is returned if it is
not there.
*/
register char **ip = &index[0];
while (*ip)
if (strcmp(nm, *ip++) == 0)
return ip - &index[0];
/* arrived here, nm is not in the name list. */
return 0;
}
PRIVATE char *
get_text(formals, length)
char *formals[];
int *length;
{
/* get_text() copies the replacement text of a macro
definition with zero, one or more parameters, thereby
substituting each formal parameter by a special character
(non-ascii: 0200 & (order-number in the formal parameter
list)) in order to substitute this character later by the
actual parameter. The replacement text is copied into
itself because the copied text will contain fewer or the
same amount of characters. The length of the replacement
text is returned.
Implementation:
finite automaton : we are only interested in
identifiers, because they might be replaced by some actual
parameter. Other tokens will not be seen as such.
*/
register int c;
register int text_size;
1986-03-10 13:07:55 +00:00
char *text = Malloc(text_size = ITEXTSIZE);
register int pos = 0;
1986-03-10 13:07:55 +00:00
LoadChar(c);
while ((c != EOI) && (class(c) != STNL)) {
if (c == '\\') { /* check for "\\\n" */
LoadChar(c);
if (c == '\n') {
1986-03-17 17:47:04 +00:00
/* More than one line is used for the
replacement text.
Replace "\\\n" by " ".
1986-03-10 13:07:55 +00:00
*/
text[pos++] = ' ';
++LineNumber;
LoadChar(c);
}
else
text[pos++] = '\\';
if (pos == text_size)
text = Srealloc(text, text_size += RTEXTSIZE);
}
else
if ( c == '/') {
LoadChar(c);
if (c == '*') {
skipcomment();
/* text[pos++] = ' '; ??? Why ??? */
1986-03-10 13:07:55 +00:00
LoadChar(c);
}
else
text[pos++] = '/';
if (pos == text_size)
text = Srealloc(text, text_size += RTEXTSIZE);
}
else
if (formals && class(c) == STIDF) {
char id_buf[IDFSIZE + 1];
register id_size = 0;
register n;
/* read identifier: it may be a formal parameter */
id_buf[id_size++] = c;
do {
LoadChar(c);
if (id_size <= IDFSIZE)
id_buf[id_size++] = c;
} while (in_idf(c));
id_buf[--id_size] = '\0';
if (n = find_name(id_buf, formals)) {
/* construct the formal parameter mark */
text[pos++] = FORMALP | (char) n;
if (pos == text_size)
text = Srealloc(text,
text_size += RTEXTSIZE);
}
else {
register char *ptr = &id_buf[0];
while (pos + id_size >= text_size)
text = Srealloc(text,
text_size += RTEXTSIZE);
while (text[pos++] = *ptr++) ;
pos--;
}
}
else {
text[pos++] = c;
if (pos == text_size)
text = Srealloc(text, text_size += RTEXTSIZE);
LoadChar(c);
}
}
text[pos++] = '\0';
*length = pos - 1;
return text;
}
#define BLANK(ch) ((ch == ' ') || (ch == '\t'))
/* macroeq() decides whether two macro replacement texts are
identical. This version compares the texts, which occur
as strings, without taking care of the leading and trailing
blanks (spaces and tabs).
*/
PRIVATE int
1986-03-10 13:07:55 +00:00
macroeq(s, t)
register char *s, *t;
{
1991-11-08 15:12:28 +00:00
1986-03-10 13:07:55 +00:00
/* skip leading spaces */
while (BLANK(*s)) s++;
while (BLANK(*t)) t++;
/* first non-blank encountered in both strings */
/* The actual comparison loop: */
while (*s && *s == *t)
s++, t++;
/* two cases are possible when arrived here: */
if (*s == '\0') { /* *s == '\0' */
while (BLANK(*t)) t++;
return *t == '\0';
}
else { /* *s != *t */
while (BLANK(*s)) s++;
while (BLANK(*t)) t++;
return (*s == '\0') && (*t == '\0');
}
}
#else /* NOPP */
1986-03-10 13:07:55 +00:00
EXPORT
domacro()
{
int tok;
struct token tk;
EoiForNewline = 1;
SkipEscNewline = 1;
if ((tok = GetToken(&tk)) == IDENTIFIER) {
if (strcmp(tk.tk_idf->id_text, "line") != 0) {
error("illegal # line");
SkipRestOfLine();
return;
}
tok = GetToken(&tk);
}
if (tok != INTEGER) {
error("illegal # line");
SkipRestOfLine();
return;
}
1987-03-20 08:30:31 +00:00
do_line((unsigned int) tk.tk_ival);
1986-03-10 13:07:55 +00:00
EoiForNewline = 0;
SkipEscNewline = 0;
}
#endif /* NOPP */
1986-03-10 13:07:55 +00:00
PRIVATE
SkipRestOfLine()
{
/* we do a PushBack because we don't want to skip the next line
if the last character was a newline
*/
PushBack();
skipline();
}
PRIVATE
do_line(l)
unsigned int l;
{
struct token tk;
1989-11-17 14:53:05 +00:00
int t = GetToken(&tk);
1989-11-17 14:53:05 +00:00
SkipRestOfLine();
LineNumber = l; /* the number of the next input line */
if (t == STRING) { /* is there a filespecifier? */
#ifdef DBSYMTAB
if (options['g'] && strcmp(FileName, tk.tk_bts) != 0) {
C_ms_std(tk.tk_bts, N_SOL, 0);
}
#endif /* DBSYMTAB */
FileName = tk.tk_bts;
}
}