binding_of_caller 0.7.2 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.gemtest +0 -0
- data/.github/workflows/test.yml +108 -0
- data/.gitignore +12 -7
- data/.yardopts +0 -0
- data/Gemfile +6 -1
- data/LICENSE +0 -0
- data/README.md +17 -5
- data/Rakefile +4 -132
- data/binding_of_caller.gemspec +33 -35
- data/lib/binding_of_caller/jruby_interpreted.rb +123 -0
- data/lib/binding_of_caller/{mri2.rb → mri.rb} +8 -14
- data/lib/binding_of_caller/rubinius.rb +21 -28
- data/lib/binding_of_caller/version.rb +1 -1
- data/lib/binding_of_caller.rb +9 -10
- metadata +33 -109
- data/.travis.yml +0 -23
- data/HISTORY +0 -0
- data/examples/example.rb +0 -41
- data/ext/binding_of_caller/binding_of_caller.c +0 -225
- data/ext/binding_of_caller/extconf.rb +0 -33
- data/ext/binding_of_caller/ruby_headers/192/debug.h +0 -36
- data/ext/binding_of_caller/ruby_headers/192/dln.h +0 -41
- data/ext/binding_of_caller/ruby_headers/192/eval_intern.h +0 -232
- data/ext/binding_of_caller/ruby_headers/192/id.h +0 -173
- data/ext/binding_of_caller/ruby_headers/192/iseq.h +0 -104
- data/ext/binding_of_caller/ruby_headers/192/method.h +0 -103
- data/ext/binding_of_caller/ruby_headers/192/node.h +0 -483
- data/ext/binding_of_caller/ruby_headers/192/regenc.h +0 -211
- data/ext/binding_of_caller/ruby_headers/192/regint.h +0 -841
- data/ext/binding_of_caller/ruby_headers/192/regparse.h +0 -354
- data/ext/binding_of_caller/ruby_headers/192/rubys_gc.h +0 -77
- data/ext/binding_of_caller/ruby_headers/192/thread_pthread.h +0 -27
- data/ext/binding_of_caller/ruby_headers/192/thread_win32.h +0 -33
- data/ext/binding_of_caller/ruby_headers/192/timev.h +0 -21
- data/ext/binding_of_caller/ruby_headers/192/transcode_data.h +0 -109
- data/ext/binding_of_caller/ruby_headers/192/version.h +0 -55
- data/ext/binding_of_caller/ruby_headers/192/vm_core.h +0 -703
- data/ext/binding_of_caller/ruby_headers/192/vm_exec.h +0 -184
- data/ext/binding_of_caller/ruby_headers/192/vm_insnhelper.h +0 -208
- data/ext/binding_of_caller/ruby_headers/192/vm_opts.h +0 -51
- data/ext/binding_of_caller/ruby_headers/193/addr2line.h +0 -21
- data/ext/binding_of_caller/ruby_headers/193/atomic.h +0 -56
- data/ext/binding_of_caller/ruby_headers/193/constant.h +0 -34
- data/ext/binding_of_caller/ruby_headers/193/debug.h +0 -41
- data/ext/binding_of_caller/ruby_headers/193/dln.h +0 -50
- data/ext/binding_of_caller/ruby_headers/193/encdb.h +0 -167
- data/ext/binding_of_caller/ruby_headers/193/eval_intern.h +0 -234
- data/ext/binding_of_caller/ruby_headers/193/id.h +0 -175
- data/ext/binding_of_caller/ruby_headers/193/internal.h +0 -227
- data/ext/binding_of_caller/ruby_headers/193/iseq.h +0 -125
- data/ext/binding_of_caller/ruby_headers/193/method.h +0 -105
- data/ext/binding_of_caller/ruby_headers/193/node.h +0 -503
- data/ext/binding_of_caller/ruby_headers/193/parse.h +0 -186
- data/ext/binding_of_caller/ruby_headers/193/regenc.h +0 -219
- data/ext/binding_of_caller/ruby_headers/193/regint.h +0 -851
- data/ext/binding_of_caller/ruby_headers/193/regparse.h +0 -362
- data/ext/binding_of_caller/ruby_headers/193/revision.h +0 -1
- data/ext/binding_of_caller/ruby_headers/193/rubys_gc.h +0 -98
- data/ext/binding_of_caller/ruby_headers/193/thread_pthread.h +0 -51
- data/ext/binding_of_caller/ruby_headers/193/thread_win32.h +0 -40
- data/ext/binding_of_caller/ruby_headers/193/timev.h +0 -21
- data/ext/binding_of_caller/ruby_headers/193/transcode_data.h +0 -117
- data/ext/binding_of_caller/ruby_headers/193/transdb.h +0 -189
- data/ext/binding_of_caller/ruby_headers/193/version.h +0 -52
- data/ext/binding_of_caller/ruby_headers/193/vm_core.h +0 -755
- data/ext/binding_of_caller/ruby_headers/193/vm_exec.h +0 -184
- data/ext/binding_of_caller/ruby_headers/193/vm_insnhelper.h +0 -220
- data/ext/binding_of_caller/ruby_headers/193/vm_opts.h +0 -51
- data/test/test_binding_of_caller.rb +0 -161
@@ -1,184 +0,0 @@
|
|
1
|
-
/**********************************************************************
|
2
|
-
|
3
|
-
vm.h -
|
4
|
-
|
5
|
-
$Author$
|
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 unsigned long dindex_t;
|
18
|
-
typedef rb_num_t GENTRY;
|
19
|
-
typedef rb_iseq_t *ISEQ;
|
20
|
-
|
21
|
-
#ifdef COLLECT_USAGE_ANALYSIS
|
22
|
-
#define USAGE_ANALYSIS_INSN(insn) vm_analysis_insn(insn)
|
23
|
-
#define USAGE_ANALYSIS_OPERAND(insn, n, op) vm_analysis_operand(insn, n, (VALUE)op)
|
24
|
-
#define USAGE_ANALYSIS_REGISTER(reg, s) vm_analysis_register(reg, s)
|
25
|
-
#else
|
26
|
-
#define USAGE_ANALYSIS_INSN(insn) /* none */
|
27
|
-
#define USAGE_ANALYSIS_OPERAND(insn, n, op) /* none */
|
28
|
-
#define USAGE_ANALYSIS_REGISTER(reg, s) /* none */
|
29
|
-
#endif
|
30
|
-
|
31
|
-
#ifdef __GCC__
|
32
|
-
/* TODO: machine dependent prefetch instruction */
|
33
|
-
#define PREFETCH(pc)
|
34
|
-
#else
|
35
|
-
#define PREFETCH(pc)
|
36
|
-
#endif
|
37
|
-
|
38
|
-
#if VMDEBUG > 0
|
39
|
-
#define debugs printf
|
40
|
-
#define DEBUG_ENTER_INSN(insn) \
|
41
|
-
debug_print_pre(th, GET_CFP());
|
42
|
-
|
43
|
-
#if OPT_STACK_CACHING
|
44
|
-
#define SC_REGS() , reg_a, reg_b
|
45
|
-
#else
|
46
|
-
#define SC_REGS()
|
47
|
-
#endif
|
48
|
-
|
49
|
-
#define DEBUG_END_INSN() \
|
50
|
-
debug_print_post(th, GET_CFP() SC_REGS());
|
51
|
-
|
52
|
-
#else
|
53
|
-
|
54
|
-
#define debugs
|
55
|
-
#define DEBUG_ENTER_INSN(insn)
|
56
|
-
#define DEBUG_END_INSN()
|
57
|
-
#endif
|
58
|
-
|
59
|
-
#define throwdebug if(0)printf
|
60
|
-
/* #define throwdebug printf */
|
61
|
-
|
62
|
-
/************************************************/
|
63
|
-
#if DISPATCH_XXX
|
64
|
-
error !
|
65
|
-
/************************************************/
|
66
|
-
#elif OPT_CALL_THREADED_CODE
|
67
|
-
|
68
|
-
#define LABEL(x) insn_func_##x
|
69
|
-
#define ELABEL(x)
|
70
|
-
#define LABEL_PTR(x) &LABEL(x)
|
71
|
-
|
72
|
-
#define INSN_ENTRY(insn) \
|
73
|
-
static rb_control_frame_t * \
|
74
|
-
FUNC_FASTCALL(LABEL(insn))(rb_thread_t *th, rb_control_frame_t *reg_cfp) {
|
75
|
-
|
76
|
-
#define END_INSN(insn) return reg_cfp;}
|
77
|
-
|
78
|
-
#define NEXT_INSN() return reg_cfp;
|
79
|
-
|
80
|
-
/************************************************/
|
81
|
-
#elif OPT_TOKEN_THREADED_CODE || OPT_DIRECT_THREADED_CODE
|
82
|
-
/* threaded code with gcc */
|
83
|
-
|
84
|
-
#define LABEL(x) INSN_LABEL_##x
|
85
|
-
#define ELABEL(x) INSN_ELABEL_##x
|
86
|
-
#define LABEL_PTR(x) &&LABEL(x)
|
87
|
-
|
88
|
-
#define INSN_ENTRY_SIG(insn)
|
89
|
-
|
90
|
-
|
91
|
-
#define INSN_DISPATCH_SIG(insn)
|
92
|
-
|
93
|
-
#define INSN_ENTRY(insn) \
|
94
|
-
LABEL(insn): \
|
95
|
-
INSN_ENTRY_SIG(insn); \
|
96
|
-
|
97
|
-
/* dispather */
|
98
|
-
#if __GNUC__ && (__i386__ || __x86_64__) && __GNUC__ == 3
|
99
|
-
#define DISPATCH_ARCH_DEPEND_WAY(addr) \
|
100
|
-
asm volatile("jmp *%0;\t# -- inseted by vm.h\t[length = 2]" : : "r" (addr))
|
101
|
-
|
102
|
-
#else
|
103
|
-
#define DISPATCH_ARCH_DEPEND_WAY(addr) \
|
104
|
-
/* do nothing */
|
105
|
-
|
106
|
-
#endif
|
107
|
-
|
108
|
-
|
109
|
-
/**********************************/
|
110
|
-
#if OPT_DIRECT_THREADED_CODE
|
111
|
-
|
112
|
-
/* for GCC 3.4.x */
|
113
|
-
#define TC_DISPATCH(insn) \
|
114
|
-
INSN_DISPATCH_SIG(insn); \
|
115
|
-
goto *GET_CURRENT_INSN(); \
|
116
|
-
;
|
117
|
-
|
118
|
-
#else
|
119
|
-
/* token threade code */
|
120
|
-
|
121
|
-
#define TC_DISPATCH(insn) \
|
122
|
-
DISPATCH_ARCH_DEPEND_WAY(insns_address_table[GET_CURRENT_INSN()]); \
|
123
|
-
INSN_DISPATCH_SIG(insn); \
|
124
|
-
goto *insns_address_table[GET_CURRENT_INSN()]; \
|
125
|
-
rb_bug("tc error");
|
126
|
-
|
127
|
-
|
128
|
-
#endif /* DISPATCH_DIRECT_THREADED_CODE */
|
129
|
-
|
130
|
-
#define END_INSN(insn) \
|
131
|
-
DEBUG_END_INSN(); \
|
132
|
-
TC_DISPATCH(insn); \
|
133
|
-
|
134
|
-
#define INSN_DISPATCH() \
|
135
|
-
TC_DISPATCH(__START__) \
|
136
|
-
{
|
137
|
-
|
138
|
-
#define END_INSNS_DISPATCH() \
|
139
|
-
rb_bug("unknown insn: %ld", GET_CURRENT_INSN()); \
|
140
|
-
} /* end of while loop */ \
|
141
|
-
|
142
|
-
#define NEXT_INSN() TC_DISPATCH(__NEXT_INSN__)
|
143
|
-
|
144
|
-
/************************************************/
|
145
|
-
#else /* no threaded code */
|
146
|
-
/* most common method */
|
147
|
-
|
148
|
-
#define INSN_ENTRY(insn) \
|
149
|
-
case BIN(insn):
|
150
|
-
|
151
|
-
#define END_INSN(insn) \
|
152
|
-
DEBUG_END_INSN(); \
|
153
|
-
break;
|
154
|
-
|
155
|
-
|
156
|
-
#define INSN_DISPATCH() \
|
157
|
-
while(1){ \
|
158
|
-
switch(GET_CURRENT_INSN()){
|
159
|
-
|
160
|
-
#define END_INSNS_DISPATCH() \
|
161
|
-
default: \
|
162
|
-
SDR(); \
|
163
|
-
rb_bug("unknown insn: %ld", GET_CURRENT_INSN()); \
|
164
|
-
} /* end of switch */ \
|
165
|
-
} /* end of while loop */ \
|
166
|
-
|
167
|
-
#define NEXT_INSN() goto first
|
168
|
-
|
169
|
-
#endif
|
170
|
-
|
171
|
-
#define VM_SP_CNT(th, sp) ((sp) - (th)->stack)
|
172
|
-
|
173
|
-
#if OPT_CALL_THREADED_CODE
|
174
|
-
#define THROW_EXCEPTION(exc) do { \
|
175
|
-
th->errinfo = (VALUE)(exc); \
|
176
|
-
return 0; \
|
177
|
-
} while (0)
|
178
|
-
#else
|
179
|
-
#define THROW_EXCEPTION(exc) return (VALUE)(exc)
|
180
|
-
#endif
|
181
|
-
|
182
|
-
#define SCREG(r) (reg_##r)
|
183
|
-
|
184
|
-
#endif /* RUBY_VM_EXEC_H */
|
@@ -1,208 +0,0 @@
|
|
1
|
-
/**********************************************************************
|
2
|
-
|
3
|
-
insnhelper.h - helper macros to implement each instructions
|
4
|
-
|
5
|
-
$Author$
|
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_SUCC,
|
53
|
-
BOP_GT,
|
54
|
-
BOP_GE,
|
55
|
-
BOP_NOT,
|
56
|
-
BOP_NEQ,
|
57
|
-
|
58
|
-
BOP_LAST_
|
59
|
-
};
|
60
|
-
|
61
|
-
extern char ruby_vm_redefined_flag[BOP_LAST_];
|
62
|
-
extern VALUE ruby_vm_const_missing_count;
|
63
|
-
|
64
|
-
|
65
|
-
/**********************************************************/
|
66
|
-
/* deal with stack */
|
67
|
-
/**********************************************************/
|
68
|
-
|
69
|
-
#define PUSH(x) (SET_SV(x), INC_SP(1))
|
70
|
-
#define TOPN(n) (*(GET_SP()-(n)-1))
|
71
|
-
#define POPN(n) (DEC_SP(n))
|
72
|
-
#define POP() (DEC_SP(1))
|
73
|
-
#define STACK_ADDR_FROM_TOP(n) (GET_SP()-(n))
|
74
|
-
|
75
|
-
#define GET_TOS() (tos) /* dummy */
|
76
|
-
|
77
|
-
/**********************************************************/
|
78
|
-
/* deal with registers */
|
79
|
-
/**********************************************************/
|
80
|
-
|
81
|
-
#define REG_CFP (reg_cfp)
|
82
|
-
#define REG_PC (REG_CFP->pc)
|
83
|
-
#define REG_SP (REG_CFP->sp)
|
84
|
-
#define REG_LFP (REG_CFP->lfp)
|
85
|
-
#define REG_DFP (REG_CFP->dfp)
|
86
|
-
|
87
|
-
#define RESTORE_REGS() do { \
|
88
|
-
REG_CFP = th->cfp; \
|
89
|
-
} while (0)
|
90
|
-
|
91
|
-
#define REG_A reg_a
|
92
|
-
#define REG_B reg_b
|
93
|
-
|
94
|
-
#ifdef COLLECT_USAGE_ANALYSIS
|
95
|
-
#define USAGE_ANALYSIS_REGISTER_HELPER(a, b, v) \
|
96
|
-
(USAGE_ANALYSIS_REGISTER(a, b), (v))
|
97
|
-
#else
|
98
|
-
#define USAGE_ANALYSIS_REGISTER_HELPER(a, b, v) (v)
|
99
|
-
#endif
|
100
|
-
|
101
|
-
/* PC */
|
102
|
-
#define GET_PC() (USAGE_ANALYSIS_REGISTER_HELPER(0, 0, REG_PC))
|
103
|
-
#define SET_PC(x) (REG_PC = (USAGE_ANALYSIS_REGISTER_HELPER(0, 1, x)))
|
104
|
-
#define GET_CURRENT_INSN() (*GET_PC())
|
105
|
-
#define GET_OPERAND(n) (GET_PC()[(n)])
|
106
|
-
#define ADD_PC(n) (SET_PC(REG_PC + (n)))
|
107
|
-
|
108
|
-
#define GET_PC_COUNT() (REG_PC - GET_ISEQ()->iseq_encoded)
|
109
|
-
#define JUMP(dst) (REG_PC += (dst))
|
110
|
-
|
111
|
-
/* FP */
|
112
|
-
#define GET_CFP() (USAGE_ANALYSIS_REGISTER_HELPER(2, 0, REG_CFP))
|
113
|
-
#define GET_LFP() (USAGE_ANALYSIS_REGISTER_HELPER(3, 0, REG_LFP))
|
114
|
-
#define SET_LFP(x) (REG_LFP = (USAGE_ANALYSIS_REGISTER_HELPER(3, 1, (x))))
|
115
|
-
#define GET_DFP() (USAGE_ANALYSIS_REGISTER_HELPER(4, 0, REG_DFP))
|
116
|
-
#define SET_DFP(x) (REG_DFP = (USAGE_ANALYSIS_REGISTER_HELPER(4, 1, (x))))
|
117
|
-
|
118
|
-
/* SP */
|
119
|
-
#define GET_SP() (USAGE_ANALYSIS_REGISTER_HELPER(1, 0, REG_SP))
|
120
|
-
#define SET_SP(x) (REG_SP = (USAGE_ANALYSIS_REGISTER_HELPER(1, 1, (x))))
|
121
|
-
#define INC_SP(x) (REG_SP += (USAGE_ANALYSIS_REGISTER_HELPER(1, 1, (x))))
|
122
|
-
#define DEC_SP(x) (REG_SP -= (USAGE_ANALYSIS_REGISTER_HELPER(1, 1, (x))))
|
123
|
-
#define SET_SV(x) (*GET_SP() = (x))
|
124
|
-
/* set current stack value as x */
|
125
|
-
|
126
|
-
#define GET_SP_COUNT() (REG_SP - th->stack)
|
127
|
-
|
128
|
-
/* instruction sequence C struct */
|
129
|
-
#define GET_ISEQ() (GET_CFP()->iseq)
|
130
|
-
|
131
|
-
/**********************************************************/
|
132
|
-
/* deal with variables */
|
133
|
-
/**********************************************************/
|
134
|
-
|
135
|
-
#define GET_PREV_DFP(dfp) ((VALUE *)((dfp)[0] & ~0x03))
|
136
|
-
|
137
|
-
#define GET_GLOBAL(entry) rb_gvar_get((struct rb_global_entry*)entry)
|
138
|
-
#define SET_GLOBAL(entry, val) rb_gvar_set((struct rb_global_entry*)entry, val)
|
139
|
-
|
140
|
-
#define GET_CONST_INLINE_CACHE(dst) ((IC) * (GET_PC() + (dst) + 2))
|
141
|
-
|
142
|
-
/**********************************************************/
|
143
|
-
/* deal with values */
|
144
|
-
/**********************************************************/
|
145
|
-
|
146
|
-
#define GET_SELF() (USAGE_ANALYSIS_REGISTER_HELPER(5, 0, GET_CFP()->self))
|
147
|
-
|
148
|
-
/**********************************************************/
|
149
|
-
/* deal with control flow 2: method/iterator */
|
150
|
-
/**********************************************************/
|
151
|
-
|
152
|
-
#define COPY_CREF(c1, c2) do { \
|
153
|
-
NODE *__tmp_c2 = (c2); \
|
154
|
-
c1->nd_clss = __tmp_c2->nd_clss; \
|
155
|
-
c1->nd_visi = __tmp_c2->nd_visi;\
|
156
|
-
c1->nd_next = __tmp_c2->nd_next; \
|
157
|
-
} while (0)
|
158
|
-
|
159
|
-
#define CALL_METHOD(num, blockptr, flag, id, me, recv) do { \
|
160
|
-
VALUE v = vm_call_method(th, GET_CFP(), num, blockptr, flag, id, me, recv); \
|
161
|
-
if (v == Qundef) { \
|
162
|
-
RESTORE_REGS(); \
|
163
|
-
NEXT_INSN(); \
|
164
|
-
} \
|
165
|
-
else { \
|
166
|
-
val = v; \
|
167
|
-
} \
|
168
|
-
} while (0)
|
169
|
-
|
170
|
-
#define GET_BLOCK_PTR() \
|
171
|
-
((rb_block_t *)(GC_GUARDED_PTR_REF(GET_LFP()[0] & \
|
172
|
-
((GET_LFP()[0] & 0x02) - 0x02))))
|
173
|
-
|
174
|
-
/**********************************************************/
|
175
|
-
/* deal with control flow 3: exception */
|
176
|
-
/**********************************************************/
|
177
|
-
|
178
|
-
|
179
|
-
/**********************************************************/
|
180
|
-
/* others */
|
181
|
-
/**********************************************************/
|
182
|
-
|
183
|
-
/* optimize insn */
|
184
|
-
#define FIXNUM_2_P(a, b) ((a) & (b) & 1)
|
185
|
-
#define BASIC_OP_UNREDEFINED_P(op) (LIKELY(ruby_vm_redefined_flag[op] == 0))
|
186
|
-
#define HEAP_CLASS_OF(obj) RBASIC(obj)->klass
|
187
|
-
|
188
|
-
#ifndef USE_IC_FOR_SPECIALIZED_METHOD
|
189
|
-
#define USE_IC_FOR_SPECIALIZED_METHOD 1
|
190
|
-
#endif
|
191
|
-
|
192
|
-
#if USE_IC_FOR_SPECIALIZED_METHOD
|
193
|
-
|
194
|
-
#define CALL_SIMPLE_METHOD(num, id, recv) do { \
|
195
|
-
VALUE klass = CLASS_OF(recv); \
|
196
|
-
CALL_METHOD(num, 0, 0, id, vm_method_search(id, klass, ic), recv); \
|
197
|
-
} while (0)
|
198
|
-
|
199
|
-
#else
|
200
|
-
|
201
|
-
#define CALL_SIMPLE_METHOD(num, id, recv) do { \
|
202
|
-
VALUE klass = CLASS_OF(recv); \
|
203
|
-
CALL_METHOD(num, 0, 0, id, rb_method_entry(klass, id), recv); \
|
204
|
-
} while (0)
|
205
|
-
|
206
|
-
#endif
|
207
|
-
|
208
|
-
#endif /* RUBY_INSNHELPER_H */
|
@@ -1,51 +0,0 @@
|
|
1
|
-
/*-*-c-*-*/
|
2
|
-
/**********************************************************************
|
3
|
-
|
4
|
-
vm_opts.h - VM optimize option
|
5
|
-
|
6
|
-
$Author$
|
7
|
-
|
8
|
-
Copyright (C) 2004-2007 Koichi Sasada
|
9
|
-
|
10
|
-
**********************************************************************/
|
11
|
-
|
12
|
-
|
13
|
-
#ifndef RUBY_VM_OPTS_H
|
14
|
-
#define RUBY_VM_OPTS_H
|
15
|
-
|
16
|
-
/* Compile options.
|
17
|
-
* You can change these options at runtime by VM::CompileOption.
|
18
|
-
* Following definitions are default values.
|
19
|
-
*/
|
20
|
-
|
21
|
-
#define OPT_TRACE_INSTRUCTION 1
|
22
|
-
#define OPT_TAILCALL_OPTIMIZATION 0
|
23
|
-
#define OPT_PEEPHOLE_OPTIMIZATION 1
|
24
|
-
#define OPT_SPECIALISED_INSTRUCTION 1
|
25
|
-
#define OPT_INLINE_CONST_CACHE 1
|
26
|
-
|
27
|
-
|
28
|
-
/* Build Options.
|
29
|
-
* You can't change these options at runtime.
|
30
|
-
*/
|
31
|
-
|
32
|
-
/* C compiler depend */
|
33
|
-
#define OPT_DIRECT_THREADED_CODE 1
|
34
|
-
#define OPT_TOKEN_THREADED_CODE 0
|
35
|
-
#define OPT_CALL_THREADED_CODE 0
|
36
|
-
|
37
|
-
/* VM running option */
|
38
|
-
#define OPT_CHECKED_RUN 1
|
39
|
-
#define OPT_INLINE_METHOD_CACHE 1
|
40
|
-
#define OPT_BLOCKINLINING 0
|
41
|
-
|
42
|
-
/* architecture independent, affects generated code */
|
43
|
-
#define OPT_OPERANDS_UNIFICATION 0
|
44
|
-
#define OPT_INSTRUCTIONS_UNIFICATION 0
|
45
|
-
#define OPT_UNIFY_ALL_COMBINATION 0
|
46
|
-
#define OPT_STACK_CACHING 0
|
47
|
-
|
48
|
-
/* misc */
|
49
|
-
#define SUPPORT_JOKE 0
|
50
|
-
|
51
|
-
#endif /* RUBY_VM_OPTS_H */
|
@@ -1,21 +0,0 @@
|
|
1
|
-
/**********************************************************************
|
2
|
-
|
3
|
-
addr2line.h -
|
4
|
-
|
5
|
-
$Author$
|
6
|
-
|
7
|
-
Copyright (C) 2010 Shinichiro Hamaji
|
8
|
-
|
9
|
-
**********************************************************************/
|
10
|
-
|
11
|
-
#ifndef RUBY_ADDR2LINE_H
|
12
|
-
#define RUBY_ADDR2LINE_H
|
13
|
-
|
14
|
-
#ifdef USE_ELF
|
15
|
-
|
16
|
-
void
|
17
|
-
rb_dump_backtrace_with_lines(int num_traces, void **traces, char **syms);
|
18
|
-
|
19
|
-
#endif /* USE_ELF */
|
20
|
-
|
21
|
-
#endif /* RUBY_ADDR2LINE_H */
|
@@ -1,56 +0,0 @@
|
|
1
|
-
#ifndef RUBY_ATOMIC_H
|
2
|
-
#define RUBY_ATOMIC_H
|
3
|
-
|
4
|
-
#ifdef _WIN32
|
5
|
-
#if defined _MSC_VER && _MSC_VER > 1200
|
6
|
-
#pragma intrinsic(_InterlockedOr)
|
7
|
-
#endif
|
8
|
-
typedef LONG rb_atomic_t;
|
9
|
-
|
10
|
-
# define ATOMIC_SET(var, val) InterlockedExchange(&(var), (val))
|
11
|
-
# define ATOMIC_INC(var) InterlockedIncrement(&(var))
|
12
|
-
# define ATOMIC_DEC(var) InterlockedDecrement(&(var))
|
13
|
-
#if defined __GNUC__
|
14
|
-
# define ATOMIC_OR(var, val) __asm__("lock\n\t" "orl\t%1, %0" : "=m"(var) : "Ir"(val))
|
15
|
-
#elif defined _MSC_VER && _MSC_VER <= 1200
|
16
|
-
# define ATOMIC_OR(var, val) rb_w32_atomic_or(&(var), (val))
|
17
|
-
static inline void
|
18
|
-
rb_w32_atomic_or(volatile rb_atomic_t *var, rb_atomic_t val)
|
19
|
-
{
|
20
|
-
#ifdef _M_IX86
|
21
|
-
__asm mov eax, var;
|
22
|
-
__asm mov ecx, val;
|
23
|
-
__asm lock or [eax], ecx;
|
24
|
-
#else
|
25
|
-
#error unsupported architecture
|
26
|
-
#endif
|
27
|
-
}
|
28
|
-
#else
|
29
|
-
# define ATOMIC_OR(var, val) _InterlockedOr(&(var), (val))
|
30
|
-
#endif
|
31
|
-
# define ATOMIC_EXCHANGE(var, val) InterlockedExchange(&(var), (val))
|
32
|
-
|
33
|
-
#elif defined HAVE_GCC_ATOMIC_BUILTINS
|
34
|
-
/* @shyouhei hack to support atomic operations in case of gcc. Gcc
|
35
|
-
* has its own pseudo-insns to support them. See info, or
|
36
|
-
* http://gcc.gnu.org/onlinedocs/gcc/Atomic-Builtins.html */
|
37
|
-
|
38
|
-
typedef unsigned int rb_atomic_t; /* Anything OK */
|
39
|
-
# define ATOMIC_SET(var, val) __sync_lock_test_and_set(&(var), (val))
|
40
|
-
# define ATOMIC_INC(var) __sync_fetch_and_add(&(var), 1)
|
41
|
-
# define ATOMIC_DEC(var) __sync_fetch_and_sub(&(var), 1)
|
42
|
-
# define ATOMIC_OR(var, val) __sync_or_and_fetch(&(var), (val))
|
43
|
-
# define ATOMIC_EXCHANGE(var, val) __sync_lock_test_and_set(&(var), (val))
|
44
|
-
|
45
|
-
#else
|
46
|
-
typedef int rb_atomic_t;
|
47
|
-
extern rb_atomic_t ruby_atomic_exchange(rb_atomic_t *ptr, rb_atomic_t val);
|
48
|
-
|
49
|
-
# define ATOMIC_SET(var, val) ((var) = (val))
|
50
|
-
# define ATOMIC_INC(var) (++(var))
|
51
|
-
# define ATOMIC_DEC(var) (--(var))
|
52
|
-
# define ATOMIC_OR(var, val) ((var) |= (val))
|
53
|
-
# define ATOMIC_EXCHANGE(var, val) ruby_atomic_exchange(&(var), (val))
|
54
|
-
#endif
|
55
|
-
|
56
|
-
#endif /* RUBY_ATOMIC_H */
|
@@ -1,34 +0,0 @@
|
|
1
|
-
/**********************************************************************
|
2
|
-
|
3
|
-
constant.h -
|
4
|
-
|
5
|
-
$Author$
|
6
|
-
created at: Sun Nov 15 00:09:33 2009
|
7
|
-
|
8
|
-
Copyright (C) 2009 Yusuke Endoh
|
9
|
-
|
10
|
-
**********************************************************************/
|
11
|
-
#ifndef CONSTANT_H
|
12
|
-
#define CONSTANT_H
|
13
|
-
|
14
|
-
typedef enum {
|
15
|
-
CONST_PUBLIC = 0x00,
|
16
|
-
CONST_PRIVATE = 0x01
|
17
|
-
} rb_const_flag_t;
|
18
|
-
|
19
|
-
typedef struct rb_const_entry_struct {
|
20
|
-
rb_const_flag_t flag;
|
21
|
-
VALUE value; /* should be mark */
|
22
|
-
} rb_const_entry_t;
|
23
|
-
|
24
|
-
VALUE rb_mod_private_constant(int argc, VALUE *argv, VALUE obj);
|
25
|
-
VALUE rb_mod_public_constant(int argc, VALUE *argv, VALUE obj);
|
26
|
-
void rb_free_const_table(st_table *tbl);
|
27
|
-
VALUE rb_public_const_get(VALUE klass, ID id);
|
28
|
-
VALUE rb_public_const_get_at(VALUE klass, ID id);
|
29
|
-
VALUE rb_public_const_get_from(VALUE klass, ID id);
|
30
|
-
int rb_public_const_defined(VALUE klass, ID id);
|
31
|
-
int rb_public_const_defined_at(VALUE klass, ID id);
|
32
|
-
int rb_public_const_defined_from(VALUE klass, ID id);
|
33
|
-
|
34
|
-
#endif /* CONSTANT_H */
|
@@ -1,41 +0,0 @@
|
|
1
|
-
/**********************************************************************
|
2
|
-
|
3
|
-
debug.h - YARV Debug function interface
|
4
|
-
|
5
|
-
$Author: akr $
|
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 */
|
@@ -1,50 +0,0 @@
|
|
1
|
-
/**********************************************************************
|
2
|
-
|
3
|
-
dln.h -
|
4
|
-
|
5
|
-
$Author: nobu $
|
6
|
-
created at: Wed Jan 19 16:53:09 JST 1994
|
7
|
-
|
8
|
-
Copyright (C) 1993-2007 Yukihiro Matsumoto
|
9
|
-
|
10
|
-
**********************************************************************/
|
11
|
-
|
12
|
-
#ifndef DLN_H
|
13
|
-
#define DLN_H
|
14
|
-
|
15
|
-
#ifdef __cplusplus
|
16
|
-
# ifndef HAVE_PROTOTYPES
|
17
|
-
# define HAVE_PROTOTYPES 1
|
18
|
-
# endif
|
19
|
-
# ifndef HAVE_STDARG_PROTOTYPES
|
20
|
-
# define HAVE_STDARG_PROTOTYPES 1
|
21
|
-
# endif
|
22
|
-
#endif
|
23
|
-
|
24
|
-
#undef _
|
25
|
-
#ifdef HAVE_PROTOTYPES
|
26
|
-
# define _(args) args
|
27
|
-
#else
|
28
|
-
# define _(args) ()
|
29
|
-
#endif
|
30
|
-
|
31
|
-
#if defined __GNUC__ && __GNUC__ >= 4
|
32
|
-
#pragma GCC visibility push(default)
|
33
|
-
#endif
|
34
|
-
|
35
|
-
DEPRECATED(char *dln_find_exe(const char*,const char*));
|
36
|
-
DEPRECATED(char *dln_find_file(const char*,const char*));
|
37
|
-
char *dln_find_exe_r(const char*,const char*,char*,size_t);
|
38
|
-
char *dln_find_file_r(const char*,const char*,char*,size_t);
|
39
|
-
|
40
|
-
#ifdef USE_DLN_A_OUT
|
41
|
-
extern char *dln_argv0;
|
42
|
-
#endif
|
43
|
-
|
44
|
-
void *dln_load(const char*);
|
45
|
-
|
46
|
-
#if defined __GNUC__ && __GNUC__ >= 4
|
47
|
-
#pragma GCC visibility pop
|
48
|
-
#endif
|
49
|
-
|
50
|
-
#endif
|