blob: bf78a20a3617cce47c4941a93ca88a80b3c86b35 [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);
swissChili6b47b6d2021-06-30 22:08:55 -0700373 int nargs = length(args);
374
375 // TODO
376 }
377}
378
swissChili7e1393c2021-07-07 12:59:12 -0700379value_t eval(struct environment *env, value_t form)
380{
381 // Eval!
382 value_t function = cons(nil, cons(form, nil));
383
384 struct local local;
385 struct args *args;
386
387 dasm_State *d = compile_function(function, NS_ANONYMOUS, env, &local, NULL,
388 &args, NULL, "/");
389
390 del_local(&local);
391
392 value_t (*f)() = link_program(&d);
393 return f();
394}
395
swissChiliddc97542021-07-04 11:47:42 -0700396void compile_variable(struct variable *v, dasm_State *Dst)
397{
398 switch (v->type)
399 {
400 case V_ARGUMENT:
swissChili7e1393c2021-07-07 12:59:12 -0700401 | mov eax, dword[ebp + (value_size * (v->number + 2))];
swissChiliddc97542021-07-04 11:47:42 -0700402 break;
403 case V_BOUND:
swissChili7e1393c2021-07-07 12:59:12 -0700404 | mov eax, dword[ebp - ((v->number + 1) * value_size)];
swissChiliddc97542021-07-04 11:47:42 -0700405 break;
406 case V_FREE:
407 // edi is the closure context pointer
swissChili7e1393c2021-07-07 12:59:12 -0700408 | mov eax, dword[edi + (v->number * value_size)];
swissChiliddc97542021-07-04 11:47:42 -0700409 break;
410 default:
swissChili7e1393c2021-07-07 12:59:12 -0700411 err("Sorry, can only access V_ARGUMENT, V_FREE and V_BOUND variables "
412 "for now :(");
swissChiliddc97542021-07-04 11:47:42 -0700413 }
414}
415
swissChili53472e82021-05-08 16:06:32 -0700416void compile_expression(struct environment *env, struct local *local,
swissChilib51552c2021-08-03 10:23:37 -0700417 value_t val, bool tail, dasm_State **Dst)
swissChili53472e82021-05-08 16:06:32 -0700418{
swissChili7e1393c2021-07-07 12:59:12 -0700419 if (symstreq(val, "nil") || nilp(val))
swissChili53472e82021-05-08 16:06:32 -0700420 {
421 | mov eax, (nil);
422 }
swissChili923b5362021-05-09 20:31:43 -0700423 else if (symstreq(val, "t"))
424 {
425 | mov eax, (t);
426 }
427 else if (integerp(val) || stringp(val))
swissChilib3ca4fb2021-04-20 10:33:00 -0700428 {
429 | mov eax, val;
430 }
swissChili53472e82021-05-08 16:06:32 -0700431 else if (listp(val))
swissChilib3ca4fb2021-04-20 10:33:00 -0700432 {
swissChili53472e82021-05-08 16:06:32 -0700433 value_t fsym = car(val);
434 value_t args = cdr(val);
435 int nargs = length(args);
swissChilib3ca4fb2021-04-20 10:33:00 -0700436
swissChili53472e82021-05-08 16:06:32 -0700437 if (!symbolp(fsym))
swissChilif3e7f182021-04-20 13:57:22 -0700438 {
swissChili7e1393c2021-07-07 12:59:12 -0700439 printval(val, 2);
440 err_at(val, "function name must be a symbol");
swissChilif3e7f182021-04-20 13:57:22 -0700441 }
442
swissChili53472e82021-05-08 16:06:32 -0700443 if (symstreq(fsym, "if"))
swissChilib3ca4fb2021-04-20 10:33:00 -0700444 {
swissChili53472e82021-05-08 16:06:32 -0700445 if (nargs < 2 || nargs > 3)
446 err("Must give at least 2 arguments to if");
swissChilib3ca4fb2021-04-20 10:33:00 -0700447
swissChilib51552c2021-08-03 10:23:37 -0700448 compile_expression(env, local, car(args), false, Dst);
swissChili53472e82021-05-08 16:06:32 -0700449 int false_label = nextpc(local, Dst),
450 after_label = nextpc(local, Dst);
451
452 // result is in eax
453 | cmp eax, (nil);
swissChili484295d2021-07-09 21:25:55 -0700454 | je =>false_label;
swissChili53472e82021-05-08 16:06:32 -0700455
swissChilib51552c2021-08-03 10:23:37 -0700456 compile_expression(env, local, elt(args, 1), tail, Dst);
swissChili484295d2021-07-09 21:25:55 -0700457 | jmp =>after_label;
458 |=>false_label:;
swissChili53472e82021-05-08 16:06:32 -0700459 if (nargs == 3)
swissChilib51552c2021-08-03 10:23:37 -0700460 compile_expression(env, local, elt(args, 2), tail, Dst);
swissChili484295d2021-07-09 21:25:55 -0700461 |=>after_label:;
swissChili53472e82021-05-08 16:06:32 -0700462 }
swissChilif68671f2021-07-05 14:14:44 -0700463 else if (symstreq(fsym, "progn"))
464 {
465 for (value_t val = args; !nilp(val); val = cdr(val))
466 {
swissChilib51552c2021-08-03 10:23:37 -0700467 bool t = tail && nilp(cdr(val));
468 compile_expression(env, local, car(val), t, Dst);
swissChilif68671f2021-07-05 14:14:44 -0700469 }
470 }
swissChili67bdf282021-06-06 18:46:08 -0700471 else if (symstreq(fsym, "let1"))
472 {
473 if (nargs < 2)
474 {
475 err("Must give at least 2 arguments to let1");
476 }
477 value_t binding = car(args);
478 value_t rest = cdr(args);
479
480 if (length(binding) != 2)
481 {
482 err("Binding list in let1 must contain exactly two entries");
483 }
484
485 value_t name = car(binding);
486 value_t value = car(cdr(binding));
487
swissChilib51552c2021-08-03 10:23:37 -0700488 compile_expression(env, local, value, false, Dst);
swissChili67bdf282021-06-06 18:46:08 -0700489
490 int i = local_alloc(local);
491
492 add_variable(local, V_BOUND, (char *)(name ^ SYMBOL_TAG), i);
493
swissChili7e1393c2021-07-07 12:59:12 -0700494 | mov dword[ebp - ((i + 1) * value_size)], eax;
swissChili67bdf282021-06-06 18:46:08 -0700495
496 for (; !nilp(rest); rest = cdr(rest))
497 {
swissChilib51552c2021-08-03 10:23:37 -0700498 bool t = tail && nilp(cdr(rest));
499 compile_expression(env, local, car(rest), t, Dst);
swissChili67bdf282021-06-06 18:46:08 -0700500 }
501
502 local_free(local, i);
503 }
swissChilie9fec8b2021-06-22 13:59:33 -0700504 else if (symstreq(fsym, "gc"))
505 {
506 if (nargs)
507 {
swissChili7e1393c2021-07-07 12:59:12 -0700508 err_at(val, "gc takes no arguments");
swissChilie9fec8b2021-06-22 13:59:33 -0700509 }
510
511 | run_gc;
512 }
swissChili6b47b6d2021-06-30 22:08:55 -0700513 else if (symstreq(fsym, "quote"))
514 {
515 if (nargs != 1)
516 err("quote should take exactly 1 argument");
517
518 // Simple!
519 | mov eax, (car(args));
520 }
521 else if (symstreq(fsym, "backquote"))
522 {
523 if (nargs != 1)
524 err("backquote should take exactly 1 argument");
525
526 compile_backquote(env, local, car(args), Dst);
527 }
swissChili74348422021-07-04 13:23:24 -0700528 else if (symstreq(fsym, "function"))
529 {
530 if (nargs != 1)
531 {
532 err("function should take exactly 1 argument");
533 }
534
535 if (!symbolp(car(args)))
536 {
swissChili7e1393c2021-07-07 12:59:12 -0700537 err("argument to function should be a symbol resolvable at "
538 "compile time");
swissChili74348422021-07-04 13:23:24 -0700539 }
540
swissChili7e1393c2021-07-07 12:59:12 -0700541 struct function *f =
542 find_function(env, (char *)(car(args) ^ SYMBOL_TAG));
swissChili15f1cae2021-07-05 19:08:47 -0700543 value_t closure = create_closure(f->code_ptr, f->args, 0);
swissChili74348422021-07-04 13:23:24 -0700544
545 | mov eax, (closure);
546 }
swissChili6b47b6d2021-06-30 22:08:55 -0700547 else if (symstreq(fsym, "list"))
548 {
swissChili484295d2021-07-09 21:25:55 -0700549 | push (nil);
swissChili6b47b6d2021-06-30 22:08:55 -0700550
551 for (int i = nargs - 1; i >= 0; i--)
552 {
swissChilib51552c2021-08-03 10:23:37 -0700553 compile_expression(env, local, elt(args, i), false, Dst);
swissChili6b47b6d2021-06-30 22:08:55 -0700554
555 // push the ith item
556 | push eax;
557 // cons the top two stack items
swissChili53e7cd12021-08-02 21:55:53 -0700558 | call_extern cons;
swissChili6b47b6d2021-06-30 22:08:55 -0700559 // remove the stack items from use
560 | add esp, (2 * value_size);
561 // put the new thing on the stack
562 | push eax;
563 }
564
565 | pop eax;
566 }
swissChiliddc97542021-07-04 11:47:42 -0700567 else if (symstreq(fsym, "lambda"))
568 {
569 // Compile the function with this as the parent scope
570 struct local new_local;
571 int nargs_out;
swissChili7e1393c2021-07-07 12:59:12 -0700572 dasm_State *d = compile_function(
573 args, NS_ANONYMOUS, env, &new_local, local, &nargs_out,
574 "recurse", local->current_file_path);
swissChiliddc97542021-07-04 11:47:42 -0700575
576 // Link the function
swissChilif68671f2021-07-05 14:14:44 -0700577 void *func_ptr = link_program(&d);
swissChiliddc97542021-07-04 11:47:42 -0700578
579 // Create a closure object with the correct number of captures at
580 // runtime
swissChili484295d2021-07-09 21:25:55 -0700581 | push (new_local.num_closure_slots);
582 | push (nargs_out);
583 | push (func_ptr);
swissChili53e7cd12021-08-02 21:55:53 -0700584 | call_extern create_closure;
swissChiliddc97542021-07-04 11:47:42 -0700585 | add esp, 12;
586
587 // Walk the generated local scope for V_FREE variables, since each
588 // of these exists in our scope (or higher), evaluate it and set it
589 // as a member of the lambda capture.
590
591 for (struct variable *var = new_local.first; var; var = var->prev)
592 {
593 if (var->type == V_FREE)
594 {
595 // Closure in eax
596 | push eax;
597 // Variable now in eax
598 compile_variable(find_variable(local, var->name), Dst);
599 | push eax;
600
swissChiliddc97542021-07-04 11:47:42 -0700601 // The capture offset
swissChili484295d2021-07-09 21:25:55 -0700602 | push (var->number);
swissChili53e7cd12021-08-02 21:55:53 -0700603 | call_extern set_closure_capture_variable;
swissChiliddc97542021-07-04 11:47:42 -0700604 // Skip the value and index
605 | add esp, 8;
606 // Pop the closure back in to eax
607 | pop eax;
608 }
609 }
610
611 // Closure is still in eax
612
613 dasm_free(&d);
swissChili708d4c42021-07-04 17:40:07 -0700614 del_local(&new_local);
swissChiliddc97542021-07-04 11:47:42 -0700615 }
swissChili7e1393c2021-07-07 12:59:12 -0700616 else if (symstreq(fsym, "eval"))
617 {
618 if (nargs != 1)
619 {
620 err("eval takes exactly 1 argument");
621 }
622
swissChilib51552c2021-08-03 10:23:37 -0700623 compile_expression(env, local, car(args), false, Dst);
swissChili7e1393c2021-07-07 12:59:12 -0700624 | push eax;
swissChili484295d2021-07-09 21:25:55 -0700625 | push (env);
swissChili53e7cd12021-08-02 21:55:53 -0700626 | call_extern eval;
swissChili7e1393c2021-07-07 12:59:12 -0700627 }
628 else if (symstreq(fsym, "load"))
629 {
630 if (nargs != 1)
631 {
632 err_at(val, "load takes exactly 1 argument, %d given", nargs);
633 }
634
swissChilib51552c2021-08-03 10:23:37 -0700635 compile_expression(env, local, car(args), false, Dst);
swissChili7e1393c2021-07-07 12:59:12 -0700636 | push eax;
swissChili484295d2021-07-09 21:25:55 -0700637 | push (local->current_file_path);
638 | push (env);
swissChili53e7cd12021-08-02 21:55:53 -0700639 | call_extern load_relative;
swissChili7e1393c2021-07-07 12:59:12 -0700640 }
swissChili53472e82021-05-08 16:06:32 -0700641 else
642 {
swissChili74348422021-07-04 13:23:24 -0700643 char *name = (char *)(fsym ^ SYMBOL_TAG);
644 struct function *func = find_function(env, name);
swissChili7e1393c2021-07-07 12:59:12 -0700645
swissChili74348422021-07-04 13:23:24 -0700646 bool is_recursive = false;
swissChili15f1cae2021-07-05 19:08:47 -0700647 struct args *nargs_needed = NULL;
swissChili53472e82021-05-08 16:06:32 -0700648
swissChili53e7cd12021-08-02 21:55:53 -0700649 // The number of arguments actually passed on the stack,
650 // i.e. all varargs are 1.
swissChilib51552c2021-08-03 10:23:37 -0700651 int real_nargs;
swissChili53e7cd12021-08-02 21:55:53 -0700652
swissChili7e1393c2021-07-07 12:59:12 -0700653 if (local->current_function_name &&
654 symstreq(fsym, local->current_function_name))
swissChilif1ba8c12021-07-02 18:45:38 -0700655 {
swissChili74348422021-07-04 13:23:24 -0700656 is_recursive = true;
swissChili15f1cae2021-07-05 19:08:47 -0700657 nargs_needed = local->args;
swissChili74348422021-07-04 13:23:24 -0700658 }
659 else
660 {
661 if (func == NULL)
662 {
swissChili7e1393c2021-07-07 12:59:12 -0700663 err_at(val, "Function %s undefined", name);
swissChili74348422021-07-04 13:23:24 -0700664 }
665
swissChili15f1cae2021-07-05 19:08:47 -0700666 nargs_needed = func->args;
swissChili74348422021-07-04 13:23:24 -0700667 }
668
swissChili15f1cae2021-07-05 19:08:47 -0700669 if (!are_args_acceptable(nargs_needed, nargs))
swissChili74348422021-07-04 13:23:24 -0700670 {
swissChili7e1393c2021-07-07 12:59:12 -0700671 err_at(val,
672 "wrong number of args in function call: %s at %s:%d, "
673 "want %d args but given %d\n",
674 name, cons_file(val), cons_line(val),
675 nargs_needed->num_required, nargs);
swissChilif1ba8c12021-07-02 18:45:38 -0700676 }
swissChili53472e82021-05-08 16:06:32 -0700677
swissChili53e7cd12021-08-02 21:55:53 -0700678 int total_taken = nargs_needed->num_optional +
679 nargs_needed->num_required;
680
swissChilib51552c2021-08-03 10:23:37 -0700681 real_nargs = total_taken + (nargs_needed->variadic ? 1 : 0);
swissChili53e7cd12021-08-02 21:55:53 -0700682
swissChili74348422021-07-04 13:23:24 -0700683 if (is_recursive || func->namespace == NS_FUNCTION)
swissChili53472e82021-05-08 16:06:32 -0700684 {
swissChili15f1cae2021-07-05 19:08:47 -0700685 int nargs = length(args);
686
swissChili484295d2021-07-09 21:25:55 -0700687 int line = cons_line(val);
688 char *file = cons_file(val);
689
690 if (nargs_needed->variadic)
swissChili15f1cae2021-07-05 19:08:47 -0700691 {
swissChili484295d2021-07-09 21:25:55 -0700692 | push (nil);
693 }
694
695 if (nargs > total_taken && nargs_needed->variadic)
696 {
697 // We are passing varargs, which means we need to make a list
698
699 for (int i = nargs - 1; i >= total_taken; i--)
700 {
swissChilib51552c2021-08-03 10:23:37 -0700701 compile_expression(env, local, elt(args, i), false, Dst);
swissChili484295d2021-07-09 21:25:55 -0700702 | push eax;
swissChili53e7cd12021-08-02 21:55:53 -0700703 | call_extern cons;
swissChili484295d2021-07-09 21:25:55 -0700704 | add esp, 8;
705 | push eax;
706 }
swissChili15f1cae2021-07-05 19:08:47 -0700707 }
708
swissChili7e1393c2021-07-07 12:59:12 -0700709 for (int i = nargs_needed->num_optional - 1;
710 i >= nargs - nargs_needed->num_required; i--)
swissChili15f1cae2021-07-05 19:08:47 -0700711 {
712 // Push the default optional values
swissChili484295d2021-07-09 21:25:55 -0700713 | push (nargs_needed->optional_arguments[i].value);
swissChili15f1cae2021-07-05 19:08:47 -0700714 }
715
swissChili484295d2021-07-09 21:25:55 -0700716 int min = MIN(nargs, total_taken);
717
718 for (int i = min - 1; i >= 0; i--)
swissChili2999dd12021-07-02 14:19:53 -0700719 {
swissChilib51552c2021-08-03 10:23:37 -0700720 compile_expression(env, local, elt(args, i), false, Dst);
swissChili2999dd12021-07-02 14:19:53 -0700721 | push eax;
722 }
swissChili15f1cae2021-07-05 19:08:47 -0700723
swissChili74348422021-07-04 13:23:24 -0700724 if (is_recursive)
725 {
swissChilib51552c2021-08-03 10:23:37 -0700726 if (tail)
727 {
728 // Move all the arguments pushed to the stack
729 // back up to the argument bit of the stack.
730
731 for (int i = 0; i < real_nargs; i++)
732 {
733 | pop eax;
734 | mov dword[ebp + (value_size * (i + 2))], eax;
735 }
736
737 // Jmp back to start
738 | mov esp, ebp;
739 | pop ebp;
740 | jmp <1;
741 }
742 else
743 {
744 | call <1;
745 }
swissChili74348422021-07-04 13:23:24 -0700746 }
747 else
748 {
swissChili484295d2021-07-09 21:25:55 -0700749 // | mov ebx, (func->code_addr);
750 | call_extern func->code_addr;
swissChili74348422021-07-04 13:23:24 -0700751 }
swissChili53e7cd12021-08-02 21:55:53 -0700752 | add esp, (real_nargs * value_size);
swissChili2999dd12021-07-02 14:19:53 -0700753 // result in eax
754 }
755 else if (func->namespace == NS_MACRO)
756 {
swissChili7e1393c2021-07-07 12:59:12 -0700757 // Make sure that the stuff allocated by the macro isn't in a
758 // pool
swissChilif68671f2021-07-05 14:14:44 -0700759 unsigned char pool = push_pool(0);
760
swissChili2999dd12021-07-02 14:19:53 -0700761 value_t expanded_to = call_list(func, args);
762
swissChilif68671f2021-07-05 14:14:44 -0700763 pop_pool(pool);
764
swissChilib51552c2021-08-03 10:23:37 -0700765 compile_expression(env, local, expanded_to, false, Dst);
swissChili2999dd12021-07-02 14:19:53 -0700766 }
swissChili53472e82021-05-08 16:06:32 -0700767 }
swissChilib3ca4fb2021-04-20 10:33:00 -0700768 }
swissChili923b5362021-05-09 20:31:43 -0700769 else if (symbolp(val))
770 {
swissChili7e1393c2021-07-07 12:59:12 -0700771 if (symstreq(val, "+current-file+"))
swissChilie9fec8b2021-06-22 13:59:33 -0700772 {
swissChili7e1393c2021-07-07 12:59:12 -0700773 value_t file_name_val = strval(local->current_file_path);
774
775 | mov eax, (file_name_val);
swissChilie9fec8b2021-06-22 13:59:33 -0700776 }
swissChili7e1393c2021-07-07 12:59:12 -0700777 else
778 {
779 struct variable *v =
780 find_variable(local, (char *)(val ^ SYMBOL_TAG));
swissChili923b5362021-05-09 20:31:43 -0700781
swissChili7e1393c2021-07-07 12:59:12 -0700782 if (!v)
783 {
784 fprintf(stderr, "var: %s\n", (char *)(val ^ SYMBOL_TAG));
785 err("Variable unbound");
786 }
787
788 compile_variable(v, Dst);
789 }
swissChili923b5362021-05-09 20:31:43 -0700790 }
swissChilib3ca4fb2021-04-20 10:33:00 -0700791}
swissChilif3e7f182021-04-20 13:57:22 -0700792
swissChili923b5362021-05-09 20:31:43 -0700793struct variable *add_variable(struct local *local, enum var_type type,
794 char *name, int number)
795{
796 struct variable *var = malloc(sizeof(struct variable));
797 var->prev = local->first;
798 var->type = type;
799 var->name = name;
800 var->number = number;
801
802 local->first = var;
803
804 return var;
805}
806
807void destroy_local(struct local *local)
808{
809 for (struct variable *v = local->first; v;)
810 {
811 struct variable *t = v;
812 v = v->prev;
813 free(t);
814 }
815}
816
817struct variable *find_variable(struct local *local, char *name)
818{
819 struct variable *v = local->first;
820
821 for (; v && strcmp(v->name, name) != 0; v = v->prev)
swissChili7e1393c2021-07-07 12:59:12 -0700822 {
823 }
swissChili923b5362021-05-09 20:31:43 -0700824
swissChiliddc97542021-07-04 11:47:42 -0700825 if (!v)
826 {
827 if (local->parent)
828 {
829 v = find_variable(local->parent, name);
830
831 if (v)
832 {
swissChili15f1cae2021-07-05 19:08:47 -0700833 // We found this in a parent scope, add it as a V_FREE variable
834 // to skip the search.
swissChili7e1393c2021-07-07 12:59:12 -0700835 v = add_variable(local, V_FREE, name,
836 local->num_closure_slots++);
swissChiliddc97542021-07-04 11:47:42 -0700837 }
838 }
839 }
swissChili923b5362021-05-09 20:31:43 -0700840 return v;
841}
swissChili2999dd12021-07-02 14:19:53 -0700842
swissChiliddc97542021-07-04 11:47:42 -0700843extern value_t _call_list(void *addr, value_t list, value_t *edi);
swissChili2999dd12021-07-02 14:19:53 -0700844
swissChili7e1393c2021-07-07 12:59:12 -0700845value_t call_list_args(void *code_ptr, struct args *args, value_t list,
846 void *data)
swissChili2999dd12021-07-02 14:19:53 -0700847{
swissChili15f1cae2021-07-05 19:08:47 -0700848 list = deep_copy(list);
swissChili484295d2021-07-09 21:25:55 -0700849
swissChili15f1cae2021-07-05 19:08:47 -0700850 int nargs = length(list);
851
swissChili484295d2021-07-09 21:25:55 -0700852 value_t *val = &list;
swissChili15f1cae2021-07-05 19:08:47 -0700853
854 for (value_t i = list; !nilp(i); i = cdr(i))
855 {
856 val = cdrref(i);
857 }
858
859 int total_required = args->num_required + args->num_optional;
860
861 if (nargs > total_required)
862 {
863 // Take the remainder of the list and put it as the last item in the
864 // list.
865 value_t trailing = cxdr(list, total_required);
866 value_t last_item = cons(trailing, nil);
867
868 *cxdrref(&list, total_required) = last_item;
869 }
870 else if (nargs < total_required)
871 {
872 for (int i = nargs - args->num_required; i < args->num_optional; i++)
873 {
874 // Append the i-th defualt argument
875 value_t appended = cons(args->optional_arguments[i].value, nil);
876 *val = appended;
877 val = cdrref(appended);
878 }
879 }
880
881 // We want to call this if we pass the correct # of arguments or less, just
882 // not if we have already passed varargs. Appends a nil argument.
883 if (nargs <= total_required)
884 {
885 // Enough real arguments but no variadic arguments. Pass a nil list.
886 *val = cons(nil, nil);
887 }
888
889 return _call_list(code_ptr, list, data);
890}
891
892value_t call_list(struct function *fun, value_t list)
893{
894 return call_list_args(fun->code_ptr, fun->args, list, NULL);
swissChiliddc97542021-07-04 11:47:42 -0700895}
896
897value_t call_list_closure(struct closure *c, value_t list)
898{
swissChili15f1cae2021-07-05 19:08:47 -0700899 return call_list_args(c->function, c->args, list, c->data);
900}
901
902struct args *new_args()
903{
904 struct args *a = malloc(sizeof(struct args));
905 a->num_optional = 0;
906 a->num_required = 0;
907 a->variadic = false;
908
909 return a;
910}
911
swissChili7e1393c2021-07-07 12:59:12 -0700912struct args *add_optional_arg(struct args *args, value_t name, value_t value)
swissChili15f1cae2021-07-05 19:08:47 -0700913{
914 int i = args->num_optional++;
swissChili7e1393c2021-07-07 12:59:12 -0700915 args =
916 realloc(args, sizeof(struct args) + sizeof(struct optional_argument) *
917 args->num_optional);
swissChili15f1cae2021-07-05 19:08:47 -0700918
swissChili7e1393c2021-07-07 12:59:12 -0700919 args->optional_arguments[i] = (struct optional_argument){
920 .value = value,
921 .name = name,
swissChili15f1cae2021-07-05 19:08:47 -0700922 };
923
924 return args;
925}
926
927bool are_args_acceptable(struct args *args, int number)
928{
929 if (args->variadic)
930 {
931 return number >= args->num_required;
932 }
933 else
934 {
935 return number >= args->num_required &&
swissChili7e1393c2021-07-07 12:59:12 -0700936 number <= args->num_required + args->num_optional;
swissChili15f1cae2021-07-05 19:08:47 -0700937 }
938}
939
swissChili7e1393c2021-07-07 12:59:12 -0700940struct args *list_to_args(struct environment *env, value_t list,
941 struct local *local)
swissChili15f1cae2021-07-05 19:08:47 -0700942{
943 struct args *args = new_args();
944
945 bool in_optional = false;
946
947 for (value_t i = list; !nilp(i); i = cdr(i))
948 {
949 value_t val = car(i);
950 if (symbolp(val))
951 {
952 if (!args->variadic && symstreq(val, "&"))
953 {
954 i = cdr(i);
955 value_t name = car(i);
956
957 if (!symbolp(name))
958 {
swissChili7e1393c2021-07-07 12:59:12 -0700959 err("You must provide a symbol after & in an argument list "
960 "to bind the\n"
961 "variadic arguments to.");
swissChili15f1cae2021-07-05 19:08:47 -0700962 }
963
964 args->variadic = true;
965
966 add_variable(local, V_ARGUMENT, (char *)(name ^ SYMBOL_TAG),
swissChili7e1393c2021-07-07 12:59:12 -0700967 args->num_optional + args->num_required);
swissChili15f1cae2021-07-05 19:08:47 -0700968
969 continue;
970 }
971
972 if (!in_optional)
973 {
swissChili7e1393c2021-07-07 12:59:12 -0700974 add_variable(local, V_ARGUMENT, (char *)(val ^ SYMBOL_TAG),
975 args->num_required++);
swissChili15f1cae2021-07-05 19:08:47 -0700976 }
977 else
978 {
979 char *name = (char *)(val ^ SYMBOL_TAG);
980 if (name[0] == '&')
981 {
swissChili7e1393c2021-07-07 12:59:12 -0700982 err("Non-optional argument following optional arguments "
983 "starts with a &\n"
984 "did you mean to declare a variadic argument? If so "
985 "leave a space\n"
986 "between the & and name.");
swissChili15f1cae2021-07-05 19:08:47 -0700987 }
988 else
989 {
swissChili7e1393c2021-07-07 12:59:12 -0700990 err("Cannot define a non-optional argument after an "
991 "optional one.");
swissChili15f1cae2021-07-05 19:08:47 -0700992 }
993 }
994 }
995 else if (listp(val))
996 {
997 in_optional = true;
998 int len = length(val);
999
1000 if (len != 2)
1001 {
swissChili7e1393c2021-07-07 12:59:12 -07001002 err("A list defining an optional value must be structured like "
1003 "(name expr)\n"
1004 "with exactly two arguments.");
swissChili15f1cae2021-07-05 19:08:47 -07001005 }
1006
1007 value_t name = car(val);
1008 value_t expr = car(cdr(val));
1009
1010 value_t function = cons(nil, cons(expr, nil));
1011
swissChili7e1393c2021-07-07 12:59:12 -07001012 dasm_State *d =
1013 compile_function(function, NS_ANONYMOUS, env, NULL, NULL, NULL,
1014 NULL, local->current_file_path);
swissChili15f1cae2021-07-05 19:08:47 -07001015
1016 // TODO: GC stack top!
1017 value_t (*compiled)() = link_program(&d);
1018
1019 value_t value = compiled();
1020 args = add_optional_arg(args, name, value);
1021
swissChili7e1393c2021-07-07 12:59:12 -07001022 add_variable(local, V_ARGUMENT, (char *)(name ^ SYMBOL_TAG),
1023 args->num_required + args->num_optional - 1);
swissChili15f1cae2021-07-05 19:08:47 -07001024 }
1025 }
1026
1027 return args;
1028}
1029
1030void display_args(struct args *args)
1031{
1032 printf("Args object taking %d require arguments and %d optionals:\n",
swissChili7e1393c2021-07-07 12:59:12 -07001033 args->num_required, args->num_optional);
swissChili15f1cae2021-07-05 19:08:47 -07001034
1035 for (int i = 0; i < args->num_optional; i++)
1036 {
swissChili7e1393c2021-07-07 12:59:12 -07001037 printf(" %d\t%s\n", i,
1038 (char *)(args->optional_arguments[i].name ^ SYMBOL_TAG));
swissChili15f1cae2021-07-05 19:08:47 -07001039 printval(args->optional_arguments[i].value, 2);
1040 }
swissChili2999dd12021-07-02 14:19:53 -07001041}