ack/util/LLgen/lib/rec

248 lines
4.7 KiB
Plaintext
Raw Normal View History

1984-10-08 14:14:53 +00:00
/*
* Some grammar independent code.
* This file is copied into Lpars.c.
*/
1985-11-25 15:50:19 +00:00
# ifndef lint
1984-10-08 14:14:53 +00:00
static char *rcsid = "$Header$";
1984-10-09 10:16:33 +00:00
# endif
1984-10-08 14:14:53 +00:00
1985-11-25 15:50:19 +00:00
# ifdef LL_DEBUG
# include <stdio.h>
# endif
1984-10-08 14:14:53 +00:00
int LLsymb;
1985-11-25 15:50:19 +00:00
unsigned int LLtcnt[LL_NTERMINALS];
unsigned int LLscnt[LL_NSETS];
int LLcsymb, LLsymb;
1984-10-08 14:14:53 +00:00
static int LLlevel;
/* In this file are defined: */
1985-11-25 15:50:19 +00:00
extern LLread();
extern int LLskip();
extern int LLnext();
1984-10-08 14:14:53 +00:00
extern LLscan();
1985-11-25 15:50:19 +00:00
extern LLerror();
# ifndef LLNOFIRSTS
extern int LLfirst();
# endif
1984-10-08 14:14:53 +00:00
extern LLnewlevel();
extern LLoldlevel();
LLscan(t) {
/*
* Check if the next symbol is equal to the parameter
*/
1985-11-25 15:50:19 +00:00
if ((LLsymb = LL_LEXI()) <= 0) LLsymb = EOFILE;
if (LLsymb == t) {
return;
1984-10-08 14:14:53 +00:00
}
/*
* If we come here, an error has been detected
*/
1985-11-25 15:50:19 +00:00
LLerror(t);
}
LLread() {
for (;;) {
1984-10-08 14:14:53 +00:00
if ((LLsymb = LL_LEXI()) <= 0) LLsymb = EOFILE;
1985-11-25 15:50:19 +00:00
if ((LLcsymb = LLindex[LLsymb]) >= 0) return;
LLmessage(0);
1984-10-08 14:14:53 +00:00
}
1985-11-25 15:50:19 +00:00
/* NOTREACHED */
1984-10-08 14:14:53 +00:00
}
1985-11-25 15:50:19 +00:00
LLerror(t) {
register int i;
1984-10-08 14:14:53 +00:00
#ifdef LL_NEWMESS
if (t == EOFILE) {
1987-03-02 16:15:07 +00:00
#ifdef LL_USERHOOK
1987-04-13 16:34:46 +00:00
static int lst[] = { EOFILE, 0 };
LLuserhook(EOFILE, lst);
1987-03-02 16:15:07 +00:00
#endif LL_USERHOOK
if (LLsymb != EOFILE) {
LLmessage(-1);
while ((LLsymb = LL_LEXI()) > 0) /* nothing */ ;
}
return;
}
#endif
1985-11-25 15:50:19 +00:00
if ((LLcsymb = LLindex[LLsymb]) < 0) {
LLmessage(0);
LLread();
1984-10-08 14:14:53 +00:00
}
1985-11-25 15:50:19 +00:00
i = LLindex[t];
LLtcnt[i]++;
1987-02-23 10:50:15 +00:00
#ifdef LL_USERHOOK
if (LLdoskip(t)) /* nothing */;
#else
if (LLskip()) /* nothing */;
#endif
1985-11-25 15:50:19 +00:00
LLtcnt[i]--;
if (LLsymb != t) LLmessage(t);
1984-10-08 14:14:53 +00:00
}
1985-11-25 15:50:19 +00:00
# ifndef LLNOFIRSTS
LLfirst(x, d) {
register int i;
1984-10-08 14:14:53 +00:00
1985-11-25 15:50:19 +00:00
return (i = LLindex[x]) >= 0 &&
(LLsets[d + (i >> 3)] & (1 << (i & 07)));
1984-10-08 14:14:53 +00:00
}
1985-11-25 15:50:19 +00:00
# endif
1984-10-08 14:14:53 +00:00
1985-11-25 15:50:19 +00:00
LLnext(n) {
/* returns: 0 if the current symbol is'nt skipped, and it
is'nt a member of "n",
1 if we have a new symbol, but it is'nt a member,
2 if the current symbol is a member,
and 3 if we have a new symbol and it is a member.
So, the low order bit indicates wether we have a new symbol,
and the next bit indicates wether it is a member of "n".
*/
int retval = 0;
if (LLskip()) retval = 1;
if (n <= 0 && LLsets[(LLcsymb >> 3) - n] & (1 << (LLcsymb & 07))) {
retval |= 2;
}
else if (LLsymb == n) retval |= 2;
return retval;
1984-10-08 14:14:53 +00:00
}
1985-11-25 15:50:19 +00:00
LLskip() {
/* returns 0 if the current symbol is'nt skipped, and
1 if it is, t.i., we have a new symbol
*/
#ifdef LL_USERHOOK
1987-02-23 10:50:15 +00:00
return LLdoskip(0);
}
1987-04-13 16:34:46 +00:00
LLuserhook(exp, list)
int *list;
1987-03-02 16:15:07 +00:00
{
int old = LLsymb;
1987-04-13 16:34:46 +00:00
LL_USERHOOK(exp, list);
1987-03-02 16:15:07 +00:00
LLread();
return LLsymb != old;
}
1987-04-13 16:34:46 +00:00
LLmklist(list)
register int *list;
{
char Xset[LL_SSIZE];
register char *p;
register int i;
for (p = &Xset[0]; p < &Xset[LL_SSIZE]; ) *p++ = 0;
for (i = 0; i < LL_NTERMINALS; i++) {
if (LLtcnt[i] != 0) Xset[i >> 3] |= (1 << (i & 07));
}
for (i = LL_NSETS - 1; i >= 0; i--) if (LLscnt[i] != 0) {
register char *q = &LLsets[LL_SSIZE * i];
p = &Xset[0];
while (p < &Xset[LL_SSIZE]) *p++ |= *q++;
}
for (i = 0; i < LL_NTERMINALS; i++) {
if (Xset[i >> 3] & (1 << (i & 07))) {
*list++ = LLtok[i];
}
}
*list = 0;
}
1987-02-23 10:50:15 +00:00
LLdoskip(exp) {
int LLx;
1987-04-13 16:34:46 +00:00
int list[LL_NTERMINALS+1];
1987-02-23 10:50:15 +00:00
#endif LL_USERHOOK
1985-11-25 15:50:19 +00:00
register int i;
int retval;
int LLi, LLb;
1984-10-08 14:14:53 +00:00
1985-11-25 15:50:19 +00:00
retval = 0;
1987-03-02 16:15:07 +00:00
#ifdef LL_USERHOOK
1987-04-13 16:34:46 +00:00
LLmklist(list);
LLx = LLuserhook(exp, list);
if (LLx) retval = 1;
1987-03-02 16:15:07 +00:00
#endif LL_USERHOOK
for (;;) {
1987-04-13 16:34:46 +00:00
if (LLtcnt[LLcsymb] != 0) {
#ifdef LL_USERHOOK
if (!exp || !LLx || LLsymb == exp)
#endif
return retval;
}
1985-11-25 15:50:19 +00:00
LLi = LLcsymb >> 3;
LLb = 1 << (LLcsymb & 07);
for (i = LL_NSETS - 1; i >= 0; i--) {
if (LLscnt[i] != 0) {
1987-03-02 16:15:07 +00:00
if (LLsets[LL_SSIZE*i+LLi] & LLb) {
1987-04-13 16:34:46 +00:00
#ifdef LL_USERHOOK
if (!exp || !LLx || LLsymb == exp)
#endif
1987-03-02 16:15:07 +00:00
return retval;
}
1985-11-25 15:50:19 +00:00
}
}
#ifdef LL_USERHOOK
1987-04-13 16:34:46 +00:00
if (LLx) {
LLx = LLuserhook(exp, list);
continue;
}
#endif LL_USERHOOK
1985-11-25 15:50:19 +00:00
LLmessage(0);
1987-02-23 10:50:15 +00:00
retval = 1;
1985-11-25 15:50:19 +00:00
LLread();
}
/* NOTREACHED */
1984-10-08 14:14:53 +00:00
}
1985-11-25 15:50:19 +00:00
LLnewlevel(LLsinfo) unsigned int *LLsinfo; {
register int i;
1984-10-08 14:14:53 +00:00
1985-11-25 15:50:19 +00:00
if (LLlevel++) {
LLsinfo[LL_NSETS+LL_NTERMINALS] = (unsigned) LLsymb;
LLsinfo[LL_NSETS+LL_NTERMINALS+1] = (unsigned) LLcsymb;
for (i = LL_NTERMINALS - 1; i >= 0; i--) {
LLsinfo[i] = LLtcnt[i];
LLtcnt[i] = 0;
}
for (i = LL_NSETS - 1; i >= 0; i--) {
LLsinfo[LL_NTERMINALS+i] = LLscnt[i];
LLscnt[i] = 0;
}
1984-10-08 14:14:53 +00:00
}
1985-11-25 15:50:19 +00:00
LLtincr(0);
1984-10-08 14:14:53 +00:00
}
1985-11-25 15:50:19 +00:00
LLoldlevel(LLsinfo) unsigned int *LLsinfo; {
register int i;
1984-10-08 14:14:53 +00:00
1985-11-25 15:50:19 +00:00
LLtdecr(0);
# ifdef LL_DEBUG
for (i = 0; i < LL_NTERMINALS; i++) LL_assert(LLtcnt[i] == 0);
for (i = 0; i < LL_NSETS; i++) LL_assert(LLscnt[i] == 0);
# endif
1984-10-08 14:14:53 +00:00
if (--LLlevel) {
1985-11-25 15:50:19 +00:00
for (i = LL_NSETS - 1; i >= 0; i--) {
LLscnt[i] = LLsinfo[LL_NTERMINALS+i];
}
for (i = LL_NTERMINALS - 1; i >= 0; i--) {
LLtcnt[i] = LLsinfo[i];
}
LLsymb = (int) LLsinfo[LL_NSETS+LL_NTERMINALS];
LLcsymb = (int) LLsinfo[LL_NSETS+LL_NTERMINALS+1];
1984-10-08 14:14:53 +00:00
}
}
1985-11-25 15:50:19 +00:00
# ifdef LL_DEBUG
LL_badassertion(asstr,file,line) char *asstr, *file; {
fprintf(stderr,"Assertion \"%s\" failed %s(%d)\n",asstr,file,line);
abort();
}
# endif