debugger-ruby_core_source 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/addr2line.h +21 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/constant.h +34 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/debug.h +41 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/dln.h +50 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/encdb.h +167 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/eval_intern.h +234 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/gc.h +99 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/id.h +175 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/insns.inc +179 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/insns_info.inc +695 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/internal.h +239 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/iseq.h +126 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/known_errors.inc +731 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/method.h +105 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/node.h +503 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/node_name.inc +208 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/opt_sc.inc +670 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/optinsn.inc +30 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/optunifs.inc +116 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/parse.h +302 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/regenc.h +219 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/regint.h +850 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/regparse.h +362 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/revision.h +1 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/ruby_atomic.h +115 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/siphash.h +48 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/thread_pthread.h +51 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/thread_win32.h +40 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/timev.h +21 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/transcode_data.h +117 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/transdb.h +189 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/version.h +52 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/vm.inc +3054 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/vm_core.h +763 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/vm_exec.h +184 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/vm_insnhelper.h +220 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/vm_opts.h +51 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p426/vmtc.inc +97 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/addr2line.h +21 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/constant.h +36 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/dln.h +50 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/encdb.h +169 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/eval_intern.h +213 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/gc.h +104 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/id.h +133 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/insns.inc +187 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/insns_info.inc +724 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/internal.h +389 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/iseq.h +139 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/known_errors.inc +731 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/method.h +138 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/node.h +539 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/node_name.inc +212 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/opt_sc.inc +702 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/optinsn.inc +83 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/optunifs.inc +120 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/parse.h +292 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/probes_helper.h +67 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/regenc.h +227 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/regint.h +915 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/regparse.h +367 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/revision.h +1 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/ruby_atomic.h +121 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/siphash.h +48 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/thread_pthread.h +56 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/thread_win32.h +45 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/timev.h +21 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/transcode_data.h +127 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/transdb.h +193 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/version.h +52 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/vm.inc +3196 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/vm_core.h +1009 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/vm_debug.h +41 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/vm_exec.h +173 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/vm_insnhelper.h +274 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/vm_opts.h +56 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p195/vmtc.inc +101 -0
- data/lib/debugger/ruby_core_source/version.rb +1 -1
- metadata +79 -2
@@ -0,0 +1,41 @@
|
|
1
|
+
/**********************************************************************
|
2
|
+
|
3
|
+
vm_debug.h - YARV Debug function interface
|
4
|
+
|
5
|
+
$Author: ko1 $
|
6
|
+
created at: 04/08/25 02:33:49 JST
|
7
|
+
|
8
|
+
Copyright (C) 2004-2007 Koichi Sasada
|
9
|
+
|
10
|
+
**********************************************************************/
|
11
|
+
|
12
|
+
#ifndef RUBY_DEBUG_H
|
13
|
+
#define RUBY_DEBUG_H
|
14
|
+
|
15
|
+
#include "ruby/ruby.h"
|
16
|
+
#include "node.h"
|
17
|
+
|
18
|
+
#if defined __GNUC__ && __GNUC__ >= 4
|
19
|
+
#pragma GCC visibility push(default)
|
20
|
+
#endif
|
21
|
+
|
22
|
+
#define dpv(h,v) ruby_debug_print_value(-1, 0, (h), (v))
|
23
|
+
#define dp(v) ruby_debug_print_value(-1, 0, "", (v))
|
24
|
+
#define dpi(i) ruby_debug_print_id(-1, 0, "", (i))
|
25
|
+
#define dpn(n) ruby_debug_print_node(-1, 0, "", (n))
|
26
|
+
|
27
|
+
#define bp() ruby_debug_breakpoint()
|
28
|
+
|
29
|
+
VALUE ruby_debug_print_value(int level, int debug_level, const char *header, VALUE v);
|
30
|
+
ID ruby_debug_print_id(int level, int debug_level, const char *header, ID id);
|
31
|
+
NODE *ruby_debug_print_node(int level, int debug_level, const char *header, const NODE *node);
|
32
|
+
int ruby_debug_print_indent(int level, int debug_level, int indent_level);
|
33
|
+
void ruby_debug_breakpoint(void);
|
34
|
+
void ruby_debug_gc_check_func(void);
|
35
|
+
void ruby_set_debug_option(const char *str);
|
36
|
+
|
37
|
+
#if defined __GNUC__ && __GNUC__ >= 4
|
38
|
+
#pragma GCC visibility pop
|
39
|
+
#endif
|
40
|
+
|
41
|
+
#endif /* RUBY_DEBUG_H */
|
@@ -0,0 +1,173 @@
|
|
1
|
+
/**********************************************************************
|
2
|
+
|
3
|
+
vm.h -
|
4
|
+
|
5
|
+
$Author: nagachika $
|
6
|
+
created at: 04/01/01 16:56:59 JST
|
7
|
+
|
8
|
+
Copyright (C) 2004-2007 Koichi Sasada
|
9
|
+
|
10
|
+
**********************************************************************/
|
11
|
+
|
12
|
+
#ifndef RUBY_VM_EXEC_H
|
13
|
+
#define RUBY_VM_EXEC_H
|
14
|
+
|
15
|
+
typedef long OFFSET;
|
16
|
+
typedef unsigned long lindex_t;
|
17
|
+
typedef VALUE GENTRY;
|
18
|
+
typedef rb_iseq_t *ISEQ;
|
19
|
+
|
20
|
+
#ifdef __GCC__
|
21
|
+
/* TODO: machine dependent prefetch instruction */
|
22
|
+
#define PREFETCH(pc)
|
23
|
+
#else
|
24
|
+
#define PREFETCH(pc)
|
25
|
+
#endif
|
26
|
+
|
27
|
+
#if VMDEBUG > 0
|
28
|
+
#define debugs printf
|
29
|
+
#define DEBUG_ENTER_INSN(insn) \
|
30
|
+
rb_vmdebug_debug_print_pre(th, GET_CFP());
|
31
|
+
|
32
|
+
#if OPT_STACK_CACHING
|
33
|
+
#define SC_REGS() , reg_a, reg_b
|
34
|
+
#else
|
35
|
+
#define SC_REGS()
|
36
|
+
#endif
|
37
|
+
|
38
|
+
#define DEBUG_END_INSN() \
|
39
|
+
rb_vmdebug_debug_print_post(th, GET_CFP() SC_REGS());
|
40
|
+
|
41
|
+
#else
|
42
|
+
|
43
|
+
#define debugs
|
44
|
+
#define DEBUG_ENTER_INSN(insn)
|
45
|
+
#define DEBUG_END_INSN()
|
46
|
+
#endif
|
47
|
+
|
48
|
+
#define throwdebug if(0)printf
|
49
|
+
/* #define throwdebug printf */
|
50
|
+
|
51
|
+
/************************************************/
|
52
|
+
#if defined(DISPATCH_XXX)
|
53
|
+
error !
|
54
|
+
/************************************************/
|
55
|
+
#elif OPT_CALL_THREADED_CODE
|
56
|
+
|
57
|
+
#define LABEL(x) insn_func_##x
|
58
|
+
#define ELABEL(x)
|
59
|
+
#define LABEL_PTR(x) &LABEL(x)
|
60
|
+
|
61
|
+
#define INSN_ENTRY(insn) \
|
62
|
+
static rb_control_frame_t * \
|
63
|
+
FUNC_FASTCALL(LABEL(insn))(rb_thread_t *th, rb_control_frame_t *reg_cfp) {
|
64
|
+
|
65
|
+
#define END_INSN(insn) return reg_cfp;}
|
66
|
+
|
67
|
+
#define NEXT_INSN() return reg_cfp;
|
68
|
+
|
69
|
+
/************************************************/
|
70
|
+
#elif OPT_TOKEN_THREADED_CODE || OPT_DIRECT_THREADED_CODE
|
71
|
+
/* threaded code with gcc */
|
72
|
+
|
73
|
+
#define LABEL(x) INSN_LABEL_##x
|
74
|
+
#define ELABEL(x) INSN_ELABEL_##x
|
75
|
+
#define LABEL_PTR(x) &&LABEL(x)
|
76
|
+
|
77
|
+
#define INSN_ENTRY_SIG(insn)
|
78
|
+
|
79
|
+
|
80
|
+
#define INSN_DISPATCH_SIG(insn)
|
81
|
+
|
82
|
+
#define INSN_ENTRY(insn) \
|
83
|
+
LABEL(insn): \
|
84
|
+
INSN_ENTRY_SIG(insn); \
|
85
|
+
|
86
|
+
/* dispatcher */
|
87
|
+
#if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) && __GNUC__ == 3
|
88
|
+
#define DISPATCH_ARCH_DEPEND_WAY(addr) \
|
89
|
+
asm volatile("jmp *%0;\t# -- inseted by vm.h\t[length = 2]" : : "r" (addr))
|
90
|
+
|
91
|
+
#else
|
92
|
+
#define DISPATCH_ARCH_DEPEND_WAY(addr) \
|
93
|
+
/* do nothing */
|
94
|
+
|
95
|
+
#endif
|
96
|
+
|
97
|
+
|
98
|
+
/**********************************/
|
99
|
+
#if OPT_DIRECT_THREADED_CODE
|
100
|
+
|
101
|
+
/* for GCC 3.4.x */
|
102
|
+
#define TC_DISPATCH(insn) \
|
103
|
+
INSN_DISPATCH_SIG(insn); \
|
104
|
+
goto *(void const *)GET_CURRENT_INSN(); \
|
105
|
+
;
|
106
|
+
|
107
|
+
#else
|
108
|
+
/* token threaded code */
|
109
|
+
|
110
|
+
#define TC_DISPATCH(insn) \
|
111
|
+
DISPATCH_ARCH_DEPEND_WAY(insns_address_table[GET_CURRENT_INSN()]); \
|
112
|
+
INSN_DISPATCH_SIG(insn); \
|
113
|
+
goto *insns_address_table[GET_CURRENT_INSN()]; \
|
114
|
+
rb_bug("tc error");
|
115
|
+
|
116
|
+
|
117
|
+
#endif /* DISPATCH_DIRECT_THREADED_CODE */
|
118
|
+
|
119
|
+
#define END_INSN(insn) \
|
120
|
+
DEBUG_END_INSN(); \
|
121
|
+
TC_DISPATCH(insn); \
|
122
|
+
|
123
|
+
#define INSN_DISPATCH() \
|
124
|
+
TC_DISPATCH(__START__) \
|
125
|
+
{
|
126
|
+
|
127
|
+
#define END_INSNS_DISPATCH() \
|
128
|
+
rb_bug("unknown insn: %"PRIdVALUE, GET_CURRENT_INSN()); \
|
129
|
+
} /* end of while loop */ \
|
130
|
+
|
131
|
+
#define NEXT_INSN() TC_DISPATCH(__NEXT_INSN__)
|
132
|
+
|
133
|
+
/************************************************/
|
134
|
+
#else /* no threaded code */
|
135
|
+
/* most common method */
|
136
|
+
|
137
|
+
#define INSN_ENTRY(insn) \
|
138
|
+
case BIN(insn):
|
139
|
+
|
140
|
+
#define END_INSN(insn) \
|
141
|
+
DEBUG_END_INSN(); \
|
142
|
+
break;
|
143
|
+
|
144
|
+
|
145
|
+
#define INSN_DISPATCH() \
|
146
|
+
while (1) { \
|
147
|
+
switch (GET_CURRENT_INSN()) {
|
148
|
+
|
149
|
+
#define END_INSNS_DISPATCH() \
|
150
|
+
default: \
|
151
|
+
SDR(); \
|
152
|
+
rb_bug("unknown insn: %ld", GET_CURRENT_INSN()); \
|
153
|
+
} /* end of switch */ \
|
154
|
+
} /* end of while loop */ \
|
155
|
+
|
156
|
+
#define NEXT_INSN() goto first
|
157
|
+
|
158
|
+
#endif
|
159
|
+
|
160
|
+
#define VM_SP_CNT(th, sp) ((sp) - (th)->stack)
|
161
|
+
|
162
|
+
#if OPT_CALL_THREADED_CODE
|
163
|
+
#define THROW_EXCEPTION(exc) do { \
|
164
|
+
th->errinfo = (VALUE)(exc); \
|
165
|
+
return 0; \
|
166
|
+
} while (0)
|
167
|
+
#else
|
168
|
+
#define THROW_EXCEPTION(exc) return (VALUE)(exc)
|
169
|
+
#endif
|
170
|
+
|
171
|
+
#define SCREG(r) (reg_##r)
|
172
|
+
|
173
|
+
#endif /* RUBY_VM_EXEC_H */
|
@@ -0,0 +1,274 @@
|
|
1
|
+
/**********************************************************************
|
2
|
+
|
3
|
+
insnhelper.h - helper macros to implement each instructions
|
4
|
+
|
5
|
+
$Author: naruse $
|
6
|
+
created at: 04/01/01 15:50:34 JST
|
7
|
+
|
8
|
+
Copyright (C) 2004-2007 Koichi Sasada
|
9
|
+
|
10
|
+
**********************************************************************/
|
11
|
+
|
12
|
+
#ifndef RUBY_INSNHELPER_H
|
13
|
+
#define RUBY_INSNHELPER_H
|
14
|
+
|
15
|
+
/**
|
16
|
+
* VM Debug Level
|
17
|
+
*
|
18
|
+
* debug level:
|
19
|
+
* 0: no debug output
|
20
|
+
* 1: show instruction name
|
21
|
+
* 2: show stack frame when control stack frame is changed
|
22
|
+
* 3: show stack status
|
23
|
+
* 4: show register
|
24
|
+
* 5:
|
25
|
+
* 10: gc check
|
26
|
+
*/
|
27
|
+
|
28
|
+
#ifndef VMDEBUG
|
29
|
+
#define VMDEBUG 0
|
30
|
+
#endif
|
31
|
+
|
32
|
+
#if 0
|
33
|
+
#undef VMDEBUG
|
34
|
+
#define VMDEBUG 3
|
35
|
+
#endif
|
36
|
+
|
37
|
+
enum {
|
38
|
+
BOP_PLUS,
|
39
|
+
BOP_MINUS,
|
40
|
+
BOP_MULT,
|
41
|
+
BOP_DIV,
|
42
|
+
BOP_MOD,
|
43
|
+
BOP_EQ,
|
44
|
+
BOP_EQQ,
|
45
|
+
BOP_LT,
|
46
|
+
BOP_LE,
|
47
|
+
BOP_LTLT,
|
48
|
+
BOP_AREF,
|
49
|
+
BOP_ASET,
|
50
|
+
BOP_LENGTH,
|
51
|
+
BOP_SIZE,
|
52
|
+
BOP_EMPTY_P,
|
53
|
+
BOP_SUCC,
|
54
|
+
BOP_GT,
|
55
|
+
BOP_GE,
|
56
|
+
BOP_NOT,
|
57
|
+
BOP_NEQ,
|
58
|
+
|
59
|
+
BOP_LAST_
|
60
|
+
};
|
61
|
+
|
62
|
+
extern char ruby_vm_redefined_flag[BOP_LAST_];
|
63
|
+
extern VALUE ruby_vm_const_missing_count;
|
64
|
+
|
65
|
+
#if VM_COLLECT_USAGE_DETAILS
|
66
|
+
#define COLLECT_USAGE_INSN(insn) vm_collect_usage_insn(insn)
|
67
|
+
#define COLLECT_USAGE_OPERAND(insn, n, op) vm_collect_usage_operand((insn), (n), ((VALUE)(op)))
|
68
|
+
|
69
|
+
#define COLLECT_USAGE_REGISTER(reg, s) vm_collect_usage_register((reg), (s))
|
70
|
+
#else
|
71
|
+
#define COLLECT_USAGE_INSN(insn) /* none */
|
72
|
+
#define COLLECT_USAGE_OPERAND(insn, n, op) /* none */
|
73
|
+
#define COLLECT_USAGE_REGISTER(reg, s) /* none */
|
74
|
+
#endif
|
75
|
+
|
76
|
+
/**********************************************************/
|
77
|
+
/* deal with stack */
|
78
|
+
/**********************************************************/
|
79
|
+
|
80
|
+
#define PUSH(x) (SET_SV(x), INC_SP(1))
|
81
|
+
#define TOPN(n) (*(GET_SP()-(n)-1))
|
82
|
+
#define POPN(n) (DEC_SP(n))
|
83
|
+
#define POP() (DEC_SP(1))
|
84
|
+
#define STACK_ADDR_FROM_TOP(n) (GET_SP()-(n))
|
85
|
+
|
86
|
+
#define GET_TOS() (tos) /* dummy */
|
87
|
+
|
88
|
+
/**********************************************************/
|
89
|
+
/* deal with registers */
|
90
|
+
/**********************************************************/
|
91
|
+
|
92
|
+
#define REG_CFP (reg_cfp)
|
93
|
+
#define REG_PC (REG_CFP->pc)
|
94
|
+
#define REG_SP (REG_CFP->sp)
|
95
|
+
#define REG_EP (REG_CFP->ep)
|
96
|
+
|
97
|
+
#define RESTORE_REGS() do { \
|
98
|
+
REG_CFP = th->cfp; \
|
99
|
+
} while (0)
|
100
|
+
|
101
|
+
#define REG_A reg_a
|
102
|
+
#define REG_B reg_b
|
103
|
+
|
104
|
+
enum vm_regan_regtype {
|
105
|
+
VM_REGAN_PC = 0,
|
106
|
+
VM_REGAN_SP = 1,
|
107
|
+
VM_REGAN_EP = 2,
|
108
|
+
VM_REGAN_CFP = 3,
|
109
|
+
VM_REGAN_SELF = 4,
|
110
|
+
VM_REGAN_ISEQ = 5,
|
111
|
+
};
|
112
|
+
enum vm_regan_acttype {
|
113
|
+
VM_REGAN_ACT_GET = 0,
|
114
|
+
VM_REGAN_ACT_SET = 1,
|
115
|
+
};
|
116
|
+
|
117
|
+
#if VM_COLLECT_USAGE_DETAILS
|
118
|
+
#define COLLECT_USAGE_REGISTER_HELPER(a, b, v) \
|
119
|
+
(COLLECT_USAGE_REGISTER((VM_REGAN_##a), (VM_REGAN_ACT_##b)), (v))
|
120
|
+
#else
|
121
|
+
#define COLLECT_USAGE_REGISTER_HELPER(a, b, v) (v)
|
122
|
+
#endif
|
123
|
+
|
124
|
+
/* PC */
|
125
|
+
#define GET_PC() (COLLECT_USAGE_REGISTER_HELPER(PC, GET, REG_PC))
|
126
|
+
#define SET_PC(x) (REG_PC = (COLLECT_USAGE_REGISTER_HELPER(PC, SET, (x))))
|
127
|
+
#define GET_CURRENT_INSN() (*GET_PC())
|
128
|
+
#define GET_OPERAND(n) (GET_PC()[(n)])
|
129
|
+
#define ADD_PC(n) (SET_PC(REG_PC + (n)))
|
130
|
+
|
131
|
+
#define GET_PC_COUNT() (REG_PC - GET_ISEQ()->iseq_encoded)
|
132
|
+
#define JUMP(dst) (REG_PC += (dst))
|
133
|
+
|
134
|
+
/* frame pointer, environment pointer */
|
135
|
+
#define GET_CFP() (COLLECT_USAGE_REGISTER_HELPER(CFP, GET, REG_CFP))
|
136
|
+
#define GET_EP() (COLLECT_USAGE_REGISTER_HELPER(EP, GET, REG_EP))
|
137
|
+
#define SET_EP(x) (REG_EP = (COLLECT_USAGE_REGISTER_HELPER(EP, SET, (x))))
|
138
|
+
#define GET_LEP() (VM_EP_LEP(GET_EP()))
|
139
|
+
|
140
|
+
/* SP */
|
141
|
+
#define GET_SP() (COLLECT_USAGE_REGISTER_HELPER(SP, GET, REG_SP))
|
142
|
+
#define SET_SP(x) (REG_SP = (COLLECT_USAGE_REGISTER_HELPER(SP, SET, (x))))
|
143
|
+
#define INC_SP(x) (REG_SP += (COLLECT_USAGE_REGISTER_HELPER(SP, SET, (x))))
|
144
|
+
#define DEC_SP(x) (REG_SP -= (COLLECT_USAGE_REGISTER_HELPER(SP, SET, (x))))
|
145
|
+
#define SET_SV(x) (*GET_SP() = (x))
|
146
|
+
/* set current stack value as x */
|
147
|
+
|
148
|
+
#define GET_SP_COUNT() (REG_SP - th->stack)
|
149
|
+
|
150
|
+
/* instruction sequence C struct */
|
151
|
+
#define GET_ISEQ() (GET_CFP()->iseq)
|
152
|
+
|
153
|
+
/**********************************************************/
|
154
|
+
/* deal with variables */
|
155
|
+
/**********************************************************/
|
156
|
+
|
157
|
+
#define GET_PREV_EP(ep) ((VALUE *)((ep)[0] & ~0x03))
|
158
|
+
|
159
|
+
#define GET_GLOBAL(entry) rb_gvar_get((struct rb_global_entry*)(entry))
|
160
|
+
#define SET_GLOBAL(entry, val) rb_gvar_set((struct rb_global_entry*)(entry), (val))
|
161
|
+
|
162
|
+
#define GET_CONST_INLINE_CACHE(dst) ((IC) * (GET_PC() + (dst) + 2))
|
163
|
+
|
164
|
+
/**********************************************************/
|
165
|
+
/* deal with values */
|
166
|
+
/**********************************************************/
|
167
|
+
|
168
|
+
#define GET_SELF() (COLLECT_USAGE_REGISTER_HELPER(SELF, GET, GET_CFP()->self))
|
169
|
+
|
170
|
+
/**********************************************************/
|
171
|
+
/* deal with control flow 2: method/iterator */
|
172
|
+
/**********************************************************/
|
173
|
+
|
174
|
+
#define COPY_CREF_OMOD(c1, c2) do { \
|
175
|
+
(c1)->nd_refinements = (c2)->nd_refinements; \
|
176
|
+
if (!NIL_P((c2)->nd_refinements)) { \
|
177
|
+
(c1)->flags |= NODE_FL_CREF_OMOD_SHARED; \
|
178
|
+
(c2)->flags |= NODE_FL_CREF_OMOD_SHARED; \
|
179
|
+
} \
|
180
|
+
} while (0)
|
181
|
+
|
182
|
+
#define COPY_CREF(c1, c2) do { \
|
183
|
+
NODE *__tmp_c2 = (c2); \
|
184
|
+
COPY_CREF_OMOD(c1, __tmp_c2); \
|
185
|
+
(c1)->nd_clss = __tmp_c2->nd_clss; \
|
186
|
+
(c1)->nd_visi = __tmp_c2->nd_visi;\
|
187
|
+
(c1)->nd_next = __tmp_c2->nd_next; \
|
188
|
+
if (__tmp_c2->flags & NODE_FL_CREF_PUSHED_BY_EVAL) { \
|
189
|
+
(c1)->flags |= NODE_FL_CREF_PUSHED_BY_EVAL; \
|
190
|
+
} \
|
191
|
+
} while (0)
|
192
|
+
|
193
|
+
#define CALL_METHOD(ci) do { \
|
194
|
+
VALUE v = (*(ci)->call)(th, GET_CFP(), (ci)); \
|
195
|
+
if (v == Qundef) { \
|
196
|
+
RESTORE_REGS(); \
|
197
|
+
NEXT_INSN(); \
|
198
|
+
} \
|
199
|
+
else { \
|
200
|
+
val = v; \
|
201
|
+
} \
|
202
|
+
} while (0)
|
203
|
+
|
204
|
+
/* set fastpath when cached method is *NOT* protected
|
205
|
+
* because inline method cache does not care about receiver.
|
206
|
+
*/
|
207
|
+
|
208
|
+
#ifndef OPT_CALL_FASTPATH
|
209
|
+
#define OPT_CALL_FASTPATH 1
|
210
|
+
#endif
|
211
|
+
|
212
|
+
#if OPT_CALL_FASTPATH
|
213
|
+
#define CI_SET_FASTPATH(ci, func, enabled) do { \
|
214
|
+
if (LIKELY(enabled)) ((ci)->call = (func)); \
|
215
|
+
} while (0)
|
216
|
+
#else
|
217
|
+
#define CI_SET_FASTPATH(ci, func, enabled) /* do nothing */
|
218
|
+
#endif
|
219
|
+
|
220
|
+
#define GET_BLOCK_PTR() ((rb_block_t *)(GC_GUARDED_PTR_REF(GET_LEP()[0])))
|
221
|
+
|
222
|
+
/**********************************************************/
|
223
|
+
/* deal with control flow 3: exception */
|
224
|
+
/**********************************************************/
|
225
|
+
|
226
|
+
|
227
|
+
/**********************************************************/
|
228
|
+
/* others */
|
229
|
+
/**********************************************************/
|
230
|
+
|
231
|
+
/* optimize insn */
|
232
|
+
#define FIXNUM_REDEFINED_OP_FLAG (1 << 0)
|
233
|
+
#define FLOAT_REDEFINED_OP_FLAG (1 << 1)
|
234
|
+
#define STRING_REDEFINED_OP_FLAG (1 << 2)
|
235
|
+
#define ARRAY_REDEFINED_OP_FLAG (1 << 3)
|
236
|
+
#define HASH_REDEFINED_OP_FLAG (1 << 4)
|
237
|
+
#define BIGNUM_REDEFINED_OP_FLAG (1 << 5)
|
238
|
+
#define SYMBOL_REDEFINED_OP_FLAG (1 << 6)
|
239
|
+
#define TIME_REDEFINED_OP_FLAG (1 << 7)
|
240
|
+
|
241
|
+
#define BASIC_OP_UNREDEFINED_P(op, klass) (LIKELY((ruby_vm_redefined_flag[(op)]&(klass)) == 0))
|
242
|
+
|
243
|
+
#define FIXNUM_2_P(a, b) ((a) & (b) & 1)
|
244
|
+
#if USE_FLONUM
|
245
|
+
#define FLONUM_2_P(a, b) (((((a)^2) | ((b)^2)) & 3) == 0) /* (FLONUM_P(a) && FLONUM_P(b)) */
|
246
|
+
#else
|
247
|
+
#define FLONUM_2_P(a, b) 0
|
248
|
+
#endif
|
249
|
+
#define HEAP_CLASS_OF(obj) (RBASIC(obj)->klass)
|
250
|
+
|
251
|
+
#ifndef USE_IC_FOR_SPECIALIZED_METHOD
|
252
|
+
#define USE_IC_FOR_SPECIALIZED_METHOD 1
|
253
|
+
#endif
|
254
|
+
|
255
|
+
#define CALL_SIMPLE_METHOD(recv) do { \
|
256
|
+
ci->blockptr = 0; ci->argc = ci->orig_argc; \
|
257
|
+
vm_search_method(ci, ci->recv = (recv)); \
|
258
|
+
CALL_METHOD(ci); \
|
259
|
+
} while (0)
|
260
|
+
|
261
|
+
static VALUE ruby_vm_global_state_version = 1;
|
262
|
+
|
263
|
+
#define GET_VM_STATE_VERSION() (ruby_vm_global_state_version)
|
264
|
+
#define INC_VM_STATE_VERSION() do { \
|
265
|
+
ruby_vm_global_state_version = (ruby_vm_global_state_version + 1); \
|
266
|
+
if (ruby_vm_global_state_version == 0) vm_clear_all_cache(); \
|
267
|
+
} while (0)
|
268
|
+
static void vm_clear_all_cache(void);
|
269
|
+
|
270
|
+
static VALUE make_no_method_exception(VALUE exc, const char *format,
|
271
|
+
VALUE obj, int argc, const VALUE *argv);
|
272
|
+
|
273
|
+
|
274
|
+
#endif /* RUBY_INSNHELPER_H */
|