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