-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsymtable.cpp
More file actions
272 lines (259 loc) · 6.55 KB
/
tsymtable.cpp
File metadata and controls
272 lines (259 loc) · 6.55 KB
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
#include "tsymtable.h"
#include "tsymbol.h"
#include "codegen.h"
#include "tsyntobj.h"
int TSymTable::GetSize()
{
return size;
}
int TSymTable::GetOffset()
{
return offset;
}
int TSymTable::GetNumElems()
{
return Table->size();
}
TSymbol *TSymTable::Find( string name )
{
for( int i = 0 ; i < Table->size() ; ++i )
if ( ((*Table)[i]->funcname == name)||((*Table)[i]->varname == name)||
((*Table)[i]->simpletypename == name)||((*Table)[i]->StrucTypename == name) ||
((*Table)[i]->aliastypename == name) )
return (*Table)[i];
return NULL;
}
void TSymTable::Init()
{
Table->push_back( new TypeInteger() );
Table->push_back( new TypeFloat() );
Table->push_back( new TypeString() );
Table->push_back( new TSymFunc( string( "printf" ) , (*Table)[0] ) );
(*Table)[3]->PutBody( new TBlockStmt() );
Table->push_back( new TSymFunc( string( "scanf" ) , (*Table)[0] ) );
(*Table)[4]->PutBody( new TBlockStmt() );
}
void TSymTable::Output( int level )
{
cout << "String Constants:\n";
for ( int i = 0 ; i < StringTable->size() ; ++i )
{
cout << "str" << i << " is ";
cout << *(*StringTable)[i] << "\n";
}
for ( int i = 5 ; i < Table->size() ; ++i )
(*Table)[i]->FullPrint( level );
}
TSymbol *TSymTable::FindType( string &name )
{
for ( int i = 0 ; i < Table->size() ; ++i )
if ( ( (*Table)[i]->simpletypename == name ) ||
( (*Table)[i]->StrucTypename == name ) ||
( (*Table)[i]->aliastypename == name) )
return (*Table)[i];
return NULL;
}
TSymbol *TSymTable::FindVar( string &name )
{
for ( int i = 0 ; i < Table->size(); ++i )
if ( (*Table)[i]->varname == name )
return (*Table)[i];
return NULL;
}
void TSymTable::Add( TSymbol* add )
{
Table->push_back( add );
}
int TSymTable::AddString( string *str )
{
StringTable->push_back( str );
return StringTable->size() - 1;
return 0;
}
vector< TSymbol * > *TSymTable::ShowTable()
{
return Table;
}
void TSymTable::Print( int level = 0 )
{
cout << "\n";
Tab( level );
cout << "Size of table: " << size << "\n";
Tab( level );
cout << "Offset of table: " << offset << "\n";
for ( int i = 0 ; i<Table->size() ; ++i )
(*Table)[i]->FullPrint( level );
}
TSymbol *TSymTable::GetElemN( int level )
{
return (*Table)[level];
}
TSymbol *TSymTable::GetLastSym()
{
return (*Table)[Table->size()-1];
}
void TSymTable::Gen( CodeGen *cg )
{
for ( int i = 0 ; i < Table->size() ; ++i )
(*Table)[i]->Gen( cg );
}
//GLOBAL TABLE THAT IS BEING GENERATED
void TSymTable::GenGlobal( CodeGen *cg )
{
cg->GenStart();
GenGlobVarDecls( cg );
cg->Flush();
cg->GenMiddle();
cg->Gen( PROC , str( "_main" ) );
GenGlobVarInits( cg );
if ( cg->NeedOptim() )
cg->WatchPeepHole();
cg->Gen( CALL , str( "f_main" ) );
cg->Gen( RET );
cg->Gen( ENDP , str( "_main" ) );
cg->Flush();
//generating only functions, not global variables
for ( int i = 5 ; i < Table->size() ; ++i )
if ( (*Table)[i]->IsFunc() )
{
(*Table)[i]->Gen( cg );
if ( cg->NeedOptim() )
cg->WatchPeepHole();
cg->Flush();
}
cg->GenFinish();
}
void TSymTable::GenStringConst( CodeGen *cg , string *convert , int index )
{
string s( "" );
for ( int i = 0 ; i < convert->length() ; ++i )
s += cg->IntToString( (*convert)[i] ) + ", ";
s += "0";
cg->Gen( DB , mem( "str" + cg->IntToString( index ) ) , str( s ) );
}
void TSymTable::GenGlobVarDecls( CodeGen *cg )
{
/*generate variables for met string constants*/
cg->Gen( Com, str( "STRING CONSTANTS:" ) );
for ( int i = 0 ; i < StringTable->size() ; ++i )
GenStringConst( cg , (*StringTable)[i] , i );
cg->Gen( Com , str( "GLOBAL VARIABLES:" ) );
/*Generate global variables*/
for ( int i = 0 ; i < Table->size() ; ++i )
if ( (*Table)[i]->IsVar() )
(*Table)[i]->Gen( cg );
}
void TSymTable::GenGlobVarInits( CodeGen *cg )
{
for ( int i = 0 ; i < Table->size() ; ++i )
if ( (*Table)[i]->IsVar() )
if ( (*Table)[i]->GetRealType()->IsSimpleType() )
(*Table)[i]->GenGlobVarInit( cg );
}
void TSymTable::CalcSize()
{
size = 0;
for ( int i = 0 ; i < Table->size() ; ++i )
if ( (*Table)[i]->IsVar() )
{
(*Table)[i]->InitOffset( size );
size += (*Table)[i]->GetSize();
}
}
void TSymTable::InitOffset( int off )
{
offset = off;
}
void TSymTable::InitSize( int s )
{
size = s;
}
void TSymTable::InverseOffset()
{
if ( !Table->size() )
return;
int counter = 0;
//8 is selected because there are returning value
//and saved ebp between arguments and where new ebp references
for ( int i = Table->size() - 1; i >= 0 ; --i )
if ( (*Table)[i]->IsVar() )
{
counter += (*Table)[i]->GetSize();
(*Table)[i]->InitOffset( counter );
}
}
void TSymTable::AddTableElems( TSymTable *tbl )
{
for( int i = 0 ; i < tbl->GetNumElems() ; ++i )
Table->push_back( tbl->GetElemN( i ) );
}
void TSymTable::ThrowBackElems( int number )
{
if ( Table->size() )
Table->erase( Table->begin() , Table->begin() + number );
}
TSymTableStack::TSymTableStack( TSymTable *Tab )
{
Table = new vector<TSymTable*>();
Table->push_back( Tab );
}
void TSymTableStack::AddSymTable( TSymTable *Tab )
{
Table->push_back( Tab );
}
TSymbol *TSymTableStack::FindGlobal( string &name )
{
TSymbol *found;
for ( int i = Table->size()-1; i>-1; --i )
if ( ( found = (*Table)[i]->Find( name ) ) != NULL )
return found;
return NULL;
}
TSymbol *TSymTableStack::FindLocal( string &name )
{
return (*Table)[Table->size()-1]->Find( name );
}
TSymbol *TSymTableStack::FindTypeGlobal( string &name )
{
TSymbol *found;
for( int i = Table->size() - 1 ; i > -1 ; --i )
if ( ( found = ( *Table )[i]->FindType( name ) ) != NULL )
return found;
return NULL;
}
TSymbol *TSymTableStack::FindTypeLocal( string &name )
{
return (*Table)[Table->size()-1]->FindType( name );
}
TSymbol *TSymTableStack::FindVarGlobal( string &name )
{
TSymbol *found;
for( int i = Table->size()-1 ; i > -1 ; --i )
if ( ( found=(*Table)[i]->FindVar( name ) ) != NULL )
return found;
return NULL;
}
void TSymTableStack::Add( TSymbol *add )
{
(*Table)[Table->size()-1]->Add( add );
}
TSymTable *TSymTableStack::ShowLocalTable()
{
return (*Table)[Table->size() - 1];
}
void TSymTableStack::Push( TSymTable *newtop )
{
Table->push_back( newtop );
}
void TSymTableStack::Pop()
{
Table->pop_back();
}
TSymbol *TSymTableStack::GetLastSym()
{
return (*Table)[Table->size() - 1]->GetLastSym();
}
bool TSymTableStack::GlobalSpace()
{
return ( Table->size() == 1 );
}