-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastunits.cpp
475 lines (390 loc) · 9.91 KB
/
astunits.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
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
#include "astunits.h"
extern symboltable symtab;
extern memallocator alloc;
extern typelibrary typelib;
//
//
//////////////////// subclassdefine
//
//
void subclassdefine::debug(int ind)
{
cout << indent(ind) << "subclassdefine" << endl;
thisclass->debug(ind + 1);
superclass->debug(ind + 1);
}
void subclassdefine::createTypes()
{
string thisclassname = symtab.idlookup(thisclass->getSymbolid())->name;
string superclassname = symtab.idlookup(superclass->getSymbolid())->name;
type* thistype = typelib.getOrCreateType(thisclassname);
type* supertype = typelib.getOrCreateType(superclassname);
if (thistype->superclass) {
cout << " superclass defined twice for " << thisclassname << endl;
exit(1);
}
thistype->superclass = supertype;
}
subclassdefine::~subclassdefine()
{
delete thisclass;
delete superclass;
}
//
//
//////////////////// propertydefine
//
//
void propertydefine::debug(int ind)
{
cout << indent(ind) << "property define (" + symtab.idlookup(propid)->name + ")" << endl;
obj->debug(ind + 1);
proptype->debug(ind + 1);
}
void propertydefine::createTypes()
{
string objname = symtab.idlookup(obj->getSymbolid())->name;
string proptypename = symtab.idlookup(proptype->getSymbolid())->name;
string propname = symtab.idlookup(propid)->name;
type* objtype = typelib.getOrCreateType(objname);
type* proptype = typelib.getOrCreateType(proptypename);
property* p = objtype->getPropertyByName(propname);
if (p) {
cout << "property defined twice for " << propname << endl;
exit(1);
}
p = new property(propname, proptype);
objtype->addProperty(p);
objtype->size++;
}
propertydefine::~propertydefine()
{
delete obj;
delete proptype;
}
//
//
//////////////////// proceduredeclare
//
//
void proceduredeclare::debug(int ind)
{
cout << indent(ind) << "procedure declare (" + symtab.idlookup(procname)->name + ")" << endl;
thisclass->debug(ind + 1);
params->debug(ind + 1);
}
void proceduredeclare::createTypes()
{
string thisclassname = symtab.idlookup(thisclass->getSymbolid())->name;
string procnamestr = symtab.idlookup(procname)->name;
vector<type*> paramtypes = params->getTypes();
type* objtype = typelib.getOrCreateType(thisclassname);
// check for doubly-defined methods
// method overloading not yet supported
if (objtype->getMethodByName(procnamestr)) {
cout << "method defined twice for " << procnamestr << endl;
exit(1);
}
// return type is none, so pass 0
method* m = new method(procnamestr, 0, paramtypes);
objtype->addMethod(m);
}
proceduredeclare::~proceduredeclare()
{
delete thisclass;
delete params;
}
//
//
//////////////////// functiondeclare
//
//
void functiondeclare::debug(int ind)
{
cout << indent(ind) << "function declare" << endl;
funcname->debug(ind + 1);
classname->debug(ind + 1);
params->debug(ind + 1);
returntype->debug(ind + 1);
}
void functiondeclare::createTypes()
{
string thisclassname = symtab.idlookup(classname->getSymbolid())->name;
string procnamestr = symtab.idlookup(funcname->getSymbolid())->name;
string returntypename = symtab.idlookup(returntype->getSymbolid())->name;
vector<type*> paramtypes = params->getTypes();
type* objtype = typelib.getOrCreateType(thisclassname);
// check for doubly-defined methods
// method overloading not yet supported
if (objtype->getMethodByName(procnamestr)) {
cout << "method defined twice for " << procnamestr << endl;
exit(1);
}
type* rtype = typelib.getOrCreateType(returntypename);
method* m = new method(procnamestr, rtype, paramtypes);
objtype->addMethod(m);
}
functiondeclare::~functiondeclare()
{
delete funcname;
delete classname;
delete params;
delete returntype;
}
//
//
//
////////////////// functionunit
//
//
//
//
registerid functionunit::generateCode(operation* &unused)
{
// the semantic check will establish the method pointer.
// functions get a start operation. Ignore p.
// the start operation may have already been generated by a call to this.
alloc.reset();
symtab.resetScope();
operation* entrypoint = mymethod->code;
operation* p = entrypoint;
// entrypoint->setDebugText(se->name);
if (preps) {
preps->generateCode(p);
}
statements->generateCode(p);
cout << "not yet implemented: return code for procedures?" << endl;
exit(1);
/*
if (ftype == FTYPE_PROCEDURE) {
// procedures do not have return statements but we still have to put this in.
registerid jumpto = alloc.getNextRegister();
entrypoint = entrypoint->append(new op_pop(jumpto));
entrypoint = entrypoint->append(new op_push((registerid)0)); // return value of NULL
entrypoint = entrypoint->append(new op_jumpreg(jumpto));
//operation* ret = new op_return();
//entrypoint->append(ret);
}
*/
mymethod->code = entrypoint;
return -1;
}
/*
*
registerid generateCode(operation* &p);
alloc.reset();
symtab.resetScope();
unit* u = defs.getCurrent();
operation* z;
u->generateCode(z);
type* gtype = typelib.getTypeByName("##global");
method* m = new method(u->getName(), z, 0, vector<type*>());
gtype->addMethod(m);
*/
functionunit::~functionunit()
{
delete statements;
if (preps) delete preps;
}
//
//
//
////////////////// run
//
//
//
void run::debug(int ind)
{
cout << indent(ind) << "run" << endl;
statements->debug(ind + 1);
}
void run::createTypes()
{
type* t = typelib.getOrCreateType("##global");
vector<type*> p; // empty vector of parameters
if (t->getMethodByName("run")) {
cout << "error: run method defined twice." << endl;
exit(1);
}
mymethod = new method("run", 0, p);
t->addMethod(mymethod);
}
//
//
//
////////////////// proceduredefine
//
//
//
void proceduredefine::debug(int ind)
{
cout << indent(ind) << "proceduredefine (name=" + symtab.idlookup(name)->name + ")" << endl;
obj->debug(ind + 1);
preps->debug(ind + 1);
statements->debug(ind + 1);
}
void proceduredefine::createTypes()
{
symbolid objname = obj->getSymbolid();
string nm = symtab.idlookup(objname)->name;
type* thistype = typelib.getOrCreateType(nm);
method* m;
if (!(m = thistype->getMethodByName(nm))) {
cout << "error: " << nm << " tried to define an undeclared procedure." << endl;
exit(1);
}
mymethod = m;
}
proceduredefine::~proceduredefine()
{
delete obj;
}
//
//
//
////////////////// methoddefineunit
//
//
//
void methoddefineunit::debug(int ind)
{
cout << indent(ind) << "methoddefineunit" << endl;
name->debug(ind + 1);
obj->debug(ind + 1);
preps->debug(ind + 1);
statements->debug(ind + 1);
}
void methoddefineunit::createTypes()
{
symbolid objname = obj->getSymbolid();
string nm = symtab.idlookup(objname)->name;
type* thistype = typelib.getOrCreateType(nm);
method* m;
if (!(m = thistype->getMethodByName(nm))) {
cout << "error: " << nm << " tried to define an undeclared procedure." << endl;
exit(1);
}
mymethod = m;
}
methoddefineunit::~methoddefineunit()
{
delete name;
delete obj;
}
//
//
//
//////////////////constructordefine
//
//
//
void constructordefine::debug(int ind)
{
cout << indent(ind) << "constructordefine" << endl;
obj->debug(ind + 1);
preps->debug(ind + 1);
statements->debug(ind + 1);
}
void constructordefine::createTypes()
{
symbolid objname = obj->getSymbolid();
string nm = symtab.idlookup(objname)->name;
type* thistype = typelib.getOrCreateType(nm);
method* m;
if (!(m = thistype->getMethodByName(nm))) {
cout << "error: " << nm << " tried to define an undeclared procedure." << endl;
exit(1);
}
mymethod = m;
}
constructordefine::~constructordefine()
{
delete obj;
}
/*
void function::debug(int ind)
{
if (ftype == FTYPE_PROCEDURE) {
cout << indent(ind) << "procedure (" << symtab.idlookup(classname)->name << "." << symtab.idlookup(name)->name << ")" << endl;
} else if (ftype == FTYPE_CONSTRUCTOR) {
cout << indent(ind) << "constructor" << endl;
} else if (ftype == FTYPE_RUN) {
cout << indent(ind) << "run function" << endl;
} else if (ftype == FTYPE_GETTER) {
cout << indent(ind) << "getter (" << symtab.idlookup(classname)->name << "." << symtab.idlookup(name)->name << ")" << endl;
} else if (ftype == FTYPE_SETTER) {
cout << indent(ind) << "setter (" << symtab.idlookup(classname)->name << "." << symtab.idlookup(name)->name << ")" << endl;
} else {
cout << indent(ind) << "unknown function type" << endl;
}
if (args) {
args->debug(ind + 1);
}
code->debug(ind + 1);
}
void function::semanticCheck()
{
code->semanticCheck();
if (ftype == FTYPE_GETTER) {
// check to see whether there is a return statement
// error if not
}
}
string function::getName()
{
return symtab.idlookup(name)->name;
}
//if we want to allow people to call functions before they are defined
//we need to introduce an additional pass.
//C doesn't allow this but most other languages do.
//java:
//class foo
//{
// int doit()
// {
// return reallydoit();
// }
// int reallydoit()
// {
// return 4;
// }
//}
//so we need to have a first pass that establishes the type tree
//before we generate the code.
registerid function::generateCode(operation* &p)
{
// we need to store the code in the type tree, not in the symbol table.
cout << "NOT YET IMPLEMENTED: function::generateCode (1)" << endl;
exit(1);
// // functions get a start operation. Ignore p.
// // the start operation may have already been generated by a call to this.
// symtableentry* se = symtab.idlookup(name);
// operation* entrypoint = se->code;
// if (entrypoint == 0) {
// entrypoint = new op_start();
// se->code = entrypoint;
// }
// entrypoint->setDebugText(se->name);
// operation* r = entrypoint;
// code->generateCode(entrypoint);
// if (ftype == FTYPE_PROCEDURE) {
// // procedures do not have return statements but we still have to put this in.
//
// registerid jumpto = alloc.getNextRegister();
// entrypoint = entrypoint->append(new op_pop(jumpto));
// entrypoint = entrypoint->append(new op_push((registerid)0)); // return value of NULL
// entrypoint = entrypoint->append(new op_jumpreg(jumpto));
//
// //operation* ret = new op_return();
// //entrypoint->append(ret);
// }
// p = r;
//
return -1;
}
function::~function()
{
delete args;
delete code;
}
*/