-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAST.ts
More file actions
397 lines (329 loc) · 9.84 KB
/
AST.ts
File metadata and controls
397 lines (329 loc) · 9.84 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
class Label {
static counter = 0;
value: number;
constructor() {
this.value = Label.counter++;
}
toString() {
return `.L${this.value}`;
}
}
export class Environment {
constructor(public locals: Map<string, number>,
public nextLocalOffset: number) {}
}
export interface AST {
emit(env: Environment): void;
equals(other: AST): boolean;
};
let emit = console.log;
export class Num implements AST {
constructor(public value: number) { }
emit(env: Environment) {
emit(` ldr r0, =${this.value}`);
}
equals(other: AST): boolean {
return other instanceof Num &&
this.value == other.value;
}
}
export class Id implements AST {
constructor(public value: string) { }
emit(env: Environment) {
let offset = env.locals.get(this.value);
if (offset) {
emit(` ldr r0, [fp, #${offset}]`);
} else {
throw Error(`Undefined variable: ${this.value}`);
}
}
equals(other: AST): boolean {
return other instanceof Id &&
other.value == this.value;
}
}
export class Not implements AST {
constructor(public term: AST) { }
emit(env: Environment) {
this.term.emit(env);
emit(` cmp r0, #0`);
emit(` moveq r0, #1`);
emit(` movne r0, #0`);
}
equals(other: AST): boolean {
return other instanceof Not &&
other.term.equals(this.term);
}
}
export class Equal implements AST {
constructor(public left: AST, public right: AST) { }
emit(env: Environment) {
this.left.emit(env);
emit(` push {r0, ip}`);
this.right.emit(env);
emit(` pop {r1, ip}`);
emit(` cmp r0, r1`);
emit(` moveq r0, #1`);
emit(` movne r0, #0`);
}
equals(other: AST): boolean {
return other instanceof Equal &&
other.left.equals(this.left) &&
other.right.equals(this.right);
}
}
export class NotEqual implements AST {
constructor(public left: AST, public right: AST) { }
emit(env: Environment) {
this.left.emit(env);
emit(` push {r0, ip}`);
this.right.emit(env);
emit(` pop {r1, ip}`);
emit(` cmp r0, r1`);
emit(` moveq r0, #0`);
emit(` movne r0, #1`);
}
equals(other: AST): boolean {
return other instanceof NotEqual &&
other.left.equals(this.left) &&
other.right.equals(this.right);
}
}
export class Add implements AST {
constructor(public left: AST, public right: AST) { }
emit(env: Environment) {
this.left.emit(env);
emit(` push {r0, ip}`);
this.right.emit(env);
emit(` pop {r1, ip}`);
emit(` add r0, r1, r0`);
}
equals(other: AST): boolean {
return other instanceof Add &&
other.left.equals(this.left) &&
other.right.equals(this.right);
}
}
export class Subtract implements AST {
constructor(public left: AST, public right: AST) { }
emit(env: Environment) {
this.left.emit(env);
emit(` push {r0, ip}`);
this.right.emit(env);
emit(` pop {r1, ip}`);
emit(` sub r0, r1, r0`);
}
equals(other: AST): boolean {
return other instanceof Subtract &&
other.left.equals(this.left) &&
other.right.equals(this.right);
}
}
export class Multiply implements AST {
constructor(public left: AST, public right: AST) { }
emit(env: Environment) {
this.left.emit(env);
emit(` push {r0, ip}`);
this.right.emit(env);
emit(` pop {r1, ip}`);
emit(` mul r0, r1, r0`);
}
equals(other: AST): boolean {
return other instanceof Multiply &&
other.left.equals(this.left) &&
other.right.equals(this.right);
}
}
export class Divide implements AST {
constructor(public left: AST, public right: AST) { }
emit(env: Environment) {
this.left.emit(env);
emit(` push {r0, ip}`);
this.right.emit(env);
emit(` pop {r1, ip}`);
emit(` udiv r0, r1, r0`);
}
equals(other: AST): boolean {
return other instanceof Divide &&
other.left.equals(this.left) &&
other.right.equals(this.right);
}
}
export class Call implements AST {
constructor(public callee: string,
public args: Array<AST>) { }
emit(env: Environment) {
let count = this.args.length;
if (count === 0) {
emit(` bl ${this.callee}`);
} else if (count === 1) {
this.args[0].emit(env);
emit(` bl ${this.callee}`);
} else if (count >= 2 && count <= 4) {
emit(` sub sp, sp, #16`);
this.args.forEach((arg,i) => {
arg.emit(env);
emit(` str r0, [sp, #${4 * i}]`);
});
emit(` pop {r0, r1, r2, r3}`);
emit(` bl ${this.callee}`);
} else {
throw Error("More tan 4 arguments: not supported");
}
}
equals(other: AST): boolean {
return other instanceof Call &&
this.callee === other.callee &&
this.args.length === other.args.length &&
this.args.every((arg, i) =>
arg.equals(other.args[i]));
}
}
export class Return implements AST {
constructor(public term: AST) { }
emit(env: Environment) {
this.term.emit(env);
emit(` mov sp, fp`);
emit(` pop {fp, pc}`);
}
equals(other: AST): boolean {
return other instanceof Return &&
other.term.equals(this.term);
}
}
export class Block implements AST {
constructor(public statements: Array<AST>) { }
emit(env: Environment) {
this.statements.forEach((statm) =>
statm.emit(env));
}
equals(other: AST): boolean {
return other instanceof Block &&
this.statements.length === other.statements.length &&
this.statements.every((state, i) =>
state.equals(other.statements[i]));
}
}
export class If implements AST {
constructor(public conditional: AST,
public consequence: AST,
public alternative: AST
) { }
emit(env: Environment) {
let ifFalseLabel = new Label();
let endIfLabel = new Label();
this.conditional.emit(env);
emit(` cmp r0, #0`);
emit(` beq ${ifFalseLabel}`);
this.consequence.emit(env);
emit(` b ${endIfLabel}`);
emit(`${ifFalseLabel}:`);
this.alternative.emit(env);
emit(`${endIfLabel}:`);
}
equals(other: AST): boolean {
return other instanceof If &&
this.conditional.equals(other.conditional) &&
this.consequence.equals(other.consequence) &&
this.alternative.equals(other.alternative);
}
}
export class Funct implements AST {
constructor(public name: string,
public parameters: Array<string>,
public body: AST
) { }
emit(_: Environment) {
if (this.parameters.length > 4)
throw Error("More than 4 parameters in Function Definition: not supported");
emit(``);
emit(`.global ${this.name}`);
emit(`${this.name}:`)
this.emitPrologue();
let env = this.setUpEnvironment();
this.body.emit(env);
this.emitEpilogue();
}
setUpEnvironment() {
let locals = new Map();
this.parameters.forEach((param, i) => {
locals.set(param, 4*i - 16);
});
return new Environment(locals, -20);
}
emitPrologue() {
emit(` push {fp, lr}`);
emit(` mov fp, sp`);
emit(` push {r0, r1, r2, r3}`);
}
emitEpilogue() {
emit(` mov sp, fp`);
emit(` mov r0, #0`);
emit(` pop {fp, pc}`);
}
equals(other: AST): boolean {
return other instanceof Funct &&
this.name === other.name &&
this.parameters.length === other.parameters.length &&
this.parameters.every((param,i) =>
param === other.parameters[i]) &&
this.body.equals(other.body);
}
}
export class Var implements AST {
constructor(public name: string,
public value: AST
) {}
emit(env: Environment) {
this.value.emit(env);
emit(` push {r0, ip}`);
// This wasts up to 50% of memory, as we need 8 byte alignment
env.locals.set(this.name, env.nextLocalOffset - 4);
env.nextLocalOffset -= 8;
}
equals(other: AST): boolean {
return other instanceof Var &&
this.name === other.name &&
this.value.equals(other.value);
}
}
export class Assign implements AST {
constructor(public name: string,
public value: AST
) {}
emit(env: Environment) {
this.value.emit(env);
let offset = env.locals.get(this.name);
if (offset) {
emit(` str r0, [fp, #${offset}]`);
} else {
throw Error(`Undefined variable: ${this.name}`);
}
}
equals(other: AST): boolean {
return other instanceof Assign &&
this.name === other.name &&
this.value.equals(other.value);
}
}
export class While implements AST {
constructor(public conditional: AST,
public body: AST
) {}
emit(env: Environment) {
let loopStart = new Label();
let loopEnd = new Label();
emit(`${loopStart}:`);
this.conditional.emit(env);
emit(` cmp r0, #0`);
emit(` beq ${loopEnd}`);
this.body.emit(env);
emit(` b ${loopStart}`);
emit(`${loopEnd}:`)
}
equals(other: AST): boolean {
return other instanceof While &&
this.conditional.equals(other.conditional) &&
this.body.equals(other.body);
}
}