<prompt> body and handler are lambdas; add escape-only? field
[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"
8f5cfc81 36#include "objcodes.h"
ac99cb0c 37#include "programs.h"
a98cef7e
KN
38#include "vm.h"
39
aab9d46c
SIT
40#include "private-gc.h" /* scm_getenv_int */
41
97b18a66 42static int vm_default_engine = SCM_VM_REGULAR_ENGINE;
ea9f4f4b
AW
43
44/* Unfortunately we can't snarf these: snarfed things are only loaded up from
45 (system vm vm), which might not be loaded before an error happens. */
46static SCM sym_vm_run;
47static SCM sym_vm_error;
48static SCM sym_keyword_argument_error;
49static SCM sym_regular;
50static SCM sym_debug;
a98cef7e 51
11ea1aba
AW
52/* The VM has a number of internal assertions that shouldn't normally be
53 necessary, but might be if you think you found a bug in the VM. */
54#define VM_ENABLE_ASSERTIONS
55
56/* We can add a mode that ensures that all stack items above the stack pointer
57 are NULL. This is useful for checking the internal consistency of the VM's
58 assumptions and its operators, but isn't necessary for normal operation. It
616167fc 59 will ensure that assertions are enabled. Slows down the VM by about 30%. */
747a1635 60/* NB! If you enable this, search for NULLING in throw.c */
616167fc 61/* #define VM_ENABLE_STACK_NULLING */
11ea1aba 62
53e28ed9
AW
63/* #define VM_ENABLE_PARANOID_ASSERTIONS */
64
11ea1aba
AW
65#if defined (VM_ENABLE_STACK_NULLING) && !defined (VM_ENABLE_ASSERTIONS)
66#define VM_ENABLE_ASSERTIONS
67#endif
68
e3eb628d
LC
69/* When defined, arrange so that the GC doesn't scan the VM stack beyond its
70 current SP. This should help avoid excess data retention. See
71 http://thread.gmane.org/gmane.comp.programming.garbage-collection.boehmgc/3001
72 for a discussion. */
73#define VM_ENABLE_PRECISE_STACK_GC_SCAN
74
f1046e6b
LC
75/* Size in SCM objects of the stack reserve. The reserve is used to run
76 exception handling code in case of a VM stack overflow. */
77#define VM_STACK_RESERVE_SIZE 512
78
e3eb628d 79
a98cef7e 80\f
a98cef7e
KN
81/*
82 * VM Continuation
83 */
84
6f3b0cc2
AW
85void
86scm_i_vm_cont_print (SCM x, SCM port, scm_print_state *pstate)
87{
0607ebbf 88 scm_puts_unlocked ("#<vm-continuation ", port);
6f3b0cc2 89 scm_uintprint (SCM_UNPACK (x), 16, port);
0607ebbf 90 scm_puts_unlocked (">", port);
6f3b0cc2 91}
17e90c5e 92
d8873dfe
AW
93/* In theory, a number of vm instances can be active in the call trace, and we
94 only want to reify the continuations of those in the current continuation
95 root. I don't see a nice way to do this -- ideally it would involve dynwinds,
96 and previous values of the *the-vm* fluid within the current continuation
97 root. But we don't have access to continuation roots in the dynwind stack.
98 So, just punt for now, we just capture the continuation for the current VM.
99
100 While I'm on the topic, ideally we could avoid copying the C stack if the
101 continuation root is inside VM code, and call/cc was invoked within that same
102 call to vm_run; but that's currently not implemented.
103 */
cee1d22c
AW
104SCM
105scm_i_vm_capture_stack (SCM *stack_base, SCM *fp, SCM *sp, scm_t_uint8 *ra,
9ede013f
AW
106 scm_t_uint8 *mvra, scm_t_dynstack *dynstack,
107 scm_t_uint32 flags)
a98cef7e 108{
d8873dfe
AW
109 struct scm_vm_cont *p;
110
111 p = scm_gc_malloc (sizeof (*p), "capture_vm_cont");
112 p->stack_size = sp - stack_base + 1;
d8eeb67c
LC
113 p->stack_base = scm_gc_malloc (p->stack_size * sizeof (SCM),
114 "capture_vm_cont");
d8873dfe
AW
115#if defined(VM_ENABLE_STACK_NULLING) && 0
116 /* Tail continuations leave their frame on the stack for subsequent
117 application, but don't capture the frame -- so there are some elements on
118 the stack then, and this check doesn't work, so disable it for now. */
119 if (sp >= vp->stack_base)
66db076a
AW
120 if (!vp->sp[0] || vp->sp[1])
121 abort ();
11ea1aba
AW
122 memset (p->stack_base, 0, p->stack_size * sizeof (SCM));
123#endif
d8873dfe
AW
124 p->ra = ra;
125 p->mvra = mvra;
126 p->sp = sp;
127 p->fp = fp;
128 memcpy (p->stack_base, stack_base, (sp + 1 - stack_base) * sizeof (SCM));
129 p->reloc = p->stack_base - stack_base;
9ede013f 130 p->dynstack = dynstack;
cee1d22c 131 p->flags = flags;
6f3b0cc2 132 return scm_cell (scm_tc7_vm_cont, (scm_t_bits)p);
a98cef7e
KN
133}
134
135static void
d8873dfe 136vm_return_to_continuation (SCM vm, SCM cont, size_t n, SCM *argv)
a98cef7e 137{
d8873dfe
AW
138 struct scm_vm *vp;
139 struct scm_vm_cont *cp;
140 SCM *argv_copy;
141
142 argv_copy = alloca (n * sizeof(SCM));
143 memcpy (argv_copy, argv, n * sizeof(SCM));
144
145 vp = SCM_VM_DATA (vm);
146 cp = SCM_VM_CONT_DATA (cont);
147
148 if (n == 0 && !cp->mvra)
149 scm_misc_error (NULL, "Too few values returned to continuation",
150 SCM_EOL);
151
152 if (vp->stack_size < cp->stack_size + n + 1)
29366989
AW
153 scm_misc_error ("vm-engine", "not enough space to reinstate continuation",
154 scm_list_2 (vm, cont));
155
11ea1aba
AW
156#ifdef VM_ENABLE_STACK_NULLING
157 {
d8873dfe 158 scm_t_ptrdiff nzero = (vp->sp - cp->sp);
11ea1aba 159 if (nzero > 0)
d8873dfe 160 memset (vp->stack_base + cp->stack_size, 0, nzero * sizeof (SCM));
66db076a
AW
161 /* actually nzero should always be negative, because vm_reset_stack will
162 unwind the stack to some point *below* this continuation */
11ea1aba
AW
163 }
164#endif
d8873dfe
AW
165 vp->sp = cp->sp;
166 vp->fp = cp->fp;
167 memcpy (vp->stack_base, cp->stack_base, cp->stack_size * sizeof (SCM));
bfffd258 168
d8873dfe
AW
169 if (n == 1 || !cp->mvra)
170 {
171 vp->ip = cp->ra;
172 vp->sp++;
173 *vp->sp = argv_copy[0];
174 }
175 else
176 {
177 size_t i;
178 for (i = 0; i < n; i++)
179 {
180 vp->sp++;
181 *vp->sp = argv_copy[i];
182 }
183 vp->sp++;
184 *vp->sp = scm_from_size_t (n);
185 vp->ip = cp->mvra;
186 }
187}
bfffd258 188
bfffd258 189SCM
9ede013f 190scm_i_capture_current_stack (void)
bfffd258 191{
9ede013f
AW
192 scm_i_thread *thread;
193 SCM vm;
194 struct scm_vm *vp;
195
196 thread = SCM_I_CURRENT_THREAD;
197 vm = scm_the_vm ();
198 vp = SCM_VM_DATA (vm);
199
200 return scm_i_vm_capture_stack (vp->stack_base, vp->fp, vp->sp, vp->ip, NULL,
201 scm_dynstack_capture_all (&thread->dynstack),
202 0);
a98cef7e
KN
203}
204
c850a0ff
AW
205static void vm_dispatch_hook (SCM vm, int hook_num,
206 SCM *argv, int n) SCM_NOINLINE;
207
b1b942b7 208static void
c850a0ff 209vm_dispatch_hook (SCM vm, int hook_num, SCM *argv, int n)
b1b942b7 210{
7656f194
AW
211 struct scm_vm *vp;
212 SCM hook;
b3567435 213 struct scm_frame c_frame;
8e4c60ff 214 scm_t_cell *frame;
893fb8d0 215 int saved_trace_level;
b1b942b7 216
7656f194
AW
217 vp = SCM_VM_DATA (vm);
218 hook = vp->hooks[hook_num];
b1b942b7 219
7656f194
AW
220 if (SCM_LIKELY (scm_is_false (hook))
221 || scm_is_null (SCM_HOOK_PROCEDURES (hook)))
222 return;
b3567435 223
893fb8d0
AW
224 saved_trace_level = vp->trace_level;
225 vp->trace_level = 0;
b3567435
LC
226
227 /* Allocate a frame object on the stack. This is more efficient than calling
228 `scm_c_make_frame ()' to allocate on the heap, but it forces hooks to not
229 capture frame objects.
230
231 At the same time, procedures such as `frame-procedure' make sense only
232 while the stack frame represented by the frame object is visible, so it
233 seems reasonable to limit the lifetime of frame objects. */
234
235 c_frame.stack_holder = vm;
236 c_frame.fp = vp->fp;
237 c_frame.sp = vp->sp;
238 c_frame.ip = vp->ip;
239 c_frame.offset = 0;
8e4c60ff
LC
240
241 /* Arrange for FRAME to be 8-byte aligned, like any other cell. */
242 frame = alloca (sizeof (*frame) + 8);
243 frame = (scm_t_cell *) ROUND_UP ((scm_t_uintptr) frame, 8UL);
244
245 frame->word_0 = SCM_PACK (scm_tc7_frame);
21041372 246 frame->word_1 = SCM_PACK_POINTER (&c_frame);
b3567435 247
c850a0ff
AW
248 if (n == 0)
249 {
250 SCM args[1];
251
252 args[0] = SCM_PACK_POINTER (frame);
253 scm_c_run_hookn (hook, args, 1);
254 }
255 else if (n == 1)
256 {
257 SCM args[2];
258
259 args[0] = SCM_PACK_POINTER (frame);
260 args[1] = argv[0];
261 scm_c_run_hookn (hook, args, 2);
262 }
263 else
264 {
265 SCM args = SCM_EOL;
266
267 while (n--)
268 args = scm_cons (argv[n], args);
269 scm_c_run_hook (hook, scm_cons (SCM_PACK_POINTER (frame), args));
270 }
b3567435 271
893fb8d0 272 vp->trace_level = saved_trace_level;
b1b942b7
AW
273}
274
4f66bcde 275static void
9d381ba4
AW
276vm_abort (SCM vm, size_t n, scm_i_jmp_buf *current_registers) SCM_NORETURN;
277
278static void
279vm_abort (SCM vm, size_t n, scm_i_jmp_buf *current_registers)
4f66bcde 280{
eaefabee 281 size_t i;
2d026f04
AW
282 ssize_t tail_len;
283 SCM tag, tail, *argv;
eaefabee 284
2d026f04
AW
285 /* FIXME: VM_ENABLE_STACK_NULLING */
286 tail = *(SCM_VM_DATA (vm)->sp--);
287 /* NULLSTACK (1) */
288 tail_len = scm_ilength (tail);
289 if (tail_len < 0)
29366989
AW
290 scm_misc_error ("vm-engine", "tail values to abort should be a list",
291 scm_list_1 (tail));
292
eaefabee 293 tag = SCM_VM_DATA (vm)->sp[-n];
2d026f04 294 argv = alloca ((n + tail_len) * sizeof (SCM));
eaefabee
AW
295 for (i = 0; i < n; i++)
296 argv[i] = SCM_VM_DATA (vm)->sp[-(n-1-i)];
2d026f04
AW
297 for (; i < n + tail_len; i++, tail = scm_cdr (tail))
298 argv[i] = scm_car (tail);
299 /* NULLSTACK (n + 1) */
eaefabee
AW
300 SCM_VM_DATA (vm)->sp -= n + 1;
301
9d381ba4 302 scm_c_abort (vm, tag, n + tail_len, argv, current_registers);
cee1d22c
AW
303}
304
9d381ba4
AW
305static void
306vm_reinstate_partial_continuation (SCM vm, SCM cont, size_t n, SCM *argv,
307 scm_t_dynstack *dynstack,
308 scm_i_jmp_buf *registers)
cee1d22c 309{
07801437
AW
310 struct scm_vm *vp;
311 struct scm_vm_cont *cp;
312 SCM *argv_copy, *base;
9ede013f 313 scm_t_ptrdiff reloc;
07801437
AW
314 size_t i;
315
316 argv_copy = alloca (n * sizeof(SCM));
317 memcpy (argv_copy, argv, n * sizeof(SCM));
318
319 vp = SCM_VM_DATA (vm);
320 cp = SCM_VM_CONT_DATA (cont);
321 base = SCM_FRAME_UPPER_ADDRESS (vp->fp) + 1;
9ede013f 322 reloc = cp->reloc + (base - cp->stack_base);
07801437 323
0fc9040f 324#define RELOC(scm_p) \
9ede013f 325 (((SCM *) (scm_p)) + reloc)
07801437
AW
326
327 if ((base - vp->stack_base) + cp->stack_size + n + 1 > vp->stack_size)
29366989
AW
328 scm_misc_error ("vm-engine",
329 "not enough space to instate partial continuation",
330 scm_list_2 (vm, cont));
07801437
AW
331
332 memcpy (base, cp->stack_base, cp->stack_size * sizeof (SCM));
333
334 /* now relocate frame pointers */
335 {
336 SCM *fp;
337 for (fp = RELOC (cp->fp);
338 SCM_FRAME_LOWER_ADDRESS (fp) > base;
339 fp = SCM_FRAME_DYNAMIC_LINK (fp))
340 SCM_FRAME_SET_DYNAMIC_LINK (fp, RELOC (SCM_FRAME_DYNAMIC_LINK (fp)));
341 }
342
343 vp->sp = base - 1 + cp->stack_size;
344 vp->fp = RELOC (cp->fp);
345 vp->ip = cp->mvra;
346
07801437
AW
347 /* now push args. ip is in a MV context. */
348 for (i = 0; i < n; i++)
349 {
350 vp->sp++;
351 *vp->sp = argv_copy[i];
352 }
353 vp->sp++;
354 *vp->sp = scm_from_size_t (n);
9a1c6f1f 355
9d381ba4
AW
356 /* The prompt captured a slice of the dynamic stack. Here we wind
357 those entries onto the current thread's stack. We also have to
358 relocate any prompts that we see along the way. */
359 {
360 scm_t_bits *walk;
361
362 for (walk = SCM_DYNSTACK_FIRST (cp->dynstack);
363 SCM_DYNSTACK_TAG (walk);
364 walk = SCM_DYNSTACK_NEXT (walk))
365 {
366 scm_t_bits tag = SCM_DYNSTACK_TAG (walk);
367
368 if (SCM_DYNSTACK_TAG_TYPE (tag) == SCM_DYNSTACK_TYPE_PROMPT)
369 scm_dynstack_wind_prompt (dynstack, walk, reloc, registers);
370 else
371 scm_dynstack_wind_1 (dynstack, walk);
372 }
373 }
adbdfd6d 374#undef RELOC
4f66bcde
AW
375}
376
377\f
17e90c5e
KN
378/*
379 * VM Internal functions
380 */
381
6f3b0cc2
AW
382void
383scm_i_vm_print (SCM x, SCM port, scm_print_state *pstate)
384{
0a935b2a
LC
385 const struct scm_vm *vm;
386
387 vm = SCM_VM_DATA (x);
388
0607ebbf 389 scm_puts_unlocked ("#<vm ", port);
0a935b2a
LC
390 switch (vm->engine)
391 {
392 case SCM_VM_REGULAR_ENGINE:
0607ebbf 393 scm_puts_unlocked ("regular-engine ", port);
0a935b2a
LC
394 break;
395
396 case SCM_VM_DEBUG_ENGINE:
0607ebbf 397 scm_puts_unlocked ("debug-engine ", port);
0a935b2a
LC
398 break;
399
400 default:
0607ebbf 401 scm_puts_unlocked ("unknown-engine ", port);
0a935b2a 402 }
6f3b0cc2 403 scm_uintprint (SCM_UNPACK (x), 16, port);
0607ebbf 404 scm_puts_unlocked (">", port);
6f3b0cc2
AW
405}
406
53bdfcf0
AW
407\f
408/*
409 * VM Error Handling
410 */
411
412static void vm_error (const char *msg, SCM arg) SCM_NORETURN;
4d497b62
AW
413static void vm_error_bad_instruction (scm_t_uint32 inst) SCM_NORETURN SCM_NOINLINE;
414static void vm_error_unbound (SCM proc, SCM sym) SCM_NORETURN SCM_NOINLINE;
415static void vm_error_unbound_fluid (SCM proc, SCM fluid) SCM_NORETURN SCM_NOINLINE;
416static void vm_error_not_a_variable (const char *func_name, SCM x) SCM_NORETURN SCM_NOINLINE;
417static void vm_error_apply_to_non_list (SCM x) SCM_NORETURN SCM_NOINLINE;
418static void vm_error_kwargs_length_not_even (SCM proc) SCM_NORETURN SCM_NOINLINE;
419static void vm_error_kwargs_invalid_keyword (SCM proc) SCM_NORETURN SCM_NOINLINE;
420static void vm_error_kwargs_unrecognized_keyword (SCM proc) SCM_NORETURN SCM_NOINLINE;
421static void vm_error_too_many_args (int nargs) SCM_NORETURN SCM_NOINLINE;
422static void vm_error_wrong_num_args (SCM proc) SCM_NORETURN SCM_NOINLINE;
423static void vm_error_wrong_type_apply (SCM proc) SCM_NORETURN SCM_NOINLINE;
424static void vm_error_stack_overflow (struct scm_vm *vp) SCM_NORETURN SCM_NOINLINE;
425static void vm_error_stack_underflow (void) SCM_NORETURN SCM_NOINLINE;
426static void vm_error_improper_list (SCM x) SCM_NORETURN SCM_NOINLINE;
427static void vm_error_not_a_pair (const char *subr, SCM x) SCM_NORETURN SCM_NOINLINE;
428static void vm_error_not_a_bytevector (const char *subr, SCM x) SCM_NORETURN SCM_NOINLINE;
429static void vm_error_not_a_struct (const char *subr, SCM x) SCM_NORETURN SCM_NOINLINE;
430static void vm_error_no_values (void) SCM_NORETURN SCM_NOINLINE;
431static void vm_error_not_enough_values (void) SCM_NORETURN SCM_NOINLINE;
432static void vm_error_continuation_not_rewindable (SCM cont) SCM_NORETURN SCM_NOINLINE;
433static void vm_error_bad_wide_string_length (size_t len) SCM_NORETURN SCM_NOINLINE;
53bdfcf0
AW
434
435static void
436vm_error (const char *msg, SCM arg)
437{
438 scm_throw (sym_vm_error,
439 scm_list_3 (sym_vm_run, scm_from_latin1_string (msg),
440 SCM_UNBNDP (arg) ? SCM_EOL : scm_list_1 (arg)));
441 abort(); /* not reached */
442}
443
444static void
445vm_error_bad_instruction (scm_t_uint32 inst)
446{
447 vm_error ("VM: Bad instruction: ~s", scm_from_uint32 (inst));
448}
449
450static void
451vm_error_unbound (SCM proc, SCM sym)
452{
453 scm_error_scm (scm_misc_error_key, proc,
454 scm_from_latin1_string ("Unbound variable: ~s"),
455 scm_list_1 (sym), SCM_BOOL_F);
456}
457
458static void
459vm_error_unbound_fluid (SCM proc, SCM fluid)
460{
461 scm_error_scm (scm_misc_error_key, proc,
462 scm_from_latin1_string ("Unbound fluid: ~s"),
463 scm_list_1 (fluid), SCM_BOOL_F);
464}
465
466static void
467vm_error_not_a_variable (const char *func_name, SCM x)
468{
469 scm_error (scm_arg_type_key, func_name, "Not a variable: ~S",
470 scm_list_1 (x), scm_list_1 (x));
471}
472
53bdfcf0
AW
473static void
474vm_error_apply_to_non_list (SCM x)
475{
476 scm_error (scm_arg_type_key, "apply", "Apply to non-list: ~S",
477 scm_list_1 (x), scm_list_1 (x));
478}
479
480static void
481vm_error_kwargs_length_not_even (SCM proc)
482{
483 scm_error_scm (sym_keyword_argument_error, proc,
484 scm_from_latin1_string ("Odd length of keyword argument list"),
485 SCM_EOL, SCM_BOOL_F);
486}
487
488static void
489vm_error_kwargs_invalid_keyword (SCM proc)
490{
491 scm_error_scm (sym_keyword_argument_error, proc,
492 scm_from_latin1_string ("Invalid keyword"),
493 SCM_EOL, SCM_BOOL_F);
494}
495
496static void
497vm_error_kwargs_unrecognized_keyword (SCM proc)
498{
499 scm_error_scm (sym_keyword_argument_error, proc,
500 scm_from_latin1_string ("Unrecognized keyword"),
501 SCM_EOL, SCM_BOOL_F);
502}
503
504static void
505vm_error_too_many_args (int nargs)
506{
507 vm_error ("VM: Too many arguments", scm_from_int (nargs));
508}
509
510static void
511vm_error_wrong_num_args (SCM proc)
512{
513 scm_wrong_num_args (proc);
514}
515
516static void
517vm_error_wrong_type_apply (SCM proc)
518{
519 scm_error (scm_arg_type_key, NULL, "Wrong type to apply: ~S",
520 scm_list_1 (proc), scm_list_1 (proc));
521}
522
523static void
524vm_error_stack_overflow (struct scm_vm *vp)
525{
526 if (vp->stack_limit < vp->stack_base + vp->stack_size)
527 /* There are VM_STACK_RESERVE_SIZE bytes left. Make them available so
528 that `throw' below can run on this VM. */
529 vp->stack_limit = vp->stack_base + vp->stack_size;
530 else
531 /* There is no space left on the stack. FIXME: Do something more
532 sensible here! */
533 abort ();
534 vm_error ("VM: Stack overflow", SCM_UNDEFINED);
535}
536
537static void
538vm_error_stack_underflow (void)
539{
540 vm_error ("VM: Stack underflow", SCM_UNDEFINED);
541}
542
543static void
544vm_error_improper_list (SCM x)
545{
546 vm_error ("Expected a proper list, but got object with tail ~s", x);
547}
548
549static void
550vm_error_not_a_pair (const char *subr, SCM x)
551{
552 scm_wrong_type_arg_msg (subr, 1, x, "pair");
553}
554
555static void
556vm_error_not_a_bytevector (const char *subr, SCM x)
557{
558 scm_wrong_type_arg_msg (subr, 1, x, "bytevector");
559}
560
561static void
562vm_error_not_a_struct (const char *subr, SCM x)
563{
564 scm_wrong_type_arg_msg (subr, 1, x, "struct");
565}
566
567static void
568vm_error_no_values (void)
569{
570 vm_error ("Zero values returned to single-valued continuation",
571 SCM_UNDEFINED);
572}
573
574static void
575vm_error_not_enough_values (void)
576{
577 vm_error ("Too few values returned to continuation", SCM_UNDEFINED);
578}
579
580static void
581vm_error_continuation_not_rewindable (SCM cont)
582{
583 vm_error ("Unrewindable partial continuation", cont);
584}
585
586static void
587vm_error_bad_wide_string_length (size_t len)
588{
589 vm_error ("VM: Bad wide string length: ~S", scm_from_size_t (len));
590}
591
53bdfcf0
AW
592
593\f
28b119ee 594
67b699cc 595static SCM boot_continuation;
2fda0242 596
510ca126
AW
597static SCM rtl_boot_continuation;
598static SCM rtl_apply;
599static SCM rtl_values;
600
601static const scm_t_uint32 rtl_boot_continuation_code[] = {
602 SCM_PACK_RTL_24 (scm_rtl_op_halt_values, 0), /* empty stack frame in r0-r2, results from r3 */
603 SCM_PACK_RTL_24 (scm_rtl_op_halt, 0) /* result in r0 */
604};
605
606static scm_t_uint32* rtl_boot_multiple_value_continuation_code =
607 (scm_t_uint32 *) rtl_boot_continuation_code;
608
609static scm_t_uint32* rtl_boot_single_value_continuation_code =
610 (scm_t_uint32 *) rtl_boot_continuation_code + 1;
611
612static const scm_t_uint32 rtl_apply_code[] = {
613 SCM_PACK_RTL_24 (scm_rtl_op_apply, 0) /* proc in r0, args from r1, nargs set */
614};
615
616static const scm_t_uint32 rtl_values_code[] = {
617 SCM_PACK_RTL_24 (scm_rtl_op_values, 0) /* vals from r0 */
618};
619
620
a98cef7e
KN
621\f
622/*
623 * VM
624 */
625
b7393ea1 626static SCM
b782ed01 627resolve_variable (SCM what, SCM module)
b7393ea1 628{
9bd48cb1 629 if (SCM_LIKELY (scm_is_symbol (what)))
b7393ea1 630 {
b782ed01
AW
631 if (scm_is_true (module))
632 return scm_module_lookup (module, what);
b7393ea1 633 else
62e15979 634 return scm_module_lookup (scm_the_root_module (), what);
b7393ea1
AW
635 }
636 else
637 {
b782ed01
AW
638 SCM modname, sym, public;
639
640 modname = SCM_CAR (what);
641 sym = SCM_CADR (what);
642 public = SCM_CADDR (what);
643
644 if (scm_is_true (public))
645 return scm_public_lookup (modname, sym);
646 else
647 return scm_private_lookup (modname, sym);
b7393ea1
AW
648 }
649}
650
aab9d46c 651#define VM_MIN_STACK_SIZE (1024)
51e9ba2f 652#define VM_DEFAULT_STACK_SIZE (64 * 1024)
aab9d46c
SIT
653static size_t vm_stack_size = VM_DEFAULT_STACK_SIZE;
654
655static void
656initialize_default_stack_size (void)
657{
658 int size = scm_getenv_int ("GUILE_STACK_SIZE", vm_stack_size);
659 if (size >= VM_MIN_STACK_SIZE)
660 vm_stack_size = size;
661}
17e90c5e 662
17e90c5e 663#define VM_NAME vm_regular_engine
510ca126 664#define RTL_VM_NAME rtl_vm_regular_engine
6d14383e
AW
665#define FUNC_NAME "vm-regular-engine"
666#define VM_ENGINE SCM_VM_REGULAR_ENGINE
83495480 667#include "vm-engine.c"
17e90c5e 668#undef VM_NAME
510ca126 669#undef RTL_VM_NAME
6d14383e 670#undef FUNC_NAME
17e90c5e 671#undef VM_ENGINE
17e90c5e
KN
672
673#define VM_NAME vm_debug_engine
510ca126 674#define RTL_VM_NAME rtl_vm_debug_engine
6d14383e
AW
675#define FUNC_NAME "vm-debug-engine"
676#define VM_ENGINE SCM_VM_DEBUG_ENGINE
83495480 677#include "vm-engine.c"
17e90c5e 678#undef VM_NAME
510ca126 679#undef RTL_VM_NAME
6d14383e 680#undef FUNC_NAME
17e90c5e
KN
681#undef VM_ENGINE
682
6d14383e
AW
683static const scm_t_vm_engine vm_engines[] =
684 { vm_regular_engine, vm_debug_engine };
685
e3eb628d
LC
686#ifdef VM_ENABLE_PRECISE_STACK_GC_SCAN
687
688/* The GC "kind" for the VM stack. */
689static int vm_stack_gc_kind;
690
691#endif
692
a98cef7e 693static SCM
17e90c5e
KN
694make_vm (void)
695#define FUNC_NAME "make_vm"
a98cef7e 696{
17e90c5e 697 int i;
7f991c7d 698 struct scm_vm *vp;
747a1635 699
7f991c7d 700 vp = scm_gc_malloc (sizeof (struct scm_vm), "vm");
d8eeb67c 701
aab9d46c 702 vp->stack_size= vm_stack_size;
e3eb628d
LC
703
704#ifdef VM_ENABLE_PRECISE_STACK_GC_SCAN
4168aa46
TTN
705 vp->stack_base = (SCM *)
706 GC_generic_malloc (vp->stack_size * sizeof (SCM), vm_stack_gc_kind);
e3eb628d
LC
707
708 /* Keep a pointer to VP so that `vm_stack_mark ()' can know what the stack
709 top is. */
21041372 710 *vp->stack_base = SCM_PACK_POINTER (vp);
e3eb628d
LC
711 vp->stack_base++;
712 vp->stack_size--;
713#else
d8eeb67c
LC
714 vp->stack_base = scm_gc_malloc (vp->stack_size * sizeof (SCM),
715 "stack-base");
e3eb628d
LC
716#endif
717
2bbe1533
AW
718#ifdef VM_ENABLE_STACK_NULLING
719 memset (vp->stack_base, 0, vp->stack_size * sizeof (SCM));
720#endif
f1046e6b 721 vp->stack_limit = vp->stack_base + vp->stack_size - VM_STACK_RESERVE_SIZE;
3616e9e9
KN
722 vp->ip = NULL;
723 vp->sp = vp->stack_base - 1;
724 vp->fp = NULL;
ea9f4f4b 725 vp->engine = vm_default_engine;
7656f194 726 vp->trace_level = 0;
17e90c5e 727 for (i = 0; i < SCM_VM_NUM_HOOKS; i++)
3d5ee0cd 728 vp->hooks[i] = SCM_BOOL_F;
6f3b0cc2 729 return scm_cell (scm_tc7_vm, (scm_t_bits)vp);
a98cef7e 730}
17e90c5e 731#undef FUNC_NAME
a98cef7e 732
e3eb628d
LC
733#ifdef VM_ENABLE_PRECISE_STACK_GC_SCAN
734
735/* Mark the VM stack region between its base and its current top. */
736static struct GC_ms_entry *
737vm_stack_mark (GC_word *addr, struct GC_ms_entry *mark_stack_ptr,
738 struct GC_ms_entry *mark_stack_limit, GC_word env)
739{
740 GC_word *word;
741 const struct scm_vm *vm;
742
743 /* The first word of the VM stack should contain a pointer to the
744 corresponding VM. */
745 vm = * ((struct scm_vm **) addr);
746
8071c490 747 if (vm == NULL
f1046e6b 748 || (SCM *) addr != vm->stack_base - 1)
e3eb628d
LC
749 /* ADDR must be a pointer to a free-list element, which we must ignore
750 (see warning in <gc/gc_mark.h>). */
751 return mark_stack_ptr;
752
e3eb628d
LC
753 for (word = (GC_word *) vm->stack_base; word <= (GC_word *) vm->sp; word++)
754 mark_stack_ptr = GC_MARK_AND_PUSH ((* (GC_word **) word),
755 mark_stack_ptr, mark_stack_limit,
756 NULL);
757
758 return mark_stack_ptr;
759}
760
761#endif /* VM_ENABLE_PRECISE_STACK_GC_SCAN */
762
763
6d14383e 764SCM
4abef68f 765scm_c_vm_run (SCM vm, SCM program, SCM *argv, int nargs)
6d14383e 766{
4abef68f 767 struct scm_vm *vp = SCM_VM_DATA (vm);
b95d76fc 768 SCM_CHECK_STACK;
7656f194 769 return vm_engines[vp->engine](vm, program, argv, nargs);
6d14383e
AW
770}
771
a98cef7e
KN
772/* Scheme interface */
773
271c3d31
LC
774SCM_DEFINE (scm_the_vm, "the-vm", 0, 0, 0,
775 (void),
776 "Return the current thread's VM.")
777#define FUNC_NAME s_scm_the_vm
778{
ea9f4f4b
AW
779 scm_i_thread *t = SCM_I_CURRENT_THREAD;
780
781 if (SCM_UNLIKELY (scm_is_false (t->vm)))
782 t->vm = make_vm ();
783
784 return t->vm;
271c3d31 785}
499a4c07
KN
786#undef FUNC_NAME
787
788
a98cef7e
KN
789SCM_DEFINE (scm_vm_p, "vm?", 1, 0, 0,
790 (SCM obj),
17e90c5e 791 "")
a98cef7e
KN
792#define FUNC_NAME s_scm_vm_p
793{
9bd48cb1 794 return scm_from_bool (SCM_VM_P (obj));
a98cef7e
KN
795}
796#undef FUNC_NAME
797
798SCM_DEFINE (scm_make_vm, "make-vm", 0, 0, 0,
17e90c5e
KN
799 (void),
800 "")
801#define FUNC_NAME s_scm_make_vm,
a98cef7e 802{
17e90c5e 803 return make_vm ();
a98cef7e
KN
804}
805#undef FUNC_NAME
806
17e90c5e 807SCM_DEFINE (scm_vm_ip, "vm:ip", 1, 0, 0,
a98cef7e 808 (SCM vm),
17e90c5e
KN
809 "")
810#define FUNC_NAME s_scm_vm_ip
a98cef7e
KN
811{
812 SCM_VALIDATE_VM (1, vm);
3d27ef4b 813 return scm_from_unsigned_integer ((scm_t_bits) SCM_VM_DATA (vm)->ip);
a98cef7e
KN
814}
815#undef FUNC_NAME
816
817SCM_DEFINE (scm_vm_sp, "vm:sp", 1, 0, 0,
818 (SCM vm),
17e90c5e 819 "")
a98cef7e
KN
820#define FUNC_NAME s_scm_vm_sp
821{
822 SCM_VALIDATE_VM (1, vm);
3d27ef4b 823 return scm_from_unsigned_integer ((scm_t_bits) SCM_VM_DATA (vm)->sp);
a98cef7e
KN
824}
825#undef FUNC_NAME
826
827SCM_DEFINE (scm_vm_fp, "vm:fp", 1, 0, 0,
828 (SCM vm),
17e90c5e 829 "")
a98cef7e
KN
830#define FUNC_NAME s_scm_vm_fp
831{
832 SCM_VALIDATE_VM (1, vm);
3d27ef4b 833 return scm_from_unsigned_integer ((scm_t_bits) SCM_VM_DATA (vm)->fp);
a98cef7e
KN
834}
835#undef FUNC_NAME
836
17e90c5e
KN
837#define VM_DEFINE_HOOK(n) \
838{ \
3d5ee0cd 839 struct scm_vm *vp; \
17e90c5e 840 SCM_VALIDATE_VM (1, vm); \
3d5ee0cd 841 vp = SCM_VM_DATA (vm); \
8b22ed7a 842 if (scm_is_false (vp->hooks[n])) \
238e7a11 843 vp->hooks[n] = scm_make_hook (SCM_I_MAKINUM (1)); \
3d5ee0cd 844 return vp->hooks[n]; \
17e90c5e
KN
845}
846
c45d4d77 847SCM_DEFINE (scm_vm_apply_hook, "vm-apply-hook", 1, 0, 0,
17e90c5e
KN
848 (SCM vm),
849 "")
c45d4d77 850#define FUNC_NAME s_scm_vm_apply_hook
a98cef7e 851{
c45d4d77 852 VM_DEFINE_HOOK (SCM_VM_APPLY_HOOK);
a98cef7e
KN
853}
854#undef FUNC_NAME
855
c45d4d77 856SCM_DEFINE (scm_vm_push_continuation_hook, "vm-push-continuation-hook", 1, 0, 0,
17e90c5e
KN
857 (SCM vm),
858 "")
c45d4d77 859#define FUNC_NAME s_scm_vm_push_continuation_hook
a98cef7e 860{
c45d4d77 861 VM_DEFINE_HOOK (SCM_VM_PUSH_CONTINUATION_HOOK);
a98cef7e
KN
862}
863#undef FUNC_NAME
864
c45d4d77 865SCM_DEFINE (scm_vm_pop_continuation_hook, "vm-pop-continuation-hook", 1, 0, 0,
a98cef7e 866 (SCM vm),
17e90c5e 867 "")
c45d4d77 868#define FUNC_NAME s_scm_vm_pop_continuation_hook
a98cef7e 869{
c45d4d77 870 VM_DEFINE_HOOK (SCM_VM_POP_CONTINUATION_HOOK);
a98cef7e
KN
871}
872#undef FUNC_NAME
873
c45d4d77 874SCM_DEFINE (scm_vm_next_hook, "vm-next-hook", 1, 0, 0,
a98cef7e 875 (SCM vm),
17e90c5e 876 "")
c45d4d77 877#define FUNC_NAME s_scm_vm_next_hook
a98cef7e 878{
c45d4d77 879 VM_DEFINE_HOOK (SCM_VM_NEXT_HOOK);
a98cef7e
KN
880}
881#undef FUNC_NAME
f3120251
AW
882
883SCM_DEFINE (scm_vm_abort_continuation_hook, "vm-abort-continuation-hook", 1, 0, 0,
884 (SCM vm),
885 "")
886#define FUNC_NAME s_scm_vm_abort_continuation_hook
887{
888 VM_DEFINE_HOOK (SCM_VM_ABORT_CONTINUATION_HOOK);
889}
890#undef FUNC_NAME
891
892SCM_DEFINE (scm_vm_restore_continuation_hook, "vm-restore-continuation-hook", 1, 0, 0,
893 (SCM vm),
894 "")
895#define FUNC_NAME s_scm_vm_restore_continuation_hook
896{
897 VM_DEFINE_HOOK (SCM_VM_RESTORE_CONTINUATION_HOOK);
898}
899#undef FUNC_NAME
a98cef7e 900
7656f194 901SCM_DEFINE (scm_vm_trace_level, "vm-trace-level", 1, 0, 0,
17e90c5e
KN
902 (SCM vm),
903 "")
7656f194 904#define FUNC_NAME s_scm_vm_trace_level
a98cef7e 905{
a98cef7e 906 SCM_VALIDATE_VM (1, vm);
7656f194
AW
907 return scm_from_int (SCM_VM_DATA (vm)->trace_level);
908}
909#undef FUNC_NAME
910
911SCM_DEFINE (scm_set_vm_trace_level_x, "set-vm-trace-level!", 2, 0, 0,
912 (SCM vm, SCM level),
913 "")
914#define FUNC_NAME s_scm_set_vm_trace_level_x
915{
916 SCM_VALIDATE_VM (1, vm);
917 SCM_VM_DATA (vm)->trace_level = scm_to_int (level);
918 return SCM_UNSPECIFIED;
a98cef7e
KN
919}
920#undef FUNC_NAME
921
922\f
ea9f4f4b
AW
923/*
924 * VM engines
925 */
926
927static int
928symbol_to_vm_engine (SCM engine, const char *FUNC_NAME)
929{
930 if (scm_is_eq (engine, sym_regular))
931 return SCM_VM_REGULAR_ENGINE;
932 else if (scm_is_eq (engine, sym_debug))
933 return SCM_VM_DEBUG_ENGINE;
934 else
935 SCM_MISC_ERROR ("Unknown VM engine: ~a", scm_list_1 (engine));
936}
937
938static SCM
939vm_engine_to_symbol (int engine, const char *FUNC_NAME)
940{
941 switch (engine)
942 {
943 case SCM_VM_REGULAR_ENGINE:
944 return sym_regular;
945 case SCM_VM_DEBUG_ENGINE:
946 return sym_debug;
947 default:
948 /* ? */
949 SCM_MISC_ERROR ("Unknown VM engine: ~a",
950 scm_list_1 (scm_from_int (engine)));
951 }
952}
953
ea9f4f4b
AW
954SCM_DEFINE (scm_vm_engine, "vm-engine", 1, 0, 0,
955 (SCM vm),
956 "")
957#define FUNC_NAME s_scm_vm_engine
958{
959 SCM_VALIDATE_VM (1, vm);
960 return vm_engine_to_symbol (SCM_VM_DATA (vm)->engine, FUNC_NAME);
961}
962#undef FUNC_NAME
963
964void
965scm_c_set_vm_engine_x (SCM vm, int engine)
966#define FUNC_NAME "set-vm-engine!"
967{
968 SCM_VALIDATE_VM (1, vm);
969
ea9f4f4b
AW
970 if (engine < 0 || engine >= SCM_VM_NUM_ENGINES)
971 SCM_MISC_ERROR ("Unknown VM engine: ~a",
972 scm_list_1 (scm_from_int (engine)));
973
974 SCM_VM_DATA (vm)->engine = engine;
975}
976#undef FUNC_NAME
977
978SCM_DEFINE (scm_set_vm_engine_x, "set-vm-engine!", 2, 0, 0,
979 (SCM vm, SCM engine),
980 "")
981#define FUNC_NAME s_scm_set_vm_engine_x
982{
983 scm_c_set_vm_engine_x (vm, symbol_to_vm_engine (engine, FUNC_NAME));
984 return SCM_UNSPECIFIED;
985}
986#undef FUNC_NAME
987
988void
989scm_c_set_default_vm_engine_x (int engine)
990#define FUNC_NAME "set-default-vm-engine!"
991{
992 if (engine < 0 || engine >= SCM_VM_NUM_ENGINES)
993 SCM_MISC_ERROR ("Unknown VM engine: ~a",
994 scm_list_1 (scm_from_int (engine)));
995
996 vm_default_engine = engine;
997}
998#undef FUNC_NAME
999
1000SCM_DEFINE (scm_set_default_vm_engine_x, "set-default-vm-engine!", 1, 0, 0,
1001 (SCM engine),
1002 "")
1003#define FUNC_NAME s_scm_set_default_vm_engine_x
1004{
1005 scm_c_set_default_vm_engine_x (symbol_to_vm_engine (engine, FUNC_NAME));
1006 return SCM_UNSPECIFIED;
1007}
1008#undef FUNC_NAME
1009
1010static void reinstate_vm (SCM vm)
1011{
1012 scm_i_thread *t = SCM_I_CURRENT_THREAD;
1013 t->vm = vm;
1014}
1015
1016SCM_DEFINE (scm_call_with_vm, "call-with-vm", 2, 0, 1,
1017 (SCM vm, SCM proc, SCM args),
1018 "Apply @var{proc} to @var{args} in a dynamic extent in which\n"
1019 "@var{vm} is the current VM.\n\n"
1020 "As an implementation restriction, if @var{vm} is not the same\n"
1021 "as the current thread's VM, continuations captured within the\n"
1022 "call to @var{proc} may not be reinstated once control leaves\n"
1023 "@var{proc}.")
1024#define FUNC_NAME s_scm_call_with_vm
1025{
1026 SCM prev_vm, ret;
1027 SCM *argv;
1028 int i, nargs;
1029 scm_t_wind_flags flags;
1030 scm_i_thread *t = SCM_I_CURRENT_THREAD;
1031
1032 SCM_VALIDATE_VM (1, vm);
1033 SCM_VALIDATE_PROC (2, proc);
1034
1035 nargs = scm_ilength (args);
1036 if (SCM_UNLIKELY (nargs < 0))
1037 scm_wrong_type_arg_msg (FUNC_NAME, 3, args, "list");
1038
1039 argv = alloca (nargs * sizeof(SCM));
1040 for (i = 0; i < nargs; i++)
1041 {
1042 argv[i] = SCM_CAR (args);
1043 args = SCM_CDR (args);
1044 }
1045
1046 prev_vm = t->vm;
1047
1048 /* Reentry can happen via invokation of a saved continuation, but
1049 continuations only save the state of the VM that they are in at
1050 capture-time, which might be different from this one. So, in the
1051 case that the VMs are different, set up a non-rewindable frame to
1052 prevent reinstating an incomplete continuation. */
1053 flags = scm_is_eq (prev_vm, vm) ? 0 : SCM_F_WIND_EXPLICITLY;
1054 if (flags)
1055 {
1056 scm_dynwind_begin (0);
1057 scm_dynwind_unwind_handler_with_scm (reinstate_vm, prev_vm, flags);
1058 t->vm = vm;
1059 }
1060
1061 ret = scm_c_vm_run (vm, proc, argv, nargs);
1062
1063 if (flags)
1064 scm_dynwind_end ();
1065
1066 return ret;
1067}
1068#undef FUNC_NAME
1069
1070\f
a98cef7e 1071/*
17e90c5e 1072 * Initialize
a98cef7e
KN
1073 */
1074
07e56b27
AW
1075SCM scm_load_compiled_with_vm (SCM file)
1076{
b8bc86bc
AW
1077 SCM program = scm_load_thunk_from_file (file);
1078
4abef68f 1079 return scm_c_vm_run (scm_the_vm (), program, NULL, 0);
07e56b27
AW
1080}
1081
67b699cc
AW
1082
1083static SCM
1084make_boot_program (void)
1085{
1086 struct scm_objcode *bp;
1087 size_t bp_size;
1088 SCM u8vec, ret;
968a9add
AW
1089
1090 const scm_t_uint8 text[] = {
67b699cc
AW
1091 scm_op_make_int8_1,
1092 scm_op_halt
1093 };
1094
1095 bp_size = sizeof (struct scm_objcode) + sizeof (text);
1096 bp = scm_gc_malloc_pointerless (bp_size, "boot-program");
1097 memcpy (SCM_C_OBJCODE_BASE (bp), text, sizeof (text));
1098 bp->len = sizeof(text);
1099 bp->metalen = 0;
1100
968a9add 1101 u8vec = scm_c_take_gc_bytevector ((scm_t_int8*)bp, bp_size, SCM_BOOL_F);
b8bc86bc 1102 ret = scm_make_program (scm_bytecode_to_objcode (u8vec, SCM_UNDEFINED),
67b699cc
AW
1103 SCM_BOOL_F, SCM_BOOL_F);
1104 SCM_SET_CELL_WORD_0 (ret, (SCM_CELL_WORD_0 (ret) | SCM_F_PROGRAM_IS_BOOT));
1105
1106 return ret;
1107}
1108
17e90c5e 1109void
07e56b27 1110scm_bootstrap_vm (void)
17e90c5e 1111{
44602b08
AW
1112 scm_c_register_extension ("libguile-" SCM_EFFECTIVE_VERSION,
1113 "scm_init_vm",
60ae5ca2
AW
1114 (scm_t_extension_init_func)scm_init_vm, NULL);
1115
aab9d46c
SIT
1116 initialize_default_stack_size ();
1117
4a655e50
AW
1118 sym_vm_run = scm_from_latin1_symbol ("vm-run");
1119 sym_vm_error = scm_from_latin1_symbol ("vm-error");
1120 sym_keyword_argument_error = scm_from_latin1_symbol ("keyword-argument-error");
1121 sym_regular = scm_from_latin1_symbol ("regular");
1122 sym_debug = scm_from_latin1_symbol ("debug");
0404c97d 1123
67b699cc
AW
1124 boot_continuation = make_boot_program ();
1125
e3eb628d
LC
1126#ifdef VM_ENABLE_PRECISE_STACK_GC_SCAN
1127 vm_stack_gc_kind =
1128 GC_new_kind (GC_new_free_list (),
1129 GC_MAKE_PROC (GC_new_proc (vm_stack_mark), 0),
1130 0, 1);
1131
1132#endif
07e56b27
AW
1133}
1134
1135void
1136scm_init_vm (void)
1137{
17e90c5e 1138#ifndef SCM_MAGIC_SNARFER
aeeff258 1139#include "libguile/vm.x"
17e90c5e 1140#endif
510ca126
AW
1141
1142 rtl_boot_continuation = scm_i_make_rtl_program (rtl_boot_continuation_code);
1143 rtl_apply = scm_i_make_rtl_program (rtl_apply_code);
1144 rtl_values = scm_i_make_rtl_program (rtl_values_code);
a98cef7e 1145}
17e90c5e
KN
1146
1147/*
1148 Local Variables:
1149 c-file-style: "gnu"
1150 End:
1151*/