-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathast.h
More file actions
580 lines (488 loc) · 14.9 KB
/
ast.h
File metadata and controls
580 lines (488 loc) · 14.9 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
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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
#include <string>
#include <list>
#include <map>
#include "code.h"
using namespace std;
class Expression;
class InitDeclarator;
class Declaration;
class Parameter;
class Statement;
class Declarator;
class Initializer;
typedef list<Declarator *> DeclaratorList;
typedef list<Initializer *> InitializerList;
typedef list<Parameter* > ParametersList;
typedef list<Type>TypeList;
typedef list<Statement *> StatementList;
typedef list<Expression *> ExpressionList;
typedef list<Expression *> ArgumentsList;
typedef list<Expression *> ReturnExpressionList;
typedef list<Expression *> AssignmentList;
enum StatementKind{
FOR_STATEMENT,
IF_STATEMENT,
EXPRESSION_STATEMENT,
RETURN_STATEMENT,
CONTINUE_STATEMENT,
BREAK_STATEMENT,
BLOCK_STATEMENT,
FUNCTION_DEFINITION_STATEMENT,
GLOBAL_DECLARATION_STATEMENT,
ELSE_STATEMENT,
JUMP_STATEMENT,
VAR_DECLARATION_STATEMENT,
PRINT_STATEMENT
};
enum UnaryType{
INCREMENT,
DECREMENT,
NOT
};
class Expression {
public:
int line;
virtual Type getType() = 0;
virtual void genCode(Code &code) = 0;
};
class Statement{
public:
int line;
virtual int evaluateSemantic() = 0;
virtual StatementKind getKind() = 0;
virtual string genCode() = 0;
};
class Initializer{
public:
Initializer(Expression * initializer, ExpressionList arrayValues, bool isArrayInitializer, Type type, int line){
this->initializer = initializer;
this->arrayValues = arrayValues;
this->type = type;
this->isArrayInitializer = isArrayInitializer;
this->line = line;
}
Expression * initializer;
ExpressionList arrayValues;
Type type;
bool isArrayInitializer;
int line;
};
class Declarator{
public:
Declarator(string id, Expression * arraySize, bool isArray, int line){
this->id = id;
this->arraySize = arraySize;
this->isArray = isArray;
this->line = line;
}
string id;
Expression * arraySize;
bool isArray;
int line;
};
//Lista de las variables de la declaracion, probablemente no necesito esto.
class DeclarationList{
public:
DeclarationList(DeclaratorList declarators, int line){
this->declarators = declarators;
this->line = line;
}
DeclaratorList declarators;
int line;
};
class VarDeclaration : public Statement{
public:
VarDeclaration(DeclaratorList declaratorsList, InitializerList initializerList, Type type, int line ) {
this->declaratorsList = declaratorsList;
this->initializerList = initializerList;
this->type = type;
this->line = line - 1;
}
DeclaratorList declaratorsList;
InitializerList initializerList;
Type type;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return VAR_DECLARATION_STATEMENT;
}
};
class GlobalDeclaration : public Statement{
public:
GlobalDeclaration(VarDeclaration * declarationStatement){
this->declarationStatement = declarationStatement;
}
VarDeclaration * declarationStatement;
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return GLOBAL_DECLARATION_STATEMENT;
}
};
class Parameter{
public:
Parameter(string id, Type type, bool isArray, int line){
this->id = id;
this->type = type;
this->isArray = isArray;
this->line = line;
}
string id;
Type type;
bool isArray;
int line;
int evaluateSemantic();
};
class BlockStatement : public Statement {
public:
BlockStatement(StatementList statements, int line){
this->statements = statements;
this->line = line;
}
StatementList statements;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return BLOCK_STATEMENT;
}
};
class PrintStatement : public Statement {
public:
PrintStatement(ArgumentsList args, int line){
this->args = args;
this->line = line;
}
ArgumentsList args;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return PRINT_STATEMENT;
}
};
class FunctionDefinition : public Statement {
public:
FunctionDefinition( string id, ParametersList params, Type type, TypeList typeList, string functionKind, Statement * statement, int line){
this->id = id;
this->params = params;
this->type = type;
this->functionKind = functionKind;
this->statement = statement;
this->line = line;
}
string id;
ParametersList params;
Type type;
TypeList typeList;
string functionKind;
Statement * statement;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return FUNCTION_DEFINITION_STATEMENT;
}
};
class IntExpression : public Expression{
public:
IntExpression(int value, int line){
this->value = value;
this->line = line;
}
int value;
int line;
Type getType();
void genCode(Code &code);
};
class FloatExpression : public Expression{
public:
FloatExpression(float value, int line){
this->value = value;
this->line = line;
}
float value;
int line;
Type getType();
void genCode(Code &code);
};
class BoolExpression : public Expression{
public:
BoolExpression(bool value, int line){
this->value = value;
this->line = line;
}
bool value;
int line;
Type getType();
void genCode(Code &code);
};
class StringExpression : public Expression{
public:
StringExpression(string value, int line){
this->value = value;
this->line = line;
}
string value;
int line;
Type getType();
void genCode(Code &code);
};
class IdExpression : public Expression{
public:
IdExpression(string value, int line){
this->value = value;
this->line = line;
}
string value;
int line;
Type getType();
void genCode(Code &code);
};
class BinaryExpression : public Expression{
public:
BinaryExpression(Expression * leftExpression, Expression * rightExpression, int line){
this->leftExpression = leftExpression;
this->rightExpression = rightExpression;
this->line = line;
}
Expression * leftExpression;
Expression * rightExpression;
int line;
};
class BinaryAssignExpression : public Expression{
public:
BinaryAssignExpression(ExpressionList leftExpressionList, InitializerList rightExpressionList, int line){
this->leftExpressionList = leftExpressionList;
this->rightExpressionList = rightExpressionList;
this->line = line;
}
ExpressionList leftExpressionList;
InitializerList rightExpressionList;
int line;
};
#define IMPLEMENT_BINARY_EXPRESSION(name) \
class name##Expression : public BinaryExpression{\
public: \
name##Expression(Expression * leftExpression, Expression * rightExpression, int line) : BinaryExpression(leftExpression, rightExpression, line){}\
Type getType(); \
void genCode(Code &code);\
};
#define IMPLEMENT_BINARY_ASSIGN_EXPRESSION(name) \
class name##Expression : public BinaryAssignExpression{\
public: \
name##Expression(ExpressionList leftExpressionList, InitializerList rightExpressionList, int line) : BinaryAssignExpression(leftExpressionList, rightExpressionList, line){}\
Type getType(); \
void genCode(Code &code);\
};
class UnaryExpression : public Expression{
public:
UnaryExpression(int type, Expression* expression, int line){
this->type = type;
this->expression = expression;
this->line = line;
}
int type;
Expression* expression;
int line;
Type getType();
void genCode(Code &code);
};
class PostIncrementExpression: public Expression{
public:
PostIncrementExpression(Expression * expression, int line){
this->expression = expression;
this->line = line;
}
Expression * expression;
int line;
Type getType();
void genCode(Code &code);
};
class PostDecrementExpression: public Expression{
public:
PostDecrementExpression(Expression * expression, int line){
this->expression = expression;
this->line = line;
}
Expression * expression;
int line;
Type getType();
void genCode(Code &code);
};
class ArrayExpression : public Expression{
public:
ArrayExpression(IdExpression * id, Expression * expression, int line){
this->id = id;
this->expression = expression;
this->line = line;
}
IdExpression * id;
Expression * expression;
int line;
Type getType();
void genCode(Code &code);
};
class FunctionCallExpression : public Expression{
public:
FunctionCallExpression(IdExpression * id, ArgumentsList args, int line){
this->id = id;
this->args = args;
this->line = line;
}
IdExpression * id;
ArgumentsList args;
int line;
Type getType();
void genCode(Code &code);
};
class FunctionInvocationExpression : public Expression{
public:
FunctionInvocationExpression(IdExpression * id, IdExpression * expression, ArgumentsList args, int line){
this->id = id;
this->expression = expression;
this->args = args;
this->line = line;
}
IdExpression * id;
IdExpression * expression;
ArgumentsList args;
int line;
Type getType();
void genCode(Code &code);
};
class ElseStatement : public Statement{
public:
ElseStatement(Expression * initExpression, Expression * conditionalExpression, Statement * trueStatement, Statement * falseStatement, int line){
this->initExpression = initExpression;
this->conditionalExpression = conditionalExpression;
this->trueStatement = trueStatement;
this->falseStatement = falseStatement;
this->line = line;
}
Expression * initExpression;
Expression * conditionalExpression;
Statement * trueStatement;
Statement * falseStatement;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return ELSE_STATEMENT;
}
};
class IfStatement : public Statement{
public:
IfStatement(Expression * initExpression, Expression * conditionalExpression, Statement * trueStatement, int line){
this->initExpression = initExpression;
this->conditionalExpression = conditionalExpression;
this->trueStatement = trueStatement;
this->line = line;
}
Expression * initExpression;
Expression * conditionalExpression;
Statement * trueStatement;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return IF_STATEMENT;
}
};
class ForStatement : public Statement{
public:
ForStatement(Expression * initExpr, Expression * conditionalExpr, Expression * postExpr, Statement * statement, int line){
this->initExpr = initExpr;
this->conditionalExpr = conditionalExpr;
this->postExpr = postExpr;
this->statement = statement;
this->line = line;
}
Expression * initExpr;
Expression * conditionalExpr;
Expression * postExpr;
Statement * statement;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return FOR_STATEMENT;
}
};
class ReturnStatement : public Statement{
public:
ReturnStatement( ReturnExpressionList expressionList, int line ){
this->expressionList = expressionList;
this->line = line;
}
ReturnExpressionList expressionList;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return RETURN_STATEMENT;
}
};
class JumpStatement : public Statement{
public:
JumpStatement(int jumpKind, int line ){
this->jumpKind = jumpKind;
this->line = line;
}
int jumpKind;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return JUMP_STATEMENT;
}
};
class ExpressionStatement : public Statement{
public:
ExpressionStatement(Expression * expression, int line){
this->expression = expression;
this->line = line;
}
Expression * expression;
int line;
int evaluateSemantic();
string genCode();
StatementKind getKind(){
return EXPRESSION_STATEMENT;
}
};
IMPLEMENT_BINARY_EXPRESSION(Add);
IMPLEMENT_BINARY_EXPRESSION(Sub);
IMPLEMENT_BINARY_EXPRESSION(Mult);
IMPLEMENT_BINARY_EXPRESSION(Div);
IMPLEMENT_BINARY_EXPRESSION(Mod);
IMPLEMENT_BINARY_EXPRESSION(Pow);
IMPLEMENT_BINARY_EXPRESSION(Equal);
IMPLEMENT_BINARY_EXPRESSION(NotEqual);
IMPLEMENT_BINARY_EXPRESSION(Gte);
IMPLEMENT_BINARY_EXPRESSION(Lte);
IMPLEMENT_BINARY_EXPRESSION(Gt);
IMPLEMENT_BINARY_EXPRESSION(Lt);
IMPLEMENT_BINARY_EXPRESSION(LogicalAnd);
IMPLEMENT_BINARY_EXPRESSION(LogicalOr);
// IMPLEMENT_BINARY_EXPRESSION(Assign);
// IMPLEMENT_BINARY_EXPRESSION(PlusAssign);
// IMPLEMENT_BINARY_EXPRESSION(MinusAssign);
// IMPLEMENT_BINARY_EXPRESSION(MultAssign);
// IMPLEMENT_BINARY_EXPRESSION(DivAssign);
// IMPLEMENT_BINARY_EXPRESSION(ModAssign);
// IMPLEMENT_BINARY_EXPRESSION(PowAssign);
// IMPLEMENT_BINARY_EXPRESSION(AndAssign);
// IMPLEMENT_BINARY_EXPRESSION(OrAssign);
// IMPLEMENT_BINARY_EXPRESSION(ColonAssign);
IMPLEMENT_BINARY_ASSIGN_EXPRESSION(Assign);
IMPLEMENT_BINARY_ASSIGN_EXPRESSION(PlusAssign);
IMPLEMENT_BINARY_ASSIGN_EXPRESSION(MinusAssign);
IMPLEMENT_BINARY_ASSIGN_EXPRESSION(MultAssign);
IMPLEMENT_BINARY_ASSIGN_EXPRESSION(DivAssign);
IMPLEMENT_BINARY_ASSIGN_EXPRESSION(ModAssign);
IMPLEMENT_BINARY_ASSIGN_EXPRESSION(PowAssign);
IMPLEMENT_BINARY_ASSIGN_EXPRESSION(AndAssign);
IMPLEMENT_BINARY_ASSIGN_EXPRESSION(OrAssign);
IMPLEMENT_BINARY_ASSIGN_EXPRESSION(ColonAssign);