-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAST.cpp
432 lines (377 loc) · 8.44 KB
/
AST.cpp
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
#include <vector>
#include <string>
#include <iostream>
#include <map>
using namespace std;
#include "AST.h"
map<Variable, Literal> VarStore;
map<Function, vector<AST_variable*>> ParamStore;
map<Function, AST_stmts*> StmtStore;
bool Variable::operator<(const Variable& rhs) const
{
if (this == &rhs) // Short?cut self?comparison
return false;
// Compare first members
//
if (dtype < rhs.dtype)
return true;
else if (rhs.dtype < dtype)
return false;
// First members are equal, compare second members
//
if ((var->variableName) < rhs.var->variableName)
return true;
else if (rhs.var->variableName < (var->variableName))
return false;
// 2 variables cant have the same name
// All members are equal, so return false
return false;
}
bool Function::operator<(const Function& rhs) const
{
if (this == &rhs) // Short?cut self?comparison
return false;
// Compare first members
//
if (dtype < rhs.dtype)
return true;
else if (rhs.dtype < dtype)
return false;
// First members are equal, compare second members
//
if (functionName < rhs.functionName)
return true;
else if (rhs.functionName< functionName)
return false;
if (parameters < rhs.parameters)
return true;
else if (rhs.parameters< parameters)
return false;
// 2 variables cant have the same name
// All members are equal, so return false
return false;
}
//node
//prog
//stmts
void AST_stmts::push_back(AST_stmt* stmt)
{
this->stmt_list.push_back(stmt);
}
Literal AST_stmts::accept(Visitor & v)
{
//cout<<"stmts visited\n";
return v.visit(this);
}
//stmt
//semicolon
Literal AST_semicolon::accept(Visitor & v)
{
return v.visit(this);
}
//keyword
AST_keyword::AST_keyword(string keyword_type)
{
this->keyword_type = keyword_type;
}
Literal AST_keyword::accept(Visitor & v)
{
return v.visit(this);
}
//function_decl
AST_function_decl::AST_function_decl(string dtype, string functionName, AST_paramD_list* paramD_list, AST_stmts* stmts)
{
this->dtype = dtype;
this->functionName = functionName;
this->paramD_list = paramD_list;
this->stmts = stmts;
}
Literal AST_function_decl::accept(Visitor & v)
{
return v.visit(this);
}
//variable_decl
AST_variable_decl::AST_variable_decl(string dtype, AST_variable* variable)
{
this->dtype = dtype;
this->variable = variable;
}
Literal AST_variable_decl::accept(Visitor & v)
{
return v.visit(this);
}
//assignStmt
//assignStmt_old
AST_assignStmt_old::AST_assignStmt_old(AST_variable* varName, AST_expr* expr)
{
this->varName = varName;
this->expr = expr;
}
Literal AST_assignStmt_old::accept(Visitor & v)
{
return v.visit(this);
}
//AST_assignStmt_new
AST_assignStmt_new::AST_assignStmt_new(string dtype, AST_variable* varName, AST_expr* expr)
{
this->dtype = dtype;
this->varName = varName;
this->expr = expr;
}
Literal AST_assignStmt_new::accept(Visitor & v)
{
return v.visit(this);
}
//functionCall
//functionCall_noargs;
AST_functionCall_noargs::AST_functionCall_noargs(string functionName)
{
this->functionName = functionName;
}
Literal AST_functionCall_noargs::accept(Visitor & v)
{
return v.visit(this);
}
//functionCall_param
AST_functionCall_args::AST_functionCall_args(string functionName, AST_param_list * param_list)
{
this->functionName = functionName;
this->param_list = param_list;
}
Literal AST_functionCall_args::accept(Visitor & v)
{
return v.visit(this);
}
//ifStmt
//ifWEStmt
AST_ifWEStmt::AST_ifWEStmt(AST_expr* expr, AST_stmts* ifStmts)
{
this->expr = expr;
this->ifStmts = ifStmts;
}
Literal AST_ifWEStmt::accept(Visitor & v)
{
return v.visit(this);
}
//ifEStmt
AST_ifElseStmt::AST_ifElseStmt(AST_expr * expr, AST_stmts* ifStmts, AST_stmts* ifEStmts)
{
this->expr = expr;
this->ifStmts = ifStmts;
this->ifEStmts = ifEStmts;
}
Literal AST_ifElseStmt::accept(Visitor & v)
{
return v.visit(this);
}
//whileStmt
AST_whileStmt::AST_whileStmt(AST_expr* expr, AST_stmts* whileStmts)
{
this->expr = expr;
this->whileStmts = whileStmts;
}
Literal AST_whileStmt::accept(Visitor & v)
{
return v.visit(this);
}
//forStmt
AST_forStmt::AST_forStmt(AST_variable* intialize_var, AST_variable* start, AST_variable* step, AST_variable* end, AST_stmts* forStmts)
{
this->intialize_var = intialize_var;
this->start = start;
this->step = step;
this->end = end;
this->forStmts = forStmts;
}
Literal AST_forStmt::accept(Visitor & v)
{
return v.visit(this);
}
//returnStmt
AST_returnStmt::AST_returnStmt(AST_expr* expr)
{
this->expr = expr;
}
Literal AST_returnStmt::accept(Visitor & v)
{
return v.visit(this);
}
//inputStmt
AST_inputStmt::AST_inputStmt(AST_variable* var)
{
this->var = var;
}
Literal AST_inputStmt::accept(Visitor & v)
{
return v.visit(this);
}
//outputStmt
AST_outputStmt::AST_outputStmt(AST_variable* var)
{
this->var = var;
}
Literal AST_outputStmt::accept(Visitor & v)
{
return v.visit(this);
}
//expr
//expr_unary
AST_expr_unary::AST_expr_unary(string opType, AST_expr* expr)
{
this->opType = opType;
this->expr = expr;
}
Literal AST_expr_unary::accept(Visitor & v)
{
return v.visit(this);
}
//expr_binary
AST_expr_binary::AST_expr_binary(AST_expr* expr1, string opType, AST_expr* expr2)
{
this->expr1 = expr1;
this->opType = opType;
this->expr2 = expr2;
}
Literal AST_expr_binary::accept(Visitor & v)
{
return v.visit(this);
}
//expr_ternary
AST_expr_ternary::AST_expr_ternary(AST_expr* expr1, AST_expr* expr2, AST_expr* expr3)
{
this->expr1 = expr1;
this->expr2 = expr2;
this->expr3 = expr3;
}
Literal AST_expr_ternary::accept(Visitor & v)
{
return v.visit(this);
}
//paramD_list
void AST_paramD_list::push_back(AST_paramD* paramD)
{
this->paramDs.push_back(paramD);
}
Literal AST_paramD_list::accept(Visitor & v)
{
return v.visit(this);
}
//param_list
void AST_param_list::push_back(AST_param* param)
{
this->params.push_back(param);
}
Literal AST_param_list::accept(Visitor & v)
{
return v.visit(this);
}
//paramD
AST_paramD::AST_paramD(string dtype, AST_variable* var)
{
this->dtype = dtype;
this->var = var;
}
Literal AST_paramD::accept(Visitor & v)
{
return v.visit(this);
}
//param
//int
AST_int::AST_int(int value)
{
this->value = value;
}
Literal AST_int::accept(Visitor & v)
{
return v.visit(this);
}
//bool
AST_bool::AST_bool(int value)
{
this->value = value;
}
Literal AST_bool::accept(Visitor & v)
{
return v.visit(this);
}
//float
AST_float::AST_float(float value)
{
this->value = value;
}
Literal AST_float::accept(Visitor & v)
{
return v.visit(this);
}
//variable
//variable_OD
AST_variable_0D::AST_variable_0D(string variableName)
{
this->variableName = variableName;
}
Literal AST_variable_0D::accept(Visitor & v)
{
return v.visit(this);
}
//variable_1D
AST_variable_1D_v::AST_variable_1D_v(string variableName, AST_variable_0D* index)
{
this->variableName = variableName;
this->index = index;
}
Literal AST_variable_1D_v::accept(Visitor & v)
{
return v.visit(this);
}
AST_variable_1D_i::AST_variable_1D_i(string variableName, int index)
{
this->variableName = variableName;
this->index = index;
}
Literal AST_variable_1D_i::accept(Visitor & v)
{
return v.visit(this);
}
//variable_2D
AST_variable_2D_ii::AST_variable_2D_ii(string variableName, int index1,int index2)
{
this->variableName = variableName;
this->index1 = index1;
this->index2 = index2;
}
Literal AST_variable_2D_ii::accept(Visitor & v)
{
return v.visit(this);
}
AST_variable_2D_iv::AST_variable_2D_iv(string variableName, int index1,AST_variable_0D* index2)
{
this->variableName = variableName;
this->index1 = index1;
this->index2 = index2;
}
Literal AST_variable_2D_iv::accept(Visitor & v)
{
return v.visit(this);
}
AST_variable_2D_vi::AST_variable_2D_vi(string variableName, AST_variable_0D* index1,int index2)
{
this->variableName = variableName;
this->index1 = index1;
this->index2 = index2;
}
Literal AST_variable_2D_vi::accept(Visitor & v)
{
return v.visit(this);
}
AST_variable_2D_vv::AST_variable_2D_vv(string variableName, AST_variable_0D* index1,AST_variable_0D* index2)
{
this->variableName = variableName;
this->index1 = index1;
this->index2 = index2;
}
Literal AST_variable_2D_vv::accept(Visitor & v)
{
return v.visit(this);
}
//------------------------------
#include "traverse.cpp"