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