blob: ec14078236352b14bb93d2bb346661ce721a71f3 [file] [log] [blame]
swissChili8cfb7c42021-04-18 21:17:58 -07001/* -*- mode:c -*- */
2
swissChilica107a02021-04-14 12:07:30 -07003#include "compiler.h"
swissChilif3e7f182021-04-20 13:57:22 -07004#include "lib/std.h"
swissChili53472e82021-05-08 16:06:32 -07005#include "plat/plat.h"
swissChilica107a02021-04-14 12:07:30 -07006
7#include <dasm_proto.h>
8#include <dasm_x86.h>
9
swissChili923b5362021-05-09 20:31:43 -070010#include <stdlib.h>
11#include <string.h>
12
swissChili53472e82021-05-08 16:06:32 -070013#define value_size sizeof(value_t)
swissChilica107a02021-04-14 12:07:30 -070014
15|.arch x86;
16
17|.macro setup, nvars;
18| push ebp;
19| mov ebp, esp;
swissChili8cfb7c42021-04-18 21:17:58 -070020| sub esp, (value_size * nvars);
swissChilica107a02021-04-14 12:07:30 -070021|.endmacro;
22
23|.macro cleanup;
24| mov esp, ebp;
25| pop ebp;
26| ret;
27|.endmacro;
28
swissChili67bdf282021-06-06 18:46:08 -070029|.macro local_var, index;
30|.endmacro;
31
swissChilica107a02021-04-14 12:07:30 -070032dasm_State *d;
33unsigned int npc = 8;
34
swissChili6d6525e2021-06-15 21:20:53 -070035extern void _do_gc(unsigned int ebp, unsigned int esp);
36
swissChili9e57da42021-06-15 22:22:46 -070037|.macro run_gc;
swissChilie9fec8b2021-06-22 13:59:33 -070038| mov eax, esp;
swissChili9e57da42021-06-15 22:22:46 -070039| push ebp;
swissChilie9fec8b2021-06-22 13:59:33 -070040| push eax;
swissChili9e57da42021-06-15 22:22:46 -070041| mov eax, _do_gc;
42| call eax;
43|.endmacro;
swissChili6d6525e2021-06-15 21:20:53 -070044
swissChili53472e82021-05-08 16:06:32 -070045struct function *find_function(struct environment *env, char *name)
swissChilica107a02021-04-14 12:07:30 -070046{
47 struct function *f = env->first;
48
swissChili53472e82021-05-08 16:06:32 -070049 while (strcmp(f->name, name) != 0)
swissChilica107a02021-04-14 12:07:30 -070050 {
swissChili53472e82021-05-08 16:06:32 -070051 if (f->prev)
swissChilica107a02021-04-14 12:07:30 -070052 f = f->prev;
53 else
54 return NULL;
55 }
56
57 return f;
58}
59
swissChili67bdf282021-06-06 18:46:08 -070060unsigned int local_alloc(struct local *local)
61{
62 for (int i = 0; i < local->num_stack_slots; i++)
63 {
64 if (local->stack_slots[i] == false)
65 {
66 local->stack_slots[i] = true;
67
68 if (i >= local->num_stack_entries)
69 local->num_stack_entries++;
70
71 return i;
72 }
73 }
74
75 int old_size = local->num_stack_slots;
76 local->num_stack_slots += 4;
77 local->stack_slots = realloc(local->stack_slots, local->num_stack_slots * sizeof(bool));
78 // unreadable: set the remaining slots to unused
79 memset(local->stack_slots + old_size, 0, local->num_stack_slots - old_size);
80 local->stack_slots[old_size] = true;
81
82 return old_size;
83}
84
85void local_free(struct local *local, unsigned int slot)
86{
87 local->stack_slots[slot] = false;
88}
89
swissChili53472e82021-05-08 16:06:32 -070090void compile_tl(value_t val, struct environment *env)
swissChilica107a02021-04-14 12:07:30 -070091{
swissChili53472e82021-05-08 16:06:32 -070092 if (!listp(val))
93 err("Top level must be a list");
swissChilica107a02021-04-14 12:07:30 -070094
swissChili53472e82021-05-08 16:06:32 -070095 value_t form = car(val);
96 value_t args = cdr(val);
97
swissChili2999dd12021-07-02 14:19:53 -070098 if (symstreq(form, "defun") || symstreq(form, "defmacro"))
swissChili8fc5e2f2021-04-22 13:45:10 -070099 {
swissChili2999dd12021-07-02 14:19:53 -0700100 enum namespace namespace = NS_FUNCTION;
101
102 if (symstreq(form, "defmacro"))
103 namespace = NS_MACRO;
104
swissChili8fc5e2f2021-04-22 13:45:10 -0700105 dasm_State *d;
106 dasm_State **Dst = &d;
swissChilica107a02021-04-14 12:07:30 -0700107
swissChili8fc5e2f2021-04-22 13:45:10 -0700108 |.section code;
swissChili53472e82021-05-08 16:06:32 -0700109 dasm_init(&d, DASM_MAXSECTION);
110
swissChili8fc5e2f2021-04-22 13:45:10 -0700111 |.globals lbl_;
swissChili53472e82021-05-08 16:06:32 -0700112 void *labels[lbl__MAX];
113 dasm_setupglobal(&d, labels, lbl__MAX);
114
swissChili8fc5e2f2021-04-22 13:45:10 -0700115 |.actionlist lisp_actions;
swissChili53472e82021-05-08 16:06:32 -0700116 dasm_setup(&d, lisp_actions);
117
swissChili8fc5e2f2021-04-22 13:45:10 -0700118 struct local local;
119 local.first = NULL;
120 local.num_vars = 0;
swissChilia820dea2021-05-09 16:46:55 -0700121 local.npc = 8;
122 local.nextpc = 0;
swissChili67bdf282021-06-06 18:46:08 -0700123 local.stack_slots = malloc(sizeof(bool) * 4);
124 memset(local.stack_slots, 0, sizeof(bool) * 4);
125 local.num_stack_slots = 4;
126 local.num_stack_entries = 0;
swissChilia820dea2021-05-09 16:46:55 -0700127
128 dasm_growpc(&d, local.npc);
swissChili53472e82021-05-08 16:06:32 -0700129
swissChili8fc5e2f2021-04-22 13:45:10 -0700130 // Generate code
swissChili923b5362021-05-09 20:31:43 -0700131 // TODO: first pass, extract bound and free variables
swissChili53472e82021-05-08 16:06:32 -0700132
swissChili53472e82021-05-08 16:06:32 -0700133 value_t name = car(args);
134 args = cdr(args);
135 value_t arglist = car(args);
136 value_t body = cdr(args);
swissChili8fc5e2f2021-04-22 13:45:10 -0700137
swissChili53472e82021-05-08 16:06:32 -0700138 if ((name & HEAP_MASK) != SYMBOL_TAG)
139 err("function name must be a symbol");
140
swissChili923b5362021-05-09 20:31:43 -0700141 value_t a = arglist;
142 for (int i = 0; !nilp(a); a = cdr(a), i++)
143 {
144 if (!symbolp(car(a)))
145 {
146 err("defun argument must be a symbol");
147 }
148
149 add_variable(&local, V_ARGUMENT, (char *)(car(a) ^ SYMBOL_TAG), i);
150 }
151
swissChili67bdf282021-06-06 18:46:08 -0700152 for (value_t body_ = body; !nilp(body_); body_ = cdr(body_))
153 {
154 walk_and_alloc(&local, car(body_));
155 }
156
157 | setup (local.num_stack_entries);
158
159 memset(local.stack_slots, 0, local.num_stack_slots * sizeof(bool));
160 local.num_stack_entries = 0;
161
swissChili53472e82021-05-08 16:06:32 -0700162 for (; !nilp(body); body = cdr(body))
swissChili8fc5e2f2021-04-22 13:45:10 -0700163 {
swissChili53472e82021-05-08 16:06:32 -0700164 compile_expression(env, &local, car(body), Dst);
swissChili8fc5e2f2021-04-22 13:45:10 -0700165 }
166
167 | cleanup;
168
swissChili53472e82021-05-08 16:06:32 -0700169 add_function(env, (char *)(name ^ SYMBOL_TAG), link(Dst),
swissChili2999dd12021-07-02 14:19:53 -0700170 length(arglist), namespace);
swissChili8fc5e2f2021-04-22 13:45:10 -0700171
swissChili53472e82021-05-08 16:06:32 -0700172 dasm_free(&d);
swissChili67bdf282021-06-06 18:46:08 -0700173 free(local.stack_slots);
174 }
175}
176
177void walk_and_alloc(struct local *local, value_t body)
178{
179 if (!listp(body))
180 return;
181
182 value_t args = cdr(body);
183
184 if (symstreq(car(body), "let1"))
185 {
186 int slot = local_alloc(local);
187
188 value_t expr = cdr(args);
189
190 local_free(local, slot);
191 }
192 else
193 {
194 for (; !nilp(args); args = cdr(args))
195 {
196 walk_and_alloc(local, car(args));
197 }
swissChili8fc5e2f2021-04-22 13:45:10 -0700198 }
199}
200
swissChili53472e82021-05-08 16:06:32 -0700201struct environment compile_all(struct istream *is)
swissChili8fc5e2f2021-04-22 13:45:10 -0700202{
swissChilib8fd4712021-06-23 15:32:04 -0700203 unsigned char pool = make_pool();
204 unsigned char pop = push_pool(pool);
205
swissChili8fc5e2f2021-04-22 13:45:10 -0700206 value_t val;
swissChilif3e7f182021-04-20 13:57:22 -0700207 struct environment env;
208 env.first = NULL;
swissChili53472e82021-05-08 16:06:32 -0700209 load_std(&env);
210
211 while (read1(is, &val))
swissChili8fc5e2f2021-04-22 13:45:10 -0700212 {
swissChili53472e82021-05-08 16:06:32 -0700213 compile_tl(val, &env);
swissChili8fc5e2f2021-04-22 13:45:10 -0700214 }
swissChilif3e7f182021-04-20 13:57:22 -0700215
swissChilib8fd4712021-06-23 15:32:04 -0700216 pop_pool(pop);
217
swissChili8fc5e2f2021-04-22 13:45:10 -0700218 return env;
swissChilica107a02021-04-14 12:07:30 -0700219}
swissChilib3ca4fb2021-04-20 10:33:00 -0700220
swissChili53472e82021-05-08 16:06:32 -0700221int nextpc(struct local *local, dasm_State **Dst)
swissChilib3ca4fb2021-04-20 10:33:00 -0700222{
swissChili53472e82021-05-08 16:06:32 -0700223 int n = local->nextpc++;
224 if (n > local->npc)
225 {
226 local->npc += 16;
227 dasm_growpc(Dst, local->npc);
228 }
229 return n;
230}
231
swissChili6b47b6d2021-06-30 22:08:55 -0700232void compile_backquote(struct environment *env, struct local *local,
233 value_t val, dasm_State **Dst)
234{
235 if (!listp(val))
236 {
237 | mov eax, (val);
238 }
239 else
240 {
241 value_t fsym = car(val),
242 args = cdr(val);
243 int nargs = length(args);
244
245 // TODO
246 }
247}
248
swissChili53472e82021-05-08 16:06:32 -0700249void compile_expression(struct environment *env, struct local *local,
250 value_t val, dasm_State **Dst)
251{
252 if (symstreq(val, "nil"))
253 {
254 | mov eax, (nil);
255 }
swissChili923b5362021-05-09 20:31:43 -0700256 else if (symstreq(val, "t"))
257 {
258 | mov eax, (t);
259 }
260 else if (integerp(val) || stringp(val))
swissChilib3ca4fb2021-04-20 10:33:00 -0700261 {
262 | mov eax, val;
263 }
swissChili53472e82021-05-08 16:06:32 -0700264 else if (listp(val))
swissChilib3ca4fb2021-04-20 10:33:00 -0700265 {
swissChili53472e82021-05-08 16:06:32 -0700266 value_t fsym = car(val);
267 value_t args = cdr(val);
268 int nargs = length(args);
swissChilib3ca4fb2021-04-20 10:33:00 -0700269
swissChili53472e82021-05-08 16:06:32 -0700270 if (!symbolp(fsym))
swissChilif3e7f182021-04-20 13:57:22 -0700271 {
swissChili53472e82021-05-08 16:06:32 -0700272 err("function name must be a symbol");
swissChilif3e7f182021-04-20 13:57:22 -0700273 }
274
swissChili53472e82021-05-08 16:06:32 -0700275 if (symstreq(fsym, "if"))
swissChilib3ca4fb2021-04-20 10:33:00 -0700276 {
swissChili53472e82021-05-08 16:06:32 -0700277 if (nargs < 2 || nargs > 3)
278 err("Must give at least 2 arguments to if");
swissChilib3ca4fb2021-04-20 10:33:00 -0700279
swissChili53472e82021-05-08 16:06:32 -0700280 compile_expression(env, local, car(args), Dst);
281 int false_label = nextpc(local, Dst),
282 after_label = nextpc(local, Dst);
283
284 // result is in eax
285 | cmp eax, (nil);
286 | je =>false_label;
287
288 compile_expression(env, local, elt(args, 1), Dst);
swissChilia820dea2021-05-09 16:46:55 -0700289 | jmp =>after_label;
swissChili923b5362021-05-09 20:31:43 -0700290 |=>false_label:;
swissChili53472e82021-05-08 16:06:32 -0700291 if (nargs == 3)
292 compile_expression(env, local, elt(args, 2), Dst);
293 |=>after_label:
294 }
swissChili67bdf282021-06-06 18:46:08 -0700295 else if (symstreq(fsym, "let1"))
296 {
297 if (nargs < 2)
298 {
299 err("Must give at least 2 arguments to let1");
300 }
301 value_t binding = car(args);
302 value_t rest = cdr(args);
303
304 if (length(binding) != 2)
305 {
306 err("Binding list in let1 must contain exactly two entries");
307 }
308
309 value_t name = car(binding);
310 value_t value = car(cdr(binding));
311
312 compile_expression(env, local, value, Dst);
313
314 int i = local_alloc(local);
315
316 add_variable(local, V_BOUND, (char *)(name ^ SYMBOL_TAG), i);
317
318 | mov dword [ebp - ((i + 1) * value_size)], eax;
319
320 for (; !nilp(rest); rest = cdr(rest))
321 {
322 compile_expression(env, local, car(rest), Dst);
323 }
324
325 local_free(local, i);
326 }
swissChilie9fec8b2021-06-22 13:59:33 -0700327 else if (symstreq(fsym, "gc"))
328 {
329 if (nargs)
330 {
331 err("gc takes no arguments");
332 }
333
334 | run_gc;
335 }
swissChili6b47b6d2021-06-30 22:08:55 -0700336 else if (symstreq(fsym, "quote"))
337 {
338 if (nargs != 1)
339 err("quote should take exactly 1 argument");
340
341 // Simple!
342 | mov eax, (car(args));
343 }
344 else if (symstreq(fsym, "backquote"))
345 {
346 if (nargs != 1)
347 err("backquote should take exactly 1 argument");
348
349 compile_backquote(env, local, car(args), Dst);
350 }
351 else if (symstreq(fsym, "list"))
352 {
353 | push (nil);
354
355 for (int i = nargs - 1; i >= 0; i--)
356 {
357 compile_expression(env, local, elt(args, i), Dst);
358
359 // push the ith item
360 | push eax;
361 // cons the top two stack items
362 | mov ebx, (cons);
363 | call ebx;
364 // remove the stack items from use
365 | add esp, (2 * value_size);
366 // put the new thing on the stack
367 | push eax;
368 }
369
370 | pop eax;
371 }
swissChili53472e82021-05-08 16:06:32 -0700372 else
373 {
374 struct function *func =
375 find_function(env, (char *)(fsym ^ SYMBOL_TAG));
376
swissChili923b5362021-05-09 20:31:43 -0700377 if (func == NULL)
378 err("Function undefined");
379
swissChili53472e82021-05-08 16:06:32 -0700380 if (nargs != func->nargs)
381 err("wrong number of args");
382
swissChili2999dd12021-07-02 14:19:53 -0700383 if (func->namespace == NS_FUNCTION)
swissChili53472e82021-05-08 16:06:32 -0700384 {
swissChili2999dd12021-07-02 14:19:53 -0700385 for (int i = length(args) - 1; i >= 0; i--)
386 {
387 compile_expression(env, local, elt(args, i), Dst);
388 | push eax;
389 }
swissChili53472e82021-05-08 16:06:32 -0700390
swissChili2999dd12021-07-02 14:19:53 -0700391 | mov ebx, (func->code_addr);
392 | call ebx;
393 | add esp, (nargs * value_size);
394 // result in eax
395 }
396 else if (func->namespace == NS_MACRO)
397 {
398 value_t expanded_to = call_list(func, args);
399
400 printf("Macro expanded to:\n");
401 printval(expanded_to, 2);
402
403 compile_expression(env, local, expanded_to, Dst);
404 }
swissChili53472e82021-05-08 16:06:32 -0700405 }
swissChilib3ca4fb2021-04-20 10:33:00 -0700406 }
swissChili923b5362021-05-09 20:31:43 -0700407 else if (symbolp(val))
408 {
409 // For now ignore global variables, only search locally
410 struct variable *v = find_variable(local, (char *)(val ^ SYMBOL_TAG));
411
412 if (!v)
swissChilie9fec8b2021-06-22 13:59:33 -0700413 {
414 fprintf(stderr, "var: %s\n", (char *)(val ^ SYMBOL_TAG));
swissChili923b5362021-05-09 20:31:43 -0700415 err("Variable unbound");
swissChilie9fec8b2021-06-22 13:59:33 -0700416 }
swissChili923b5362021-05-09 20:31:43 -0700417
418 switch (v->type)
419 {
420 case V_ARGUMENT:
swissChili67bdf282021-06-06 18:46:08 -0700421 | mov eax, dword [ebp + (value_size * (v->number + 2))];
422 break;
423 case V_BOUND:
swissChilie9fec8b2021-06-22 13:59:33 -0700424 | mov eax, dword [ebp - ((v->number + 1) * value_size)];
swissChili923b5362021-05-09 20:31:43 -0700425 break;
426 default:
swissChili67bdf282021-06-06 18:46:08 -0700427 err("Sorry, can only access V_ARGUMENT and V_BOUND variables for now :(");
swissChili923b5362021-05-09 20:31:43 -0700428 }
429 }
swissChilib3ca4fb2021-04-20 10:33:00 -0700430}
swissChilif3e7f182021-04-20 13:57:22 -0700431
swissChili53472e82021-05-08 16:06:32 -0700432void compile_expr_to_func(struct environment *env, char *name, value_t val,
433 dasm_State **Dst)
swissChilif3e7f182021-04-20 13:57:22 -0700434{
435 | setup 0;
436
437 struct local local;
swissChili53472e82021-05-08 16:06:32 -0700438 compile_expression(env, &local, val, Dst);
439
swissChilif3e7f182021-04-20 13:57:22 -0700440 | cleanup;
441
swissChili2999dd12021-07-02 14:19:53 -0700442 add_function(env, name, link(Dst), 0, NS_FUNCTION);
swissChilif3e7f182021-04-20 13:57:22 -0700443}
swissChili923b5362021-05-09 20:31:43 -0700444
445struct variable *add_variable(struct local *local, enum var_type type,
446 char *name, int number)
447{
448 struct variable *var = malloc(sizeof(struct variable));
449 var->prev = local->first;
450 var->type = type;
451 var->name = name;
452 var->number = number;
453
454 local->first = var;
455
456 return var;
457}
458
459void destroy_local(struct local *local)
460{
461 for (struct variable *v = local->first; v;)
462 {
463 struct variable *t = v;
464 v = v->prev;
465 free(t);
466 }
467}
468
469struct variable *find_variable(struct local *local, char *name)
470{
471 struct variable *v = local->first;
472
473 for (; v && strcmp(v->name, name) != 0; v = v->prev)
474 {}
475
476 return v;
477}
swissChili2999dd12021-07-02 14:19:53 -0700478
479extern value_t _call_list(void *addr, value_t list);
480
481value_t call_list(struct function *func, value_t list)
482{
483 return _call_list(func->code_ptr, list);
484}