bindex 0.1.0

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.
Files changed (165) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +16 -0
  3. data/.travis.yml +48 -0
  4. data/CONTRIBUTING.md +15 -0
  5. data/Gemfile +10 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +38 -0
  8. data/Rakefile +48 -0
  9. data/bindex.gemspec +27 -0
  10. data/ext/bindex/bindex.h +11 -0
  11. data/ext/bindex/bindings.c +106 -0
  12. data/ext/bindex/com/gsamokovarov/bindex/BindingBuilder.java.erb +17 -0
  13. data/ext/bindex/com/gsamokovarov/bindex/CurrentBindingsIterator.java +54 -0
  14. data/ext/bindex/com/gsamokovarov/bindex/RubyBindingsCollector.java +34 -0
  15. data/ext/bindex/com/gsamokovarov/bindex/SetExceptionBindingsEventHook.java +21 -0
  16. data/ext/bindex/com/gsamokovarov/bindex/ThreadContextInterfaceException.java +14 -0
  17. data/ext/bindex/com/gsamokovarov/bindex/ThreadContextInternals.java +54 -0
  18. data/ext/bindex/cruby.c +34 -0
  19. data/ext/bindex/extconf.rb +29 -0
  20. data/ext/bindex/ruby_193.h +101 -0
  21. data/ext/bindex/ruby_193/addr2line.h +21 -0
  22. data/ext/bindex/ruby_193/constant.h +34 -0
  23. data/ext/bindex/ruby_193/debug.h +41 -0
  24. data/ext/bindex/ruby_193/dln.h +50 -0
  25. data/ext/bindex/ruby_193/encdb.h +167 -0
  26. data/ext/bindex/ruby_193/eval_intern.h +234 -0
  27. data/ext/bindex/ruby_193/gc.h +99 -0
  28. data/ext/bindex/ruby_193/id.h +177 -0
  29. data/ext/bindex/ruby_193/internal.h +242 -0
  30. data/ext/bindex/ruby_193/iseq.h +126 -0
  31. data/ext/bindex/ruby_193/method.h +105 -0
  32. data/ext/bindex/ruby_193/node.h +504 -0
  33. data/ext/bindex/ruby_193/parse.h +302 -0
  34. data/ext/bindex/ruby_193/probes.h +369 -0
  35. data/ext/bindex/ruby_193/regenc.h +219 -0
  36. data/ext/bindex/ruby_193/regint.h +850 -0
  37. data/ext/bindex/ruby_193/regparse.h +362 -0
  38. data/ext/bindex/ruby_193/revision.h +1 -0
  39. data/ext/bindex/ruby_193/ruby_atomic.h +175 -0
  40. data/ext/bindex/ruby_193/siphash.h +48 -0
  41. data/ext/bindex/ruby_193/thread_pthread.h +51 -0
  42. data/ext/bindex/ruby_193/thread_win32.h +40 -0
  43. data/ext/bindex/ruby_193/timev.h +21 -0
  44. data/ext/bindex/ruby_193/transcode_data.h +117 -0
  45. data/ext/bindex/ruby_193/transdb.h +186 -0
  46. data/ext/bindex/ruby_193/verconf.h +12 -0
  47. data/ext/bindex/ruby_193/version.h +52 -0
  48. data/ext/bindex/ruby_193/vm_core.h +763 -0
  49. data/ext/bindex/ruby_193/vm_exec.h +184 -0
  50. data/ext/bindex/ruby_193/vm_insnhelper.h +220 -0
  51. data/ext/bindex/ruby_193/vm_opts.h +51 -0
  52. data/ext/bindex/ruby_20.h +142 -0
  53. data/ext/bindex/ruby_20/addr2line.h +21 -0
  54. data/ext/bindex/ruby_20/constant.h +36 -0
  55. data/ext/bindex/ruby_20/dln.h +50 -0
  56. data/ext/bindex/ruby_20/encdb.h +169 -0
  57. data/ext/bindex/ruby_20/eval_intern.h +241 -0
  58. data/ext/bindex/ruby_20/gc.h +104 -0
  59. data/ext/bindex/ruby_20/id.h +135 -0
  60. data/ext/bindex/ruby_20/internal.h +395 -0
  61. data/ext/bindex/ruby_20/iseq.h +140 -0
  62. data/ext/bindex/ruby_20/method.h +138 -0
  63. data/ext/bindex/ruby_20/node.h +541 -0
  64. data/ext/bindex/ruby_20/parse.h +292 -0
  65. data/ext/bindex/ruby_20/probes.h +369 -0
  66. data/ext/bindex/ruby_20/probes_helper.h +67 -0
  67. data/ext/bindex/ruby_20/regenc.h +227 -0
  68. data/ext/bindex/ruby_20/regint.h +915 -0
  69. data/ext/bindex/ruby_20/regparse.h +367 -0
  70. data/ext/bindex/ruby_20/revision.h +1 -0
  71. data/ext/bindex/ruby_20/ruby_atomic.h +170 -0
  72. data/ext/bindex/ruby_20/siphash.h +48 -0
  73. data/ext/bindex/ruby_20/thread_pthread.h +56 -0
  74. data/ext/bindex/ruby_20/thread_win32.h +45 -0
  75. data/ext/bindex/ruby_20/timev.h +21 -0
  76. data/ext/bindex/ruby_20/transcode_data.h +127 -0
  77. data/ext/bindex/ruby_20/transdb.h +190 -0
  78. data/ext/bindex/ruby_20/verconf.h +12 -0
  79. data/ext/bindex/ruby_20/version.h +52 -0
  80. data/ext/bindex/ruby_20/vm_core.h +1018 -0
  81. data/ext/bindex/ruby_20/vm_debug.h +41 -0
  82. data/ext/bindex/ruby_20/vm_exec.h +173 -0
  83. data/ext/bindex/ruby_20/vm_insnhelper.h +274 -0
  84. data/ext/bindex/ruby_20/vm_opts.h +56 -0
  85. data/ext/bindex/ruby_21.h +142 -0
  86. data/ext/bindex/ruby_21/addr2line.h +21 -0
  87. data/ext/bindex/ruby_21/constant.h +36 -0
  88. data/ext/bindex/ruby_21/dln.h +51 -0
  89. data/ext/bindex/ruby_21/encdb.h +170 -0
  90. data/ext/bindex/ruby_21/eval_intern.h +260 -0
  91. data/ext/bindex/ruby_21/gc.h +101 -0
  92. data/ext/bindex/ruby_21/id.h +210 -0
  93. data/ext/bindex/ruby_21/internal.h +889 -0
  94. data/ext/bindex/ruby_21/iseq.h +136 -0
  95. data/ext/bindex/ruby_21/method.h +142 -0
  96. data/ext/bindex/ruby_21/node.h +543 -0
  97. data/ext/bindex/ruby_21/parse.h +298 -0
  98. data/ext/bindex/ruby_21/probes.h +401 -0
  99. data/ext/bindex/ruby_21/probes_helper.h +67 -0
  100. data/ext/bindex/ruby_21/regenc.h +223 -0
  101. data/ext/bindex/ruby_21/regint.h +911 -0
  102. data/ext/bindex/ruby_21/regparse.h +363 -0
  103. data/ext/bindex/ruby_21/revision.h +1 -0
  104. data/ext/bindex/ruby_21/ruby_atomic.h +170 -0
  105. data/ext/bindex/ruby_21/siphash.h +48 -0
  106. data/ext/bindex/ruby_21/thread_native.h +23 -0
  107. data/ext/bindex/ruby_21/thread_pthread.h +56 -0
  108. data/ext/bindex/ruby_21/thread_win32.h +45 -0
  109. data/ext/bindex/ruby_21/timev.h +42 -0
  110. data/ext/bindex/ruby_21/transcode_data.h +123 -0
  111. data/ext/bindex/ruby_21/transdb.h +190 -0
  112. data/ext/bindex/ruby_21/verconf.h +13 -0
  113. data/ext/bindex/ruby_21/version.h +52 -0
  114. data/ext/bindex/ruby_21/vm_core.h +1043 -0
  115. data/ext/bindex/ruby_21/vm_debug.h +37 -0
  116. data/ext/bindex/ruby_21/vm_exec.h +182 -0
  117. data/ext/bindex/ruby_21/vm_insnhelper.h +273 -0
  118. data/ext/bindex/ruby_21/vm_opts.h +56 -0
  119. data/ext/bindex/ruby_21preview.h +146 -0
  120. data/ext/bindex/ruby_21preview/addr2line.h +21 -0
  121. data/ext/bindex/ruby_21preview/constant.h +36 -0
  122. data/ext/bindex/ruby_21preview/dln.h +51 -0
  123. data/ext/bindex/ruby_21preview/encdb.h +270 -0
  124. data/ext/bindex/ruby_21preview/eval_intern.h +217 -0
  125. data/ext/bindex/ruby_21preview/gc.h +100 -0
  126. data/ext/bindex/ruby_21preview/id.h +169 -0
  127. data/ext/bindex/ruby_21preview/internal.h +765 -0
  128. data/ext/bindex/ruby_21preview/iseq.h +136 -0
  129. data/ext/bindex/ruby_21preview/method.h +141 -0
  130. data/ext/bindex/ruby_21preview/node.h +543 -0
  131. data/ext/bindex/ruby_21preview/parse.h +298 -0
  132. data/ext/bindex/ruby_21preview/probes.h +385 -0
  133. data/ext/bindex/ruby_21preview/probes_helper.h +67 -0
  134. data/ext/bindex/ruby_21preview/regenc.h +223 -0
  135. data/ext/bindex/ruby_21preview/regint.h +911 -0
  136. data/ext/bindex/ruby_21preview/regparse.h +363 -0
  137. data/ext/bindex/ruby_21preview/revision.h +1 -0
  138. data/ext/bindex/ruby_21preview/ruby_atomic.h +130 -0
  139. data/ext/bindex/ruby_21preview/siphash.h +48 -0
  140. data/ext/bindex/ruby_21preview/thread_native.h +23 -0
  141. data/ext/bindex/ruby_21preview/thread_pthread.h +56 -0
  142. data/ext/bindex/ruby_21preview/thread_win32.h +45 -0
  143. data/ext/bindex/ruby_21preview/timev.h +42 -0
  144. data/ext/bindex/ruby_21preview/transcode_data.h +123 -0
  145. data/ext/bindex/ruby_21preview/transdb.h +190 -0
  146. data/ext/bindex/ruby_21preview/verconf.h +13 -0
  147. data/ext/bindex/ruby_21preview/version.h +53 -0
  148. data/ext/bindex/ruby_21preview/vm_core.h +1017 -0
  149. data/ext/bindex/ruby_21preview/vm_debug.h +37 -0
  150. data/ext/bindex/ruby_21preview/vm_exec.h +180 -0
  151. data/ext/bindex/ruby_21preview/vm_insnhelper.h +272 -0
  152. data/ext/bindex/ruby_21preview/vm_opts.h +56 -0
  153. data/lib/bindex.rb +10 -0
  154. data/lib/bindex/jruby.rb +20 -0
  155. data/lib/bindex/jruby_internals.jar +0 -0
  156. data/lib/bindex/jruby_internals_9k.jar +0 -0
  157. data/lib/bindex/rubinius.rb +56 -0
  158. data/lib/bindex/version.rb +3 -0
  159. data/test/exception_test.rb +45 -0
  160. data/test/fixtures/basic_nested_fixture.rb +13 -0
  161. data/test/fixtures/custom_error_fixture.rb +9 -0
  162. data/test/fixtures/eval_nested_fixture.rb +13 -0
  163. data/test/fixtures/flat_fixture.rb +7 -0
  164. data/test/test_helper.rb +17 -0
  165. metadata +270 -0
@@ -0,0 +1,217 @@
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 = rb_vm_control_frame_block_ptr(th->cfp); \
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
+ # ifdef HAVE_CRT_EXTERNS_H
32
+ # include <crt_externs.h>
33
+ # else
34
+ # include "missing/crt_externs.h"
35
+ # endif
36
+ #endif
37
+
38
+ #ifndef HAVE_STRING_H
39
+ char *strrchr(const char *, const char);
40
+ #endif
41
+
42
+ #ifdef HAVE_UNISTD_H
43
+ #include <unistd.h>
44
+ #endif
45
+
46
+ #ifdef HAVE_NET_SOCKET_H
47
+ #include <net/socket.h>
48
+ #endif
49
+
50
+ #define ruby_setjmp(env) RUBY_SETJMP(env)
51
+ #define ruby_longjmp(env,val) RUBY_LONGJMP((env),(val))
52
+ #ifdef __CYGWIN__
53
+ # ifndef _setjmp
54
+ int _setjmp(jmp_buf);
55
+ # endif
56
+ # ifndef _longjmp
57
+ NORETURN(void _longjmp(jmp_buf, int));
58
+ # endif
59
+ #endif
60
+
61
+ #include <sys/types.h>
62
+ #include <signal.h>
63
+ #include <errno.h>
64
+
65
+ #ifdef HAVE_SYS_SELECT_H
66
+ #include <sys/select.h>
67
+ #endif
68
+
69
+ /*
70
+ Solaris sys/select.h switches select to select_large_fdset to support larger
71
+ file descriptors if FD_SETSIZE is larger than 1024 on 32bit environment.
72
+ But Ruby doesn't change FD_SETSIZE because fd_set is allocated dynamically.
73
+ So following definition is required to use select_large_fdset.
74
+ */
75
+ #ifdef HAVE_SELECT_LARGE_FDSET
76
+ #define select(n, r, w, e, t) select_large_fdset((n), (r), (w), (e), (t))
77
+ extern int select_large_fdset(int, fd_set *, fd_set *, fd_set *, struct timeval *);
78
+ #endif
79
+
80
+ #ifdef HAVE_SYS_PARAM_H
81
+ #include <sys/param.h>
82
+ #endif
83
+
84
+ #include <sys/stat.h>
85
+
86
+ #define SAVE_ROOT_JMPBUF(th, stmt) do \
87
+ if (ruby_setjmp((th)->root_jmpbuf) == 0) { \
88
+ stmt; \
89
+ } \
90
+ else { \
91
+ rb_fiber_start(); \
92
+ } while (0)
93
+
94
+ #define TH_PUSH_TAG(th) do { \
95
+ rb_thread_t * const _th = (th); \
96
+ struct rb_vm_tag _tag; \
97
+ _tag.tag = 0; \
98
+ _tag.prev = _th->tag; \
99
+ _th->tag = &_tag;
100
+
101
+ #define TH_POP_TAG() \
102
+ _th->tag = _tag.prev; \
103
+ } while (0)
104
+
105
+ #define TH_POP_TAG2() \
106
+ _th->tag = _tag.prev
107
+
108
+ #define PUSH_TAG() TH_PUSH_TAG(GET_THREAD())
109
+ #define POP_TAG() TH_POP_TAG()
110
+
111
+ #define TH_EXEC_TAG() ruby_setjmp(_th->tag->buf)
112
+
113
+ #define EXEC_TAG() \
114
+ TH_EXEC_TAG()
115
+
116
+ #define TH_JUMP_TAG(th, st) do { \
117
+ ruby_longjmp((th)->tag->buf,(st)); \
118
+ } while (0)
119
+
120
+ #define JUMP_TAG(st) TH_JUMP_TAG(GET_THREAD(), (st))
121
+
122
+ #define INTERNAL_EXCEPTION_P(exc) FIXNUM_P(exc)
123
+
124
+ enum ruby_tag_type {
125
+ RUBY_TAG_RETURN = 0x1,
126
+ RUBY_TAG_BREAK = 0x2,
127
+ RUBY_TAG_NEXT = 0x3,
128
+ RUBY_TAG_RETRY = 0x4,
129
+ RUBY_TAG_REDO = 0x5,
130
+ RUBY_TAG_RAISE = 0x6,
131
+ RUBY_TAG_THROW = 0x7,
132
+ RUBY_TAG_FATAL = 0x8,
133
+ RUBY_TAG_MASK = 0xf
134
+ };
135
+ #define TAG_RETURN RUBY_TAG_RETURN
136
+ #define TAG_BREAK RUBY_TAG_BREAK
137
+ #define TAG_NEXT RUBY_TAG_NEXT
138
+ #define TAG_RETRY RUBY_TAG_RETRY
139
+ #define TAG_REDO RUBY_TAG_REDO
140
+ #define TAG_RAISE RUBY_TAG_RAISE
141
+ #define TAG_THROW RUBY_TAG_THROW
142
+ #define TAG_FATAL RUBY_TAG_FATAL
143
+ #define TAG_MASK RUBY_TAG_MASK
144
+
145
+ #define NEW_THROW_OBJECT(val, pt, st) \
146
+ ((VALUE)rb_node_newnode(NODE_LIT, (VALUE)(val), (VALUE)(pt), (VALUE)(st)))
147
+ #define SET_THROWOBJ_CATCH_POINT(obj, val) \
148
+ (RNODE((obj))->u2.value = (val))
149
+ #define SET_THROWOBJ_STATE(obj, val) \
150
+ (RNODE((obj))->u3.value = (val))
151
+
152
+ #define GET_THROWOBJ_VAL(obj) ((VALUE)RNODE((obj))->u1.value)
153
+ #define GET_THROWOBJ_CATCH_POINT(obj) ((VALUE*)RNODE((obj))->u2.value)
154
+ #define GET_THROWOBJ_STATE(obj) ((int)RNODE((obj))->u3.value)
155
+
156
+ #define SCOPE_TEST(f) (rb_vm_cref()->nd_visi & (f))
157
+ #define SCOPE_CHECK(f) (rb_vm_cref()->nd_visi == (f))
158
+ #define SCOPE_SET(f) (rb_vm_cref()->nd_visi = (f))
159
+
160
+ void rb_thread_cleanup(void);
161
+ void rb_thread_wait_other_threads(void);
162
+
163
+ enum {
164
+ RAISED_EXCEPTION = 1,
165
+ RAISED_STACKOVERFLOW = 2,
166
+ RAISED_NOMEMORY = 4
167
+ };
168
+ int rb_threadptr_set_raised(rb_thread_t *th);
169
+ int rb_threadptr_reset_raised(rb_thread_t *th);
170
+ #define rb_thread_raised_set(th, f) ((th)->raised_flag |= (f))
171
+ #define rb_thread_raised_reset(th, f) ((th)->raised_flag &= ~(f))
172
+ #define rb_thread_raised_p(th, f) (((th)->raised_flag & (f)) != 0)
173
+ #define rb_thread_raised_clear(th) ((th)->raised_flag = 0)
174
+
175
+ VALUE rb_f_eval(int argc, VALUE *argv, VALUE self);
176
+ VALUE rb_make_exception(int argc, VALUE *argv);
177
+
178
+ NORETURN(void rb_method_name_error(VALUE, VALUE));
179
+
180
+ NORETURN(void rb_fiber_start(void));
181
+
182
+ NORETURN(void rb_print_undef(VALUE, ID, int));
183
+ NORETURN(void rb_print_undef_str(VALUE, VALUE));
184
+ NORETURN(void rb_vm_localjump_error(const char *,VALUE, int));
185
+ NORETURN(void rb_vm_jump_tag_but_local_jump(int));
186
+ NORETURN(void rb_raise_method_missing(rb_thread_t *th, int argc, VALUE *argv,
187
+ VALUE obj, int call_status));
188
+
189
+ VALUE rb_vm_make_jump_tag_but_local_jump(int state, VALUE val);
190
+ NODE *rb_vm_cref(void);
191
+ VALUE rb_vm_call_cfunc(VALUE recv, VALUE (*func)(VALUE), VALUE arg, const rb_block_t *blockptr, VALUE filename);
192
+ void rb_vm_set_progname(VALUE filename);
193
+ void rb_thread_terminate_all(void);
194
+ VALUE rb_vm_top_self();
195
+ VALUE rb_vm_cbase(void);
196
+
197
+ #ifndef CharNext /* defined as CharNext[AW] on Windows. */
198
+ # ifdef HAVE_MBLEN
199
+ # define CharNext(p) ((p) + mblen((p), RUBY_MBCHAR_MAXSIZE))
200
+ # else
201
+ # define CharNext(p) ((p) + 1)
202
+ # endif
203
+ #endif
204
+
205
+ #if defined DOSISH || defined __CYGWIN__
206
+ static inline void
207
+ translit_char(char *p, int from, int to)
208
+ {
209
+ while (*p) {
210
+ if ((unsigned char)*p == from)
211
+ *p = to;
212
+ p = CharNext(p);
213
+ }
214
+ }
215
+ #endif
216
+
217
+ #endif /* RUBY_EVAL_INTERN_H */
@@ -0,0 +1,100 @@
1
+
2
+ #ifndef RUBY_GC_H
3
+ #define RUBY_GC_H 1
4
+
5
+ #if defined(__x86_64__) && !defined(_ILP32) && defined(__GNUC__) && !defined(__native_client__)
6
+ #define SET_MACHINE_STACK_END(p) __asm__ __volatile__ ("movq\t%%rsp, %0" : "=r" (*(p)))
7
+ #elif defined(__i386) && defined(__GNUC__) && !defined(__native_client__)
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
+ RUBY_SYMBOL_EXPORT_BEGIN
87
+
88
+ /* exports for objspace module */
89
+ size_t rb_objspace_data_type_memsize(VALUE obj);
90
+ void rb_objspace_reachable_objects_from(VALUE obj, void (func)(VALUE, void *), void *data);
91
+ int rb_objspace_markable_object_p(VALUE obj);
92
+ int rb_objspace_internal_object_p(VALUE obj);
93
+
94
+ void rb_objspace_each_objects(
95
+ int (*callback)(void *start, void *end, size_t stride, void *data),
96
+ void *data);
97
+
98
+ RUBY_SYMBOL_EXPORT_END
99
+
100
+ #endif /* RUBY_GC_H */
@@ -0,0 +1,169 @@
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
+ enum ruby_id_types {
17
+ RUBY_ID_LOCAL = 0x00,
18
+ RUBY_ID_INSTANCE = 0x01,
19
+ RUBY_ID_GLOBAL = 0x03,
20
+ RUBY_ID_ATTRSET = 0x04,
21
+ RUBY_ID_CONST = 0x05,
22
+ RUBY_ID_CLASS = 0x06,
23
+ RUBY_ID_JUNK = 0x07,
24
+ RUBY_ID_INTERNAL = RUBY_ID_JUNK,
25
+ RUBY_ID_SCOPE_SHIFT = 3,
26
+ RUBY_ID_SCOPE_MASK = ~(~0U<<RUBY_ID_SCOPE_SHIFT)
27
+ };
28
+
29
+ #define ID_SCOPE_SHIFT RUBY_ID_SCOPE_SHIFT
30
+ #define ID_SCOPE_MASK RUBY_ID_SCOPE_MASK
31
+ #define ID_LOCAL RUBY_ID_LOCAL
32
+ #define ID_INSTANCE RUBY_ID_INSTANCE
33
+ #define ID_GLOBAL RUBY_ID_GLOBAL
34
+ #define ID_ATTRSET RUBY_ID_ATTRSET
35
+ #define ID_CONST RUBY_ID_CONST
36
+ #define ID_CLASS RUBY_ID_CLASS
37
+ #define ID_JUNK RUBY_ID_JUNK
38
+ #define ID_INTERNAL RUBY_ID_INTERNAL
39
+
40
+ #define ID2ATTRSET(id) (((id)&~ID_SCOPE_MASK)|ID_ATTRSET)
41
+
42
+ #define symIFUNC ID2SYM(idIFUNC)
43
+ #define symCFUNC ID2SYM(idCFUNC)
44
+
45
+ #define RUBY_TOKEN_DOT2 128
46
+ #define RUBY_TOKEN_DOT3 129
47
+ #define RUBY_TOKEN_UPLUS 130
48
+ #define RUBY_TOKEN_UMINUS 131
49
+ #define RUBY_TOKEN_POW 132
50
+ #define RUBY_TOKEN_DSTAR 133
51
+ #define RUBY_TOKEN_CMP 134
52
+ #define RUBY_TOKEN_LSHFT 135
53
+ #define RUBY_TOKEN_RSHFT 136
54
+ #define RUBY_TOKEN_LEQ 137
55
+ #define RUBY_TOKEN_GEQ 138
56
+ #define RUBY_TOKEN_EQ 139
57
+ #define RUBY_TOKEN_EQQ 140
58
+ #define RUBY_TOKEN_NEQ 141
59
+ #define RUBY_TOKEN_MATCH 142
60
+ #define RUBY_TOKEN_NMATCH 143
61
+ #define RUBY_TOKEN_AREF 144
62
+ #define RUBY_TOKEN_ASET 145
63
+ #define RUBY_TOKEN_COLON2 146
64
+ #define RUBY_TOKEN_COLON3 147
65
+ #define RUBY_TOKEN(t) RUBY_TOKEN_##t
66
+
67
+ enum ruby_method_ids {
68
+ idDot2 = RUBY_TOKEN(DOT2),
69
+ idDot3 = RUBY_TOKEN(DOT3),
70
+ idUPlus = RUBY_TOKEN(UPLUS),
71
+ idUMinus = RUBY_TOKEN(UMINUS),
72
+ idPow = RUBY_TOKEN(POW),
73
+ idCmp = RUBY_TOKEN(CMP),
74
+ idPLUS = '+',
75
+ idMINUS = '-',
76
+ idMULT = '*',
77
+ idDIV = '/',
78
+ idMOD = '%',
79
+ idLT = '<',
80
+ idLTLT = RUBY_TOKEN(LSHFT),
81
+ idLE = RUBY_TOKEN(LEQ),
82
+ idGT = '>',
83
+ idGE = RUBY_TOKEN(GEQ),
84
+ idEq = RUBY_TOKEN(EQ),
85
+ idEqq = RUBY_TOKEN(EQQ),
86
+ idNeq = RUBY_TOKEN(NEQ),
87
+ idNot = '!',
88
+ idBackquote = '`',
89
+ idEqTilde = RUBY_TOKEN(MATCH),
90
+ idNeqTilde = RUBY_TOKEN(NMATCH),
91
+ idAREF = RUBY_TOKEN(AREF),
92
+ idASET = RUBY_TOKEN(ASET),
93
+ tPRESERVED_ID_BEGIN = 147,
94
+ idNULL,
95
+ idEmptyP,
96
+ idEqlP,
97
+ idRespond_to,
98
+ idRespond_to_missing,
99
+ idIFUNC,
100
+ idCFUNC,
101
+ id_core_set_method_alias,
102
+ id_core_set_variable_alias,
103
+ id_core_undef_method,
104
+ id_core_define_method,
105
+ id_core_define_singleton_method,
106
+ id_core_set_postexe,
107
+ id_core_hash_from_ary,
108
+ id_core_hash_merge_ary,
109
+ id_core_hash_merge_ptr,
110
+ id_core_hash_merge_kwd,
111
+ tPRESERVED_ID_END,
112
+ tInspect,
113
+ tIntern,
114
+ tObject_id,
115
+ tConst_missing,
116
+ tMethodMissing,
117
+ tMethod_added,
118
+ tSingleton_method_added,
119
+ tMethod_removed,
120
+ tSingleton_method_removed,
121
+ tMethod_undefined,
122
+ tSingleton_method_undefined,
123
+ tLength,
124
+ tSize,
125
+ tGets,
126
+ tSucc,
127
+ tEach,
128
+ tProc,
129
+ tLambda,
130
+ tSend,
131
+ t__send__,
132
+ t__attached__,
133
+ tInitialize,
134
+ tInitialize_copy,
135
+ tInitialize_clone,
136
+ tInitialize_dup,
137
+ tUScore,
138
+ #define TOKEN2LOCALID(n) id##n = ((t##n<<ID_SCOPE_SHIFT)|ID_LOCAL)
139
+ TOKEN2LOCALID(Inspect),
140
+ TOKEN2LOCALID(Intern),
141
+ TOKEN2LOCALID(Object_id),
142
+ TOKEN2LOCALID(Const_missing),
143
+ TOKEN2LOCALID(MethodMissing),
144
+ TOKEN2LOCALID(Method_added),
145
+ TOKEN2LOCALID(Singleton_method_added),
146
+ TOKEN2LOCALID(Method_removed),
147
+ TOKEN2LOCALID(Singleton_method_removed),
148
+ TOKEN2LOCALID(Method_undefined),
149
+ TOKEN2LOCALID(Singleton_method_undefined),
150
+ TOKEN2LOCALID(Length),
151
+ TOKEN2LOCALID(Size),
152
+ TOKEN2LOCALID(Gets),
153
+ TOKEN2LOCALID(Succ),
154
+ TOKEN2LOCALID(Each),
155
+ TOKEN2LOCALID(Proc),
156
+ TOKEN2LOCALID(Lambda),
157
+ TOKEN2LOCALID(Send),
158
+ TOKEN2LOCALID(__send__),
159
+ TOKEN2LOCALID(__attached__),
160
+ TOKEN2LOCALID(Initialize),
161
+ TOKEN2LOCALID(Initialize_copy),
162
+ TOKEN2LOCALID(Initialize_clone),
163
+ TOKEN2LOCALID(Initialize_dup),
164
+ TOKEN2LOCALID(UScore),
165
+ tLAST_OP_ID = tPRESERVED_ID_END-1,
166
+ idLAST_OP_ID = tLAST_OP_ID >> ID_SCOPE_SHIFT
167
+ };
168
+
169
+ #endif /* RUBY_ID_H */