Initial revision
This commit is contained in:
196
util/cpp/replace.c
Normal file
196
util/cpp/replace.c
Normal file
@@ -0,0 +1,196 @@
|
||||
/* PREPROCESSOR: MACRO-TEXT REPLACEMENT ROUTINES */
|
||||
|
||||
#include "debug.h" /* UF */
|
||||
#include "pathlength.h" /* UF */
|
||||
#include "textsize.h" /* UF */
|
||||
|
||||
#include <alloc.h>
|
||||
#include <em_arith.h>
|
||||
#include <assert.h>
|
||||
#include "idf.h"
|
||||
#include "input.h"
|
||||
#include "macro.h"
|
||||
#include "LLlex.h"
|
||||
#include "class.h"
|
||||
#include "interface.h"
|
||||
|
||||
char *strcpy(), *strcat();
|
||||
char *long2str();
|
||||
|
||||
PRIVATE struct macro *ReplaceList; /* list of currently active macros */
|
||||
|
||||
EXPORT int
|
||||
replace(idef)
|
||||
register struct idf *idef;
|
||||
{
|
||||
/* replace() is called by the lexical analyzer to perform
|
||||
macro replacement. "idef" is the description of the
|
||||
identifier which leads to the replacement. If the
|
||||
optional actual parameters of the macro are OK, the text
|
||||
of the macro is prepared to serve as an input buffer,
|
||||
which is pushed onto the input stack.
|
||||
replace() returns 1 if the replacement succeeded and 0 if
|
||||
some error has occurred.
|
||||
*/
|
||||
register struct macro *mac = idef->id_macro;
|
||||
register char c;
|
||||
char **actpars, **getactuals();
|
||||
char *reptext, *macro2buffer();
|
||||
int size;
|
||||
|
||||
if (mac->mc_flag & NOREPLACE) {
|
||||
warning("macro %s is recursive", idef->id_text);
|
||||
return 0;
|
||||
}
|
||||
if (mac->mc_nps != -1) { /* with parameter list */
|
||||
if (mac->mc_flag & FUNC) {
|
||||
/* must be "defined".
|
||||
Unfortunately, the next assertion
|
||||
will not compile ...
|
||||
assert( ! strcmp("defined", idef->id_text));
|
||||
*/
|
||||
if (! AccDefined)
|
||||
return 0;
|
||||
}
|
||||
if (++mac->mc_count > 100) {
|
||||
/* 100 must be some number in Parameters */
|
||||
warning("macro %s is assumed recursive",
|
||||
idef->id_text);
|
||||
return 0;
|
||||
}
|
||||
LoadChar(c);
|
||||
c = skipspaces(c);
|
||||
if (c != '(') { /* no replacement if no () */
|
||||
error("macro %s needs arguments",
|
||||
idef->id_text);
|
||||
PushBack();
|
||||
return 0;
|
||||
}
|
||||
actpars = getactuals(idef); /* get act.param. list */
|
||||
if (mac->mc_flag & FUNC) {
|
||||
struct idf *param = findidf(*actpars);
|
||||
|
||||
if (param && param->id_macro)
|
||||
reptext = "1";
|
||||
else
|
||||
reptext = "0";
|
||||
InsertText(reptext, 1);
|
||||
mac->next = ReplaceList;
|
||||
ReplaceList = mac;
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
if (mac->mc_flag & FUNC) /* this macro leads to special action */
|
||||
macro_func(idef);
|
||||
if (mac->mc_nps <= 0) {
|
||||
mac->mc_flag |= NOREPLACE;
|
||||
reptext = mac->mc_text;
|
||||
size = mac->mc_length;
|
||||
}
|
||||
else reptext = macro2buffer(idef, actpars, &size); /* create input buffer */
|
||||
InsertText(reptext, size);
|
||||
mac->next = ReplaceList;
|
||||
ReplaceList = mac;
|
||||
return 1;
|
||||
}
|
||||
|
||||
char FilNamBuf[PATHLENGTH];
|
||||
|
||||
PRIVATE
|
||||
macro_func(idef)
|
||||
register struct idf *idef;
|
||||
{
|
||||
/* macro_func() performs the special actions needed with some
|
||||
macros. These macros are __FILE__ and __LINE__ which
|
||||
replacement texts must be evaluated at the time they are
|
||||
used.
|
||||
*/
|
||||
register struct macro *mac = idef->id_macro;
|
||||
|
||||
switch (idef->id_text[2]) { /* This switch is very blunt... */
|
||||
case 'F' : /* __FILE__ */
|
||||
mac->mc_length = strlen(FileName) + 2;
|
||||
mac->mc_text = FilNamBuf;
|
||||
mac->mc_text[0] = '"';
|
||||
strcpy(&(mac->mc_text[1]), FileName);
|
||||
strcat(mac->mc_text, "\"");
|
||||
break;
|
||||
case 'L' : /* __LINE__ */
|
||||
{
|
||||
mac->mc_text = long2str((long) LineNumber, 10);
|
||||
mac->mc_length = strlen(mac->mc_text);
|
||||
break;
|
||||
}
|
||||
default :
|
||||
crash("(macro_func)");
|
||||
}
|
||||
}
|
||||
|
||||
PRIVATE char *
|
||||
macro2buffer(idef, actpars, siztext)
|
||||
struct idf *idef;
|
||||
char **actpars;
|
||||
int *siztext;
|
||||
{
|
||||
/* Macro2buffer() turns the macro replacement text, as it is
|
||||
stored, into an input buffer, while each occurrence of the
|
||||
non-ascii formal parameter mark is replaced by its
|
||||
corresponding actual parameter specified in the actual
|
||||
parameter list actpars. A pointer to the beginning of the
|
||||
constructed text is returned, while *siztext is filled
|
||||
with its length.
|
||||
If there are no parameters, this function behaves
|
||||
the same as strcpy().
|
||||
*/
|
||||
register int size = idef->id_macro->mc_length + ITEXTSIZE;
|
||||
register char *text = Malloc(size);
|
||||
register int pos = 0;
|
||||
register char *ptr = idef->id_macro->mc_text;
|
||||
|
||||
while (*ptr) {
|
||||
if (*ptr & FORMALP) { /* non-asc formal param. mark */
|
||||
register int n = *ptr++ & 0177;
|
||||
register char *p;
|
||||
|
||||
assert(n != 0);
|
||||
/* copy the text of the actual parameter
|
||||
into the replacement text
|
||||
*/
|
||||
for (p = actpars[n - 1]; p && *p; p++) {
|
||||
text[pos++] = *p;
|
||||
if (pos == size)
|
||||
text = Srealloc(text, size += RTEXTSIZE);
|
||||
}
|
||||
}
|
||||
else {
|
||||
text[pos++] = *ptr++;
|
||||
if (pos == size)
|
||||
text = Srealloc(text, size += RTEXTSIZE);
|
||||
}
|
||||
}
|
||||
text[pos] = '\0';
|
||||
*siztext = pos;
|
||||
return text;
|
||||
}
|
||||
|
||||
EXPORT
|
||||
DoUnstack()
|
||||
{
|
||||
Unstacked++;
|
||||
}
|
||||
|
||||
EXPORT
|
||||
EnableMacros()
|
||||
{
|
||||
register struct macro *p = ReplaceList;
|
||||
|
||||
assert(Unstacked > 0);
|
||||
while (Unstacked > 0) {
|
||||
assert(p != 0);
|
||||
p->mc_flag &= ~NOREPLACE;
|
||||
p->mc_count = 0;
|
||||
p = p->next;
|
||||
Unstacked--;
|
||||
}
|
||||
ReplaceList = p;
|
||||
}
|
||||
Reference in New Issue
Block a user