mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-13 17:20:21 +02:00
* libguile/programs.c (scm_c_make_closure): If the program is actually
not a program, abort. This can happen if GC misses a reference, as
currently seems to happen.
* libguile/vm.c (vm_mark): Revert part of
7ff017002d
, which changed the call to
scm_mark_locations. I'm 99% *sure* this is wrong, but it seems to
prevent missed references when recompiling the .go files in guile
itself. Needs revisiting soon, but for the time being we can go back to
where we were a couple of days ago.
* libguile/vm-i-system.c (halt, vector, vector-mark): Sync the registers
before calling into C, as it may GC.
728 lines
17 KiB
C
728 lines
17 KiB
C
/* Copyright (C) 2001 Free Software Foundation, Inc.
|
||
*
|
||
* This program is free software; you can redistribute it and/or modify
|
||
* it under the terms of the GNU General Public License as published by
|
||
* the Free Software Foundation; either version 2, or (at your option)
|
||
* any later version.
|
||
*
|
||
* This program is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU General Public License
|
||
* along with this software; see the file COPYING. If not, write to
|
||
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||
* Boston, MA 02111-1307 USA
|
||
*
|
||
* As a special exception, the Free Software Foundation gives permission
|
||
* for additional uses of the text contained in its release of GUILE.
|
||
*
|
||
* The exception is that, if you link the GUILE library with other files
|
||
* to produce an executable, this does not by itself cause the
|
||
* resulting executable to be covered by the GNU General Public License.
|
||
* Your use of that executable is in no way restricted on account of
|
||
* linking the GUILE library code into it.
|
||
*
|
||
* This exception does not however invalidate any other reasons why
|
||
* the executable file might be covered by the GNU General Public License.
|
||
*
|
||
* This exception applies only to the code released by the
|
||
* Free Software Foundation under the name GUILE. If you copy
|
||
* code from other Free Software Foundation releases into a copy of
|
||
* GUILE, as the General Public License permits, the exception does
|
||
* not apply to the code that you add in this way. To avoid misleading
|
||
* anyone as to the status of such modified files, you must delete
|
||
* this exception notice from them.
|
||
*
|
||
* If you write modifications of your own for GUILE, it is your choice
|
||
* whether to permit this exception to apply to your modifications.
|
||
* If you do not wish that, delete this exception notice. */
|
||
|
||
#if HAVE_CONFIG_H
|
||
# include <config.h>
|
||
#endif
|
||
|
||
#include <string.h>
|
||
#include "vm-bootstrap.h"
|
||
#include "frames.h"
|
||
#include "instructions.h"
|
||
#include "objcodes.h"
|
||
#include "programs.h"
|
||
#include "vm.h"
|
||
|
||
/* I sometimes use this for debugging. */
|
||
#define vm_puts(OBJ) \
|
||
{ \
|
||
scm_display (OBJ, scm_current_error_port ()); \
|
||
scm_newline (scm_current_error_port ()); \
|
||
}
|
||
|
||
|
||
/*
|
||
* VM Continuation
|
||
*/
|
||
|
||
scm_t_bits scm_tc16_vm_cont;
|
||
|
||
struct scm_vm_cont {
|
||
scm_byte_t *ip;
|
||
scm_t_ptrdiff sp;
|
||
scm_t_ptrdiff fp;
|
||
scm_t_ptrdiff stack_size;
|
||
SCM *stack_base;
|
||
};
|
||
|
||
|
||
#define SCM_VM_CONT_P(OBJ) SCM_SMOB_PREDICATE (scm_tc16_vm_cont, OBJ)
|
||
#define SCM_VM_CONT_DATA(CONT) ((struct scm_vm_cont *) SCM_CELL_WORD_1 (CONT))
|
||
|
||
static SCM
|
||
vm_cont_mark (SCM obj)
|
||
{
|
||
size_t size;
|
||
SCM *stack;
|
||
|
||
stack = SCM_VM_CONT_DATA (obj)->stack_base;
|
||
size = SCM_VM_CONT_DATA (obj)->stack_size;
|
||
|
||
/* we could be smarter about this. */
|
||
scm_mark_locations ((SCM_STACKITEM *) stack, size);
|
||
|
||
return SCM_BOOL_F;
|
||
}
|
||
|
||
static scm_sizet
|
||
vm_cont_free (SCM obj)
|
||
{
|
||
struct scm_vm_cont *p = SCM_VM_CONT_DATA (obj);
|
||
|
||
scm_gc_free (p->stack_base, p->stack_size * sizeof (SCM), "stack-base");
|
||
scm_gc_free (p, sizeof (struct scm_vm), "vm");
|
||
|
||
return 0;
|
||
}
|
||
|
||
static SCM
|
||
capture_vm_cont (struct scm_vm *vp)
|
||
{
|
||
struct scm_vm_cont *p = scm_gc_malloc (sizeof (*p), "capture_vm_cont");
|
||
p->stack_size = vp->sp - vp->stack_base + 1;
|
||
p->stack_base = scm_gc_malloc (p->stack_size * sizeof (SCM),
|
||
"capture_vm_cont");
|
||
p->ip = vp->ip;
|
||
p->sp = vp->sp - vp->stack_base;
|
||
p->fp = vp->fp - vp->stack_base;
|
||
memcpy (p->stack_base, vp->stack_base, p->stack_size * sizeof (SCM));
|
||
SCM_RETURN_NEWSMOB (scm_tc16_vm_cont, p);
|
||
}
|
||
|
||
static void
|
||
reinstate_vm_cont (struct scm_vm *vp, SCM cont)
|
||
{
|
||
struct scm_vm_cont *p = SCM_VM_CONT_DATA (cont);
|
||
if (vp->stack_size < p->stack_size)
|
||
{
|
||
/* puts ("FIXME: Need to expand"); */
|
||
abort ();
|
||
}
|
||
vp->ip = p->ip;
|
||
vp->sp = vp->stack_base + p->sp;
|
||
vp->fp = vp->stack_base + p->fp;
|
||
memcpy (vp->stack_base, p->stack_base, p->stack_size * sizeof (SCM));
|
||
}
|
||
|
||
/* In theory, a number of vm instances can be active in the call trace, and we
|
||
only want to reify the continuations of those in the current continuation
|
||
root. I don't see a nice way to do this -- ideally it would involve dynwinds,
|
||
and previous values of the *the-vm* fluid within the current continuation
|
||
root. But we don't have access to continuation roots in the dynwind stack.
|
||
So, just punt for now -- take the current value of *the-vm*.
|
||
|
||
While I'm on the topic, ideally we could avoid copying the C stack if the
|
||
continuation root is inside VM code, and call/cc was invoked within that same
|
||
call to vm_run; but that's currently not implemented.
|
||
*/
|
||
SCM
|
||
scm_vm_capture_continuations (void)
|
||
{
|
||
SCM vm = scm_the_vm ();
|
||
return scm_acons (vm, capture_vm_cont (SCM_VM_DATA (vm)), SCM_EOL);
|
||
}
|
||
|
||
void
|
||
scm_vm_reinstate_continuations (SCM conts)
|
||
{
|
||
for (; conts != SCM_EOL; conts = SCM_CDR (conts))
|
||
reinstate_vm_cont (SCM_VM_DATA (SCM_CAAR (conts)), SCM_CDAR (conts));
|
||
}
|
||
|
||
struct vm_unwind_data
|
||
{
|
||
struct scm_vm *vp;
|
||
SCM *sp;
|
||
SCM *fp;
|
||
SCM this_frame;
|
||
};
|
||
|
||
static void
|
||
vm_reset_stack (void *data)
|
||
{
|
||
struct vm_unwind_data *w = data;
|
||
|
||
w->vp->sp = w->sp;
|
||
w->vp->fp = w->fp;
|
||
w->vp->this_frame = w->this_frame;
|
||
}
|
||
|
||
|
||
/*
|
||
* VM Internal functions
|
||
*/
|
||
|
||
static SCM sym_vm_run;
|
||
static SCM sym_vm_error;
|
||
static SCM sym_debug;
|
||
|
||
static scm_byte_t *
|
||
vm_fetch_length (scm_byte_t *ip, size_t *lenp)
|
||
{
|
||
/* NOTE: format defined in system/vm/conv.scm */
|
||
*lenp = *ip++;
|
||
if (*lenp < 254)
|
||
return ip;
|
||
else if (*lenp == 254)
|
||
{
|
||
int b1 = *ip++;
|
||
int b2 = *ip++;
|
||
*lenp = (b1 << 8) + b2;
|
||
}
|
||
else
|
||
{
|
||
int b1 = *ip++;
|
||
int b2 = *ip++;
|
||
int b3 = *ip++;
|
||
int b4 = *ip++;
|
||
*lenp = (b1 << 24) + (b2 << 16) + (b3 << 8) + b4;
|
||
}
|
||
return ip;
|
||
}
|
||
|
||
static SCM
|
||
vm_heapify_frames_1 (struct scm_vm *vp, SCM *fp, SCM *sp, SCM **destp)
|
||
{
|
||
SCM frame;
|
||
SCM *dl = SCM_FRAME_DYNAMIC_LINK (fp);
|
||
#if 0
|
||
SCM *src = SCM_FRAME_UPPER_ADDRESS (fp);
|
||
#endif
|
||
SCM *dest = SCM_FRAME_LOWER_ADDRESS (fp);
|
||
|
||
if (!dl)
|
||
{
|
||
/* The top frame */
|
||
frame = scm_c_make_heap_frame (fp);
|
||
fp = SCM_HEAP_FRAME_POINTER (frame);
|
||
SCM_FRAME_HEAP_LINK (fp) = SCM_BOOL_T;
|
||
}
|
||
else
|
||
{
|
||
/* Child frames */
|
||
SCM link = SCM_FRAME_HEAP_LINK (dl);
|
||
if (!SCM_FALSEP (link))
|
||
link = SCM_FRAME_LOWER_ADDRESS (dl)[-1]; /* self link */
|
||
else
|
||
link = vm_heapify_frames_1 (vp, dl, dest - 1, &dest);
|
||
frame = scm_c_make_heap_frame (fp);
|
||
fp = SCM_HEAP_FRAME_POINTER (frame);
|
||
SCM_FRAME_HEAP_LINK (fp) = link;
|
||
SCM_FRAME_SET_DYNAMIC_LINK (fp, SCM_HEAP_FRAME_POINTER (link));
|
||
}
|
||
|
||
/* Apparently the intention here is to be able to have a frame on the heap,
|
||
but data on the stack, so that you can push as much as you want on the
|
||
stack; but I think that it's currently causing borkage with nonlocal exits
|
||
and the unwind handler, which reinstates the sp and fp, but it's no longer
|
||
pointing at a valid stack frame. So disable for now, we'll get back to
|
||
this later. */
|
||
#if 0
|
||
/* Move stack data */
|
||
for (; src <= sp; src++, dest++)
|
||
*dest = *src;
|
||
*destp = dest;
|
||
#endif
|
||
|
||
return frame;
|
||
}
|
||
|
||
static SCM
|
||
vm_heapify_frames (SCM vm)
|
||
{
|
||
struct scm_vm *vp = SCM_VM_DATA (vm);
|
||
if (SCM_FALSEP (SCM_FRAME_HEAP_LINK (vp->fp)))
|
||
{
|
||
SCM *dest;
|
||
vp->this_frame = vm_heapify_frames_1 (vp, vp->fp, vp->sp, &dest);
|
||
vp->fp = SCM_HEAP_FRAME_POINTER (vp->this_frame);
|
||
vp->sp = dest - 1;
|
||
}
|
||
return vp->this_frame;
|
||
}
|
||
|
||
|
||
/*
|
||
* VM
|
||
*/
|
||
|
||
#define VM_DEFAULT_STACK_SIZE (16 * 1024)
|
||
|
||
#define VM_REGULAR_ENGINE 0
|
||
#define VM_DEBUG_ENGINE 1
|
||
|
||
#if 0
|
||
#define VM_NAME vm_regular_engine
|
||
#define VM_ENGINE VM_REGULAR_ENGINE
|
||
#include "vm-engine.c"
|
||
#undef VM_NAME
|
||
#undef VM_ENGINE
|
||
#endif
|
||
|
||
#define VM_NAME vm_debug_engine
|
||
#define VM_ENGINE VM_DEBUG_ENGINE
|
||
#include "vm-engine.c"
|
||
#undef VM_NAME
|
||
#undef VM_ENGINE
|
||
|
||
scm_t_bits scm_tc16_vm;
|
||
|
||
SCM scm_the_vm_fluid;
|
||
|
||
static SCM
|
||
make_vm (void)
|
||
#define FUNC_NAME "make_vm"
|
||
{
|
||
int i;
|
||
struct scm_vm *vp = scm_gc_malloc (sizeof (struct scm_vm), "vm");
|
||
|
||
vp->stack_size = VM_DEFAULT_STACK_SIZE;
|
||
vp->stack_base = scm_gc_malloc (vp->stack_size * sizeof (SCM),
|
||
"stack-base");
|
||
vp->stack_limit = vp->stack_base + vp->stack_size - 3;
|
||
vp->ip = NULL;
|
||
vp->sp = vp->stack_base - 1;
|
||
vp->fp = NULL;
|
||
vp->time = 0;
|
||
vp->clock = 0;
|
||
vp->options = SCM_EOL;
|
||
vp->this_frame = SCM_BOOL_F;
|
||
vp->last_frame = SCM_BOOL_F;
|
||
vp->last_ip = NULL;
|
||
for (i = 0; i < SCM_VM_NUM_HOOKS; i++)
|
||
vp->hooks[i] = SCM_BOOL_F;
|
||
SCM_RETURN_NEWSMOB (scm_tc16_vm, vp);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
static SCM
|
||
vm_mark (SCM obj)
|
||
{
|
||
int i;
|
||
struct scm_vm *vp = SCM_VM_DATA (obj);
|
||
|
||
/* mark the stack conservatively */
|
||
scm_mark_locations ((SCM_STACKITEM *) vp->stack_base,
|
||
sizeof (SCM)*(vp->sp + 1 - vp->stack_base));
|
||
|
||
/* mark other objects */
|
||
for (i = 0; i < SCM_VM_NUM_HOOKS; i++)
|
||
scm_gc_mark (vp->hooks[i]);
|
||
scm_gc_mark (vp->this_frame);
|
||
scm_gc_mark (vp->last_frame);
|
||
return vp->options;
|
||
}
|
||
|
||
static scm_sizet
|
||
vm_free (SCM obj)
|
||
{
|
||
struct scm_vm *vp = SCM_VM_DATA (obj);
|
||
|
||
scm_gc_free (vp->stack_base, vp->stack_size * sizeof (SCM),
|
||
"stack-base");
|
||
scm_gc_free (vp, sizeof (struct scm_vm), "vm");
|
||
|
||
return 0;
|
||
}
|
||
|
||
SCM
|
||
scm_vm_apply (SCM vm, SCM program, SCM args)
|
||
#define FUNC_NAME "scm_vm_apply"
|
||
{
|
||
SCM_VALIDATE_PROGRAM (1, program);
|
||
return vm_run (vm, program, args);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
/* Scheme interface */
|
||
|
||
SCM_DEFINE (scm_vm_version, "vm-version", 0, 0, 0,
|
||
(void),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_version
|
||
{
|
||
return scm_from_locale_string (PACKAGE_VERSION);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_the_vm, "the-vm", 0, 0, 0,
|
||
(void),
|
||
"")
|
||
#define FUNC_NAME s_scm_the_vm
|
||
{
|
||
SCM ret;
|
||
|
||
if (SCM_NFALSEP ((ret = scm_fluid_ref (scm_the_vm_fluid))))
|
||
return ret;
|
||
|
||
ret = make_vm ();
|
||
scm_fluid_set_x (scm_the_vm_fluid, ret);
|
||
return ret;
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
|
||
SCM_DEFINE (scm_vm_p, "vm?", 1, 0, 0,
|
||
(SCM obj),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_p
|
||
{
|
||
return SCM_BOOL (SCM_VM_P (obj));
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_make_vm, "make-vm", 0, 0, 0,
|
||
(void),
|
||
"")
|
||
#define FUNC_NAME s_scm_make_vm,
|
||
{
|
||
return make_vm ();
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_ip, "vm:ip", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_ip
|
||
{
|
||
SCM_VALIDATE_VM (1, vm);
|
||
return scm_from_ulong ((unsigned long) SCM_VM_DATA (vm)->ip);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_sp, "vm:sp", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_sp
|
||
{
|
||
SCM_VALIDATE_VM (1, vm);
|
||
return scm_from_ulong ((unsigned long) SCM_VM_DATA (vm)->sp);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_fp, "vm:fp", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_fp
|
||
{
|
||
SCM_VALIDATE_VM (1, vm);
|
||
return scm_from_ulong ((unsigned long) SCM_VM_DATA (vm)->fp);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
#define VM_DEFINE_HOOK(n) \
|
||
{ \
|
||
struct scm_vm *vp; \
|
||
SCM_VALIDATE_VM (1, vm); \
|
||
vp = SCM_VM_DATA (vm); \
|
||
if (SCM_FALSEP (vp->hooks[n])) \
|
||
vp->hooks[n] = scm_make_hook (SCM_I_MAKINUM (1)); \
|
||
return vp->hooks[n]; \
|
||
}
|
||
|
||
SCM_DEFINE (scm_vm_boot_hook, "vm-boot-hook", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_boot_hook
|
||
{
|
||
VM_DEFINE_HOOK (SCM_VM_BOOT_HOOK);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_halt_hook, "vm-halt-hook", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_halt_hook
|
||
{
|
||
VM_DEFINE_HOOK (SCM_VM_HALT_HOOK);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_next_hook, "vm-next-hook", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_next_hook
|
||
{
|
||
VM_DEFINE_HOOK (SCM_VM_NEXT_HOOK);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_break_hook, "vm-break-hook", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_break_hook
|
||
{
|
||
VM_DEFINE_HOOK (SCM_VM_BREAK_HOOK);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_enter_hook, "vm-enter-hook", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_enter_hook
|
||
{
|
||
VM_DEFINE_HOOK (SCM_VM_ENTER_HOOK);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_apply_hook, "vm-apply-hook", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_apply_hook
|
||
{
|
||
VM_DEFINE_HOOK (SCM_VM_APPLY_HOOK);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_exit_hook, "vm-exit-hook", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_exit_hook
|
||
{
|
||
VM_DEFINE_HOOK (SCM_VM_EXIT_HOOK);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_return_hook, "vm-return-hook", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_return_hook
|
||
{
|
||
VM_DEFINE_HOOK (SCM_VM_RETURN_HOOK);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_option, "vm-option", 2, 0, 0,
|
||
(SCM vm, SCM key),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_option
|
||
{
|
||
SCM_VALIDATE_VM (1, vm);
|
||
return scm_assq_ref (SCM_VM_DATA (vm)->options, key);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_set_vm_option_x, "set-vm-option!", 3, 0, 0,
|
||
(SCM vm, SCM key, SCM val),
|
||
"")
|
||
#define FUNC_NAME s_scm_set_vm_option_x
|
||
{
|
||
SCM_VALIDATE_VM (1, vm);
|
||
SCM_VM_DATA (vm)->options
|
||
= scm_assq_set_x (SCM_VM_DATA (vm)->options, key, val);
|
||
return SCM_UNSPECIFIED;
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_stats, "vm-stats", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_stats
|
||
{
|
||
SCM stats;
|
||
|
||
SCM_VALIDATE_VM (1, vm);
|
||
|
||
stats = scm_make_vector (SCM_I_MAKINUM (2), SCM_UNSPECIFIED);
|
||
scm_vector_set_x (stats, SCM_I_MAKINUM (0),
|
||
scm_from_ulong (SCM_VM_DATA (vm)->time));
|
||
scm_vector_set_x (stats, SCM_I_MAKINUM (1),
|
||
scm_from_ulong (SCM_VM_DATA (vm)->clock));
|
||
|
||
return stats;
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
#define VM_CHECK_RUNNING(vm) \
|
||
if (!SCM_VM_DATA (vm)->ip) \
|
||
SCM_MISC_ERROR ("Not running", SCM_LIST1 (vm))
|
||
|
||
SCM_DEFINE (scm_vm_this_frame, "vm-this-frame", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_this_frame
|
||
{
|
||
SCM_VALIDATE_VM (1, vm);
|
||
return SCM_VM_DATA (vm)->this_frame;
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_last_frame, "vm-last-frame", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_last_frame
|
||
{
|
||
SCM_VALIDATE_VM (1, vm);
|
||
return SCM_VM_DATA (vm)->last_frame;
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_last_ip, "vm:last-ip", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_last_ip
|
||
{
|
||
SCM_VALIDATE_VM (1, vm);
|
||
return scm_from_ulong ((unsigned long) SCM_VM_DATA (vm)->last_ip);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_save_stack, "vm-save-stack", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_save_stack
|
||
{
|
||
struct scm_vm *vp;
|
||
SCM *dest;
|
||
SCM_VALIDATE_VM (1, vm);
|
||
vp = SCM_VM_DATA (vm);
|
||
|
||
if (vp->fp)
|
||
{
|
||
vp->last_frame = vm_heapify_frames_1 (vp, vp->fp, vp->sp, &dest);
|
||
vp->last_ip = vp->ip;
|
||
}
|
||
else
|
||
{
|
||
vp->last_frame = SCM_BOOL_F;
|
||
}
|
||
|
||
|
||
return vp->last_frame;
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_fetch_code, "vm-fetch-code", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_fetch_code
|
||
{
|
||
int i;
|
||
SCM list;
|
||
scm_byte_t *ip;
|
||
struct scm_instruction *p;
|
||
|
||
SCM_VALIDATE_VM (1, vm);
|
||
VM_CHECK_RUNNING (vm);
|
||
|
||
ip = SCM_VM_DATA (vm)->ip;
|
||
p = SCM_INSTRUCTION (*ip);
|
||
|
||
list = SCM_LIST1 (scm_str2symbol (p->name));
|
||
for (i = 1; i <= p->len; i++)
|
||
list = scm_cons (SCM_I_MAKINUM (ip[i]), list);
|
||
return scm_reverse_x (list, SCM_EOL);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_vm_fetch_stack, "vm-fetch-stack", 1, 0, 0,
|
||
(SCM vm),
|
||
"")
|
||
#define FUNC_NAME s_scm_vm_fetch_stack
|
||
{
|
||
SCM *sp;
|
||
SCM ls = SCM_EOL;
|
||
struct scm_vm *vp;
|
||
|
||
SCM_VALIDATE_VM (1, vm);
|
||
VM_CHECK_RUNNING (vm);
|
||
|
||
vp = SCM_VM_DATA (vm);
|
||
for (sp = vp->stack_base; sp <= vp->sp; sp++)
|
||
ls = scm_cons (*sp, ls);
|
||
return ls;
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
|
||
/*
|
||
* Initialize
|
||
*/
|
||
|
||
SCM scm_load_compiled_with_vm (SCM file)
|
||
{
|
||
SCM program = scm_objcode_to_program (scm_load_objcode (file));
|
||
|
||
return vm_run (scm_the_vm (), program, SCM_EOL);
|
||
}
|
||
|
||
void
|
||
scm_bootstrap_vm (void)
|
||
{
|
||
static int strappage = 0;
|
||
|
||
if (strappage)
|
||
return;
|
||
|
||
scm_bootstrap_frames ();
|
||
scm_bootstrap_instructions ();
|
||
scm_bootstrap_objcodes ();
|
||
scm_bootstrap_programs ();
|
||
|
||
scm_tc16_vm_cont = scm_make_smob_type ("vm-cont", 0);
|
||
scm_set_smob_mark (scm_tc16_vm_cont, vm_cont_mark);
|
||
scm_set_smob_free (scm_tc16_vm_cont, vm_cont_free);
|
||
|
||
scm_tc16_vm = scm_make_smob_type ("vm", 0);
|
||
scm_set_smob_mark (scm_tc16_vm, vm_mark);
|
||
scm_set_smob_free (scm_tc16_vm, vm_free);
|
||
scm_set_smob_apply (scm_tc16_vm, scm_vm_apply, 1, 0, 1);
|
||
|
||
scm_the_vm_fluid = scm_permanent_object (scm_make_fluid ());
|
||
scm_fluid_set_x (scm_the_vm_fluid, make_vm ());
|
||
scm_c_define ("*the-vm*", scm_the_vm_fluid);
|
||
|
||
scm_c_define ("load-compiled",
|
||
scm_c_make_gsubr ("load-compiled/vm", 1, 0, 0,
|
||
scm_load_compiled_with_vm));
|
||
|
||
sym_vm_run = scm_permanent_object (scm_from_locale_symbol ("vm-run"));
|
||
sym_vm_error = scm_permanent_object (scm_from_locale_symbol ("vm-error"));
|
||
sym_debug = scm_permanent_object (scm_from_locale_symbol ("debug"));
|
||
|
||
strappage = 1;
|
||
}
|
||
|
||
void
|
||
scm_init_vm (void)
|
||
{
|
||
scm_bootstrap_vm ();
|
||
|
||
#ifndef SCM_MAGIC_SNARFER
|
||
#include "vm.x"
|
||
#endif
|
||
}
|
||
|
||
/*
|
||
Local Variables:
|
||
c-file-style: "gnu"
|
||
End:
|
||
*/
|