bindex 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +16 -0
- data/.travis.yml +48 -0
- data/CONTRIBUTING.md +15 -0
- data/Gemfile +10 -0
- data/LICENSE.txt +22 -0
- data/README.md +38 -0
- data/Rakefile +48 -0
- data/bindex.gemspec +27 -0
- data/ext/bindex/bindex.h +11 -0
- data/ext/bindex/bindings.c +106 -0
- data/ext/bindex/com/gsamokovarov/bindex/BindingBuilder.java.erb +17 -0
- data/ext/bindex/com/gsamokovarov/bindex/CurrentBindingsIterator.java +54 -0
- data/ext/bindex/com/gsamokovarov/bindex/RubyBindingsCollector.java +34 -0
- data/ext/bindex/com/gsamokovarov/bindex/SetExceptionBindingsEventHook.java +21 -0
- data/ext/bindex/com/gsamokovarov/bindex/ThreadContextInterfaceException.java +14 -0
- data/ext/bindex/com/gsamokovarov/bindex/ThreadContextInternals.java +54 -0
- data/ext/bindex/cruby.c +34 -0
- data/ext/bindex/extconf.rb +29 -0
- data/ext/bindex/ruby_193.h +101 -0
- data/ext/bindex/ruby_193/addr2line.h +21 -0
- data/ext/bindex/ruby_193/constant.h +34 -0
- data/ext/bindex/ruby_193/debug.h +41 -0
- data/ext/bindex/ruby_193/dln.h +50 -0
- data/ext/bindex/ruby_193/encdb.h +167 -0
- data/ext/bindex/ruby_193/eval_intern.h +234 -0
- data/ext/bindex/ruby_193/gc.h +99 -0
- data/ext/bindex/ruby_193/id.h +177 -0
- data/ext/bindex/ruby_193/internal.h +242 -0
- data/ext/bindex/ruby_193/iseq.h +126 -0
- data/ext/bindex/ruby_193/method.h +105 -0
- data/ext/bindex/ruby_193/node.h +504 -0
- data/ext/bindex/ruby_193/parse.h +302 -0
- data/ext/bindex/ruby_193/probes.h +369 -0
- data/ext/bindex/ruby_193/regenc.h +219 -0
- data/ext/bindex/ruby_193/regint.h +850 -0
- data/ext/bindex/ruby_193/regparse.h +362 -0
- data/ext/bindex/ruby_193/revision.h +1 -0
- data/ext/bindex/ruby_193/ruby_atomic.h +175 -0
- data/ext/bindex/ruby_193/siphash.h +48 -0
- data/ext/bindex/ruby_193/thread_pthread.h +51 -0
- data/ext/bindex/ruby_193/thread_win32.h +40 -0
- data/ext/bindex/ruby_193/timev.h +21 -0
- data/ext/bindex/ruby_193/transcode_data.h +117 -0
- data/ext/bindex/ruby_193/transdb.h +186 -0
- data/ext/bindex/ruby_193/verconf.h +12 -0
- data/ext/bindex/ruby_193/version.h +52 -0
- data/ext/bindex/ruby_193/vm_core.h +763 -0
- data/ext/bindex/ruby_193/vm_exec.h +184 -0
- data/ext/bindex/ruby_193/vm_insnhelper.h +220 -0
- data/ext/bindex/ruby_193/vm_opts.h +51 -0
- data/ext/bindex/ruby_20.h +142 -0
- data/ext/bindex/ruby_20/addr2line.h +21 -0
- data/ext/bindex/ruby_20/constant.h +36 -0
- data/ext/bindex/ruby_20/dln.h +50 -0
- data/ext/bindex/ruby_20/encdb.h +169 -0
- data/ext/bindex/ruby_20/eval_intern.h +241 -0
- data/ext/bindex/ruby_20/gc.h +104 -0
- data/ext/bindex/ruby_20/id.h +135 -0
- data/ext/bindex/ruby_20/internal.h +395 -0
- data/ext/bindex/ruby_20/iseq.h +140 -0
- data/ext/bindex/ruby_20/method.h +138 -0
- data/ext/bindex/ruby_20/node.h +541 -0
- data/ext/bindex/ruby_20/parse.h +292 -0
- data/ext/bindex/ruby_20/probes.h +369 -0
- data/ext/bindex/ruby_20/probes_helper.h +67 -0
- data/ext/bindex/ruby_20/regenc.h +227 -0
- data/ext/bindex/ruby_20/regint.h +915 -0
- data/ext/bindex/ruby_20/regparse.h +367 -0
- data/ext/bindex/ruby_20/revision.h +1 -0
- data/ext/bindex/ruby_20/ruby_atomic.h +170 -0
- data/ext/bindex/ruby_20/siphash.h +48 -0
- data/ext/bindex/ruby_20/thread_pthread.h +56 -0
- data/ext/bindex/ruby_20/thread_win32.h +45 -0
- data/ext/bindex/ruby_20/timev.h +21 -0
- data/ext/bindex/ruby_20/transcode_data.h +127 -0
- data/ext/bindex/ruby_20/transdb.h +190 -0
- data/ext/bindex/ruby_20/verconf.h +12 -0
- data/ext/bindex/ruby_20/version.h +52 -0
- data/ext/bindex/ruby_20/vm_core.h +1018 -0
- data/ext/bindex/ruby_20/vm_debug.h +41 -0
- data/ext/bindex/ruby_20/vm_exec.h +173 -0
- data/ext/bindex/ruby_20/vm_insnhelper.h +274 -0
- data/ext/bindex/ruby_20/vm_opts.h +56 -0
- data/ext/bindex/ruby_21.h +142 -0
- data/ext/bindex/ruby_21/addr2line.h +21 -0
- data/ext/bindex/ruby_21/constant.h +36 -0
- data/ext/bindex/ruby_21/dln.h +51 -0
- data/ext/bindex/ruby_21/encdb.h +170 -0
- data/ext/bindex/ruby_21/eval_intern.h +260 -0
- data/ext/bindex/ruby_21/gc.h +101 -0
- data/ext/bindex/ruby_21/id.h +210 -0
- data/ext/bindex/ruby_21/internal.h +889 -0
- data/ext/bindex/ruby_21/iseq.h +136 -0
- data/ext/bindex/ruby_21/method.h +142 -0
- data/ext/bindex/ruby_21/node.h +543 -0
- data/ext/bindex/ruby_21/parse.h +298 -0
- data/ext/bindex/ruby_21/probes.h +401 -0
- data/ext/bindex/ruby_21/probes_helper.h +67 -0
- data/ext/bindex/ruby_21/regenc.h +223 -0
- data/ext/bindex/ruby_21/regint.h +911 -0
- data/ext/bindex/ruby_21/regparse.h +363 -0
- data/ext/bindex/ruby_21/revision.h +1 -0
- data/ext/bindex/ruby_21/ruby_atomic.h +170 -0
- data/ext/bindex/ruby_21/siphash.h +48 -0
- data/ext/bindex/ruby_21/thread_native.h +23 -0
- data/ext/bindex/ruby_21/thread_pthread.h +56 -0
- data/ext/bindex/ruby_21/thread_win32.h +45 -0
- data/ext/bindex/ruby_21/timev.h +42 -0
- data/ext/bindex/ruby_21/transcode_data.h +123 -0
- data/ext/bindex/ruby_21/transdb.h +190 -0
- data/ext/bindex/ruby_21/verconf.h +13 -0
- data/ext/bindex/ruby_21/version.h +52 -0
- data/ext/bindex/ruby_21/vm_core.h +1043 -0
- data/ext/bindex/ruby_21/vm_debug.h +37 -0
- data/ext/bindex/ruby_21/vm_exec.h +182 -0
- data/ext/bindex/ruby_21/vm_insnhelper.h +273 -0
- data/ext/bindex/ruby_21/vm_opts.h +56 -0
- data/ext/bindex/ruby_21preview.h +146 -0
- data/ext/bindex/ruby_21preview/addr2line.h +21 -0
- data/ext/bindex/ruby_21preview/constant.h +36 -0
- data/ext/bindex/ruby_21preview/dln.h +51 -0
- data/ext/bindex/ruby_21preview/encdb.h +270 -0
- data/ext/bindex/ruby_21preview/eval_intern.h +217 -0
- data/ext/bindex/ruby_21preview/gc.h +100 -0
- data/ext/bindex/ruby_21preview/id.h +169 -0
- data/ext/bindex/ruby_21preview/internal.h +765 -0
- data/ext/bindex/ruby_21preview/iseq.h +136 -0
- data/ext/bindex/ruby_21preview/method.h +141 -0
- data/ext/bindex/ruby_21preview/node.h +543 -0
- data/ext/bindex/ruby_21preview/parse.h +298 -0
- data/ext/bindex/ruby_21preview/probes.h +385 -0
- data/ext/bindex/ruby_21preview/probes_helper.h +67 -0
- data/ext/bindex/ruby_21preview/regenc.h +223 -0
- data/ext/bindex/ruby_21preview/regint.h +911 -0
- data/ext/bindex/ruby_21preview/regparse.h +363 -0
- data/ext/bindex/ruby_21preview/revision.h +1 -0
- data/ext/bindex/ruby_21preview/ruby_atomic.h +130 -0
- data/ext/bindex/ruby_21preview/siphash.h +48 -0
- data/ext/bindex/ruby_21preview/thread_native.h +23 -0
- data/ext/bindex/ruby_21preview/thread_pthread.h +56 -0
- data/ext/bindex/ruby_21preview/thread_win32.h +45 -0
- data/ext/bindex/ruby_21preview/timev.h +42 -0
- data/ext/bindex/ruby_21preview/transcode_data.h +123 -0
- data/ext/bindex/ruby_21preview/transdb.h +190 -0
- data/ext/bindex/ruby_21preview/verconf.h +13 -0
- data/ext/bindex/ruby_21preview/version.h +53 -0
- data/ext/bindex/ruby_21preview/vm_core.h +1017 -0
- data/ext/bindex/ruby_21preview/vm_debug.h +37 -0
- data/ext/bindex/ruby_21preview/vm_exec.h +180 -0
- data/ext/bindex/ruby_21preview/vm_insnhelper.h +272 -0
- data/ext/bindex/ruby_21preview/vm_opts.h +56 -0
- data/lib/bindex.rb +10 -0
- data/lib/bindex/jruby.rb +20 -0
- data/lib/bindex/jruby_internals.jar +0 -0
- data/lib/bindex/jruby_internals_9k.jar +0 -0
- data/lib/bindex/rubinius.rb +56 -0
- data/lib/bindex/version.rb +3 -0
- data/test/exception_test.rb +45 -0
- data/test/fixtures/basic_nested_fixture.rb +13 -0
- data/test/fixtures/custom_error_fixture.rb +9 -0
- data/test/fixtures/eval_nested_fixture.rb +13 -0
- data/test/fixtures/flat_fixture.rb +7 -0
- data/test/test_helper.rb +17 -0
- metadata +270 -0
@@ -0,0 +1,234 @@
|
|
1
|
+
#ifndef RUBY_EVAL_INTERN_H
|
2
|
+
#define RUBY_EVAL_INTERN_H
|
3
|
+
|
4
|
+
#include "ruby/ruby.h"
|
5
|
+
#include "vm_core.h"
|
6
|
+
|
7
|
+
#define PASS_PASSED_BLOCK_TH(th) do { \
|
8
|
+
(th)->passed_block = GC_GUARDED_PTR_REF((rb_block_t *)(th)->cfp->lfp[0]); \
|
9
|
+
(th)->cfp->flag |= VM_FRAME_FLAG_PASSED; \
|
10
|
+
} while (0)
|
11
|
+
|
12
|
+
#define PASS_PASSED_BLOCK() do { \
|
13
|
+
rb_thread_t * const __th__ = GET_THREAD(); \
|
14
|
+
PASS_PASSED_BLOCK_TH(__th__); \
|
15
|
+
} while (0)
|
16
|
+
|
17
|
+
#ifdef HAVE_STDLIB_H
|
18
|
+
#include <stdlib.h>
|
19
|
+
#endif
|
20
|
+
#ifndef EXIT_SUCCESS
|
21
|
+
#define EXIT_SUCCESS 0
|
22
|
+
#endif
|
23
|
+
#ifndef EXIT_FAILURE
|
24
|
+
#define EXIT_FAILURE 1
|
25
|
+
#endif
|
26
|
+
|
27
|
+
#include <stdio.h>
|
28
|
+
#include <setjmp.h>
|
29
|
+
|
30
|
+
#ifdef __APPLE__
|
31
|
+
#include <crt_externs.h>
|
32
|
+
#endif
|
33
|
+
|
34
|
+
/* Make alloca work the best possible way. */
|
35
|
+
#ifdef __GNUC__
|
36
|
+
# ifndef atarist
|
37
|
+
# ifndef alloca
|
38
|
+
# define alloca __builtin_alloca
|
39
|
+
# endif
|
40
|
+
# endif /* atarist */
|
41
|
+
#else
|
42
|
+
# ifdef HAVE_ALLOCA_H
|
43
|
+
# include <alloca.h>
|
44
|
+
# else
|
45
|
+
# ifdef _AIX
|
46
|
+
#pragma alloca
|
47
|
+
# else
|
48
|
+
# ifndef alloca /* predefined by HP cc +Olibcalls */
|
49
|
+
void *alloca();
|
50
|
+
# endif
|
51
|
+
# endif /* AIX */
|
52
|
+
# endif /* HAVE_ALLOCA_H */
|
53
|
+
#endif /* __GNUC__ */
|
54
|
+
|
55
|
+
#ifndef HAVE_STRING_H
|
56
|
+
char *strrchr(const char *, const char);
|
57
|
+
#endif
|
58
|
+
|
59
|
+
#ifdef HAVE_UNISTD_H
|
60
|
+
#include <unistd.h>
|
61
|
+
#endif
|
62
|
+
|
63
|
+
#ifdef HAVE_NET_SOCKET_H
|
64
|
+
#include <net/socket.h>
|
65
|
+
#endif
|
66
|
+
|
67
|
+
#define ruby_setjmp(env) RUBY_SETJMP(env)
|
68
|
+
#define ruby_longjmp(env,val) RUBY_LONGJMP((env),(val))
|
69
|
+
#ifdef __CYGWIN__
|
70
|
+
# ifndef _setjmp
|
71
|
+
int _setjmp(jmp_buf);
|
72
|
+
# endif
|
73
|
+
# ifndef _longjmp
|
74
|
+
NORETURN(void _longjmp(jmp_buf, int));
|
75
|
+
# endif
|
76
|
+
#endif
|
77
|
+
|
78
|
+
#include <sys/types.h>
|
79
|
+
#include <signal.h>
|
80
|
+
#include <errno.h>
|
81
|
+
|
82
|
+
#ifdef HAVE_SYS_SELECT_H
|
83
|
+
#include <sys/select.h>
|
84
|
+
#endif
|
85
|
+
|
86
|
+
/*
|
87
|
+
Solaris sys/select.h switches select to select_large_fdset to support larger
|
88
|
+
file descriptors if FD_SETSIZE is larger than 1024 on 32bit environment.
|
89
|
+
But Ruby doesn't change FD_SETSIZE because fd_set is allocated dynamically.
|
90
|
+
So following definition is required to use select_large_fdset.
|
91
|
+
*/
|
92
|
+
#ifdef HAVE_SELECT_LARGE_FDSET
|
93
|
+
#define select(n, r, w, e, t) select_large_fdset((n), (r), (w), (e), (t))
|
94
|
+
extern int select_large_fdset(int, fd_set *, fd_set *, fd_set *, struct timeval *);
|
95
|
+
#endif
|
96
|
+
|
97
|
+
#ifdef HAVE_SYS_PARAM_H
|
98
|
+
#include <sys/param.h>
|
99
|
+
#endif
|
100
|
+
|
101
|
+
#include <sys/stat.h>
|
102
|
+
|
103
|
+
#define SAVE_ROOT_JMPBUF(th, stmt) do \
|
104
|
+
if (ruby_setjmp((th)->root_jmpbuf) == 0) { \
|
105
|
+
stmt; \
|
106
|
+
} \
|
107
|
+
else { \
|
108
|
+
rb_fiber_start(); \
|
109
|
+
} while (0)
|
110
|
+
|
111
|
+
#define TH_PUSH_TAG(th) do { \
|
112
|
+
rb_thread_t * const _th = (th); \
|
113
|
+
struct rb_vm_tag _tag; \
|
114
|
+
_tag.tag = 0; \
|
115
|
+
_tag.prev = _th->tag; \
|
116
|
+
_th->tag = &_tag;
|
117
|
+
|
118
|
+
#define TH_POP_TAG() \
|
119
|
+
_th->tag = _tag.prev; \
|
120
|
+
} while (0)
|
121
|
+
|
122
|
+
#define TH_POP_TAG2() \
|
123
|
+
_th->tag = _tag.prev
|
124
|
+
|
125
|
+
#define PUSH_TAG() TH_PUSH_TAG(GET_THREAD())
|
126
|
+
#define POP_TAG() TH_POP_TAG()
|
127
|
+
|
128
|
+
#define TH_EXEC_TAG() ruby_setjmp(_th->tag->buf)
|
129
|
+
|
130
|
+
#define EXEC_TAG() \
|
131
|
+
TH_EXEC_TAG()
|
132
|
+
|
133
|
+
#define TH_JUMP_TAG(th, st) do { \
|
134
|
+
ruby_longjmp((th)->tag->buf,(st)); \
|
135
|
+
} while (0)
|
136
|
+
|
137
|
+
#define JUMP_TAG(st) TH_JUMP_TAG(GET_THREAD(), (st))
|
138
|
+
|
139
|
+
#define INTERNAL_EXCEPTION_P(exc) FIXNUM_P(exc)
|
140
|
+
|
141
|
+
enum ruby_tag_type {
|
142
|
+
RUBY_TAG_RETURN = 0x1,
|
143
|
+
RUBY_TAG_BREAK = 0x2,
|
144
|
+
RUBY_TAG_NEXT = 0x3,
|
145
|
+
RUBY_TAG_RETRY = 0x4,
|
146
|
+
RUBY_TAG_REDO = 0x5,
|
147
|
+
RUBY_TAG_RAISE = 0x6,
|
148
|
+
RUBY_TAG_THROW = 0x7,
|
149
|
+
RUBY_TAG_FATAL = 0x8,
|
150
|
+
RUBY_TAG_MASK = 0xf
|
151
|
+
};
|
152
|
+
#define TAG_RETURN RUBY_TAG_RETURN
|
153
|
+
#define TAG_BREAK RUBY_TAG_BREAK
|
154
|
+
#define TAG_NEXT RUBY_TAG_NEXT
|
155
|
+
#define TAG_RETRY RUBY_TAG_RETRY
|
156
|
+
#define TAG_REDO RUBY_TAG_REDO
|
157
|
+
#define TAG_RAISE RUBY_TAG_RAISE
|
158
|
+
#define TAG_THROW RUBY_TAG_THROW
|
159
|
+
#define TAG_FATAL RUBY_TAG_FATAL
|
160
|
+
#define TAG_MASK RUBY_TAG_MASK
|
161
|
+
|
162
|
+
#define NEW_THROW_OBJECT(val, pt, st) \
|
163
|
+
((VALUE)rb_node_newnode(NODE_LIT, (VALUE)(val), (VALUE)(pt), (VALUE)(st)))
|
164
|
+
#define SET_THROWOBJ_CATCH_POINT(obj, val) \
|
165
|
+
(RNODE((obj))->u2.value = (val))
|
166
|
+
#define SET_THROWOBJ_STATE(obj, val) \
|
167
|
+
(RNODE((obj))->u3.value = (val))
|
168
|
+
|
169
|
+
#define GET_THROWOBJ_VAL(obj) ((VALUE)RNODE((obj))->u1.value)
|
170
|
+
#define GET_THROWOBJ_CATCH_POINT(obj) ((VALUE*)RNODE((obj))->u2.value)
|
171
|
+
#define GET_THROWOBJ_STATE(obj) ((int)RNODE((obj))->u3.value)
|
172
|
+
|
173
|
+
#define SCOPE_TEST(f) (rb_vm_cref()->nd_visi & (f))
|
174
|
+
#define SCOPE_CHECK(f) (rb_vm_cref()->nd_visi == (f))
|
175
|
+
#define SCOPE_SET(f) (rb_vm_cref()->nd_visi = (f))
|
176
|
+
|
177
|
+
#define CHECK_STACK_OVERFLOW(cfp, margin) do \
|
178
|
+
if ((VALUE *)((char *)(((VALUE *)(cfp)->sp) + (margin)) + sizeof(rb_control_frame_t)) >= ((VALUE *)(cfp))) { \
|
179
|
+
rb_exc_raise(sysstack_error); \
|
180
|
+
} \
|
181
|
+
while (0)
|
182
|
+
|
183
|
+
void rb_thread_cleanup(void);
|
184
|
+
void rb_thread_wait_other_threads(void);
|
185
|
+
|
186
|
+
enum {
|
187
|
+
RAISED_EXCEPTION = 1,
|
188
|
+
RAISED_STACKOVERFLOW = 2,
|
189
|
+
RAISED_NOMEMORY = 4
|
190
|
+
};
|
191
|
+
int rb_threadptr_set_raised(rb_thread_t *th);
|
192
|
+
int rb_threadptr_reset_raised(rb_thread_t *th);
|
193
|
+
#define rb_thread_raised_set(th, f) ((th)->raised_flag |= (f))
|
194
|
+
#define rb_thread_raised_reset(th, f) ((th)->raised_flag &= ~(f))
|
195
|
+
#define rb_thread_raised_p(th, f) (((th)->raised_flag & (f)) != 0)
|
196
|
+
#define rb_thread_raised_clear(th) ((th)->raised_flag = 0)
|
197
|
+
|
198
|
+
VALUE rb_f_eval(int argc, VALUE *argv, VALUE self);
|
199
|
+
VALUE rb_make_exception(int argc, VALUE *argv);
|
200
|
+
|
201
|
+
NORETURN(void rb_fiber_start(void));
|
202
|
+
|
203
|
+
NORETURN(void rb_print_undef(VALUE, ID, int));
|
204
|
+
NORETURN(void rb_vm_localjump_error(const char *,VALUE, int));
|
205
|
+
NORETURN(void rb_vm_jump_tag_but_local_jump(int, VALUE));
|
206
|
+
NORETURN(void rb_raise_method_missing(rb_thread_t *th, int argc, VALUE *argv,
|
207
|
+
VALUE obj, int call_status));
|
208
|
+
|
209
|
+
VALUE rb_vm_make_jump_tag_but_local_jump(int state, VALUE val);
|
210
|
+
NODE *rb_vm_cref(void);
|
211
|
+
VALUE rb_vm_call_cfunc(VALUE recv, VALUE (*func)(VALUE), VALUE arg, const rb_block_t *blockptr, VALUE filename);
|
212
|
+
void rb_vm_set_progname(VALUE filename);
|
213
|
+
void rb_thread_terminate_all(void);
|
214
|
+
VALUE rb_vm_top_self();
|
215
|
+
VALUE rb_vm_cbase(void);
|
216
|
+
void rb_trap_restore_mask(void);
|
217
|
+
|
218
|
+
#ifndef CharNext /* defined as CharNext[AW] on Windows. */
|
219
|
+
#define CharNext(p) ((p) + mblen((p), RUBY_MBCHAR_MAXSIZE))
|
220
|
+
#endif
|
221
|
+
|
222
|
+
#if defined DOSISH || defined __CYGWIN__
|
223
|
+
static inline void
|
224
|
+
translit_char(char *p, int from, int to)
|
225
|
+
{
|
226
|
+
while (*p) {
|
227
|
+
if ((unsigned char)*p == from)
|
228
|
+
*p = to;
|
229
|
+
p = CharNext(p);
|
230
|
+
}
|
231
|
+
}
|
232
|
+
#endif
|
233
|
+
|
234
|
+
#endif /* RUBY_EVAL_INTERN_H */
|
@@ -0,0 +1,99 @@
|
|
1
|
+
|
2
|
+
#ifndef RUBY_GC_H
|
3
|
+
#define RUBY_GC_H 1
|
4
|
+
|
5
|
+
#if defined(__x86_64__) && defined(__GNUC__)
|
6
|
+
#define SET_MACHINE_STACK_END(p) __asm__ volatile ("movq\t%%rsp, %0" : "=r" (*(p)))
|
7
|
+
#elif defined(__i386) && defined(__GNUC__)
|
8
|
+
#define SET_MACHINE_STACK_END(p) __asm__ volatile ("movl\t%%esp, %0" : "=r" (*(p)))
|
9
|
+
#else
|
10
|
+
NOINLINE(void rb_gc_set_stack_end(VALUE **stack_end_p));
|
11
|
+
#define SET_MACHINE_STACK_END(p) rb_gc_set_stack_end(p)
|
12
|
+
#define USE_CONSERVATIVE_STACK_END
|
13
|
+
#endif
|
14
|
+
|
15
|
+
/* for GC debug */
|
16
|
+
|
17
|
+
#ifndef RUBY_MARK_FREE_DEBUG
|
18
|
+
#define RUBY_MARK_FREE_DEBUG 0
|
19
|
+
#endif
|
20
|
+
|
21
|
+
#if RUBY_MARK_FREE_DEBUG
|
22
|
+
extern int ruby_gc_debug_indent;
|
23
|
+
|
24
|
+
static inline void
|
25
|
+
rb_gc_debug_indent(void)
|
26
|
+
{
|
27
|
+
printf("%*s", ruby_gc_debug_indent, "");
|
28
|
+
}
|
29
|
+
|
30
|
+
static inline void
|
31
|
+
rb_gc_debug_body(const char *mode, const char *msg, int st, void *ptr)
|
32
|
+
{
|
33
|
+
if (st == 0) {
|
34
|
+
ruby_gc_debug_indent--;
|
35
|
+
}
|
36
|
+
rb_gc_debug_indent();
|
37
|
+
printf("%s: %s %s (%p)\n", mode, st ? "->" : "<-", msg, ptr);
|
38
|
+
|
39
|
+
if (st) {
|
40
|
+
ruby_gc_debug_indent++;
|
41
|
+
}
|
42
|
+
|
43
|
+
fflush(stdout);
|
44
|
+
}
|
45
|
+
|
46
|
+
#define RUBY_MARK_ENTER(msg) rb_gc_debug_body("mark", (msg), 1, ptr)
|
47
|
+
#define RUBY_MARK_LEAVE(msg) rb_gc_debug_body("mark", (msg), 0, ptr)
|
48
|
+
#define RUBY_FREE_ENTER(msg) rb_gc_debug_body("free", (msg), 1, ptr)
|
49
|
+
#define RUBY_FREE_LEAVE(msg) rb_gc_debug_body("free", (msg), 0, ptr)
|
50
|
+
#define RUBY_GC_INFO rb_gc_debug_indent(); printf
|
51
|
+
|
52
|
+
#else
|
53
|
+
#define RUBY_MARK_ENTER(msg)
|
54
|
+
#define RUBY_MARK_LEAVE(msg)
|
55
|
+
#define RUBY_FREE_ENTER(msg)
|
56
|
+
#define RUBY_FREE_LEAVE(msg)
|
57
|
+
#define RUBY_GC_INFO if(0)printf
|
58
|
+
#endif
|
59
|
+
|
60
|
+
#define RUBY_MARK_UNLESS_NULL(ptr) if(RTEST(ptr)){rb_gc_mark(ptr);}
|
61
|
+
#define RUBY_FREE_UNLESS_NULL(ptr) if(ptr){ruby_xfree(ptr);(ptr)=NULL;}
|
62
|
+
|
63
|
+
#if STACK_GROW_DIRECTION > 0
|
64
|
+
# define STACK_UPPER(x, a, b) (a)
|
65
|
+
#elif STACK_GROW_DIRECTION < 0
|
66
|
+
# define STACK_UPPER(x, a, b) (b)
|
67
|
+
#else
|
68
|
+
RUBY_EXTERN int ruby_stack_grow_direction;
|
69
|
+
int ruby_get_stack_grow_direction(volatile VALUE *addr);
|
70
|
+
# define stack_growup_p(x) ( \
|
71
|
+
(ruby_stack_grow_direction ? \
|
72
|
+
ruby_stack_grow_direction : \
|
73
|
+
ruby_get_stack_grow_direction(x)) > 0)
|
74
|
+
# define STACK_UPPER(x, a, b) (stack_growup_p(x) ? (a) : (b))
|
75
|
+
#endif
|
76
|
+
|
77
|
+
#if STACK_GROW_DIRECTION
|
78
|
+
#define STACK_GROW_DIR_DETECTION
|
79
|
+
#define STACK_DIR_UPPER(a,b) STACK_UPPER(0, (a), (b))
|
80
|
+
#else
|
81
|
+
#define STACK_GROW_DIR_DETECTION VALUE stack_grow_dir_detection
|
82
|
+
#define STACK_DIR_UPPER(a,b) STACK_UPPER(&stack_grow_dir_detection, (a), (b))
|
83
|
+
#endif
|
84
|
+
#define IS_STACK_DIR_UPPER() STACK_DIR_UPPER(1,0)
|
85
|
+
|
86
|
+
#if defined __GNUC__ && __GNUC__ >= 4
|
87
|
+
#pragma GCC visibility push(default)
|
88
|
+
#endif
|
89
|
+
|
90
|
+
size_t rb_objspace_data_type_memsize(VALUE obj);
|
91
|
+
void rb_objspace_each_objects(
|
92
|
+
int (*callback)(void *start, void *end, size_t stride, void *data),
|
93
|
+
void *data);
|
94
|
+
|
95
|
+
#if defined __GNUC__ && __GNUC__ >= 4
|
96
|
+
#pragma GCC visibility pop
|
97
|
+
#endif
|
98
|
+
|
99
|
+
#endif /* RUBY_GC_H */
|
@@ -0,0 +1,177 @@
|
|
1
|
+
/* DO NOT EDIT THIS FILE DIRECTLY */
|
2
|
+
/**********************************************************************
|
3
|
+
|
4
|
+
id.h -
|
5
|
+
|
6
|
+
$Author$
|
7
|
+
created at: Sun Oct 19 21:12:51 2008
|
8
|
+
|
9
|
+
Copyright (C) 2007 Koichi Sasada
|
10
|
+
|
11
|
+
**********************************************************************/
|
12
|
+
|
13
|
+
#ifndef RUBY_ID_H
|
14
|
+
#define RUBY_ID_H
|
15
|
+
|
16
|
+
#define ID_SCOPE_SHIFT 3
|
17
|
+
#define ID_SCOPE_MASK 0x07
|
18
|
+
#define ID_LOCAL 0x00
|
19
|
+
#define ID_INSTANCE 0x01
|
20
|
+
#define ID_GLOBAL 0x03
|
21
|
+
#define ID_ATTRSET 0x04
|
22
|
+
#define ID_CONST 0x05
|
23
|
+
#define ID_CLASS 0x06
|
24
|
+
#define ID_JUNK 0x07
|
25
|
+
#define ID_INTERNAL ID_JUNK
|
26
|
+
|
27
|
+
#ifdef USE_PARSE_H
|
28
|
+
#include "parse.h"
|
29
|
+
#endif
|
30
|
+
|
31
|
+
#include "vm_opts.h" /* for SUPPORT_JOKE */
|
32
|
+
|
33
|
+
#define symIFUNC ID2SYM(idIFUNC)
|
34
|
+
#define symCFUNC ID2SYM(idCFUNC)
|
35
|
+
|
36
|
+
#if !defined tLAST_TOKEN && defined YYTOKENTYPE
|
37
|
+
#define tLAST_TOKEN tLAST_TOKEN
|
38
|
+
#endif
|
39
|
+
|
40
|
+
enum ruby_method_ids {
|
41
|
+
#ifndef tLAST_TOKEN
|
42
|
+
tUPLUS = 321,
|
43
|
+
tUMINUS = 322,
|
44
|
+
tPOW = 323,
|
45
|
+
tCMP = 324,
|
46
|
+
tEQ = 325,
|
47
|
+
tEQQ = 326,
|
48
|
+
tNEQ = 327,
|
49
|
+
tGEQ = 328,
|
50
|
+
tLEQ = 329,
|
51
|
+
tANDOP = 330,
|
52
|
+
tOROP = 331,
|
53
|
+
tMATCH = 332,
|
54
|
+
tNMATCH = 333,
|
55
|
+
tDOT2 = 334,
|
56
|
+
tDOT3 = 335,
|
57
|
+
tAREF = 336,
|
58
|
+
tASET = 337,
|
59
|
+
tLSHFT = 338,
|
60
|
+
tRSHFT = 339,
|
61
|
+
tLAMBDA = 352,
|
62
|
+
idNULL = 365,
|
63
|
+
idRespond_to = 366,
|
64
|
+
idIFUNC = 367,
|
65
|
+
idCFUNC = 368,
|
66
|
+
id_core_set_method_alias = 369,
|
67
|
+
id_core_set_variable_alias = 370,
|
68
|
+
id_core_undef_method = 371,
|
69
|
+
id_core_define_method = 372,
|
70
|
+
id_core_define_singleton_method = 373,
|
71
|
+
id_core_set_postexe = 374,
|
72
|
+
tLAST_TOKEN = 375,
|
73
|
+
#endif
|
74
|
+
idDot2 = tDOT2,
|
75
|
+
idDot3 = tDOT3,
|
76
|
+
idUPlus = tUPLUS,
|
77
|
+
idUMinus = tUMINUS,
|
78
|
+
idPow = tPOW,
|
79
|
+
idCmp = tCMP,
|
80
|
+
idPLUS = '+',
|
81
|
+
idMINUS = '-',
|
82
|
+
idMULT = '*',
|
83
|
+
idDIV = '/',
|
84
|
+
idMOD = '%',
|
85
|
+
idLT = '<',
|
86
|
+
idLTLT = tLSHFT,
|
87
|
+
idLE = tLEQ,
|
88
|
+
idGT = '>',
|
89
|
+
idGE = tGEQ,
|
90
|
+
idEq = tEQ,
|
91
|
+
idEqq = tEQQ,
|
92
|
+
idNeq = tNEQ,
|
93
|
+
idNot = '!',
|
94
|
+
idBackquote = '`',
|
95
|
+
idEqTilde = tMATCH,
|
96
|
+
idNeqTilde = tNMATCH,
|
97
|
+
idAREF = tAREF,
|
98
|
+
idASET = tASET,
|
99
|
+
idLAST_TOKEN = tLAST_TOKEN >> ID_SCOPE_SHIFT,
|
100
|
+
tIntern,
|
101
|
+
tMethodMissing,
|
102
|
+
tLength,
|
103
|
+
tSize,
|
104
|
+
tGets,
|
105
|
+
tSucc,
|
106
|
+
tEach,
|
107
|
+
tProc,
|
108
|
+
tLambda,
|
109
|
+
tSend,
|
110
|
+
t__send__,
|
111
|
+
tInitialize,
|
112
|
+
tUScore,
|
113
|
+
#if SUPPORT_JOKE
|
114
|
+
tBitblt,
|
115
|
+
tAnswer,
|
116
|
+
#endif
|
117
|
+
tLAST_ID,
|
118
|
+
#define TOKEN2ID(n) id##n = ((t##n<<ID_SCOPE_SHIFT)|ID_LOCAL)
|
119
|
+
#if SUPPORT_JOKE
|
120
|
+
TOKEN2ID(Bitblt),
|
121
|
+
TOKEN2ID(Answer),
|
122
|
+
#endif
|
123
|
+
TOKEN2ID(Intern),
|
124
|
+
TOKEN2ID(MethodMissing),
|
125
|
+
TOKEN2ID(Length),
|
126
|
+
TOKEN2ID(Size),
|
127
|
+
TOKEN2ID(Gets),
|
128
|
+
TOKEN2ID(Succ),
|
129
|
+
TOKEN2ID(Each),
|
130
|
+
TOKEN2ID(Proc),
|
131
|
+
TOKEN2ID(Lambda),
|
132
|
+
TOKEN2ID(Send),
|
133
|
+
TOKEN2ID(__send__),
|
134
|
+
TOKEN2ID(Initialize),
|
135
|
+
TOKEN2ID(UScore),
|
136
|
+
TOKEN2ID(LAST_ID)
|
137
|
+
};
|
138
|
+
|
139
|
+
#ifdef tLAST_TOKEN
|
140
|
+
struct ruby_method_ids_check {
|
141
|
+
#define ruby_method_id_check_for(name, value) \
|
142
|
+
int checking_for_##name[name == (value) ? 1 : -1]
|
143
|
+
ruby_method_id_check_for(tUPLUS, 321);
|
144
|
+
ruby_method_id_check_for(tUMINUS, 322);
|
145
|
+
ruby_method_id_check_for(tPOW, 323);
|
146
|
+
ruby_method_id_check_for(tCMP, 324);
|
147
|
+
ruby_method_id_check_for(tEQ, 325);
|
148
|
+
ruby_method_id_check_for(tEQQ, 326);
|
149
|
+
ruby_method_id_check_for(tNEQ, 327);
|
150
|
+
ruby_method_id_check_for(tGEQ, 328);
|
151
|
+
ruby_method_id_check_for(tLEQ, 329);
|
152
|
+
ruby_method_id_check_for(tANDOP, 330);
|
153
|
+
ruby_method_id_check_for(tOROP, 331);
|
154
|
+
ruby_method_id_check_for(tMATCH, 332);
|
155
|
+
ruby_method_id_check_for(tNMATCH, 333);
|
156
|
+
ruby_method_id_check_for(tDOT2, 334);
|
157
|
+
ruby_method_id_check_for(tDOT3, 335);
|
158
|
+
ruby_method_id_check_for(tAREF, 336);
|
159
|
+
ruby_method_id_check_for(tASET, 337);
|
160
|
+
ruby_method_id_check_for(tLSHFT, 338);
|
161
|
+
ruby_method_id_check_for(tRSHFT, 339);
|
162
|
+
ruby_method_id_check_for(tLAMBDA, 352);
|
163
|
+
ruby_method_id_check_for(idNULL, 365);
|
164
|
+
ruby_method_id_check_for(idRespond_to, 366);
|
165
|
+
ruby_method_id_check_for(idIFUNC, 367);
|
166
|
+
ruby_method_id_check_for(idCFUNC, 368);
|
167
|
+
ruby_method_id_check_for(id_core_set_method_alias, 369);
|
168
|
+
ruby_method_id_check_for(id_core_set_variable_alias, 370);
|
169
|
+
ruby_method_id_check_for(id_core_undef_method, 371);
|
170
|
+
ruby_method_id_check_for(id_core_define_method, 372);
|
171
|
+
ruby_method_id_check_for(id_core_define_singleton_method, 373);
|
172
|
+
ruby_method_id_check_for(id_core_set_postexe, 374);
|
173
|
+
ruby_method_id_check_for(tLAST_TOKEN, 375);
|
174
|
+
};
|
175
|
+
#endif
|
176
|
+
|
177
|
+
#endif /* RUBY_ID_H */
|