-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtree.c
204 lines (184 loc) · 6.2 KB
/
tree.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/*-
* Copyright (c) 1980, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#if !defined(lint) && defined(sccs)
static char sccsid[] = "@(#)tree.c 8.1 (Berkeley) 6/6/93";
#endif /* not lint */
#include <whoami.h>
#include <0.h>
/*
* TREE SPACE DECLARATIONS
*/
struct tr {
int *tr_low;
int *tr_high;
} ttab[MAXTREE] = {0}, *tract;
/*
* The variable space is the absolute base of the tree segments.
* (exactly the same as ttab[0].tr_low)
* Spacep is maintained to point at the beginning of the next tree
* slot to be allocated for use by the grammar. Spacep is used
* "extern" by the semantic actions in pas.y. The variable tract
* is maintained to point at the tree segment out of which we are
* allocating (the active segment).
*
* TREENMAX is the maximum width in words that any tree node
* due to the way in which the parser uses the pointer spacep.
*/
#define TREENMAX 6
int trspace[ITREE] = {0};
int *space = trspace;
int *spacep = trspace;
struct tr *tract = ttab;
/*
* Inittree allocates the first tree slot
* and sets up the first segment descriptor.
* A lot of this work is actually done statically
* above.
*/
void
inittree()
{
ttab[0].tr_low = space;
ttab[0].tr_high = &space[ITREE];
}
/*
* Tree builds the nodes in the parse tree. It is rarely called
* directly, rather calls are made to tree[12345] which supplies the
* first argument to save space in the code. Tree also guarantees
* that spacep points to the beginning of the next slot it will return,
* a property required by the parser which was always true before we
* segmented the tree space.
*/
/*VARARGS1*/
struct tnode *
tree(int cnt, ...)
{
register int *p, *q;
register int i;
va_list ap;
if (sizeof(int) != sizeof(struct tnode *)) {
printf("tree.c: sizeof(int) != sizeof(struct tnode *)\n");
exit(3);
}
i = cnt;
p = spacep;
va_start(ap, cnt);
do
*p++ = va_arg(ap, int);
while (--i);
va_end(ap);
q = spacep;
spacep = p;
if (p+TREENMAX >= tract->tr_high)
/*
* this peek-ahead should save a great number of calls
* to tralloc.
*/
tralloc(TREENMAX);
return ((struct tnode *) q);
}
/*
* Tralloc preallocates enough space in the tree to allow
* the grammar to use the variable spacep, as it did before the
* tree was segmented.
*/
void
tralloc(howmuch)
{
register char *cp;
register int i;
if (spacep + howmuch >= tract->tr_high) {
i = TRINC;
cp = calloc(i, sizeof( int ));
if (cp == 0) {
yerror("Ran out of memory (tralloc)");
pexit(DIED);
}
spacep = (int *) cp;
tract++;
if (tract >= &ttab[MAXTREE]) {
yerror("Ran out of tree tables");
pexit(DIED);
}
tract->tr_low = (int *) cp;
tract->tr_high = tract->tr_low+i;
}
}
extern int yylacnt;
extern struct B *bottled;
/*
* Free up the tree segments at the end of a block.
* If there is scanner lookahead, i.e. if yylacnt != 0 or there
* is bottled output, then we cannot free the tree space.
* This happens only when errors occur and the forward move
* extends across "units".
*/
void
trfree()
{
if (yylacnt != 0 || bottled != NIL)
return;
#ifdef PXP
if (needtree())
return;
#endif
spacep = space;
while (tract->tr_low > spacep || tract->tr_high <= spacep) {
free((char *) tract->tr_low);
tract->tr_low = NIL;
tract->tr_high = NIL;
tract--;
if (tract < ttab)
panic("ttab");
}
#ifdef PXP
packtree();
#endif
}
/*
* Copystr copies a token from the "token" buffer into the tree space.
*/
char *
copystr(token)
register const char *token;
{
register char *cp;
register int i;
i = (strlen(token) + sizeof ( int )) & ~( ( sizeof ( int ) ) - 1 );
tralloc(i / sizeof ( int ));
(void) pstrcpy((char *) spacep, token);
cp = (char *) spacep;
spacep = ((int *) cp + i);
tralloc(TREENMAX);
return (cp);
}