debase-ruby_core_source 0.9.5 → 0.9.6

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 (52) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Rakefile +1 -1
  4. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/addr2line.h +21 -0
  5. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/ccan/build_assert/build_assert.h +40 -0
  6. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/ccan/check_type/check_type.h +63 -0
  7. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/ccan/container_of/container_of.h +142 -0
  8. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/ccan/list/list.h +773 -0
  9. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/ccan/str/str.h +16 -0
  10. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/constant.h +50 -0
  11. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/dln.h +51 -0
  12. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/encindex.h +67 -0
  13. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/eval_intern.h +315 -0
  14. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/gc.h +114 -0
  15. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/id.h +220 -0
  16. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/id_table.h +31 -0
  17. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/insns.inc +112 -0
  18. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/insns_info.inc +796 -0
  19. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/internal.h +1767 -0
  20. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/iseq.h +252 -0
  21. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/known_errors.inc +746 -0
  22. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/method.h +213 -0
  23. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/node.h +520 -0
  24. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/node_name.inc +208 -0
  25. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/opt_sc.inc +774 -0
  26. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/optinsn.inc +83 -0
  27. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/optunifs.inc +129 -0
  28. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/parse.h +204 -0
  29. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/probes_helper.h +43 -0
  30. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/regenc.h +251 -0
  31. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/regint.h +927 -0
  32. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/regparse.h +369 -0
  33. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/revision.h +1 -0
  34. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/ruby_assert.h +54 -0
  35. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/ruby_atomic.h +233 -0
  36. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/siphash.h +48 -0
  37. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/symbol.h +108 -0
  38. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/thread_pthread.h +54 -0
  39. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/thread_win32.h +36 -0
  40. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/timev.h +42 -0
  41. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/transcode_data.h +139 -0
  42. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/version.h +73 -0
  43. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/vm.inc +3412 -0
  44. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/vm_call_iseq_optimized.inc +212 -0
  45. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/vm_core.h +1644 -0
  46. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/vm_debug.h +37 -0
  47. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/vm_exec.h +182 -0
  48. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/vm_insnhelper.h +227 -0
  49. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/vm_opts.h +57 -0
  50. data/lib/debase/ruby_core_source/ruby-2.4.0-p0/vmtc.inc +110 -0
  51. data/lib/debase/ruby_core_source/version.rb +1 -1
  52. metadata +49 -2
@@ -0,0 +1,16 @@
1
+ /* CC0 (Public domain) - see ccan/licenses/CC0 file for details */
2
+ #ifndef CCAN_STR_H
3
+ #define CCAN_STR_H
4
+ /**
5
+ * stringify - Turn expression into a string literal
6
+ * @expr: any C expression
7
+ *
8
+ * Example:
9
+ * #define PRINT_COND_IF_FALSE(cond) \
10
+ * ((cond) || printf("%s is false!", stringify(cond)))
11
+ */
12
+ #define stringify(expr) stringify_1(expr)
13
+ /* Double-indirection required to stringify expansions */
14
+ #define stringify_1(expr) #expr
15
+
16
+ #endif /* CCAN_STR_H */
@@ -0,0 +1,50 @@
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_DEPRECATED = 0x100,
16
+
17
+ CONST_VISIBILITY_MASK = 0xff,
18
+ CONST_PUBLIC = 0x00,
19
+ CONST_PRIVATE,
20
+ CONST_VISIBILITY_MAX
21
+ } rb_const_flag_t;
22
+
23
+ #define RB_CONST_PRIVATE_P(ce) \
24
+ (((ce)->flag & CONST_VISIBILITY_MASK) == CONST_PRIVATE)
25
+ #define RB_CONST_PUBLIC_P(ce) \
26
+ (((ce)->flag & CONST_VISIBILITY_MASK) == CONST_PUBLIC)
27
+
28
+ #define RB_CONST_DEPRECATED_P(ce) \
29
+ ((ce)->flag & CONST_DEPRECATED)
30
+
31
+ typedef struct rb_const_entry_struct {
32
+ rb_const_flag_t flag;
33
+ int line;
34
+ const VALUE value; /* should be mark */
35
+ const VALUE file; /* should be mark */
36
+ } rb_const_entry_t;
37
+
38
+ VALUE rb_mod_private_constant(int argc, const VALUE *argv, VALUE obj);
39
+ VALUE rb_mod_public_constant(int argc, const VALUE *argv, VALUE obj);
40
+ VALUE rb_mod_deprecate_constant(int argc, const VALUE *argv, VALUE obj);
41
+ void rb_free_const_table(struct rb_id_table *tbl);
42
+ VALUE rb_public_const_get(VALUE klass, ID id);
43
+ VALUE rb_public_const_get_at(VALUE klass, ID id);
44
+ VALUE rb_public_const_get_from(VALUE klass, ID id);
45
+ int rb_public_const_defined(VALUE klass, ID id);
46
+ int rb_public_const_defined_at(VALUE klass, ID id);
47
+ int rb_public_const_defined_from(VALUE klass, ID id);
48
+ rb_const_entry_t *rb_const_lookup(VALUE klass, ID id);
49
+
50
+ #endif /* CONSTANT_H */
@@ -0,0 +1,51 @@
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
+ RUBY_SYMBOL_EXPORT_BEGIN
32
+
33
+ #ifndef DLN_FIND_EXTRA_ARG
34
+ #define DLN_FIND_EXTRA_ARG
35
+ #endif
36
+ #ifndef DLN_FIND_EXTRA_ARG_DECL
37
+ #define DLN_FIND_EXTRA_ARG_DECL
38
+ #endif
39
+
40
+ char *dln_find_exe_r(const char*,const char*,char*,size_t DLN_FIND_EXTRA_ARG_DECL);
41
+ char *dln_find_file_r(const char*,const char*,char*,size_t DLN_FIND_EXTRA_ARG_DECL);
42
+
43
+ #ifdef USE_DLN_A_OUT
44
+ extern char *dln_argv0;
45
+ #endif
46
+
47
+ void *dln_load(const char*);
48
+
49
+ RUBY_SYMBOL_EXPORT_END
50
+
51
+ #endif
@@ -0,0 +1,67 @@
1
+ /**********************************************************************
2
+
3
+ encindex.h -
4
+
5
+ $Author$
6
+ created at: Tue Sep 15 13:21:14 JST 2015
7
+
8
+ Copyright (C) 2015 Yukihiro Matsumoto
9
+
10
+ **********************************************************************/
11
+
12
+ #ifndef RUBY_ENCINDEX_H
13
+ #define RUBY_ENCINDEX_H 1
14
+ #if defined(__cplusplus)
15
+ extern "C" {
16
+ #if 0
17
+ } /* satisfy cc-mode */
18
+ #endif
19
+ #endif
20
+
21
+ enum ruby_preserved_encindex {
22
+ RUBY_ENCINDEX_ASCII,
23
+ RUBY_ENCINDEX_UTF_8,
24
+ RUBY_ENCINDEX_US_ASCII,
25
+
26
+ /* preserved indexes */
27
+ RUBY_ENCINDEX_UTF_16BE,
28
+ RUBY_ENCINDEX_UTF_16LE,
29
+ RUBY_ENCINDEX_UTF_32BE,
30
+ RUBY_ENCINDEX_UTF_32LE,
31
+ RUBY_ENCINDEX_UTF_16,
32
+ RUBY_ENCINDEX_UTF_32,
33
+ RUBY_ENCINDEX_UTF8_MAC,
34
+
35
+ /* for old options of regexp */
36
+ RUBY_ENCINDEX_EUC_JP,
37
+ RUBY_ENCINDEX_Windows_31J,
38
+
39
+ RUBY_ENCINDEX_BUILTIN_MAX
40
+ };
41
+
42
+ #define ENCINDEX_ASCII RUBY_ENCINDEX_ASCII
43
+ #define ENCINDEX_UTF_8 RUBY_ENCINDEX_UTF_8
44
+ #define ENCINDEX_US_ASCII RUBY_ENCINDEX_US_ASCII
45
+ #define ENCINDEX_UTF_16BE RUBY_ENCINDEX_UTF_16BE
46
+ #define ENCINDEX_UTF_16LE RUBY_ENCINDEX_UTF_16LE
47
+ #define ENCINDEX_UTF_32BE RUBY_ENCINDEX_UTF_32BE
48
+ #define ENCINDEX_UTF_32LE RUBY_ENCINDEX_UTF_32LE
49
+ #define ENCINDEX_UTF_16 RUBY_ENCINDEX_UTF_16
50
+ #define ENCINDEX_UTF_32 RUBY_ENCINDEX_UTF_32
51
+ #define ENCINDEX_UTF8_MAC RUBY_ENCINDEX_UTF8_MAC
52
+ #define ENCINDEX_EUC_JP RUBY_ENCINDEX_EUC_JP
53
+ #define ENCINDEX_Windows_31J RUBY_ENCINDEX_Windows_31J
54
+ #define ENCINDEX_BUILTIN_MAX RUBY_ENCINDEX_BUILTIN_MAX
55
+
56
+ #define rb_ascii8bit_encindex() RUBY_ENCINDEX_ASCII
57
+ #define rb_utf8_encindex() RUBY_ENCINDEX_UTF_8
58
+ #define rb_usascii_encindex() RUBY_ENCINDEX_US_ASCII
59
+
60
+ #if defined(__cplusplus)
61
+ #if 0
62
+ { /* satisfy cc-mode */
63
+ #endif
64
+ } /* extern "C" { */
65
+ #endif
66
+
67
+ #endif /* RUBY_ENCINDEX_H */
@@ -0,0 +1,315 @@
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
+ static inline void
8
+ vm_passed_block_handler_set(rb_thread_t *th, VALUE block_handler)
9
+ {
10
+ VM_ASSERT(vm_block_handler_verify(block_handler));
11
+ th->passed_block_handler = block_handler;
12
+ }
13
+
14
+ static inline void
15
+ pass_passed_block_handler(rb_thread_t *th)
16
+ {
17
+ VALUE block_handler = rb_vm_frame_block_handler(th->cfp);
18
+ VM_ASSERT(vm_block_handler_verify(block_handler));
19
+ vm_passed_block_handler_set(th, block_handler);
20
+ VM_ENV_FLAGS_SET(th->cfp->ep, VM_FRAME_FLAG_PASSED);
21
+ }
22
+
23
+ #define PASS_PASSED_BLOCK_HANDLER_TH(th) pass_passed_block_handler(th)
24
+ #define PASS_PASSED_BLOCK_HANDLER() pass_passed_block_handler(GET_THREAD())
25
+
26
+ #ifdef HAVE_STDLIB_H
27
+ #include <stdlib.h>
28
+ #endif
29
+ #ifndef EXIT_SUCCESS
30
+ #define EXIT_SUCCESS 0
31
+ #endif
32
+ #ifndef EXIT_FAILURE
33
+ #define EXIT_FAILURE 1
34
+ #endif
35
+
36
+ #include <stdio.h>
37
+ #include <setjmp.h>
38
+
39
+ #ifdef __APPLE__
40
+ # ifdef HAVE_CRT_EXTERNS_H
41
+ # include <crt_externs.h>
42
+ # else
43
+ # include "missing/crt_externs.h"
44
+ # endif
45
+ #endif
46
+
47
+ #ifndef HAVE_STRING_H
48
+ char *strrchr(const char *, const char);
49
+ #endif
50
+
51
+ #ifdef HAVE_UNISTD_H
52
+ #include <unistd.h>
53
+ #endif
54
+
55
+ #ifdef HAVE_NET_SOCKET_H
56
+ #include <net/socket.h>
57
+ #endif
58
+
59
+ #define ruby_setjmp(env) RUBY_SETJMP(env)
60
+ #define ruby_longjmp(env,val) RUBY_LONGJMP((env),(val))
61
+ #ifdef __CYGWIN__
62
+ # ifndef _setjmp
63
+ int _setjmp(jmp_buf);
64
+ # endif
65
+ # ifndef _longjmp
66
+ NORETURN(void _longjmp(jmp_buf, int));
67
+ # endif
68
+ #endif
69
+
70
+ #include <sys/types.h>
71
+ #include <signal.h>
72
+ #include <errno.h>
73
+
74
+ #ifdef HAVE_SYS_SELECT_H
75
+ #include <sys/select.h>
76
+ #endif
77
+
78
+ /*
79
+ Solaris sys/select.h switches select to select_large_fdset to support larger
80
+ file descriptors if FD_SETSIZE is larger than 1024 on 32bit environment.
81
+ But Ruby doesn't change FD_SETSIZE because fd_set is allocated dynamically.
82
+ So following definition is required to use select_large_fdset.
83
+ */
84
+ #ifdef HAVE_SELECT_LARGE_FDSET
85
+ #define select(n, r, w, e, t) select_large_fdset((n), (r), (w), (e), (t))
86
+ extern int select_large_fdset(int, fd_set *, fd_set *, fd_set *, struct timeval *);
87
+ #endif
88
+
89
+ #ifdef HAVE_SYS_PARAM_H
90
+ #include <sys/param.h>
91
+ #endif
92
+
93
+ #include <sys/stat.h>
94
+
95
+ #ifdef _MSC_VER
96
+ #define SAVE_ROOT_JMPBUF_BEFORE_STMT \
97
+ __try {
98
+ #define SAVE_ROOT_JMPBUF_AFTER_STMT \
99
+ } \
100
+ __except (GetExceptionCode() == EXCEPTION_STACK_OVERFLOW ? \
101
+ (rb_thread_raised_set(GET_THREAD(), RAISED_STACKOVERFLOW), \
102
+ raise(SIGSEGV), \
103
+ EXCEPTION_EXECUTE_HANDLER) : \
104
+ EXCEPTION_CONTINUE_SEARCH) { \
105
+ /* never reaches here */ \
106
+ }
107
+ #elif defined(__MINGW32__)
108
+ LONG WINAPI rb_w32_stack_overflow_handler(struct _EXCEPTION_POINTERS *);
109
+ #define SAVE_ROOT_JMPBUF_BEFORE_STMT \
110
+ do { \
111
+ PVOID _handler = AddVectoredExceptionHandler(1, rb_w32_stack_overflow_handler);
112
+
113
+ #define SAVE_ROOT_JMPBUF_AFTER_STMT \
114
+ RemoveVectoredExceptionHandler(_handler); \
115
+ } while (0);
116
+ #else
117
+ #define SAVE_ROOT_JMPBUF_BEFORE_STMT
118
+ #define SAVE_ROOT_JMPBUF_AFTER_STMT
119
+ #endif
120
+
121
+ #define SAVE_ROOT_JMPBUF(th, stmt) do \
122
+ if (ruby_setjmp((th)->root_jmpbuf) == 0) { \
123
+ SAVE_ROOT_JMPBUF_BEFORE_STMT \
124
+ stmt; \
125
+ SAVE_ROOT_JMPBUF_AFTER_STMT \
126
+ } \
127
+ else { \
128
+ rb_fiber_start(); \
129
+ } while (0)
130
+
131
+ #define TH_PUSH_TAG(th) do { \
132
+ rb_thread_t * const _th = (th); \
133
+ struct rb_vm_tag _tag; \
134
+ _tag.tag = Qundef; \
135
+ _tag.prev = _th->tag;
136
+
137
+ #define TH_POP_TAG() \
138
+ _th->tag = _tag.prev; \
139
+ } while (0)
140
+
141
+ #define TH_TMPPOP_TAG() \
142
+ _th->tag = _tag.prev
143
+
144
+ #define TH_REPUSH_TAG() (void)(_th->tag = &_tag)
145
+
146
+ #define PUSH_TAG() TH_PUSH_TAG(GET_THREAD())
147
+ #define POP_TAG() TH_POP_TAG()
148
+
149
+ #if defined __GNUC__ && __GNUC__ == 4 && (__GNUC_MINOR__ >= 6 && __GNUC_MINOR__ <= 8)
150
+ # define VAR_FROM_MEMORY(var) __extension__(*(__typeof__(var) volatile *)&(var))
151
+ # define VAR_INITIALIZED(var) ((var) = VAR_FROM_MEMORY(var))
152
+ # define VAR_NOCLOBBERED(var) volatile var
153
+ #else
154
+ # define VAR_FROM_MEMORY(var) (var)
155
+ # define VAR_INITIALIZED(var) ((void)&(var))
156
+ # define VAR_NOCLOBBERED(var) var
157
+ #endif
158
+
159
+ /* clear th->state, and return the value */
160
+ static inline int
161
+ rb_threadptr_tag_state(rb_thread_t *th)
162
+ {
163
+ int state = th->state;
164
+ th->state = 0;
165
+ return state;
166
+ }
167
+
168
+ NORETURN(static inline void rb_threadptr_tag_jump(rb_thread_t *, int));
169
+ static inline void
170
+ rb_threadptr_tag_jump(rb_thread_t *th, int st)
171
+ {
172
+ th->state = st;
173
+ ruby_longjmp(th->tag->buf, 1);
174
+ }
175
+
176
+ /*
177
+ setjmp() in assignment expression rhs is undefined behavior
178
+ [ISO/IEC 9899:1999] 7.13.1.1
179
+ */
180
+ #define TH_EXEC_TAG() \
181
+ (ruby_setjmp(_tag.buf) ? rb_threadptr_tag_state(VAR_FROM_MEMORY(_th)) : (TH_REPUSH_TAG(), 0))
182
+
183
+ #define EXEC_TAG() \
184
+ TH_EXEC_TAG()
185
+
186
+ #define TH_JUMP_TAG(th, st) rb_threadptr_tag_jump(th, st)
187
+
188
+ #define JUMP_TAG(st) TH_JUMP_TAG(GET_THREAD(), (st))
189
+
190
+ #define INTERNAL_EXCEPTION_P(exc) FIXNUM_P(exc)
191
+
192
+ /* CREF operators */
193
+
194
+ #define CREF_FL_PUSHED_BY_EVAL IMEMO_FL_USER1
195
+ #define CREF_FL_OMOD_SHARED IMEMO_FL_USER2
196
+
197
+ static inline VALUE
198
+ CREF_CLASS(const rb_cref_t *cref)
199
+ {
200
+ return cref->klass;
201
+ }
202
+
203
+ static inline rb_cref_t *
204
+ CREF_NEXT(const rb_cref_t *cref)
205
+ {
206
+ return cref->next;
207
+ }
208
+
209
+ static inline const rb_scope_visibility_t *
210
+ CREF_SCOPE_VISI(const rb_cref_t *cref)
211
+ {
212
+ return &cref->scope_visi;
213
+ }
214
+
215
+ static inline VALUE
216
+ CREF_REFINEMENTS(const rb_cref_t *cref)
217
+ {
218
+ return cref->refinements;
219
+ }
220
+
221
+ static inline void
222
+ CREF_REFINEMENTS_SET(rb_cref_t *cref, VALUE refs)
223
+ {
224
+ RB_OBJ_WRITE(cref, &cref->refinements, refs);
225
+ }
226
+
227
+ static inline int
228
+ CREF_PUSHED_BY_EVAL(const rb_cref_t *cref)
229
+ {
230
+ return cref->flags & CREF_FL_PUSHED_BY_EVAL;
231
+ }
232
+
233
+ static inline void
234
+ CREF_PUSHED_BY_EVAL_SET(rb_cref_t *cref)
235
+ {
236
+ cref->flags |= CREF_FL_PUSHED_BY_EVAL;
237
+ }
238
+
239
+ static inline int
240
+ CREF_OMOD_SHARED(const rb_cref_t *cref)
241
+ {
242
+ return cref->flags & CREF_FL_OMOD_SHARED;
243
+ }
244
+
245
+ static inline void
246
+ CREF_OMOD_SHARED_SET(rb_cref_t *cref)
247
+ {
248
+ cref->flags |= CREF_FL_OMOD_SHARED;
249
+ }
250
+
251
+ static inline void
252
+ CREF_OMOD_SHARED_UNSET(rb_cref_t *cref)
253
+ {
254
+ cref->flags &= ~CREF_FL_OMOD_SHARED;
255
+ }
256
+
257
+ void rb_thread_cleanup(void);
258
+ void rb_thread_wait_other_threads(void);
259
+
260
+ enum {
261
+ RAISED_EXCEPTION = 1,
262
+ RAISED_STACKOVERFLOW = 2,
263
+ RAISED_NOMEMORY = 4
264
+ };
265
+ int rb_threadptr_set_raised(rb_thread_t *th);
266
+ int rb_threadptr_reset_raised(rb_thread_t *th);
267
+ #define rb_thread_raised_set(th, f) ((th)->raised_flag |= (f))
268
+ #define rb_thread_raised_reset(th, f) ((th)->raised_flag &= ~(f))
269
+ #define rb_thread_raised_p(th, f) (((th)->raised_flag & (f)) != 0)
270
+ #define rb_thread_raised_clear(th) ((th)->raised_flag = 0)
271
+
272
+ VALUE rb_f_eval(int argc, const VALUE *argv, VALUE self);
273
+ VALUE rb_make_exception(int argc, const VALUE *argv);
274
+
275
+ NORETURN(void rb_method_name_error(VALUE, VALUE));
276
+
277
+ NORETURN(void rb_fiber_start(void));
278
+
279
+ NORETURN(void rb_print_undef(VALUE, ID, rb_method_visibility_t));
280
+ NORETURN(void rb_print_undef_str(VALUE, VALUE));
281
+ NORETURN(void rb_print_inaccessible(VALUE, ID, rb_method_visibility_t));
282
+ NORETURN(void rb_vm_localjump_error(const char *,VALUE, int));
283
+ NORETURN(void rb_vm_jump_tag_but_local_jump(int));
284
+ NORETURN(void rb_raise_method_missing(rb_thread_t *th, int argc, const VALUE *argv,
285
+ VALUE obj, int call_status));
286
+
287
+ VALUE rb_vm_make_jump_tag_but_local_jump(int state, VALUE val);
288
+ rb_cref_t *rb_vm_cref(void);
289
+ rb_cref_t *rb_vm_cref_replace_with_duplicated_cref(void);
290
+ VALUE rb_vm_call_cfunc(VALUE recv, VALUE (*func)(VALUE), VALUE arg, VALUE block_handler, VALUE filename);
291
+ void rb_vm_set_progname(VALUE filename);
292
+ void rb_thread_terminate_all(void);
293
+ VALUE rb_vm_cbase(void);
294
+
295
+ #ifndef CharNext /* defined as CharNext[AW] on Windows. */
296
+ # ifdef HAVE_MBLEN
297
+ # define CharNext(p) ((p) + mblen((p), RUBY_MBCHAR_MAXSIZE))
298
+ # else
299
+ # define CharNext(p) ((p) + 1)
300
+ # endif
301
+ #endif
302
+
303
+ #if defined DOSISH || defined __CYGWIN__
304
+ static inline void
305
+ translit_char(char *p, int from, int to)
306
+ {
307
+ while (*p) {
308
+ if ((unsigned char)*p == from)
309
+ *p = to;
310
+ p = CharNext(p);
311
+ }
312
+ }
313
+ #endif
314
+
315
+ #endif /* RUBY_EVAL_INTERN_H */