blob: e0e4eff3ede5949f3867f60dfad8f438dbc82fdc [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{
swissChili80560312022-07-31 21:05:47 -0700534 gc_push_segment(&form, 1);
swissChili7e1393c2021-07-07 12:59:12 -0700535 // Eval!
536 value_t function = cons(nil, cons(form, nil));
537
swissChili80560312022-07-31 21:05:47 -0700538 gc_set_retained(0, function);
539
swissChili7e1393c2021-07-07 12:59:12 -0700540 struct local local;
541 struct args *args;
542
swissChili6d02af42021-08-05 19:49:01 -0700543 dasm_State *d;
544 struct error err;
545
546 if (!IS_OKAY((err = compile_function(function, NS_ANONYMOUS, env, &local, NULL,
547 &args, NULL, "/", &d))))
548 {
549 ereport(err);
550 return nil;
551 }
swissChili7e1393c2021-07-07 12:59:12 -0700552
553 del_local(&local);
554
555 value_t (*f)() = link_program(&d);
swissChili80560312022-07-31 21:05:47 -0700556
557 gc_prepare_call(0);
558 value_t val = f();
559
560 gc_pop_segment();
561
562 return val;
swissChili7e1393c2021-07-07 12:59:12 -0700563}
564
swissChili6d02af42021-08-05 19:49:01 -0700565struct error compile_variable(struct variable *v, dasm_State *Dst)
swissChiliddc97542021-07-04 11:47:42 -0700566{
swissChili6d02af42021-08-05 19:49:01 -0700567 E_INIT();
swissChiliddc97542021-07-04 11:47:42 -0700568 switch (v->type)
569 {
570 case V_ARGUMENT:
swissChili7e1393c2021-07-07 12:59:12 -0700571 | mov eax, dword[ebp + (value_size * (v->number + 2))];
swissChiliddc97542021-07-04 11:47:42 -0700572 break;
573 case V_BOUND:
swissChili7e1393c2021-07-07 12:59:12 -0700574 | mov eax, dword[ebp - ((v->number + 1) * value_size)];
swissChiliddc97542021-07-04 11:47:42 -0700575 break;
576 case V_FREE:
577 // edi is the closure context pointer
swissChili7e1393c2021-07-07 12:59:12 -0700578 | mov eax, dword[edi + (v->number * value_size)];
swissChiliddc97542021-07-04 11:47:42 -0700579 break;
580 default:
swissChili6d02af42021-08-05 19:49:01 -0700581 THROW(EUNIMPL, "Sorry, can only access V_ARGUMENT, V_BOUND, and V_FREE vars");
swissChiliddc97542021-07-04 11:47:42 -0700582 }
swissChili6d02af42021-08-05 19:49:01 -0700583 OKAY();
swissChiliddc97542021-07-04 11:47:42 -0700584}
585
swissChili6d02af42021-08-05 19:49:01 -0700586struct error compile_expression(struct environment *env, struct local *local,
587 value_t val, bool tail, dasm_State **Dst)
swissChili53472e82021-05-08 16:06:32 -0700588{
swissChili6d02af42021-08-05 19:49:01 -0700589 E_INIT();
590
591 NEARVAL(val);
592
swissChili7e1393c2021-07-07 12:59:12 -0700593 if (symstreq(val, "nil") || nilp(val))
swissChili53472e82021-05-08 16:06:32 -0700594 {
595 | mov eax, (nil);
596 }
swissChili923b5362021-05-09 20:31:43 -0700597 else if (symstreq(val, "t"))
598 {
599 | mov eax, (t);
600 }
601 else if (integerp(val) || stringp(val))
swissChilib3ca4fb2021-04-20 10:33:00 -0700602 {
603 | mov eax, val;
604 }
swissChili53472e82021-05-08 16:06:32 -0700605 else if (listp(val))
swissChilib3ca4fb2021-04-20 10:33:00 -0700606 {
swissChili53472e82021-05-08 16:06:32 -0700607 value_t fsym = car(val);
608 value_t args = cdr(val);
609 int nargs = length(args);
swissChilib3ca4fb2021-04-20 10:33:00 -0700610
swissChili53472e82021-05-08 16:06:32 -0700611 if (!symbolp(fsym))
swissChilif3e7f182021-04-20 13:57:22 -0700612 {
swissChili6d02af42021-08-05 19:49:01 -0700613 THROW(EEXPECTED, "Function name must be a symbol");
swissChilif3e7f182021-04-20 13:57:22 -0700614 }
615
swissChili53472e82021-05-08 16:06:32 -0700616 if (symstreq(fsym, "if"))
swissChilib3ca4fb2021-04-20 10:33:00 -0700617 {
swissChili53472e82021-05-08 16:06:32 -0700618 if (nargs < 2 || nargs > 3)
swissChili6d02af42021-08-05 19:49:01 -0700619 {
620 THROW(EARGS, "Must give at least 2 arguments to if");
621 }
swissChilib3ca4fb2021-04-20 10:33:00 -0700622
swissChili6d02af42021-08-05 19:49:01 -0700623 TRY(compile_expression(env, local, car(args), false, Dst));
swissChili53472e82021-05-08 16:06:32 -0700624 int false_label = nextpc(local, Dst),
625 after_label = nextpc(local, Dst);
626
627 // result is in eax
628 | cmp eax, (nil);
swissChili484295d2021-07-09 21:25:55 -0700629 | je =>false_label;
swissChili53472e82021-05-08 16:06:32 -0700630
swissChili6d02af42021-08-05 19:49:01 -0700631 TRY(compile_expression(env, local, elt(args, 1), tail, Dst));
swissChili484295d2021-07-09 21:25:55 -0700632 | jmp =>after_label;
633 |=>false_label:;
swissChili53472e82021-05-08 16:06:32 -0700634 if (nargs == 3)
swissChili6d02af42021-08-05 19:49:01 -0700635 TRY(compile_expression(env, local, elt(args, 2), tail, Dst));
swissChili484295d2021-07-09 21:25:55 -0700636 |=>after_label:;
swissChili53472e82021-05-08 16:06:32 -0700637 }
swissChilia89ee442021-08-04 20:54:51 -0700638 else if (symstreq(fsym, "and") || symstreq(fsym, "or"))
639 {
640 bool or = symstreq(fsym, "or"); // false == and
641
642 // Boolean and and or, short circuit like &&/||
643 if (nargs < 1)
644 {
swissChili6d02af42021-08-05 19:49:01 -0700645 THROW(EARGS, "and & or require at least 1 argument.");
swissChilia89ee442021-08-04 20:54:51 -0700646 }
647
648 int after = nextpc(local, Dst);
649
650 for (; !nilp(args); args = cdr(args))
651 {
swissChili6d02af42021-08-05 19:49:01 -0700652 NEARVAL(args);
653
654 TRY(compile_expression(env, local, car(args), false, Dst));
swissChilia89ee442021-08-04 20:54:51 -0700655 if (!nilp(cdr(args)))
656 {
657 | cmp eax, nil;
658 if (or)
659 {
swissChilifbf525f2021-08-04 21:28:07 -0700660 | jne =>after;
swissChilia89ee442021-08-04 20:54:51 -0700661 }
662 else
663 {
swissChilifbf525f2021-08-04 21:28:07 -0700664 | je =>after;
swissChilia89ee442021-08-04 20:54:51 -0700665 }
666 }
667 }
668
669 |=>after:;
670 }
swissChilif68671f2021-07-05 14:14:44 -0700671 else if (symstreq(fsym, "progn"))
672 {
673 for (value_t val = args; !nilp(val); val = cdr(val))
674 {
swissChili6d02af42021-08-05 19:49:01 -0700675 NEARVAL(args);
676
swissChilib51552c2021-08-03 10:23:37 -0700677 bool t = tail && nilp(cdr(val));
swissChili6d02af42021-08-05 19:49:01 -0700678 TRY(compile_expression(env, local, car(val), t, Dst));
swissChilif68671f2021-07-05 14:14:44 -0700679 }
680 }
swissChili67bdf282021-06-06 18:46:08 -0700681 else if (symstreq(fsym, "let1"))
682 {
683 if (nargs < 2)
684 {
swissChili6d02af42021-08-05 19:49:01 -0700685 THROW(EARGS, "Must give at least 2 arguments to let1");
swissChili67bdf282021-06-06 18:46:08 -0700686 }
687 value_t binding = car(args);
688 value_t rest = cdr(args);
689
swissChili6d02af42021-08-05 19:49:01 -0700690 NEARVAL(binding);
swissChili67bdf282021-06-06 18:46:08 -0700691 if (length(binding) != 2)
692 {
swissChili6d02af42021-08-05 19:49:01 -0700693 THROW(EARGS, "Binding list in let1 must contain exactly two entries");
swissChili67bdf282021-06-06 18:46:08 -0700694 }
695
swissChili6d02af42021-08-05 19:49:01 -0700696 NEARVAL(rest);
697
swissChili67bdf282021-06-06 18:46:08 -0700698 value_t name = car(binding);
699 value_t value = car(cdr(binding));
700
swissChili6d02af42021-08-05 19:49:01 -0700701 TRY(compile_expression(env, local, value, false, Dst));
swissChili67bdf282021-06-06 18:46:08 -0700702
703 int i = local_alloc(local);
704
705 add_variable(local, V_BOUND, (char *)(name ^ SYMBOL_TAG), i);
706
swissChili7e1393c2021-07-07 12:59:12 -0700707 | mov dword[ebp - ((i + 1) * value_size)], eax;
swissChili67bdf282021-06-06 18:46:08 -0700708
709 for (; !nilp(rest); rest = cdr(rest))
710 {
swissChilib51552c2021-08-03 10:23:37 -0700711 bool t = tail && nilp(cdr(rest));
swissChili6d02af42021-08-05 19:49:01 -0700712 NEARVAL(rest);
713 TRY(compile_expression(env, local, car(rest), t, Dst));
swissChili67bdf282021-06-06 18:46:08 -0700714 }
715
716 local_free(local, i);
717 }
swissChilie9fec8b2021-06-22 13:59:33 -0700718 else if (symstreq(fsym, "gc"))
719 {
720 if (nargs)
721 {
swissChili6d02af42021-08-05 19:49:01 -0700722 THROW(EARGS, "gc takes no arguments");
swissChilie9fec8b2021-06-22 13:59:33 -0700723 }
724
725 | run_gc;
726 }
swissChili6b47b6d2021-06-30 22:08:55 -0700727 else if (symstreq(fsym, "quote"))
728 {
729 if (nargs != 1)
swissChili6d02af42021-08-05 19:49:01 -0700730 THROW(EARGS, "quote should take exactly 1 argument");
swissChili6b47b6d2021-06-30 22:08:55 -0700731
732 // Simple!
733 | mov eax, (car(args));
734 }
735 else if (symstreq(fsym, "backquote"))
736 {
737 if (nargs != 1)
swissChili6d02af42021-08-05 19:49:01 -0700738 THROW(EARGS, "backquote should take exactly 1 argument");
swissChili6b47b6d2021-06-30 22:08:55 -0700739
swissChili6d02af42021-08-05 19:49:01 -0700740 TRY(compile_backquote(env, local, car(args), Dst));
swissChili6b47b6d2021-06-30 22:08:55 -0700741 }
swissChili74348422021-07-04 13:23:24 -0700742 else if (symstreq(fsym, "function"))
743 {
744 if (nargs != 1)
745 {
swissChili6d02af42021-08-05 19:49:01 -0700746 THROW(EARGS, "function should take exactly 1 argument");
swissChili74348422021-07-04 13:23:24 -0700747 }
748
swissChili6d02af42021-08-05 19:49:01 -0700749 NEARVAL(args);
swissChili74348422021-07-04 13:23:24 -0700750 if (!symbolp(car(args)))
751 {
swissChili6d02af42021-08-05 19:49:01 -0700752 THROW(EINVALID, "argument to function should be a symbol resolvable at "
swissChili7e1393c2021-07-07 12:59:12 -0700753 "compile time");
swissChili74348422021-07-04 13:23:24 -0700754 }
755
swissChilia89ee442021-08-04 20:54:51 -0700756 char *name = (char *)(car(args) ^ SYMBOL_TAG);
swissChili74348422021-07-04 13:23:24 -0700757
swissChilia89ee442021-08-04 20:54:51 -0700758 if (!strcmp(name, local->current_function_name))
759 {
760 | push 0;
761 | push local->args;
762 | push <1;
763 | call_extern create_closure;
764 }
765 else
766 {
767 struct function *f = find_function(env, name);
768
769 if (!f)
770 {
swissChili6d02af42021-08-05 19:49:01 -0700771 THROW(EINVALID, "Function `%s' does not exist", (char *)(car(args) ^ SYMBOL_TAG));
swissChilia89ee442021-08-04 20:54:51 -0700772 }
773 value_t closure = create_closure(f->code_ptr, f->args, 0);
774 | mov eax, (closure);
775 }
swissChili74348422021-07-04 13:23:24 -0700776 }
swissChili6b47b6d2021-06-30 22:08:55 -0700777 else if (symstreq(fsym, "list"))
778 {
swissChili484295d2021-07-09 21:25:55 -0700779 | push (nil);
swissChili6b47b6d2021-06-30 22:08:55 -0700780
781 for (int i = nargs - 1; i >= 0; i--)
782 {
swissChili6d02af42021-08-05 19:49:01 -0700783 TRY(compile_expression(env, local, elt(args, i), false, Dst));
swissChili6b47b6d2021-06-30 22:08:55 -0700784
swissChili6b47b6d2021-06-30 22:08:55 -0700785 | push eax;
swissChili53e7cd12021-08-02 21:55:53 -0700786 | call_extern cons;
swissChili6b47b6d2021-06-30 22:08:55 -0700787 | add esp, (2 * value_size);
swissChili6b47b6d2021-06-30 22:08:55 -0700788 | push eax;
789 }
swissChili6d02af42021-08-05 19:49:01 -0700790 | pop eax;
swissChili6b47b6d2021-06-30 22:08:55 -0700791 }
swissChiliddc97542021-07-04 11:47:42 -0700792 else if (symstreq(fsym, "lambda"))
793 {
794 // Compile the function with this as the parent scope
795 struct local new_local;
swissChilic0acce42022-07-31 13:38:17 -0700796 struct args *nargs_out;
swissChili6d02af42021-08-05 19:49:01 -0700797 dasm_State *d;
798 TRY(compile_function(
799 args, NS_ANONYMOUS, env, &new_local, local, &nargs_out,
800 "recurse", local->current_file_path, &d));
swissChiliddc97542021-07-04 11:47:42 -0700801
802 // Link the function
swissChilif68671f2021-07-05 14:14:44 -0700803 void *func_ptr = link_program(&d);
swissChiliddc97542021-07-04 11:47:42 -0700804
805 // Create a closure object with the correct number of captures at
806 // runtime
swissChili484295d2021-07-09 21:25:55 -0700807 | push (new_local.num_closure_slots);
808 | push (nargs_out);
809 | push (func_ptr);
swissChili53e7cd12021-08-02 21:55:53 -0700810 | call_extern create_closure;
swissChiliddc97542021-07-04 11:47:42 -0700811 | add esp, 12;
812
813 // Walk the generated local scope for V_FREE variables, since each
814 // of these exists in our scope (or higher), evaluate it and set it
815 // as a member of the lambda capture.
816
817 for (struct variable *var = new_local.first; var; var = var->prev)
818 {
819 if (var->type == V_FREE)
820 {
821 // Closure in eax
822 | push eax;
823 // Variable now in eax
swissChili6d02af42021-08-05 19:49:01 -0700824 TRY(compile_variable(find_variable(local, var->name), Dst));
swissChiliddc97542021-07-04 11:47:42 -0700825 | push eax;
826
swissChiliddc97542021-07-04 11:47:42 -0700827 // The capture offset
swissChili484295d2021-07-09 21:25:55 -0700828 | push (var->number);
swissChili53e7cd12021-08-02 21:55:53 -0700829 | call_extern set_closure_capture_variable;
swissChiliddc97542021-07-04 11:47:42 -0700830 // Skip the value and index
831 | add esp, 8;
832 // Pop the closure back in to eax
833 | pop eax;
834 }
835 }
836
837 // Closure is still in eax
838
839 dasm_free(&d);
swissChili708d4c42021-07-04 17:40:07 -0700840 del_local(&new_local);
swissChiliddc97542021-07-04 11:47:42 -0700841 }
swissChili7e1393c2021-07-07 12:59:12 -0700842 else if (symstreq(fsym, "eval"))
843 {
844 if (nargs != 1)
845 {
swissChili6d02af42021-08-05 19:49:01 -0700846 THROW(EARGS, "eval takes exactly 1 argument");
swissChili7e1393c2021-07-07 12:59:12 -0700847 }
848
swissChili6d02af42021-08-05 19:49:01 -0700849 TRY(compile_expression(env, local, car(args), false, Dst));
swissChili7e1393c2021-07-07 12:59:12 -0700850 | push eax;
swissChili484295d2021-07-09 21:25:55 -0700851 | push (env);
swissChili53e7cd12021-08-02 21:55:53 -0700852 | call_extern eval;
swissChili7e1393c2021-07-07 12:59:12 -0700853 }
854 else if (symstreq(fsym, "load"))
855 {
856 if (nargs != 1)
857 {
swissChili6d02af42021-08-05 19:49:01 -0700858 THROW(EARGS, "load takes exactly 1 argument, %d given", nargs);
swissChili7e1393c2021-07-07 12:59:12 -0700859 }
860
swissChili6d02af42021-08-05 19:49:01 -0700861 TRY(compile_expression(env, local, car(args), false, Dst));
swissChili7e1393c2021-07-07 12:59:12 -0700862 | push eax;
swissChili484295d2021-07-09 21:25:55 -0700863 | push (local->current_file_path);
864 | push (env);
swissChili53e7cd12021-08-02 21:55:53 -0700865 | call_extern load_relative;
swissChili7e1393c2021-07-07 12:59:12 -0700866 }
swissChili53472e82021-05-08 16:06:32 -0700867 else
868 {
swissChili74348422021-07-04 13:23:24 -0700869 char *name = (char *)(fsym ^ SYMBOL_TAG);
870 struct function *func = find_function(env, name);
swissChili7e1393c2021-07-07 12:59:12 -0700871
swissChili74348422021-07-04 13:23:24 -0700872 bool is_recursive = false;
swissChili15f1cae2021-07-05 19:08:47 -0700873 struct args *nargs_needed = NULL;
swissChili53472e82021-05-08 16:06:32 -0700874
swissChili53e7cd12021-08-02 21:55:53 -0700875 // The number of arguments actually passed on the stack,
876 // i.e. all varargs are 1.
swissChilib51552c2021-08-03 10:23:37 -0700877 int real_nargs;
swissChili53e7cd12021-08-02 21:55:53 -0700878
swissChili7e1393c2021-07-07 12:59:12 -0700879 if (local->current_function_name &&
880 symstreq(fsym, local->current_function_name))
swissChilif1ba8c12021-07-02 18:45:38 -0700881 {
swissChili74348422021-07-04 13:23:24 -0700882 is_recursive = true;
swissChili15f1cae2021-07-05 19:08:47 -0700883 nargs_needed = local->args;
swissChili74348422021-07-04 13:23:24 -0700884 }
885 else
886 {
887 if (func == NULL)
888 {
swissChili6d02af42021-08-05 19:49:01 -0700889 THROW(EINVALID, "Function %s undefined", name);
swissChili74348422021-07-04 13:23:24 -0700890 }
891
swissChili15f1cae2021-07-05 19:08:47 -0700892 nargs_needed = func->args;
swissChili74348422021-07-04 13:23:24 -0700893 }
894
swissChili15f1cae2021-07-05 19:08:47 -0700895 if (!are_args_acceptable(nargs_needed, nargs))
swissChili74348422021-07-04 13:23:24 -0700896 {
swissChili6d02af42021-08-05 19:49:01 -0700897 THROW(EARGS,
898 "wrong number of args in function call: %s, "
899 "want %d args but given %d\n",
900 name, nargs_needed->num_required, nargs);
swissChilif1ba8c12021-07-02 18:45:38 -0700901 }
swissChili53472e82021-05-08 16:06:32 -0700902
swissChili53e7cd12021-08-02 21:55:53 -0700903 int total_taken = nargs_needed->num_optional +
904 nargs_needed->num_required;
905
swissChilib51552c2021-08-03 10:23:37 -0700906 real_nargs = total_taken + (nargs_needed->variadic ? 1 : 0);
swissChili53e7cd12021-08-02 21:55:53 -0700907
swissChili74348422021-07-04 13:23:24 -0700908 if (is_recursive || func->namespace == NS_FUNCTION)
swissChili53472e82021-05-08 16:06:32 -0700909 {
swissChili15f1cae2021-07-05 19:08:47 -0700910 int nargs = length(args);
911
swissChili484295d2021-07-09 21:25:55 -0700912 int line = cons_line(val);
913 char *file = cons_file(val);
914
915 if (nargs_needed->variadic)
swissChili15f1cae2021-07-05 19:08:47 -0700916 {
swissChili484295d2021-07-09 21:25:55 -0700917 | push (nil);
918 }
919
920 if (nargs > total_taken && nargs_needed->variadic)
921 {
922 // We are passing varargs, which means we need to make a list
923
924 for (int i = nargs - 1; i >= total_taken; i--)
925 {
swissChili6d02af42021-08-05 19:49:01 -0700926 TRY(compile_expression(env, local, elt(args, i), false, Dst));
swissChili484295d2021-07-09 21:25:55 -0700927 | push eax;
swissChili53e7cd12021-08-02 21:55:53 -0700928 | call_extern cons;
swissChili484295d2021-07-09 21:25:55 -0700929 | add esp, 8;
930 | push eax;
931 }
swissChili15f1cae2021-07-05 19:08:47 -0700932 }
933
swissChili7e1393c2021-07-07 12:59:12 -0700934 for (int i = nargs_needed->num_optional - 1;
935 i >= nargs - nargs_needed->num_required; i--)
swissChili15f1cae2021-07-05 19:08:47 -0700936 {
937 // Push the default optional values
swissChili484295d2021-07-09 21:25:55 -0700938 | push (nargs_needed->optional_arguments[i].value);
swissChili15f1cae2021-07-05 19:08:47 -0700939 }
940
swissChili484295d2021-07-09 21:25:55 -0700941 int min = MIN(nargs, total_taken);
942
943 for (int i = min - 1; i >= 0; i--)
swissChili2999dd12021-07-02 14:19:53 -0700944 {
swissChili6d02af42021-08-05 19:49:01 -0700945 TRY(compile_expression(env, local, elt(args, i), false, Dst));
swissChili2999dd12021-07-02 14:19:53 -0700946 | push eax;
947 }
swissChili15f1cae2021-07-05 19:08:47 -0700948
swissChili74348422021-07-04 13:23:24 -0700949 if (is_recursive)
950 {
swissChilib51552c2021-08-03 10:23:37 -0700951 if (tail)
952 {
953 // Move all the arguments pushed to the stack
954 // back up to the argument bit of the stack.
955
956 for (int i = 0; i < real_nargs; i++)
957 {
958 | pop eax;
959 | mov dword[ebp + (value_size * (i + 2))], eax;
960 }
961
962 // Jmp back to start
963 | mov esp, ebp;
964 | pop ebp;
965 | jmp <1;
966 }
967 else
968 {
969 | call <1;
970 }
swissChili74348422021-07-04 13:23:24 -0700971 }
972 else
973 {
swissChili484295d2021-07-09 21:25:55 -0700974 // | mov ebx, (func->code_addr);
975 | call_extern func->code_addr;
swissChili74348422021-07-04 13:23:24 -0700976 }
swissChili53e7cd12021-08-02 21:55:53 -0700977 | add esp, (real_nargs * value_size);
swissChili2999dd12021-07-02 14:19:53 -0700978 // result in eax
979 }
980 else if (func->namespace == NS_MACRO)
981 {
swissChili7e1393c2021-07-07 12:59:12 -0700982 // Make sure that the stuff allocated by the macro isn't in a
983 // pool
swissChilif68671f2021-07-05 14:14:44 -0700984 unsigned char pool = push_pool(0);
985
swissChili2999dd12021-07-02 14:19:53 -0700986 value_t expanded_to = call_list(func, args);
987
swissChilif68671f2021-07-05 14:14:44 -0700988 pop_pool(pool);
989
swissChili6d02af42021-08-05 19:49:01 -0700990 TRY(compile_expression(env, local, expanded_to, false, Dst));
swissChili2999dd12021-07-02 14:19:53 -0700991 }
swissChili53472e82021-05-08 16:06:32 -0700992 }
swissChilib3ca4fb2021-04-20 10:33:00 -0700993 }
swissChili923b5362021-05-09 20:31:43 -0700994 else if (symbolp(val))
995 {
swissChili7e1393c2021-07-07 12:59:12 -0700996 if (symstreq(val, "+current-file+"))
swissChilie9fec8b2021-06-22 13:59:33 -0700997 {
swissChili7e1393c2021-07-07 12:59:12 -0700998 value_t file_name_val = strval(local->current_file_path);
999
1000 | mov eax, (file_name_val);
swissChilie9fec8b2021-06-22 13:59:33 -07001001 }
swissChili04d94162022-07-30 21:46:49 -07001002 else if (symstreq(val, "+current-env+"))
1003 {
1004 // TODO: we return this as a raw "integer", which is a bad
1005 // idea. Once classes are added this needs to be wrapped
1006 // in a class.
1007 | mov eax, (env);
1008 }
swissChili7e1393c2021-07-07 12:59:12 -07001009 else
1010 {
1011 struct variable *v =
1012 find_variable(local, (char *)(val ^ SYMBOL_TAG));
swissChili923b5362021-05-09 20:31:43 -07001013
swissChili7e1393c2021-07-07 12:59:12 -07001014 if (!v)
1015 {
swissChili6d02af42021-08-05 19:49:01 -07001016 THROW(EINVALID, "Variable `%s' unbound", (char *)(val ^ SYMBOL_TAG));
swissChili7e1393c2021-07-07 12:59:12 -07001017 }
1018
swissChili6d02af42021-08-05 19:49:01 -07001019 TRY(compile_variable(v, Dst));
swissChili7e1393c2021-07-07 12:59:12 -07001020 }
swissChili923b5362021-05-09 20:31:43 -07001021 }
swissChilia89ee442021-08-04 20:54:51 -07001022 else if (closurep(val))
1023 {
1024 | mov eax, val;
1025 }
1026 else
1027 {
1028 printval(val, 1);
swissChili6d02af42021-08-05 19:49:01 -07001029 THROW(EUNIMPL, "Don't know how to compile this, sorry.");
swissChilia89ee442021-08-04 20:54:51 -07001030 }
swissChili6d02af42021-08-05 19:49:01 -07001031
1032 OKAY();
swissChilib3ca4fb2021-04-20 10:33:00 -07001033}
swissChilif3e7f182021-04-20 13:57:22 -07001034
swissChili923b5362021-05-09 20:31:43 -07001035struct variable *add_variable(struct local *local, enum var_type type,
1036 char *name, int number)
1037{
1038 struct variable *var = malloc(sizeof(struct variable));
1039 var->prev = local->first;
1040 var->type = type;
1041 var->name = name;
1042 var->number = number;
1043
1044 local->first = var;
1045
1046 return var;
1047}
1048
1049void destroy_local(struct local *local)
1050{
1051 for (struct variable *v = local->first; v;)
1052 {
1053 struct variable *t = v;
1054 v = v->prev;
1055 free(t);
1056 }
1057}
1058
1059struct variable *find_variable(struct local *local, char *name)
1060{
1061 struct variable *v = local->first;
1062
1063 for (; v && strcmp(v->name, name) != 0; v = v->prev)
swissChili7e1393c2021-07-07 12:59:12 -07001064 {
1065 }
swissChili923b5362021-05-09 20:31:43 -07001066
swissChiliddc97542021-07-04 11:47:42 -07001067 if (!v)
1068 {
1069 if (local->parent)
1070 {
1071 v = find_variable(local->parent, name);
1072
1073 if (v)
1074 {
swissChili15f1cae2021-07-05 19:08:47 -07001075 // We found this in a parent scope, add it as a V_FREE variable
1076 // to skip the search.
swissChili7e1393c2021-07-07 12:59:12 -07001077 v = add_variable(local, V_FREE, name,
1078 local->num_closure_slots++);
swissChiliddc97542021-07-04 11:47:42 -07001079 }
1080 }
1081 }
swissChili923b5362021-05-09 20:31:43 -07001082 return v;
1083}
swissChili2999dd12021-07-02 14:19:53 -07001084
swissChiliddc97542021-07-04 11:47:42 -07001085extern value_t _call_list(void *addr, value_t list, value_t *edi);
swissChili2999dd12021-07-02 14:19:53 -07001086
swissChili7e1393c2021-07-07 12:59:12 -07001087value_t call_list_args(void *code_ptr, struct args *args, value_t list,
1088 void *data)
swissChili2999dd12021-07-02 14:19:53 -07001089{
swissChili15f1cae2021-07-05 19:08:47 -07001090 list = deep_copy(list);
swissChili484295d2021-07-09 21:25:55 -07001091
swissChili15f1cae2021-07-05 19:08:47 -07001092 int nargs = length(list);
1093
swissChili484295d2021-07-09 21:25:55 -07001094 value_t *val = &list;
swissChili15f1cae2021-07-05 19:08:47 -07001095
1096 for (value_t i = list; !nilp(i); i = cdr(i))
1097 {
1098 val = cdrref(i);
1099 }
1100
1101 int total_required = args->num_required + args->num_optional;
1102
1103 if (nargs > total_required)
1104 {
1105 // Take the remainder of the list and put it as the last item in the
1106 // list.
1107 value_t trailing = cxdr(list, total_required);
1108 value_t last_item = cons(trailing, nil);
1109
1110 *cxdrref(&list, total_required) = last_item;
1111 }
1112 else if (nargs < total_required)
1113 {
1114 for (int i = nargs - args->num_required; i < args->num_optional; i++)
1115 {
1116 // Append the i-th defualt argument
1117 value_t appended = cons(args->optional_arguments[i].value, nil);
1118 *val = appended;
1119 val = cdrref(appended);
1120 }
1121 }
1122
1123 // We want to call this if we pass the correct # of arguments or less, just
1124 // not if we have already passed varargs. Appends a nil argument.
1125 if (nargs <= total_required)
1126 {
1127 // Enough real arguments but no variadic arguments. Pass a nil list.
1128 *val = cons(nil, nil);
1129 }
1130
1131 return _call_list(code_ptr, list, data);
1132}
1133
1134value_t call_list(struct function *fun, value_t list)
1135{
1136 return call_list_args(fun->code_ptr, fun->args, list, NULL);
swissChiliddc97542021-07-04 11:47:42 -07001137}
1138
1139value_t call_list_closure(struct closure *c, value_t list)
1140{
swissChili15f1cae2021-07-05 19:08:47 -07001141 return call_list_args(c->function, c->args, list, c->data);
1142}
1143
1144struct args *new_args()
1145{
1146 struct args *a = malloc(sizeof(struct args));
1147 a->num_optional = 0;
1148 a->num_required = 0;
1149 a->variadic = false;
1150
1151 return a;
1152}
1153
swissChili7e1393c2021-07-07 12:59:12 -07001154struct args *add_optional_arg(struct args *args, value_t name, value_t value)
swissChili15f1cae2021-07-05 19:08:47 -07001155{
1156 int i = args->num_optional++;
swissChili7e1393c2021-07-07 12:59:12 -07001157 args =
1158 realloc(args, sizeof(struct args) + sizeof(struct optional_argument) *
1159 args->num_optional);
swissChili15f1cae2021-07-05 19:08:47 -07001160
swissChili7e1393c2021-07-07 12:59:12 -07001161 args->optional_arguments[i] = (struct optional_argument){
1162 .value = value,
1163 .name = name,
swissChili15f1cae2021-07-05 19:08:47 -07001164 };
1165
1166 return args;
1167}
1168
1169bool are_args_acceptable(struct args *args, int number)
1170{
1171 if (args->variadic)
1172 {
1173 return number >= args->num_required;
1174 }
1175 else
1176 {
1177 return number >= args->num_required &&
swissChili7e1393c2021-07-07 12:59:12 -07001178 number <= args->num_required + args->num_optional;
swissChili15f1cae2021-07-05 19:08:47 -07001179 }
1180}
1181
swissChili6d02af42021-08-05 19:49:01 -07001182struct error list_to_args(struct environment *env, value_t list,
1183 struct local *local, struct args **a)
swissChili15f1cae2021-07-05 19:08:47 -07001184{
swissChili6d02af42021-08-05 19:49:01 -07001185 E_INIT();
1186
swissChili15f1cae2021-07-05 19:08:47 -07001187 struct args *args = new_args();
1188
1189 bool in_optional = false;
1190
1191 for (value_t i = list; !nilp(i); i = cdr(i))
1192 {
1193 value_t val = car(i);
swissChili6d02af42021-08-05 19:49:01 -07001194 NEARVAL(i);
1195
swissChili15f1cae2021-07-05 19:08:47 -07001196 if (symbolp(val))
1197 {
1198 if (!args->variadic && symstreq(val, "&"))
1199 {
1200 i = cdr(i);
1201 value_t name = car(i);
1202
1203 if (!symbolp(name))
1204 {
swissChili6d02af42021-08-05 19:49:01 -07001205 THROW(EEXPECTED, "You must provide a symbol after & in an argument list "
1206 "to bind the\n"
1207 "variadic arguments to.");
swissChili15f1cae2021-07-05 19:08:47 -07001208 }
1209
1210 args->variadic = true;
1211
1212 add_variable(local, V_ARGUMENT, (char *)(name ^ SYMBOL_TAG),
swissChili7e1393c2021-07-07 12:59:12 -07001213 args->num_optional + args->num_required);
swissChili15f1cae2021-07-05 19:08:47 -07001214
1215 continue;
1216 }
1217
1218 if (!in_optional)
1219 {
swissChili7e1393c2021-07-07 12:59:12 -07001220 add_variable(local, V_ARGUMENT, (char *)(val ^ SYMBOL_TAG),
1221 args->num_required++);
swissChili15f1cae2021-07-05 19:08:47 -07001222 }
1223 else
1224 {
1225 char *name = (char *)(val ^ SYMBOL_TAG);
1226 if (name[0] == '&')
1227 {
swissChili6d02af42021-08-05 19:49:01 -07001228 THROW(EINVALID, "Non-optional argument following optional arguments "
1229 "starts with a &\n"
1230 "did you mean to declare a variadic argument? If so "
1231 "leave a space\n"
1232 "between the & and name.");
swissChili15f1cae2021-07-05 19:08:47 -07001233 }
1234 else
1235 {
swissChili6d02af42021-08-05 19:49:01 -07001236 THROW(EINVALID, "Cannot define a non-optional argument after an "
1237 "optional one.");
swissChili15f1cae2021-07-05 19:08:47 -07001238 }
1239 }
1240 }
1241 else if (listp(val))
1242 {
swissChili6d02af42021-08-05 19:49:01 -07001243 NEARVAL(val);
1244
swissChili15f1cae2021-07-05 19:08:47 -07001245 in_optional = true;
1246 int len = length(val);
1247
1248 if (len != 2)
1249 {
swissChili6d02af42021-08-05 19:49:01 -07001250 THROW(EINVALID, "A list defining an optional value must be structured like "
1251 "(name expr)\n"
1252 "with exactly two arguments.");
swissChili15f1cae2021-07-05 19:08:47 -07001253 }
1254
1255 value_t name = car(val);
1256 value_t expr = car(cdr(val));
1257
1258 value_t function = cons(nil, cons(expr, nil));
1259
swissChili6d02af42021-08-05 19:49:01 -07001260 dasm_State *d;
1261 TRY(compile_function(function, NS_ANONYMOUS, env, NULL, NULL, NULL,
1262 NULL, local->current_file_path, &d));
swissChili15f1cae2021-07-05 19:08:47 -07001263
1264 // TODO: GC stack top!
1265 value_t (*compiled)() = link_program(&d);
1266
1267 value_t value = compiled();
1268 args = add_optional_arg(args, name, value);
1269
swissChili7e1393c2021-07-07 12:59:12 -07001270 add_variable(local, V_ARGUMENT, (char *)(name ^ SYMBOL_TAG),
1271 args->num_required + args->num_optional - 1);
swissChilic0acce42022-07-31 13:38:17 -07001272
1273 dasm_free(&d);
swissChili15f1cae2021-07-05 19:08:47 -07001274 }
1275 }
1276
swissChili6d02af42021-08-05 19:49:01 -07001277 *a = args;
1278 OKAY();
swissChili15f1cae2021-07-05 19:08:47 -07001279}
1280
1281void display_args(struct args *args)
1282{
1283 printf("Args object taking %d require arguments and %d optionals:\n",
swissChili7e1393c2021-07-07 12:59:12 -07001284 args->num_required, args->num_optional);
swissChili15f1cae2021-07-05 19:08:47 -07001285
1286 for (int i = 0; i < args->num_optional; i++)
1287 {
swissChili7e1393c2021-07-07 12:59:12 -07001288 printf(" %d\t%s\n", i,
1289 (char *)(args->optional_arguments[i].name ^ SYMBOL_TAG));
swissChili15f1cae2021-07-05 19:08:47 -07001290 printval(args->optional_arguments[i].value, 2);
1291 }
swissChili2999dd12021-07-02 14:19:53 -07001292}