-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathast.h
512 lines (449 loc) · 12.1 KB
/
ast.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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
#include <string>
#include <list>
#include <map>
#include "code.h"
using namespace std;
class Expr;
class InitDeclarator;
class Declaration;
class Parameter;
class Statement;
typedef list<Expr *> InitializerElementList;
typedef list<InitDeclarator *> InitDeclaratorList;
typedef list<Declaration *> DeclarationList;
typedef list<Parameter *> ParameterList;
typedef list<Statement *> StatementList;
typedef list<Expr *> ArgumentList;
typedef list<Expr *> ExprList;
typedef list<string *> IdList;
enum StatementKind{
WHILE_STATEMENT,
FOR_STATEMENT,
IF_STATEMENT,
EXPRESSION_STATEMENT,
RETURN_STATEMENT,
CONTINUE_STATEMENT,
BREAK_STATEMENT,
BLOCK_STATEMENT,
PRINT_STATEMENT,
FUNCTION_DEFINITION_STATEMENT,
GLOBAL_DECLARATION_STATEMENT,
ELSE_STATEMENT,
IMPORT_STATEMENT,
PACKAGE_STATEMENT
};
enum UnaryType{
INCREMENT,
DECREMENT,
NOT
};
class Statement{
public:
int line;
virtual int evaluateSemantic() = 0;
virtual StatementKind getKind() = 0;
virtual string genCode()=0;
};
class Expr{
public:
int line;
virtual Type getType() = 0;
virtual void genCode(Code &code)=0;
};
class Initializer{
public:
Initializer(InitializerElementList expressions, int line){
this->expressions = expressions;
this->line = line;
}
InitializerElementList expressions;
int line;
};
class Declarator{
public:
Declarator(string id, Expr* arrayDeclaration, bool isArray, int line){
this->id = id;
this->isArray = isArray;
this->line = line;
this->arrayDeclaration = arrayDeclaration;
}
string id;
bool isArray;
int line;
Expr * arrayDeclaration;
};
class InitDeclarator{
public:
InitDeclarator(Type type,Initializer * initializer, int line){
this->type = type;
this->initializer = initializer;
this->line = line;
}
Initializer * initializer;
int line;
Type type;
};
class Declaration{
public:
Declaration(Type type, string id, InitDeclaratorList declarations, int line){
this->id = id;
this->type = type;
this->declarations = declarations;
this->line = line;
}
string id;
Type type;
InitDeclaratorList declarations;
int line;
int evaluateSemantic();
string genCode();
};
class Parameter{
public:
Parameter(Type type, Declarator * declarator, bool isArray, int line){
this->type = type;
this->declarator = declarator;
this->line = line;
}
Type type;
Declarator* declarator;
bool isArray;
int line;
int evaluateSemantic();
};
class BlockStatement : public Statement{
public:
BlockStatement(StatementList statements, DeclarationList declarations, int line){
this->statements = statements;
this->declarations = declarations;
this->line = line;
}
StatementList statements;
DeclarationList declarations;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return BLOCK_STATEMENT;
}
};
class GlobalDeclaration : public Statement {
public:
GlobalDeclaration(Declaration * declaration){
this->declaration = declaration;
}
Declaration * declaration;
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return GLOBAL_DECLARATION_STATEMENT;
}
};
class ImportDeclaration : public Statement {
public:
ImportDeclaration(){
}
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return IMPORT_STATEMENT;
}
};
class PackageDeclaration : public Statement {
public:
PackageDeclaration(){
}
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return PACKAGE_STATEMENT;
}
};
class MethodDefinition : public Statement{
public:
MethodDefinition(Type type, string id, ParameterList params, Statement * statement, int line){
this->type = type;
this->id = id;
this->params = params;
this->statement = statement;
this->line = line;
}
Type type;
string id;
ParameterList params;
Statement * statement;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return FUNCTION_DEFINITION_STATEMENT;
}
};
class IntExpr : public Expr{
public:
IntExpr(int value, int line){
this->value = value;
this->line = line;
}
int value;
Type getType();
void genCode(Code &code);
int evaluateSemantic();
};
class FloatExpr : public Expr{
public:
FloatExpr(float value, int line){
this->value = value;
this->line = line;
}
float value;
Type getType();
void genCode(Code &code);
};
class BoolExpr : public Expr{
public:
BoolExpr(bool value, int line){
this->value = value;
this->line = line;
}
bool value;
Type getType();
void genCode(Code &code);
};
class BinaryExpr : public Expr{
public:
BinaryExpr(Expr * expr1, Expr *expr2, int line){
this->expr1 = expr1;
this->expr2 = expr2;
this->line = line;
}
Expr * expr1;
Expr *expr2;
int line;
};
#define IMPLEMENT_BINARY_EXPR(name) \
class name##Expr : public BinaryExpr{\
public: \
name##Expr(Expr * expr1, Expr *expr2, int line) : BinaryExpr(expr1, expr2, line){}\
Type getType(); \
void genCode(Code &code); \
};
class UnaryExpr : public Expr{
public:
UnaryExpr(int type, Expr* expr, int line){
this->type = type;
this->expr = expr;
this->line = line;
}
int type;
Expr* expr;
int line;
Type getType();
void genCode(Code &code);
};
class PostIncrementExpr: public Expr{
public:
PostIncrementExpr(Expr * expr, int line){
this->expr = expr;
this->line = line;
}
Expr * expr;
int line;
Type getType();
void genCode(Code &code);
};
class PostDecrementExpr: public Expr{
public:
PostDecrementExpr(Expr * expr, int line){
this->expr = expr;
this->line = line;
}
Expr * expr;
int line;
Type getType();
void genCode(Code &code);
};
class IdExpr : public Expr{
public:
IdExpr(string id, int line){
this->id = id;
this->line = line;
}
string id;
int line;
Type getType();
void genCode(Code &code);
};
class ArrayExpr : public Expr{
public:
ArrayExpr(IdExpr * id, Expr * expr, int line){
this->id = id;
this->expr = expr;
this->line = line;
}
IdExpr * id;
Expr * expr;
int line;
Type getType();
void genCode(Code &code);
};
class MethodInvocationExpr : public Expr{
public:
MethodInvocationExpr(IdExpr * id, ArgumentList args, int line){
this->id = id;
this->args = args;
this->line = line;
}
IdExpr * id;
ArgumentList args;
int line;
Type getType();
void genCode(Code &code);
};
class StringExpr : public Expr{
public:
StringExpr(string value, int line){
this->value = value;
this->line = line;
}
string value;
int line;
Type getType();
void genCode(Code &code);
};
// class WhileStatement: public Statement{
// public:
// WhileStatement(Expr * expr, Statement * stmt, int line){
// this->expr = expr;
// this->stmt = stmt;
// this->line = line;
// }
// Expr* expr;
// Statement * stmt;
// int line;
// int evaluateSemantic();
// StatementKind getKind(){
// return WHILE_STATEMENT;
// }
// };
class ElseStatement : public Statement{
public:
ElseStatement(Expr * conditionalExpr, Statement * trueStatement, Statement * falseStatement, int line){
this->conditionalExpr = conditionalExpr;
this->trueStatement = trueStatement;
this->line = line;
this->falseStatement = falseStatement;
}
Expr * conditionalExpr;
Statement * trueStatement;
Statement * falseStatement;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){return ELSE_STATEMENT;}
};
class IfStatement : public Statement{
public:
IfStatement(Expr * conditionalExpr, Statement * trueStatement, int line){
this->conditionalExpr = conditionalExpr;
this->trueStatement = trueStatement;
this->line = line;
}
Expr * conditionalExpr;
Statement * trueStatement;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){return IF_STATEMENT;}
};
class ForStatement : public Statement{
public:
ForStatement(Declarator* declarator, Expr * expressionLeft, Expr * expressionRight, Statement * statement, int line){
this->declarator=declarator;
this->expressionLeft=expressionLeft;
this->expressionRight=expressionRight;
this->statement = statement;
this->line = line;
}
Declarator* declarator;
Expr * expressionLeft;
Expr * expressionRight;
Statement * statement;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){return FOR_STATEMENT;}
};
class ExprStatement : public Statement{
public:
ExprStatement(Expr * expr, int line){
this->expr = expr;
this->line = line;
}
Expr * expr;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){return EXPRESSION_STATEMENT;}
};
class BreakStatement : public Statement{
public:
BreakStatement( int line){
this->line = line;
}
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){return BREAK_STATEMENT;}
};
class ContinueStatement : public Statement{
public:
ContinueStatement( int line){
this->line = line;
}
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){return BREAK_STATEMENT;}
};
class ReturnStatement : public Statement{
public:
ReturnStatement(Expr * expr, int line){
this->expr = expr;
this->line = line;
}
Expr * expr;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){return RETURN_STATEMENT;}
};
class PrintStatement : public Statement{
public:
PrintStatement(Expr * expr, int line){
this->expr = expr;
this->line = line;
}
int line;
Expr * expr;
int evaluateSemantic();
string genCode();
StatementKind getKind(){return PRINT_STATEMENT;}
};
IMPLEMENT_BINARY_EXPR(Add);
IMPLEMENT_BINARY_EXPR(Sub);
IMPLEMENT_BINARY_EXPR(Mul);
IMPLEMENT_BINARY_EXPR(Div);
IMPLEMENT_BINARY_EXPR(Eq);
IMPLEMENT_BINARY_EXPR(Neq);
IMPLEMENT_BINARY_EXPR(Gte);
IMPLEMENT_BINARY_EXPR(Lte);
IMPLEMENT_BINARY_EXPR(Gt);
IMPLEMENT_BINARY_EXPR(Lt);
IMPLEMENT_BINARY_EXPR(LogicalAnd);
IMPLEMENT_BINARY_EXPR(LogicalOr);
IMPLEMENT_BINARY_EXPR(Assign);
IMPLEMENT_BINARY_EXPR(PlusAssign);
IMPLEMENT_BINARY_EXPR(MinusAssign);
///agregado
IMPLEMENT_BINARY_EXPR(Percentage);