forked from NesManrique/LenguajesII
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblahast.h
443 lines (375 loc) · 11.4 KB
/
blahast.h
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
#ifndef BLAHAST
#define BLAHAST
#include "blahsymtable.h"
#include "blahlog.h"
#include "blahblock.h"
#include <iostream>
#include <list>
class NStatement;
class NExpression;
class NVariableDeclaration;
typedef std::vector<NStatement*> StatementList;
typedef std::vector<NExpression*> ExpressionList;
typedef std::vector<NVariableDeclaration*> VariableList;
typedef std::vector<TVar*> VarList;
class Node {
public:
virtual TType* typeChk(Symtable t ,TType* exp=NULL){return t.lookupType("Void");}
virtual void print(std::ostream& os,int depth=0)=0;
virtual ~Node() {}
};
class NExpression : public Node {
public:
TType* type;
bool constant;
std::list<Inst*> truelist;
std::list<Inst*> falselist;
NExpression(TType* type=new TUndef(),bool constant=false):type(type),constant(constant){}
virtual NExpression* constantFold(){return this;}
virtual Operand* codeGen(IBlock* block)=0;
};
class NLRExpression : public NExpression{
public:
bool islexpr;
bool isAccess;
TVar* base;
NLRExpression(TType* type,bool isAccess=false,bool islexpr=false):NExpression(type),islexpr(islexpr),isAccess(isAccess){}
};
class NRExpression: public NExpression{
public:
NLRExpression* expr;
bool constant;
NRExpression(NLRExpression* expr,bool constant=false):NExpression(expr->type),expr(expr),constant(constant){}
Operand* codeGen(IBlock* block);
TType* typeChk(Symtable t ,TType* exp=NULL);
void print(std::ostream& os,int depth=0);
};
class NStatement : public Node {
public:
bool fundecl;
bool vardecl;
std::list<Inst*> nextlist;
std::list<Inst*> breaklist;
std::list<Inst*> continuelist;
std::list<Inst*> returnlist;
NStatement():fundecl(false),vardecl(false){};
virtual void codeGen(IBlock* block)=0;
};
class NExpressionStatement : public NStatement {
public:
NExpression* expr;
NExpressionStatement(NExpression* expr): expr(expr){}
void codeGen(IBlock* block);
TType* typeChk(Symtable,TType*);
void print(std::ostream& os,int depth=0);
};
class NInteger : public NExpression {
public:
int value;
NInteger(int value):NExpression(new TInteger(),true),value(value){}
TType* typeChk(Symtable t ,TType* exp=NULL);
Operand* codeGen(IBlock* block);
NExpression* constantFold(){return this;};
void print(std::ostream& os,int depth=0);
};
class NFloat : public NExpression {
public:
float value;
NFloat(float value):NExpression(new TFloat(),true),value(value){}
TType* typeChk(Symtable,TType* t=NULL);
Operand* codeGen(IBlock* block);
void print(std::ostream& os,int depth=0);
};
class NFloatToInt : public NExpression {
public:
NExpression* expr;
NFloatToInt(NExpression* expr):NExpression(new TInteger(),expr->constant),expr(expr){}
TType* typeChk(Symtable,TType* t=NULL);
NExpression* constantFold();
Operand* codeGen(IBlock* block);
void print(std::ostream& os,int depth=0);
};
class NIntToFloat : public NExpression {
public:
NExpression* expr;
NIntToFloat(NExpression* expr):NExpression(new TFloat(),expr->constant),expr(expr){}
TType* typeChk(Symtable,TType* t=NULL);
NExpression* constantFold();
Operand* codeGen(IBlock* block);
void print(std::ostream& os,int depth=0);
};
class NString : public NExpression {
public:
std::string value;
NString(std::string value):value(value),NExpression(new TArray((new TChar()),(int)value.length())){}
TType* typeChk(Symtable,TType* t=NULL);
void print(std::ostream& os,int depth=0);
};
class NChar : public NExpression {
public:
char value;
NChar(char value):NExpression(new TChar(),true),value(value){}
TType* typeChk(Symtable,TType* t=NULL);
Operand* codeGen(IBlock* block);
void print(std::ostream& os,int depth=0);
};
class NBool : public NExpression {
public:
bool value;
NBool(bool value): NExpression(new TBool(),true),value(value){}
TType* typeChk(Symtable,TType* t=NULL);
Operand* codeGen(IBlock* block);
void print(std::ostream& os,int depth=0);
};
class NArray : public NExpression {
public:
ExpressionList values;
NArray(ExpressionList values):NExpression(values[0]->type),values(values){}
TType* typeChk(Symtable,TType* t=NULL);
Operand* codeGen(IBlock* block);
void print(std::ostream& os,int depth=0);
};
class NVar : public NLRExpression{
public:
TVar* var;
NVar(TVar* var,bool islexpr=false) : NLRExpression(&(var->type),islexpr),var(var){}
TType* typeChk(Symtable,TType* t=NULL);
Operand* codeGen(IBlock* block);
void print(std::ostream& os,int depth=0);
};
class NArrayAccess : public NLRExpression{
public:
NLRExpression *lexpr;
NExpression *index;
NArrayAccess(NLRExpression *lexpr, NExpression *index):lexpr(lexpr),index(index),NLRExpression(lexpr->type,true){}
TType* typeChk(Symtable,TType* t=NULL);
Operand* codeGen(IBlock* block);
void print(std::ostream& os,int depth=0);
};
class NStructAccess : public NLRExpression{
public:
NLRExpression *lexpr;
std::string name;
TVar* var;
NStructAccess(NLRExpression *lexpr,std::string name):lexpr(lexpr),name(name),NLRExpression(NULL,true){}
TType* typeChk(Symtable,TType* t=NULL);
Operand* codeGen(IBlock* block);
void print(std::ostream& os,int depth=0);
};
class NFunctionCall : public NExpression {
public:
std::string name;
ExpressionList arguments;
TFunc* func;
bool inExpr;
NFunctionCall(std::string name, ExpressionList arguments) :inExpr(false), name(name), arguments(arguments){}
TType* typeChk(Symtable,TType* t=NULL);
Operand* codeGen(IBlock* block);
void print(std::ostream& os,int depth=0);
};
class NAritmeticBinaryOperator : public NExpression{
public:
enum OP{
ADD,SUB,DIV,MOD,MUL
};
OP op;
NExpression *lexp;
NExpression *rexp;
NAritmeticBinaryOperator(NExpression* lexp,OP op,NExpression* rexp):op(op),lexp(lexp),rexp(rexp){}
TType* typeChk(Symtable,TType* t=NULL);
NExpression* constantFold();
Operand* codeGen(IBlock* block);
void print(std::ostream& os,int depth=0);
};
class NBooleanBinaryOperator :public NExpression {
public:
enum OP{
OR,AND
};
OP op;
NExpression *lexp;
NExpression *rexp;
NBooleanBinaryOperator(NExpression* lexp,OP op,NExpression* rexp):op(op),lexp(lexp),rexp(rexp){}
TType* typeChk(Symtable,TType* t=NULL);
NExpression* constantFold();
Operand* codeGen(IBlock* block);
void print(std::ostream& os,int depth=0);
};
class NComparison : public NExpression {
public:
enum OP{
LT,GT,EQ,NEQ,GEQ,LEQ
};
OP op;
NExpression *lexp;
NExpression *rexp;
NComparison(NExpression* lexp,OP op,NExpression* rexp):op(op),lexp(lexp),rexp(rexp){}
TType* typeChk(Symtable,TType* t=NULL);
NExpression* constantFold();
Operand* codeGen(IBlock* block);
void print(std::ostream& os,int depth=0);
};
class NAritmeticUnaryOperator : public NExpression {
public:
enum OP{
UMINUS
};
OP op;
NExpression *rexp;
NAritmeticUnaryOperator(OP op,NExpression* rexp):op(op),rexp(rexp){}
TType* typeChk(Symtable,TType*t=NULL);
Operand* codeGen(IBlock* block);
NExpression* constantFold();
void print(std::ostream& os,int depth=0);
};
class NBooleanUnaryOperator : public NExpression {
public:
enum OP{
NOT
};
OP op;
NExpression *rexp;
NBooleanUnaryOperator(OP op,NExpression* rexp):op(op),rexp(rexp){}
TType* typeChk(Symtable,TType*t=NULL);
Operand* codeGen(IBlock* block);
NExpression* constantFold();
void print(std::ostream& os,int depth=0);
};
class NBlock : public NStatement{
public:
bool mainBlock;
StatementList statements;
NBlock():mainBlock(false) {}
TType* typeChk(Symtable,TType*t=NULL);
void codeGen(IBlock* );
void print(std::ostream& os,int depth=0);
};
class NAssignment : public NStatement{
public:
NLRExpression* var;
NExpression* assignment;
NAssignment (NLRExpression* var,NExpression* assignment):var(var),assignment(assignment){var->islexpr=true;}
TType* typeChk(Symtable,TType* t=NULL) ;
void codeGen(IBlock*);
void print(std::ostream& os,int depth=0);
};
class NVariableDeclaration : public NStatement {
public:
TVar* var;
NAssignment *assignment;
NVariableDeclaration(TVar* var,NAssignment *assignment=NULL): var(var),assignment(assignment){vardecl=true;};
TType* typeChk(Symtable,TType*t=NULL);
void codeGen(IBlock*);
void print(std::ostream& os,int depth=0);
};
class NFunctionDeclaration : public NStatement {
public:
std::string name;
TType* type;
NBlock *block;
VariableList arguments;
TFunc* func;
NFunctionDeclaration(TType* type,std::string name,VariableList arguments,NBlock* block=NULL):name(name),type(type),block(block),arguments(arguments){fundecl=true;}
TType* typeChk(Symtable,TType*t=NULL);
void codeGen(IBlock*);
void print(std::ostream& os,int depth=0);
};
class NRegisterDeclaration : public NStatement {
public:
std::string name;
Fields fields;
NRegisterDeclaration(std::string name,Fields fields):name(name),fields(fields){}
void codeGen(IBlock* block);
void print(std::ostream& os,int depth=0);
};
class NUnionDeclaration : public NStatement {
public:
std::string name;
Fields fields;
NUnionDeclaration(std::string name,Fields fields):name(name),fields(fields){}
void codeGen(IBlock* block);
void print(std::ostream& os,int depth=0);
};
class NWhileDo : public NStatement{
public:
NExpression* cond;
NBlock* block;
NWhileDo(NExpression* cond, NBlock* block):cond(cond),block(block){}
TType* typeChk(Symtable,TType*t=NULL);
void codeGen(IBlock*);
void print(std::ostream& os,int depth=0);
};
class NDoWhile : public NStatement{
public:
NExpression* cond;
NBlock* block;
NDoWhile(NExpression* cond, NBlock* block):cond(cond),block(block){}
TType* typeChk(Symtable,TType*t=NULL);
void codeGen(IBlock*);
void print(std::ostream& os,int depth=0);
};
class NIf : public NStatement{
public:
NExpression* cond;
NStatement* block;
NStatement* elseBlock;
NIf(NExpression* cond,NStatement* block, NStatement* elseBlock=NULL):cond(cond),block(block),elseBlock(elseBlock){}
TType* typeChk(Symtable,TType*t=NULL);
void codeGen(IBlock*);
void print(std::ostream& os,int depth=0);
};
class NForRange : public NStatement{
public:
TVar* var;
NExpression* beg;
NExpression* end;
NExpression* step;
NBlock* block;
NForRange(TVar* var,NExpression* beg,NExpression* end, NBlock* block, NExpression* step=NULL):var(var),beg(beg),end(end),block(block),step(step){
if (this->step==NULL){
this->step = new NInteger(1);
}
}
void codeGen(IBlock*);
TType* typeChk(Symtable,TType*t=NULL);
void print(std::ostream& os,int depth=0);
};
class NForArray : public NStatement{
public:
TVar* var;
NArray* array;
NBlock* block;
NForArray(TVar* var, NArray* array,NBlock* block):var(var),array(array),block(block){}
TType* typeChk(Symtable,TType*t=NULL);
void print(std::ostream& os,int depth=0);
};
class NForVar : public NStatement{
public:
TVar* var;
NVar* array;
NBlock* block;
NForVar(TVar* var,NVar* array,NBlock* block):var(var),array(array),block(block){}
void codeGen(IBlock*);
TType* typeChk(Symtable,TType*t=NULL);
void print(std::ostream& os,int depth=0);
};
class NStop :public NStatement {
public:
NStop():NStatement(){};
void print(std::ostream& os,int depth=0);
void codeGen(IBlock*);
};
class NNext : public NStatement{
public:
void print(std::ostream& os,int depth=0);
void codeGen(IBlock*);
};
class NReturn : public NStatement{
public:
NExpression* expr;
NReturn(NExpression* expr=NULL):expr(expr){}
TType* typeChk(Symtable,TType*t=NULL);
void codeGen(IBlock*);
void print(std::ostream& os,int depth=0);
};
#endif