-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsymboltable.c
429 lines (368 loc) · 10 KB
/
symboltable.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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
/****************************************************/
/* File: symtab.c */
/* Symbol table implementation for the TINY compiler*/
/* (allows only one symbol table) */
/* Symbol table is implemented as a chained */
/* hash table */
/* Compiler Construction: Principles and Practice */
/* Kenneth C. Louden */
/****************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "symboltable.h"
#include "globals.h"
/* SIZE is the size of the hash table */
#define SIZE 211
/* SHIFT is the power of two used as multiplier
in hash function */
#define SHIFT 4
/* the hash function */
static int hash ( char * key )
{ int temp = 0;
int i = 0;
while (key[i] != '\0')
{ temp = ((temp << SHIFT) + key[i]) % SIZE;
++i;
}
return temp;
}
/* the hash table */
static BucketList hashTable[SIZE];
/* Procedure st_insert inserts line numbers and
* memory locations into the symbol table
* loc = memory location is inserted only the
* first time, otherwise ignored
*/
void st_insert(char * scopeName, char * name, ExpType type, TreeNode * treeNode, int loc)
{
int h = hash(name);
Scope scope = currScope();
BucketList l = scope->hashTable[h];
// fprintf(listing, "%s %s st_insert\n", scope->name, name);
/** try to find bucket */
while ((l != NULL) && (strcmp(name, l->name) != 0)) l = l->next;
/* variable not yet in BucketList */
if (l == NULL)
{
l = (BucketList) malloc(sizeof(struct BucketListRec));
l->name = name;
l->treeNode = treeNode;
l->lines = (LineList) malloc(sizeof(struct LineListRec));
l->lines->lineno = treeNode->lineno;
l->type = type;
l->memloc = loc;
l->lines->next = NULL;
l->next = scope->hashTable[h];
scope->hashTable[h] = l;
}
else
{
/* already exist in the BucketList */
LineList t = l->lines;
while (t->next != NULL) t = t->next;
t->next = (LineList) malloc(sizeof(struct LineListRec));
t->next->lineno = lineno;
t->next->next = NULL;
}
} /* st_insert */
/* Change's func start line to assembly's if isEnd == 0, else inserts fun_end line */
void st_changeFuncLine(char *scopeName, int newLine, int isEnd){
Scope aux;
for(int i = 0; i < sizeOfList; i++){
if(strcmp(scopeList[i]->name, "global") == 0){
aux = scopeList[i];
break;
}
}
int h = hash(scopeName);
BucketList bucket;
bucket = aux->hashTable[h];
while ((bucket != NULL) && strcmp(bucket->name, scopeName) != 0){
bucket = bucket->next;
}
if(bucket != NULL){
if(isEnd == 0){
bucket->lines->lineno = newLine;
}else{
bucket->lines->next = malloc(sizeof(struct LineListRec));
bucket->lines->next->lineno = newLine;
bucket->lines->next->next = NULL;
}
}
}
int st_returnFuncLine(char *scopeName, int isEnd){
Scope aux;
for(int i = 0; i < sizeOfList; i++){
if(strcmp(scopeList[i]->name, "global") == 0){
aux = scopeList[i];
break;
}
}
int h = hash(scopeName);
BucketList bucket;
bucket = aux->hashTable[h];
while ((bucket != NULL) && strcmp(bucket->name, scopeName) != 0){
bucket = bucket->next;
}
if(bucket != NULL){
if(isEnd == 0){
//return func start line
return bucket->lines->lineno;
}else{
//return func end line
return bucket->lines->next->lineno;
}
}else{
return -1;
}
}
/* Function st_lookup returns the memory
* location of a variable or NULL if not found
*/
BucketList st_lookup(char * name)
{
Scope scope = currScope();
int h = hash(name);
BucketList bucket = scope->hashTable[h];
while ((bucket != NULL) && (strcmp(name, bucket->name) != 0)) bucket = bucket->next;
return bucket;
}
/*
* Insert lines
*/
void insertLines(char* name, int lineno)
{
Scope scope = currScope();
int h = hash(name);
BucketList l = scope->hashTable[h];
while (scope != NULL)
{
if (l != NULL)
{
LineList lines = l->lines;
while (lines->next != NULL)
{
lines = lines->next;
}
lines->next = (LineList) malloc(sizeof(struct LineListRec));
lines->next->lineno = lineno;
lines->next->next = NULL;
return;
}
scope = scope->parent;
}
}
// return the scope case scopeName is already a scope
Scope st_lookup_scope(char * scopeName)
{
Scope scope = NULL;
for (int i=0; i<sizeOfList; i++)
{
if (strcmp(scopeList[i]->name, scopeName) == 0)
{
scope = scopeList[i];
break;
}
}
return scope;
}
int st_lookup_mempos(char *varName, char *scopeName){
Scope scope = NULL;
BucketList bucket;
int h = hash(varName);
for(int i = 0; i < sizeOfList; i++){
if(strcmp(scopeList[i]->name, scopeName) == 0){
scope = scopeList[i];
break;
}
}
bucket = scope->hashTable[h];
while((bucket != NULL) && (strcmp(varName, bucket->name) != 0)){
bucket = bucket->next;
}
if(bucket != NULL){
return bucket->memloc;
}else{
for(int i = 0; i < sizeOfList; i++){
if(strcmp(scopeList[i]->name, "global") == 0){
scope = scopeList[i];
break;
}
}
bucket = scope->hashTable[h];
while((bucket != NULL) && (strcmp(varName, bucket->name) != 0)){
bucket = bucket->next;
}
if(bucket != NULL){
return bucket->memloc;
}else{
return -1;
}
}
}
/* Returns 1 if variable is global, 0 if its in scope passed as argument, -1 if none */
int st_isGlobal(char* varName, char* scopeName){
Scope scope = NULL;
BucketList bucket;
int h = hash(varName);
for(int i = 0; i < sizeOfList; i++){
if(strcmp(scopeList[i]->name, scopeName) == 0){
scope = scopeList[i];
break;
}
}
bucket = scope->hashTable[h];
while((bucket != NULL) && (strcmp(varName, bucket->name) != 0)){
bucket = bucket->next;
}
if(bucket != NULL){
return 0;
}else{
for(int i = 0; i < sizeOfList; i++){
if(strcmp(scopeList[i]->name, "global") == 0){
scope = scopeList[i];
break;
}
}
bucket = scope->hashTable[h];
while((bucket != NULL) && (strcmp(varName, bucket->name) != 0)){
bucket = bucket->next;
}
if(bucket != NULL){
return 1;
}else{
return -1;
}
}
}
// return the bucket related to the name if it already exist
BucketList st_lookup_all_scope(char * name)
{
Scope scope = currScope();
int h = hash(name);
BucketList bucket;
while (scope != NULL )
{
BucketList bucket = scope->hashTable[h];
while ((bucket != NULL) && (strcmp(name, bucket->name) != 0)) bucket = bucket->next;
if (bucket != NULL) return bucket;
scope = scope->parent;
}
return NULL;
}
/* Procedure printSymTab prints a formatted
* listing of the symbol table contents
* to the listing file
*/
void printSymTabRows(Scope scope)
{
BucketList * hashTable = scope->hashTable;
for (int i=0; i<SIZE; ++i) {
if (hashTable[i] != NULL) {
BucketList l = hashTable[i];
TreeNode *node = l->treeNode;
while (l != NULL) {
LineList lines = l->lines;
fprintf(listing,"%-11s", l->name);
switch (node->nodekind) {
case DeclK:
switch (node->kind.decl) {
case FunK:
fprintf(listing, "Funcao ");
break;
case VarK:
fprintf(listing, "Variavel ");
break;
case ArrVarK:
fprintf(listing, "Vetor ");
break;
case ParamK:
fprintf(listing, "Parametro ");
break;
case ArrParamK:
fprintf(listing, "Parametro Vetor ");
break;
default:
break;
}
break;
default:
break;
}
switch (l->type) {
case Void:
fprintf(listing, "Void ");
break;
case Integer:
fprintf(listing, "Integer ");
break;
case IntegerArray:
fprintf(listing, "Vetor de Integers ");
break;
default:
break;
}
// print memory location
fprintf(listing, "%d ", l->memloc);
// print line numbers
while (lines->next != NULL) {
fprintf(listing, "%d, ", lines->lineno);
lines = lines->next;
}
fprintf(listing, "%d\n", lines->lineno);
l = l->next;
}
}
}
}
void printSymTab(FILE * listing) {
fprintf(listing, "\n---------------------\n");
fprintf(listing, "| Tabela de simbolos |");
fprintf(listing, "\n---------------------\n\n");
for (int i = 0; i<sizeOfList; ++i) {
Scope scope = scopeList[i];
if (scope->nestedLevel > 0) continue;
fprintf(listing, "Escopo : %s\n", scope->name);
fprintf(listing, "---------------------------------------------------------------------------\n");
fprintf(listing, "Nome Tipo Tipo de Dado loc Número das linhas \n");
fprintf(listing, "--------- --------------- ------------ --- ------------------\n");
printSymTabRows(scope);
fprintf(listing, "---------------------Decl Num == %d ---------------------------\n", scope->scopeCount);
fprintf(listing, "---------------------------------------------------------------------------\n");
fputc('\n', listing);
}
} /* printSymTab */
/* Scope functions */
Scope newScope(char * scopeName, ExpType type)
{
Scope newScope = (Scope) malloc(sizeof(struct ScopeListRec));
newScope->name = scopeName;
newScope->type = type;
newScope->scopeCount=0;
return newScope;
}
void popScope(void)
{
scopeStack[topScope--] = NULL;
}
void pushScope(Scope scope)
{
for (int i=0; i<sizeOfList; i++)
{
if (strcmp(scopeList[i]->name, scope->name) == 0) {
scope->nestedLevel++;
}
}
scopeStack[topScope++] = scope;
insertScopeToList(scope);
}
void insertScopeToList(Scope scope)
{
scopeList[sizeOfList++] = scope;
}
Scope currScope()
{
return scopeStack[topScope-1];
}
/*End of scope functions*/