-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAST.h
More file actions
454 lines (370 loc) · 11.1 KB
/
AST.h
File metadata and controls
454 lines (370 loc) · 11.1 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
#if !defined(__AST_H__)
#define __AST_H__
#include <iostream>
#include <sstream>
#include <list>
#include <cassert>
#include "Token.h"
#include "Base.h"
#include "Types.h"
// This is the base type for Abstract Syntax Trees. All AST's extend this
// class (or a class that extends it)
class AST: public Base {
public:
AST() : typechecked(false), typecheckingPassed(false) {};
virtual string toString() = 0;
bool typechecked;
bool typecheckingPassed;
};
// A base class representing declarations
class ASTDecl : public AST {
public:
ASTDecl(string name) : AST(), Name(name) {};
virtual string toString() = 0;
string Name;
bool sameAs(ASTDecl *cls);
};
// A base class for declarations that can exist in classes
class ASTClassDecl;
class ASTClassableDecl : public ASTDecl {
public:
ASTClassableDecl(string name) : ASTDecl(name), Class(NULL) {};
ASTClassDecl *Class;
};
// A base class for declarations that can contain members
class ASTMemberedDecl : public ASTDecl {
public:
ASTMemberedDecl(string name) : ASTDecl(name) {};
virtual ASTDecl *lookupMember(string name) = 0;
};
// A base class representing statements
class ASTStmt : public AST {
public:
ASTStmt() : AST() {};
virtual string toString() = 0;
};
// A class representing expressions. Objects of this type are empty expressions.
class ASTExpr : public ASTStmt {
public:
ASTExpr() : ASTStmt(), ExprType(NULL) {};
virtual string toString();
virtual bool isEmpty() { return true; };
TyType *ExprType;
};
class Types : public list<TyType*>, public Base {
public:
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seenPtrs);
};
class ASTExprs : public list<ASTExpr*>, public Base {
public:
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seenPtrs);
};
class ASTDecls : public list<ASTDecl*>, public Base {
public:
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seenPtrs);
};
class ASTStmts : public list<ASTStmt*>, public Base {
public:
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seenPtrs);
};
class ASTVarDecl;
// The enumeration for things that can be passed to operators
typedef enum {
OpAssign = '=',
OpAdd = '+',
OpSubtract = '-',
OpMultiply = '*',
OpDivide = '/',
OpModulos = '%',
OpLess = '<',
OpLessEqual = 256,
OpGreater = '>',
OpGreaterEqual = OpLessEqual + 1,
OpEqual = OpGreaterEqual + 1,
OpNotEqual = OpEqual + 1,
OpLogicalAnd = OpNotEqual + 1,
OpLogicalOr = OpLogicalAnd + 1,
OpNot = '!',
OpIndex = OpLogicalOr + 1
} ASTOp;
// An output operator for displaying various types of ASTs
ostream& operator << (ostream& stream, AST* ast);
ostream& operator << (ostream& stream, ASTDecls* decls);
ostream& operator << (ostream& stream, ASTStmts* stmts);
ostream& operator << (ostream& stream, ASTExprs* exprs);
ostream& operator << (ostream& stream, Types* types);
ostream& operator << (ostream& stream, ASTOp op);
// Unary expressions
class ASTUnaryExpr : public ASTExpr {
public:
ASTUnaryExpr(ASTOp op, ASTExpr* left) : ASTExpr(), Op(op), Left(left) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
virtual bool isEmpty() { return false; };
ASTOp Op;
ASTExpr* Left;
};
// Binary expressions
class ASTBinaryExpr : public ASTExpr {
public:
ASTBinaryExpr(ASTOp op, ASTExpr* left, ASTExpr* right)
: ASTExpr(), Op(op), Left(left), Right(right) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
virtual bool isEmpty() { return false; };
ASTOp Op;
ASTExpr* Left;
ASTExpr* Right;
};
// Member selection: obj.id
class ASTFieldExpr : public ASTExpr {
public:
ASTFieldExpr(ASTExpr* left, string right) : ASTExpr(), Left(left), Right(right) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
virtual bool isEmpty() { return false; };
ASTExpr* Left;
string Right;
ASTDecl *_LeftDecl;
ASTVarDecl *_RightDecl;
};
// Built-in ReadInteger
class ASTBuiltinReadInteger : public ASTExpr {
public:
virtual string toString();
virtual bool isEmpty() { return false; };
};
// Built-in Print
class ASTBuiltinPrint : public ASTExpr {
public:
ASTBuiltinPrint(ASTExprs* expr) : ASTExpr(), Expr(expr) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
virtual bool isEmpty() { return false; };
ASTExprs* Expr;
};
// Built-in ReadLine
class ASTBuiltinReadLine : public ASTExpr {
public:
virtual string toString();
virtual bool isEmpty() { return false; };
};
// Built-in New
class ASTBuiltinNew : public ASTExpr {
public:
ASTBuiltinNew(TyType* type) : ASTExpr(), Type(type) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
virtual bool isEmpty() { return false; };
TyType* Type;
};
// Built-in NewArray
class ASTBuiltinNewArray : public ASTExpr {
public:
ASTBuiltinNewArray(ASTExpr* expr, TyType* type) : ASTExpr(), Expr(expr), Type(type) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
virtual bool isEmpty() { return false; };
ASTExpr* Expr;
TyType* Type;
};
class ASTDeclExpr : public ASTExpr {
public:
ASTDeclExpr(ASTDecl *d) : Decl(d) {};
ASTDecl *Decl;
};
// Function Call
class ASTFunctionCall : public ASTDeclExpr {
public:
ASTFunctionCall(string name, ASTExprs* actuals) : ASTDeclExpr(NULL), Name(name), Actuals(actuals) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
virtual bool isEmpty() { return false; };
string Name;
ASTExprs * Actuals;
};
// Method invocation: obj.method(args...)
class ASTMemberFunctionCall : public ASTDeclExpr {
public:
ASTMemberFunctionCall(ASTExpr* object, string memberName, ASTExprs* actuals)
: ASTDeclExpr(NULL), Object(object), MemberName(memberName), Actuals(actuals) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
virtual bool isEmpty() { return false; };
ASTExpr* Object;
string MemberName;
ASTExprs* Actuals;
};
// Integer constant
class ASTIntConst : public ASTExpr {
public:
ASTIntConst(int value) : ASTExpr(), Value(value) {};
virtual string toString();
virtual bool isEmpty() { return false; };
int Value;
};
// Double constant
class ASTDoubleConst : public ASTExpr {
public:
ASTDoubleConst(double value) : ASTExpr(), Value(value) {};
virtual string toString();
virtual bool isEmpty() { return false; };
double Value;
};
// Bool constant
class ASTBoolConst : public ASTExpr {
public:
ASTBoolConst(bool value) : ASTExpr(), Value(value) {};
virtual string toString();
virtual bool isEmpty() { return false; };
bool Value;
};
// String constant
class ASTStringConst : public ASTExpr {
public:
ASTStringConst(string value) : ASTExpr(), Value(value) {};
virtual string toString();
virtual bool isEmpty() { return false; };
string Value;
};
// Null constant.
class ASTNullConst : public ASTExpr {
public:
virtual string toString();
virtual bool isEmpty() { return false; };
};
// An object for `this'.
class ASTThis : public ASTExpr {
public:
virtual string toString();
virtual bool isEmpty() { return false; };
};
// An object for `super'.
class ASTSuper : public ASTExpr {
public:
virtual string toString();
virtual bool isEmpty() { return false; };
};
// A variable reference
class ASTVariable : public ASTDeclExpr {
public:
ASTVariable(string name) : ASTDeclExpr(NULL), Name(name) {};
virtual string toString();
virtual bool isEmpty() { return false; };
string Name;
};
// if statement
class ASTIf : public ASTStmt {
public:
ASTIf(ASTExpr* cond, ASTStmt* then, ASTStmt* elsePart)
: ASTStmt(), Cond(cond), Then(then), ElsePart(elsePart) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
ASTExpr* Cond;
ASTStmt* Then;
ASTStmt* ElsePart;
};
// while statement
class ASTWhile : public ASTStmt {
public:
ASTWhile(ASTExpr* cond, ASTStmt* stmt) : ASTStmt(), Cond(cond), Stmt(stmt) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
ASTExpr* Cond;
ASTStmt* Stmt;
};
// for statement
class ASTFor : public ASTStmt {
public:
ASTFor(ASTExpr* init, ASTExpr* cond, ASTExpr* incr, ASTStmt* stmt)
: ASTStmt(), Init(init), Cond(cond), Incr(incr), Stmt(stmt) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
ASTExpr* Init;
ASTExpr* Cond;
ASTExpr* Incr;
ASTStmt* Stmt;
};
// break statement
class ASTBreak : public ASTStmt {
public:
ASTBreak() : ASTStmt() {};
virtual string toString();
private:
};
// return statement
class ASTReturn : public ASTStmt {
public:
ASTReturn(ASTExpr* expr) : ASTStmt(), Expr(expr) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
ASTExpr* Expr;
};
// A block of statements surrounded by { }
class ASTBlock : public ASTStmt {
public:
ASTBlock(ASTDecls* decls, ASTStmts* stmts) : ASTStmt(), Decls(decls), Stmts(stmts) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
ASTDecls* Decls;
ASTStmts* Stmts;
};
// A class declaration and definition
class ASTClassDecl : public ASTMemberedDecl, public TyNamedType {
public:
ASTClassDecl(string name, TyType* baseClass, Types* interfaces, ASTDecls* fields)
: ASTMemberedDecl(name), isGlobal(false), BaseClass(baseClass), Interfaces(interfaces), Fields(fields) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
ASTDecl *lookupMember(string name);
ASTClassDecl *superClass();
TyType* BaseClass;
Types* Interfaces;
ASTDecls* Fields;
bool isGlobal; // Whether or not the class is "THE" class.
bool subclassOf(ASTClassDecl *parent);
};
// A variable declaration
class ASTVarDecl : public ASTClassableDecl {
public:
ASTVarDecl(TyType* type, string name) : ASTClassableDecl(name), Type(type) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
TyType* Type;
};
// A function declaration and definition
class ASTFunctionDecl : public ASTClassableDecl {
public:
ASTFunctionDecl(TyType* returnType, string name, ASTDecls* formals, ASTBlock* block)
: ASTClassableDecl(name), ReturnType(returnType), Formals(formals), Block(block) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
TyType* ReturnType;
ASTDecls* Formals;
ASTBlock* Block;
};
// A function prototype
class TyPrototype : public ASTDecl, public TyType {
public:
TyPrototype(string name, TyType* returnType, ASTDecls* formals)
: ASTDecl(name), ReturnType(returnType), Formals(formals) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
TyType* ReturnType;
ASTDecls* Formals;
};
// An interface type
class TyInterface : public ASTMemberedDecl, public TyNamedType {
public:
TyInterface(string name, Types* prototypes)
: ASTMemberedDecl(name), Prototypes(prototypes) {};
virtual string toString();
virtual bool hasPointerTo(Base *base, set<Base *> *seen);
ASTDecl *lookupMember(string name);
Types* Prototypes;
};
#endif