blob: 122538c588068ff1de4400c3bebc0412f7fc585d [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
swissChilic0acce42022-07-31 13:38:17 -0700108 if (f->args)
109 free(f->args);
swissChili708d4c42021-07-04 17:40:07 -0700110 free(f);
111 }
swissChilif68671f2021-07-05 14:14:44 -0700112
113 for (struct loaded_file *next, *l = env->first_loaded; l; l = next)
114 {
115 next = l->previous;
116 free(l->resolved_path);
117 free(l);
118 }
swissChili7e1393c2021-07-07 12:59:12 -0700119
120 free(env);
swissChilif68671f2021-07-05 14:14:44 -0700121}
122
123void add_load(struct environment *env, char *path)
124{
125 static char buffer[512];
126 long size = readlink(path, buffer, 512);
127 buffer[size] = '\0';
128 char *resolved = strdup(buffer);
129
130 struct loaded_file *f = malloc(sizeof(struct loaded_file));
131 f->resolved_path = resolved;
132 f->previous = env->first_loaded;
133 env->first_loaded = f;
swissChili708d4c42021-07-04 17:40:07 -0700134}
135
swissChili6d02af42021-08-05 19:49:01 -0700136struct error compile_function(value_t args, enum namespace namespace,
137 struct environment *env,
138 struct local *local_out,
139 struct local *local_parent,
140 struct args **args_out, char *name,
141 char *path,
142 dasm_State **state)
swissChilif1ba8c12021-07-02 18:45:38 -0700143{
swissChilia7568dc2021-08-08 16:52:52 -0700144 UNUSED(namespace);
145
swissChili6d02af42021-08-05 19:49:01 -0700146 E_INIT();
147
swissChilif1ba8c12021-07-02 18:45:38 -0700148 dasm_State *d;
149 dasm_State **Dst = &d;
150
swissChili484295d2021-07-09 21:25:55 -0700151 |.section code, imports;
swissChilif1ba8c12021-07-02 18:45:38 -0700152 dasm_init(&d, DASM_MAXSECTION);
153
154 |.globals lbl_;
155 void *labels[lbl__MAX];
156 dasm_setupglobal(&d, labels, lbl__MAX);
157
158 |.actionlist lisp_actions;
159 dasm_setup(&d, lisp_actions);
160
161 struct local local;
162 local.parent = NULL;
163 local.first = NULL;
164 local.num_vars = 0;
165 local.npc = 8;
166 local.nextpc = 0;
167 local.stack_slots = malloc(sizeof(bool) * 4);
168 memset(local.stack_slots, 0, sizeof(bool) * 4);
169 local.num_stack_slots = 4;
170 local.num_stack_entries = 0;
swissChiliddc97542021-07-04 11:47:42 -0700171 local.num_closure_slots = 0;
172 local.parent = local_parent;
swissChili74348422021-07-04 13:23:24 -0700173 local.current_function_name = name;
swissChili7e1393c2021-07-07 12:59:12 -0700174 local.current_file_path = path;
swissChilif1ba8c12021-07-02 18:45:38 -0700175
176 dasm_growpc(&d, local.npc);
177
swissChilif1ba8c12021-07-02 18:45:38 -0700178 value_t arglist = car(args);
179 value_t body = cdr(args);
180
swissChili15f1cae2021-07-05 19:08:47 -0700181 // This will add the arguments to local too.
swissChili6d02af42021-08-05 19:49:01 -0700182 struct args *ar;
183 TRY(list_to_args(env, arglist, &local, &ar));
swissChili15f1cae2021-07-05 19:08:47 -0700184 local.args = ar;
swissChili74348422021-07-04 13:23:24 -0700185
swissChili15f1cae2021-07-05 19:08:47 -0700186 if (!ar)
swissChilif1ba8c12021-07-02 18:45:38 -0700187 {
swissChili6d02af42021-08-05 19:49:01 -0700188 NEARVAL(arglist);
189 THROW(EMALFORMED, "Malformed argument list");
swissChilif1ba8c12021-07-02 18:45:38 -0700190 }
191
192 for (value_t body_ = body; !nilp(body_); body_ = cdr(body_))
193 {
swissChilifc5c9412021-08-08 19:08:26 -0700194 TRY(walk_and_alloc(env, &local, carref(body_), false));
swissChilif1ba8c12021-07-02 18:45:38 -0700195 }
196
swissChili484295d2021-07-09 21:25:55 -0700197 | setup (local.num_stack_entries);
swissChilif1ba8c12021-07-02 18:45:38 -0700198
199 memset(local.stack_slots, 0, local.num_stack_slots * sizeof(bool));
200 local.num_stack_entries = 0;
201
202 for (; !nilp(body); body = cdr(body))
203 {
swissChilib51552c2021-08-03 10:23:37 -0700204 bool tail = nilp(cdr(body));
swissChili6d02af42021-08-05 19:49:01 -0700205 TRY(compile_expression(env, &local, car(body), tail, Dst));
swissChilif1ba8c12021-07-02 18:45:38 -0700206 }
207
208 | cleanup;
209
210 if (local_out)
211 *local_out = local;
swissChilic0acce42022-07-31 13:38:17 -0700212 else
213 del_local(&local);
swissChilif1ba8c12021-07-02 18:45:38 -0700214
swissChili15f1cae2021-07-05 19:08:47 -0700215 if (args_out)
216 *args_out = ar;
swissChilif1ba8c12021-07-02 18:45:38 -0700217
swissChilic0acce42022-07-31 13:38:17 -0700218 if (!local_out && !args_out)
219 free(ar);
220
swissChili6d02af42021-08-05 19:49:01 -0700221 *state = d;
222
223 OKAY();
swissChilif1ba8c12021-07-02 18:45:38 -0700224}
225
swissChili6d02af42021-08-05 19:49:01 -0700226struct error compile_tl(value_t val, struct environment *env, char *fname)
swissChilica107a02021-04-14 12:07:30 -0700227{
swissChili6d02af42021-08-05 19:49:01 -0700228 E_INIT();
229
230 NEARVAL(val);
231
swissChili53472e82021-05-08 16:06:32 -0700232 if (!listp(val))
swissChili6d02af42021-08-05 19:49:01 -0700233 {
234 THROW(EEXPECTED, "Top level form must be a list");
235 }
swissChilica107a02021-04-14 12:07:30 -0700236
swissChili53472e82021-05-08 16:06:32 -0700237 value_t form = car(val);
238 value_t args = cdr(val);
239
swissChili2999dd12021-07-02 14:19:53 -0700240 if (symstreq(form, "defun") || symstreq(form, "defmacro"))
swissChili8fc5e2f2021-04-22 13:45:10 -0700241 {
swissChili2999dd12021-07-02 14:19:53 -0700242 enum namespace namespace = NS_FUNCTION;
243
244 if (symstreq(form, "defmacro"))
swissChilia89ee442021-08-04 20:54:51 -0700245 namespace = NS_MACRO;
swissChili2999dd12021-07-02 14:19:53 -0700246
swissChili8fc5e2f2021-04-22 13:45:10 -0700247 struct local local;
swissChili15f1cae2021-07-05 19:08:47 -0700248 struct args *a;
swissChili74348422021-07-04 13:23:24 -0700249 char *name = (char *)(car(args) ^ SYMBOL_TAG);
swissChilif68671f2021-07-05 14:14:44 -0700250
swissChili6d02af42021-08-05 19:49:01 -0700251 dasm_State *d;
252 TRY(compile_function(cdr(args), namespace, env, &local,
253 NULL, &a, name, fname, &d));
swissChilia820dea2021-05-09 16:46:55 -0700254
swissChili7e1393c2021-07-07 12:59:12 -0700255 add_function(env, name, link_program(&d), a, namespace);
swissChili8fc5e2f2021-04-22 13:45:10 -0700256
swissChili53472e82021-05-08 16:06:32 -0700257 dasm_free(&d);
swissChili708d4c42021-07-04 17:40:07 -0700258 del_local(&local);
swissChili67bdf282021-06-06 18:46:08 -0700259 }
swissChilif68671f2021-07-05 14:14:44 -0700260 else if (symstreq(form, "progn"))
261 {
262 for (value_t val = args; !nilp(val); val = cdr(val))
263 {
swissChili6d02af42021-08-05 19:49:01 -0700264 TRY(compile_tl(car(val), env, fname));
swissChilif68671f2021-07-05 14:14:44 -0700265 }
266 }
swissChili484295d2021-07-09 21:25:55 -0700267 else if (symstreq(form, "load"))
268 {
269 if (length(args) != 1)
270 {
swissChili6d02af42021-08-05 19:49:01 -0700271 NEARVAL(args);
272 THROW(EARGS, "load expects exactly 1 argument, %d given",
273 length(args));
swissChili484295d2021-07-09 21:25:55 -0700274 }
275 load_relative(env, fname, car(args));
276 }
swissChili6d02af42021-08-05 19:49:01 -0700277
278 OKAY();
swissChili67bdf282021-06-06 18:46:08 -0700279}
280
swissChilifc5c9412021-08-08 19:08:26 -0700281struct error walk_and_alloc(struct environment *env, struct local *local, value_t *bp, bool quoted)
swissChili67bdf282021-06-06 18:46:08 -0700282{
swissChilifc5c9412021-08-08 19:08:26 -0700283 // Note: this kind of sucks. Some of the quote-handling code is
284 // duplicated here and compile_expression. TODO: refactor
285 // eventually.
286
swissChili36f2c692021-08-08 14:31:44 -0700287 E_INIT();
288
289 value_t body = *bp;
290
swissChili67bdf282021-06-06 18:46:08 -0700291 if (!listp(body))
swissChili36f2c692021-08-08 14:31:44 -0700292 OKAY();
swissChili67bdf282021-06-06 18:46:08 -0700293
294 value_t args = cdr(body);
295
swissChilifc5c9412021-08-08 19:08:26 -0700296 if (!quoted && symstreq(car(body), "let1"))
swissChili67bdf282021-06-06 18:46:08 -0700297 {
298 int slot = local_alloc(local);
299
300 value_t expr = cdr(args);
swissChilif1ba8c12021-07-02 18:45:38 -0700301 for (; !nilp(expr); expr = cdr(expr))
302 {
swissChilifc5c9412021-08-08 19:08:26 -0700303 walk_and_alloc(env, local, carref(expr), false);
swissChilif1ba8c12021-07-02 18:45:38 -0700304 }
swissChili67bdf282021-06-06 18:46:08 -0700305
306 local_free(local, slot);
307 }
swissChilifc5c9412021-08-08 19:08:26 -0700308 else if (!quoted && symstreq(car(body), "lambda"))
swissChilif1ba8c12021-07-02 18:45:38 -0700309 {
310 // We don't want to walk the lambda because it's another function. When
311 // the lambda is compiled it will be walked.
swissChili36f2c692021-08-08 14:31:44 -0700312 OKAY();
swissChilif1ba8c12021-07-02 18:45:38 -0700313 }
swissChili67bdf282021-06-06 18:46:08 -0700314 else
315 {
swissChilifc5c9412021-08-08 19:08:26 -0700316 if (quoted)
swissChili67bdf282021-06-06 18:46:08 -0700317 {
swissChilifc5c9412021-08-08 19:08:26 -0700318 if (symstreq(car(body), "unquote") || symstreq(car(body), "unquote-splice"))
319 {
320 for (value_t b = cdr(body); !nilp(b); b = cdr(b))
321 {
322 walk_and_alloc(env, local, carref(b), false);
323 }
324 }
swissChili36f2c692021-08-08 14:31:44 -0700325 }
326 else
327 {
swissChilifc5c9412021-08-08 19:08:26 -0700328 // Is this a macro?
329
330 struct function *mac = NULL;
331
332 if (symbolp(car(body)))
333 mac = find_function(env, (char *)(car(body) ^ SYMBOL_TAG));
334 else if (consp(car(body))) // consp, not just listp, since we don't care about nil.
335 walk_and_alloc(env, local, carref(body), false);
336
337 if (mac && mac->namespace == NS_MACRO)
swissChili36f2c692021-08-08 14:31:44 -0700338 {
swissChilifc5c9412021-08-08 19:08:26 -0700339 unsigned char pool = push_pool(0);
340 value_t form = call_list(mac, args);
341 pop_pool(pool);
342
343 add_to_pool(form);
344 *bp = form;
345
346 walk_and_alloc(env, local, bp, false);
347 }
348 else
349 {
350 bool should_quote = symstreq(car(body), "quote") || symstreq(car(body), "backquote");
351
352 for (; !nilp(args); args = cdr(args))
353 {
354 walk_and_alloc(env, local, carref(args), should_quote);
355 }
swissChili36f2c692021-08-08 14:31:44 -0700356 }
swissChili67bdf282021-06-06 18:46:08 -0700357 }
swissChili8fc5e2f2021-04-22 13:45:10 -0700358 }
swissChili36f2c692021-08-08 14:31:44 -0700359
360 OKAY();
swissChili8fc5e2f2021-04-22 13:45:10 -0700361}
362
swissChilif68671f2021-07-05 14:14:44 -0700363bool load(struct environment *env, char *path)
swissChili8fc5e2f2021-04-22 13:45:10 -0700364{
swissChilif68671f2021-07-05 14:14:44 -0700365 if (!file_exists(path))
366 return false;
367
368 add_load(env, path);
369
swissChilib8fd4712021-06-23 15:32:04 -0700370 unsigned char pool = make_pool();
371 unsigned char pop = push_pool(pool);
372
swissChilif68671f2021-07-05 14:14:44 -0700373 struct istream *is = new_fistream(path, false);
374 if (!is)
375 return false;
376
swissChili8fc5e2f2021-04-22 13:45:10 -0700377 value_t val;
swissChili53472e82021-05-08 16:06:32 -0700378
swissChilifc5c9412021-08-08 19:08:26 -0700379 struct error compile_error, read_error;
swissChili36f2c692021-08-08 14:31:44 -0700380
381 while (IS_OKAY((read_error = read1(is, &val))))
swissChili8fc5e2f2021-04-22 13:45:10 -0700382 {
swissChilifc5c9412021-08-08 19:08:26 -0700383 if (!IS_OKAY((compile_error = compile_tl(val, env, path))))
swissChili36f2c692021-08-08 14:31:44 -0700384 {
swissChilifc5c9412021-08-08 19:08:26 -0700385 ereport(compile_error);
swissChili36f2c692021-08-08 14:31:44 -0700386 goto failure;
387 }
388 }
389
390 if (!read_error.safe_state)
391 {
392 goto failure;
swissChili8fc5e2f2021-04-22 13:45:10 -0700393 }
swissChilif3e7f182021-04-20 13:57:22 -0700394
swissChilif68671f2021-07-05 14:14:44 -0700395 del_fistream(is);
swissChilib8fd4712021-06-23 15:32:04 -0700396 pop_pool(pop);
397
swissChilif68671f2021-07-05 14:14:44 -0700398 return true;
swissChili36f2c692021-08-08 14:31:44 -0700399
400failure:
401 del_fistream(is);
402 pop_pool(pool);
403
404 return false;
swissChilif68671f2021-07-05 14:14:44 -0700405}
406
swissChili7e1393c2021-07-07 12:59:12 -0700407value_t load_relative(struct environment *env, char *to, value_t name)
408{
409 if (!stringp(name))
410 return nil;
411
412 char *new_path = (char *)(name ^ STRING_TAG);
413 char *relative_to = strdup(to);
414 char full_path[512];
415
416 snprintf(full_path, 512, "%s/%s", dirname(relative_to), new_path);
417
swissChilic0acce42022-07-31 13:38:17 -0700418 free(relative_to);
419
swissChili7e1393c2021-07-07 12:59:12 -0700420 if (load(env, full_path))
421 return t;
422 else
423 return nil;
424}
425
swissChili6d02af42021-08-05 19:49:01 -0700426struct error compile_file(char *filename, struct environment **e)
swissChilif68671f2021-07-05 14:14:44 -0700427{
swissChili6d02af42021-08-05 19:49:01 -0700428 E_INIT();
429
swissChilif68671f2021-07-05 14:14:44 -0700430 value_t val;
swissChili7e1393c2021-07-07 12:59:12 -0700431 struct environment *env = malloc(sizeof(struct environment));
432 env->first = NULL;
433 env->first_loaded = NULL;
swissChilif68671f2021-07-05 14:14:44 -0700434
swissChili7e1393c2021-07-07 12:59:12 -0700435 add_load(env, filename);
swissChili6d02af42021-08-05 19:49:01 -0700436 TRY(load_std(env));
swissChilif68671f2021-07-05 14:14:44 -0700437
swissChili7e1393c2021-07-07 12:59:12 -0700438 bool ok_ = load(env, filename);
swissChilif68671f2021-07-05 14:14:44 -0700439
swissChili6d02af42021-08-05 19:49:01 -0700440 if (!ok_)
441 {
442 free(env);
swissChili1e8b7562021-12-22 21:22:57 -0800443 NEARFL(filename, 1);
swissChili6d02af42021-08-05 19:49:01 -0700444 THROWSAFE(ENOTFOUND);
445 }
swissChilif68671f2021-07-05 14:14:44 -0700446
swissChili6d02af42021-08-05 19:49:01 -0700447 *e = env;
448
449 OKAY();
swissChilica107a02021-04-14 12:07:30 -0700450}
swissChilib3ca4fb2021-04-20 10:33:00 -0700451
swissChili53472e82021-05-08 16:06:32 -0700452int nextpc(struct local *local, dasm_State **Dst)
swissChilib3ca4fb2021-04-20 10:33:00 -0700453{
swissChili53472e82021-05-08 16:06:32 -0700454 int n = local->nextpc++;
455 if (n > local->npc)
456 {
457 local->npc += 16;
458 dasm_growpc(Dst, local->npc);
459 }
460 return n;
461}
462
swissChili6d02af42021-08-05 19:49:01 -0700463struct error compile_backquote(struct environment *env, struct local *local,
464 value_t val, dasm_State **Dst)
swissChili6b47b6d2021-06-30 22:08:55 -0700465{
swissChili6d02af42021-08-05 19:49:01 -0700466 E_INIT();
467
swissChili6b47b6d2021-06-30 22:08:55 -0700468 if (!listp(val))
469 {
470 | mov eax, (val);
471 }
472 else
473 {
swissChili7e1393c2021-07-07 12:59:12 -0700474 value_t fsym = car(val), args = cdr(val);
swissChili9d151e62021-08-04 13:11:45 -0700475 int nargs = length(args),
476 n = length(val);
swissChili6b47b6d2021-06-30 22:08:55 -0700477
swissChili6d02af42021-08-05 19:49:01 -0700478 NEARVAL(val);
479
swissChili9d151e62021-08-04 13:11:45 -0700480 if (symstreq(fsym, "unquote"))
481 {
482 if (nargs != 1)
483 {
swissChili6d02af42021-08-05 19:49:01 -0700484 THROW(EARGS, "unquote (or ,) takes exactly 1 argument");
swissChili9d151e62021-08-04 13:11:45 -0700485 }
486
swissChili6d02af42021-08-05 19:49:01 -0700487 TRY(compile_expression(env, local, car(args), false, Dst));
swissChili9d151e62021-08-04 13:11:45 -0700488 }
489 else
490 {
491 | push nil;
492
493 for (int i = n - 1; i >= 0; i--)
494 {
swissChilia7568dc2021-08-08 16:52:52 -0700495 value_t v = elt(val, i);
swissChili9d151e62021-08-04 13:11:45 -0700496
swissChilia7568dc2021-08-08 16:52:52 -0700497 if (listp(v) && symstreq(car(v), "unquote-splice"))
498 {
499 NEARVAL(v);
500
501 if (length(v) != 2)
502 {
503 THROW(EARGS, "unquote-splice (or ,@) takes exactly 1 argument");
504 }
505
506 value_t expr = car(cdr(v));
507
swissChilia7568dc2021-08-08 16:52:52 -0700508 TRY(compile_expression(env, local, expr, false, Dst));
509 | push eax;
510 | call_extern merge2;
511 | add esp, 8;
512 | push eax;
513 }
514 else
515 {
516 TRY(compile_backquote(env, local, v, Dst));
517 | push eax;
518 | call_extern cons;
519 | add esp, 8;
520
521 // Remove unnecessary pop
522 | push eax;
523 }
swissChili9d151e62021-08-04 13:11:45 -0700524 }
swissChilia89ee442021-08-04 20:54:51 -0700525 | pop eax;
swissChili9d151e62021-08-04 13:11:45 -0700526 }
swissChili6b47b6d2021-06-30 22:08:55 -0700527 }
swissChili6d02af42021-08-05 19:49:01 -0700528
529 OKAY();
swissChili6b47b6d2021-06-30 22:08:55 -0700530}
531
swissChili7e1393c2021-07-07 12:59:12 -0700532value_t eval(struct environment *env, value_t form)
533{
534 // Eval!
535 value_t function = cons(nil, cons(form, nil));
536
537 struct local local;
538 struct args *args;
539
swissChili6d02af42021-08-05 19:49:01 -0700540 dasm_State *d;
541 struct error err;
542
543 if (!IS_OKAY((err = compile_function(function, NS_ANONYMOUS, env, &local, NULL,
544 &args, NULL, "/", &d))))
545 {
546 ereport(err);
547 return nil;
548 }
swissChili7e1393c2021-07-07 12:59:12 -0700549
550 del_local(&local);
551
552 value_t (*f)() = link_program(&d);
553 return f();
554}
555
swissChili6d02af42021-08-05 19:49:01 -0700556struct error compile_variable(struct variable *v, dasm_State *Dst)
swissChiliddc97542021-07-04 11:47:42 -0700557{
swissChili6d02af42021-08-05 19:49:01 -0700558 E_INIT();
swissChiliddc97542021-07-04 11:47:42 -0700559 switch (v->type)
560 {
561 case V_ARGUMENT:
swissChili7e1393c2021-07-07 12:59:12 -0700562 | mov eax, dword[ebp + (value_size * (v->number + 2))];
swissChiliddc97542021-07-04 11:47:42 -0700563 break;
564 case V_BOUND:
swissChili7e1393c2021-07-07 12:59:12 -0700565 | mov eax, dword[ebp - ((v->number + 1) * value_size)];
swissChiliddc97542021-07-04 11:47:42 -0700566 break;
567 case V_FREE:
568 // edi is the closure context pointer
swissChili7e1393c2021-07-07 12:59:12 -0700569 | mov eax, dword[edi + (v->number * value_size)];
swissChiliddc97542021-07-04 11:47:42 -0700570 break;
571 default:
swissChili6d02af42021-08-05 19:49:01 -0700572 THROW(EUNIMPL, "Sorry, can only access V_ARGUMENT, V_BOUND, and V_FREE vars");
swissChiliddc97542021-07-04 11:47:42 -0700573 }
swissChili6d02af42021-08-05 19:49:01 -0700574 OKAY();
swissChiliddc97542021-07-04 11:47:42 -0700575}
576
swissChili6d02af42021-08-05 19:49:01 -0700577struct error compile_expression(struct environment *env, struct local *local,
578 value_t val, bool tail, dasm_State **Dst)
swissChili53472e82021-05-08 16:06:32 -0700579{
swissChili6d02af42021-08-05 19:49:01 -0700580 E_INIT();
581
582 NEARVAL(val);
583
swissChili7e1393c2021-07-07 12:59:12 -0700584 if (symstreq(val, "nil") || nilp(val))
swissChili53472e82021-05-08 16:06:32 -0700585 {
586 | mov eax, (nil);
587 }
swissChili923b5362021-05-09 20:31:43 -0700588 else if (symstreq(val, "t"))
589 {
590 | mov eax, (t);
591 }
592 else if (integerp(val) || stringp(val))
swissChilib3ca4fb2021-04-20 10:33:00 -0700593 {
594 | mov eax, val;
595 }
swissChili53472e82021-05-08 16:06:32 -0700596 else if (listp(val))
swissChilib3ca4fb2021-04-20 10:33:00 -0700597 {
swissChili53472e82021-05-08 16:06:32 -0700598 value_t fsym = car(val);
599 value_t args = cdr(val);
600 int nargs = length(args);
swissChilib3ca4fb2021-04-20 10:33:00 -0700601
swissChili53472e82021-05-08 16:06:32 -0700602 if (!symbolp(fsym))
swissChilif3e7f182021-04-20 13:57:22 -0700603 {
swissChili6d02af42021-08-05 19:49:01 -0700604 THROW(EEXPECTED, "Function name must be a symbol");
swissChilif3e7f182021-04-20 13:57:22 -0700605 }
606
swissChili53472e82021-05-08 16:06:32 -0700607 if (symstreq(fsym, "if"))
swissChilib3ca4fb2021-04-20 10:33:00 -0700608 {
swissChili53472e82021-05-08 16:06:32 -0700609 if (nargs < 2 || nargs > 3)
swissChili6d02af42021-08-05 19:49:01 -0700610 {
611 THROW(EARGS, "Must give at least 2 arguments to if");
612 }
swissChilib3ca4fb2021-04-20 10:33:00 -0700613
swissChili6d02af42021-08-05 19:49:01 -0700614 TRY(compile_expression(env, local, car(args), false, Dst));
swissChili53472e82021-05-08 16:06:32 -0700615 int false_label = nextpc(local, Dst),
616 after_label = nextpc(local, Dst);
617
618 // result is in eax
619 | cmp eax, (nil);
swissChili484295d2021-07-09 21:25:55 -0700620 | je =>false_label;
swissChili53472e82021-05-08 16:06:32 -0700621
swissChili6d02af42021-08-05 19:49:01 -0700622 TRY(compile_expression(env, local, elt(args, 1), tail, Dst));
swissChili484295d2021-07-09 21:25:55 -0700623 | jmp =>after_label;
624 |=>false_label:;
swissChili53472e82021-05-08 16:06:32 -0700625 if (nargs == 3)
swissChili6d02af42021-08-05 19:49:01 -0700626 TRY(compile_expression(env, local, elt(args, 2), tail, Dst));
swissChili484295d2021-07-09 21:25:55 -0700627 |=>after_label:;
swissChili53472e82021-05-08 16:06:32 -0700628 }
swissChilia89ee442021-08-04 20:54:51 -0700629 else if (symstreq(fsym, "and") || symstreq(fsym, "or"))
630 {
631 bool or = symstreq(fsym, "or"); // false == and
632
633 // Boolean and and or, short circuit like &&/||
634 if (nargs < 1)
635 {
swissChili6d02af42021-08-05 19:49:01 -0700636 THROW(EARGS, "and & or require at least 1 argument.");
swissChilia89ee442021-08-04 20:54:51 -0700637 }
638
639 int after = nextpc(local, Dst);
640
641 for (; !nilp(args); args = cdr(args))
642 {
swissChili6d02af42021-08-05 19:49:01 -0700643 NEARVAL(args);
644
645 TRY(compile_expression(env, local, car(args), false, Dst));
swissChilia89ee442021-08-04 20:54:51 -0700646 if (!nilp(cdr(args)))
647 {
648 | cmp eax, nil;
649 if (or)
650 {
swissChilifbf525f2021-08-04 21:28:07 -0700651 | jne =>after;
swissChilia89ee442021-08-04 20:54:51 -0700652 }
653 else
654 {
swissChilifbf525f2021-08-04 21:28:07 -0700655 | je =>after;
swissChilia89ee442021-08-04 20:54:51 -0700656 }
657 }
658 }
659
660 |=>after:;
661 }
swissChilif68671f2021-07-05 14:14:44 -0700662 else if (symstreq(fsym, "progn"))
663 {
664 for (value_t val = args; !nilp(val); val = cdr(val))
665 {
swissChili6d02af42021-08-05 19:49:01 -0700666 NEARVAL(args);
667
swissChilib51552c2021-08-03 10:23:37 -0700668 bool t = tail && nilp(cdr(val));
swissChili6d02af42021-08-05 19:49:01 -0700669 TRY(compile_expression(env, local, car(val), t, Dst));
swissChilif68671f2021-07-05 14:14:44 -0700670 }
671 }
swissChili67bdf282021-06-06 18:46:08 -0700672 else if (symstreq(fsym, "let1"))
673 {
674 if (nargs < 2)
675 {
swissChili6d02af42021-08-05 19:49:01 -0700676 THROW(EARGS, "Must give at least 2 arguments to let1");
swissChili67bdf282021-06-06 18:46:08 -0700677 }
678 value_t binding = car(args);
679 value_t rest = cdr(args);
680
swissChili6d02af42021-08-05 19:49:01 -0700681 NEARVAL(binding);
swissChili67bdf282021-06-06 18:46:08 -0700682 if (length(binding) != 2)
683 {
swissChili6d02af42021-08-05 19:49:01 -0700684 THROW(EARGS, "Binding list in let1 must contain exactly two entries");
swissChili67bdf282021-06-06 18:46:08 -0700685 }
686
swissChili6d02af42021-08-05 19:49:01 -0700687 NEARVAL(rest);
688
swissChili67bdf282021-06-06 18:46:08 -0700689 value_t name = car(binding);
690 value_t value = car(cdr(binding));
691
swissChili6d02af42021-08-05 19:49:01 -0700692 TRY(compile_expression(env, local, value, false, Dst));
swissChili67bdf282021-06-06 18:46:08 -0700693
694 int i = local_alloc(local);
695
696 add_variable(local, V_BOUND, (char *)(name ^ SYMBOL_TAG), i);
697
swissChili7e1393c2021-07-07 12:59:12 -0700698 | mov dword[ebp - ((i + 1) * value_size)], eax;
swissChili67bdf282021-06-06 18:46:08 -0700699
700 for (; !nilp(rest); rest = cdr(rest))
701 {
swissChilib51552c2021-08-03 10:23:37 -0700702 bool t = tail && nilp(cdr(rest));
swissChili6d02af42021-08-05 19:49:01 -0700703 NEARVAL(rest);
704 TRY(compile_expression(env, local, car(rest), t, Dst));
swissChili67bdf282021-06-06 18:46:08 -0700705 }
706
707 local_free(local, i);
708 }
swissChilie9fec8b2021-06-22 13:59:33 -0700709 else if (symstreq(fsym, "gc"))
710 {
711 if (nargs)
712 {
swissChili6d02af42021-08-05 19:49:01 -0700713 THROW(EARGS, "gc takes no arguments");
swissChilie9fec8b2021-06-22 13:59:33 -0700714 }
715
716 | run_gc;
717 }
swissChili6b47b6d2021-06-30 22:08:55 -0700718 else if (symstreq(fsym, "quote"))
719 {
720 if (nargs != 1)
swissChili6d02af42021-08-05 19:49:01 -0700721 THROW(EARGS, "quote should take exactly 1 argument");
swissChili6b47b6d2021-06-30 22:08:55 -0700722
723 // Simple!
724 | mov eax, (car(args));
725 }
726 else if (symstreq(fsym, "backquote"))
727 {
728 if (nargs != 1)
swissChili6d02af42021-08-05 19:49:01 -0700729 THROW(EARGS, "backquote should take exactly 1 argument");
swissChili6b47b6d2021-06-30 22:08:55 -0700730
swissChili6d02af42021-08-05 19:49:01 -0700731 TRY(compile_backquote(env, local, car(args), Dst));
swissChili6b47b6d2021-06-30 22:08:55 -0700732 }
swissChili74348422021-07-04 13:23:24 -0700733 else if (symstreq(fsym, "function"))
734 {
735 if (nargs != 1)
736 {
swissChili6d02af42021-08-05 19:49:01 -0700737 THROW(EARGS, "function should take exactly 1 argument");
swissChili74348422021-07-04 13:23:24 -0700738 }
739
swissChili6d02af42021-08-05 19:49:01 -0700740 NEARVAL(args);
swissChili74348422021-07-04 13:23:24 -0700741 if (!symbolp(car(args)))
742 {
swissChili6d02af42021-08-05 19:49:01 -0700743 THROW(EINVALID, "argument to function should be a symbol resolvable at "
swissChili7e1393c2021-07-07 12:59:12 -0700744 "compile time");
swissChili74348422021-07-04 13:23:24 -0700745 }
746
swissChilia89ee442021-08-04 20:54:51 -0700747 char *name = (char *)(car(args) ^ SYMBOL_TAG);
swissChili74348422021-07-04 13:23:24 -0700748
swissChilia89ee442021-08-04 20:54:51 -0700749 if (!strcmp(name, local->current_function_name))
750 {
751 | push 0;
752 | push local->args;
753 | push <1;
754 | call_extern create_closure;
755 }
756 else
757 {
758 struct function *f = find_function(env, name);
759
760 if (!f)
761 {
swissChili6d02af42021-08-05 19:49:01 -0700762 THROW(EINVALID, "Function `%s' does not exist", (char *)(car(args) ^ SYMBOL_TAG));
swissChilia89ee442021-08-04 20:54:51 -0700763 }
764 value_t closure = create_closure(f->code_ptr, f->args, 0);
765 | mov eax, (closure);
766 }
swissChili74348422021-07-04 13:23:24 -0700767 }
swissChili6b47b6d2021-06-30 22:08:55 -0700768 else if (symstreq(fsym, "list"))
769 {
swissChili484295d2021-07-09 21:25:55 -0700770 | push (nil);
swissChili6b47b6d2021-06-30 22:08:55 -0700771
772 for (int i = nargs - 1; i >= 0; i--)
773 {
swissChili6d02af42021-08-05 19:49:01 -0700774 TRY(compile_expression(env, local, elt(args, i), false, Dst));
swissChili6b47b6d2021-06-30 22:08:55 -0700775
swissChili6b47b6d2021-06-30 22:08:55 -0700776 | push eax;
swissChili53e7cd12021-08-02 21:55:53 -0700777 | call_extern cons;
swissChili6b47b6d2021-06-30 22:08:55 -0700778 | add esp, (2 * value_size);
swissChili6b47b6d2021-06-30 22:08:55 -0700779 | push eax;
780 }
swissChili6d02af42021-08-05 19:49:01 -0700781 | pop eax;
swissChili6b47b6d2021-06-30 22:08:55 -0700782 }
swissChiliddc97542021-07-04 11:47:42 -0700783 else if (symstreq(fsym, "lambda"))
784 {
785 // Compile the function with this as the parent scope
786 struct local new_local;
swissChilic0acce42022-07-31 13:38:17 -0700787 struct args *nargs_out;
swissChili6d02af42021-08-05 19:49:01 -0700788 dasm_State *d;
789 TRY(compile_function(
790 args, NS_ANONYMOUS, env, &new_local, local, &nargs_out,
791 "recurse", local->current_file_path, &d));
swissChiliddc97542021-07-04 11:47:42 -0700792
793 // Link the function
swissChilif68671f2021-07-05 14:14:44 -0700794 void *func_ptr = link_program(&d);
swissChiliddc97542021-07-04 11:47:42 -0700795
796 // Create a closure object with the correct number of captures at
797 // runtime
swissChili484295d2021-07-09 21:25:55 -0700798 | push (new_local.num_closure_slots);
799 | push (nargs_out);
800 | push (func_ptr);
swissChili53e7cd12021-08-02 21:55:53 -0700801 | call_extern create_closure;
swissChiliddc97542021-07-04 11:47:42 -0700802 | add esp, 12;
803
804 // Walk the generated local scope for V_FREE variables, since each
805 // of these exists in our scope (or higher), evaluate it and set it
806 // as a member of the lambda capture.
807
808 for (struct variable *var = new_local.first; var; var = var->prev)
809 {
810 if (var->type == V_FREE)
811 {
812 // Closure in eax
813 | push eax;
814 // Variable now in eax
swissChili6d02af42021-08-05 19:49:01 -0700815 TRY(compile_variable(find_variable(local, var->name), Dst));
swissChiliddc97542021-07-04 11:47:42 -0700816 | push eax;
817
swissChiliddc97542021-07-04 11:47:42 -0700818 // The capture offset
swissChili484295d2021-07-09 21:25:55 -0700819 | push (var->number);
swissChili53e7cd12021-08-02 21:55:53 -0700820 | call_extern set_closure_capture_variable;
swissChiliddc97542021-07-04 11:47:42 -0700821 // Skip the value and index
822 | add esp, 8;
823 // Pop the closure back in to eax
824 | pop eax;
825 }
826 }
827
828 // Closure is still in eax
829
830 dasm_free(&d);
swissChili708d4c42021-07-04 17:40:07 -0700831 del_local(&new_local);
swissChiliddc97542021-07-04 11:47:42 -0700832 }
swissChili7e1393c2021-07-07 12:59:12 -0700833 else if (symstreq(fsym, "eval"))
834 {
835 if (nargs != 1)
836 {
swissChili6d02af42021-08-05 19:49:01 -0700837 THROW(EARGS, "eval takes exactly 1 argument");
swissChili7e1393c2021-07-07 12:59:12 -0700838 }
839
swissChili6d02af42021-08-05 19:49:01 -0700840 TRY(compile_expression(env, local, car(args), false, Dst));
swissChili7e1393c2021-07-07 12:59:12 -0700841 | push eax;
swissChili484295d2021-07-09 21:25:55 -0700842 | push (env);
swissChili53e7cd12021-08-02 21:55:53 -0700843 | call_extern eval;
swissChili7e1393c2021-07-07 12:59:12 -0700844 }
845 else if (symstreq(fsym, "load"))
846 {
847 if (nargs != 1)
848 {
swissChili6d02af42021-08-05 19:49:01 -0700849 THROW(EARGS, "load takes exactly 1 argument, %d given", nargs);
swissChili7e1393c2021-07-07 12:59:12 -0700850 }
851
swissChili6d02af42021-08-05 19:49:01 -0700852 TRY(compile_expression(env, local, car(args), false, Dst));
swissChili7e1393c2021-07-07 12:59:12 -0700853 | push eax;
swissChili484295d2021-07-09 21:25:55 -0700854 | push (local->current_file_path);
855 | push (env);
swissChili53e7cd12021-08-02 21:55:53 -0700856 | call_extern load_relative;
swissChili7e1393c2021-07-07 12:59:12 -0700857 }
swissChili53472e82021-05-08 16:06:32 -0700858 else
859 {
swissChili74348422021-07-04 13:23:24 -0700860 char *name = (char *)(fsym ^ SYMBOL_TAG);
861 struct function *func = find_function(env, name);
swissChili7e1393c2021-07-07 12:59:12 -0700862
swissChili74348422021-07-04 13:23:24 -0700863 bool is_recursive = false;
swissChili15f1cae2021-07-05 19:08:47 -0700864 struct args *nargs_needed = NULL;
swissChili53472e82021-05-08 16:06:32 -0700865
swissChili53e7cd12021-08-02 21:55:53 -0700866 // The number of arguments actually passed on the stack,
867 // i.e. all varargs are 1.
swissChilib51552c2021-08-03 10:23:37 -0700868 int real_nargs;
swissChili53e7cd12021-08-02 21:55:53 -0700869
swissChili7e1393c2021-07-07 12:59:12 -0700870 if (local->current_function_name &&
871 symstreq(fsym, local->current_function_name))
swissChilif1ba8c12021-07-02 18:45:38 -0700872 {
swissChili74348422021-07-04 13:23:24 -0700873 is_recursive = true;
swissChili15f1cae2021-07-05 19:08:47 -0700874 nargs_needed = local->args;
swissChili74348422021-07-04 13:23:24 -0700875 }
876 else
877 {
878 if (func == NULL)
879 {
swissChili6d02af42021-08-05 19:49:01 -0700880 THROW(EINVALID, "Function %s undefined", name);
swissChili74348422021-07-04 13:23:24 -0700881 }
882
swissChili15f1cae2021-07-05 19:08:47 -0700883 nargs_needed = func->args;
swissChili74348422021-07-04 13:23:24 -0700884 }
885
swissChili15f1cae2021-07-05 19:08:47 -0700886 if (!are_args_acceptable(nargs_needed, nargs))
swissChili74348422021-07-04 13:23:24 -0700887 {
swissChili6d02af42021-08-05 19:49:01 -0700888 THROW(EARGS,
889 "wrong number of args in function call: %s, "
890 "want %d args but given %d\n",
891 name, nargs_needed->num_required, nargs);
swissChilif1ba8c12021-07-02 18:45:38 -0700892 }
swissChili53472e82021-05-08 16:06:32 -0700893
swissChili53e7cd12021-08-02 21:55:53 -0700894 int total_taken = nargs_needed->num_optional +
895 nargs_needed->num_required;
896
swissChilib51552c2021-08-03 10:23:37 -0700897 real_nargs = total_taken + (nargs_needed->variadic ? 1 : 0);
swissChili53e7cd12021-08-02 21:55:53 -0700898
swissChili74348422021-07-04 13:23:24 -0700899 if (is_recursive || func->namespace == NS_FUNCTION)
swissChili53472e82021-05-08 16:06:32 -0700900 {
swissChili15f1cae2021-07-05 19:08:47 -0700901 int nargs = length(args);
902
swissChili484295d2021-07-09 21:25:55 -0700903 int line = cons_line(val);
904 char *file = cons_file(val);
905
906 if (nargs_needed->variadic)
swissChili15f1cae2021-07-05 19:08:47 -0700907 {
swissChili484295d2021-07-09 21:25:55 -0700908 | push (nil);
909 }
910
911 if (nargs > total_taken && nargs_needed->variadic)
912 {
913 // We are passing varargs, which means we need to make a list
914
915 for (int i = nargs - 1; i >= total_taken; i--)
916 {
swissChili6d02af42021-08-05 19:49:01 -0700917 TRY(compile_expression(env, local, elt(args, i), false, Dst));
swissChili484295d2021-07-09 21:25:55 -0700918 | push eax;
swissChili53e7cd12021-08-02 21:55:53 -0700919 | call_extern cons;
swissChili484295d2021-07-09 21:25:55 -0700920 | add esp, 8;
921 | push eax;
922 }
swissChili15f1cae2021-07-05 19:08:47 -0700923 }
924
swissChili7e1393c2021-07-07 12:59:12 -0700925 for (int i = nargs_needed->num_optional - 1;
926 i >= nargs - nargs_needed->num_required; i--)
swissChili15f1cae2021-07-05 19:08:47 -0700927 {
928 // Push the default optional values
swissChili484295d2021-07-09 21:25:55 -0700929 | push (nargs_needed->optional_arguments[i].value);
swissChili15f1cae2021-07-05 19:08:47 -0700930 }
931
swissChili484295d2021-07-09 21:25:55 -0700932 int min = MIN(nargs, total_taken);
933
934 for (int i = min - 1; i >= 0; i--)
swissChili2999dd12021-07-02 14:19:53 -0700935 {
swissChili6d02af42021-08-05 19:49:01 -0700936 TRY(compile_expression(env, local, elt(args, i), false, Dst));
swissChili2999dd12021-07-02 14:19:53 -0700937 | push eax;
938 }
swissChili15f1cae2021-07-05 19:08:47 -0700939
swissChili74348422021-07-04 13:23:24 -0700940 if (is_recursive)
941 {
swissChilib51552c2021-08-03 10:23:37 -0700942 if (tail)
943 {
944 // Move all the arguments pushed to the stack
945 // back up to the argument bit of the stack.
946
947 for (int i = 0; i < real_nargs; i++)
948 {
949 | pop eax;
950 | mov dword[ebp + (value_size * (i + 2))], eax;
951 }
952
953 // Jmp back to start
954 | mov esp, ebp;
955 | pop ebp;
956 | jmp <1;
957 }
958 else
959 {
960 | call <1;
961 }
swissChili74348422021-07-04 13:23:24 -0700962 }
963 else
964 {
swissChili484295d2021-07-09 21:25:55 -0700965 // | mov ebx, (func->code_addr);
966 | call_extern func->code_addr;
swissChili74348422021-07-04 13:23:24 -0700967 }
swissChili53e7cd12021-08-02 21:55:53 -0700968 | add esp, (real_nargs * value_size);
swissChili2999dd12021-07-02 14:19:53 -0700969 // result in eax
970 }
971 else if (func->namespace == NS_MACRO)
972 {
swissChili7e1393c2021-07-07 12:59:12 -0700973 // Make sure that the stuff allocated by the macro isn't in a
974 // pool
swissChilif68671f2021-07-05 14:14:44 -0700975 unsigned char pool = push_pool(0);
976
swissChili2999dd12021-07-02 14:19:53 -0700977 value_t expanded_to = call_list(func, args);
978
swissChilif68671f2021-07-05 14:14:44 -0700979 pop_pool(pool);
980
swissChili6d02af42021-08-05 19:49:01 -0700981 TRY(compile_expression(env, local, expanded_to, false, Dst));
swissChili2999dd12021-07-02 14:19:53 -0700982 }
swissChili53472e82021-05-08 16:06:32 -0700983 }
swissChilib3ca4fb2021-04-20 10:33:00 -0700984 }
swissChili923b5362021-05-09 20:31:43 -0700985 else if (symbolp(val))
986 {
swissChili7e1393c2021-07-07 12:59:12 -0700987 if (symstreq(val, "+current-file+"))
swissChilie9fec8b2021-06-22 13:59:33 -0700988 {
swissChili7e1393c2021-07-07 12:59:12 -0700989 value_t file_name_val = strval(local->current_file_path);
990
991 | mov eax, (file_name_val);
swissChilie9fec8b2021-06-22 13:59:33 -0700992 }
swissChili04d94162022-07-30 21:46:49 -0700993 else if (symstreq(val, "+current-env+"))
994 {
995 // TODO: we return this as a raw "integer", which is a bad
996 // idea. Once classes are added this needs to be wrapped
997 // in a class.
998 | mov eax, (env);
999 }
swissChili7e1393c2021-07-07 12:59:12 -07001000 else
1001 {
1002 struct variable *v =
1003 find_variable(local, (char *)(val ^ SYMBOL_TAG));
swissChili923b5362021-05-09 20:31:43 -07001004
swissChili7e1393c2021-07-07 12:59:12 -07001005 if (!v)
1006 {
swissChili6d02af42021-08-05 19:49:01 -07001007 THROW(EINVALID, "Variable `%s' unbound", (char *)(val ^ SYMBOL_TAG));
swissChili7e1393c2021-07-07 12:59:12 -07001008 }
1009
swissChili6d02af42021-08-05 19:49:01 -07001010 TRY(compile_variable(v, Dst));
swissChili7e1393c2021-07-07 12:59:12 -07001011 }
swissChili923b5362021-05-09 20:31:43 -07001012 }
swissChilia89ee442021-08-04 20:54:51 -07001013 else if (closurep(val))
1014 {
1015 | mov eax, val;
1016 }
1017 else
1018 {
1019 printval(val, 1);
swissChili6d02af42021-08-05 19:49:01 -07001020 THROW(EUNIMPL, "Don't know how to compile this, sorry.");
swissChilia89ee442021-08-04 20:54:51 -07001021 }
swissChili6d02af42021-08-05 19:49:01 -07001022
1023 OKAY();
swissChilib3ca4fb2021-04-20 10:33:00 -07001024}
swissChilif3e7f182021-04-20 13:57:22 -07001025
swissChili923b5362021-05-09 20:31:43 -07001026struct variable *add_variable(struct local *local, enum var_type type,
1027 char *name, int number)
1028{
1029 struct variable *var = malloc(sizeof(struct variable));
1030 var->prev = local->first;
1031 var->type = type;
1032 var->name = name;
1033 var->number = number;
1034
1035 local->first = var;
1036
1037 return var;
1038}
1039
1040void destroy_local(struct local *local)
1041{
1042 for (struct variable *v = local->first; v;)
1043 {
1044 struct variable *t = v;
1045 v = v->prev;
1046 free(t);
1047 }
1048}
1049
1050struct variable *find_variable(struct local *local, char *name)
1051{
1052 struct variable *v = local->first;
1053
1054 for (; v && strcmp(v->name, name) != 0; v = v->prev)
swissChili7e1393c2021-07-07 12:59:12 -07001055 {
1056 }
swissChili923b5362021-05-09 20:31:43 -07001057
swissChiliddc97542021-07-04 11:47:42 -07001058 if (!v)
1059 {
1060 if (local->parent)
1061 {
1062 v = find_variable(local->parent, name);
1063
1064 if (v)
1065 {
swissChili15f1cae2021-07-05 19:08:47 -07001066 // We found this in a parent scope, add it as a V_FREE variable
1067 // to skip the search.
swissChili7e1393c2021-07-07 12:59:12 -07001068 v = add_variable(local, V_FREE, name,
1069 local->num_closure_slots++);
swissChiliddc97542021-07-04 11:47:42 -07001070 }
1071 }
1072 }
swissChili923b5362021-05-09 20:31:43 -07001073 return v;
1074}
swissChili2999dd12021-07-02 14:19:53 -07001075
swissChiliddc97542021-07-04 11:47:42 -07001076extern value_t _call_list(void *addr, value_t list, value_t *edi);
swissChili2999dd12021-07-02 14:19:53 -07001077
swissChili7e1393c2021-07-07 12:59:12 -07001078value_t call_list_args(void *code_ptr, struct args *args, value_t list,
1079 void *data)
swissChili2999dd12021-07-02 14:19:53 -07001080{
swissChili15f1cae2021-07-05 19:08:47 -07001081 list = deep_copy(list);
swissChili484295d2021-07-09 21:25:55 -07001082
swissChili15f1cae2021-07-05 19:08:47 -07001083 int nargs = length(list);
1084
swissChili484295d2021-07-09 21:25:55 -07001085 value_t *val = &list;
swissChili15f1cae2021-07-05 19:08:47 -07001086
1087 for (value_t i = list; !nilp(i); i = cdr(i))
1088 {
1089 val = cdrref(i);
1090 }
1091
1092 int total_required = args->num_required + args->num_optional;
1093
1094 if (nargs > total_required)
1095 {
1096 // Take the remainder of the list and put it as the last item in the
1097 // list.
1098 value_t trailing = cxdr(list, total_required);
1099 value_t last_item = cons(trailing, nil);
1100
1101 *cxdrref(&list, total_required) = last_item;
1102 }
1103 else if (nargs < total_required)
1104 {
1105 for (int i = nargs - args->num_required; i < args->num_optional; i++)
1106 {
1107 // Append the i-th defualt argument
1108 value_t appended = cons(args->optional_arguments[i].value, nil);
1109 *val = appended;
1110 val = cdrref(appended);
1111 }
1112 }
1113
1114 // We want to call this if we pass the correct # of arguments or less, just
1115 // not if we have already passed varargs. Appends a nil argument.
1116 if (nargs <= total_required)
1117 {
1118 // Enough real arguments but no variadic arguments. Pass a nil list.
1119 *val = cons(nil, nil);
1120 }
1121
1122 return _call_list(code_ptr, list, data);
1123}
1124
1125value_t call_list(struct function *fun, value_t list)
1126{
1127 return call_list_args(fun->code_ptr, fun->args, list, NULL);
swissChiliddc97542021-07-04 11:47:42 -07001128}
1129
1130value_t call_list_closure(struct closure *c, value_t list)
1131{
swissChili15f1cae2021-07-05 19:08:47 -07001132 return call_list_args(c->function, c->args, list, c->data);
1133}
1134
1135struct args *new_args()
1136{
1137 struct args *a = malloc(sizeof(struct args));
1138 a->num_optional = 0;
1139 a->num_required = 0;
1140 a->variadic = false;
1141
1142 return a;
1143}
1144
swissChili7e1393c2021-07-07 12:59:12 -07001145struct args *add_optional_arg(struct args *args, value_t name, value_t value)
swissChili15f1cae2021-07-05 19:08:47 -07001146{
1147 int i = args->num_optional++;
swissChili7e1393c2021-07-07 12:59:12 -07001148 args =
1149 realloc(args, sizeof(struct args) + sizeof(struct optional_argument) *
1150 args->num_optional);
swissChili15f1cae2021-07-05 19:08:47 -07001151
swissChili7e1393c2021-07-07 12:59:12 -07001152 args->optional_arguments[i] = (struct optional_argument){
1153 .value = value,
1154 .name = name,
swissChili15f1cae2021-07-05 19:08:47 -07001155 };
1156
1157 return args;
1158}
1159
1160bool are_args_acceptable(struct args *args, int number)
1161{
1162 if (args->variadic)
1163 {
1164 return number >= args->num_required;
1165 }
1166 else
1167 {
1168 return number >= args->num_required &&
swissChili7e1393c2021-07-07 12:59:12 -07001169 number <= args->num_required + args->num_optional;
swissChili15f1cae2021-07-05 19:08:47 -07001170 }
1171}
1172
swissChili6d02af42021-08-05 19:49:01 -07001173struct error list_to_args(struct environment *env, value_t list,
1174 struct local *local, struct args **a)
swissChili15f1cae2021-07-05 19:08:47 -07001175{
swissChili6d02af42021-08-05 19:49:01 -07001176 E_INIT();
1177
swissChili15f1cae2021-07-05 19:08:47 -07001178 struct args *args = new_args();
1179
1180 bool in_optional = false;
1181
1182 for (value_t i = list; !nilp(i); i = cdr(i))
1183 {
1184 value_t val = car(i);
swissChili6d02af42021-08-05 19:49:01 -07001185 NEARVAL(i);
1186
swissChili15f1cae2021-07-05 19:08:47 -07001187 if (symbolp(val))
1188 {
1189 if (!args->variadic && symstreq(val, "&"))
1190 {
1191 i = cdr(i);
1192 value_t name = car(i);
1193
1194 if (!symbolp(name))
1195 {
swissChili6d02af42021-08-05 19:49:01 -07001196 THROW(EEXPECTED, "You must provide a symbol after & in an argument list "
1197 "to bind the\n"
1198 "variadic arguments to.");
swissChili15f1cae2021-07-05 19:08:47 -07001199 }
1200
1201 args->variadic = true;
1202
1203 add_variable(local, V_ARGUMENT, (char *)(name ^ SYMBOL_TAG),
swissChili7e1393c2021-07-07 12:59:12 -07001204 args->num_optional + args->num_required);
swissChili15f1cae2021-07-05 19:08:47 -07001205
1206 continue;
1207 }
1208
1209 if (!in_optional)
1210 {
swissChili7e1393c2021-07-07 12:59:12 -07001211 add_variable(local, V_ARGUMENT, (char *)(val ^ SYMBOL_TAG),
1212 args->num_required++);
swissChili15f1cae2021-07-05 19:08:47 -07001213 }
1214 else
1215 {
1216 char *name = (char *)(val ^ SYMBOL_TAG);
1217 if (name[0] == '&')
1218 {
swissChili6d02af42021-08-05 19:49:01 -07001219 THROW(EINVALID, "Non-optional argument following optional arguments "
1220 "starts with a &\n"
1221 "did you mean to declare a variadic argument? If so "
1222 "leave a space\n"
1223 "between the & and name.");
swissChili15f1cae2021-07-05 19:08:47 -07001224 }
1225 else
1226 {
swissChili6d02af42021-08-05 19:49:01 -07001227 THROW(EINVALID, "Cannot define a non-optional argument after an "
1228 "optional one.");
swissChili15f1cae2021-07-05 19:08:47 -07001229 }
1230 }
1231 }
1232 else if (listp(val))
1233 {
swissChili6d02af42021-08-05 19:49:01 -07001234 NEARVAL(val);
1235
swissChili15f1cae2021-07-05 19:08:47 -07001236 in_optional = true;
1237 int len = length(val);
1238
1239 if (len != 2)
1240 {
swissChili6d02af42021-08-05 19:49:01 -07001241 THROW(EINVALID, "A list defining an optional value must be structured like "
1242 "(name expr)\n"
1243 "with exactly two arguments.");
swissChili15f1cae2021-07-05 19:08:47 -07001244 }
1245
1246 value_t name = car(val);
1247 value_t expr = car(cdr(val));
1248
1249 value_t function = cons(nil, cons(expr, nil));
1250
swissChili6d02af42021-08-05 19:49:01 -07001251 dasm_State *d;
1252 TRY(compile_function(function, NS_ANONYMOUS, env, NULL, NULL, NULL,
1253 NULL, local->current_file_path, &d));
swissChili15f1cae2021-07-05 19:08:47 -07001254
1255 // TODO: GC stack top!
1256 value_t (*compiled)() = link_program(&d);
1257
1258 value_t value = compiled();
1259 args = add_optional_arg(args, name, value);
1260
swissChili7e1393c2021-07-07 12:59:12 -07001261 add_variable(local, V_ARGUMENT, (char *)(name ^ SYMBOL_TAG),
1262 args->num_required + args->num_optional - 1);
swissChilic0acce42022-07-31 13:38:17 -07001263
1264 dasm_free(&d);
swissChili15f1cae2021-07-05 19:08:47 -07001265 }
1266 }
1267
swissChili6d02af42021-08-05 19:49:01 -07001268 *a = args;
1269 OKAY();
swissChili15f1cae2021-07-05 19:08:47 -07001270}
1271
1272void display_args(struct args *args)
1273{
1274 printf("Args object taking %d require arguments and %d optionals:\n",
swissChili7e1393c2021-07-07 12:59:12 -07001275 args->num_required, args->num_optional);
swissChili15f1cae2021-07-05 19:08:47 -07001276
1277 for (int i = 0; i < args->num_optional; i++)
1278 {
swissChili7e1393c2021-07-07 12:59:12 -07001279 printf(" %d\t%s\n", i,
1280 (char *)(args->optional_arguments[i].name ^ SYMBOL_TAG));
swissChili15f1cae2021-07-05 19:08:47 -07001281 printval(args->optional_arguments[i].value, 2);
1282 }
swissChili2999dd12021-07-02 14:19:53 -07001283}