Fix FFI struct sizing to account for trailing padding.
[bpt/guile.git] / libguile / vm.c
1 /* Copyright (C) 2001, 2009, 2010, 2011, 2012 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 static int vm_default_engine = SCM_VM_REGULAR_ENGINE;
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. */
44 static SCM sym_vm_run;
45 static SCM sym_vm_error;
46 static SCM sym_keyword_argument_error;
47 static SCM sym_regular;
48 static SCM sym_debug;
49
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
57 will ensure that assertions are enabled. Slows down the VM by about 30%. */
58 /* NB! If you enable this, search for NULLING in throw.c */
59 /* #define VM_ENABLE_STACK_NULLING */
60
61 /* #define VM_ENABLE_PARANOID_ASSERTIONS */
62
63 #if defined (VM_ENABLE_STACK_NULLING) && !defined (VM_ENABLE_ASSERTIONS)
64 #define VM_ENABLE_ASSERTIONS
65 #endif
66
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
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
77
78 \f
79 /*
80 * VM Continuation
81 */
82
83 void
84 scm_i_vm_cont_print (SCM x, SCM port, scm_print_state *pstate)
85 {
86 scm_puts_unlocked ("#<vm-continuation ", port);
87 scm_uintprint (SCM_UNPACK (x), 16, port);
88 scm_puts_unlocked (">", port);
89 }
90
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 */
102 SCM
103 scm_i_vm_capture_stack (SCM *stack_base, SCM *fp, SCM *sp, scm_t_uint8 *ra,
104 scm_t_uint8 *mvra, scm_t_dynstack *dynstack,
105 scm_t_uint32 flags)
106 {
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;
111 p->stack_base = scm_gc_malloc (p->stack_size * sizeof (SCM),
112 "capture_vm_cont");
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)
118 if (!vp->sp[0] || vp->sp[1])
119 abort ();
120 memset (p->stack_base, 0, p->stack_size * sizeof (SCM));
121 #endif
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;
128 p->dynstack = dynstack;
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_capture_current_stack (void)
189 {
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);
201 }
202
203 static void
204 vm_dispatch_hook (SCM vm, int hook_num)
205 {
206 struct scm_vm *vp;
207 SCM hook;
208 struct scm_frame c_frame;
209 scm_t_cell *frame;
210 SCM args[1];
211 int saved_trace_level;
212
213 vp = SCM_VM_DATA (vm);
214 hook = vp->hooks[hook_num];
215
216 if (SCM_LIKELY (scm_is_false (hook))
217 || scm_is_null (SCM_HOOK_PROCEDURES (hook)))
218 return;
219
220 saved_trace_level = vp->trace_level;
221 vp->trace_level = 0;
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;
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);
242 frame->word_1 = SCM_PACK_POINTER (&c_frame);
243 args[0] = SCM_PACK_POINTER (frame);
244
245 scm_c_run_hookn (hook, args, 1);
246
247 vp->trace_level = saved_trace_level;
248 }
249
250 static void
251 vm_abort (SCM vm, size_t n, scm_i_jmp_buf *current_registers) SCM_NORETURN;
252
253 static void
254 vm_abort (SCM vm, size_t n, scm_i_jmp_buf *current_registers)
255 {
256 size_t i;
257 ssize_t tail_len;
258 SCM tag, tail, *argv;
259
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)
265 scm_misc_error ("vm-engine", "tail values to abort should be a list",
266 scm_list_1 (tail));
267
268 tag = SCM_VM_DATA (vm)->sp[-n];
269 argv = alloca ((n + tail_len) * sizeof (SCM));
270 for (i = 0; i < n; i++)
271 argv[i] = SCM_VM_DATA (vm)->sp[-(n-1-i)];
272 for (; i < n + tail_len; i++, tail = scm_cdr (tail))
273 argv[i] = scm_car (tail);
274 /* NULLSTACK (n + 1) */
275 SCM_VM_DATA (vm)->sp -= n + 1;
276
277 scm_c_abort (vm, tag, n + tail_len, argv, current_registers);
278 }
279
280 static void
281 vm_reinstate_partial_continuation (SCM vm, SCM cont, size_t n, SCM *argv,
282 scm_t_dynstack *dynstack,
283 scm_i_jmp_buf *registers)
284 {
285 struct scm_vm *vp;
286 struct scm_vm_cont *cp;
287 SCM *argv_copy, *base;
288 scm_t_ptrdiff reloc;
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;
297 reloc = cp->reloc + (base - cp->stack_base);
298
299 #define RELOC(scm_p) \
300 (((SCM *) (scm_p)) + reloc)
301
302 if ((base - vp->stack_base) + cp->stack_size + n + 1 > vp->stack_size)
303 scm_misc_error ("vm-engine",
304 "not enough space to instate partial continuation",
305 scm_list_2 (vm, cont));
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
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);
330
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 }
349 #undef RELOC
350 }
351
352 \f
353 /*
354 * VM Internal functions
355 */
356
357 void
358 scm_i_vm_print (SCM x, SCM port, scm_print_state *pstate)
359 {
360 const struct scm_vm *vm;
361
362 vm = SCM_VM_DATA (x);
363
364 scm_puts_unlocked ("#<vm ", port);
365 switch (vm->engine)
366 {
367 case SCM_VM_REGULAR_ENGINE:
368 scm_puts_unlocked ("regular-engine ", port);
369 break;
370
371 case SCM_VM_DEBUG_ENGINE:
372 scm_puts_unlocked ("debug-engine ", port);
373 break;
374
375 default:
376 scm_puts_unlocked ("unknown-engine ", port);
377 }
378 scm_uintprint (SCM_UNPACK (x), 16, port);
379 scm_puts_unlocked (">", port);
380 }
381
382 \f
383 /*
384 * VM Error Handling
385 */
386
387 static void vm_error (const char *msg, SCM arg) SCM_NORETURN;
388 static void vm_error_bad_instruction (scm_t_uint32 inst) SCM_NORETURN SCM_NOINLINE;
389 static void vm_error_unbound (SCM proc, SCM sym) SCM_NORETURN SCM_NOINLINE;
390 static void vm_error_unbound_fluid (SCM proc, SCM fluid) SCM_NORETURN SCM_NOINLINE;
391 static void vm_error_not_a_variable (const char *func_name, SCM x) SCM_NORETURN SCM_NOINLINE;
392 static void vm_error_apply_to_non_list (SCM x) SCM_NORETURN SCM_NOINLINE;
393 static void vm_error_kwargs_length_not_even (SCM proc) SCM_NORETURN SCM_NOINLINE;
394 static void vm_error_kwargs_invalid_keyword (SCM proc) SCM_NORETURN SCM_NOINLINE;
395 static void vm_error_kwargs_unrecognized_keyword (SCM proc) SCM_NORETURN SCM_NOINLINE;
396 static void vm_error_too_many_args (int nargs) SCM_NORETURN SCM_NOINLINE;
397 static void vm_error_wrong_num_args (SCM proc) SCM_NORETURN SCM_NOINLINE;
398 static void vm_error_wrong_type_apply (SCM proc) SCM_NORETURN SCM_NOINLINE;
399 static void vm_error_stack_overflow (struct scm_vm *vp) SCM_NORETURN SCM_NOINLINE;
400 static void vm_error_stack_underflow (void) SCM_NORETURN SCM_NOINLINE;
401 static void vm_error_improper_list (SCM x) SCM_NORETURN SCM_NOINLINE;
402 static void vm_error_not_a_pair (const char *subr, SCM x) SCM_NORETURN SCM_NOINLINE;
403 static void vm_error_not_a_bytevector (const char *subr, SCM x) SCM_NORETURN SCM_NOINLINE;
404 static void vm_error_not_a_struct (const char *subr, SCM x) SCM_NORETURN SCM_NOINLINE;
405 static void vm_error_no_values (void) SCM_NORETURN SCM_NOINLINE;
406 static void vm_error_not_enough_values (void) SCM_NORETURN SCM_NOINLINE;
407 static void vm_error_continuation_not_rewindable (SCM cont) SCM_NORETURN SCM_NOINLINE;
408 static void vm_error_bad_wide_string_length (size_t len) SCM_NORETURN SCM_NOINLINE;
409 #if VM_CHECK_IP
410 static void vm_error_invalid_address (void) SCM_NORETURN SCM_NOINLINE;
411 #endif
412 #if VM_CHECK_OBJECT
413 static void vm_error_object (void) SCM_NORETURN SCM_NOINLINE;
414 #endif
415 #if VM_CHECK_FREE_VARIABLES
416 static void vm_error_free_variable (void) SCM_NORETURN SCM_NOINLINE;
417 #endif
418
419 static void
420 vm_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
428 static void
429 vm_error_bad_instruction (scm_t_uint32 inst)
430 {
431 vm_error ("VM: Bad instruction: ~s", scm_from_uint32 (inst));
432 }
433
434 static void
435 vm_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
442 static void
443 vm_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
450 static void
451 vm_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
457 static void
458 vm_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
464 static void
465 vm_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
472 static void
473 vm_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
480 static void
481 vm_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
488 static void
489 vm_error_too_many_args (int nargs)
490 {
491 vm_error ("VM: Too many arguments", scm_from_int (nargs));
492 }
493
494 static void
495 vm_error_wrong_num_args (SCM proc)
496 {
497 scm_wrong_num_args (proc);
498 }
499
500 static void
501 vm_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
507 static void
508 vm_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
521 static void
522 vm_error_stack_underflow (void)
523 {
524 vm_error ("VM: Stack underflow", SCM_UNDEFINED);
525 }
526
527 static void
528 vm_error_improper_list (SCM x)
529 {
530 vm_error ("Expected a proper list, but got object with tail ~s", x);
531 }
532
533 static void
534 vm_error_not_a_pair (const char *subr, SCM x)
535 {
536 scm_wrong_type_arg_msg (subr, 1, x, "pair");
537 }
538
539 static void
540 vm_error_not_a_bytevector (const char *subr, SCM x)
541 {
542 scm_wrong_type_arg_msg (subr, 1, x, "bytevector");
543 }
544
545 static void
546 vm_error_not_a_struct (const char *subr, SCM x)
547 {
548 scm_wrong_type_arg_msg (subr, 1, x, "struct");
549 }
550
551 static void
552 vm_error_no_values (void)
553 {
554 vm_error ("Zero values returned to single-valued continuation",
555 SCM_UNDEFINED);
556 }
557
558 static void
559 vm_error_not_enough_values (void)
560 {
561 vm_error ("Too few values returned to continuation", SCM_UNDEFINED);
562 }
563
564 static void
565 vm_error_continuation_not_rewindable (SCM cont)
566 {
567 vm_error ("Unrewindable partial continuation", cont);
568 }
569
570 static void
571 vm_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
577 static void
578 vm_error_invalid_address (void)
579 {
580 vm_error ("VM: Invalid program address", SCM_UNDEFINED);
581 }
582 #endif
583
584 #if VM_CHECK_OBJECT
585 static void
586 vm_error_object ()
587 {
588 vm_error ("VM: Invalid object table access", SCM_UNDEFINED);
589 }
590 #endif
591
592 #if VM_CHECK_FREE_VARIABLES
593 static void
594 vm_error_free_variable ()
595 {
596 vm_error ("VM: Invalid free variable access", SCM_UNDEFINED);
597 }
598 #endif
599
600 \f
601
602 static SCM boot_continuation;
603
604 \f
605 /*
606 * VM
607 */
608
609 static SCM
610 resolve_variable (SCM what, SCM program_module)
611 {
612 if (SCM_LIKELY (scm_is_symbol (what)))
613 {
614 if (SCM_LIKELY (scm_module_system_booted_p
615 && scm_is_true (program_module)))
616 /* might longjmp */
617 return scm_module_lookup (program_module, what);
618 else
619 {
620 SCM v = scm_sym2var (what, SCM_BOOL_F, SCM_BOOL_F);
621 if (scm_is_false (v))
622 scm_misc_error (NULL, "unbound variable: ~S", scm_list_1 (what));
623 else
624 return v;
625 }
626 }
627 else
628 {
629 SCM mod;
630 /* compilation of @ or @@
631 `what' is a three-element list: (MODNAME SYM INTERFACE?)
632 INTERFACE? is #t if we compiled @ or #f if we compiled @@
633 */
634 mod = scm_resolve_module (SCM_CAR (what));
635 if (scm_is_true (SCM_CADDR (what)))
636 mod = scm_module_public_interface (mod);
637 if (scm_is_false (mod))
638 scm_misc_error (NULL, "no such module: ~S",
639 scm_list_1 (SCM_CAR (what)));
640 /* might longjmp */
641 return scm_module_lookup (mod, SCM_CADR (what));
642 }
643 }
644
645 #define VM_DEFAULT_STACK_SIZE (64 * 1024)
646
647 #define VM_NAME vm_regular_engine
648 #define FUNC_NAME "vm-regular-engine"
649 #define VM_ENGINE SCM_VM_REGULAR_ENGINE
650 #include "vm-engine.c"
651 #undef VM_NAME
652 #undef FUNC_NAME
653 #undef VM_ENGINE
654
655 #define VM_NAME vm_debug_engine
656 #define FUNC_NAME "vm-debug-engine"
657 #define VM_ENGINE SCM_VM_DEBUG_ENGINE
658 #include "vm-engine.c"
659 #undef VM_NAME
660 #undef FUNC_NAME
661 #undef VM_ENGINE
662
663 static const scm_t_vm_engine vm_engines[] =
664 { vm_regular_engine, vm_debug_engine };
665
666 #ifdef VM_ENABLE_PRECISE_STACK_GC_SCAN
667
668 /* The GC "kind" for the VM stack. */
669 static int vm_stack_gc_kind;
670
671 #endif
672
673 static SCM
674 make_vm (void)
675 #define FUNC_NAME "make_vm"
676 {
677 int i;
678 struct scm_vm *vp;
679
680 vp = scm_gc_malloc (sizeof (struct scm_vm), "vm");
681
682 vp->stack_size = VM_DEFAULT_STACK_SIZE;
683
684 #ifdef VM_ENABLE_PRECISE_STACK_GC_SCAN
685 vp->stack_base = (SCM *)
686 GC_generic_malloc (vp->stack_size * sizeof (SCM), vm_stack_gc_kind);
687
688 /* Keep a pointer to VP so that `vm_stack_mark ()' can know what the stack
689 top is. */
690 *vp->stack_base = SCM_PACK_POINTER (vp);
691 vp->stack_base++;
692 vp->stack_size--;
693 #else
694 vp->stack_base = scm_gc_malloc (vp->stack_size * sizeof (SCM),
695 "stack-base");
696 #endif
697
698 #ifdef VM_ENABLE_STACK_NULLING
699 memset (vp->stack_base, 0, vp->stack_size * sizeof (SCM));
700 #endif
701 vp->stack_limit = vp->stack_base + vp->stack_size - VM_STACK_RESERVE_SIZE;
702 vp->ip = NULL;
703 vp->sp = vp->stack_base - 1;
704 vp->fp = NULL;
705 vp->engine = vm_default_engine;
706 vp->trace_level = 0;
707 for (i = 0; i < SCM_VM_NUM_HOOKS; i++)
708 vp->hooks[i] = SCM_BOOL_F;
709 return scm_cell (scm_tc7_vm, (scm_t_bits)vp);
710 }
711 #undef FUNC_NAME
712
713 #ifdef VM_ENABLE_PRECISE_STACK_GC_SCAN
714
715 /* Mark the VM stack region between its base and its current top. */
716 static struct GC_ms_entry *
717 vm_stack_mark (GC_word *addr, struct GC_ms_entry *mark_stack_ptr,
718 struct GC_ms_entry *mark_stack_limit, GC_word env)
719 {
720 GC_word *word;
721 const struct scm_vm *vm;
722
723 /* The first word of the VM stack should contain a pointer to the
724 corresponding VM. */
725 vm = * ((struct scm_vm **) addr);
726
727 if (vm == NULL
728 || (SCM *) addr != vm->stack_base - 1)
729 /* ADDR must be a pointer to a free-list element, which we must ignore
730 (see warning in <gc/gc_mark.h>). */
731 return mark_stack_ptr;
732
733 for (word = (GC_word *) vm->stack_base; word <= (GC_word *) vm->sp; word++)
734 mark_stack_ptr = GC_MARK_AND_PUSH ((* (GC_word **) word),
735 mark_stack_ptr, mark_stack_limit,
736 NULL);
737
738 return mark_stack_ptr;
739 }
740
741 #endif /* VM_ENABLE_PRECISE_STACK_GC_SCAN */
742
743
744 SCM
745 scm_c_vm_run (SCM vm, SCM program, SCM *argv, int nargs)
746 {
747 struct scm_vm *vp = SCM_VM_DATA (vm);
748 SCM_CHECK_STACK;
749 return vm_engines[vp->engine](vm, program, argv, nargs);
750 }
751
752 /* Scheme interface */
753
754 SCM_DEFINE (scm_the_vm, "the-vm", 0, 0, 0,
755 (void),
756 "Return the current thread's VM.")
757 #define FUNC_NAME s_scm_the_vm
758 {
759 scm_i_thread *t = SCM_I_CURRENT_THREAD;
760
761 if (SCM_UNLIKELY (scm_is_false (t->vm)))
762 t->vm = make_vm ();
763
764 return t->vm;
765 }
766 #undef FUNC_NAME
767
768
769 SCM_DEFINE (scm_vm_p, "vm?", 1, 0, 0,
770 (SCM obj),
771 "")
772 #define FUNC_NAME s_scm_vm_p
773 {
774 return scm_from_bool (SCM_VM_P (obj));
775 }
776 #undef FUNC_NAME
777
778 SCM_DEFINE (scm_make_vm, "make-vm", 0, 0, 0,
779 (void),
780 "")
781 #define FUNC_NAME s_scm_make_vm,
782 {
783 return make_vm ();
784 }
785 #undef FUNC_NAME
786
787 SCM_DEFINE (scm_vm_ip, "vm:ip", 1, 0, 0,
788 (SCM vm),
789 "")
790 #define FUNC_NAME s_scm_vm_ip
791 {
792 SCM_VALIDATE_VM (1, vm);
793 return scm_from_unsigned_integer ((scm_t_bits) SCM_VM_DATA (vm)->ip);
794 }
795 #undef FUNC_NAME
796
797 SCM_DEFINE (scm_vm_sp, "vm:sp", 1, 0, 0,
798 (SCM vm),
799 "")
800 #define FUNC_NAME s_scm_vm_sp
801 {
802 SCM_VALIDATE_VM (1, vm);
803 return scm_from_unsigned_integer ((scm_t_bits) SCM_VM_DATA (vm)->sp);
804 }
805 #undef FUNC_NAME
806
807 SCM_DEFINE (scm_vm_fp, "vm:fp", 1, 0, 0,
808 (SCM vm),
809 "")
810 #define FUNC_NAME s_scm_vm_fp
811 {
812 SCM_VALIDATE_VM (1, vm);
813 return scm_from_unsigned_integer ((scm_t_bits) SCM_VM_DATA (vm)->fp);
814 }
815 #undef FUNC_NAME
816
817 #define VM_DEFINE_HOOK(n) \
818 { \
819 struct scm_vm *vp; \
820 SCM_VALIDATE_VM (1, vm); \
821 vp = SCM_VM_DATA (vm); \
822 if (scm_is_false (vp->hooks[n])) \
823 vp->hooks[n] = scm_make_hook (SCM_I_MAKINUM (1)); \
824 return vp->hooks[n]; \
825 }
826
827 SCM_DEFINE (scm_vm_apply_hook, "vm-apply-hook", 1, 0, 0,
828 (SCM vm),
829 "")
830 #define FUNC_NAME s_scm_vm_apply_hook
831 {
832 VM_DEFINE_HOOK (SCM_VM_APPLY_HOOK);
833 }
834 #undef FUNC_NAME
835
836 SCM_DEFINE (scm_vm_push_continuation_hook, "vm-push-continuation-hook", 1, 0, 0,
837 (SCM vm),
838 "")
839 #define FUNC_NAME s_scm_vm_push_continuation_hook
840 {
841 VM_DEFINE_HOOK (SCM_VM_PUSH_CONTINUATION_HOOK);
842 }
843 #undef FUNC_NAME
844
845 SCM_DEFINE (scm_vm_pop_continuation_hook, "vm-pop-continuation-hook", 1, 0, 0,
846 (SCM vm),
847 "")
848 #define FUNC_NAME s_scm_vm_pop_continuation_hook
849 {
850 VM_DEFINE_HOOK (SCM_VM_POP_CONTINUATION_HOOK);
851 }
852 #undef FUNC_NAME
853
854 SCM_DEFINE (scm_vm_next_hook, "vm-next-hook", 1, 0, 0,
855 (SCM vm),
856 "")
857 #define FUNC_NAME s_scm_vm_next_hook
858 {
859 VM_DEFINE_HOOK (SCM_VM_NEXT_HOOK);
860 }
861 #undef FUNC_NAME
862
863 SCM_DEFINE (scm_vm_abort_continuation_hook, "vm-abort-continuation-hook", 1, 0, 0,
864 (SCM vm),
865 "")
866 #define FUNC_NAME s_scm_vm_abort_continuation_hook
867 {
868 VM_DEFINE_HOOK (SCM_VM_ABORT_CONTINUATION_HOOK);
869 }
870 #undef FUNC_NAME
871
872 SCM_DEFINE (scm_vm_restore_continuation_hook, "vm-restore-continuation-hook", 1, 0, 0,
873 (SCM vm),
874 "")
875 #define FUNC_NAME s_scm_vm_restore_continuation_hook
876 {
877 VM_DEFINE_HOOK (SCM_VM_RESTORE_CONTINUATION_HOOK);
878 }
879 #undef FUNC_NAME
880
881 SCM_DEFINE (scm_vm_trace_level, "vm-trace-level", 1, 0, 0,
882 (SCM vm),
883 "")
884 #define FUNC_NAME s_scm_vm_trace_level
885 {
886 SCM_VALIDATE_VM (1, vm);
887 return scm_from_int (SCM_VM_DATA (vm)->trace_level);
888 }
889 #undef FUNC_NAME
890
891 SCM_DEFINE (scm_set_vm_trace_level_x, "set-vm-trace-level!", 2, 0, 0,
892 (SCM vm, SCM level),
893 "")
894 #define FUNC_NAME s_scm_set_vm_trace_level_x
895 {
896 SCM_VALIDATE_VM (1, vm);
897 SCM_VM_DATA (vm)->trace_level = scm_to_int (level);
898 return SCM_UNSPECIFIED;
899 }
900 #undef FUNC_NAME
901
902 \f
903 /*
904 * VM engines
905 */
906
907 static int
908 symbol_to_vm_engine (SCM engine, const char *FUNC_NAME)
909 {
910 if (scm_is_eq (engine, sym_regular))
911 return SCM_VM_REGULAR_ENGINE;
912 else if (scm_is_eq (engine, sym_debug))
913 return SCM_VM_DEBUG_ENGINE;
914 else
915 SCM_MISC_ERROR ("Unknown VM engine: ~a", scm_list_1 (engine));
916 }
917
918 static SCM
919 vm_engine_to_symbol (int engine, const char *FUNC_NAME)
920 {
921 switch (engine)
922 {
923 case SCM_VM_REGULAR_ENGINE:
924 return sym_regular;
925 case SCM_VM_DEBUG_ENGINE:
926 return sym_debug;
927 default:
928 /* ? */
929 SCM_MISC_ERROR ("Unknown VM engine: ~a",
930 scm_list_1 (scm_from_int (engine)));
931 }
932 }
933
934 SCM_DEFINE (scm_vm_engine, "vm-engine", 1, 0, 0,
935 (SCM vm),
936 "")
937 #define FUNC_NAME s_scm_vm_engine
938 {
939 SCM_VALIDATE_VM (1, vm);
940 return vm_engine_to_symbol (SCM_VM_DATA (vm)->engine, FUNC_NAME);
941 }
942 #undef FUNC_NAME
943
944 void
945 scm_c_set_vm_engine_x (SCM vm, int engine)
946 #define FUNC_NAME "set-vm-engine!"
947 {
948 SCM_VALIDATE_VM (1, vm);
949
950 if (engine < 0 || engine >= SCM_VM_NUM_ENGINES)
951 SCM_MISC_ERROR ("Unknown VM engine: ~a",
952 scm_list_1 (scm_from_int (engine)));
953
954 SCM_VM_DATA (vm)->engine = engine;
955 }
956 #undef FUNC_NAME
957
958 SCM_DEFINE (scm_set_vm_engine_x, "set-vm-engine!", 2, 0, 0,
959 (SCM vm, SCM engine),
960 "")
961 #define FUNC_NAME s_scm_set_vm_engine_x
962 {
963 scm_c_set_vm_engine_x (vm, symbol_to_vm_engine (engine, FUNC_NAME));
964 return SCM_UNSPECIFIED;
965 }
966 #undef FUNC_NAME
967
968 void
969 scm_c_set_default_vm_engine_x (int engine)
970 #define FUNC_NAME "set-default-vm-engine!"
971 {
972 if (engine < 0 || engine >= SCM_VM_NUM_ENGINES)
973 SCM_MISC_ERROR ("Unknown VM engine: ~a",
974 scm_list_1 (scm_from_int (engine)));
975
976 vm_default_engine = engine;
977 }
978 #undef FUNC_NAME
979
980 SCM_DEFINE (scm_set_default_vm_engine_x, "set-default-vm-engine!", 1, 0, 0,
981 (SCM engine),
982 "")
983 #define FUNC_NAME s_scm_set_default_vm_engine_x
984 {
985 scm_c_set_default_vm_engine_x (symbol_to_vm_engine (engine, FUNC_NAME));
986 return SCM_UNSPECIFIED;
987 }
988 #undef FUNC_NAME
989
990 static void reinstate_vm (SCM vm)
991 {
992 scm_i_thread *t = SCM_I_CURRENT_THREAD;
993 t->vm = vm;
994 }
995
996 SCM_DEFINE (scm_call_with_vm, "call-with-vm", 2, 0, 1,
997 (SCM vm, SCM proc, SCM args),
998 "Apply @var{proc} to @var{args} in a dynamic extent in which\n"
999 "@var{vm} is the current VM.\n\n"
1000 "As an implementation restriction, if @var{vm} is not the same\n"
1001 "as the current thread's VM, continuations captured within the\n"
1002 "call to @var{proc} may not be reinstated once control leaves\n"
1003 "@var{proc}.")
1004 #define FUNC_NAME s_scm_call_with_vm
1005 {
1006 SCM prev_vm, ret;
1007 SCM *argv;
1008 int i, nargs;
1009 scm_t_wind_flags flags;
1010 scm_i_thread *t = SCM_I_CURRENT_THREAD;
1011
1012 SCM_VALIDATE_VM (1, vm);
1013 SCM_VALIDATE_PROC (2, proc);
1014
1015 nargs = scm_ilength (args);
1016 if (SCM_UNLIKELY (nargs < 0))
1017 scm_wrong_type_arg_msg (FUNC_NAME, 3, args, "list");
1018
1019 argv = alloca (nargs * sizeof(SCM));
1020 for (i = 0; i < nargs; i++)
1021 {
1022 argv[i] = SCM_CAR (args);
1023 args = SCM_CDR (args);
1024 }
1025
1026 prev_vm = t->vm;
1027
1028 /* Reentry can happen via invokation of a saved continuation, but
1029 continuations only save the state of the VM that they are in at
1030 capture-time, which might be different from this one. So, in the
1031 case that the VMs are different, set up a non-rewindable frame to
1032 prevent reinstating an incomplete continuation. */
1033 flags = scm_is_eq (prev_vm, vm) ? 0 : SCM_F_WIND_EXPLICITLY;
1034 if (flags)
1035 {
1036 scm_dynwind_begin (0);
1037 scm_dynwind_unwind_handler_with_scm (reinstate_vm, prev_vm, flags);
1038 t->vm = vm;
1039 }
1040
1041 ret = scm_c_vm_run (vm, proc, argv, nargs);
1042
1043 if (flags)
1044 scm_dynwind_end ();
1045
1046 return ret;
1047 }
1048 #undef FUNC_NAME
1049
1050 \f
1051 /*
1052 * Initialize
1053 */
1054
1055 SCM scm_load_compiled_with_vm (SCM file)
1056 {
1057 SCM program = scm_make_program (scm_load_objcode (file),
1058 SCM_BOOL_F, SCM_BOOL_F);
1059
1060 return scm_c_vm_run (scm_the_vm (), program, NULL, 0);
1061 }
1062
1063
1064 static SCM
1065 make_boot_program (void)
1066 {
1067 struct scm_objcode *bp;
1068 size_t bp_size;
1069 SCM u8vec, ret;
1070
1071 const scm_t_uint8 text[] = {
1072 scm_op_make_int8_1,
1073 scm_op_halt
1074 };
1075
1076 bp_size = sizeof (struct scm_objcode) + sizeof (text);
1077 bp = scm_gc_malloc_pointerless (bp_size, "boot-program");
1078 memcpy (SCM_C_OBJCODE_BASE (bp), text, sizeof (text));
1079 bp->len = sizeof(text);
1080 bp->metalen = 0;
1081
1082 u8vec = scm_c_take_gc_bytevector ((scm_t_int8*)bp, bp_size, SCM_BOOL_F);
1083 ret = scm_make_program (scm_bytecode_to_native_objcode (u8vec),
1084 SCM_BOOL_F, SCM_BOOL_F);
1085 SCM_SET_CELL_WORD_0 (ret, (SCM_CELL_WORD_0 (ret) | SCM_F_PROGRAM_IS_BOOT));
1086
1087 return ret;
1088 }
1089
1090 void
1091 scm_bootstrap_vm (void)
1092 {
1093 scm_c_register_extension ("libguile-" SCM_EFFECTIVE_VERSION,
1094 "scm_init_vm",
1095 (scm_t_extension_init_func)scm_init_vm, NULL);
1096
1097 sym_vm_run = scm_from_latin1_symbol ("vm-run");
1098 sym_vm_error = scm_from_latin1_symbol ("vm-error");
1099 sym_keyword_argument_error = scm_from_latin1_symbol ("keyword-argument-error");
1100 sym_regular = scm_from_latin1_symbol ("regular");
1101 sym_debug = scm_from_latin1_symbol ("debug");
1102
1103 boot_continuation = make_boot_program ();
1104
1105 #ifdef VM_ENABLE_PRECISE_STACK_GC_SCAN
1106 vm_stack_gc_kind =
1107 GC_new_kind (GC_new_free_list (),
1108 GC_MAKE_PROC (GC_new_proc (vm_stack_mark), 0),
1109 0, 1);
1110
1111 #endif
1112 }
1113
1114 void
1115 scm_init_vm (void)
1116 {
1117 #ifndef SCM_MAGIC_SNARFER
1118 #include "libguile/vm.x"
1119 #endif
1120 }
1121
1122 /*
1123 Local Variables:
1124 c-file-style: "gnu"
1125 End:
1126 */