-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintermediate.ts
416 lines (385 loc) · 12.6 KB
/
intermediate.ts
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
// The intermediate representation is a small language corresponding to C.
// Its type system supports additional features not available in C; but
// these do not affect runtime behavior (types are erased, not reified).
// The language is statement-oriented, rather than expression-oriented.
namespace C {
let id = 1000;
function temporary(): string {
return "r" + (++id);
}
// Things that happen in generated code:
// x = y;
// x = 7;
// x = f(y);
// x = (*fp)(y);
// x = y->f;
// p->f = y;
// p = malloc(sizeof(T))
export class Register {
constructor(public readonly name: string = "") {
this.name = this.name.replace(/[^a-zA-Z]/g, "_");
this.name = temporary() + (name ? "_" + name : "");
}
static foreignName(name: string): Register {
let r = new Register();
(r as any).name = name;
return r;
}
isRegister() {}
}
export abstract class Computation {
constructor() {}
abstract renderCode(): {code: string, target: Register};
}
export class Copy extends Computation {
constructor(
public readonly source: Register,
) {
super();
}
renderCode() {
const target = new Register();
return {code: `void* ${target.name} = ${this.source.name};`, target};
}
}
export class Operator extends Computation {
constructor(
public readonly left: Computation,
public readonly operator: string,
public readonly right: Computation,
) {
super();
}
renderCode() {
const leftCode = this.left.renderCode();
const rightCode = this.right.renderCode();
const target = new Register();
return {code: leftCode.code + "\n" + rightCode.code + "\n" + `void* ${target.name} = (void*)(intptr_t)((intptr_t)${leftCode.target.name} ${this.operator} (intptr_t)${rightCode.target.name});`, target};
}
}
export class Load extends Computation {
constructor(
public readonly constant: string,
){
super();
}
renderCode() {
const target = new Register();
return {code: `void* ${target.name} = ${this.constant};`, target};
}
}
export class CallStatic extends Computation {
constructor(
public readonly name: string,
public readonly parameters: Computation[],
) {
super();
}
renderCode() {
const target = new Register();
const code = this.parameters.map(c => c.renderCode());
return {
code: code.map(c => c.code).join("\n") + "\n" + "void * " + target.name + " = " + `${this.name}(${code.map(r => r.target.name).join(", ")});`,
target,
};
}
}
export class CallDynamic extends Computation {
constructor(
public readonly object: Computation,
public readonly struct: string,
public readonly field: string,
public readonly parameters: Computation[],
) {
super();
}
renderCode() {
const target = new Register();
const code = this.parameters.map(c => c.renderCode());
const objectCode = this.object.renderCode();
return {
code: code.map(c => c.code).join("\n") + "\n" + objectCode.code + "\n" + "void* " + target.name + " = " + `((struct ${this.struct}*)${objectCode.target.name})->${this.field}(${code.map(r => r.target.name).join(", ")});`,
target,
};
}
}
export class FieldRead extends Computation {
constructor(
public readonly source: Computation,
public readonly struct: string,
public readonly field: string,
) {
super();
}
renderCode() {
const target = new Register();
let gen = this.source.renderCode();
return {code: gen.code + "\n" + `void* ${target.name} = ((struct ${this.struct}*)${gen.target.name})->${this.field};`, target};
}
}
export class Dereference extends Computation {
constructor(
public readonly source: Computation,
) {
super();
}
renderCode() {
const target = new Register();
const gen = this.source.renderCode();
return {
code: gen.code + "\n" + `void* ${target.name} = *(void**)${gen.target.name};`,
target,
};
}
}
export class FieldAddress extends Computation {
constructor(
public readonly source: Computation,
public readonly struct: string,
public readonly field: string,
) {
super();
}
renderCode() {
const target = new Register();
let gen = this.source.renderCode();
return {code: gen.code + "\n" + `void* ${target.name} = &(((struct ${this.struct}*)${gen.target.name})->${this.field});`, target};
}
}
export class Allocate extends Computation {
constructor(
public readonly struct: string,
public readonly fields: {readonly [name: string]: Computation},
) {
super();
}
renderCode() {
const target = new Register();
const rendered: {[p: string]: {code: string, target: Register}} = {};
for (let p in this.fields) {
rendered[p] = this.fields[p].renderCode();
}
let code = `struct ${this.struct}* ${target.name} = malloc(sizeof(struct ${this.struct}));`;
for (let field in rendered) {
code += "\n" + rendered[field].code;
code += "\n" + `${target.name}->${field} = ${rendered[field].target.name};`
}
return {code, target};
}
}
export class AddressOf extends Computation {
constructor(
public readonly register: Register,
) {
super();
}
renderCode() {
const target = new Register();
return {
code: `void* ${target.name} = &${this.register.name};`,
target,
};
}
}
export class Foreign extends Computation {
constructor(
public readonly text: string,
) {
super();
}
renderCode() {
const target = new Register();
return {
code: this.text.split("\n").map(x => x.trim()).join("\n") + "\nvoid* " + target.name + " = 0;",
target,
};
}
}
export function indentBodyString(x: string): string {
return ("\n" + x).replace(/\n/g, "\n\t");
}
export abstract class Statement {
abstract renderStatement(): string;
}
export class Assignment extends Statement {
constructor(
public readonly target: Register,
public readonly source: Computation,
) {
super();
}
renderStatement() {
const rendered = this.source.renderCode();
return `${rendered.code}\n${this.target.name} = ${rendered.target.name};`;
}
}
export class Execute extends Statement {
constructor(
public readonly source: Computation,
) {
super();
}
renderStatement() {
const rendered = this.source.renderCode();
return rendered.code + "\n" + "(void)" + rendered.target.name + ";";
}
}
export class Local extends Statement {
constructor(
public readonly register: Register,
public readonly source: Computation,
) {
super();
}
renderStatement() {
const rendered = this.source.renderCode();
return `${rendered.code}\nvoid* ${this.register.name} = ${rendered.target.name};`;
}
}
export class ConditionBlock extends Statement {
constructor(
public readonly condition: Computation,
public readonly bodyTrue: Block,
public readonly bodyFalse: Block,
) {
super();
}
renderStatement() {
let generated = this.condition.renderCode();
const codeTrue = this.bodyTrue.renderBlock();
const codeFalse = this.bodyFalse.renderBlock();
if (codeFalse == "{\n}") {
return generated.code + "\n" + `if (${generated.target.name}) ${codeTrue}`;
}
return generated.code + "\n" + `if (${generated.target.name}) ${codeTrue} else ${codeFalse}`;
}
}
export class Loop extends Statement {
constructor(public readonly body: Block) {
super();
}
renderStatement() {
return `while(1) ${indentBodyString(this.body.renderBlock())}`;
}
}
export class Break extends Statement {
constructor() {
super();
}
renderStatement() {
return "break;";
}
}
export class Continue extends Statement {
constructor() {
super();
}
renderStatement() {
return "continue;";
}
}
export class Return extends Statement {
constructor(
public readonly source: null | Computation,
) {
super();
}
renderStatement() {
if (this.source) {
const code = this.source.renderCode();
return `${code.code}\nreturn ${code.target.name};`
}
return `return;`;
}
}
export class Empty extends Statement {
constructor() {
super();
}
renderStatement() {
return "//nothing";
}
}
export class DoBlock extends Statement {
constructor(public readonly block: Block) {
super();
}
renderStatement() {
return this.block.renderBlock();
}
}
export class Block {
constructor(
public readonly statements: Statement[]
) {}
renderBlock() {
if (this.statements.length == 0) {
return "{\n}";
}
return "{\n" + indentBodyString(this.statements.map(s => s.renderStatement()).join("\n")) + "\n}";
}
}
export abstract class Declaration {
abstract predeclare(): string;
abstract declare(): {in: "main", code: string} | {in: "static", code: string} | null;
}
export class Struct extends Declaration {
constructor(
public readonly name: string,
public readonly fields: (string | {custom: string})[], // default is void*
) {
super();
}
predeclare() {
let code = "struct " + this.name + "{";
for (let field of this.fields) {
if (typeof field == "string") {
code += "\n\tvoid* " + field + ";";
} else {
code += "\n\t" + field.custom + ";";
}
}
code += "\n};";
return code;
}
declare() {
return null;
}
}
export class Func extends Declaration {
constructor(
public readonly name: string,
public readonly parameters: Register[],
public readonly code: Block,
) {
super();
}
predeclare(): string {
return "void* " + this.name + "(" + this.parameters.map(n => "void* " + n.name).join(", ") + ");";
}
declare(): {in: "static", code: string} {
return {
in: "static",
code: "void* " + this.name + "(" + this.parameters.map(n => "void* " + n.name).join(", ") + ") " + new Block([new DoBlock(this.code), new Return(new Load("0"))]).renderBlock(),
};
}
}
export class Global extends Declaration {
constructor(
public readonly name: Register,
public readonly compute: Computation,
public readonly type: string,
) {
super();
}
predeclare(): string {
return this.type + " " + this.name.name + ";";
}
declare(): {in: "main", code: string} {
return {
in: "main",
code: new Assignment(this.name, this.compute).renderStatement(),
};
}
}
}