debase-ruby_core_source 0.9.10 → 0.9.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +21 -18
  3. data/README.md +2 -2
  4. data/lib/debase/ruby_core_source.rb +1 -3
  5. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/addr2line.h +21 -0
  6. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/ccan/build_assert/build_assert.h +40 -0
  7. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/ccan/check_type/check_type.h +63 -0
  8. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/ccan/container_of/container_of.h +142 -0
  9. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/ccan/list/list.h +773 -0
  10. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/ccan/str/str.h +16 -0
  11. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/constant.h +50 -0
  12. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/debug_counter.h +109 -0
  13. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/dln.h +51 -0
  14. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/encindex.h +67 -0
  15. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/eval_intern.h +341 -0
  16. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/gc.h +117 -0
  17. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/id.h +250 -0
  18. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/id_table.h +31 -0
  19. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/insns.inc +118 -0
  20. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/insns_info.inc +827 -0
  21. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/internal.h +1957 -0
  22. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/iseq.h +268 -0
  23. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/known_errors.inc +746 -0
  24. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/method.h +216 -0
  25. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/node.h +523 -0
  26. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/node_name.inc +212 -0
  27. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/opt_sc.inc +809 -0
  28. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/optinsn.inc +77 -0
  29. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/optunifs.inc +49 -0
  30. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/parse.h +191 -0
  31. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/probes_helper.h +43 -0
  32. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/regenc.h +254 -0
  33. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/regint.h +938 -0
  34. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/regparse.h +370 -0
  35. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/revision.h +1 -0
  36. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/ruby_assert.h +54 -0
  37. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/ruby_atomic.h +233 -0
  38. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/siphash.h +48 -0
  39. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/symbol.h +108 -0
  40. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/thread_pthread.h +54 -0
  41. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/thread_win32.h +36 -0
  42. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/timev.h +42 -0
  43. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/transcode_data.h +139 -0
  44. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/version.h +73 -0
  45. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/vm.inc +2935 -0
  46. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/vm_call_iseq_optimized.inc +212 -0
  47. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/vm_core.h +1699 -0
  48. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/vm_debug.h +37 -0
  49. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/vm_exec.h +182 -0
  50. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/vm_insnhelper.h +250 -0
  51. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/vm_opts.h +57 -0
  52. data/lib/debase/ruby_core_source/ruby-2.5.0-preview1/vmtc.inc +115 -0
  53. data/lib/debase/ruby_core_source/version.rb +1 -1
  54. metadata +50 -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,109 @@
1
+ /**********************************************************************
2
+
3
+ debug_counter.h -
4
+
5
+ created at: Tue Feb 21 16:51:18 2017
6
+
7
+ Copyright (C) 2017 Koichi Sasada
8
+
9
+ **********************************************************************/
10
+
11
+ #ifndef USE_DEBUG_COUNTER
12
+ #define USE_DEBUG_COUNTER 0
13
+ #endif
14
+
15
+ #ifdef RB_DEBUG_COUNTER
16
+
17
+ /* method search */
18
+ RB_DEBUG_COUNTER(mc_inline_hit)
19
+ RB_DEBUG_COUNTER(mc_inline_miss)
20
+ RB_DEBUG_COUNTER(mc_global_hit)
21
+ RB_DEBUG_COUNTER(mc_global_miss)
22
+ RB_DEBUG_COUNTER(mc_global_state_miss)
23
+ RB_DEBUG_COUNTER(mc_class_serial_miss)
24
+ RB_DEBUG_COUNTER(mc_cme_complement)
25
+ RB_DEBUG_COUNTER(mc_cme_complement_hit)
26
+ RB_DEBUG_COUNTER(mc_search_super)
27
+
28
+ /* ivar access */
29
+ RB_DEBUG_COUNTER(ivar_get_ic_hit)
30
+ RB_DEBUG_COUNTER(ivar_get_ic_miss)
31
+ RB_DEBUG_COUNTER(ivar_get_ic_miss_serial)
32
+ RB_DEBUG_COUNTER(ivar_get_ic_miss_unset)
33
+ RB_DEBUG_COUNTER(ivar_get_ic_miss_noobject)
34
+ RB_DEBUG_COUNTER(ivar_set_ic_hit)
35
+ RB_DEBUG_COUNTER(ivar_set_ic_miss)
36
+ RB_DEBUG_COUNTER(ivar_set_ic_miss_serial)
37
+ RB_DEBUG_COUNTER(ivar_set_ic_miss_unset)
38
+ RB_DEBUG_COUNTER(ivar_set_ic_miss_oorange)
39
+ RB_DEBUG_COUNTER(ivar_set_ic_miss_noobject)
40
+ RB_DEBUG_COUNTER(ivar_get_base)
41
+ RB_DEBUG_COUNTER(ivar_set_base)
42
+
43
+ /* lvar access */
44
+ RB_DEBUG_COUNTER(lvar_get)
45
+ RB_DEBUG_COUNTER(lvar_get_dynamic)
46
+ RB_DEBUG_COUNTER(lvar_set)
47
+ RB_DEBUG_COUNTER(lvar_set_dynamic)
48
+ RB_DEBUG_COUNTER(lvar_set_slowpath)
49
+
50
+ /* object counts */
51
+ RB_DEBUG_COUNTER(obj_free)
52
+
53
+ RB_DEBUG_COUNTER(obj_str_ptr)
54
+ RB_DEBUG_COUNTER(obj_str_embed)
55
+ RB_DEBUG_COUNTER(obj_str_shared)
56
+ RB_DEBUG_COUNTER(obj_str_nofree)
57
+ RB_DEBUG_COUNTER(obj_str_fstr)
58
+
59
+ RB_DEBUG_COUNTER(obj_ary_ptr)
60
+ RB_DEBUG_COUNTER(obj_ary_embed)
61
+
62
+ RB_DEBUG_COUNTER(obj_obj_ptr)
63
+ RB_DEBUG_COUNTER(obj_obj_embed)
64
+
65
+ /* load */
66
+ RB_DEBUG_COUNTER(load_files)
67
+ RB_DEBUG_COUNTER(load_path_is_not_realpath)
68
+
69
+ #endif
70
+
71
+ #ifndef RUBY_DEBUG_COUNTER_H
72
+ #define RUBY_DEBUG_COUNTER_H 1
73
+
74
+ #if !defined(__GNUC__) && USE_DEBUG_COUNTER
75
+ #error "USE_DEBUG_COUNTER is not supported by other than __GNUC__"
76
+ #endif
77
+
78
+ enum rb_debug_counter_type {
79
+ #define RB_DEBUG_COUNTER(name) RB_DEBUG_COUNTER_##name,
80
+ #include "debug_counter.h"
81
+ RB_DEBUG_COUNTER_MAX
82
+ #undef RB_DEBUG_COUNTER
83
+ };
84
+
85
+ #if USE_DEBUG_COUNTER
86
+ #include "ruby/ruby.h"
87
+
88
+ extern size_t rb_debug_counter[];
89
+
90
+ inline static int
91
+ rb_debug_counter_add(enum rb_debug_counter_type type, int add, int cond)
92
+ {
93
+ if (cond) {
94
+ rb_debug_counter[(int)type] += add;
95
+ }
96
+ return cond;
97
+ }
98
+
99
+ #define RB_DEBUG_COUNTER_INC(type) rb_debug_counter_add(RB_DEBUG_COUNTER_##type, 1, 1)
100
+ #define RB_DEBUG_COUNTER_INC_UNLESS(type, cond) (!rb_debug_counter_add(RB_DEBUG_COUNTER_##type, 1, !(cond)))
101
+ #define RB_DEBUG_COUNTER_INC_IF(type, cond) rb_debug_counter_add(RB_DEBUG_COUNTER_##type, 1, (cond))
102
+
103
+ #else
104
+ #define RB_DEBUG_COUNTER_INC(type) ((void)0)
105
+ #define RB_DEBUG_COUNTER_INC_UNLESS(type, cond) (cond)
106
+ #define RB_DEBUG_COUNTER_INC_IF(type, cond) (cond)
107
+ #endif
108
+
109
+ #endif /* RUBY_DEBUG_COUNTER_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,341 @@
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_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->ec.cfp);
18
+ vm_block_handler_verify(block_handler);
19
+ vm_passed_block_handler_set(th, block_handler);
20
+ VM_ENV_FLAGS_SET(th->ec.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.state = TAG_NONE; \
135
+ _tag.tag = Qundef; \
136
+ _tag.prev = _th->ec.tag;
137
+
138
+ #define TH_POP_TAG() \
139
+ _th->ec.tag = _tag.prev; \
140
+ } while (0)
141
+
142
+ #define TH_TMPPOP_TAG() \
143
+ _th->ec.tag = _tag.prev
144
+
145
+ #define TH_REPUSH_TAG() (void)(_th->ec.tag = &_tag)
146
+
147
+ #define PUSH_TAG() TH_PUSH_TAG(GET_THREAD())
148
+ #define POP_TAG() TH_POP_TAG()
149
+
150
+ #if defined __GNUC__ && __GNUC__ == 4 && (__GNUC_MINOR__ >= 6 && __GNUC_MINOR__ <= 8)
151
+ # define VAR_FROM_MEMORY(var) __extension__(*(__typeof__(var) volatile *)&(var))
152
+ # define VAR_INITIALIZED(var) ((var) = VAR_FROM_MEMORY(var))
153
+ # define VAR_NOCLOBBERED(var) volatile var
154
+ #else
155
+ # define VAR_FROM_MEMORY(var) (var)
156
+ # define VAR_INITIALIZED(var) ((void)&(var))
157
+ # define VAR_NOCLOBBERED(var) var
158
+ #endif
159
+
160
+ #if defined(USE_UNALIGNED_MEMBER_ACCESS) && USE_UNALIGNED_MEMBER_ACCESS && \
161
+ defined(__clang__)
162
+ # define UNALIGNED_MEMBER_ACCESS(expr) __extension__({ \
163
+ _Pragma("GCC diagnostic push"); \
164
+ _Pragma("GCC diagnostic ignored \"-Waddress-of-packed-member\""); \
165
+ typeof(expr) unaligned_member_access_result = (expr); \
166
+ _Pragma("GCC diagnostic pop"); \
167
+ unaligned_member_access_result; \
168
+ })
169
+ #else
170
+ # define UNALIGNED_MEMBER_ACCESS(expr) expr
171
+ #endif
172
+ #define UNALIGNED_MEMBER_PTR(ptr, mem) UNALIGNED_MEMBER_ACCESS(&(ptr)->mem)
173
+
174
+ #undef RB_OBJ_WRITE
175
+ #define RB_OBJ_WRITE(a, slot, b) UNALIGNED_MEMBER_ACCESS(rb_obj_write((VALUE)(a), (VALUE *)(slot), (VALUE)(b), __FILE__, __LINE__))
176
+
177
+ /* clear th->ec.tag->state, and return the value */
178
+ static inline int
179
+ rb_threadptr_tag_state(rb_thread_t *th)
180
+ {
181
+ enum ruby_tag_type state = th->ec.tag->state;
182
+ th->ec.tag->state = TAG_NONE;
183
+ return state;
184
+ }
185
+
186
+ NORETURN(static inline void rb_threadptr_tag_jump(rb_thread_t *, enum ruby_tag_type st));
187
+ static inline void
188
+ rb_threadptr_tag_jump(rb_thread_t *th, enum ruby_tag_type st)
189
+ {
190
+ th->ec.tag->state = st;
191
+ ruby_longjmp(th->ec.tag->buf, 1);
192
+ }
193
+
194
+ /*
195
+ setjmp() in assignment expression rhs is undefined behavior
196
+ [ISO/IEC 9899:1999] 7.13.1.1
197
+ */
198
+ #define TH_EXEC_TAG() \
199
+ (ruby_setjmp(_tag.buf) ? rb_threadptr_tag_state(VAR_FROM_MEMORY(_th)) : (TH_REPUSH_TAG(), 0))
200
+
201
+ #define EXEC_TAG() \
202
+ TH_EXEC_TAG()
203
+
204
+ #define TH_JUMP_TAG(th, st) rb_threadptr_tag_jump(th, st)
205
+
206
+ #define JUMP_TAG(st) TH_JUMP_TAG(GET_THREAD(), (st))
207
+
208
+ #define INTERNAL_EXCEPTION_P(exc) FIXNUM_P(exc)
209
+
210
+ /* CREF operators */
211
+
212
+ #define CREF_FL_PUSHED_BY_EVAL IMEMO_FL_USER1
213
+ #define CREF_FL_OMOD_SHARED IMEMO_FL_USER2
214
+
215
+ static inline VALUE
216
+ CREF_CLASS(const rb_cref_t *cref)
217
+ {
218
+ return cref->klass;
219
+ }
220
+
221
+ static inline rb_cref_t *
222
+ CREF_NEXT(const rb_cref_t *cref)
223
+ {
224
+ return cref->next;
225
+ }
226
+
227
+ static inline const rb_scope_visibility_t *
228
+ CREF_SCOPE_VISI(const rb_cref_t *cref)
229
+ {
230
+ return &cref->scope_visi;
231
+ }
232
+
233
+ static inline VALUE
234
+ CREF_REFINEMENTS(const rb_cref_t *cref)
235
+ {
236
+ return cref->refinements;
237
+ }
238
+
239
+ static inline void
240
+ CREF_REFINEMENTS_SET(rb_cref_t *cref, VALUE refs)
241
+ {
242
+ RB_OBJ_WRITE(cref, &cref->refinements, refs);
243
+ }
244
+
245
+ static inline int
246
+ CREF_PUSHED_BY_EVAL(const rb_cref_t *cref)
247
+ {
248
+ return cref->flags & CREF_FL_PUSHED_BY_EVAL;
249
+ }
250
+
251
+ static inline void
252
+ CREF_PUSHED_BY_EVAL_SET(rb_cref_t *cref)
253
+ {
254
+ cref->flags |= CREF_FL_PUSHED_BY_EVAL;
255
+ }
256
+
257
+ static inline int
258
+ CREF_OMOD_SHARED(const rb_cref_t *cref)
259
+ {
260
+ return cref->flags & CREF_FL_OMOD_SHARED;
261
+ }
262
+
263
+ static inline void
264
+ CREF_OMOD_SHARED_SET(rb_cref_t *cref)
265
+ {
266
+ cref->flags |= CREF_FL_OMOD_SHARED;
267
+ }
268
+
269
+ static inline void
270
+ CREF_OMOD_SHARED_UNSET(rb_cref_t *cref)
271
+ {
272
+ cref->flags &= ~CREF_FL_OMOD_SHARED;
273
+ }
274
+
275
+ void rb_thread_cleanup(void);
276
+ void rb_thread_wait_other_threads(void);
277
+
278
+ enum {
279
+ RAISED_EXCEPTION = 1,
280
+ RAISED_STACKOVERFLOW = 2,
281
+ RAISED_NOMEMORY = 4
282
+ };
283
+ int rb_threadptr_set_raised(rb_thread_t *th);
284
+ int rb_threadptr_reset_raised(rb_thread_t *th);
285
+ #define rb_thread_raised_set(th, f) ((th)->ec.raised_flag |= (f))
286
+ #define rb_thread_raised_reset(th, f) ((th)->ec.raised_flag &= ~(f))
287
+ #define rb_thread_raised_p(th, f) (((th)->ec.raised_flag & (f)) != 0)
288
+ #define rb_thread_raised_clear(th) ((th)->ec.raised_flag = 0)
289
+ int rb_threadptr_stack_check(rb_thread_t *th);
290
+
291
+ VALUE rb_f_eval(int argc, const VALUE *argv, VALUE self);
292
+ VALUE rb_make_exception(int argc, const VALUE *argv);
293
+
294
+ NORETURN(void rb_method_name_error(VALUE, VALUE));
295
+
296
+ NORETURN(void rb_fiber_start(void));
297
+
298
+ NORETURN(void rb_print_undef(VALUE, ID, rb_method_visibility_t));
299
+ NORETURN(void rb_print_undef_str(VALUE, VALUE));
300
+ NORETURN(void rb_print_inaccessible(VALUE, ID, rb_method_visibility_t));
301
+ NORETURN(void rb_vm_localjump_error(const char *,VALUE, int));
302
+ #if 0
303
+ NORETURN(void rb_vm_jump_tag_but_local_jump(int));
304
+ #endif
305
+ NORETURN(void rb_raise_method_missing(rb_thread_t *th, int argc, const VALUE *argv,
306
+ VALUE obj, int call_status));
307
+
308
+ VALUE rb_vm_make_jump_tag_but_local_jump(int state, VALUE val);
309
+ rb_cref_t *rb_vm_cref(void);
310
+ rb_cref_t *rb_vm_cref_replace_with_duplicated_cref(void);
311
+ VALUE rb_vm_call_cfunc(VALUE recv, VALUE (*func)(VALUE), VALUE arg, VALUE block_handler, VALUE filename);
312
+ void rb_vm_set_progname(VALUE filename);
313
+ void rb_thread_terminate_all(void);
314
+ VALUE rb_vm_cbase(void);
315
+
316
+ /* vm_backtrace.c */
317
+ VALUE rb_threadptr_backtrace_object(rb_thread_t *th);
318
+ VALUE rb_threadptr_backtrace_str_ary(rb_thread_t *th, long lev, long n);
319
+ VALUE rb_threadptr_backtrace_location_ary(rb_thread_t *th, long lev, long n);
320
+
321
+ #ifndef CharNext /* defined as CharNext[AW] on Windows. */
322
+ # ifdef HAVE_MBLEN
323
+ # define CharNext(p) ((p) + mblen((p), RUBY_MBCHAR_MAXSIZE))
324
+ # else
325
+ # define CharNext(p) ((p) + 1)
326
+ # endif
327
+ #endif
328
+
329
+ #if defined DOSISH || defined __CYGWIN__
330
+ static inline void
331
+ translit_char(char *p, int from, int to)
332
+ {
333
+ while (*p) {
334
+ if ((unsigned char)*p == from)
335
+ *p = to;
336
+ p = CharNext(p);
337
+ }
338
+ }
339
+ #endif
340
+
341
+ #endif /* RUBY_EVAL_INTERN_H */