guile/src/vm.c

593 lines
13 KiB
C
Raw Normal View History

2001-04-16 03:43:48 +00:00
/* Copyright (C) 2001 Free Software Foundation, Inc.
2000-08-22 15:54:19 +00:00
*
* 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
2001-04-01 05:03:41 +00:00
#include <string.h>
2001-04-22 02:13:48 +00:00
#include "envs.h"
#include "frames.h"
2001-04-01 05:03:41 +00:00
#include "instructions.h"
2001-04-16 03:43:48 +00:00
#include "objcodes.h"
2001-04-22 02:13:48 +00:00
#include "programs.h"
2000-08-22 15:54:19 +00:00
#include "vm.h"
/* I sometimes use this for debugging. */
#define vm_puts(OBJ) \
{ \
enable inlining; speed! * module/system/il/inline.scm: New module, implements generic inlining of scheme functions. It even does the right thing regarding (define arity:nopt caddr) and such. So now there are many more inlines: the arithmetics, `apply', the caddr family, etc. This makes the benchmarks *much* faster. * module/language/scheme/translate.scm (trans): Remove the %scheme-primitives code in favor of the generic (scheme il inline) code. Adds inlining for +, -, =, etc. * src/vm.c (vm_puts): Fix to work. * module/system/base/compile.scm (system): Export load/compile also. * module/system/il/compile.scm (optimize): Further debitrotting, but I haven't tried this function yet. It seems that <ghil-inst> was what <ghil-inline> is. * module/system/il/ghil.scm (*core-primitives*, *macro-module*) (ghil-primitive-macro?, ghil-macro-expander, ghil-primitive?): Remove these unused things. * module/system/il/macros.scm: Removed, replaced with inline.scm. * module/system/vm/assemble.scm (stack->bytes): Before, the final serialization code did an (apply u8vector (apply append (map u8vector->list ...))). Aside from the misspelling of append-map, this ends up pushing all elements of the u8vector on the stack -- assuredly not what you want. But besides even that, I think that pushing more than 32k arguments on the stack brings out some other bug that I think was hidden before, because now we actually use the `apply' VM instruction. Further testing is needed here, I think. Fixed the code to be more efficient, which fixes the manifestation of this particular bug: a failure to self-compile after inlining was enabled. * module/system/vm/bootstrap.scm: New module, serves to bootstrap boot-9's `load-compiled'. That way when we load (system vm core), we're loading compiled code already. * module/system/vm/core.scm: Use (system vm bootstrap). * src/guilec.in: Use the bootstrap code, so that we really are compiling with an entirely compiled compiler. * module/system/repl/repl.scm (default-catch-handler): An attempt at making the repl print a backtrace; more work needed here. * module/system/vm/frame.scm (make-frame-chain): Fix some misspellings -- I think, anyway.
2008-05-25 13:13:15 +02:00
scm_display (OBJ, scm_current_error_port ()); \
scm_newline (scm_current_error_port ()); \
2000-08-22 15:54:19 +00:00
}
/*
* VM Continuation
*/
scm_t_bits scm_tc16_vm_cont;
2001-04-01 05:03:41 +00:00
#define SCM_VM_CONT_P(OBJ) SCM_SMOB_PREDICATE (scm_tc16_vm_cont, OBJ)
2001-04-06 00:17:39 +00:00
#define SCM_VM_CONT_VP(CONT) ((struct scm_vm *) SCM_CELL_WORD_1 (CONT))
2000-08-22 15:54:19 +00:00
static SCM
2001-04-06 00:17:39 +00:00
capture_vm_cont (struct scm_vm *vp)
2000-08-22 15:54:19 +00:00
{
struct scm_vm *p = scm_gc_malloc (sizeof (*p), "capture_vm_cont");
2001-04-06 00:17:39 +00:00
p->stack_size = vp->stack_limit - vp->sp;
p->stack_base = scm_gc_malloc (p->stack_size * sizeof (SCM),
"capture_vm_cont");
2001-04-01 05:03:41 +00:00
p->stack_limit = p->stack_base + p->stack_size - 2;
2001-04-06 00:17:39 +00:00
p->ip = vp->ip;
p->sp = (SCM *) (vp->stack_limit - vp->sp);
p->fp = (SCM *) (vp->stack_limit - vp->fp);
memcpy (p->stack_base, vp->sp + 1, vp->stack_size * sizeof (SCM));
2001-04-01 05:03:41 +00:00
SCM_RETURN_NEWSMOB (scm_tc16_vm_cont, p);
2000-08-22 15:54:19 +00:00
}
static void
2001-04-06 00:17:39 +00:00
reinstate_vm_cont (struct scm_vm *vp, SCM cont)
2000-08-22 15:54:19 +00:00
{
2001-04-06 00:17:39 +00:00
struct scm_vm *p = SCM_VM_CONT_VP (cont);
if (vp->stack_size < p->stack_size)
2000-08-22 15:54:19 +00:00
{
2001-04-01 05:03:41 +00:00
/* puts ("FIXME: Need to expand"); */
2000-08-22 15:54:19 +00:00
abort ();
}
2001-04-06 00:17:39 +00:00
vp->ip = p->ip;
vp->sp = vp->stack_limit - (int) p->sp;
vp->fp = vp->stack_limit - (int) p->fp;
memcpy (vp->sp + 1, p->stack_base, p->stack_size * sizeof (SCM));
2000-08-22 15:54:19 +00:00
}
static SCM
2001-04-01 05:03:41 +00:00
vm_cont_mark (SCM obj)
2000-08-22 15:54:19 +00:00
{
SCM *p;
2001-04-06 00:17:39 +00:00
struct scm_vm *vp = SCM_VM_CONT_VP (obj);
for (p = vp->stack_base; p <= vp->stack_limit; p++)
2000-08-22 15:54:19 +00:00
if (SCM_NIMP (*p))
scm_gc_mark (*p);
return SCM_BOOL_F;
}
static scm_sizet
2001-04-01 05:03:41 +00:00
vm_cont_free (SCM obj)
2000-08-22 15:54:19 +00:00
{
2001-04-06 00:17:39 +00:00
struct scm_vm *p = SCM_VM_CONT_VP (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;
2000-08-22 15:54:19 +00:00
}
2001-04-01 05:03:41 +00:00
/*
* VM Internal functions
*/
2001-04-11 20:57:44 +00:00
SCM_SYMBOL (sym_vm_run, "vm-run");
2001-04-01 05:03:41 +00:00
SCM_SYMBOL (sym_vm_error, "vm-error");
static scm_byte_t *
vm_fetch_length (scm_byte_t *ip, size_t *lenp)
2000-08-22 15:54:19 +00:00
{
2001-04-06 23:15:53 +00:00
/* NOTE: format defined in system/vm/conv.scm */
2001-04-01 05:03:41 +00:00
*lenp = *ip++;
if (*lenp < 254)
return ip;
else if (*lenp == 254)
2001-04-05 05:48:59 +00:00
{
int b1 = *ip++;
int b2 = *ip++;
*lenp = (b1 << 8) + b2;
}
2001-04-01 05:03:41 +00:00
else
2001-04-05 05:48:59 +00:00
{
int b1 = *ip++;
int b2 = *ip++;
int b3 = *ip++;
int b4 = *ip++;
*lenp = (b1 << 24) + (b2 << 16) + (b3 << 8) + b4;
}
2001-04-01 05:03:41 +00:00
return ip;
2000-08-22 15:54:19 +00:00
}
2001-04-23 04:28:13 +00:00
static SCM
2001-04-23 06:17:52 +00:00
vm_heapify_frames_1 (struct scm_vm *vp, SCM *fp, SCM *sp, SCM **destp)
2001-04-23 04:28:13 +00:00
{
2001-04-23 06:17:52 +00:00
SCM frame;
2001-04-23 04:28:13 +00:00
SCM *dl = SCM_FRAME_DYNAMIC_LINK (fp);
2001-04-23 06:17:52 +00:00
SCM *src = SCM_FRAME_UPPER_ADDRESS (fp);
SCM *dest = SCM_FRAME_LOWER_ADDRESS (fp);
2001-04-23 04:28:13 +00:00
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
{
2001-04-23 06:17:52 +00:00
/* Child frames */
2001-04-23 04:28:13 +00:00
SCM link = SCM_FRAME_HEAP_LINK (dl);
if (!SCM_FALSEP (link))
2001-04-23 06:17:52 +00:00
link = SCM_FRAME_LOWER_ADDRESS (dl)[-1]; /* self link */
2001-04-23 04:28:13 +00:00
else
2001-04-23 06:17:52 +00:00
link = vm_heapify_frames_1 (vp, dl, dest - 1, &dest);
2001-04-23 04:28:13 +00:00
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));
2001-04-23 04:28:13 +00:00
}
/* Move stack data */
2001-04-23 06:17:52 +00:00
for (; src <= sp; src++, dest++)
*dest = *src;
*destp = dest;
2001-04-23 04:28:13 +00:00
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)))
{
2001-04-23 06:17:52 +00:00
SCM *dest;
vp->this_frame = vm_heapify_frames_1 (vp, vp->fp, vp->sp, &dest);
2001-04-23 04:28:13 +00:00
vp->fp = SCM_HEAP_FRAME_POINTER (vp->this_frame);
2001-04-23 06:17:52 +00:00
vp->sp = dest - 1;
2001-04-23 04:28:13 +00:00
}
return vp->this_frame;
}
2000-08-22 15:54:19 +00:00
/*
* VM
*/
2001-04-07 11:54:36 +00:00
#define VM_DEFAULT_STACK_SIZE (16 * 1024)
2001-04-01 05:03:41 +00:00
#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;
2000-08-22 15:54:19 +00:00
2001-04-06 05:00:10 +00:00
static SCM the_vm;
2000-08-22 15:54:19 +00:00
static SCM
2001-04-01 05:03:41 +00:00
make_vm (void)
#define FUNC_NAME "make_vm"
2000-08-22 15:54:19 +00:00
{
2001-04-01 05:03:41 +00:00
int i;
struct scm_vm *vp = scm_gc_malloc (sizeof (struct scm_vm), "vm");
2001-04-06 00:17:39 +00:00
vp->stack_size = VM_DEFAULT_STACK_SIZE;
vp->stack_base = scm_gc_malloc (vp->stack_size * sizeof (SCM),
"stack-base");
2001-04-07 09:39:38 +00:00
vp->stack_limit = vp->stack_base + vp->stack_size - 3;
vp->ip = NULL;
vp->sp = vp->stack_base - 1;
vp->fp = NULL;
2001-04-06 00:17:39 +00:00
vp->time = 0;
vp->clock = 0;
vp->options = SCM_EOL;
2001-04-23 04:28:13 +00:00
vp->this_frame = SCM_BOOL_F;
2001-04-22 02:13:48 +00:00
vp->last_frame = SCM_BOOL_F;
2001-04-01 05:03:41 +00:00
for (i = 0; i < SCM_VM_NUM_HOOKS; i++)
2001-04-06 00:17:39 +00:00
vp->hooks[i] = SCM_BOOL_F;
SCM_RETURN_NEWSMOB (scm_tc16_vm, vp);
2000-08-22 15:54:19 +00:00
}
2001-04-01 05:03:41 +00:00
#undef FUNC_NAME
2000-08-22 15:54:19 +00:00
static SCM
2001-04-01 05:03:41 +00:00
vm_mark (SCM obj)
2000-08-22 15:54:19 +00:00
{
2001-04-01 05:03:41 +00:00
int i;
2001-04-06 00:17:39 +00:00
struct scm_vm *vp = SCM_VM_DATA (obj);
2001-04-01 05:03:41 +00:00
2001-04-23 04:28:13 +00:00
/* mark the stack conservatively */
scm_mark_locations ((SCM_STACKITEM *) vp->stack_base,
sizeof (SCM) * (vp->sp - vp->stack_base + 1));
2000-08-22 15:54:19 +00:00
2001-04-23 04:28:13 +00:00
/* mark other objects */
2001-04-01 05:03:41 +00:00
for (i = 0; i < SCM_VM_NUM_HOOKS; i++)
2001-04-06 00:17:39 +00:00
scm_gc_mark (vp->hooks[i]);
2001-04-23 04:28:13 +00:00
scm_gc_mark (vp->this_frame);
2001-04-22 02:13:48 +00:00
scm_gc_mark (vp->last_frame);
2001-04-06 00:17:39 +00:00
return vp->options;
2000-08-22 15:54:19 +00:00
}
2001-04-01 05:03:41 +00:00
static scm_sizet
vm_free (SCM obj)
{
2001-04-06 00:17:39 +00:00
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;
2001-04-01 05:03:41 +00:00
}
SCM_SYMBOL (sym_debug, "debug");
SCM
scm_vm_apply (SCM vm, SCM program, SCM args)
#define FUNC_NAME "scm_vm_apply"
2000-08-22 15:54:19 +00:00
{
2001-04-01 05:03:41 +00:00
SCM_VALIDATE_PROGRAM (1, program);
2001-04-11 20:57:44 +00:00
return vm_run (vm, program, args);
2000-08-22 15:54:19 +00:00
}
2001-04-01 05:03:41 +00:00
#undef FUNC_NAME
2000-08-22 15:54:19 +00:00
/* Scheme interface */
SCM_DEFINE (scm_vm_version, "vm-version", 0, 0, 0,
2001-04-01 05:03:41 +00:00
(void),
"")
2000-08-22 15:54:19 +00:00
#define FUNC_NAME s_scm_vm_version
{
return scm_from_locale_string (VERSION);
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
2001-04-06 05:00:10 +00:00
SCM_DEFINE (scm_the_vm, "the-vm", 0, 0, 0,
(),
"")
#define FUNC_NAME s_scm_the_vm
{
return the_vm;
}
#undef FUNC_NAME
2000-08-22 15:54:19 +00:00
SCM_DEFINE (scm_vm_p, "vm?", 1, 0, 0,
(SCM obj),
2001-04-01 05:03:41 +00:00
"")
2000-08-22 15:54:19 +00:00
#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,
2001-04-01 05:03:41 +00:00
(void),
"")
#define FUNC_NAME s_scm_make_vm,
2000-08-22 15:54:19 +00:00
{
2001-04-01 05:03:41 +00:00
return make_vm ();
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
2001-04-01 05:03:41 +00:00
SCM_DEFINE (scm_vm_ip, "vm:ip", 1, 0, 0,
2000-08-22 15:54:19 +00:00
(SCM vm),
2001-04-01 05:03:41 +00:00
"")
#define FUNC_NAME s_scm_vm_ip
2000-08-22 15:54:19 +00:00
{
SCM_VALIDATE_VM (1, vm);
return scm_from_ulong ((unsigned long) SCM_VM_DATA (vm)->ip);
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
SCM_DEFINE (scm_vm_sp, "vm:sp", 1, 0, 0,
(SCM vm),
2001-04-01 05:03:41 +00:00
"")
2000-08-22 15:54:19 +00:00
#define FUNC_NAME s_scm_vm_sp
{
SCM_VALIDATE_VM (1, vm);
return scm_from_ulong ((unsigned long) SCM_VM_DATA (vm)->sp);
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
SCM_DEFINE (scm_vm_fp, "vm:fp", 1, 0, 0,
(SCM vm),
2001-04-01 05:03:41 +00:00
"")
2000-08-22 15:54:19 +00:00
#define FUNC_NAME s_scm_vm_fp
{
SCM_VALIDATE_VM (1, vm);
return scm_from_ulong ((unsigned long) SCM_VM_DATA (vm)->fp);
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
2001-04-01 05:03:41 +00:00
#define VM_DEFINE_HOOK(n) \
{ \
2001-04-06 00:17:39 +00:00
struct scm_vm *vp; \
2001-04-01 05:03:41 +00:00
SCM_VALIDATE_VM (1, vm); \
2001-04-06 00:17:39 +00:00
vp = SCM_VM_DATA (vm); \
if (SCM_FALSEP (vp->hooks[n])) \
vp->hooks[n] = scm_make_hook (SCM_I_MAKINUM (1)); \
2001-04-06 00:17:39 +00:00
return vp->hooks[n]; \
2001-04-01 05:03:41 +00:00
}
SCM_DEFINE (scm_vm_boot_hook, "vm-boot-hook", 1, 0, 0,
2000-08-22 15:54:19 +00:00
(SCM vm),
2001-04-01 05:03:41 +00:00
"")
#define FUNC_NAME s_scm_vm_boot_hook
2000-08-22 15:54:19 +00:00
{
2001-04-01 05:03:41 +00:00
VM_DEFINE_HOOK (SCM_VM_BOOT_HOOK);
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
2001-04-01 05:03:41 +00:00
SCM_DEFINE (scm_vm_halt_hook, "vm-halt-hook", 1, 0, 0,
(SCM vm),
"")
#define FUNC_NAME s_scm_vm_halt_hook
2000-08-22 15:54:19 +00:00
{
2001-04-01 05:03:41 +00:00
VM_DEFINE_HOOK (SCM_VM_HALT_HOOK);
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
2001-04-01 05:03:41 +00:00
SCM_DEFINE (scm_vm_next_hook, "vm-next-hook", 1, 0, 0,
2000-08-22 15:54:19 +00:00
(SCM vm),
2001-04-01 05:03:41 +00:00
"")
#define FUNC_NAME s_scm_vm_next_hook
2000-08-22 15:54:19 +00:00
{
2001-04-01 05:03:41 +00:00
VM_DEFINE_HOOK (SCM_VM_NEXT_HOOK);
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
2001-05-02 15:05:05 +00:00
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
2001-04-01 05:03:41 +00:00
SCM_DEFINE (scm_vm_enter_hook, "vm-enter-hook", 1, 0, 0,
(SCM vm),
"")
#define FUNC_NAME s_scm_vm_enter_hook
2000-08-22 15:54:19 +00:00
{
2001-04-01 05:03:41 +00:00
VM_DEFINE_HOOK (SCM_VM_ENTER_HOOK);
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
2001-04-01 05:03:41 +00:00
SCM_DEFINE (scm_vm_apply_hook, "vm-apply-hook", 1, 0, 0,
(SCM vm),
"")
#define FUNC_NAME s_scm_vm_apply_hook
2000-08-22 15:54:19 +00:00
{
2001-04-01 05:03:41 +00:00
VM_DEFINE_HOOK (SCM_VM_APPLY_HOOK);
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
2001-04-01 05:03:41 +00:00
SCM_DEFINE (scm_vm_exit_hook, "vm-exit-hook", 1, 0, 0,
2000-08-22 15:54:19 +00:00
(SCM vm),
2001-04-01 05:03:41 +00:00
"")
#define FUNC_NAME s_scm_vm_exit_hook
2000-08-22 15:54:19 +00:00
{
2001-04-01 05:03:41 +00:00
VM_DEFINE_HOOK (SCM_VM_EXIT_HOOK);
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
2001-04-01 05:03:41 +00:00
SCM_DEFINE (scm_vm_return_hook, "vm-return-hook", 1, 0, 0,
2000-08-22 15:54:19 +00:00
(SCM vm),
2001-04-01 05:03:41 +00:00
"")
#define FUNC_NAME s_scm_vm_return_hook
2000-08-22 15:54:19 +00:00
{
2001-04-01 05:03:41 +00:00
VM_DEFINE_HOOK (SCM_VM_RETURN_HOOK);
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
2001-04-01 05:03:41 +00:00
SCM_DEFINE (scm_vm_option, "vm-option", 2, 0, 0,
(SCM vm, SCM key),
"")
#define FUNC_NAME s_scm_vm_option
2000-08-22 15:54:19 +00:00
{
SCM_VALIDATE_VM (1, vm);
2001-04-01 05:03:41 +00:00
return scm_assq_ref (SCM_VM_DATA (vm)->options, key);
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
2001-04-01 05:03:41 +00:00
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
2000-08-22 15:54:19 +00:00
{
SCM_VALIDATE_VM (1, vm);
2001-04-01 05:03:41 +00:00
SCM_VM_DATA (vm)->options
= scm_assq_set_x (SCM_VM_DATA (vm)->options, key, val);
return SCM_UNSPECIFIED;
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
2001-04-01 05:03:41 +00:00
SCM_DEFINE (scm_vm_stats, "vm-stats", 1, 0, 0,
2000-08-22 15:54:19 +00:00
(SCM vm),
2001-04-01 05:03:41 +00:00
"")
#define FUNC_NAME s_scm_vm_stats
2000-08-22 15:54:19 +00:00
{
2001-04-01 05:03:41 +00:00
SCM stats;
2000-08-22 15:54:19 +00:00
SCM_VALIDATE_VM (1, vm);
2001-04-01 05:03:41 +00:00
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));
2001-04-01 05:03:41 +00:00
return stats;
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
2001-04-01 05:03:41 +00:00
#define VM_CHECK_RUNNING(vm) \
if (!SCM_VM_DATA (vm)->ip) \
SCM_MISC_ERROR ("Not running", SCM_LIST1 (vm))
2001-04-23 04:28:13 +00:00
SCM_DEFINE (scm_vm_this_frame, "vm-this-frame", 1, 0, 0,
2000-08-22 15:54:19 +00:00
(SCM vm),
2001-04-01 05:03:41 +00:00
"")
2001-04-23 04:28:13 +00:00
#define FUNC_NAME s_scm_vm_this_frame
2000-08-22 15:54:19 +00:00
{
SCM_VALIDATE_VM (1, vm);
2001-04-23 04:28:13 +00:00
return SCM_VM_DATA (vm)->this_frame;
2001-04-22 02:13:48 +00:00
}
#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;
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
2001-04-01 05:03:41 +00:00
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;
2000-08-22 15:54:19 +00:00
2001-04-01 05:03:41 +00:00
SCM_VALIDATE_VM (1, vm);
VM_CHECK_RUNNING (vm);
2000-08-22 15:54:19 +00:00
2001-04-01 05:03:41 +00:00
ip = SCM_VM_DATA (vm)->ip;
p = SCM_INSTRUCTION (*ip);
2000-08-22 15:54:19 +00:00
2001-04-01 05:03:41 +00:00
list = SCM_LIST1 (scm_str2symbol (p->name));
for (i = 1; i <= p->len; i++)
list = scm_cons (SCM_I_MAKINUM (ip[i]), list);
2001-04-01 05:03:41 +00:00
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
2000-08-22 15:54:19 +00:00
{
2001-04-07 09:39:38 +00:00
SCM *sp;
SCM ls = SCM_EOL;
struct scm_vm *vp;
2000-08-22 15:54:19 +00:00
SCM_VALIDATE_VM (1, vm);
2001-04-01 05:03:41 +00:00
VM_CHECK_RUNNING (vm);
2000-08-22 15:54:19 +00:00
2001-04-07 09:39:38 +00:00
vp = SCM_VM_DATA (vm);
2001-04-23 04:28:13 +00:00
for (sp = vp->stack_base; sp <= vp->sp; sp++)
2001-04-07 09:39:38 +00:00
ls = scm_cons (*sp, ls);
return ls;
2000-08-22 15:54:19 +00:00
}
#undef FUNC_NAME
/*
2001-04-01 05:03:41 +00:00
* Initialize
2000-08-22 15:54:19 +00:00
*/
2001-04-01 05:03:41 +00:00
void
scm_init_vm (void)
{
2001-04-22 02:13:48 +00:00
scm_init_frames ();
2001-04-01 05:03:41 +00:00
scm_init_instructions ();
2001-04-16 03:43:48 +00:00
scm_init_objcodes ();
2001-04-22 02:13:48 +00:00
scm_init_programs ();
2000-08-22 15:54:19 +00:00
2001-04-01 05:03:41 +00:00
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);
2000-08-22 15:54:19 +00:00
2001-04-01 05:03:41 +00:00
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);
2000-08-22 15:54:19 +00:00
2001-04-06 05:00:10 +00:00
the_vm = scm_permanent_object (make_vm ());
2001-04-01 05:03:41 +00:00
#ifndef SCM_MAGIC_SNARFER
2000-08-22 15:54:19 +00:00
#include "vm.x"
2001-04-01 05:03:41 +00:00
#endif
2000-08-22 15:54:19 +00:00
}
2001-04-01 05:03:41 +00:00
/*
Local Variables:
c-file-style: "gnu"
End:
*/