Remove scm_tc7_vm
[bpt/guile.git] / libguile / vm.c
CommitLineData
aab9d46c 1/* Copyright (C) 2001, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
a98cef7e 2 *
560b9c25 3 * This library is free software; you can redistribute it and/or
53befeb7
NJ
4 * modify it under the terms of the GNU Lesser General Public License
5 * as published by the Free Software Foundation; either version 3 of
6 * the License, or (at your option) any later version.
a98cef7e 7 *
53befeb7
NJ
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
560b9c25
AW
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
a98cef7e 12 *
560b9c25
AW
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
53befeb7
NJ
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301 USA
560b9c25 17 */
a98cef7e 18
13c47753
AW
19#if HAVE_CONFIG_H
20# include <config.h>
21#endif
22
da8b4747 23#include <stdlib.h>
6d14383e 24#include <alloca.h>
daccfef4 25#include <alignof.h>
17e90c5e 26#include <string.h>
e78d4bf9 27#include <stdint.h>
e3eb628d 28
1c44468d 29#include "libguile/bdw-gc.h"
e3eb628d
LC
30#include <gc/gc_mark.h>
31
560b9c25 32#include "_scm.h"
adaf86ec 33#include "control.h"
ac99cb0c 34#include "frames.h"
17e90c5e 35#include "instructions.h"
4cbc95f1 36#include "loader.h"
ac99cb0c 37#include "programs.h"
a98cef7e 38#include "vm.h"
486013d6 39#include "vm-builtins.h"
a98cef7e 40
aab9d46c
SIT
41#include "private-gc.h" /* scm_getenv_int */
42
97b18a66 43static int vm_default_engine = SCM_VM_REGULAR_ENGINE;
ea9f4f4b
AW
44
45/* Unfortunately we can't snarf these: snarfed things are only loaded up from
46 (system vm vm), which might not be loaded before an error happens. */
47static SCM sym_vm_run;
48static SCM sym_vm_error;
49static SCM sym_keyword_argument_error;
50static SCM sym_regular;
51static SCM sym_debug;
a98cef7e 52
11ea1aba
AW
53/* The VM has a number of internal assertions that shouldn't normally be
54 necessary, but might be if you think you found a bug in the VM. */
55#define VM_ENABLE_ASSERTIONS
56
53e28ed9
AW
57/* #define VM_ENABLE_PARANOID_ASSERTIONS */
58
e3eb628d
LC
59/* When defined, arrange so that the GC doesn't scan the VM stack beyond its
60 current SP. This should help avoid excess data retention. See
61 http://thread.gmane.org/gmane.comp.programming.garbage-collection.boehmgc/3001
62 for a discussion. */
63#define VM_ENABLE_PRECISE_STACK_GC_SCAN
64
f1046e6b
LC
65/* Size in SCM objects of the stack reserve. The reserve is used to run
66 exception handling code in case of a VM stack overflow. */
67#define VM_STACK_RESERVE_SIZE 512
68
e3eb628d 69
a98cef7e 70\f
a98cef7e
KN
71/*
72 * VM Continuation
73 */
74
6f3b0cc2
AW
75void
76scm_i_vm_cont_print (SCM x, SCM port, scm_print_state *pstate)
77{
0607ebbf 78 scm_puts_unlocked ("#<vm-continuation ", port);
6f3b0cc2 79 scm_uintprint (SCM_UNPACK (x), 16, port);
0607ebbf 80 scm_puts_unlocked (">", port);
6f3b0cc2 81}
17e90c5e 82
d8873dfe
AW
83/* In theory, a number of vm instances can be active in the call trace, and we
84 only want to reify the continuations of those in the current continuation
85 root. I don't see a nice way to do this -- ideally it would involve dynwinds,
86 and previous values of the *the-vm* fluid within the current continuation
87 root. But we don't have access to continuation roots in the dynwind stack.
88 So, just punt for now, we just capture the continuation for the current VM.
89
90 While I'm on the topic, ideally we could avoid copying the C stack if the
91 continuation root is inside VM code, and call/cc was invoked within that same
92 call to vm_run; but that's currently not implemented.
93 */
cee1d22c 94SCM
9121d9f1 95scm_i_vm_capture_stack (SCM *stack_base, SCM *fp, SCM *sp, scm_t_uint32 *ra,
840ec334 96 scm_t_dynstack *dynstack, scm_t_uint32 flags)
a98cef7e 97{
d8873dfe
AW
98 struct scm_vm_cont *p;
99
100 p = scm_gc_malloc (sizeof (*p), "capture_vm_cont");
101 p->stack_size = sp - stack_base + 1;
d8eeb67c
LC
102 p->stack_base = scm_gc_malloc (p->stack_size * sizeof (SCM),
103 "capture_vm_cont");
d8873dfe 104 p->ra = ra;
d8873dfe
AW
105 p->sp = sp;
106 p->fp = fp;
107 memcpy (p->stack_base, stack_base, (sp + 1 - stack_base) * sizeof (SCM));
108 p->reloc = p->stack_base - stack_base;
9ede013f 109 p->dynstack = dynstack;
cee1d22c 110 p->flags = flags;
6f3b0cc2 111 return scm_cell (scm_tc7_vm_cont, (scm_t_bits)p);
a98cef7e
KN
112}
113
114static void
796e54a7 115vm_return_to_continuation (struct scm_vm *vp, SCM cont, size_t n, SCM *argv)
a98cef7e 116{
d8873dfe
AW
117 struct scm_vm_cont *cp;
118 SCM *argv_copy;
119
120 argv_copy = alloca (n * sizeof(SCM));
121 memcpy (argv_copy, argv, n * sizeof(SCM));
122
d8873dfe
AW
123 cp = SCM_VM_CONT_DATA (cont);
124
f8085163 125 if (vp->stack_size < cp->stack_size + n + 3)
29366989 126 scm_misc_error ("vm-engine", "not enough space to reinstate continuation",
796e54a7 127 scm_list_1 (cont));
29366989 128
d8873dfe
AW
129 vp->sp = cp->sp;
130 vp->fp = cp->fp;
131 memcpy (vp->stack_base, cp->stack_base, cp->stack_size * sizeof (SCM));
bfffd258 132
03f16599
AW
133 {
134 size_t i;
135
136 /* Push on an empty frame, as the continuation expects. */
f8085163 137 for (i = 0; i < 3; i++)
03f16599
AW
138 {
139 vp->sp++;
140 *vp->sp = SCM_BOOL_F;
141 }
142
143 /* Push the return values. */
144 for (i = 0; i < n; i++)
145 {
146 vp->sp++;
147 *vp->sp = argv_copy[i];
148 }
840ec334 149 vp->ip = cp->ra;
03f16599 150 }
d8873dfe 151}
bfffd258 152
bfffd258 153SCM
9ede013f 154scm_i_capture_current_stack (void)
bfffd258 155{
9ede013f 156 scm_i_thread *thread;
9ede013f
AW
157 struct scm_vm *vp;
158
159 thread = SCM_I_CURRENT_THREAD;
e7f9abab 160 vp = scm_the_vm ();
9ede013f 161
840ec334 162 return scm_i_vm_capture_stack (vp->stack_base, vp->fp, vp->sp, vp->ip,
9ede013f
AW
163 scm_dynstack_capture_all (&thread->dynstack),
164 0);
a98cef7e
KN
165}
166
59f85eed
AW
167static void vm_dispatch_apply_hook (struct scm_vm *vp) SCM_NOINLINE;
168static void vm_dispatch_push_continuation_hook (struct scm_vm *vp) SCM_NOINLINE;
169static void vm_dispatch_pop_continuation_hook (struct scm_vm *vp, SCM *old_fp) SCM_NOINLINE;
170static void vm_dispatch_next_hook (struct scm_vm *vp) SCM_NOINLINE;
171static void vm_dispatch_abort_hook (struct scm_vm *vp) SCM_NOINLINE;
172static void vm_dispatch_restore_continuation_hook (struct scm_vm *vp) SCM_NOINLINE;
c850a0ff 173
b1b942b7 174static void
59f85eed 175vm_dispatch_hook (struct scm_vm *vp, int hook_num, SCM *argv, int n)
b1b942b7 176{
7656f194 177 SCM hook;
b3567435 178 struct scm_frame c_frame;
8e4c60ff 179 scm_t_cell *frame;
893fb8d0 180 int saved_trace_level;
b1b942b7 181
7656f194 182 hook = vp->hooks[hook_num];
b1b942b7 183
7656f194
AW
184 if (SCM_LIKELY (scm_is_false (hook))
185 || scm_is_null (SCM_HOOK_PROCEDURES (hook)))
186 return;
b3567435 187
893fb8d0
AW
188 saved_trace_level = vp->trace_level;
189 vp->trace_level = 0;
b3567435
LC
190
191 /* Allocate a frame object on the stack. This is more efficient than calling
192 `scm_c_make_frame ()' to allocate on the heap, but it forces hooks to not
193 capture frame objects.
194
195 At the same time, procedures such as `frame-procedure' make sense only
196 while the stack frame represented by the frame object is visible, so it
197 seems reasonable to limit the lifetime of frame objects. */
198
5515edc5 199 c_frame.stack_holder = vp;
89b235af
AW
200 c_frame.fp_offset = vp->fp - vp->stack_base;
201 c_frame.sp_offset = vp->sp - vp->stack_base;
b3567435 202 c_frame.ip = vp->ip;
8e4c60ff
LC
203
204 /* Arrange for FRAME to be 8-byte aligned, like any other cell. */
205 frame = alloca (sizeof (*frame) + 8);
206 frame = (scm_t_cell *) ROUND_UP ((scm_t_uintptr) frame, 8UL);
207
050a40db 208 frame->word_0 = SCM_PACK (scm_tc7_frame | (SCM_VM_FRAME_KIND_VM << 8));
21041372 209 frame->word_1 = SCM_PACK_POINTER (&c_frame);
b3567435 210
c850a0ff
AW
211 if (n == 0)
212 {
213 SCM args[1];
214
215 args[0] = SCM_PACK_POINTER (frame);
216 scm_c_run_hookn (hook, args, 1);
217 }
218 else if (n == 1)
219 {
220 SCM args[2];
221
222 args[0] = SCM_PACK_POINTER (frame);
223 args[1] = argv[0];
224 scm_c_run_hookn (hook, args, 2);
225 }
226 else
227 {
228 SCM args = SCM_EOL;
229
230 while (n--)
231 args = scm_cons (argv[n], args);
232 scm_c_run_hook (hook, scm_cons (SCM_PACK_POINTER (frame), args));
233 }
b3567435 234
893fb8d0 235 vp->trace_level = saved_trace_level;
b1b942b7
AW
236}
237
ea0cd17d 238static void
59f85eed 239vm_dispatch_apply_hook (struct scm_vm *vp)
ea0cd17d 240{
59f85eed 241 return vm_dispatch_hook (vp, SCM_VM_APPLY_HOOK, NULL, 0);
ea0cd17d 242}
59f85eed 243static void vm_dispatch_push_continuation_hook (struct scm_vm *vp)
ea0cd17d 244{
59f85eed 245 return vm_dispatch_hook (vp, SCM_VM_PUSH_CONTINUATION_HOOK, NULL, 0);
ea0cd17d 246}
59f85eed 247static void vm_dispatch_pop_continuation_hook (struct scm_vm *vp, SCM *old_fp)
ea0cd17d 248{
59f85eed 249 return vm_dispatch_hook (vp, SCM_VM_POP_CONTINUATION_HOOK,
ea0cd17d
AW
250 &SCM_FRAME_LOCAL (old_fp, 1),
251 SCM_FRAME_NUM_LOCALS (old_fp, vp->sp) - 1);
252}
59f85eed 253static void vm_dispatch_next_hook (struct scm_vm *vp)
ea0cd17d 254{
59f85eed 255 return vm_dispatch_hook (vp, SCM_VM_NEXT_HOOK, NULL, 0);
ea0cd17d 256}
59f85eed 257static void vm_dispatch_abort_hook (struct scm_vm *vp)
ea0cd17d 258{
59f85eed 259 return vm_dispatch_hook (vp, SCM_VM_ABORT_CONTINUATION_HOOK,
ea0cd17d
AW
260 &SCM_FRAME_LOCAL (vp->fp, 1),
261 SCM_FRAME_NUM_LOCALS (vp->fp, vp->sp) - 1);
262}
59f85eed 263static void vm_dispatch_restore_continuation_hook (struct scm_vm *vp)
ea0cd17d 264{
59f85eed 265 return vm_dispatch_hook (vp, SCM_VM_RESTORE_CONTINUATION_HOOK, NULL, 0);
ea0cd17d
AW
266}
267
4f66bcde 268static void
b44f5451
AW
269vm_abort (struct scm_vm *vp, SCM tag,
270 size_t nstack, SCM *stack_args, SCM tail, SCM *sp,
99511cd0 271 scm_i_jmp_buf *current_registers) SCM_NORETURN;
9d381ba4
AW
272
273static void
b44f5451
AW
274vm_abort (struct scm_vm *vp, SCM tag,
275 size_t nstack, SCM *stack_args, SCM tail, SCM *sp,
99511cd0 276 scm_i_jmp_buf *current_registers)
4f66bcde 277{
eaefabee 278 size_t i;
2d026f04 279 ssize_t tail_len;
99511cd0 280 SCM *argv;
eaefabee 281
2d026f04
AW
282 tail_len = scm_ilength (tail);
283 if (tail_len < 0)
29366989
AW
284 scm_misc_error ("vm-engine", "tail values to abort should be a list",
285 scm_list_1 (tail));
286
99511cd0
AW
287 argv = alloca ((nstack + tail_len) * sizeof (SCM));
288 for (i = 0; i < nstack; i++)
289 argv[i] = stack_args[i];
290 for (; i < nstack + tail_len; i++, tail = scm_cdr (tail))
2d026f04 291 argv[i] = scm_car (tail);
eaefabee 292
99511cd0 293 /* FIXME: NULLSTACK (SCM_VM_DATA (vp)->sp - sp) */
b44f5451 294 vp->sp = sp;
99511cd0 295
b44f5451 296 scm_c_abort (vp, tag, nstack + tail_len, argv, current_registers);
cee1d22c
AW
297}
298
9d381ba4 299static void
44ece399
AW
300vm_reinstate_partial_continuation (struct scm_vm *vp, SCM cont,
301 size_t n, SCM *argv,
9d381ba4
AW
302 scm_t_dynstack *dynstack,
303 scm_i_jmp_buf *registers)
cee1d22c 304{
07801437
AW
305 struct scm_vm_cont *cp;
306 SCM *argv_copy, *base;
9ede013f 307 scm_t_ptrdiff reloc;
07801437
AW
308 size_t i;
309
310 argv_copy = alloca (n * sizeof(SCM));
311 memcpy (argv_copy, argv, n * sizeof(SCM));
312
07801437 313 cp = SCM_VM_CONT_DATA (cont);
b636cdb0 314 base = SCM_FRAME_LOCALS_ADDRESS (vp->fp);
9ede013f 315 reloc = cp->reloc + (base - cp->stack_base);
07801437 316
0fc9040f 317#define RELOC(scm_p) \
9ede013f 318 (((SCM *) (scm_p)) + reloc)
07801437
AW
319
320 if ((base - vp->stack_base) + cp->stack_size + n + 1 > vp->stack_size)
29366989
AW
321 scm_misc_error ("vm-engine",
322 "not enough space to instate partial continuation",
44ece399 323 scm_list_1 (cont));
07801437
AW
324
325 memcpy (base, cp->stack_base, cp->stack_size * sizeof (SCM));
326
327 /* now relocate frame pointers */
328 {
329 SCM *fp;
330 for (fp = RELOC (cp->fp);
331 SCM_FRAME_LOWER_ADDRESS (fp) > base;
332 fp = SCM_FRAME_DYNAMIC_LINK (fp))
333 SCM_FRAME_SET_DYNAMIC_LINK (fp, RELOC (SCM_FRAME_DYNAMIC_LINK (fp)));
334 }
335
336 vp->sp = base - 1 + cp->stack_size;
337 vp->fp = RELOC (cp->fp);
840ec334 338 vp->ip = cp->ra;
07801437 339
840ec334 340 /* Push the arguments. */
07801437
AW
341 for (i = 0; i < n; i++)
342 {
343 vp->sp++;
344 *vp->sp = argv_copy[i];
345 }
9a1c6f1f 346
9d381ba4
AW
347 /* The prompt captured a slice of the dynamic stack. Here we wind
348 those entries onto the current thread's stack. We also have to
349 relocate any prompts that we see along the way. */
350 {
351 scm_t_bits *walk;
352
353 for (walk = SCM_DYNSTACK_FIRST (cp->dynstack);
354 SCM_DYNSTACK_TAG (walk);
355 walk = SCM_DYNSTACK_NEXT (walk))
356 {
357 scm_t_bits tag = SCM_DYNSTACK_TAG (walk);
358
359 if (SCM_DYNSTACK_TAG_TYPE (tag) == SCM_DYNSTACK_TYPE_PROMPT)
360 scm_dynstack_wind_prompt (dynstack, walk, reloc, registers);
361 else
362 scm_dynstack_wind_1 (dynstack, walk);
363 }
364 }
adbdfd6d 365#undef RELOC
4f66bcde
AW
366}
367
368\f
53bdfcf0
AW
369/*
370 * VM Error Handling
371 */
372
373static void vm_error (const char *msg, SCM arg) SCM_NORETURN;
4d497b62
AW
374static void vm_error_bad_instruction (scm_t_uint32 inst) SCM_NORETURN SCM_NOINLINE;
375static void vm_error_unbound (SCM proc, SCM sym) SCM_NORETURN SCM_NOINLINE;
376static void vm_error_unbound_fluid (SCM proc, SCM fluid) SCM_NORETURN SCM_NOINLINE;
377static void vm_error_not_a_variable (const char *func_name, SCM x) SCM_NORETURN SCM_NOINLINE;
378static void vm_error_apply_to_non_list (SCM x) SCM_NORETURN SCM_NOINLINE;
379static void vm_error_kwargs_length_not_even (SCM proc) SCM_NORETURN SCM_NOINLINE;
28d5d253
MW
380static void vm_error_kwargs_invalid_keyword (SCM proc, SCM obj) SCM_NORETURN SCM_NOINLINE;
381static void vm_error_kwargs_unrecognized_keyword (SCM proc, SCM kw) SCM_NORETURN SCM_NOINLINE;
4d497b62
AW
382static void vm_error_too_many_args (int nargs) SCM_NORETURN SCM_NOINLINE;
383static void vm_error_wrong_num_args (SCM proc) SCM_NORETURN SCM_NOINLINE;
384static void vm_error_wrong_type_apply (SCM proc) SCM_NORETURN SCM_NOINLINE;
385static void vm_error_stack_overflow (struct scm_vm *vp) SCM_NORETURN SCM_NOINLINE;
386static void vm_error_stack_underflow (void) SCM_NORETURN SCM_NOINLINE;
387static void vm_error_improper_list (SCM x) SCM_NORETURN SCM_NOINLINE;
388static void vm_error_not_a_pair (const char *subr, SCM x) SCM_NORETURN SCM_NOINLINE;
389static void vm_error_not_a_bytevector (const char *subr, SCM x) SCM_NORETURN SCM_NOINLINE;
390static void vm_error_not_a_struct (const char *subr, SCM x) SCM_NORETURN SCM_NOINLINE;
391static void vm_error_no_values (void) SCM_NORETURN SCM_NOINLINE;
392static void vm_error_not_enough_values (void) SCM_NORETURN SCM_NOINLINE;
82f4bac4 393static void vm_error_wrong_number_of_values (scm_t_uint32 expected) SCM_NORETURN SCM_NOINLINE;
4d497b62
AW
394static void vm_error_continuation_not_rewindable (SCM cont) SCM_NORETURN SCM_NOINLINE;
395static void vm_error_bad_wide_string_length (size_t len) SCM_NORETURN SCM_NOINLINE;
53bdfcf0
AW
396
397static void
398vm_error (const char *msg, SCM arg)
399{
400 scm_throw (sym_vm_error,
401 scm_list_3 (sym_vm_run, scm_from_latin1_string (msg),
402 SCM_UNBNDP (arg) ? SCM_EOL : scm_list_1 (arg)));
403 abort(); /* not reached */
404}
405
406static void
407vm_error_bad_instruction (scm_t_uint32 inst)
408{
409 vm_error ("VM: Bad instruction: ~s", scm_from_uint32 (inst));
410}
411
412static void
413vm_error_unbound (SCM proc, SCM sym)
414{
415 scm_error_scm (scm_misc_error_key, proc,
416 scm_from_latin1_string ("Unbound variable: ~s"),
417 scm_list_1 (sym), SCM_BOOL_F);
418}
419
420static void
421vm_error_unbound_fluid (SCM proc, SCM fluid)
422{
423 scm_error_scm (scm_misc_error_key, proc,
424 scm_from_latin1_string ("Unbound fluid: ~s"),
425 scm_list_1 (fluid), SCM_BOOL_F);
426}
427
428static void
429vm_error_not_a_variable (const char *func_name, SCM x)
430{
431 scm_error (scm_arg_type_key, func_name, "Not a variable: ~S",
432 scm_list_1 (x), scm_list_1 (x));
433}
434
53bdfcf0
AW
435static void
436vm_error_apply_to_non_list (SCM x)
437{
438 scm_error (scm_arg_type_key, "apply", "Apply to non-list: ~S",
439 scm_list_1 (x), scm_list_1 (x));
440}
441
442static void
443vm_error_kwargs_length_not_even (SCM proc)
444{
445 scm_error_scm (sym_keyword_argument_error, proc,
446 scm_from_latin1_string ("Odd length of keyword argument list"),
447 SCM_EOL, SCM_BOOL_F);
448}
449
450static void
4af0d97e 451vm_error_kwargs_invalid_keyword (SCM proc, SCM obj)
53bdfcf0
AW
452{
453 scm_error_scm (sym_keyword_argument_error, proc,
454 scm_from_latin1_string ("Invalid keyword"),
4af0d97e 455 SCM_EOL, scm_list_1 (obj));
53bdfcf0
AW
456}
457
458static void
4af0d97e 459vm_error_kwargs_unrecognized_keyword (SCM proc, SCM kw)
53bdfcf0
AW
460{
461 scm_error_scm (sym_keyword_argument_error, proc,
462 scm_from_latin1_string ("Unrecognized keyword"),
4af0d97e 463 SCM_EOL, scm_list_1 (kw));
53bdfcf0
AW
464}
465
466static void
467vm_error_too_many_args (int nargs)
468{
469 vm_error ("VM: Too many arguments", scm_from_int (nargs));
470}
471
472static void
473vm_error_wrong_num_args (SCM proc)
474{
475 scm_wrong_num_args (proc);
476}
477
478static void
479vm_error_wrong_type_apply (SCM proc)
480{
481 scm_error (scm_arg_type_key, NULL, "Wrong type to apply: ~S",
482 scm_list_1 (proc), scm_list_1 (proc));
483}
484
485static void
486vm_error_stack_overflow (struct scm_vm *vp)
487{
488 if (vp->stack_limit < vp->stack_base + vp->stack_size)
489 /* There are VM_STACK_RESERVE_SIZE bytes left. Make them available so
490 that `throw' below can run on this VM. */
491 vp->stack_limit = vp->stack_base + vp->stack_size;
492 else
493 /* There is no space left on the stack. FIXME: Do something more
494 sensible here! */
495 abort ();
496 vm_error ("VM: Stack overflow", SCM_UNDEFINED);
497}
498
499static void
500vm_error_stack_underflow (void)
501{
502 vm_error ("VM: Stack underflow", SCM_UNDEFINED);
503}
504
505static void
506vm_error_improper_list (SCM x)
507{
508 vm_error ("Expected a proper list, but got object with tail ~s", x);
509}
510
511static void
512vm_error_not_a_pair (const char *subr, SCM x)
513{
514 scm_wrong_type_arg_msg (subr, 1, x, "pair");
515}
516
517static void
518vm_error_not_a_bytevector (const char *subr, SCM x)
519{
520 scm_wrong_type_arg_msg (subr, 1, x, "bytevector");
521}
522
523static void
524vm_error_not_a_struct (const char *subr, SCM x)
525{
526 scm_wrong_type_arg_msg (subr, 1, x, "struct");
527}
528
529static void
530vm_error_no_values (void)
531{
532 vm_error ("Zero values returned to single-valued continuation",
533 SCM_UNDEFINED);
534}
535
536static void
537vm_error_not_enough_values (void)
538{
539 vm_error ("Too few values returned to continuation", SCM_UNDEFINED);
540}
541
82f4bac4
AW
542static void
543vm_error_wrong_number_of_values (scm_t_uint32 expected)
544{
545 vm_error ("Wrong number of values returned to continuation (expected ~a)",
546 scm_from_uint32 (expected));
547}
548
53bdfcf0
AW
549static void
550vm_error_continuation_not_rewindable (SCM cont)
551{
552 vm_error ("Unrewindable partial continuation", cont);
553}
554
555static void
556vm_error_bad_wide_string_length (size_t len)
557{
558 vm_error ("VM: Bad wide string length: ~S", scm_from_size_t (len));
559}
560
53bdfcf0
AW
561
562\f
28b119ee 563
ef6b7f71 564static SCM vm_boot_continuation;
486013d6
AW
565static SCM vm_builtin_apply;
566static SCM vm_builtin_values;
567static SCM vm_builtin_abort_to_prompt;
568static SCM vm_builtin_call_with_values;
569static SCM vm_builtin_call_with_current_continuation;
510ca126 570
ef6b7f71 571static const scm_t_uint32 vm_boot_continuation_code[] = {
095100bb 572 SCM_PACK_OP_24 (halt, 0)
510ca126
AW
573};
574
486013d6 575static const scm_t_uint32 vm_builtin_apply_code[] = {
095100bb
AW
576 SCM_PACK_OP_24 (assert_nargs_ge, 3),
577 SCM_PACK_OP_24 (tail_apply, 0), /* proc in r1, args from r2 */
510ca126
AW
578};
579
486013d6 580static const scm_t_uint32 vm_builtin_values_code[] = {
095100bb 581 SCM_PACK_OP_24 (return_values, 0) /* vals from r1 */
510ca126
AW
582};
583
486013d6 584static const scm_t_uint32 vm_builtin_abort_to_prompt_code[] = {
095100bb
AW
585 SCM_PACK_OP_24 (assert_nargs_ge, 2),
586 SCM_PACK_OP_24 (abort, 0), /* tag in r1, vals from r2 */
486013d6 587 /* FIXME: Partial continuation should capture caller regs. */
095100bb 588 SCM_PACK_OP_24 (return_values, 0) /* vals from r1 */
486013d6
AW
589};
590
591static const scm_t_uint32 vm_builtin_call_with_values_code[] = {
095100bb
AW
592 SCM_PACK_OP_24 (assert_nargs_ee, 3),
593 SCM_PACK_OP_24 (alloc_frame, 7),
594 SCM_PACK_OP_12_12 (mov, 6, 1),
595 SCM_PACK_OP_24 (call, 6), SCM_PACK_OP_ARG_8_24 (0, 1),
596 SCM_PACK_OP_12_12 (mov, 0, 2),
597 SCM_PACK_OP_24 (tail_call_shuffle, 7)
486013d6
AW
598};
599
600static const scm_t_uint32 vm_builtin_call_with_current_continuation_code[] = {
095100bb
AW
601 SCM_PACK_OP_24 (assert_nargs_ee, 2),
602 SCM_PACK_OP_24 (call_cc, 0)
486013d6
AW
603};
604
605
606static SCM
607scm_vm_builtin_ref (unsigned idx)
608{
609 switch (idx)
610 {
9f309e2c 611#define INDEX_TO_NAME(builtin, BUILTIN, req, opt, rest) \
486013d6
AW
612 case SCM_VM_BUILTIN_##BUILTIN: return vm_builtin_##builtin;
613 FOR_EACH_VM_BUILTIN(INDEX_TO_NAME)
614#undef INDEX_TO_NAME
615 default: abort();
616 }
617}
618
9f309e2c 619SCM scm_sym_apply;
486013d6
AW
620static SCM scm_sym_values;
621static SCM scm_sym_abort_to_prompt;
622static SCM scm_sym_call_with_values;
623static SCM scm_sym_call_with_current_continuation;
624
625SCM
626scm_vm_builtin_name_to_index (SCM name)
627#define FUNC_NAME "builtin-name->index"
628{
629 SCM_VALIDATE_SYMBOL (1, name);
630
9f309e2c 631#define NAME_TO_INDEX(builtin, BUILTIN, req, opt, rest) \
486013d6
AW
632 if (scm_is_eq (name, scm_sym_##builtin)) \
633 return scm_from_uint (SCM_VM_BUILTIN_##BUILTIN);
634 FOR_EACH_VM_BUILTIN(NAME_TO_INDEX)
635#undef NAME_TO_INDEX
636
637 return SCM_BOOL_F;
638}
639#undef FUNC_NAME
640
641SCM
642scm_vm_builtin_index_to_name (SCM index)
643#define FUNC_NAME "builtin-index->name"
644{
645 unsigned idx;
646
647 SCM_VALIDATE_UINT_COPY (1, index, idx);
648
649 switch (idx)
650 {
9f309e2c 651#define INDEX_TO_NAME(builtin, BUILTIN, req, opt, rest) \
486013d6
AW
652 case SCM_VM_BUILTIN_##BUILTIN: return scm_sym_##builtin;
653 FOR_EACH_VM_BUILTIN(INDEX_TO_NAME)
654#undef INDEX_TO_NAME
655 default: return SCM_BOOL_F;
656 }
657}
658#undef FUNC_NAME
659
660static void
661scm_init_vm_builtins (void)
662{
486013d6
AW
663 scm_c_define_gsubr ("builtin-name->index", 1, 0, 0,
664 scm_vm_builtin_name_to_index);
665 scm_c_define_gsubr ("builtin-index->name", 1, 0, 0,
666 scm_vm_builtin_index_to_name);
667}
668
669SCM
670scm_i_call_with_current_continuation (SCM proc)
671{
672 return scm_call_1 (vm_builtin_call_with_current_continuation, proc);
673}
510ca126 674
a98cef7e
KN
675\f
676/*
677 * VM
678 */
679
aab9d46c 680#define VM_MIN_STACK_SIZE (1024)
486013d6 681#define VM_DEFAULT_STACK_SIZE (256 * 1024)
aab9d46c
SIT
682static size_t vm_stack_size = VM_DEFAULT_STACK_SIZE;
683
684static void
685initialize_default_stack_size (void)
686{
687 int size = scm_getenv_int ("GUILE_STACK_SIZE", vm_stack_size);
688 if (size >= VM_MIN_STACK_SIZE)
689 vm_stack_size = size;
690}
17e90c5e 691
f42cfbf0
AW
692#define VM_NAME vm_regular_engine
693#define VM_USE_HOOKS 0
6d14383e 694#define FUNC_NAME "vm-regular-engine"
83495480 695#include "vm-engine.c"
6d14383e 696#undef FUNC_NAME
f42cfbf0
AW
697#undef VM_USE_HOOKS
698#undef VM_NAME
17e90c5e 699
f42cfbf0
AW
700#define VM_NAME vm_debug_engine
701#define VM_USE_HOOKS 1
6d14383e 702#define FUNC_NAME "vm-debug-engine"
83495480 703#include "vm-engine.c"
6d14383e 704#undef FUNC_NAME
f42cfbf0
AW
705#undef VM_USE_HOOKS
706#undef VM_NAME
17e90c5e 707
9b4c3ab5
AW
708typedef SCM (*scm_t_vm_engine) (struct scm_vm *vp,
709 SCM program, SCM *argv, size_t nargs);
73c3db66 710
f42cfbf0
AW
711static const scm_t_vm_engine vm_engines[SCM_VM_NUM_ENGINES] =
712 { vm_regular_engine, vm_debug_engine };
73c3db66 713
e3eb628d
LC
714#ifdef VM_ENABLE_PRECISE_STACK_GC_SCAN
715
716/* The GC "kind" for the VM stack. */
717static int vm_stack_gc_kind;
718
719#endif
720
3506b152 721static struct scm_vm *
17e90c5e
KN
722make_vm (void)
723#define FUNC_NAME "make_vm"
a98cef7e 724{
17e90c5e 725 int i;
7f991c7d 726 struct scm_vm *vp;
747a1635 727
7f991c7d 728 vp = scm_gc_malloc (sizeof (struct scm_vm), "vm");
d8eeb67c 729
aab9d46c 730 vp->stack_size= vm_stack_size;
e3eb628d
LC
731
732#ifdef VM_ENABLE_PRECISE_STACK_GC_SCAN
4168aa46
TTN
733 vp->stack_base = (SCM *)
734 GC_generic_malloc (vp->stack_size * sizeof (SCM), vm_stack_gc_kind);
e3eb628d
LC
735
736 /* Keep a pointer to VP so that `vm_stack_mark ()' can know what the stack
737 top is. */
21041372 738 *vp->stack_base = SCM_PACK_POINTER (vp);
e3eb628d
LC
739 vp->stack_base++;
740 vp->stack_size--;
741#else
d8eeb67c
LC
742 vp->stack_base = scm_gc_malloc (vp->stack_size * sizeof (SCM),
743 "stack-base");
e3eb628d
LC
744#endif
745
f1046e6b 746 vp->stack_limit = vp->stack_base + vp->stack_size - VM_STACK_RESERVE_SIZE;
3616e9e9
KN
747 vp->ip = NULL;
748 vp->sp = vp->stack_base - 1;
749 vp->fp = NULL;
ea9f4f4b 750 vp->engine = vm_default_engine;
7656f194 751 vp->trace_level = 0;
17e90c5e 752 for (i = 0; i < SCM_VM_NUM_HOOKS; i++)
3d5ee0cd 753 vp->hooks[i] = SCM_BOOL_F;
3506b152
AW
754
755 return vp;
a98cef7e 756}
17e90c5e 757#undef FUNC_NAME
a98cef7e 758
e3eb628d
LC
759#ifdef VM_ENABLE_PRECISE_STACK_GC_SCAN
760
761/* Mark the VM stack region between its base and its current top. */
762static struct GC_ms_entry *
763vm_stack_mark (GC_word *addr, struct GC_ms_entry *mark_stack_ptr,
764 struct GC_ms_entry *mark_stack_limit, GC_word env)
765{
766 GC_word *word;
767 const struct scm_vm *vm;
768
769 /* The first word of the VM stack should contain a pointer to the
770 corresponding VM. */
771 vm = * ((struct scm_vm **) addr);
772
8071c490 773 if (vm == NULL
f1046e6b 774 || (SCM *) addr != vm->stack_base - 1)
e3eb628d
LC
775 /* ADDR must be a pointer to a free-list element, which we must ignore
776 (see warning in <gc/gc_mark.h>). */
777 return mark_stack_ptr;
778
e3eb628d
LC
779 for (word = (GC_word *) vm->stack_base; word <= (GC_word *) vm->sp; word++)
780 mark_stack_ptr = GC_MARK_AND_PUSH ((* (GC_word **) word),
781 mark_stack_ptr, mark_stack_limit,
782 NULL);
783
784 return mark_stack_ptr;
785}
786
787#endif /* VM_ENABLE_PRECISE_STACK_GC_SCAN */
788
789
55ee3607
AW
790SCM
791scm_call_n (SCM proc, SCM *argv, size_t nargs)
792{
e7f9abab
AW
793 struct scm_vm *vp = scm_the_vm ();
794 SCM_CHECK_STACK;
795 return vm_engines[vp->engine](vp, proc, argv, nargs);
55ee3607
AW
796}
797
e7f9abab 798struct scm_vm *
a222cbc9 799scm_the_vm (void)
271c3d31 800{
ea9f4f4b
AW
801 scm_i_thread *t = SCM_I_CURRENT_THREAD;
802
3506b152
AW
803 if (SCM_UNLIKELY (!t->vp))
804 t->vp = make_vm ();
ea9f4f4b 805
3506b152 806 return t->vp;
271c3d31 807}
499a4c07 808
a222cbc9 809/* Scheme interface */
a98cef7e 810
17e90c5e
KN
811#define VM_DEFINE_HOOK(n) \
812{ \
3d5ee0cd 813 struct scm_vm *vp; \
e7f9abab 814 vp = scm_the_vm (); \
8b22ed7a 815 if (scm_is_false (vp->hooks[n])) \
238e7a11 816 vp->hooks[n] = scm_make_hook (SCM_I_MAKINUM (1)); \
3d5ee0cd 817 return vp->hooks[n]; \
17e90c5e
KN
818}
819
972275ee
AW
820SCM_DEFINE (scm_vm_apply_hook, "vm-apply-hook", 0, 0, 0,
821 (void),
17e90c5e 822 "")
c45d4d77 823#define FUNC_NAME s_scm_vm_apply_hook
a98cef7e 824{
c45d4d77 825 VM_DEFINE_HOOK (SCM_VM_APPLY_HOOK);
a98cef7e
KN
826}
827#undef FUNC_NAME
828
972275ee
AW
829SCM_DEFINE (scm_vm_push_continuation_hook, "vm-push-continuation-hook", 0, 0, 0,
830 (void),
17e90c5e 831 "")
c45d4d77 832#define FUNC_NAME s_scm_vm_push_continuation_hook
a98cef7e 833{
c45d4d77 834 VM_DEFINE_HOOK (SCM_VM_PUSH_CONTINUATION_HOOK);
a98cef7e
KN
835}
836#undef FUNC_NAME
837
972275ee
AW
838SCM_DEFINE (scm_vm_pop_continuation_hook, "vm-pop-continuation-hook", 0, 0, 0,
839 (void),
17e90c5e 840 "")
c45d4d77 841#define FUNC_NAME s_scm_vm_pop_continuation_hook
a98cef7e 842{
c45d4d77 843 VM_DEFINE_HOOK (SCM_VM_POP_CONTINUATION_HOOK);
a98cef7e
KN
844}
845#undef FUNC_NAME
846
972275ee
AW
847SCM_DEFINE (scm_vm_next_hook, "vm-next-hook", 0, 0, 0,
848 (void),
17e90c5e 849 "")
c45d4d77 850#define FUNC_NAME s_scm_vm_next_hook
a98cef7e 851{
c45d4d77 852 VM_DEFINE_HOOK (SCM_VM_NEXT_HOOK);
a98cef7e
KN
853}
854#undef FUNC_NAME
f3120251 855
972275ee
AW
856SCM_DEFINE (scm_vm_abort_continuation_hook, "vm-abort-continuation-hook", 0, 0, 0,
857 (void),
f3120251
AW
858 "")
859#define FUNC_NAME s_scm_vm_abort_continuation_hook
860{
861 VM_DEFINE_HOOK (SCM_VM_ABORT_CONTINUATION_HOOK);
862}
863#undef FUNC_NAME
864
972275ee
AW
865SCM_DEFINE (scm_vm_restore_continuation_hook, "vm-restore-continuation-hook", 0, 0, 0,
866 (void),
f3120251
AW
867 "")
868#define FUNC_NAME s_scm_vm_restore_continuation_hook
869{
870 VM_DEFINE_HOOK (SCM_VM_RESTORE_CONTINUATION_HOOK);
871}
872#undef FUNC_NAME
a98cef7e 873
972275ee
AW
874SCM_DEFINE (scm_vm_trace_level, "vm-trace-level", 0, 0, 0,
875 (void),
17e90c5e 876 "")
7656f194 877#define FUNC_NAME s_scm_vm_trace_level
a98cef7e 878{
e7f9abab 879 return scm_from_int (scm_the_vm ()->trace_level);
7656f194
AW
880}
881#undef FUNC_NAME
882
972275ee
AW
883SCM_DEFINE (scm_set_vm_trace_level_x, "set-vm-trace-level!", 1, 0, 0,
884 (SCM level),
7656f194
AW
885 "")
886#define FUNC_NAME s_scm_set_vm_trace_level_x
887{
e7f9abab 888 scm_the_vm ()->trace_level = scm_to_int (level);
7656f194 889 return SCM_UNSPECIFIED;
a98cef7e
KN
890}
891#undef FUNC_NAME
892
893\f
ea9f4f4b
AW
894/*
895 * VM engines
896 */
897
898static int
899symbol_to_vm_engine (SCM engine, const char *FUNC_NAME)
900{
901 if (scm_is_eq (engine, sym_regular))
902 return SCM_VM_REGULAR_ENGINE;
903 else if (scm_is_eq (engine, sym_debug))
904 return SCM_VM_DEBUG_ENGINE;
905 else
906 SCM_MISC_ERROR ("Unknown VM engine: ~a", scm_list_1 (engine));
907}
908
909static SCM
910vm_engine_to_symbol (int engine, const char *FUNC_NAME)
911{
912 switch (engine)
913 {
914 case SCM_VM_REGULAR_ENGINE:
915 return sym_regular;
916 case SCM_VM_DEBUG_ENGINE:
917 return sym_debug;
918 default:
919 /* ? */
920 SCM_MISC_ERROR ("Unknown VM engine: ~a",
921 scm_list_1 (scm_from_int (engine)));
922 }
923}
924
972275ee
AW
925SCM_DEFINE (scm_vm_engine, "vm-engine", 0, 0, 0,
926 (void),
ea9f4f4b
AW
927 "")
928#define FUNC_NAME s_scm_vm_engine
929{
e7f9abab 930 return vm_engine_to_symbol (scm_the_vm ()->engine, FUNC_NAME);
ea9f4f4b
AW
931}
932#undef FUNC_NAME
933
934void
972275ee 935scm_c_set_vm_engine_x (int engine)
ea9f4f4b
AW
936#define FUNC_NAME "set-vm-engine!"
937{
ea9f4f4b
AW
938 if (engine < 0 || engine >= SCM_VM_NUM_ENGINES)
939 SCM_MISC_ERROR ("Unknown VM engine: ~a",
940 scm_list_1 (scm_from_int (engine)));
941
e7f9abab 942 scm_the_vm ()->engine = engine;
ea9f4f4b
AW
943}
944#undef FUNC_NAME
945
972275ee
AW
946SCM_DEFINE (scm_set_vm_engine_x, "set-vm-engine!", 1, 0, 0,
947 (SCM engine),
ea9f4f4b
AW
948 "")
949#define FUNC_NAME s_scm_set_vm_engine_x
950{
972275ee 951 scm_c_set_vm_engine_x (symbol_to_vm_engine (engine, FUNC_NAME));
ea9f4f4b
AW
952 return SCM_UNSPECIFIED;
953}
954#undef FUNC_NAME
955
956void
957scm_c_set_default_vm_engine_x (int engine)
958#define FUNC_NAME "set-default-vm-engine!"
959{
960 if (engine < 0 || engine >= SCM_VM_NUM_ENGINES)
961 SCM_MISC_ERROR ("Unknown VM engine: ~a",
962 scm_list_1 (scm_from_int (engine)));
963
964 vm_default_engine = engine;
965}
966#undef FUNC_NAME
967
968SCM_DEFINE (scm_set_default_vm_engine_x, "set-default-vm-engine!", 1, 0, 0,
969 (SCM engine),
970 "")
971#define FUNC_NAME s_scm_set_default_vm_engine_x
972{
973 scm_c_set_default_vm_engine_x (symbol_to_vm_engine (engine, FUNC_NAME));
974 return SCM_UNSPECIFIED;
975}
976#undef FUNC_NAME
977
972275ee
AW
978/* FIXME: This function makes no sense, but we keep it to make sure we
979 have a way of switching to the debug or regular VM. */
980SCM_DEFINE (scm_call_with_vm, "call-with-vm", 1, 0, 1,
981 (SCM proc, SCM args),
ea9f4f4b 982 "Apply @var{proc} to @var{args} in a dynamic extent in which\n"
972275ee 983 "@var{vm} is the current VM.")
ea9f4f4b
AW
984#define FUNC_NAME s_scm_call_with_vm
985{
972275ee 986 return scm_apply_0 (proc, args);
ea9f4f4b
AW
987}
988#undef FUNC_NAME
989
990\f
a98cef7e 991/*
17e90c5e 992 * Initialize
a98cef7e
KN
993 */
994
55ee3607
AW
995SCM
996scm_load_compiled_with_vm (SCM file)
07e56b27 997{
55ee3607 998 return scm_call_0 (scm_load_thunk_from_file (file));
07e56b27
AW
999}
1000
67b699cc 1001
9f309e2c
AW
1002void
1003scm_init_vm_builtin_properties (void)
1004{
1005 /* FIXME: Seems hacky to do this here, but oh well :/ */
1006 scm_sym_apply = scm_from_utf8_symbol ("apply");
1007 scm_sym_values = scm_from_utf8_symbol ("values");
1008 scm_sym_abort_to_prompt = scm_from_utf8_symbol ("abort-to-prompt");
1009 scm_sym_call_with_values = scm_from_utf8_symbol ("call-with-values");
1010 scm_sym_call_with_current_continuation =
1011 scm_from_utf8_symbol ("call-with-current-continuation");
1012
1013#define INIT_BUILTIN(builtin, BUILTIN, req, opt, rest) \
1014 scm_set_procedure_property_x (vm_builtin_##builtin, scm_sym_name, \
1015 scm_sym_##builtin); \
1016 scm_set_procedure_minimum_arity_x (vm_builtin_##builtin, \
1017 SCM_I_MAKINUM (req), \
1018 SCM_I_MAKINUM (opt), \
1019 scm_from_bool (rest));
1020 FOR_EACH_VM_BUILTIN (INIT_BUILTIN);
1021#undef INIT_BUILTIN
1022}
1023
17e90c5e 1024void
07e56b27 1025scm_bootstrap_vm (void)
17e90c5e 1026{
44602b08
AW
1027 scm_c_register_extension ("libguile-" SCM_EFFECTIVE_VERSION,
1028 "scm_init_vm",
60ae5ca2 1029 (scm_t_extension_init_func)scm_init_vm, NULL);
486013d6
AW
1030 scm_c_register_extension ("libguile-" SCM_EFFECTIVE_VERSION,
1031 "scm_init_vm_builtins",
1032 (scm_t_extension_init_func)scm_init_vm_builtins,
1033 NULL);
60ae5ca2 1034
aab9d46c
SIT
1035 initialize_default_stack_size ();
1036
4a655e50
AW
1037 sym_vm_run = scm_from_latin1_symbol ("vm-run");
1038 sym_vm_error = scm_from_latin1_symbol ("vm-error");
1039 sym_keyword_argument_error = scm_from_latin1_symbol ("keyword-argument-error");
1040 sym_regular = scm_from_latin1_symbol ("regular");
1041 sym_debug = scm_from_latin1_symbol ("debug");
0404c97d 1042
ef6b7f71
AW
1043 vm_boot_continuation = scm_i_make_program (vm_boot_continuation_code);
1044 SCM_SET_CELL_WORD_0 (vm_boot_continuation,
1045 (SCM_CELL_WORD_0 (vm_boot_continuation)
73c3db66 1046 | SCM_F_PROGRAM_IS_BOOT));
9f309e2c
AW
1047
1048#define DEFINE_BUILTIN(builtin, BUILTIN, req, opt, rest) \
80797145 1049 vm_builtin_##builtin = scm_i_make_program (vm_builtin_##builtin##_code);
9f309e2c
AW
1050 FOR_EACH_VM_BUILTIN (DEFINE_BUILTIN);
1051#undef DEFINE_BUILTIN
73c3db66 1052
e3eb628d
LC
1053#ifdef VM_ENABLE_PRECISE_STACK_GC_SCAN
1054 vm_stack_gc_kind =
1055 GC_new_kind (GC_new_free_list (),
1056 GC_MAKE_PROC (GC_new_proc (vm_stack_mark), 0),
1057 0, 1);
1058
1059#endif
07e56b27
AW
1060}
1061
1062void
1063scm_init_vm (void)
1064{
17e90c5e 1065#ifndef SCM_MAGIC_SNARFER
aeeff258 1066#include "libguile/vm.x"
17e90c5e 1067#endif
a98cef7e 1068}
17e90c5e
KN
1069
1070/*
1071 Local Variables:
1072 c-file-style: "gnu"
1073 End:
1074*/