2006-12-31 18:02:22 +03:00
|
|
|
/**********************************************************************
|
|
|
|
|
|
|
|
vm.h -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: 04/01/01 16:56:59 JST
|
|
|
|
|
* blockinlining.c, compile.c, compile.h, debug.c, debug.h,
id.c, insnhelper.h, insns.def, thread.c, thread_pthread.ci,
thread_pthread.h, thread_win32.ci, thread_win32.h, vm.h,
vm_dump.c, vm_evalbody.ci, vm_opts.h: fix comments and
copyright year.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13920 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-14 01:13:04 +03:00
|
|
|
Copyright (C) 2004-2007 Koichi Sasada
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
2008-11-19 03:06:38 +03:00
|
|
|
#ifndef RUBY_VM_EXEC_H
|
|
|
|
#define RUBY_VM_EXEC_H
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
typedef long OFFSET;
|
2007-06-24 21:19:22 +04:00
|
|
|
typedef unsigned long lindex_t;
|
|
|
|
typedef unsigned long dindex_t;
|
|
|
|
typedef rb_num_t GENTRY;
|
2007-08-06 15:36:30 +04:00
|
|
|
typedef rb_iseq_t *ISEQ;
|
2007-06-24 21:19:22 +04:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
#ifdef COLLECT_USAGE_ANALYSIS
|
|
|
|
#define USAGE_ANALYSIS_INSN(insn) vm_analysis_insn(insn)
|
|
|
|
#define USAGE_ANALYSIS_OPERAND(insn, n, op) vm_analysis_operand(insn, n, (VALUE)op)
|
|
|
|
#define USAGE_ANALYSIS_REGISTER(reg, s) vm_analysis_register(reg, s)
|
|
|
|
#else
|
* blockinlining.c: remove "yarv" prefix.
* array.c, numeric.c: ditto.
* insnhelper.ci, insns.def, vm_evalbody.ci: ditto.
* yarvcore.c: removed.
* yarvcore.h: renamed to core.h.
* cont.c, debug.c, error.c, process.c, signal.c : ditto.
* ext/probeprofiler/probeprofiler.c: ditto.
* id.c, id.h: added.
* inits.c: ditto.
* compile.c: rename internal functions.
* compile.h: fix debug flag.
* eval.c, object.c, vm.c: remove ruby_top_self.
use rb_vm_top_self() instead.
* eval_intern.h, eval_load: ditto.
* gc.c: rename yarv_machine_stack_mark() to
rb_gc_mark_machine_stack().
* insnhelper.h: remove unused macros.
* iseq.c: add iseq_compile() to create iseq object
from source string.
* proc.c: rename a internal function.
* template/insns.inc.tmpl: remove YARV prefix.
* thread.c:
* vm.c (rb_iseq_eval): added.
* vm.c: move some functions from yarvcore.c.
* vm_dump.c: fix to remove compiler warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-12 08:25:46 +04:00
|
|
|
#define USAGE_ANALYSIS_INSN(insn) /* none */
|
2006-12-31 18:02:22 +03:00
|
|
|
#define USAGE_ANALYSIS_OPERAND(insn, n, op) /* none */
|
* blockinlining.c: remove "yarv" prefix.
* array.c, numeric.c: ditto.
* insnhelper.ci, insns.def, vm_evalbody.ci: ditto.
* yarvcore.c: removed.
* yarvcore.h: renamed to core.h.
* cont.c, debug.c, error.c, process.c, signal.c : ditto.
* ext/probeprofiler/probeprofiler.c: ditto.
* id.c, id.h: added.
* inits.c: ditto.
* compile.c: rename internal functions.
* compile.h: fix debug flag.
* eval.c, object.c, vm.c: remove ruby_top_self.
use rb_vm_top_self() instead.
* eval_intern.h, eval_load: ditto.
* gc.c: rename yarv_machine_stack_mark() to
rb_gc_mark_machine_stack().
* insnhelper.h: remove unused macros.
* iseq.c: add iseq_compile() to create iseq object
from source string.
* proc.c: rename a internal function.
* template/insns.inc.tmpl: remove YARV prefix.
* thread.c:
* vm.c (rb_iseq_eval): added.
* vm.c: move some functions from yarvcore.c.
* vm_dump.c: fix to remove compiler warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-12 08:25:46 +04:00
|
|
|
#define USAGE_ANALYSIS_REGISTER(reg, s) /* none */
|
2006-12-31 18:02:22 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __GCC__
|
|
|
|
/* TODO: machine dependent prefetch instruction */
|
|
|
|
#define PREFETCH(pc)
|
|
|
|
#else
|
|
|
|
#define PREFETCH(pc)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if VMDEBUG > 0
|
|
|
|
#define debugs printf
|
|
|
|
#define DEBUG_ENTER_INSN(insn) \
|
|
|
|
debug_print_pre(th, GET_CFP());
|
|
|
|
|
|
|
|
#if OPT_STACK_CACHING
|
|
|
|
#define SC_REGS() , reg_a, reg_b
|
|
|
|
#else
|
|
|
|
#define SC_REGS()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DEBUG_END_INSN() \
|
|
|
|
debug_print_post(th, GET_CFP() SC_REGS());
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define debugs
|
|
|
|
#define DEBUG_ENTER_INSN(insn)
|
|
|
|
#define DEBUG_END_INSN()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define throwdebug if(0)printf
|
* call_cfunc.ci, compile.c, compile.h, debug.h, eval.c,
eval_error.h, eval_jump.h, eval_load.c, eval_thread.c, gc.c,
insnhelper.h, insns.def, iseq.c, main.c, numeric.c, parse.y,
range.c, regenc.h, ruby.h, signal.c, thread.c, thread_win32.ci,
vm.c, vm.h, vm_dump.c, vm_evalbody.ci, yarvcore.c, yarvcore.h:
fixed indents and non-C90 comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11620 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-02 19:26:04 +03:00
|
|
|
/* #define throwdebug printf */
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
/************************************************/
|
|
|
|
#if DISPATCH_XXX
|
|
|
|
error !
|
|
|
|
/************************************************/
|
|
|
|
#elif OPT_CALL_THREADED_CODE
|
|
|
|
|
2007-06-28 00:03:53 +04:00
|
|
|
#define LABEL(x) insn_func_##x
|
|
|
|
#define ELABEL(x)
|
|
|
|
#define LABEL_PTR(x) &LABEL(x)
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
#define INSN_ENTRY(insn) \
|
2007-06-27 12:21:21 +04:00
|
|
|
static rb_control_frame_t * \
|
2007-06-28 17:31:08 +04:00
|
|
|
FUNC_FASTCALL(LABEL(insn))(rb_thread_t *th, rb_control_frame_t *reg_cfp) {
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
#define END_INSN(insn) return reg_cfp;}
|
|
|
|
|
|
|
|
#define NEXT_INSN() return reg_cfp;
|
|
|
|
|
|
|
|
/************************************************/
|
|
|
|
#elif OPT_TOKEN_THREADED_CODE || OPT_DIRECT_THREADED_CODE
|
|
|
|
/* threaded code with gcc */
|
|
|
|
|
|
|
|
#define LABEL(x) INSN_LABEL_##x
|
|
|
|
#define ELABEL(x) INSN_ELABEL_##x
|
|
|
|
#define LABEL_PTR(x) &&LABEL(x)
|
|
|
|
|
2007-12-23 22:03:23 +03:00
|
|
|
#define INSN_ENTRY_SIG(insn)
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
|
2007-12-23 22:03:23 +03:00
|
|
|
#define INSN_DISPATCH_SIG(insn)
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
#define INSN_ENTRY(insn) \
|
|
|
|
LABEL(insn): \
|
|
|
|
INSN_ENTRY_SIG(insn); \
|
|
|
|
|
|
|
|
/* dispather */
|
|
|
|
#if __GNUC__ && (__i386__ || __x86_64__) && __GNUC__ == 3
|
|
|
|
#define DISPATCH_ARCH_DEPEND_WAY(addr) \
|
|
|
|
asm volatile("jmp *%0;\t# -- inseted by vm.h\t[length = 2]" : : "r" (addr))
|
|
|
|
|
|
|
|
#else
|
|
|
|
#define DISPATCH_ARCH_DEPEND_WAY(addr) \
|
|
|
|
/* do nothing */
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************/
|
|
|
|
#if OPT_DIRECT_THREADED_CODE
|
|
|
|
|
|
|
|
/* for GCC 3.4.x */
|
|
|
|
#define TC_DISPATCH(insn) \
|
|
|
|
INSN_DISPATCH_SIG(insn); \
|
|
|
|
goto *GET_CURRENT_INSN(); \
|
|
|
|
;
|
|
|
|
|
|
|
|
#else
|
|
|
|
/* token threade code */
|
|
|
|
|
|
|
|
#define TC_DISPATCH(insn) \
|
|
|
|
DISPATCH_ARCH_DEPEND_WAY(insns_address_table[GET_CURRENT_INSN()]); \
|
|
|
|
INSN_DISPATCH_SIG(insn); \
|
|
|
|
goto *insns_address_table[GET_CURRENT_INSN()]; \
|
|
|
|
rb_bug("tc error");
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* DISPATCH_DIRECT_THREADED_CODE */
|
|
|
|
|
|
|
|
#define END_INSN(insn) \
|
|
|
|
DEBUG_END_INSN(); \
|
|
|
|
TC_DISPATCH(insn); \
|
|
|
|
|
|
|
|
#define INSN_DISPATCH() \
|
|
|
|
TC_DISPATCH(__START__) \
|
|
|
|
{
|
|
|
|
|
|
|
|
#define END_INSNS_DISPATCH() \
|
|
|
|
rb_bug("unknown insn: %ld", GET_CURRENT_INSN()); \
|
|
|
|
} /* end of while loop */ \
|
|
|
|
|
|
|
|
#define NEXT_INSN() TC_DISPATCH(__NEXT_INSN__)
|
|
|
|
|
|
|
|
/************************************************/
|
|
|
|
#else /* no threaded code */
|
|
|
|
/* most common method */
|
|
|
|
|
|
|
|
#define INSN_ENTRY(insn) \
|
|
|
|
case BIN(insn):
|
|
|
|
|
|
|
|
#define END_INSN(insn) \
|
|
|
|
DEBUG_END_INSN(); \
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
#define INSN_DISPATCH() \
|
|
|
|
while(1){ \
|
|
|
|
switch(GET_CURRENT_INSN()){
|
|
|
|
|
|
|
|
#define END_INSNS_DISPATCH() \
|
|
|
|
default: \
|
|
|
|
SDR(); \
|
|
|
|
rb_bug("unknown insn: %ld", GET_CURRENT_INSN()); \
|
|
|
|
} /* end of switch */ \
|
|
|
|
} /* end of while loop */ \
|
|
|
|
|
|
|
|
#define NEXT_INSN() goto first
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2007-06-27 12:21:21 +04:00
|
|
|
#define VM_SP_CNT(th, sp) ((sp) - (th)->stack)
|
|
|
|
|
|
|
|
#if OPT_CALL_THREADED_CODE
|
|
|
|
#define THROW_EXCEPTION(exc) do { \
|
|
|
|
th->errinfo = (VALUE)(exc); \
|
|
|
|
return 0; \
|
|
|
|
} while (0)
|
|
|
|
#else
|
2007-06-27 15:33:01 +04:00
|
|
|
#define THROW_EXCEPTION(exc) return (VALUE)(exc)
|
2007-06-27 12:21:21 +04:00
|
|
|
#endif
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
#define SCREG(r) (reg_##r)
|
|
|
|
|
2008-11-19 03:06:38 +03:00
|
|
|
#endif /* RUBY_VM_EXEC_H */
|