-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathST.c
231 lines (195 loc) · 5.53 KB
/
ST.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
/***************************************************************************
Symbol Table Module
Author: Anthony A. Aaby
Modified by: Jordi Planes
Extended by: Cristian Sanahuja
***************************************************************************/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "CG.h"
#include "ST.h"
/*=========================================================================
DECLARATIONS
=========================================================================*/
/*-------------------------------------------------------------------------
SYMBOL TABLE ENTRY
-------------------------------------------------------------------------*/
symrec *identifier;
/*-------------------------------------------------------------------------
SYMBOL TABLE
Implementation: a chain of records.
------------------------------------------------------------------------*/
symrec *sym_table = (symrec *)0; /* The pointer to the Symbol Table */
/*========================================================================
Operations: Putsym, Getsym
========================================================================*/
symrec * putsym (char *sym_name, int length, int position, Type type)
{
symrec *ptr;
ptr = (symrec *) malloc (sizeof(symrec));
ptr->name = strdup(sym_name);
ptr->scope = getCurrentScope();
ptr->offset = data_location();
ptr->length = length;
ptr->position = position;
ptr->type = type;
int i;
for(i = 1; i < length; i++)
data_location();
ptr->next = (struct symrec *)sym_table;
sym_table = ptr;
return ptr;
}
symrec * create_reference (char *sym_name, int position, Type type)
{
symrec *ptr;
ptr = (symrec *) malloc (sizeof(symrec));
ptr->name = strdup(sym_name);
ptr->scope = getCurrentScope();
ptr->offset = 0; //To be updated
ptr->length = 0; //To be updated
ptr->position = position;
ptr->type = type;
ptr->next = (struct symrec *)sym_table;
sym_table = ptr;
return ptr;
}
symrec * getsym (char *sym_name, int scope, int previous_level)
{
symrec *ptr;
for ( ptr = sym_table;
ptr != (symrec *) 0;
ptr = (symrec *)ptr->next )
if (strcmp (ptr->name,sym_name) == 0)
if(ptr->scope == scope)
return ptr;
if (scope==0)
return NULL;
return getsym(sym_name, getPreviousScope(previous_level+1), previous_level+1);
}
symrec * getsymOnCurrentScope (char *sym_name)
{
symrec *ptr;
for ( ptr = sym_table;
ptr != (symrec *) 0;
ptr = (symrec *)ptr->next )
if (strcmp (ptr->name,sym_name) == 0)
if(ptr->scope == getCurrentScope())
return ptr;
return NULL;
}
symrec * getsymArgument (int position, int scope)
{
symrec *ptr;
for ( ptr = sym_table;
ptr != (symrec *) 0;
ptr = (symrec *)ptr->next )
if (ptr->position == position)
if(ptr->scope == scope)
return ptr;
return NULL;
}
char * getScopeName(int scope){
symrec *ptr;
for ( ptr = sym_table;
ptr != (symrec *) 0;
ptr = (symrec *)ptr->next )
if (ptr->type == FUNCTION)
if(ptr->inner_scope == scope)
return ptr->name;
return NULL;
}
/************************** End Symbol Table **************************/
/*========================================================================
Scopes
========================================================================*/
scope_stack* s_scope;
void initScopeStack(){
s_scope = (scope_stack *) malloc(sizeof(scope_stack));
s_scope->size = 0;
s_scope->num_scopes = 0;
}
int getCurrentScope(){
if (s_scope->size == 0) {
return 0;
}
return s_scope->data[s_scope->size-1];
}
int getPreviousScope(int previous_level){
int index = s_scope->size - 1 - previous_level;
if (index < 0) {
return 0;
}
return s_scope->data[index];
}
void pushScope(){
if (s_scope->size < STACK_MAX){
s_scope->num_scopes++;
s_scope->data[s_scope->size++] = s_scope->num_scopes;
}
else
fprintf(stderr, "Error: stack of scopes full\n");
}
void popScope(){
if (s_scope->size == 0)
fprintf(stderr, "Error: stack of scopes empty\n");
else
s_scope->size--;
}
/*========================================================================
References
========================================================================*/
r_stack* refes;
void initReferenceStack(){
refes = (r_stack *) malloc(sizeof(r_stack));
refes->size = 0;
}
int getReferencesSize(){
return refes->size;
}
void pushReference(r_struct * rf){
if (refes->size < STACK_REFERENCES_MAX){
refes->data[refes->size] = malloc(sizeof(r_struct));
refes->data[refes->size] = rf;
refes->size++;
}
else
fprintf(stderr, "Error: stack of references full\n");
}
r_struct * popReference(){
if (refes->size == 0){
fprintf(stderr, "Error: stack of references empty\n");
exit(-1);
}
refes->size--;
return refes->data[refes->size];
}
/*========================================================================
Backpatch
========================================================================*/
bp_stack* bps;
void initBPStack(){
bps = (bp_stack *) malloc(sizeof(bp_stack));
bps->size = 0;
}
int getBPSize(){
return bps->size;
}
void pushBP(bp_struct * bp){
if (bps->size < STACK_BP_MAX){
bps->data[bps->size] = malloc(sizeof(bp_struct));
bps->data[bps->size] = bp;
bps->size++;
}
else
fprintf(stderr, "Error: stack of backpaths full\n");
}
bp_struct * popBP(){
if (bps->size == 0){
fprintf(stderr, "Error: stack of backpaths empty\n");
exit(-1);
}
bps->size--;
return bps->data[bps->size];
}