debase-ruby_core_source 3.2.0 → 3.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (122) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/CHANGELOG.md +10 -0
  4. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/addr2line.h +20 -0
  5. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/builtin.h +117 -0
  6. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ccan/build_assert/build_assert.h +40 -0
  7. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ccan/check_type/check_type.h +63 -0
  8. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ccan/container_of/container_of.h +142 -0
  9. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ccan/list/list.h +789 -0
  10. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ccan/str/str.h +17 -0
  11. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/constant.h +53 -0
  12. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/darray.h +246 -0
  13. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/debug_counter.h +423 -0
  14. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/dln.h +31 -0
  15. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/encindex.h +70 -0
  16. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/eval_intern.h +341 -0
  17. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/hrtime.h +227 -0
  18. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/id.h +343 -0
  19. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/id_table.h +39 -0
  20. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/insns.inc +249 -0
  21. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/insns_info.inc +9133 -0
  22. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/array.h +144 -0
  23. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/basic_operators.h +63 -0
  24. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/bignum.h +244 -0
  25. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/bits.h +568 -0
  26. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/class.h +226 -0
  27. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/cmdlineopt.h +63 -0
  28. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/compar.h +29 -0
  29. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/compile.h +34 -0
  30. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/compilers.h +107 -0
  31. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/complex.h +29 -0
  32. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/cont.h +32 -0
  33. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/dir.h +16 -0
  34. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/enc.h +19 -0
  35. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/encoding.h +32 -0
  36. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/enum.h +18 -0
  37. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/enumerator.h +21 -0
  38. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/error.h +213 -0
  39. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/eval.h +32 -0
  40. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/file.h +38 -0
  41. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/fixnum.h +184 -0
  42. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/gc.h +361 -0
  43. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/hash.h +190 -0
  44. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/imemo.h +241 -0
  45. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/inits.h +50 -0
  46. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/io.h +137 -0
  47. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/load.h +18 -0
  48. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/loadpath.h +16 -0
  49. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/math.h +23 -0
  50. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/missing.h +18 -0
  51. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/numeric.h +273 -0
  52. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/object.h +59 -0
  53. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/parse.h +133 -0
  54. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/proc.h +30 -0
  55. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/process.h +124 -0
  56. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/ractor.h +6 -0
  57. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/random.h +16 -0
  58. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/range.h +40 -0
  59. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/rational.h +71 -0
  60. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/re.h +28 -0
  61. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/ruby_parser.h +69 -0
  62. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/sanitizers.h +186 -0
  63. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/serial.h +23 -0
  64. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/signal.h +25 -0
  65. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/static_assert.h +16 -0
  66. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/string.h +160 -0
  67. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/struct.h +127 -0
  68. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/symbol.h +42 -0
  69. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/thread.h +74 -0
  70. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/time.h +34 -0
  71. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/transcode.h +20 -0
  72. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/util.h +27 -0
  73. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/variable.h +71 -0
  74. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/vm.h +129 -0
  75. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal/warnings.h +16 -0
  76. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/internal.h +112 -0
  77. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/iseq.h +334 -0
  78. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/known_errors.inc +791 -0
  79. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/method.h +254 -0
  80. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/node.h +125 -0
  81. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/node_name.inc +210 -0
  82. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/optinsn.inc +128 -0
  83. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/optunifs.inc +43 -0
  84. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/parse.h +232 -0
  85. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/parser_bits.h +564 -0
  86. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/parser_node.h +133 -0
  87. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/parser_st.h +162 -0
  88. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/parser_value.h +106 -0
  89. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/probes_helper.h +42 -0
  90. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ractor_core.h +387 -0
  91. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/regenc.h +254 -0
  92. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/regint.h +996 -0
  93. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/regparse.h +370 -0
  94. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/revision.h +5 -0
  95. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/rjit.h +103 -0
  96. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/rjit_c.h +165 -0
  97. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ruby_assert.h +14 -0
  98. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/ruby_atomic.h +23 -0
  99. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/rubyparser.h +628 -0
  100. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/shape.h +232 -0
  101. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/siphash.h +48 -0
  102. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/symbol.h +119 -0
  103. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/thread_none.h +20 -0
  104. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/thread_pthread.h +126 -0
  105. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/thread_win32.h +58 -0
  106. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/timev.h +58 -0
  107. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/transcode_data.h +138 -0
  108. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/variable.h +30 -0
  109. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/version.h +65 -0
  110. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm.inc +5396 -0
  111. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_call_iseq_optimized.inc +244 -0
  112. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_callinfo.h +608 -0
  113. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_core.h +2089 -0
  114. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_debug.h +122 -0
  115. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_exec.h +199 -0
  116. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_insnhelper.h +271 -0
  117. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_opts.h +67 -0
  118. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vm_sync.h +137 -0
  119. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/vmtc.inc +243 -0
  120. data/lib/debase/ruby_core_source/ruby-3.3.0-preview2/yjit.h +70 -0
  121. data/lib/debase/ruby_core_source/version.rb +1 -1
  122. metadata +120 -3
@@ -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_execution_context_t *ec, VALUE block_handler)
9
+ {
10
+ vm_block_handler_verify(block_handler);
11
+ ec->passed_block_handler = block_handler;
12
+ }
13
+
14
+ static inline void
15
+ pass_passed_block_handler(rb_execution_context_t *ec)
16
+ {
17
+ VALUE block_handler = rb_vm_frame_block_handler(ec->cfp);
18
+ vm_passed_block_handler_set(ec, block_handler);
19
+ VM_ENV_FLAGS_SET(ec->cfp->ep, VM_FRAME_FLAG_PASSED);
20
+ }
21
+
22
+ #define PASS_PASSED_BLOCK_HANDLER_EC(ec) pass_passed_block_handler(ec)
23
+ #define PASS_PASSED_BLOCK_HANDLER() pass_passed_block_handler(GET_EC())
24
+
25
+ #ifdef HAVE_STDLIB_H
26
+ #include <stdlib.h>
27
+ #endif
28
+ #ifndef EXIT_SUCCESS
29
+ #define EXIT_SUCCESS 0
30
+ #endif
31
+ #ifndef EXIT_FAILURE
32
+ #define EXIT_FAILURE 1
33
+ #endif
34
+
35
+ #include <stdio.h>
36
+ #if defined(__wasm__) && !defined(__EMSCRIPTEN__)
37
+ # include "wasm/setjmp.h"
38
+ #else
39
+ # include <setjmp.h>
40
+ #endif
41
+
42
+ #ifdef __APPLE__
43
+ # ifdef HAVE_CRT_EXTERNS_H
44
+ # include <crt_externs.h>
45
+ # else
46
+ # include "missing/crt_externs.h"
47
+ # endif
48
+ #endif
49
+
50
+ #ifndef HAVE_STRING_H
51
+ char *strrchr(const char *, const char);
52
+ #endif
53
+
54
+ #ifdef HAVE_UNISTD_H
55
+ #include <unistd.h>
56
+ #endif
57
+
58
+ #ifdef HAVE_NET_SOCKET_H
59
+ #include <net/socket.h>
60
+ #endif
61
+
62
+ #define ruby_setjmp(env) RUBY_SETJMP(env)
63
+ #define ruby_longjmp(env,val) RUBY_LONGJMP((env),(val))
64
+ #ifdef __CYGWIN__
65
+ # ifndef _setjmp
66
+ int _setjmp(jmp_buf);
67
+ # endif
68
+ # ifndef _longjmp
69
+ NORETURN(void _longjmp(jmp_buf, int));
70
+ # endif
71
+ #endif
72
+
73
+ #include <sys/types.h>
74
+ #include <signal.h>
75
+ #include <errno.h>
76
+
77
+ #ifdef HAVE_SYS_SELECT_H
78
+ #include <sys/select.h>
79
+ #endif
80
+
81
+ /*
82
+ Solaris sys/select.h switches select to select_large_fdset to support larger
83
+ file descriptors if FD_SETSIZE is larger than 1024 on 32bit environment.
84
+ But Ruby doesn't change FD_SETSIZE because fd_set is allocated dynamically.
85
+ So following definition is required to use select_large_fdset.
86
+ */
87
+ #ifdef HAVE_SELECT_LARGE_FDSET
88
+ #define select(n, r, w, e, t) select_large_fdset((n), (r), (w), (e), (t))
89
+ extern int select_large_fdset(int, fd_set *, fd_set *, fd_set *, struct timeval *);
90
+ #endif
91
+
92
+ #ifdef HAVE_SYS_PARAM_H
93
+ #include <sys/param.h>
94
+ #endif
95
+
96
+ #include <sys/stat.h>
97
+
98
+
99
+ #define SAVE_ROOT_JMPBUF(th, stmt) do \
100
+ if (true) { \
101
+ stmt; \
102
+ } \
103
+ else if (th) { /* suppress unused-variable warning */ \
104
+ } while (0)
105
+
106
+ #define EC_PUSH_TAG(ec) do { \
107
+ rb_execution_context_t * const _ec = (ec); \
108
+ struct rb_vm_tag _tag; \
109
+ _tag.state = TAG_NONE; \
110
+ _tag.tag = Qundef; \
111
+ _tag.prev = _ec->tag; \
112
+ _tag.lock_rec = rb_ec_vm_lock_rec(_ec); \
113
+
114
+ #define EC_POP_TAG() \
115
+ _ec->tag = _tag.prev; \
116
+ } while (0)
117
+
118
+ #define EC_TMPPOP_TAG() \
119
+ _ec->tag = _tag.prev
120
+
121
+ #define EC_REPUSH_TAG() (void)(_ec->tag = &_tag)
122
+
123
+ #if defined __GNUC__ && __GNUC__ == 4 && (__GNUC_MINOR__ >= 6 && __GNUC_MINOR__ <= 8) || defined __clang__
124
+ /* This macro prevents GCC 4.6--4.8 from emitting maybe-uninitialized warnings.
125
+ * This macro also prevents Clang from dumping core in EC_EXEC_TAG().
126
+ * (I confirmed Clang 4.0.1 and 5.0.0.)
127
+ */
128
+ # define VAR_FROM_MEMORY(var) __extension__(*(__typeof__(var) volatile *)&(var))
129
+ # define VAR_INITIALIZED(var) ((var) = VAR_FROM_MEMORY(var))
130
+ # define VAR_NOCLOBBERED(var) volatile var
131
+ #else
132
+ # define VAR_FROM_MEMORY(var) (var)
133
+ # define VAR_INITIALIZED(var) ((void)&(var))
134
+ # define VAR_NOCLOBBERED(var) var
135
+ #endif
136
+
137
+ static inline void
138
+ rb_ec_vm_lock_rec_check(const rb_execution_context_t *ec, unsigned int recorded_lock_rec)
139
+ {
140
+ unsigned int current_lock_rec = rb_ec_vm_lock_rec(ec);
141
+ if (current_lock_rec != recorded_lock_rec) {
142
+ rb_ec_vm_lock_rec_release(ec, recorded_lock_rec, current_lock_rec);
143
+ }
144
+ }
145
+
146
+ /* clear ec->tag->state, and return the value */
147
+ static inline int
148
+ rb_ec_tag_state(const rb_execution_context_t *ec)
149
+ {
150
+ struct rb_vm_tag *tag = ec->tag;
151
+ enum ruby_tag_type state = tag->state;
152
+ tag->state = TAG_NONE;
153
+ rb_ec_vm_lock_rec_check(ec, tag->lock_rec);
154
+ RBIMPL_ASSUME(state != TAG_NONE);
155
+ return state;
156
+ }
157
+
158
+ NORETURN(static inline void rb_ec_tag_jump(const rb_execution_context_t *ec, enum ruby_tag_type st));
159
+ static inline void
160
+ rb_ec_tag_jump(const rb_execution_context_t *ec, enum ruby_tag_type st)
161
+ {
162
+ RUBY_ASSERT(st != TAG_NONE);
163
+ ec->tag->state = st;
164
+ ruby_longjmp(ec->tag->buf, 1);
165
+ }
166
+
167
+ /*
168
+ setjmp() in assignment expression rhs is undefined behavior
169
+ [ISO/IEC 9899:1999] 7.13.1.1
170
+ */
171
+ #define EC_EXEC_TAG() \
172
+ (UNLIKELY(ruby_setjmp(_tag.buf)) ? rb_ec_tag_state(VAR_FROM_MEMORY(_ec)) : (EC_REPUSH_TAG(), 0))
173
+
174
+ #define EC_JUMP_TAG(ec, st) rb_ec_tag_jump(ec, st)
175
+
176
+ #define INTERNAL_EXCEPTION_P(exc) FIXNUM_P(exc)
177
+
178
+ /* CREF operators */
179
+
180
+ #define CREF_FL_PUSHED_BY_EVAL IMEMO_FL_USER1
181
+ #define CREF_FL_OMOD_SHARED IMEMO_FL_USER2
182
+ #define CREF_FL_SINGLETON IMEMO_FL_USER3
183
+
184
+ static inline int CREF_SINGLETON(const rb_cref_t *cref);
185
+
186
+ static inline VALUE
187
+ CREF_CLASS(const rb_cref_t *cref)
188
+ {
189
+ if (CREF_SINGLETON(cref)) {
190
+ return CLASS_OF(cref->klass_or_self);
191
+ }
192
+ else {
193
+ return cref->klass_or_self;
194
+ }
195
+ }
196
+
197
+ static inline VALUE
198
+ CREF_CLASS_FOR_DEFINITION(const rb_cref_t *cref)
199
+ {
200
+ if (CREF_SINGLETON(cref)) {
201
+ return rb_singleton_class(cref->klass_or_self);
202
+ }
203
+ else {
204
+ return cref->klass_or_self;
205
+ }
206
+ }
207
+
208
+ static inline rb_cref_t *
209
+ CREF_NEXT(const rb_cref_t *cref)
210
+ {
211
+ return cref->next;
212
+ }
213
+
214
+ static inline const rb_scope_visibility_t *
215
+ CREF_SCOPE_VISI(const rb_cref_t *cref)
216
+ {
217
+ return &cref->scope_visi;
218
+ }
219
+
220
+ static inline VALUE
221
+ CREF_REFINEMENTS(const rb_cref_t *cref)
222
+ {
223
+ return cref->refinements;
224
+ }
225
+
226
+ static inline void
227
+ CREF_REFINEMENTS_SET(rb_cref_t *cref, VALUE refs)
228
+ {
229
+ RB_OBJ_WRITE(cref, &cref->refinements, refs);
230
+ }
231
+
232
+ static inline int
233
+ CREF_PUSHED_BY_EVAL(const rb_cref_t *cref)
234
+ {
235
+ return cref->flags & CREF_FL_PUSHED_BY_EVAL;
236
+ }
237
+
238
+ static inline void
239
+ CREF_PUSHED_BY_EVAL_SET(rb_cref_t *cref)
240
+ {
241
+ cref->flags |= CREF_FL_PUSHED_BY_EVAL;
242
+ }
243
+
244
+ static inline int
245
+ CREF_SINGLETON(const rb_cref_t *cref)
246
+ {
247
+ return cref->flags & CREF_FL_SINGLETON;
248
+ }
249
+
250
+ static inline void
251
+ CREF_SINGLETON_SET(rb_cref_t *cref)
252
+ {
253
+ cref->flags |= CREF_FL_SINGLETON;
254
+ }
255
+
256
+ static inline int
257
+ CREF_OMOD_SHARED(const rb_cref_t *cref)
258
+ {
259
+ return cref->flags & CREF_FL_OMOD_SHARED;
260
+ }
261
+
262
+ static inline void
263
+ CREF_OMOD_SHARED_SET(rb_cref_t *cref)
264
+ {
265
+ cref->flags |= CREF_FL_OMOD_SHARED;
266
+ }
267
+
268
+ static inline void
269
+ CREF_OMOD_SHARED_UNSET(rb_cref_t *cref)
270
+ {
271
+ cref->flags &= ~CREF_FL_OMOD_SHARED;
272
+ }
273
+
274
+ enum {
275
+ RAISED_EXCEPTION = 1,
276
+ RAISED_STACKOVERFLOW = 2,
277
+ RAISED_NOMEMORY = 4
278
+ };
279
+ #define rb_ec_raised_set(ec, f) ((ec)->raised_flag |= (f))
280
+ #define rb_ec_raised_reset(ec, f) ((ec)->raised_flag &= ~(f))
281
+ #define rb_ec_raised_p(ec, f) (((ec)->raised_flag & (f)) != 0)
282
+ #define rb_ec_raised_clear(ec) ((ec)->raised_flag = 0)
283
+ int rb_ec_set_raised(rb_execution_context_t *ec);
284
+ int rb_ec_reset_raised(rb_execution_context_t *ec);
285
+ int rb_ec_stack_check(rb_execution_context_t *ec);
286
+
287
+ VALUE rb_f_eval(int argc, const VALUE *argv, VALUE self);
288
+ VALUE rb_make_exception(int argc, const VALUE *argv);
289
+
290
+ NORETURN(void rb_method_name_error(VALUE, VALUE));
291
+
292
+ NORETURN(void rb_fiber_start(rb_fiber_t*));
293
+
294
+ NORETURN(void rb_print_undef(VALUE, ID, rb_method_visibility_t));
295
+ NORETURN(void rb_print_undef_str(VALUE, VALUE));
296
+ NORETURN(void rb_print_inaccessible(VALUE, ID, rb_method_visibility_t));
297
+ NORETURN(void rb_vm_localjump_error(const char *,VALUE, int));
298
+ NORETURN(void rb_vm_jump_tag_but_local_jump(int));
299
+
300
+ VALUE rb_vm_make_jump_tag_but_local_jump(int state, VALUE val);
301
+ rb_cref_t *rb_vm_cref(void);
302
+ rb_cref_t *rb_vm_cref_replace_with_duplicated_cref(void);
303
+ VALUE rb_vm_call_cfunc(VALUE recv, VALUE (*func)(VALUE), VALUE arg, VALUE block_handler, VALUE filename);
304
+ void rb_vm_set_progname(VALUE filename);
305
+ VALUE rb_vm_cbase(void);
306
+
307
+ /* vm_backtrace.c */
308
+ VALUE rb_ec_backtrace_object(const rb_execution_context_t *ec);
309
+ VALUE rb_ec_backtrace_str_ary(const rb_execution_context_t *ec, long lev, long n);
310
+ VALUE rb_ec_backtrace_location_ary(const rb_execution_context_t *ec, long lev, long n, bool skip_internal);
311
+
312
+ #ifndef CharNext /* defined as CharNext[AW] on Windows. */
313
+ # ifdef HAVE_MBLEN
314
+ # define CharNext(p) rb_char_next(p)
315
+ static inline char *
316
+ rb_char_next(const char *p)
317
+ {
318
+ if (p) {
319
+ int len = mblen(p, RUBY_MBCHAR_MAXSIZE);
320
+ p += len > 0 ? len : 1;
321
+ }
322
+ return (char *)p;
323
+ }
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 */
@@ -0,0 +1,227 @@
1
+ #ifndef RB_HRTIME_H
2
+ #define RB_HRTIME_H
3
+ #include "ruby/ruby.h"
4
+ #include <time.h>
5
+ #if defined(HAVE_SYS_TIME_H)
6
+ # include <sys/time.h>
7
+ #endif
8
+
9
+ /*
10
+ * Hi-res monotonic clock. It is currently nsec resolution, which has over
11
+ * 500 years of range (with an unsigned 64-bit integer). Developers
12
+ * targeting small systems may try 32-bit and low-resolution (milliseconds).
13
+ *
14
+ * TBD: Is nsec even necessary? usec resolution seems enough for userspace
15
+ * and it'll be suitable for use with devices lasting over 500,000 years
16
+ * (maybe some devices designed for long-term space travel)
17
+ *
18
+ * Current API:
19
+ *
20
+ * * rb_hrtime_now - current clock value (monotonic if available)
21
+ * * rb_hrtime_mul - multiply with overflow check
22
+ * * rb_hrtime_add - add with overflow check
23
+ * * rb_timeval2hrtime - convert from timeval
24
+ * * rb_timespec2hrtime - convert from timespec
25
+ * * rb_msec2hrtime - convert from millisecond
26
+ * * rb_sec2hrtime - convert from time_t (seconds)
27
+ * * rb_hrtime2timeval - convert to timeval
28
+ * * rb_hrtime2timespec - convert to timespec
29
+ *
30
+ * Note: no conversion to milliseconds is provided here because different
31
+ * functions have different limits (e.g. epoll_wait vs w32_wait_events).
32
+ * So we provide RB_HRTIME_PER_MSEC and similar macros for implementing
33
+ * this for each use case.
34
+ */
35
+ #define RB_HRTIME_PER_USEC ((rb_hrtime_t)1000)
36
+ #define RB_HRTIME_PER_MSEC (RB_HRTIME_PER_USEC * (rb_hrtime_t)1000)
37
+ #define RB_HRTIME_PER_SEC (RB_HRTIME_PER_MSEC * (rb_hrtime_t)1000)
38
+ #define RB_HRTIME_MAX UINT64_MAX
39
+ #define RB_HRTIME_MIN ((rb_hrtime_t)0)
40
+
41
+ /*
42
+ * Lets try to support time travelers. Lets assume anybody with a time machine
43
+ * also has access to a modern gcc or clang with 128-bit int support
44
+ */
45
+ #ifdef MY_RUBY_BUILD_MAY_TIME_TRAVEL
46
+ typedef int128_t rb_hrtime_t;
47
+ #else
48
+ typedef uint64_t rb_hrtime_t;
49
+ #endif
50
+
51
+ /* thread.c */
52
+ /* returns the value of the monotonic clock (if available) */
53
+ rb_hrtime_t rb_hrtime_now(void);
54
+
55
+ /*
56
+ * multiply @a and @b with overflow check and return the
57
+ * (clamped to RB_HRTIME_MAX) result.
58
+ */
59
+ static inline rb_hrtime_t
60
+ rb_hrtime_mul(rb_hrtime_t a, rb_hrtime_t b)
61
+ {
62
+ rb_hrtime_t c;
63
+
64
+ #ifdef HAVE_BUILTIN___BUILTIN_MUL_OVERFLOW
65
+ if (__builtin_mul_overflow(a, b, &c))
66
+ return RB_HRTIME_MAX;
67
+ #else
68
+ if (b != 0 && a > RB_HRTIME_MAX / b) /* overflow */
69
+ return RB_HRTIME_MAX;
70
+ c = a * b;
71
+ #endif
72
+ return c;
73
+ }
74
+
75
+ /*
76
+ * add @a and @b with overflow check and return the
77
+ * (clamped to RB_HRTIME_MAX) result.
78
+ */
79
+ static inline rb_hrtime_t
80
+ rb_hrtime_add(rb_hrtime_t a, rb_hrtime_t b)
81
+ {
82
+ rb_hrtime_t c;
83
+
84
+ #ifdef HAVE_BUILTIN___BUILTIN_ADD_OVERFLOW
85
+ if (__builtin_add_overflow(a, b, &c))
86
+ return RB_HRTIME_MAX;
87
+ #else
88
+ c = a + b;
89
+ if (c < a) /* overflow */
90
+ return RB_HRTIME_MAX;
91
+ #endif
92
+ return c;
93
+ }
94
+
95
+ static inline rb_hrtime_t
96
+ rb_hrtime_sub(rb_hrtime_t a, rb_hrtime_t b)
97
+ {
98
+ if (a < b) {
99
+ return RB_HRTIME_MIN;
100
+ }
101
+ return a - b;
102
+ }
103
+
104
+ /*
105
+ * convert a timeval struct to rb_hrtime_t, clamping at RB_HRTIME_MAX
106
+ */
107
+ static inline rb_hrtime_t
108
+ rb_timeval2hrtime(const struct timeval *tv)
109
+ {
110
+ rb_hrtime_t s = rb_hrtime_mul((rb_hrtime_t)tv->tv_sec, RB_HRTIME_PER_SEC);
111
+ rb_hrtime_t u = rb_hrtime_mul((rb_hrtime_t)tv->tv_usec, RB_HRTIME_PER_USEC);
112
+
113
+ return rb_hrtime_add(s, u);
114
+ }
115
+
116
+ /*
117
+ * convert a timespec struct to rb_hrtime_t, clamping at RB_HRTIME_MAX
118
+ */
119
+ static inline rb_hrtime_t
120
+ rb_timespec2hrtime(const struct timespec *ts)
121
+ {
122
+ rb_hrtime_t s = rb_hrtime_mul((rb_hrtime_t)ts->tv_sec, RB_HRTIME_PER_SEC);
123
+
124
+ return rb_hrtime_add(s, (rb_hrtime_t)ts->tv_nsec);
125
+ }
126
+
127
+ /*
128
+ * convert a millisecond value to rb_hrtime_t, clamping at RB_HRTIME_MAX
129
+ */
130
+ static inline rb_hrtime_t
131
+ rb_msec2hrtime(unsigned long msec)
132
+ {
133
+ return rb_hrtime_mul((rb_hrtime_t)msec, RB_HRTIME_PER_MSEC);
134
+ }
135
+
136
+ /*
137
+ * convert a time_t value to rb_hrtime_t, clamping at RB_HRTIME_MAX
138
+ * Negative values will be clamped at 0.
139
+ */
140
+ static inline rb_hrtime_t
141
+ rb_sec2hrtime(time_t sec)
142
+ {
143
+ if (sec <= 0) return 0;
144
+
145
+ return rb_hrtime_mul((rb_hrtime_t)sec, RB_HRTIME_PER_SEC);
146
+ }
147
+
148
+ /*
149
+ * convert a rb_hrtime_t value to a timespec, suitable for calling
150
+ * functions like ppoll(2) or kevent(2)
151
+ */
152
+ static inline struct timespec *
153
+ rb_hrtime2timespec(struct timespec *ts, const rb_hrtime_t *hrt)
154
+ {
155
+ if (hrt) {
156
+ ts->tv_sec = (time_t)(*hrt / RB_HRTIME_PER_SEC);
157
+ ts->tv_nsec = (int32_t)(*hrt % RB_HRTIME_PER_SEC);
158
+ return ts;
159
+ }
160
+ return 0;
161
+ }
162
+
163
+ /*
164
+ * convert a rb_hrtime_t value to a timeval, suitable for calling
165
+ * functions like select(2)
166
+ */
167
+ static inline struct timeval *
168
+ rb_hrtime2timeval(struct timeval *tv, const rb_hrtime_t *hrt)
169
+ {
170
+ if (hrt) {
171
+ tv->tv_sec = (time_t)(*hrt / RB_HRTIME_PER_SEC);
172
+ tv->tv_usec = (int32_t)((*hrt % RB_HRTIME_PER_SEC)/RB_HRTIME_PER_USEC);
173
+
174
+ return tv;
175
+ }
176
+ return 0;
177
+ }
178
+
179
+ #include "internal/warnings.h"
180
+ #include "internal/time.h"
181
+
182
+ /*
183
+ * Back when we used "struct timeval", not all platforms implemented
184
+ * tv_sec as time_t. Nowadays we use "struct timespec" and tv_sec
185
+ * seems to be implemented more consistently across platforms.
186
+ * At least other parts of our code hasn't had to deal with non-time_t
187
+ * tv_sec in timespec...
188
+ */
189
+ #define TIMESPEC_SEC_MAX TIMET_MAX
190
+ #define TIMESPEC_SEC_MIN TIMET_MIN
191
+
192
+ COMPILER_WARNING_PUSH
193
+ #if __has_warning("-Wimplicit-int-float-conversion")
194
+ COMPILER_WARNING_IGNORED(-Wimplicit-int-float-conversion)
195
+ #elif defined(_MSC_VER)
196
+ /* C4305: 'initializing': truncation from '__int64' to 'const double' */
197
+ COMPILER_WARNING_IGNORED(4305)
198
+ #endif
199
+ static const double TIMESPEC_SEC_MAX_as_double = TIMESPEC_SEC_MAX;
200
+ COMPILER_WARNING_POP
201
+
202
+ static inline rb_hrtime_t *
203
+ double2hrtime(rb_hrtime_t *hrt, double d)
204
+ {
205
+ /* assume timespec.tv_sec has same signedness as time_t */
206
+ const double TIMESPEC_SEC_MAX_PLUS_ONE = 2.0 * (TIMESPEC_SEC_MAX_as_double / 2.0 + 1.0);
207
+
208
+ if (TIMESPEC_SEC_MAX_PLUS_ONE <= d) {
209
+ *hrt = RB_HRTIME_MAX;
210
+ return NULL;
211
+ }
212
+ else if (d <= 0) {
213
+ *hrt = 0;
214
+ }
215
+ else {
216
+ *hrt = (rb_hrtime_t)(d * (double)RB_HRTIME_PER_SEC);
217
+ }
218
+ return hrt;
219
+ }
220
+
221
+ static inline double
222
+ hrtime2double(rb_hrtime_t hrt)
223
+ {
224
+ return (double)hrt / (double)RB_HRTIME_PER_SEC;
225
+ }
226
+
227
+ #endif /* RB_HRTIME_H */