1: #
2: /* MANIFEST CONSTANT DEFINITIONS */
3:
4: # define NTBASE 010000
5:
6: /* internal codes for error and accept actions */
7:
8: # define ERRCODE 8190
9: # define ACCEPTCODE 8191
10:
11: # define errfileno 1 /* file number for erros and reduction message */
12: # define _tbitset 6 /* 16*_tbitset - 1 >= _nterms */
13:
14: extern int tbitset; /* number of wds of lookahead vector */
15: extern int nolook; /* flag to turn off lookahed computations */
16: struct looksets { int lset[ _tbitset ]; } ;
17: struct item { int *pitem; struct looksets *look; } ;
18:
19: /* output actions */
20:
21: # define ERRACT 0
22: # define TESTACT 4096
23: # define SHIFTACT 8192
24: # define REDUCACT 12288
25: # define ACCEPTACT 16384
26:
27: # define _REGISTER register
28:
29: extern int nstate ; /* number of states */
30: extern struct item *pstate[]; /* pointers to the descriptions of the states */
31: extern int apstate[]; /* index to actions in amem by state */
32: extern int actsiz; /* size of the action table array */
33: extern int tystate[]; /* contains type information about the states */
34: /* 0 = simple state, completely generated
35: 1 = state awaiting generation
36: 2 = state with an empty production in closure
37: */
38: extern int stsize ; /* maximum number of states, at present */
39: extern int memsiz ; /* maximum size for productions and states */
40: extern int mem0[] ; /* added production */
41: extern int *mem ;
42: extern int amem[]; /* action table storage */
43: extern int actsiz; /* action table size */
44: extern int memact ; /* next free action table position */
45: extern int nprod ; /* number of productions */
46: extern int *prdptr[]; /* pointers to descriptions of productions */
47: extern int prdlim; /* the number of productions allowed */
48: extern int levprd[] ; /* contains production levels to break conflicts */
49: /* last two bits code associativity:
50: 0 = no definition
51: 1 = left associative
52: 2 = binary
53: 3 = right associative
54: bit 04 is 1 if the production has an action
55: the high 13 bits have the production level
56: */
57: extern int nterms ; /* number of terminals */
58: extern int nerrors; /* number of errors */
59: extern int fatfl; /* if on, error is fatal */
60: /* the ascii representations of the terminals */
61: extern int extval; /* start of output values */
62: extern struct sxxx1 {char *name; int value;} trmset[];
63: extern char cnames[];
64: extern int cnamsz;
65: extern char *cnamp;
66: extern int maxtmp ; /* the size of the temp arrays */
67: /* temporary vectors, indexable by states, terms, or nterms */
68: extern int temp1[];
69: extern int temp2[];
70: extern int trmlev[]; /* vector with the precedence of the terminals */
71: /* The levels are the same as for levprd, but bit 04 is always 0 */
72: /* the ascii representations of the nonterminals */
73: extern struct sxxx2 { char *name; } nontrst[];
74: extern int indgo[]; /* index to the stored goto table */
75: extern int ***pres; /* vector of pointers to the productions yielding each nonterminal */
76: extern struct looksets **pfirst; /* vector of pointers to first sets for each nonterminal */
77: extern int *pempty ; /* table of nonterminals nontrivially deriving e */
78: extern int nnonter ; /* the number of nonterminals */
79: extern int lastred ; /* the number of the last reduction of a state */
80: extern int ftable; /* y.tab.c file */
81: extern int Foutput; /* y.output file */
82: extern int cin; /* current input file */
83: extern int cout; /* current output file */
84: extern int arrndx;
85: extern int zzcwset;
86: extern int zzpairs ;
87: extern int zzgoent ;
88: extern int zzgobest ;
89: extern int zzacent ;
90: extern int zzacsave ;
91: extern int zznsave ;
92: extern int zzclose ;
93: extern int zzrrconf ;
94: extern int zzsrconf ;
95: extern char *ctokn;
96: struct {int **ppi;} ;
97: extern int ntlim ; /* maximum number of nonterminals */
98: extern int tlim ; /* maximum number of terminals */
99: extern int lineno; /* current line number */
100: extern int peekc; /* look-ahead character */
101: extern int tstates[];
102: extern int ntstates[];
103: extern int mstates[];
104:
105: extern struct looksets clset;
106: extern struct looksets lkst[];
107: extern int nlset; /* next lookahead set index */
108: extern int lsetsz; /* number of lookahead sets */
109:
110: extern struct wset { int *pitem, flag, ws[ _tbitset ]; } wsets[];
111: extern int cwset;
112: extern int wssize;
113:
114: extern int numbval; /* the value of an input number */
115: extern int rflag; /* ratfor flag */
116: extern int sflag; /* suppress crap output flag */
117: extern int oflag; /* optimization flag */
118: extern int ndeFout; /* number of defined symbols output */
119:
120: extern int machine;
121:
122: # define UNIX 1
123: # define GCOS 2
124: # define IBM 3
Defined struct's
item
defined in line
17; used 18 times
sxxx1
defined in line
62;
never used
sxxx2
defined in line
73;
never used
wset
defined in line
110;
never used
Defined macros
GCOS
defined in line
123; used 1 times
IBM
defined in line
124; used 1 times
NTBASE
defined in line
4; used 42 times
- in /usr/ingres/source/yyyacc/y4.c line
20,
105,
115-116(2),
240-242(2),
269-270(2),
333,
341
- in /usr/ingres/source/yyyacc/yyy1.c line
138,
154(2)
- in /usr/ingres/source/yyyacc/yyy2.c line
115-116(2),
133,
139,
169(2),
210,
412
- in /usr/ingres/source/yyyacc/yyy3.c line
11,
39-43(2),
56,
94(2),
123-125(3),
168,
176-179(4),
228-229(2),
282,
297-303(3),
311
UNIX
defined in line
122; used 1 times
Usage of this include