-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMiddleWare.cpp
427 lines (426 loc) · 11 KB
/
MiddleWare.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
#include "MiddleWare.h"
/* 创建常量声明节点 */
ConstAST *CreateConstAST(TreeNode *p){
string name(p->name);
BasicTypeAST * type = CreateTypeAST(p->dtype);
p = p->children[0];
constValue val;
switch (p->dtype->type){
case integer_type: case boolean_type: case char_type:
val.i = p->attr.intVal;
val.b = p->attr.intVal;
val.c = p->attr.intVal;
return new ConstAST(name, type, val);
case real_type:
val.d = p->attr.realVal;
return new ConstAST(name, type, val);
case string_type:
val.s = string(p->attr.strVal);
return new ConstAST(name, type, val);
default: return NULL;
}
}
/* 创建类型声明节点 */
BasicTypeAST *CreateTypeAST(TreeNode *p){
// cout<<"create type ast"<<endl;
if (!p) return NULL;
switch (p->type){
case integer_type:
// cout<<"integer"<<endl;
return new BasicTypeAST(Integer);
case real_type:
// cout<<"real"<<endl;
return new BasicTypeAST(Real);
case char_type:
// cout<<"char"<<endl;
return new BasicTypeAST(Char);
case boolean_type:
// cout<<"boolean"<<endl;
return new BasicTypeAST(Bool);
case string_type:
// cout<<"string"<<endl;
return new BasicTypeAST(String);
default:
return NULL;
}
}
/* 创建变量声明节点 */
VariableDeclAST * CreateVariableAST(TreeNode *p){
TreeNode *q = p->children[0];
vector<string> names;
while (q){
names.push_back(q->name);
// cout<<q->name<<endl;
q = q->sibling;
}
return new VariableDeclAST(CreateTypeAST(p->dtype), names);
}
/* 创建函数声明节点 */
/*PrototypeAST * CreatePrototypeAST(TreeNode *p){
vector <VariableDeclAST *> decl;
string name(p->name);
TreeNode *q = p->children[0];
TreeNode *type = p->dtype;
while (q){
TreeNode *qchildren = q->children[0];
while (qchildren){
VariableDeclAST *tmp = new VariableDeclAST(
qchildren->name,
CreateTypeAST(dtype),
);
decl.push_back(tmp);
qchildren = qchildren->sibling;
}
q = q->sibling;
}
return new PrototypeAST(name, decl, CreateTypeAST(type));
}*/
/* 创建表达式节点 */
ExprAST *CreateExprAST(TreeNode *p){
if (!p) return NULL;
// cout<<"create expr"<<endl;
ExprAST *left = CreateExprAST(p->children[0]);
ExprAST *right = CreateExprAST(p->children[1]);
ExprAST *tmp;
switch (p->expr){
case op_kind:{
switch (p->op){
case plus_kind: {
tmp = new BinaryExprAST(plusKind, left, right);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
case minus_kind: {
tmp = new BinaryExprAST(minusKind, left, right);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
case or_kind: {
tmp = new BinaryExprAST(orKind, left, right);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
case mul_kind: {
tmp = new BinaryExprAST(mulKind, left, right);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
case div_kind: {
tmp = new BinaryExprAST(divKind, left, right);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
case mod_kind: {
tmp = new BinaryExprAST(modKind, left, right);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
case and_kind: {
tmp = new BinaryExprAST(andKind, left, right);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
case ge_kind: {
tmp = new BinaryExprAST(geKind, left, right);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
case gt_kind: {
tmp = new BinaryExprAST(gtKind, left, right);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
case le_kind: {
tmp = new BinaryExprAST(leKind, left, right);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
case lt_kind: {
tmp = new BinaryExprAST(ltKind, left, right);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
case eq_kind: {
tmp = new BinaryExprAST(eqKind, left, right);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
case ueq_kind: {
tmp = new BinaryExprAST(ueqKind, left, right);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
case not_kind: {
tmp = new UnaryExprAST(notKind, left);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
case neg_kind: {
tmp = new UnaryExprAST(negKind, left);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
}
}
case id_kind:{
switch (p->id){
case Basic:
tmp = new VariableExprAST(p->name);
tmp->expr_type = Variable;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
case Array:
return NULL;
/*return new ArrayVariableExprAST(
p->name,
CreateExprAST(p->children[0])
);*/
case Record:
return NULL;
}
}
case con_kind:{
switch (p->dtype->type){
case integer_type:
tmp = new NumberExprAST(p->attr.intVal);
tmp->expr_type = NumberExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
case real_type:
tmp = new RealExprAST(p->attr.realVal);
tmp->expr_type = RealExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
case boolean_type:
tmp = new BoolExprAST(p->attr.intVal);
tmp->expr_type = BoolExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
case char_type:
tmp = new CharExprAST(p->attr.intVal);
tmp->expr_type = CharExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
case string_type:
tmp = new StringExprAST(p->attr.strVal);
tmp->expr_type = StringExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
default:
return NULL;
}
}
case fn_kind:{
std::vector<ExprAST *>args;
TreeNode *q = p->children[0];
while (q){
args.push_back(CreateExprAST(q));
q = q->sibling;
}
tmp = new CallFunctionExprAST(p->name, args, p->system);
tmp->expr_type = CallExpr;
tmp->type = CreateTypeAST(p->dtype);
return tmp;
}
}
}
ExprAST *CreateStmtExprAST(TreeNode *p){
// cout<<"createStmt"<<endl;
if (!p) return NULL;
ExprAST *tmp;
switch (p->stmt){
case assign_stmt:{
tmp = new BinaryExprAST(
assignmentKind,
CreateExprAST(p->children[0]),
CreateExprAST(p->children[1])
);
tmp->expr_type = BinaryExpr;
tmp->type = CreateTypeAST(p->children[1]->dtype);
return tmp;
}
case proc_stmt:{
std::vector<ExprAST *>args;
TreeNode *q = p->children[0];
while (q){
args.push_back(CreateExprAST(q));
q = q->sibling;
}
tmp = new CallProcedureExprAST(p->name, args, p->system);
tmp->expr_type = CallExpr;
return tmp;
}
case if_stmt:{
vector<ExprAST *>thenComp, elseComp;
TreeNode *q = p->children[1];
while (q){
thenComp.push_back(CreateStmtExprAST(q));
q = q->sibling;
}
q = p->children[2];
while (q){
elseComp.push_back(CreateStmtExprAST(q));
q = q->sibling;
}
tmp = new IfExprAST(CreateExprAST(p->children[0]), thenComp, elseComp);
return tmp;
}
case for_stmt: {
vector<ExprAST *> execComp;
TreeNode *q = p->children[2];
while (q){
execComp.push_back(CreateStmtExprAST(q));
q = q->sibling;
}
tmp = new ForExprAST(
string(p->name),
CreateExprAST(p->children[0]),
CreateExprAST(p->children[1]),
execComp, p->attr.intVal);
return tmp;
}
default:
return NULL;
}
}
vector<ExprAST *>CreateWriteAST(TreeNode *p, char *path){
vector<ExprAST *> retVal;
ExprAST *tmp;
TreeNode *q = p->children[0];
while (q){
std::vector<ExprAST *>args;
args.push_back(CreateExprAST(q));
string name("write");
TreeNode *type = Lookup(q->name, path)->dtype;
switch (type->type){
case integer_type: name+="I"; break;
case real_type: name+="R"; break;
default: name+="I"; break;
}
tmp = new CallProcedureExprAST(name, args, p->system);
tmp->expr_type = CallExpr;
retVal.push_back(tmp);
q = q->sibling;
}
return retVal;
}
vector<ExprAST *>CreateWriteLnAST(TreeNode *p, char *path){
vector<ExprAST *> retVal;
ExprAST *tmp;
TreeNode *q = p->children[0];
while (q){
std::vector<ExprAST *>args;
args.push_back(CreateExprAST(q));
string name("write");
TreeNode *type = Lookup(q->name, path)->dtype;
switch (type->type){
case integer_type: name+="I"; break;
case real_type: name+="R"; break;
default: name+="I"; break;
}
tmp = new CallProcedureExprAST(name, args, p->system);
tmp->expr_type = CallExpr;
retVal.push_back(tmp);
q = q->sibling;
}
std::vector<ExprAST *> args;
tmp = new CallProcedureExprAST("writeln", args, p->system);
retVal.push_back(tmp);
return retVal;
}
/* 创建函数过程节点 */
FunctionAST *CreateFunctionAST(TreeNode *p, char *path){
//PrototypeAST *proto;
// cout<<"createFunction"<<endl;
string name(p->name);
vector <VariableDeclAST *> args;
std::vector<ConstAST *> consts;
std::vector<SelfdefineTypeAST *> type;
std::vector<VariableDeclAST *> decl;
std::vector<FunctionAST *> functions;
std::vector<ExprAST *>body;
BasicTypeAST *returnType;
//proto = CreatePrototypeAST(p);
TreeNode *q = p->children[0];
//TreeNode *type = p->dtype;
// cout<<"create args"<<endl;
while (q){
VariableDeclAST *tmp = CreateVariableAST(q);
args.push_back(tmp);
q = q->sibling;
}
// cout<<"create return_type"<<endl;
returnType = CreateTypeAST(p->dtype);
/* routine head part */
q = p->children[1]->children[0];
while (q){
switch (q->node){
case const_kind:{
// cout<<"create const"<<endl;
consts.push_back(CreateConstAST(q));
break;
}
case type_kind:{
// cout<<"create type"<<endl;
//type.push_back(CreateTypeAST(q));
break;
}
case var_kind:{
// cout<<"create var"<<endl;
VariableDeclAST *tmp;
tmp = CreateVariableAST(q);
if (name=="main")
tmp->isGlobal = 1;
else
tmp->isGlobal = 0;
decl.push_back(tmp);
break;
}
case sub_kind:{
// cout<<"create function"<<endl;
char lpath[256];
sprintf(lpath, "%s/%s", path, q->name);
functions.push_back(CreateFunctionAST(q, path));
break;
}
}
q = q->sibling;
}
// cout<<"create stmt"<<endl;
/* routine body part */
q = p->children[1]->children[1];
while (q){
if (q->stmt==proc_stmt && q->system){
string qname(q->name);
vector<ExprAST *> sub_body;
if (qname=="write")
sub_body = CreateWriteAST(q, path);
else if (qname=="writeln")
sub_body = CreateWriteLnAST(q, path);
for (int i=0; i<sub_body.size(); i++)
body.push_back(sub_body[i]);
}
else
body.push_back(CreateStmtExprAST(q));
q = q->sibling;
}
if (p->sub==func_kind)
return new FunctionAST(name, args, returnType, consts, type, decl, functions, body, type_function);
else
return new FunctionAST(name, args, returnType, consts, type, decl, functions, body, type_procedure);
}