2006-12-31 18:02:22 +03:00
|
|
|
/**********************************************************************
|
|
|
|
|
|
|
|
vm.h -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
$Date$
|
|
|
|
created at: 04/01/01 16:56:59 JST
|
|
|
|
|
|
|
|
Copyright (C) 2004-2006 Koichi Sasada
|
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
#ifndef _VM_H_INCLUDED_
|
|
|
|
#define _VM_H_INCLUDED_
|
|
|
|
|
|
|
|
#if YARVDEBUG > VMDEBUG
|
|
|
|
#undef VMDEBUG
|
|
|
|
#define VMDEBUG YARVDEBUG
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef long OFFSET;
|
2007-06-24 21:19:22 +04:00
|
|
|
typedef unsigned long rb_num_t;
|
|
|
|
typedef unsigned long lindex_t;
|
|
|
|
typedef unsigned long dindex_t;
|
|
|
|
typedef rb_num_t GENTRY;
|
|
|
|
|
|
|
|
extern VALUE rb_cEnv;
|
|
|
|
extern VALUE ruby_vm_global_state_version;
|
|
|
|
extern VALUE ruby_vm_redefined_flag;
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* VM Debug Level
|
|
|
|
*
|
|
|
|
* debug level:
|
|
|
|
* 0: no debug output
|
|
|
|
* 1: show instruction name
|
|
|
|
* 2:
|
|
|
|
* 3: show stack status
|
|
|
|
* 4: show register
|
|
|
|
* 5:
|
|
|
|
* 10: gc check
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
#undef VMDEBUG
|
|
|
|
#define VMDEBUG 3
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#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
|
|
|
|
#define USAGE_ANALYSIS_INSN(insn) /* none */
|
|
|
|
#define USAGE_ANALYSIS_OPERAND(insn, n, op) /* none */
|
|
|
|
#define USAGE_ANALYSIS_REGISTER(reg, s) /* none */
|
|
|
|
#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
|
|
|
|
|
|
|
#define SDR2(cfp) vm_stack_dump_raw(GET_THREAD(), (cfp))
|
|
|
|
|
|
|
|
|
|
|
|
/************************************************/
|
|
|
|
#if DISPATCH_XXX
|
|
|
|
error !
|
|
|
|
/************************************************/
|
|
|
|
#elif OPT_CALL_THREADED_CODE
|
|
|
|
|
|
|
|
#if __GCC__
|
|
|
|
#define FASTCALL __attribute__ ((fastcall))
|
|
|
|
#else
|
|
|
|
#define FASTCALL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#define LABEL(x) insn_func_##x
|
|
|
|
#define ELABEL(x)
|
|
|
|
#define LABEL_PTR(x) &LABEL(x)
|
|
|
|
|
* blockinlining.c, compile.c, compile.h, error.c, eval.c,
eval_intern.h, eval_jump.h, eval_load.c, eval_method.h,
eval_safe.h, gc.c, insnhelper.h, insns.def, iseq.c, proc.c,
process.c, signal.c, thread.c, thread_pthread.ci, thread_win32.ci,
vm.c, vm.h, vm_dump.c, vm_evalbody.ci, vm_macro.def,
yarv.h, yarvcore.h, yarvcore.c: change type and macro names:
* yarv_*_t -> rb_*_t
* yarv_*_struct -> rb_*_struct
* yarv_tag -> rb_vm_tag
* YARV_* -> RUBY_VM_*
* proc.c, vm.c: move functions about env object creation
from proc.c to vm.c.
* proc.c, yarvcore.c: fix rb_cVM initialization place.
* inits.c: change Init_ISeq() order (after Init_VM).
* ruby.h, proc.c: change declaration place of rb_cEnv
from proc.c to ruby.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11651 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-06 22:00:03 +03:00
|
|
|
typedef rb_control_frame_t *
|
* blockinlining.c, error.c, eval.c, eval_error.h, eval_intern.h,
eval_jump.h, eval_load.c, eval_safe.h, gc.c, proc.c, signal.c,
thread.c, thread_pthread.ci, thread_win32.ci, vm.c, vm.h,
vm_dump.c, vm_evalbody.ci, yarvcore.c, yarvcore.h:
fix typo (rb_thead_t -> rb_thread_t).
* eval_intern.h: remove unused definitions.
* common.mk: fix around vm_opts.h path
and remove harmful argument passed to insns2vm.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11658 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-08 09:37:46 +03:00
|
|
|
(*insn_func_type) (rb_thread_t *, rb_control_frame_t *)FASTCALL;
|
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 * \
|
* blockinlining.c, error.c, eval.c, eval_error.h, eval_intern.h,
eval_jump.h, eval_load.c, eval_safe.h, gc.c, proc.c, signal.c,
thread.c, thread_pthread.ci, thread_win32.ci, vm.c, vm.h,
vm_dump.c, vm_evalbody.ci, yarvcore.c, yarvcore.h:
fix typo (rb_thead_t -> rb_thread_t).
* eval_intern.h: remove unused definitions.
* common.mk: fix around vm_opts.h path
and remove harmful argument passed to insns2vm.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11658 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-08 09:37:46 +03:00
|
|
|
LABEL(insn)(rb_thread_t *th, rb_control_frame_t *reg_cfp) FASTCALL {
|
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)
|
|
|
|
|
|
|
|
#define INSN_ENTRY_SIG(insn) \
|
|
|
|
asm volatile ( "; #**************************************************\n" \
|
|
|
|
"\t; #[start] " # insn "\n") \
|
|
|
|
|
|
|
|
|
|
|
|
#define INSN_DISPATCH_SIG(insn) \
|
|
|
|
asm volatile ( "; #[end ] " # insn "\n"\
|
|
|
|
"\t; #==================================================\n") \
|
|
|
|
|
|
|
|
#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) \
|
|
|
|
DISPATCH_ARCH_DEPEND_WAY(GET_CURRENT_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_CFP_CNT(th, cfp) \
|
|
|
|
((rb_control_frame_t *)(th->stack + th->stack_size) - (rb_control_frame_t *)(cfp))
|
|
|
|
#define VM_SP_CNT(th, sp) ((sp) - (th)->stack)
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
/*
|
|
|
|
env{
|
|
|
|
env[0] // special (block or prev env)
|
2007-06-26 10:14:44 +04:00
|
|
|
env[1] // env object
|
|
|
|
env[2] // prev env val
|
2006-12-31 18:02:22 +03:00
|
|
|
};
|
|
|
|
*/
|
|
|
|
|
2007-06-26 10:14:44 +04:00
|
|
|
#define ENV_IN_HEAP_P(th, env) \
|
|
|
|
(!((th)->stack < (env) && (env) < ((th)->stack + (th)->stack_size)))
|
|
|
|
#define ENV_VAL(env) ((env)[1])
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
#define FRAME_MAGIC_METHOD 0xfaffff11
|
|
|
|
#define FRAME_MAGIC_BLOCK 0xfaffff21
|
|
|
|
#define FRAME_MAGIC_CLASS 0xfaffff31
|
|
|
|
#define FRAME_MAGIC_TOP 0xfaffff41
|
|
|
|
#define FRAME_MAGIC_FINISH 0xfaffff51
|
|
|
|
#define FRAME_MAGIC_CFUNC 0xfaffff61
|
|
|
|
#define FRAME_MAGIC_PROC 0xfaffff71
|
|
|
|
#define FRAME_MAGIC_IFUNC 0xfaffff81
|
|
|
|
#define FRAME_MAGIC_EVAL 0xfaffff91
|
|
|
|
#define FRAME_MAGIC_LAMBDA 0xfaffffa1
|
|
|
|
|
|
|
|
#define CHECK_FRAME_MAGIC(magic) \
|
|
|
|
{ \
|
|
|
|
if((magic & 0xffffff00) != 0xfaffff00){ \
|
|
|
|
rb_bug("YARV Stack frame error: %08x", magic); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2007-05-01 08:35:58 +04:00
|
|
|
#define RUBYVM_CFUNC_FRAME_P(cfp) \
|
|
|
|
((cfp)->magic == FRAME_MAGIC_CFUNC)
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
/*
|
|
|
|
* Excception
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define NEW_THROW_OBJECT(val, pt, st) NEW_NODE(NODE_LIT, (val), (pt), (st))
|
|
|
|
#define GET_THROWOBJ_VAL(obj) ((VALUE)RNODE((obj))->u1.value)
|
|
|
|
#define GET_THROWOBJ_CATCH_POINT(obj) ((VALUE*)RNODE((obj))->u2.value)
|
|
|
|
#define GET_THROWOBJ_STATE(obj) ((int)RNODE((obj))->u3.value)
|
|
|
|
|
|
|
|
#define SET_THROWOBJ_CATCH_POINT(obj, val) \
|
|
|
|
(RNODE((obj))->u2.value = (val))
|
|
|
|
#define SET_THROWOBJ_STATE(obj, val) \
|
|
|
|
(RNODE((obj))->u3.value = (val))
|
|
|
|
|
2007-06-27 12:21:21 +04:00
|
|
|
#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)
|
|
|
|
|
|
|
|
/* VM state version */
|
|
|
|
|
2007-06-24 21:19:22 +04:00
|
|
|
#define GET_VM_STATE_VERSION() (ruby_vm_global_state_version)
|
2006-12-31 18:02:22 +03:00
|
|
|
#define INC_VM_STATE_VERSION() \
|
2007-06-24 21:19:22 +04:00
|
|
|
(ruby_vm_global_state_version = (ruby_vm_global_state_version+1) & 0x8fffffff)
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
#define BOP_PLUS 0x01
|
|
|
|
#define BOP_MINUS 0x02
|
|
|
|
#define BOP_MULT 0x04
|
|
|
|
#define BOP_DIV 0x08
|
|
|
|
#define BOP_MOD 0x10
|
|
|
|
#define BOP_EQ 0x20
|
|
|
|
#define BOP_LT 0x40
|
|
|
|
#define BOP_LE 0x80
|
|
|
|
#define BOP_LTLT 0x100
|
|
|
|
#define BOP_AREF 0x200
|
|
|
|
#define BOP_ASET 0x400
|
|
|
|
#define BOP_LENGTH 0x800
|
|
|
|
#define BOP_SUCC 0x1000
|
2007-05-21 08:46:51 +04:00
|
|
|
#define BOP_GT 0x2000
|
|
|
|
#define BOP_GE 0x4000
|
2006-12-31 18:02:22 +03:00
|
|
|
|
* 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
|
|
|
#endif /* _VM_H_INCLUDED_ */
|