blob: f176b7d6a5b50b194a3970b617533d293380cea3 [file] [log] [blame]
swissChili8cfb7c42021-04-18 21:17:58 -07001/* -*- mode:c -*- */
2
swissChilica107a02021-04-14 12:07:30 -07003#include "compiler.h"
swissChiliddc97542021-07-04 11:47:42 -07004#include "gc.h"
swissChili7e1393c2021-07-07 12:59:12 -07005#include "lib/std.h"
6#include "lisp.h"
7#include "plat/plat.h"
swissChilica107a02021-04-14 12:07:30 -07008
9#include <dasm_proto.h>
10#include <dasm_x86.h>
11
swissChili7e1393c2021-07-07 12:59:12 -070012#include <libgen.h>
13#include <stdio.h>
swissChili923b5362021-05-09 20:31:43 -070014#include <stdlib.h>
15#include <string.h>
16
swissChili53472e82021-05-08 16:06:32 -070017#define value_size sizeof(value_t)
swissChilica107a02021-04-14 12:07:30 -070018
19|.arch x86;
20
21|.macro setup, nvars;
swissChili53e7cd12021-08-02 21:55:53 -070022|1:;
swissChili484295d2021-07-09 21:25:55 -070023| push ebp;
swissChilica107a02021-04-14 12:07:30 -070024| mov ebp, esp;
swissChili8cfb7c42021-04-18 21:17:58 -070025| sub esp, (value_size * nvars);
swissChilica107a02021-04-14 12:07:30 -070026|.endmacro;
27
28|.macro cleanup;
29| mov esp, ebp;
30| pop ebp;
31| ret;
32|.endmacro;
33
swissChili484295d2021-07-09 21:25:55 -070034|.macro call_extern, address;
swissChili53e7cd12021-08-02 21:55:53 -070035| call &address;
swissChili67bdf282021-06-06 18:46:08 -070036|.endmacro;
37
swissChilica107a02021-04-14 12:07:30 -070038dasm_State *d;
39unsigned int npc = 8;
40
swissChili9e57da42021-06-15 22:22:46 -070041|.macro run_gc;
swissChilie9fec8b2021-06-22 13:59:33 -070042| mov eax, esp;
swissChili9e57da42021-06-15 22:22:46 -070043| push ebp;
swissChilie9fec8b2021-06-22 13:59:33 -070044| push eax;
swissChili9e57da42021-06-15 22:22:46 -070045| mov eax, _do_gc;
46| call eax;
47|.endmacro;
swissChili6d6525e2021-06-15 21:20:53 -070048
swissChili53472e82021-05-08 16:06:32 -070049struct function *find_function(struct environment *env, char *name)
swissChilica107a02021-04-14 12:07:30 -070050{
swissChilif68671f2021-07-05 14:14:44 -070051 struct function *f;
swissChilica107a02021-04-14 12:07:30 -070052
swissChilif68671f2021-07-05 14:14:44 -070053 for (f = env->first; f && strcmp(f->name, name); f = f->prev)
swissChilica107a02021-04-14 12:07:30 -070054 {
swissChilica107a02021-04-14 12:07:30 -070055 }
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;
swissChili7e1393c2021-07-07 12:59:12 -070077 local->stack_slots =
78 realloc(local->stack_slots, local->num_stack_slots * sizeof(bool));
swissChili67bdf282021-06-06 18:46:08 -070079 // unreadable: set the remaining slots to unused
80 memset(local->stack_slots + old_size, 0, local->num_stack_slots - old_size);
81 local->stack_slots[old_size] = true;
82
83 return old_size;
84}
85
86void local_free(struct local *local, unsigned int slot)
87{
88 local->stack_slots[slot] = false;
89}
90
swissChili708d4c42021-07-04 17:40:07 -070091void del_local(struct local *local)
92{
93 free(local->stack_slots);
94
95 for (struct variable *next, *f = local->first; f; f = next)
96 {
97 next = f->prev;
98 free(f);
99 }
100}
101
102void del_env(struct environment *env)
103{
104 for (struct function *next, *f = env->first; f; f = next)
105 {
106 next = f->prev;
107 // We're not gonna bother munmap()ing the function
108 free(f);
109 }
swissChilif68671f2021-07-05 14:14:44 -0700110
111 for (struct loaded_file *next, *l = env->first_loaded; l; l = next)
112 {
113 next = l->previous;
114 free(l->resolved_path);
115 free(l);
116 }
swissChili7e1393c2021-07-07 12:59:12 -0700117
118 free(env);
swissChilif68671f2021-07-05 14:14:44 -0700119}
120
121void add_load(struct environment *env, char *path)
122{
123 static char buffer[512];
124 long size = readlink(path, buffer, 512);
125 buffer[size] = '\0';
126 char *resolved = strdup(buffer);
127
128 struct loaded_file *f = malloc(sizeof(struct loaded_file));
129 f->resolved_path = resolved;
130 f->previous = env->first_loaded;
131 env->first_loaded = f;
swissChili708d4c42021-07-04 17:40:07 -0700132}
133
swissChilif1ba8c12021-07-02 18:45:38 -0700134struct dasm_State *compile_function(value_t args, enum namespace namespace,
swissChili7e1393c2021-07-07 12:59:12 -0700135 struct environment *env,
136 struct local *local_out,
137 struct local *local_parent,
138 struct args **args_out, char *name,
139 char *path)
swissChilif1ba8c12021-07-02 18:45:38 -0700140{
141 dasm_State *d;
142 dasm_State **Dst = &d;
143
swissChili484295d2021-07-09 21:25:55 -0700144 |.section code, imports;
swissChilif1ba8c12021-07-02 18:45:38 -0700145 dasm_init(&d, DASM_MAXSECTION);
146
147 |.globals lbl_;
148 void *labels[lbl__MAX];
149 dasm_setupglobal(&d, labels, lbl__MAX);
150
151 |.actionlist lisp_actions;
152 dasm_setup(&d, lisp_actions);
153
154 struct local local;
155 local.parent = NULL;
156 local.first = NULL;
157 local.num_vars = 0;
158 local.npc = 8;
159 local.nextpc = 0;
160 local.stack_slots = malloc(sizeof(bool) * 4);
161 memset(local.stack_slots, 0, sizeof(bool) * 4);
162 local.num_stack_slots = 4;
163 local.num_stack_entries = 0;
swissChiliddc97542021-07-04 11:47:42 -0700164 local.num_closure_slots = 0;
165 local.parent = local_parent;
swissChili74348422021-07-04 13:23:24 -0700166 local.current_function_name = name;
swissChili7e1393c2021-07-07 12:59:12 -0700167 local.current_file_path = path;
swissChilif1ba8c12021-07-02 18:45:38 -0700168
169 dasm_growpc(&d, local.npc);
170
swissChilif1ba8c12021-07-02 18:45:38 -0700171 value_t arglist = car(args);
172 value_t body = cdr(args);
173
swissChili15f1cae2021-07-05 19:08:47 -0700174 // This will add the arguments to local too.
175 struct args *ar = list_to_args(env, arglist, &local);
176 local.args = ar;
swissChili74348422021-07-04 13:23:24 -0700177
swissChili15f1cae2021-07-05 19:08:47 -0700178 if (!ar)
swissChilif1ba8c12021-07-02 18:45:38 -0700179 {
swissChili15f1cae2021-07-05 19:08:47 -0700180 err("Malformed args list");
swissChilif1ba8c12021-07-02 18:45:38 -0700181 }
182
183 for (value_t body_ = body; !nilp(body_); body_ = cdr(body_))
184 {
185 walk_and_alloc(&local, car(body_));
186 }
187
swissChili484295d2021-07-09 21:25:55 -0700188 | setup (local.num_stack_entries);
swissChilif1ba8c12021-07-02 18:45:38 -0700189
190 memset(local.stack_slots, 0, local.num_stack_slots * sizeof(bool));
191 local.num_stack_entries = 0;
192
193 for (; !nilp(body); body = cdr(body))
194 {
swissChilib51552c2021-08-03 10:23:37 -0700195 bool tail = nilp(cdr(body));
196 compile_expression(env, &local, car(body), tail, Dst);
swissChilif1ba8c12021-07-02 18:45:38 -0700197 }
198
199 | cleanup;
200
201 if (local_out)
202 *local_out = local;
203
swissChili15f1cae2021-07-05 19:08:47 -0700204 if (args_out)
205 *args_out = ar;
swissChilif1ba8c12021-07-02 18:45:38 -0700206
207 return d;
208}
209
swissChili7e1393c2021-07-07 12:59:12 -0700210void compile_tl(value_t val, struct environment *env, char *fname)
swissChilica107a02021-04-14 12:07:30 -0700211{
swissChili53472e82021-05-08 16:06:32 -0700212 if (!listp(val))
213 err("Top level must be a list");
swissChilica107a02021-04-14 12:07:30 -0700214
swissChili53472e82021-05-08 16:06:32 -0700215 value_t form = car(val);
216 value_t args = cdr(val);
217
swissChili2999dd12021-07-02 14:19:53 -0700218 if (symstreq(form, "defun") || symstreq(form, "defmacro"))
swissChili8fc5e2f2021-04-22 13:45:10 -0700219 {
swissChili2999dd12021-07-02 14:19:53 -0700220 enum namespace namespace = NS_FUNCTION;
221
222 if (symstreq(form, "defmacro"))
swissChili7e1393c2021-07-07 12:59:12 -0700223 namespace = NS_MACRO;
swissChili2999dd12021-07-02 14:19:53 -0700224
swissChili8fc5e2f2021-04-22 13:45:10 -0700225 struct local local;
swissChili15f1cae2021-07-05 19:08:47 -0700226 struct args *a;
swissChili74348422021-07-04 13:23:24 -0700227 char *name = (char *)(car(args) ^ SYMBOL_TAG);
swissChilif68671f2021-07-05 14:14:44 -0700228
swissChili7e1393c2021-07-07 12:59:12 -0700229 dasm_State *d = compile_function(cdr(args), namespace, env, &local,
230 NULL, &a, name, fname);
swissChilia820dea2021-05-09 16:46:55 -0700231
swissChili7e1393c2021-07-07 12:59:12 -0700232 add_function(env, name, link_program(&d), a, namespace);
swissChili8fc5e2f2021-04-22 13:45:10 -0700233
swissChili53472e82021-05-08 16:06:32 -0700234 dasm_free(&d);
swissChili708d4c42021-07-04 17:40:07 -0700235 del_local(&local);
swissChili67bdf282021-06-06 18:46:08 -0700236 }
swissChilif68671f2021-07-05 14:14:44 -0700237 else if (symstreq(form, "progn"))
238 {
239 for (value_t val = args; !nilp(val); val = cdr(val))
240 {
swissChili7e1393c2021-07-07 12:59:12 -0700241 compile_tl(car(val), env, fname);
swissChilif68671f2021-07-05 14:14:44 -0700242 }
243 }
swissChili484295d2021-07-09 21:25:55 -0700244 else if (symstreq(form, "load"))
245 {
246 if (length(args) != 1)
247 {
248 err_at(val, "load expects exactly 1 argument, %d given",
249 length(args));
250 }
251 load_relative(env, fname, car(args));
252 }
swissChili67bdf282021-06-06 18:46:08 -0700253}
254
255void walk_and_alloc(struct local *local, value_t body)
256{
swissChilib51552c2021-08-03 10:23:37 -0700257 // TODO: handle macros
swissChili67bdf282021-06-06 18:46:08 -0700258 if (!listp(body))
259 return;
260
261 value_t args = cdr(body);
262
263 if (symstreq(car(body), "let1"))
264 {
265 int slot = local_alloc(local);
266
267 value_t expr = cdr(args);
swissChilif1ba8c12021-07-02 18:45:38 -0700268 for (; !nilp(expr); expr = cdr(expr))
269 {
swissChiliddc97542021-07-04 11:47:42 -0700270 walk_and_alloc(local, car(expr));
swissChilif1ba8c12021-07-02 18:45:38 -0700271 }
swissChili67bdf282021-06-06 18:46:08 -0700272
273 local_free(local, slot);
274 }
swissChilif1ba8c12021-07-02 18:45:38 -0700275 else if (symstreq(car(body), "lambda"))
276 {
277 // We don't want to walk the lambda because it's another function. When
278 // the lambda is compiled it will be walked.
279 return;
280 }
swissChili67bdf282021-06-06 18:46:08 -0700281 else
282 {
283 for (; !nilp(args); args = cdr(args))
284 {
285 walk_and_alloc(local, car(args));
286 }
swissChili8fc5e2f2021-04-22 13:45:10 -0700287 }
288}
289
swissChilif68671f2021-07-05 14:14:44 -0700290bool load(struct environment *env, char *path)
swissChili8fc5e2f2021-04-22 13:45:10 -0700291{
swissChilif68671f2021-07-05 14:14:44 -0700292 if (!file_exists(path))
293 return false;
294
295 add_load(env, path);
296
swissChilib8fd4712021-06-23 15:32:04 -0700297 unsigned char pool = make_pool();
298 unsigned char pop = push_pool(pool);
299
swissChilif68671f2021-07-05 14:14:44 -0700300 struct istream *is = new_fistream(path, false);
301 if (!is)
302 return false;
303
swissChili8fc5e2f2021-04-22 13:45:10 -0700304 value_t val;
swissChili53472e82021-05-08 16:06:32 -0700305
306 while (read1(is, &val))
swissChili8fc5e2f2021-04-22 13:45:10 -0700307 {
swissChili7e1393c2021-07-07 12:59:12 -0700308 compile_tl(val, env, path);
swissChili8fc5e2f2021-04-22 13:45:10 -0700309 }
swissChilif3e7f182021-04-20 13:57:22 -0700310
swissChilif68671f2021-07-05 14:14:44 -0700311 del_fistream(is);
swissChilib8fd4712021-06-23 15:32:04 -0700312 pop_pool(pop);
313
swissChilif68671f2021-07-05 14:14:44 -0700314 return true;
315}
316
swissChili7e1393c2021-07-07 12:59:12 -0700317value_t load_relative(struct environment *env, char *to, value_t name)
318{
319 if (!stringp(name))
320 return nil;
321
322 char *new_path = (char *)(name ^ STRING_TAG);
323 char *relative_to = strdup(to);
324 char full_path[512];
325
326 snprintf(full_path, 512, "%s/%s", dirname(relative_to), new_path);
327
328 if (load(env, full_path))
329 return t;
330 else
331 return nil;
332}
333
334struct environment *compile_file(char *filename, bool *ok)
swissChilif68671f2021-07-05 14:14:44 -0700335{
336 value_t val;
swissChili7e1393c2021-07-07 12:59:12 -0700337 struct environment *env = malloc(sizeof(struct environment));
338 env->first = NULL;
339 env->first_loaded = NULL;
swissChilif68671f2021-07-05 14:14:44 -0700340
swissChili7e1393c2021-07-07 12:59:12 -0700341 add_load(env, filename);
342 load_std(env);
swissChilif68671f2021-07-05 14:14:44 -0700343
swissChili7e1393c2021-07-07 12:59:12 -0700344 bool ok_ = load(env, filename);
swissChilif68671f2021-07-05 14:14:44 -0700345
346 if (ok)
347 *ok = ok_;
348
swissChili8fc5e2f2021-04-22 13:45:10 -0700349 return env;
swissChilica107a02021-04-14 12:07:30 -0700350}
swissChilib3ca4fb2021-04-20 10:33:00 -0700351
swissChili53472e82021-05-08 16:06:32 -0700352int nextpc(struct local *local, dasm_State **Dst)
swissChilib3ca4fb2021-04-20 10:33:00 -0700353{
swissChili53472e82021-05-08 16:06:32 -0700354 int n = local->nextpc++;
355 if (n > local->npc)
356 {
357 local->npc += 16;
358 dasm_growpc(Dst, local->npc);
359 }
360 return n;
361}
362
swissChili6b47b6d2021-06-30 22:08:55 -0700363void compile_backquote(struct environment *env, struct local *local,
364 value_t val, dasm_State **Dst)
365{
366 if (!listp(val))
367 {
368 | mov eax, (val);
369 }
370 else
371 {
swissChili7e1393c2021-07-07 12:59:12 -0700372 value_t fsym = car(val), args = cdr(val);
swissChili9d151e62021-08-04 13:11:45 -0700373 int nargs = length(args),
374 n = length(val);
swissChili6b47b6d2021-06-30 22:08:55 -0700375
swissChili9d151e62021-08-04 13:11:45 -0700376 if (symstreq(fsym, "unquote"))
377 {
378 if (nargs != 1)
379 {
380 err_at(val, "unquote (or ,) takes exactly 1 argument");
381 }
382
383 compile_expression(env, local, car(args), false, Dst);
384 }
385 else
386 {
387 | push nil;
388
389 for (int i = n - 1; i >= 0; i--)
390 {
391 compile_backquote(env, local, elt(val, i), Dst);
392 | push eax;
393 | call_extern cons;
394 | add esp, 8;
395
396 // Remove unnecessary pop
397 | push eax;
398 }
399 | pop eax;
400 }
swissChili6b47b6d2021-06-30 22:08:55 -0700401 }
402}
403
swissChili7e1393c2021-07-07 12:59:12 -0700404value_t eval(struct environment *env, value_t form)
405{
406 // Eval!
407 value_t function = cons(nil, cons(form, nil));
408
409 struct local local;
410 struct args *args;
411
412 dasm_State *d = compile_function(function, NS_ANONYMOUS, env, &local, NULL,
413 &args, NULL, "/");
414
415 del_local(&local);
416
417 value_t (*f)() = link_program(&d);
418 return f();
419}
420
swissChiliddc97542021-07-04 11:47:42 -0700421void compile_variable(struct variable *v, dasm_State *Dst)
422{
423 switch (v->type)
424 {
425 case V_ARGUMENT:
swissChili7e1393c2021-07-07 12:59:12 -0700426 | mov eax, dword[ebp + (value_size * (v->number + 2))];
swissChiliddc97542021-07-04 11:47:42 -0700427 break;
428 case V_BOUND:
swissChili7e1393c2021-07-07 12:59:12 -0700429 | mov eax, dword[ebp - ((v->number + 1) * value_size)];
swissChiliddc97542021-07-04 11:47:42 -0700430 break;
431 case V_FREE:
432 // edi is the closure context pointer
swissChili7e1393c2021-07-07 12:59:12 -0700433 | mov eax, dword[edi + (v->number * value_size)];
swissChiliddc97542021-07-04 11:47:42 -0700434 break;
435 default:
swissChili7e1393c2021-07-07 12:59:12 -0700436 err("Sorry, can only access V_ARGUMENT, V_FREE and V_BOUND variables "
437 "for now :(");
swissChiliddc97542021-07-04 11:47:42 -0700438 }
439}
440
swissChili53472e82021-05-08 16:06:32 -0700441void compile_expression(struct environment *env, struct local *local,
swissChilib51552c2021-08-03 10:23:37 -0700442 value_t val, bool tail, dasm_State **Dst)
swissChili53472e82021-05-08 16:06:32 -0700443{
swissChili7e1393c2021-07-07 12:59:12 -0700444 if (symstreq(val, "nil") || nilp(val))
swissChili53472e82021-05-08 16:06:32 -0700445 {
446 | mov eax, (nil);
447 }
swissChili923b5362021-05-09 20:31:43 -0700448 else if (symstreq(val, "t"))
449 {
450 | mov eax, (t);
451 }
452 else if (integerp(val) || stringp(val))
swissChilib3ca4fb2021-04-20 10:33:00 -0700453 {
454 | mov eax, val;
455 }
swissChili53472e82021-05-08 16:06:32 -0700456 else if (listp(val))
swissChilib3ca4fb2021-04-20 10:33:00 -0700457 {
swissChili53472e82021-05-08 16:06:32 -0700458 value_t fsym = car(val);
459 value_t args = cdr(val);
460 int nargs = length(args);
swissChilib3ca4fb2021-04-20 10:33:00 -0700461
swissChili53472e82021-05-08 16:06:32 -0700462 if (!symbolp(fsym))
swissChilif3e7f182021-04-20 13:57:22 -0700463 {
swissChili7e1393c2021-07-07 12:59:12 -0700464 printval(val, 2);
465 err_at(val, "function name must be a symbol");
swissChilif3e7f182021-04-20 13:57:22 -0700466 }
467
swissChili53472e82021-05-08 16:06:32 -0700468 if (symstreq(fsym, "if"))
swissChilib3ca4fb2021-04-20 10:33:00 -0700469 {
swissChili53472e82021-05-08 16:06:32 -0700470 if (nargs < 2 || nargs > 3)
471 err("Must give at least 2 arguments to if");
swissChilib3ca4fb2021-04-20 10:33:00 -0700472
swissChilib51552c2021-08-03 10:23:37 -0700473 compile_expression(env, local, car(args), false, Dst);
swissChili53472e82021-05-08 16:06:32 -0700474 int false_label = nextpc(local, Dst),
475 after_label = nextpc(local, Dst);
476
477 // result is in eax
478 | cmp eax, (nil);
swissChili484295d2021-07-09 21:25:55 -0700479 | je =>false_label;
swissChili53472e82021-05-08 16:06:32 -0700480
swissChilib51552c2021-08-03 10:23:37 -0700481 compile_expression(env, local, elt(args, 1), tail, Dst);
swissChili484295d2021-07-09 21:25:55 -0700482 | jmp =>after_label;
483 |=>false_label:;
swissChili53472e82021-05-08 16:06:32 -0700484 if (nargs == 3)
swissChilib51552c2021-08-03 10:23:37 -0700485 compile_expression(env, local, elt(args, 2), tail, Dst);
swissChili484295d2021-07-09 21:25:55 -0700486 |=>after_label:;
swissChili53472e82021-05-08 16:06:32 -0700487 }
swissChilif68671f2021-07-05 14:14:44 -0700488 else if (symstreq(fsym, "progn"))
489 {
490 for (value_t val = args; !nilp(val); val = cdr(val))
491 {
swissChilib51552c2021-08-03 10:23:37 -0700492 bool t = tail && nilp(cdr(val));
493 compile_expression(env, local, car(val), t, Dst);
swissChilif68671f2021-07-05 14:14:44 -0700494 }
495 }
swissChili67bdf282021-06-06 18:46:08 -0700496 else if (symstreq(fsym, "let1"))
497 {
498 if (nargs < 2)
499 {
500 err("Must give at least 2 arguments to let1");
501 }
502 value_t binding = car(args);
503 value_t rest = cdr(args);
504
505 if (length(binding) != 2)
506 {
507 err("Binding list in let1 must contain exactly two entries");
508 }
509
510 value_t name = car(binding);
511 value_t value = car(cdr(binding));
512
swissChilib51552c2021-08-03 10:23:37 -0700513 compile_expression(env, local, value, false, Dst);
swissChili67bdf282021-06-06 18:46:08 -0700514
515 int i = local_alloc(local);
516
517 add_variable(local, V_BOUND, (char *)(name ^ SYMBOL_TAG), i);
518
swissChili7e1393c2021-07-07 12:59:12 -0700519 | mov dword[ebp - ((i + 1) * value_size)], eax;
swissChili67bdf282021-06-06 18:46:08 -0700520
521 for (; !nilp(rest); rest = cdr(rest))
522 {
swissChilib51552c2021-08-03 10:23:37 -0700523 bool t = tail && nilp(cdr(rest));
524 compile_expression(env, local, car(rest), t, Dst);
swissChili67bdf282021-06-06 18:46:08 -0700525 }
526
527 local_free(local, i);
528 }
swissChilie9fec8b2021-06-22 13:59:33 -0700529 else if (symstreq(fsym, "gc"))
530 {
531 if (nargs)
532 {
swissChili7e1393c2021-07-07 12:59:12 -0700533 err_at(val, "gc takes no arguments");
swissChilie9fec8b2021-06-22 13:59:33 -0700534 }
535
536 | run_gc;
537 }
swissChili6b47b6d2021-06-30 22:08:55 -0700538 else if (symstreq(fsym, "quote"))
539 {
540 if (nargs != 1)
541 err("quote should take exactly 1 argument");
542
543 // Simple!
544 | mov eax, (car(args));
545 }
546 else if (symstreq(fsym, "backquote"))
547 {
548 if (nargs != 1)
549 err("backquote should take exactly 1 argument");
550
551 compile_backquote(env, local, car(args), Dst);
552 }
swissChili74348422021-07-04 13:23:24 -0700553 else if (symstreq(fsym, "function"))
554 {
555 if (nargs != 1)
556 {
557 err("function should take exactly 1 argument");
558 }
559
560 if (!symbolp(car(args)))
561 {
swissChili7e1393c2021-07-07 12:59:12 -0700562 err("argument to function should be a symbol resolvable at "
563 "compile time");
swissChili74348422021-07-04 13:23:24 -0700564 }
565
swissChili7e1393c2021-07-07 12:59:12 -0700566 struct function *f =
567 find_function(env, (char *)(car(args) ^ SYMBOL_TAG));
swissChili15f1cae2021-07-05 19:08:47 -0700568 value_t closure = create_closure(f->code_ptr, f->args, 0);
swissChili74348422021-07-04 13:23:24 -0700569
570 | mov eax, (closure);
571 }
swissChili6b47b6d2021-06-30 22:08:55 -0700572 else if (symstreq(fsym, "list"))
573 {
swissChili484295d2021-07-09 21:25:55 -0700574 | push (nil);
swissChili6b47b6d2021-06-30 22:08:55 -0700575
576 for (int i = nargs - 1; i >= 0; i--)
577 {
swissChilib51552c2021-08-03 10:23:37 -0700578 compile_expression(env, local, elt(args, i), false, Dst);
swissChili6b47b6d2021-06-30 22:08:55 -0700579
swissChili6b47b6d2021-06-30 22:08:55 -0700580 | push eax;
swissChili53e7cd12021-08-02 21:55:53 -0700581 | call_extern cons;
swissChili6b47b6d2021-06-30 22:08:55 -0700582 | add esp, (2 * value_size);
swissChili6b47b6d2021-06-30 22:08:55 -0700583 | push eax;
584 }
swissChili9d151e62021-08-04 13:11:45 -0700585 | pop eax;
swissChili6b47b6d2021-06-30 22:08:55 -0700586 }
swissChiliddc97542021-07-04 11:47:42 -0700587 else if (symstreq(fsym, "lambda"))
588 {
589 // Compile the function with this as the parent scope
590 struct local new_local;
591 int nargs_out;
swissChili7e1393c2021-07-07 12:59:12 -0700592 dasm_State *d = compile_function(
593 args, NS_ANONYMOUS, env, &new_local, local, &nargs_out,
594 "recurse", local->current_file_path);
swissChiliddc97542021-07-04 11:47:42 -0700595
596 // Link the function
swissChilif68671f2021-07-05 14:14:44 -0700597 void *func_ptr = link_program(&d);
swissChiliddc97542021-07-04 11:47:42 -0700598
599 // Create a closure object with the correct number of captures at
600 // runtime
swissChili484295d2021-07-09 21:25:55 -0700601 | push (new_local.num_closure_slots);
602 | push (nargs_out);
603 | push (func_ptr);
swissChili53e7cd12021-08-02 21:55:53 -0700604 | call_extern create_closure;
swissChiliddc97542021-07-04 11:47:42 -0700605 | add esp, 12;
606
607 // Walk the generated local scope for V_FREE variables, since each
608 // of these exists in our scope (or higher), evaluate it and set it
609 // as a member of the lambda capture.
610
611 for (struct variable *var = new_local.first; var; var = var->prev)
612 {
613 if (var->type == V_FREE)
614 {
615 // Closure in eax
616 | push eax;
617 // Variable now in eax
618 compile_variable(find_variable(local, var->name), Dst);
619 | push eax;
620
swissChiliddc97542021-07-04 11:47:42 -0700621 // The capture offset
swissChili484295d2021-07-09 21:25:55 -0700622 | push (var->number);
swissChili53e7cd12021-08-02 21:55:53 -0700623 | call_extern set_closure_capture_variable;
swissChiliddc97542021-07-04 11:47:42 -0700624 // Skip the value and index
625 | add esp, 8;
626 // Pop the closure back in to eax
627 | pop eax;
628 }
629 }
630
631 // Closure is still in eax
632
633 dasm_free(&d);
swissChili708d4c42021-07-04 17:40:07 -0700634 del_local(&new_local);
swissChiliddc97542021-07-04 11:47:42 -0700635 }
swissChili7e1393c2021-07-07 12:59:12 -0700636 else if (symstreq(fsym, "eval"))
637 {
638 if (nargs != 1)
639 {
640 err("eval takes exactly 1 argument");
641 }
642
swissChilib51552c2021-08-03 10:23:37 -0700643 compile_expression(env, local, car(args), false, Dst);
swissChili7e1393c2021-07-07 12:59:12 -0700644 | push eax;
swissChili484295d2021-07-09 21:25:55 -0700645 | push (env);
swissChili53e7cd12021-08-02 21:55:53 -0700646 | call_extern eval;
swissChili7e1393c2021-07-07 12:59:12 -0700647 }
648 else if (symstreq(fsym, "load"))
649 {
650 if (nargs != 1)
651 {
652 err_at(val, "load takes exactly 1 argument, %d given", nargs);
653 }
654
swissChilib51552c2021-08-03 10:23:37 -0700655 compile_expression(env, local, car(args), false, Dst);
swissChili7e1393c2021-07-07 12:59:12 -0700656 | push eax;
swissChili484295d2021-07-09 21:25:55 -0700657 | push (local->current_file_path);
658 | push (env);
swissChili53e7cd12021-08-02 21:55:53 -0700659 | call_extern load_relative;
swissChili7e1393c2021-07-07 12:59:12 -0700660 }
swissChili53472e82021-05-08 16:06:32 -0700661 else
662 {
swissChili74348422021-07-04 13:23:24 -0700663 char *name = (char *)(fsym ^ SYMBOL_TAG);
664 struct function *func = find_function(env, name);
swissChili7e1393c2021-07-07 12:59:12 -0700665
swissChili74348422021-07-04 13:23:24 -0700666 bool is_recursive = false;
swissChili15f1cae2021-07-05 19:08:47 -0700667 struct args *nargs_needed = NULL;
swissChili53472e82021-05-08 16:06:32 -0700668
swissChili53e7cd12021-08-02 21:55:53 -0700669 // The number of arguments actually passed on the stack,
670 // i.e. all varargs are 1.
swissChilib51552c2021-08-03 10:23:37 -0700671 int real_nargs;
swissChili53e7cd12021-08-02 21:55:53 -0700672
swissChili7e1393c2021-07-07 12:59:12 -0700673 if (local->current_function_name &&
674 symstreq(fsym, local->current_function_name))
swissChilif1ba8c12021-07-02 18:45:38 -0700675 {
swissChili74348422021-07-04 13:23:24 -0700676 is_recursive = true;
swissChili15f1cae2021-07-05 19:08:47 -0700677 nargs_needed = local->args;
swissChili74348422021-07-04 13:23:24 -0700678 }
679 else
680 {
681 if (func == NULL)
682 {
swissChili7e1393c2021-07-07 12:59:12 -0700683 err_at(val, "Function %s undefined", name);
swissChili74348422021-07-04 13:23:24 -0700684 }
685
swissChili15f1cae2021-07-05 19:08:47 -0700686 nargs_needed = func->args;
swissChili74348422021-07-04 13:23:24 -0700687 }
688
swissChili15f1cae2021-07-05 19:08:47 -0700689 if (!are_args_acceptable(nargs_needed, nargs))
swissChili74348422021-07-04 13:23:24 -0700690 {
swissChili7e1393c2021-07-07 12:59:12 -0700691 err_at(val,
692 "wrong number of args in function call: %s at %s:%d, "
693 "want %d args but given %d\n",
694 name, cons_file(val), cons_line(val),
695 nargs_needed->num_required, nargs);
swissChilif1ba8c12021-07-02 18:45:38 -0700696 }
swissChili53472e82021-05-08 16:06:32 -0700697
swissChili53e7cd12021-08-02 21:55:53 -0700698 int total_taken = nargs_needed->num_optional +
699 nargs_needed->num_required;
700
swissChilib51552c2021-08-03 10:23:37 -0700701 real_nargs = total_taken + (nargs_needed->variadic ? 1 : 0);
swissChili53e7cd12021-08-02 21:55:53 -0700702
swissChili74348422021-07-04 13:23:24 -0700703 if (is_recursive || func->namespace == NS_FUNCTION)
swissChili53472e82021-05-08 16:06:32 -0700704 {
swissChili15f1cae2021-07-05 19:08:47 -0700705 int nargs = length(args);
706
swissChili484295d2021-07-09 21:25:55 -0700707 int line = cons_line(val);
708 char *file = cons_file(val);
709
710 if (nargs_needed->variadic)
swissChili15f1cae2021-07-05 19:08:47 -0700711 {
swissChili484295d2021-07-09 21:25:55 -0700712 | push (nil);
713 }
714
715 if (nargs > total_taken && nargs_needed->variadic)
716 {
717 // We are passing varargs, which means we need to make a list
718
719 for (int i = nargs - 1; i >= total_taken; i--)
720 {
swissChilib51552c2021-08-03 10:23:37 -0700721 compile_expression(env, local, elt(args, i), false, Dst);
swissChili484295d2021-07-09 21:25:55 -0700722 | push eax;
swissChili53e7cd12021-08-02 21:55:53 -0700723 | call_extern cons;
swissChili484295d2021-07-09 21:25:55 -0700724 | add esp, 8;
725 | push eax;
726 }
swissChili15f1cae2021-07-05 19:08:47 -0700727 }
728
swissChili7e1393c2021-07-07 12:59:12 -0700729 for (int i = nargs_needed->num_optional - 1;
730 i >= nargs - nargs_needed->num_required; i--)
swissChili15f1cae2021-07-05 19:08:47 -0700731 {
732 // Push the default optional values
swissChili484295d2021-07-09 21:25:55 -0700733 | push (nargs_needed->optional_arguments[i].value);
swissChili15f1cae2021-07-05 19:08:47 -0700734 }
735
swissChili484295d2021-07-09 21:25:55 -0700736 int min = MIN(nargs, total_taken);
737
738 for (int i = min - 1; i >= 0; i--)
swissChili2999dd12021-07-02 14:19:53 -0700739 {
swissChilib51552c2021-08-03 10:23:37 -0700740 compile_expression(env, local, elt(args, i), false, Dst);
swissChili2999dd12021-07-02 14:19:53 -0700741 | push eax;
742 }
swissChili15f1cae2021-07-05 19:08:47 -0700743
swissChili74348422021-07-04 13:23:24 -0700744 if (is_recursive)
745 {
swissChilib51552c2021-08-03 10:23:37 -0700746 if (tail)
747 {
748 // Move all the arguments pushed to the stack
749 // back up to the argument bit of the stack.
750
751 for (int i = 0; i < real_nargs; i++)
752 {
753 | pop eax;
754 | mov dword[ebp + (value_size * (i + 2))], eax;
755 }
756
757 // Jmp back to start
758 | mov esp, ebp;
759 | pop ebp;
760 | jmp <1;
761 }
762 else
763 {
764 | call <1;
765 }
swissChili74348422021-07-04 13:23:24 -0700766 }
767 else
768 {
swissChili484295d2021-07-09 21:25:55 -0700769 // | mov ebx, (func->code_addr);
770 | call_extern func->code_addr;
swissChili74348422021-07-04 13:23:24 -0700771 }
swissChili53e7cd12021-08-02 21:55:53 -0700772 | add esp, (real_nargs * value_size);
swissChili2999dd12021-07-02 14:19:53 -0700773 // result in eax
774 }
775 else if (func->namespace == NS_MACRO)
776 {
swissChili7e1393c2021-07-07 12:59:12 -0700777 // Make sure that the stuff allocated by the macro isn't in a
778 // pool
swissChilif68671f2021-07-05 14:14:44 -0700779 unsigned char pool = push_pool(0);
780
swissChili2999dd12021-07-02 14:19:53 -0700781 value_t expanded_to = call_list(func, args);
782
swissChilif68671f2021-07-05 14:14:44 -0700783 pop_pool(pool);
784
swissChilib51552c2021-08-03 10:23:37 -0700785 compile_expression(env, local, expanded_to, false, Dst);
swissChili2999dd12021-07-02 14:19:53 -0700786 }
swissChili53472e82021-05-08 16:06:32 -0700787 }
swissChilib3ca4fb2021-04-20 10:33:00 -0700788 }
swissChili923b5362021-05-09 20:31:43 -0700789 else if (symbolp(val))
790 {
swissChili7e1393c2021-07-07 12:59:12 -0700791 if (symstreq(val, "+current-file+"))
swissChilie9fec8b2021-06-22 13:59:33 -0700792 {
swissChili7e1393c2021-07-07 12:59:12 -0700793 value_t file_name_val = strval(local->current_file_path);
794
795 | mov eax, (file_name_val);
swissChilie9fec8b2021-06-22 13:59:33 -0700796 }
swissChili7e1393c2021-07-07 12:59:12 -0700797 else
798 {
799 struct variable *v =
800 find_variable(local, (char *)(val ^ SYMBOL_TAG));
swissChili923b5362021-05-09 20:31:43 -0700801
swissChili7e1393c2021-07-07 12:59:12 -0700802 if (!v)
803 {
804 fprintf(stderr, "var: %s\n", (char *)(val ^ SYMBOL_TAG));
805 err("Variable unbound");
806 }
807
808 compile_variable(v, Dst);
809 }
swissChili923b5362021-05-09 20:31:43 -0700810 }
swissChilib3ca4fb2021-04-20 10:33:00 -0700811}
swissChilif3e7f182021-04-20 13:57:22 -0700812
swissChili923b5362021-05-09 20:31:43 -0700813struct variable *add_variable(struct local *local, enum var_type type,
814 char *name, int number)
815{
816 struct variable *var = malloc(sizeof(struct variable));
817 var->prev = local->first;
818 var->type = type;
819 var->name = name;
820 var->number = number;
821
822 local->first = var;
823
824 return var;
825}
826
827void destroy_local(struct local *local)
828{
829 for (struct variable *v = local->first; v;)
830 {
831 struct variable *t = v;
832 v = v->prev;
833 free(t);
834 }
835}
836
837struct variable *find_variable(struct local *local, char *name)
838{
839 struct variable *v = local->first;
840
841 for (; v && strcmp(v->name, name) != 0; v = v->prev)
swissChili7e1393c2021-07-07 12:59:12 -0700842 {
843 }
swissChili923b5362021-05-09 20:31:43 -0700844
swissChiliddc97542021-07-04 11:47:42 -0700845 if (!v)
846 {
847 if (local->parent)
848 {
849 v = find_variable(local->parent, name);
850
851 if (v)
852 {
swissChili15f1cae2021-07-05 19:08:47 -0700853 // We found this in a parent scope, add it as a V_FREE variable
854 // to skip the search.
swissChili7e1393c2021-07-07 12:59:12 -0700855 v = add_variable(local, V_FREE, name,
856 local->num_closure_slots++);
swissChiliddc97542021-07-04 11:47:42 -0700857 }
858 }
859 }
swissChili923b5362021-05-09 20:31:43 -0700860 return v;
861}
swissChili2999dd12021-07-02 14:19:53 -0700862
swissChiliddc97542021-07-04 11:47:42 -0700863extern value_t _call_list(void *addr, value_t list, value_t *edi);
swissChili2999dd12021-07-02 14:19:53 -0700864
swissChili7e1393c2021-07-07 12:59:12 -0700865value_t call_list_args(void *code_ptr, struct args *args, value_t list,
866 void *data)
swissChili2999dd12021-07-02 14:19:53 -0700867{
swissChili15f1cae2021-07-05 19:08:47 -0700868 list = deep_copy(list);
swissChili484295d2021-07-09 21:25:55 -0700869
swissChili15f1cae2021-07-05 19:08:47 -0700870 int nargs = length(list);
871
swissChili484295d2021-07-09 21:25:55 -0700872 value_t *val = &list;
swissChili15f1cae2021-07-05 19:08:47 -0700873
874 for (value_t i = list; !nilp(i); i = cdr(i))
875 {
876 val = cdrref(i);
877 }
878
879 int total_required = args->num_required + args->num_optional;
880
881 if (nargs > total_required)
882 {
883 // Take the remainder of the list and put it as the last item in the
884 // list.
885 value_t trailing = cxdr(list, total_required);
886 value_t last_item = cons(trailing, nil);
887
888 *cxdrref(&list, total_required) = last_item;
889 }
890 else if (nargs < total_required)
891 {
892 for (int i = nargs - args->num_required; i < args->num_optional; i++)
893 {
894 // Append the i-th defualt argument
895 value_t appended = cons(args->optional_arguments[i].value, nil);
896 *val = appended;
897 val = cdrref(appended);
898 }
899 }
900
901 // We want to call this if we pass the correct # of arguments or less, just
902 // not if we have already passed varargs. Appends a nil argument.
903 if (nargs <= total_required)
904 {
905 // Enough real arguments but no variadic arguments. Pass a nil list.
906 *val = cons(nil, nil);
907 }
908
909 return _call_list(code_ptr, list, data);
910}
911
912value_t call_list(struct function *fun, value_t list)
913{
914 return call_list_args(fun->code_ptr, fun->args, list, NULL);
swissChiliddc97542021-07-04 11:47:42 -0700915}
916
917value_t call_list_closure(struct closure *c, value_t list)
918{
swissChili15f1cae2021-07-05 19:08:47 -0700919 return call_list_args(c->function, c->args, list, c->data);
920}
921
922struct args *new_args()
923{
924 struct args *a = malloc(sizeof(struct args));
925 a->num_optional = 0;
926 a->num_required = 0;
927 a->variadic = false;
928
929 return a;
930}
931
swissChili7e1393c2021-07-07 12:59:12 -0700932struct args *add_optional_arg(struct args *args, value_t name, value_t value)
swissChili15f1cae2021-07-05 19:08:47 -0700933{
934 int i = args->num_optional++;
swissChili7e1393c2021-07-07 12:59:12 -0700935 args =
936 realloc(args, sizeof(struct args) + sizeof(struct optional_argument) *
937 args->num_optional);
swissChili15f1cae2021-07-05 19:08:47 -0700938
swissChili7e1393c2021-07-07 12:59:12 -0700939 args->optional_arguments[i] = (struct optional_argument){
940 .value = value,
941 .name = name,
swissChili15f1cae2021-07-05 19:08:47 -0700942 };
943
944 return args;
945}
946
947bool are_args_acceptable(struct args *args, int number)
948{
949 if (args->variadic)
950 {
951 return number >= args->num_required;
952 }
953 else
954 {
955 return number >= args->num_required &&
swissChili7e1393c2021-07-07 12:59:12 -0700956 number <= args->num_required + args->num_optional;
swissChili15f1cae2021-07-05 19:08:47 -0700957 }
958}
959
swissChili7e1393c2021-07-07 12:59:12 -0700960struct args *list_to_args(struct environment *env, value_t list,
961 struct local *local)
swissChili15f1cae2021-07-05 19:08:47 -0700962{
963 struct args *args = new_args();
964
965 bool in_optional = false;
966
967 for (value_t i = list; !nilp(i); i = cdr(i))
968 {
969 value_t val = car(i);
970 if (symbolp(val))
971 {
972 if (!args->variadic && symstreq(val, "&"))
973 {
974 i = cdr(i);
975 value_t name = car(i);
976
977 if (!symbolp(name))
978 {
swissChili7e1393c2021-07-07 12:59:12 -0700979 err("You must provide a symbol after & in an argument list "
980 "to bind the\n"
981 "variadic arguments to.");
swissChili15f1cae2021-07-05 19:08:47 -0700982 }
983
984 args->variadic = true;
985
986 add_variable(local, V_ARGUMENT, (char *)(name ^ SYMBOL_TAG),
swissChili7e1393c2021-07-07 12:59:12 -0700987 args->num_optional + args->num_required);
swissChili15f1cae2021-07-05 19:08:47 -0700988
989 continue;
990 }
991
992 if (!in_optional)
993 {
swissChili7e1393c2021-07-07 12:59:12 -0700994 add_variable(local, V_ARGUMENT, (char *)(val ^ SYMBOL_TAG),
995 args->num_required++);
swissChili15f1cae2021-07-05 19:08:47 -0700996 }
997 else
998 {
999 char *name = (char *)(val ^ SYMBOL_TAG);
1000 if (name[0] == '&')
1001 {
swissChili7e1393c2021-07-07 12:59:12 -07001002 err("Non-optional argument following optional arguments "
1003 "starts with a &\n"
1004 "did you mean to declare a variadic argument? If so "
1005 "leave a space\n"
1006 "between the & and name.");
swissChili15f1cae2021-07-05 19:08:47 -07001007 }
1008 else
1009 {
swissChili7e1393c2021-07-07 12:59:12 -07001010 err("Cannot define a non-optional argument after an "
1011 "optional one.");
swissChili15f1cae2021-07-05 19:08:47 -07001012 }
1013 }
1014 }
1015 else if (listp(val))
1016 {
1017 in_optional = true;
1018 int len = length(val);
1019
1020 if (len != 2)
1021 {
swissChili7e1393c2021-07-07 12:59:12 -07001022 err("A list defining an optional value must be structured like "
1023 "(name expr)\n"
1024 "with exactly two arguments.");
swissChili15f1cae2021-07-05 19:08:47 -07001025 }
1026
1027 value_t name = car(val);
1028 value_t expr = car(cdr(val));
1029
1030 value_t function = cons(nil, cons(expr, nil));
1031
swissChili7e1393c2021-07-07 12:59:12 -07001032 dasm_State *d =
1033 compile_function(function, NS_ANONYMOUS, env, NULL, NULL, NULL,
1034 NULL, local->current_file_path);
swissChili15f1cae2021-07-05 19:08:47 -07001035
1036 // TODO: GC stack top!
1037 value_t (*compiled)() = link_program(&d);
1038
1039 value_t value = compiled();
1040 args = add_optional_arg(args, name, value);
1041
swissChili7e1393c2021-07-07 12:59:12 -07001042 add_variable(local, V_ARGUMENT, (char *)(name ^ SYMBOL_TAG),
1043 args->num_required + args->num_optional - 1);
swissChili15f1cae2021-07-05 19:08:47 -07001044 }
1045 }
1046
1047 return args;
1048}
1049
1050void display_args(struct args *args)
1051{
1052 printf("Args object taking %d require arguments and %d optionals:\n",
swissChili7e1393c2021-07-07 12:59:12 -07001053 args->num_required, args->num_optional);
swissChili15f1cae2021-07-05 19:08:47 -07001054
1055 for (int i = 0; i < args->num_optional; i++)
1056 {
swissChili7e1393c2021-07-07 12:59:12 -07001057 printf(" %d\t%s\n", i,
1058 (char *)(args->optional_arguments[i].name ^ SYMBOL_TAG));
swissChili15f1cae2021-07-05 19:08:47 -07001059 printval(args->optional_arguments[i].value, 2);
1060 }
swissChili2999dd12021-07-02 14:19:53 -07001061}