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
|
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2024 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <assert.h>
#include <fwd/lower.h>
#include <fwd/scope.h>
#include <fwd/vec.h>
struct state {
long indent;
};
static void increase_indent(struct state *state)
{
state->indent++;
}
static void decrease_indent(struct state *state)
{
state->indent--;
}
static void indent(struct state *state)
{
for (long i = 0; i < state->indent; ++i)
putchar(' ');
}
static int lower_expr(struct state *state, struct ast *expr);
static int lower_block(struct state *state, struct ast *block);
static int lower_closure(struct state *state, struct ast *closure);
static int lower_types(struct type *types);
static int lower_binop(struct state *state, struct ast *binop)
{
printf("(");
if (lower_expr(state, binop_left(binop)))
return -1;
switch (binop->k) {
case AST_ADD: printf(" + "); break;
case AST_SUB: printf(" - "); break;
case AST_MUL: printf(" * "); break;
case AST_DIV: printf(" / "); break;
case AST_REM: printf(" %% "); break;
case AST_LSHIFT: printf(" << "); break;
case AST_RSHIFT: printf(" >> "); break;
default:
internal_error("missing binop lowering");
return -1;
}
if (lower_expr(state, binop_right(binop)))
return -1;
printf(")");
return 0;
}
static int lower_comparison(struct state *state, struct ast *comp)
{
printf("(");
if (lower_expr(state, comparison_left(comp)))
return -1;
switch (comp->k) {
case AST_LT: printf(" < "); break;
case AST_GT: printf(" > "); break;
case AST_LE: printf(" <= "); break;
case AST_GE: printf(" <= "); break;
case AST_NE: printf(" != "); break;
case AST_EQ: printf(" == "); break;
default:
internal_error("missing comparison lowering");
return -1;
}
if (lower_expr(state, comparison_right(comp)))
return -1;
printf(")");
return 0;
}
static int lower_exprs(struct state *state, struct ast *exprs)
{
if (!exprs)
return 0;
if (lower_expr(state, exprs))
return -1;
foreach_node(expr, exprs->n) {
printf(", ");
if (lower_expr(state, expr))
return -1;
}
return 0;
}
static int lower_type(struct type *type)
{
if (type->k == TYPE_ID) {
printf("%s", tid_str(type));
return 0;
}
assert(type->k == TYPE_CONSTRUCT);
printf("%s", tconstruct_id(type));
printf("<");
if (lower_types(tconstruct_args(type)))
return -1;
printf(">");
return 0;
}
static int lower_types(struct type *types)
{
if (!types)
return 0;
if (lower_type(types))
return -1;
foreach_type(type, types->n) {
printf(", ");
if (lower_type(type))
return -1;
}
return 0;
}
static int lower_init(struct state *state, struct ast *init)
{
printf("%s", init_id(init));
if (init_args(init)) {
printf("<");
if (lower_types(init_args(init)))
return -1;
printf(">");
}
printf("{");
if (lower_exprs(state, init_body(init)))
return -1;
printf("}");
return 0;
}
static int lower_unop(struct state *state, struct ast *expr)
{
switch (expr->k) {
case AST_LNOT: printf("-"); break;
case AST_NOT: printf("~"); break;
case AST_NEG: printf("-"); break;
default:
internal_error("missing unop lowering");
return -1;
}
return lower_expr(state, unop_expr(expr));
}
static int lower_expr(struct state *state, struct ast *expr)
{
if (is_unop(expr))
return lower_unop(state, expr);
if (is_binop(expr))
return lower_binop(state, expr);
if (is_comparison(expr))
return lower_comparison(state, expr);
switch (expr->k) {
case AST_ID: printf("%s", id_str(expr)); break;
case AST_CONST_INT: printf("%lld", int_val(expr)); break;
case AST_CONST_FLOAT: printf("%f", float_val(expr)); break;
case AST_CONST_BOOL: printf("%s", bool_val(expr) ? "true" : "false");
break;
case AST_CONST_STR: printf("\"%s\"", str_val(expr)); break;
case AST_CONST_CHAR: printf("'%c'", (char)char_val(expr)); break;
case AST_INIT: return lower_init(state, expr);
case AST_CLOSURE: return lower_closure(state, expr);
default:
internal_error("missing expr lowering");
return -1;
}
return 0;
}
static int lower_move(struct state *state, struct ast *move)
{
if (move->k == AST_ID) {
/** @todo once I start messing about with references, moves
* should only be outputted for parameters that take ownership
*/
printf("move(%s)", id_str(move));
return 0;
}
return lower_expr(state, move);
}
static int lower_moves(struct state *state, struct ast *moves)
{
if (!moves)
return 0;
if (lower_move(state, moves))
return -1;
foreach_node(move, moves->n) {
printf(", ");
if (lower_move(state, move))
return -1;
}
return 0;
}
static int lower_call(struct state *state, struct ast *call)
{
if (lower_expr(state, call_expr(call)))
return -1;
printf("(");
if (lower_moves(state, call_args(call)))
return -1;
printf(");\n");
return 0;
}
static int lower_let(struct state *state, struct ast *let)
{
printf("auto %s = ", let_id(let));
if (lower_expr(state, let_expr(let)))
return -1;
printf(";\n");
return 0;
}
static int lower_statement(struct state *state, struct ast *stmt)
{
switch (stmt->k) {
case AST_LET: return lower_let(state, stmt);
case AST_CALL: return lower_call(state, stmt);
default:
internal_error("missing statement lowering");
return -1;
}
return 0;
}
static int lower_block(struct state *state, struct ast *block)
{
printf("{\n");
increase_indent(state);
foreach_node(stmt, block_body(block)) {
indent(state);
if (lower_statement(state, stmt))
return -1;
}
decrease_indent(state);
indent(state);
printf("}");
return 0;
}
static int lower_params(struct ast *params)
{
if (!params)
return 0;
printf("auto %s", var_id(params));
foreach_node(param, params->n) {
printf(", auto %s", var_id(param));
}
return 0;
}
static int lower_closure(struct state *state, struct ast *closure)
{
printf("[&](");
if (lower_params(closure_bindings(closure)))
return -1;
printf(")");
if (lower_block(state, closure_body(closure)))
return -1;
return 0;
}
static int lower_proto(struct ast *proc)
{
if (strcmp("main", proc_id(proc)) == 0)
printf("int ");
else
printf("void ");
printf("%s(", proc_id(proc));
if (lower_params(proc_params(proc)))
return -1;
printf(");\n\n");
return 0;
}
static int lower_proc(struct ast *proc)
{
if (strcmp("main", proc_id(proc)) == 0)
printf("int ");
else
printf("void ");
printf("%s(", proc_id(proc));
if (lower_params(proc_params(proc)))
return -1;
printf(")\n");
struct state state = {0};
if (lower_block(&state, proc_body(proc)))
return -1;
printf("\n\n");
return 0;
}
int lower(struct scope *root)
{
printf("#include <fwdlib.hpp>\n");
foreach_visible(visible, root->symbols) {
struct ast *proc = visible->node;
assert(proc->k == AST_PROC_DEF);
if (lower_proto(proc))
return -1;
}
foreach_visible(visible, root->symbols) {
struct ast *proc = visible->node;
if (lower_proc(proc))
return -1;
}
return 0;
}
|