-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathanalyze.c
269 lines (255 loc) · 8.26 KB
/
analyze.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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
/****************************************************/
/* File: analyze.c */
/* Semantic analyzer implementation */
/* for the TINY compiler */
/* Compiler Construction: Principles and Practice */
/* Kenneth C. Louden */
/****************************************************/
#include "globals.h"
#include "symtab.h"
#include "analyze.h"
static int scope_a=0;
/* counter for variable memory locations */
static int location[MAX_SCOPE] = {0,0,0};
static int No_change=0;
/* Procedure traverse is a generic recursive
* syntax tree traversal routine:
* it applies preProc in preorder and postProc
* in postorder to tree pointed to by t
*/
static void traverse( TreeNode * t,
void (* preProc) (TreeNode *),
void (* postProc) (TreeNode *) )
{ if (t != NULL)
{ preProc(t);
{ int i;
for (i=0; i < MAXCHILDREN; i++)
traverse(t->child[i],preProc,postProc);
}
postProc(t);
traverse(t->sibling,preProc,postProc);
}
}
/* nullProc is a do-nothing procedure to
* generate preorder-only or postorder-only
* traversals from traverse
*/
static void nullProc(TreeNode * t)
{ if (t==NULL) return;
else return;
}
/* Procedure insertNode inserts
* identifiers stored in t into
* the symbol table
*/
static void insertNode( TreeNode * t)
{ switch (t->nodekind)
{ case StmtK:
switch (t->kind.stmt)
{
case CompoundK:
if(!No_change)
scope_a=scope_a+1;
else
No_change=0;
HighScope=scope_a;
break;
case IfK:
if((t->child[1])->kind.stmt==CompoundK)
No_change=1;
break;
case WhileK:
if((t->child[1])->kind.stmt==CompoundK)
No_change=1;
break;
case CallK:
// printf("%d %s\n",t->param_size,t->attr.name);
t->scope=0;
/* all functios are global so searching in global scope */
if (st_lookup(t->attr.name,0) == -1)
/* not yet in table, so treat as new definition */
st_insert(t->attr.name,t->lineno,-1,0,0);
else
/* already in table, so ignore location,
add line number of use only */
st_insert(t->attr.name,t->lineno,-1,0,0);
break;
default:
break;
}
break;
case ExpK:
switch (t->kind.exp)
{ case IdK:
if (st_lookup(t->attr.name,0) == -1)
t->scope=t->isParameter==1?scope_a+1:scope_a;
else
t->scope=0;
/* all identifiers must be declared before use execpt parameter so we insert just parameters to symbol table*/
if(t->isParameter==1)
{
t->scope=t->isParameter==1?scope_a+1:scope_a;
if (st_lookup(t->attr.name,t->isParameter==1?scope_a+1:scope_a) == -1)
/* not yet in table, so treat as new definition */
st_insert(t->attr.name,t->lineno,location[scope_a]++,t->isParameter==1?scope_a+1:scope_a,t->isParameter==1?1:0);
else
/* already in table, so ignore location,
add line number of use only */
st_insert(t->attr.name,t->lineno,0,t->isParameter==1?scope_a+1:scope_a,t->isParameter==1?1:0);
}
break;
default:
break;
}
break;
case DecK:
switch(t->kind.dec)
{ case VarK:
t->scope=t->isParameter==1?scope_a+1:scope_a;
if (st_lookup(t->attr.name,t->isParameter==1?scope_a+1:scope_a) == -1)
/* not yet in table, so treat as new definition */
st_insert(t->attr.name,t->lineno,location[scope_a]++,t->isParameter==1?scope_a+1:scope_a,t->isParameter==1?1:0);
else
/* already in table, so ignore location,
add line number of use only */
st_insert(t->attr.name,t->lineno,0,t->isParameter==1?scope_a+1:scope_a,t->isParameter==1?1:0);
break;
case ArrayK:
if(t->isParameter)
{
t->scope=scope_a+1;
if (st_lookup(t->attr.name,scope_a+1) == -1)
/* not yet in table, so treat as new definition */
st_insert(t->attr.name,t->lineno,location[scope_a+1]++,scope_a+1,1);
else
/* already in table, so ignore location,
add line number of use only */
st_insert(t->attr.name,t->lineno,0,scope_a+1,1);
}
else
{
if (st_lookup(t->attr.name,0) == -1){
t->scope=scope_a; /* if not in global */
}
else {
t->scope=0; /* in global already do not insert to symbol*/
break;
}
if (st_lookup(t->attr.name,scope_a) == -1){
/* not yet in table, so treat as new definition */
st_insert(t->attr.name,t->lineno,location[scope_a]++,scope_a,t->isParameter==1?1:0);
if(t->isParameter!=1)
location[scope_a]=location[scope_a]+(t->value-1);
}
else
/* already in table, so ignore location,
add line number of use only */
st_insert(t->attr.name,t->lineno,0,t->isParameter==1?scope_a+1:scope_a,t->isParameter==1?1:0);
}
break;
case FunK:
t->scope=0; /* to parse tree */
/* all functios are global so searching in global scope */
if (st_lookup(t->attr.name,0) == -1)
/* not yet in table, so treat as new definition */
st_insert(t->attr.name,t->lineno,-1,0,0);
else
/* already in table, so ignore location,
add line number of use only */
st_insert(t->attr.name,t->lineno,-1,0,0);
break;
}
default:
break;
}
}
/* Function buildSymtab constructs the symbol
* table by preorder traversal of the syntax tree
*/
void buildSymtab(TreeNode * syntaxTree)
{ traverse(syntaxTree,insertNode,nullProc);
if (TraceAnalyze)
{ fprintf(listing,"\nSymbol table:\n\n");
printSymTab(listing);
}
}
static void typeError(TreeNode * t, char * message)
{ fprintf(listing,"Type error at line %d: %s\n",t->lineno,message);
Error = TRUE;
}
/* Procedure checkNode performs
* type checking at a single tree node
*/
static void checkNode(TreeNode * t)
{ switch (t->nodekind)
{
case ExpK:
switch (t->kind.exp)
{ case OpK:
if ((t->child[0]->type != Integer) ||
(t->child[1]->type != Integer))
typeError(t,"Op applied to non-integer");
if ((t->attr.op == EQ) || (t->attr.op == LT) || (t->attr.op == LTE)|| (t->attr.op == GT)
|| (t->attr.op == GTE)|| (t->attr.op == NE))
t->type = Boolean;
else
t->type = Integer;
break;
case AssignK:
if (t->child[0]->type != Integer)
typeError(t->child[0],"assignment of non-integer value");
break;
case ConstK:
case IdK:
t->type = Integer;
break;
default:
break;
}
break;
case DecK:
switch (t->kind.dec)
{ case ArrayK:
t->type=Integer;
break;
default:
break;
}
break;
case StmtK:
switch (t->kind.stmt)
{ case IfK:
if (t->child[0]->type == Integer)
typeError(t->child[0],"if test is not Boolean");
break;
case ReturnK:
if(t->child[0]!=NULL) {
if (t->child[0]->type != Integer)
typeError(t->child[0],"return of non-integer value");
}
break;
case CallK:
if(t->child[0]!=NULL) {
if (t->child[0]->type != Integer)
typeError(t->child[0],"call of non-integer value");
}
t->type=Integer;
break;
case WhileK:
if (t->child[1]->type == Integer)
typeError(t->child[1],"while test is not Boolean");
break;
default:
break;
}
break;
default:
break;
}
}
/* Procedure typeCheck performs type checking
* by a postorder syntax tree traversal
*/
void typeCheck(TreeNode * syntaxTree)
{ traverse(syntaxTree,nullProc,checkNode);
}