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