debase-ruby_core_source 0.8.0 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -1
- data/CHANGELOG.md +4 -0
- data/lib/debase/ruby_core_source.rb +1 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/addr2line.h +21 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/ccan/build_assert/build_assert.h +40 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/ccan/check_type/check_type.h +63 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/ccan/container_of/container_of.h +142 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/ccan/list/list.h +773 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/ccan/str/str.h +16 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/constant.h +50 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/dln.h +51 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/encindex.h +67 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/eval_intern.h +325 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/gc.h +114 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/id.h +212 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/id_table.h +30 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/insns.inc +109 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/insns_info.inc +769 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/internal.h +1373 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/iseq.h +181 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/known_errors.inc +746 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/method.h +210 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/node.h +521 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/node_name.inc +208 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/opt_sc.inc +750 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/optinsn.inc +83 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/optunifs.inc +126 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/parse.h +204 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/probes_helper.h +43 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/regenc.h +234 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/regint.h +972 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/regparse.h +363 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/revision.h +1 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/ruby_atomic.h +233 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/siphash.h +48 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/symbol.h +108 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/thread_pthread.h +54 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/thread_win32.h +36 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/timev.h +42 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/transcode_data.h +139 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/version.h +55 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/vm.inc +3374 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/vm_call_iseq_optimized.inc +212 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/vm_core.h +1216 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/vm_debug.h +37 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/vm_exec.h +182 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/vm_insnhelper.h +246 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/vm_opts.h +57 -0
- data/lib/debase/ruby_core_source/ruby-2.3.0-preview1/vmtc.inc +107 -0
- data/lib/debase/ruby_core_source/version.rb +1 -1
- metadata +49 -3
@@ -0,0 +1,1373 @@
|
|
1
|
+
/**********************************************************************
|
2
|
+
|
3
|
+
internal.h -
|
4
|
+
|
5
|
+
$Author$
|
6
|
+
created at: Tue May 17 11:42:20 JST 2011
|
7
|
+
|
8
|
+
Copyright (C) 2011 Yukihiro Matsumoto
|
9
|
+
|
10
|
+
**********************************************************************/
|
11
|
+
|
12
|
+
#ifndef RUBY_INTERNAL_H
|
13
|
+
#define RUBY_INTERNAL_H 1
|
14
|
+
|
15
|
+
#include "ruby.h"
|
16
|
+
#include "ruby/encoding.h"
|
17
|
+
#include "ruby/io.h"
|
18
|
+
|
19
|
+
#if defined(__cplusplus)
|
20
|
+
extern "C" {
|
21
|
+
#if 0
|
22
|
+
} /* satisfy cc-mode */
|
23
|
+
#endif
|
24
|
+
#endif
|
25
|
+
|
26
|
+
/* likely */
|
27
|
+
#if __GNUC__ >= 3
|
28
|
+
#define LIKELY(x) (__builtin_expect(!!(x), 1))
|
29
|
+
#define UNLIKELY(x) (__builtin_expect(!!(x), 0))
|
30
|
+
#else /* __GNUC__ >= 3 */
|
31
|
+
#define LIKELY(x) (x)
|
32
|
+
#define UNLIKELY(x) (x)
|
33
|
+
#endif /* __GNUC__ >= 3 */
|
34
|
+
|
35
|
+
#ifndef __has_attribute
|
36
|
+
# define __has_attribute(x) 0
|
37
|
+
#endif
|
38
|
+
|
39
|
+
#if __has_attribute(unused)
|
40
|
+
#define UNINITIALIZED_VAR(x) x __attribute__((unused))
|
41
|
+
#elif defined(__GNUC__) && __GNUC__ >= 3
|
42
|
+
#define UNINITIALIZED_VAR(x) x = x
|
43
|
+
#else
|
44
|
+
#define UNINITIALIZED_VAR(x) x
|
45
|
+
#endif
|
46
|
+
|
47
|
+
#if __has_attribute(warn_unused_result)
|
48
|
+
#define WARN_UNUSED_RESULT(x) x __attribute__((warn_unused_result))
|
49
|
+
#elif defined(__GNUC__) && (__GNUC__ * 1000 + __GNUC_MINOR__) >= 3004
|
50
|
+
#define WARN_UNUSED_RESULT(x) x __attribute__((warn_unused_result))
|
51
|
+
#else
|
52
|
+
#define WARN_UNUSED_RESULT(x) x
|
53
|
+
#endif
|
54
|
+
|
55
|
+
#ifdef HAVE_VALGRIND_MEMCHECK_H
|
56
|
+
# include <valgrind/memcheck.h>
|
57
|
+
# ifndef VALGRIND_MAKE_MEM_DEFINED
|
58
|
+
# define VALGRIND_MAKE_MEM_DEFINED(p, n) VALGRIND_MAKE_READABLE((p), (n))
|
59
|
+
# endif
|
60
|
+
# ifndef VALGRIND_MAKE_MEM_UNDEFINED
|
61
|
+
# define VALGRIND_MAKE_MEM_UNDEFINED(p, n) VALGRIND_MAKE_WRITABLE((p), (n))
|
62
|
+
# endif
|
63
|
+
#else
|
64
|
+
# define VALGRIND_MAKE_MEM_DEFINED(p, n) 0
|
65
|
+
# define VALGRIND_MAKE_MEM_UNDEFINED(p, n) 0
|
66
|
+
#endif
|
67
|
+
|
68
|
+
#define numberof(array) ((int)(sizeof(array) / sizeof((array)[0])))
|
69
|
+
|
70
|
+
#define GCC_VERSION_SINCE(major, minor, patchlevel) \
|
71
|
+
(defined(__GNUC__) && !defined(__INTEL_COMPILER) && \
|
72
|
+
((__GNUC__ > (major)) || \
|
73
|
+
(__GNUC__ == (major) && __GNUC_MINOR__ > (minor)) || \
|
74
|
+
(__GNUC__ == (major) && __GNUC_MINOR__ == (minor) && __GNUC_PATCHLEVEL__ >= (patchlevel))))
|
75
|
+
|
76
|
+
#ifndef __has_feature
|
77
|
+
# define __has_feature(x) 0
|
78
|
+
#endif
|
79
|
+
|
80
|
+
#ifndef __has_extension
|
81
|
+
# define __has_extension __has_feature
|
82
|
+
#endif
|
83
|
+
|
84
|
+
#if GCC_VERSION_SINCE(4, 6, 0) || __has_extension(c_static_assert)
|
85
|
+
# define STATIC_ASSERT(name, expr) _Static_assert(expr, #name ": " #expr)
|
86
|
+
#else
|
87
|
+
# define STATIC_ASSERT(name, expr) typedef int static_assert_##name##_check[1 - 2*!(expr)]
|
88
|
+
#endif
|
89
|
+
|
90
|
+
#define SIGNED_INTEGER_TYPE_P(int_type) (0 > ((int_type)0)-1)
|
91
|
+
#define SIGNED_INTEGER_MAX(sint_type) \
|
92
|
+
(sint_type) \
|
93
|
+
((((sint_type)1) << (sizeof(sint_type) * CHAR_BIT - 2)) | \
|
94
|
+
((((sint_type)1) << (sizeof(sint_type) * CHAR_BIT - 2)) - 1))
|
95
|
+
#define SIGNED_INTEGER_MIN(sint_type) (-SIGNED_INTEGER_MAX(sint_type)-1)
|
96
|
+
#define UNSIGNED_INTEGER_MAX(uint_type) (~(uint_type)0)
|
97
|
+
|
98
|
+
#if SIGNEDNESS_OF_TIME_T < 0 /* signed */
|
99
|
+
# define TIMET_MAX SIGNED_INTEGER_MAX(time_t)
|
100
|
+
# define TIMET_MIN SIGNED_INTEGER_MIN(time_t)
|
101
|
+
#elif SIGNEDNESS_OF_TIME_T > 0 /* unsigned */
|
102
|
+
# define TIMET_MAX UNSIGNED_INTEGER_MAX(time_t)
|
103
|
+
# define TIMET_MIN ((time_t)0)
|
104
|
+
#endif
|
105
|
+
#define TIMET_MAX_PLUS_ONE (2*(double)(TIMET_MAX/2+1))
|
106
|
+
|
107
|
+
#define MUL_OVERFLOW_SIGNED_INTEGER_P(a, b, min, max) ( \
|
108
|
+
(a) == 0 ? 0 : \
|
109
|
+
(a) == -1 ? (b) < -(max) : \
|
110
|
+
(a) > 0 ? \
|
111
|
+
((b) > 0 ? (max) / (a) < (b) : (min) / (a) > (b)) : \
|
112
|
+
((b) > 0 ? (min) / (a) < (b) : (max) / (a) > (b)))
|
113
|
+
#define MUL_OVERFLOW_FIXNUM_P(a, b) MUL_OVERFLOW_SIGNED_INTEGER_P(a, b, FIXNUM_MIN, FIXNUM_MAX)
|
114
|
+
#define MUL_OVERFLOW_LONG_P(a, b) MUL_OVERFLOW_SIGNED_INTEGER_P(a, b, LONG_MIN, LONG_MAX)
|
115
|
+
#define MUL_OVERFLOW_INT_P(a, b) MUL_OVERFLOW_SIGNED_INTEGER_P(a, b, INT_MIN, INT_MAX)
|
116
|
+
|
117
|
+
#ifndef swap16
|
118
|
+
# ifdef HAVE_BUILTIN___BUILTIN_BSWAP16
|
119
|
+
# define swap16(x) __builtin_bswap16(x)
|
120
|
+
# endif
|
121
|
+
#endif
|
122
|
+
|
123
|
+
#ifndef swap16
|
124
|
+
# define swap16(x) ((uint16_t)((((x)&0xFF)<<8) | (((x)>>8)&0xFF)))
|
125
|
+
#endif
|
126
|
+
|
127
|
+
#ifndef swap32
|
128
|
+
# ifdef HAVE_BUILTIN___BUILTIN_BSWAP32
|
129
|
+
# define swap32(x) __builtin_bswap32(x)
|
130
|
+
# endif
|
131
|
+
#endif
|
132
|
+
|
133
|
+
#ifndef swap32
|
134
|
+
# define swap32(x) ((uint32_t)((((x)&0xFF)<<24) \
|
135
|
+
|(((x)>>24)&0xFF) \
|
136
|
+
|(((x)&0x0000FF00)<<8) \
|
137
|
+
|(((x)&0x00FF0000)>>8) ))
|
138
|
+
#endif
|
139
|
+
|
140
|
+
#ifndef swap64
|
141
|
+
# ifdef HAVE_BUILTIN___BUILTIN_BSWAP64
|
142
|
+
# define swap64(x) __builtin_bswap64(x)
|
143
|
+
# endif
|
144
|
+
#endif
|
145
|
+
|
146
|
+
#ifndef swap64
|
147
|
+
# ifdef HAVE_INT64_T
|
148
|
+
# define byte_in_64bit(n) ((uint64_t)0xff << (n))
|
149
|
+
# define swap64(x) ((uint64_t)((((x)&byte_in_64bit(0))<<56) \
|
150
|
+
|(((x)>>56)&0xFF) \
|
151
|
+
|(((x)&byte_in_64bit(8))<<40) \
|
152
|
+
|(((x)&byte_in_64bit(48))>>40) \
|
153
|
+
|(((x)&byte_in_64bit(16))<<24) \
|
154
|
+
|(((x)&byte_in_64bit(40))>>24) \
|
155
|
+
|(((x)&byte_in_64bit(24))<<8) \
|
156
|
+
|(((x)&byte_in_64bit(32))>>8)))
|
157
|
+
# endif
|
158
|
+
#endif
|
159
|
+
|
160
|
+
static inline int
|
161
|
+
nlz_int(unsigned int x)
|
162
|
+
{
|
163
|
+
#if defined(HAVE_BUILTIN___BUILTIN_CLZ)
|
164
|
+
if (x == 0) return SIZEOF_INT * CHAR_BIT;
|
165
|
+
return __builtin_clz(x);
|
166
|
+
#else
|
167
|
+
unsigned int y;
|
168
|
+
# if 64 < SIZEOF_INT * CHAR_BIT
|
169
|
+
int n = 128;
|
170
|
+
# elif 32 < SIZEOF_INT * CHAR_BIT
|
171
|
+
int n = 64;
|
172
|
+
# else
|
173
|
+
int n = 32;
|
174
|
+
# endif
|
175
|
+
# if 64 < SIZEOF_INT * CHAR_BIT
|
176
|
+
y = x >> 64; if (y) {n -= 64; x = y;}
|
177
|
+
# endif
|
178
|
+
# if 32 < SIZEOF_INT * CHAR_BIT
|
179
|
+
y = x >> 32; if (y) {n -= 32; x = y;}
|
180
|
+
# endif
|
181
|
+
y = x >> 16; if (y) {n -= 16; x = y;}
|
182
|
+
y = x >> 8; if (y) {n -= 8; x = y;}
|
183
|
+
y = x >> 4; if (y) {n -= 4; x = y;}
|
184
|
+
y = x >> 2; if (y) {n -= 2; x = y;}
|
185
|
+
y = x >> 1; if (y) {return n - 2;}
|
186
|
+
return (int)(n - x);
|
187
|
+
#endif
|
188
|
+
}
|
189
|
+
|
190
|
+
static inline int
|
191
|
+
nlz_long(unsigned long x)
|
192
|
+
{
|
193
|
+
#if defined(HAVE_BUILTIN___BUILTIN_CLZL)
|
194
|
+
if (x == 0) return SIZEOF_LONG * CHAR_BIT;
|
195
|
+
return __builtin_clzl(x);
|
196
|
+
#else
|
197
|
+
unsigned long y;
|
198
|
+
# if 64 < SIZEOF_LONG * CHAR_BIT
|
199
|
+
int n = 128;
|
200
|
+
# elif 32 < SIZEOF_LONG * CHAR_BIT
|
201
|
+
int n = 64;
|
202
|
+
# else
|
203
|
+
int n = 32;
|
204
|
+
# endif
|
205
|
+
# if 64 < SIZEOF_LONG * CHAR_BIT
|
206
|
+
y = x >> 64; if (y) {n -= 64; x = y;}
|
207
|
+
# endif
|
208
|
+
# if 32 < SIZEOF_LONG * CHAR_BIT
|
209
|
+
y = x >> 32; if (y) {n -= 32; x = y;}
|
210
|
+
# endif
|
211
|
+
y = x >> 16; if (y) {n -= 16; x = y;}
|
212
|
+
y = x >> 8; if (y) {n -= 8; x = y;}
|
213
|
+
y = x >> 4; if (y) {n -= 4; x = y;}
|
214
|
+
y = x >> 2; if (y) {n -= 2; x = y;}
|
215
|
+
y = x >> 1; if (y) {return n - 2;}
|
216
|
+
return (int)(n - x);
|
217
|
+
#endif
|
218
|
+
}
|
219
|
+
|
220
|
+
#ifdef HAVE_LONG_LONG
|
221
|
+
static inline int
|
222
|
+
nlz_long_long(unsigned LONG_LONG x)
|
223
|
+
{
|
224
|
+
#if defined(HAVE_BUILTIN___BUILTIN_CLZLL)
|
225
|
+
if (x == 0) return SIZEOF_LONG_LONG * CHAR_BIT;
|
226
|
+
return __builtin_clzll(x);
|
227
|
+
#else
|
228
|
+
unsigned LONG_LONG y;
|
229
|
+
# if 64 < SIZEOF_LONG_LONG * CHAR_BIT
|
230
|
+
int n = 128;
|
231
|
+
# elif 32 < SIZEOF_LONG_LONG * CHAR_BIT
|
232
|
+
int n = 64;
|
233
|
+
# else
|
234
|
+
int n = 32;
|
235
|
+
# endif
|
236
|
+
# if 64 < SIZEOF_LONG_LONG * CHAR_BIT
|
237
|
+
y = x >> 64; if (y) {n -= 64; x = y;}
|
238
|
+
# endif
|
239
|
+
# if 32 < SIZEOF_LONG_LONG * CHAR_BIT
|
240
|
+
y = x >> 32; if (y) {n -= 32; x = y;}
|
241
|
+
# endif
|
242
|
+
y = x >> 16; if (y) {n -= 16; x = y;}
|
243
|
+
y = x >> 8; if (y) {n -= 8; x = y;}
|
244
|
+
y = x >> 4; if (y) {n -= 4; x = y;}
|
245
|
+
y = x >> 2; if (y) {n -= 2; x = y;}
|
246
|
+
y = x >> 1; if (y) {return n - 2;}
|
247
|
+
return (int)(n - x);
|
248
|
+
#endif
|
249
|
+
}
|
250
|
+
#endif
|
251
|
+
|
252
|
+
#ifdef HAVE_UINT128_T
|
253
|
+
static inline int
|
254
|
+
nlz_int128(uint128_t x)
|
255
|
+
{
|
256
|
+
uint128_t y;
|
257
|
+
int n = 128;
|
258
|
+
y = x >> 64; if (y) {n -= 64; x = y;}
|
259
|
+
y = x >> 32; if (y) {n -= 32; x = y;}
|
260
|
+
y = x >> 16; if (y) {n -= 16; x = y;}
|
261
|
+
y = x >> 8; if (y) {n -= 8; x = y;}
|
262
|
+
y = x >> 4; if (y) {n -= 4; x = y;}
|
263
|
+
y = x >> 2; if (y) {n -= 2; x = y;}
|
264
|
+
y = x >> 1; if (y) {return n - 2;}
|
265
|
+
return (int)(n - x);
|
266
|
+
}
|
267
|
+
#endif
|
268
|
+
|
269
|
+
#if defined(HAVE_UINT128_T)
|
270
|
+
# define bit_length(x) \
|
271
|
+
(sizeof(x) <= SIZEOF_INT ? SIZEOF_INT * CHAR_BIT - nlz_int((unsigned int)(x)) : \
|
272
|
+
sizeof(x) <= SIZEOF_LONG ? SIZEOF_LONG * CHAR_BIT - nlz_long((unsigned long)(x)) : \
|
273
|
+
sizeof(x) <= SIZEOF_LONG_LONG ? SIZEOF_LONG_LONG * CHAR_BIT - nlz_long_long((unsigned LONG_LONG)(x)) : \
|
274
|
+
SIZEOF_INT128_T * CHAR_BIT - nlz_int128((uint128_t)(x)))
|
275
|
+
#elif defined(HAVE_LONG_LONG)
|
276
|
+
# define bit_length(x) \
|
277
|
+
(sizeof(x) <= SIZEOF_INT ? SIZEOF_INT * CHAR_BIT - nlz_int((unsigned int)(x)) : \
|
278
|
+
sizeof(x) <= SIZEOF_LONG ? SIZEOF_LONG * CHAR_BIT - nlz_long((unsigned long)(x)) : \
|
279
|
+
SIZEOF_LONG_LONG * CHAR_BIT - nlz_long_long((unsigned LONG_LONG)(x)))
|
280
|
+
#else
|
281
|
+
# define bit_length(x) \
|
282
|
+
(sizeof(x) <= SIZEOF_INT ? SIZEOF_INT * CHAR_BIT - nlz_int((unsigned int)(x)) : \
|
283
|
+
SIZEOF_LONG * CHAR_BIT - nlz_long((unsigned long)(x)))
|
284
|
+
#endif
|
285
|
+
|
286
|
+
#ifndef BDIGIT
|
287
|
+
# if SIZEOF_INT*2 <= SIZEOF_LONG_LONG
|
288
|
+
# define BDIGIT unsigned int
|
289
|
+
# define SIZEOF_BDIGIT SIZEOF_INT
|
290
|
+
# define BDIGIT_DBL unsigned LONG_LONG
|
291
|
+
# define BDIGIT_DBL_SIGNED LONG_LONG
|
292
|
+
# define PRI_BDIGIT_PREFIX ""
|
293
|
+
# define PRI_BDIGIT_DBL_PREFIX PRI_LL_PREFIX
|
294
|
+
# elif SIZEOF_INT*2 <= SIZEOF_LONG
|
295
|
+
# define BDIGIT unsigned int
|
296
|
+
# define SIZEOF_BDIGIT SIZEOF_INT
|
297
|
+
# define BDIGIT_DBL unsigned long
|
298
|
+
# define BDIGIT_DBL_SIGNED long
|
299
|
+
# define PRI_BDIGIT_PREFIX ""
|
300
|
+
# define PRI_BDIGIT_DBL_PREFIX "l"
|
301
|
+
# elif SIZEOF_SHORT*2 <= SIZEOF_LONG
|
302
|
+
# define BDIGIT unsigned short
|
303
|
+
# define SIZEOF_BDIGIT SIZEOF_SHORT
|
304
|
+
# define BDIGIT_DBL unsigned long
|
305
|
+
# define BDIGIT_DBL_SIGNED long
|
306
|
+
# define PRI_BDIGIT_PREFIX "h"
|
307
|
+
# define PRI_BDIGIT_DBL_PREFIX "l"
|
308
|
+
# else
|
309
|
+
# define BDIGIT unsigned short
|
310
|
+
# define SIZEOF_BDIGIT (SIZEOF_LONG/2)
|
311
|
+
# define SIZEOF_ACTUAL_BDIGIT SIZEOF_LONG
|
312
|
+
# define BDIGIT_DBL unsigned long
|
313
|
+
# define BDIGIT_DBL_SIGNED long
|
314
|
+
# define PRI_BDIGIT_PREFIX "h"
|
315
|
+
# define PRI_BDIGIT_DBL_PREFIX "l"
|
316
|
+
# endif
|
317
|
+
#endif
|
318
|
+
#ifndef SIZEOF_ACTUAL_BDIGIT
|
319
|
+
# define SIZEOF_ACTUAL_BDIGIT SIZEOF_BDIGIT
|
320
|
+
#endif
|
321
|
+
|
322
|
+
#ifdef PRI_BDIGIT_PREFIX
|
323
|
+
# define PRIdBDIGIT PRI_BDIGIT_PREFIX"d"
|
324
|
+
# define PRIiBDIGIT PRI_BDIGIT_PREFIX"i"
|
325
|
+
# define PRIoBDIGIT PRI_BDIGIT_PREFIX"o"
|
326
|
+
# define PRIuBDIGIT PRI_BDIGIT_PREFIX"u"
|
327
|
+
# define PRIxBDIGIT PRI_BDIGIT_PREFIX"x"
|
328
|
+
# define PRIXBDIGIT PRI_BDIGIT_PREFIX"X"
|
329
|
+
#endif
|
330
|
+
|
331
|
+
#ifdef PRI_BDIGIT_DBL_PREFIX
|
332
|
+
# define PRIdBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"d"
|
333
|
+
# define PRIiBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"i"
|
334
|
+
# define PRIoBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"o"
|
335
|
+
# define PRIuBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"u"
|
336
|
+
# define PRIxBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"x"
|
337
|
+
# define PRIXBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"X"
|
338
|
+
#endif
|
339
|
+
|
340
|
+
#define BIGNUM_EMBED_LEN_NUMBITS 3
|
341
|
+
#ifndef BIGNUM_EMBED_LEN_MAX
|
342
|
+
# if (SIZEOF_VALUE*3/SIZEOF_ACTUAL_BDIGIT) < (1 << BIGNUM_EMBED_LEN_NUMBITS)-1
|
343
|
+
# define BIGNUM_EMBED_LEN_MAX (SIZEOF_VALUE*3/SIZEOF_ACTUAL_BDIGIT)
|
344
|
+
# else
|
345
|
+
# define BIGNUM_EMBED_LEN_MAX ((1 << BIGNUM_EMBED_LEN_NUMBITS)-1)
|
346
|
+
# endif
|
347
|
+
#endif
|
348
|
+
|
349
|
+
struct RBignum {
|
350
|
+
struct RBasic basic;
|
351
|
+
union {
|
352
|
+
struct {
|
353
|
+
size_t len;
|
354
|
+
BDIGIT *digits;
|
355
|
+
} heap;
|
356
|
+
BDIGIT ary[BIGNUM_EMBED_LEN_MAX];
|
357
|
+
} as;
|
358
|
+
};
|
359
|
+
#define BIGNUM_SIGN_BIT FL_USER1
|
360
|
+
/* sign: positive:1, negative:0 */
|
361
|
+
#define BIGNUM_SIGN(b) ((RBASIC(b)->flags & BIGNUM_SIGN_BIT) != 0)
|
362
|
+
#define BIGNUM_SET_SIGN(b,sign) \
|
363
|
+
((sign) ? (RBASIC(b)->flags |= BIGNUM_SIGN_BIT) \
|
364
|
+
: (RBASIC(b)->flags &= ~BIGNUM_SIGN_BIT))
|
365
|
+
#define BIGNUM_POSITIVE_P(b) BIGNUM_SIGN(b)
|
366
|
+
#define BIGNUM_NEGATIVE_P(b) (!BIGNUM_SIGN(b))
|
367
|
+
|
368
|
+
#define BIGNUM_EMBED_FLAG FL_USER2
|
369
|
+
#define BIGNUM_EMBED_LEN_MASK (FL_USER5|FL_USER4|FL_USER3)
|
370
|
+
#define BIGNUM_EMBED_LEN_SHIFT (FL_USHIFT+BIGNUM_EMBED_LEN_NUMBITS)
|
371
|
+
#define BIGNUM_LEN(b) \
|
372
|
+
((RBASIC(b)->flags & BIGNUM_EMBED_FLAG) ? \
|
373
|
+
(long)((RBASIC(b)->flags >> BIGNUM_EMBED_LEN_SHIFT) & \
|
374
|
+
(BIGNUM_EMBED_LEN_MASK >> BIGNUM_EMBED_LEN_SHIFT)) : \
|
375
|
+
RBIGNUM(b)->as.heap.len)
|
376
|
+
/* LSB:BIGNUM_DIGITS(b)[0], MSB:BIGNUM_DIGITS(b)[BIGNUM_LEN(b)-1] */
|
377
|
+
#define BIGNUM_DIGITS(b) \
|
378
|
+
((RBASIC(b)->flags & BIGNUM_EMBED_FLAG) ? \
|
379
|
+
RBIGNUM(b)->as.ary : \
|
380
|
+
RBIGNUM(b)->as.heap.digits)
|
381
|
+
#define BIGNUM_LENINT(b) rb_long2int(BIGNUM_LEN(b))
|
382
|
+
|
383
|
+
#define RBIGNUM(obj) (R_CAST(RBignum)(obj))
|
384
|
+
|
385
|
+
struct RRational {
|
386
|
+
struct RBasic basic;
|
387
|
+
const VALUE num;
|
388
|
+
const VALUE den;
|
389
|
+
};
|
390
|
+
|
391
|
+
#define RRATIONAL(obj) (R_CAST(RRational)(obj))
|
392
|
+
|
393
|
+
struct RFloat {
|
394
|
+
struct RBasic basic;
|
395
|
+
double float_value;
|
396
|
+
};
|
397
|
+
|
398
|
+
#define RFLOAT(obj) (R_CAST(RFloat)(obj))
|
399
|
+
|
400
|
+
struct RComplex {
|
401
|
+
struct RBasic basic;
|
402
|
+
const VALUE real;
|
403
|
+
const VALUE imag;
|
404
|
+
};
|
405
|
+
|
406
|
+
#define RCOMPLEX(obj) (R_CAST(RComplex)(obj))
|
407
|
+
|
408
|
+
#ifdef RCOMPLEX_SET_REAL /* shortcut macro for internal only */
|
409
|
+
#undef RCOMPLEX_SET_REAL
|
410
|
+
#undef RCOMPLEX_SET_REAL
|
411
|
+
#define RCOMPLEX_SET_REAL(cmp, r) RB_OBJ_WRITE((cmp), &((struct RComplex *)(cmp))->real,(r))
|
412
|
+
#define RCOMPLEX_SET_IMAG(cmp, i) RB_OBJ_WRITE((cmp), &((struct RComplex *)(cmp))->imag,(i))
|
413
|
+
#endif
|
414
|
+
|
415
|
+
struct RHash {
|
416
|
+
struct RBasic basic;
|
417
|
+
struct st_table *ntbl; /* possibly 0 */
|
418
|
+
int iter_lev;
|
419
|
+
const VALUE ifnone;
|
420
|
+
};
|
421
|
+
|
422
|
+
#define RHASH(obj) (R_CAST(RHash)(obj))
|
423
|
+
|
424
|
+
#ifdef RHASH_ITER_LEV
|
425
|
+
#undef RHASH_ITER_LEV
|
426
|
+
#undef RHASH_IFNONE
|
427
|
+
#undef RHASH_SIZE
|
428
|
+
#define RHASH_ITER_LEV(h) (RHASH(h)->iter_lev)
|
429
|
+
#define RHASH_IFNONE(h) (RHASH(h)->ifnone)
|
430
|
+
#define RHASH_SIZE(h) (RHASH(h)->ntbl ? (st_index_t)RHASH(h)->ntbl->num_entries : 0)
|
431
|
+
#endif
|
432
|
+
|
433
|
+
/* missing/setproctitle.c */
|
434
|
+
#ifndef HAVE_SETPROCTITLE
|
435
|
+
extern void ruby_init_setproctitle(int argc, char *argv[]);
|
436
|
+
#endif
|
437
|
+
|
438
|
+
/* class.c */
|
439
|
+
|
440
|
+
struct rb_deprecated_classext_struct {
|
441
|
+
char conflict[sizeof(VALUE) * 3];
|
442
|
+
};
|
443
|
+
|
444
|
+
struct rb_subclass_entry;
|
445
|
+
typedef struct rb_subclass_entry rb_subclass_entry_t;
|
446
|
+
|
447
|
+
struct rb_subclass_entry {
|
448
|
+
VALUE klass;
|
449
|
+
rb_subclass_entry_t *next;
|
450
|
+
};
|
451
|
+
|
452
|
+
#if defined(HAVE_LONG_LONG)
|
453
|
+
typedef unsigned LONG_LONG rb_serial_t;
|
454
|
+
#define SERIALT2NUM ULL2NUM
|
455
|
+
#elif defined(HAVE_UINT64_T)
|
456
|
+
typedef uint64_t rb_serial_t;
|
457
|
+
#define SERIALT2NUM SIZET2NUM
|
458
|
+
#else
|
459
|
+
typedef unsigned long rb_serial_t;
|
460
|
+
#define SERIALT2NUM ULONG2NUM
|
461
|
+
#endif
|
462
|
+
|
463
|
+
struct rb_classext_struct {
|
464
|
+
struct st_table *iv_index_tbl;
|
465
|
+
struct st_table *iv_tbl;
|
466
|
+
struct st_table *const_tbl;
|
467
|
+
struct rb_id_table *callable_m_tbl;
|
468
|
+
rb_subclass_entry_t *subclasses;
|
469
|
+
rb_subclass_entry_t **parent_subclasses;
|
470
|
+
/**
|
471
|
+
* In the case that this is an `ICLASS`, `module_subclasses` points to the link
|
472
|
+
* in the module's `subclasses` list that indicates that the klass has been
|
473
|
+
* included. Hopefully that makes sense.
|
474
|
+
*/
|
475
|
+
rb_subclass_entry_t **module_subclasses;
|
476
|
+
rb_serial_t class_serial;
|
477
|
+
const VALUE origin_;
|
478
|
+
VALUE refined_class;
|
479
|
+
rb_alloc_func_t allocator;
|
480
|
+
};
|
481
|
+
|
482
|
+
typedef struct rb_classext_struct rb_classext_t;
|
483
|
+
|
484
|
+
#undef RClass
|
485
|
+
struct RClass {
|
486
|
+
struct RBasic basic;
|
487
|
+
VALUE super;
|
488
|
+
rb_classext_t *ptr;
|
489
|
+
struct rb_id_table *m_tbl;
|
490
|
+
};
|
491
|
+
|
492
|
+
void rb_class_subclass_add(VALUE super, VALUE klass);
|
493
|
+
void rb_class_remove_from_super_subclasses(VALUE);
|
494
|
+
|
495
|
+
#define RCLASS_EXT(c) (RCLASS(c)->ptr)
|
496
|
+
#define RCLASS_IV_TBL(c) (RCLASS_EXT(c)->iv_tbl)
|
497
|
+
#define RCLASS_CONST_TBL(c) (RCLASS_EXT(c)->const_tbl)
|
498
|
+
#define RCLASS_M_TBL(c) (RCLASS(c)->m_tbl)
|
499
|
+
#define RCLASS_CALLABLE_M_TBL(c) (RCLASS_EXT(c)->callable_m_tbl)
|
500
|
+
#define RCLASS_IV_INDEX_TBL(c) (RCLASS_EXT(c)->iv_index_tbl)
|
501
|
+
#define RCLASS_ORIGIN(c) (RCLASS_EXT(c)->origin_)
|
502
|
+
#define RCLASS_REFINED_CLASS(c) (RCLASS_EXT(c)->refined_class)
|
503
|
+
#define RCLASS_SERIAL(c) (RCLASS_EXT(c)->class_serial)
|
504
|
+
|
505
|
+
#define RICLASS_IS_ORIGIN FL_USER5
|
506
|
+
|
507
|
+
static inline void
|
508
|
+
RCLASS_SET_ORIGIN(VALUE klass, VALUE origin)
|
509
|
+
{
|
510
|
+
RB_OBJ_WRITE(klass, &RCLASS_ORIGIN(klass), origin);
|
511
|
+
if (klass != origin) FL_SET(origin, RICLASS_IS_ORIGIN);
|
512
|
+
}
|
513
|
+
|
514
|
+
#undef RCLASS_SUPER
|
515
|
+
static inline VALUE
|
516
|
+
RCLASS_SUPER(VALUE klass)
|
517
|
+
{
|
518
|
+
return RCLASS(klass)->super;
|
519
|
+
}
|
520
|
+
|
521
|
+
static inline VALUE
|
522
|
+
RCLASS_SET_SUPER(VALUE klass, VALUE super)
|
523
|
+
{
|
524
|
+
if (super) {
|
525
|
+
rb_class_remove_from_super_subclasses(klass);
|
526
|
+
rb_class_subclass_add(super, klass);
|
527
|
+
}
|
528
|
+
RB_OBJ_WRITE(klass, &RCLASS(klass)->super, super);
|
529
|
+
return super;
|
530
|
+
}
|
531
|
+
/* IMEMO: Internal memo object */
|
532
|
+
|
533
|
+
#ifndef IMEMO_DEBUG
|
534
|
+
#define IMEMO_DEBUG 0
|
535
|
+
#endif
|
536
|
+
|
537
|
+
struct RIMemo {
|
538
|
+
VALUE flags;
|
539
|
+
VALUE v0;
|
540
|
+
VALUE v1;
|
541
|
+
VALUE v2;
|
542
|
+
VALUE v3;
|
543
|
+
};
|
544
|
+
|
545
|
+
enum imemo_type {
|
546
|
+
imemo_none = 0,
|
547
|
+
imemo_cref = 1,
|
548
|
+
imemo_svar = 2,
|
549
|
+
imemo_throw_data = 3,
|
550
|
+
imemo_ifunc = 4,
|
551
|
+
imemo_memo = 5,
|
552
|
+
imemo_ment = 6,
|
553
|
+
imemo_iseq = 7,
|
554
|
+
imemo_mask = 0x07
|
555
|
+
};
|
556
|
+
|
557
|
+
static inline enum imemo_type
|
558
|
+
imemo_type(VALUE imemo)
|
559
|
+
{
|
560
|
+
return (RBASIC(imemo)->flags >> FL_USHIFT) & imemo_mask;
|
561
|
+
}
|
562
|
+
|
563
|
+
/* FL_USER0 to FL_USER2 is for type */
|
564
|
+
#define IMEMO_FL_USHIFT (FL_USHIFT + 3)
|
565
|
+
#define IMEMO_FL_USER0 FL_USER3
|
566
|
+
#define IMEMO_FL_USER1 FL_USER4
|
567
|
+
#define IMEMO_FL_USER2 FL_USER5
|
568
|
+
#define IMEMO_FL_USER3 FL_USER6
|
569
|
+
#define IMEMO_FL_USER4 FL_USER7
|
570
|
+
|
571
|
+
/* CREF in method.h */
|
572
|
+
|
573
|
+
/* SVAR */
|
574
|
+
|
575
|
+
struct vm_svar {
|
576
|
+
VALUE flags;
|
577
|
+
const VALUE cref_or_me;
|
578
|
+
const VALUE lastline;
|
579
|
+
const VALUE backref;
|
580
|
+
const VALUE others;
|
581
|
+
};
|
582
|
+
|
583
|
+
/* THROW_DATA */
|
584
|
+
|
585
|
+
struct vm_throw_data {
|
586
|
+
VALUE flags;
|
587
|
+
VALUE reserved;
|
588
|
+
const VALUE throw_obj;
|
589
|
+
const struct rb_control_frame_struct *catch_frame;
|
590
|
+
VALUE throw_state;
|
591
|
+
};
|
592
|
+
|
593
|
+
#define THROW_DATA_P(err) RB_TYPE_P((err), T_IMEMO)
|
594
|
+
|
595
|
+
/* IFUNC */
|
596
|
+
|
597
|
+
struct vm_ifunc {
|
598
|
+
VALUE flags;
|
599
|
+
VALUE reserved;
|
600
|
+
VALUE (*func)(ANYARGS);
|
601
|
+
const void *data;
|
602
|
+
ID id;
|
603
|
+
};
|
604
|
+
|
605
|
+
#define IFUNC_NEW(a, b, c) ((struct vm_ifunc *)rb_imemo_new(imemo_ifunc, (VALUE)(a), (VALUE)(b), (VALUE)(c), 0))
|
606
|
+
|
607
|
+
/* MEMO */
|
608
|
+
|
609
|
+
struct MEMO {
|
610
|
+
VALUE flags;
|
611
|
+
VALUE reserved;
|
612
|
+
const VALUE v1;
|
613
|
+
const VALUE v2;
|
614
|
+
union {
|
615
|
+
long cnt;
|
616
|
+
long state;
|
617
|
+
const VALUE value;
|
618
|
+
VALUE (*func)(ANYARGS);
|
619
|
+
} u3;
|
620
|
+
};
|
621
|
+
|
622
|
+
#define MEMO_V1_SET(m, v) RB_OBJ_WRITE((memo), &(memo)->v1, (v))
|
623
|
+
#define MEMO_V2_SET(m, v) RB_OBJ_WRITE((memo), &(memo)->v2, (v))
|
624
|
+
|
625
|
+
#define MEMO_CAST(m) ((struct MEMO *)m)
|
626
|
+
|
627
|
+
#define MEMO_NEW(a, b, c) ((struct MEMO *)rb_imemo_new(imemo_memo, (VALUE)(a), (VALUE)(b), (VALUE)(c), 0))
|
628
|
+
|
629
|
+
#define roomof(x, y) (((x) + (y) - 1) / (y))
|
630
|
+
#define type_roomof(x, y) roomof(sizeof(x), sizeof(y))
|
631
|
+
#define MEMO_FOR(type, value) ((type *)RARRAY_PTR(value))
|
632
|
+
#define NEW_MEMO_FOR(type, value) \
|
633
|
+
((value) = rb_ary_tmp_new_fill(type_roomof(type, VALUE)), MEMO_FOR(type, value))
|
634
|
+
|
635
|
+
/* ment is in method.h */
|
636
|
+
|
637
|
+
/* global variable */
|
638
|
+
|
639
|
+
struct rb_global_entry {
|
640
|
+
struct rb_global_variable *var;
|
641
|
+
ID id;
|
642
|
+
};
|
643
|
+
|
644
|
+
struct rb_global_entry *rb_global_entry(ID);
|
645
|
+
VALUE rb_gvar_get(struct rb_global_entry *);
|
646
|
+
VALUE rb_gvar_set(struct rb_global_entry *, VALUE);
|
647
|
+
VALUE rb_gvar_defined(struct rb_global_entry *);
|
648
|
+
|
649
|
+
struct vtm; /* defined by timev.h */
|
650
|
+
|
651
|
+
/* array.c */
|
652
|
+
VALUE rb_ary_last(int, const VALUE *, VALUE);
|
653
|
+
void rb_ary_set_len(VALUE, long);
|
654
|
+
void rb_ary_delete_same(VALUE, VALUE);
|
655
|
+
VALUE rb_ary_tmp_new_fill(long capa);
|
656
|
+
VALUE rb_ary_at(VALUE, VALUE);
|
657
|
+
size_t rb_ary_memsize(VALUE);
|
658
|
+
#ifdef __GNUC__
|
659
|
+
#define rb_ary_new_from_args(n, ...) \
|
660
|
+
__extension__ ({ \
|
661
|
+
const VALUE args_to_new_ary[] = {__VA_ARGS__}; \
|
662
|
+
if (__builtin_constant_p(n)) { \
|
663
|
+
STATIC_ASSERT(rb_ary_new_from_args, numberof(args_to_new_ary) == (n)); \
|
664
|
+
} \
|
665
|
+
rb_ary_new_from_values(numberof(args_to_new_ary), args_to_new_ary); \
|
666
|
+
})
|
667
|
+
#endif
|
668
|
+
|
669
|
+
/* bignum.c */
|
670
|
+
extern const char ruby_digitmap[];
|
671
|
+
VALUE rb_big_fdiv(VALUE x, VALUE y);
|
672
|
+
VALUE rb_big_uminus(VALUE x);
|
673
|
+
VALUE rb_integer_float_cmp(VALUE x, VALUE y);
|
674
|
+
VALUE rb_integer_float_eq(VALUE x, VALUE y);
|
675
|
+
|
676
|
+
/* class.c */
|
677
|
+
void rb_class_foreach_subclass(VALUE klass, void (*f)(VALUE, VALUE), VALUE);
|
678
|
+
void rb_class_detach_subclasses(VALUE);
|
679
|
+
void rb_class_detach_module_subclasses(VALUE);
|
680
|
+
void rb_class_remove_from_module_subclasses(VALUE);
|
681
|
+
VALUE rb_obj_methods(int argc, const VALUE *argv, VALUE obj);
|
682
|
+
VALUE rb_obj_protected_methods(int argc, const VALUE *argv, VALUE obj);
|
683
|
+
VALUE rb_obj_private_methods(int argc, const VALUE *argv, VALUE obj);
|
684
|
+
VALUE rb_obj_public_methods(int argc, const VALUE *argv, VALUE obj);
|
685
|
+
int rb_obj_basic_to_s_p(VALUE);
|
686
|
+
VALUE rb_special_singleton_class(VALUE);
|
687
|
+
VALUE rb_singleton_class_clone_and_attach(VALUE obj, VALUE attach);
|
688
|
+
VALUE rb_singleton_class_get(VALUE obj);
|
689
|
+
void Init_class_hierarchy(void);
|
690
|
+
|
691
|
+
int rb_class_has_methods(VALUE c);
|
692
|
+
|
693
|
+
/* compar.c */
|
694
|
+
VALUE rb_invcmp(VALUE, VALUE);
|
695
|
+
|
696
|
+
/* compile.c */
|
697
|
+
int rb_dvar_defined(ID);
|
698
|
+
int rb_local_defined(ID);
|
699
|
+
int rb_parse_in_eval(void);
|
700
|
+
int rb_parse_in_main(void);
|
701
|
+
const char * rb_insns_name(int i);
|
702
|
+
VALUE rb_insns_name_array(void);
|
703
|
+
|
704
|
+
/* cont.c */
|
705
|
+
VALUE rb_obj_is_fiber(VALUE);
|
706
|
+
void rb_fiber_reset_root_local_storage(VALUE);
|
707
|
+
void ruby_register_rollback_func_for_ensure(VALUE (*ensure_func)(ANYARGS), VALUE (*rollback_func)(ANYARGS));
|
708
|
+
|
709
|
+
/* debug.c */
|
710
|
+
PRINTF_ARGS(void ruby_debug_printf(const char*, ...), 1, 2);
|
711
|
+
|
712
|
+
/* dmyext.c */
|
713
|
+
void Init_enc(void);
|
714
|
+
void Init_ext(void);
|
715
|
+
|
716
|
+
/* encoding.c */
|
717
|
+
ID rb_id_encoding(void);
|
718
|
+
void rb_gc_mark_encodings(void);
|
719
|
+
rb_encoding *rb_enc_get_from_index(int index);
|
720
|
+
rb_encoding *rb_enc_check_str(VALUE str1, VALUE str2);
|
721
|
+
int rb_encdb_replicate(const char *alias, const char *orig);
|
722
|
+
int rb_encdb_alias(const char *alias, const char *orig);
|
723
|
+
int rb_encdb_dummy(const char *name);
|
724
|
+
void rb_encdb_declare(const char *name);
|
725
|
+
void rb_enc_set_base(const char *name, const char *orig);
|
726
|
+
int rb_enc_set_dummy(int index);
|
727
|
+
void rb_encdb_set_unicode(int index);
|
728
|
+
|
729
|
+
/* enum.c */
|
730
|
+
VALUE rb_f_send(int argc, VALUE *argv, VALUE recv);
|
731
|
+
|
732
|
+
/* error.c */
|
733
|
+
extern VALUE rb_eEAGAIN;
|
734
|
+
extern VALUE rb_eEWOULDBLOCK;
|
735
|
+
extern VALUE rb_eEINPROGRESS;
|
736
|
+
NORETURN(PRINTF_ARGS(void rb_compile_bug(const char*, int, const char*, ...), 3, 4));
|
737
|
+
VALUE rb_check_backtrace(VALUE);
|
738
|
+
NORETURN(void rb_async_bug_errno(const char *,int));
|
739
|
+
const char *rb_builtin_type_name(int t);
|
740
|
+
const char *rb_builtin_class_name(VALUE x);
|
741
|
+
PRINTF_ARGS(void rb_enc_warn(rb_encoding *enc, const char *fmt, ...), 2, 3);
|
742
|
+
PRINTF_ARGS(void rb_enc_warning(rb_encoding *enc, const char *fmt, ...), 2, 3);
|
743
|
+
PRINTF_ARGS(void rb_sys_enc_warning(rb_encoding *enc, const char *fmt, ...), 2, 3);
|
744
|
+
VALUE rb_name_err_new(VALUE mesg, VALUE recv, VALUE method);
|
745
|
+
#define rb_name_err_raise_str(mesg, recv, name) \
|
746
|
+
rb_exc_raise(rb_name_err_new(mesg, recv, name))
|
747
|
+
#define rb_name_err_raise(mesg, recv, name) \
|
748
|
+
rb_name_err_raise_str(rb_fstring_cstr(mesg), (recv), (name))
|
749
|
+
|
750
|
+
/* eval.c */
|
751
|
+
VALUE rb_refinement_module_get_refined_class(VALUE module);
|
752
|
+
|
753
|
+
/* eval_error.c */
|
754
|
+
void ruby_error_print(void);
|
755
|
+
VALUE rb_get_backtrace(VALUE info);
|
756
|
+
|
757
|
+
/* eval_jump.c */
|
758
|
+
void rb_call_end_proc(VALUE data);
|
759
|
+
void rb_mark_end_proc(void);
|
760
|
+
|
761
|
+
/* file.c */
|
762
|
+
VALUE rb_home_dir_of(VALUE user, VALUE result);
|
763
|
+
VALUE rb_default_home_dir(VALUE result);
|
764
|
+
VALUE rb_realpath_internal(VALUE basedir, VALUE path, int strict);
|
765
|
+
void rb_file_const(const char*, VALUE);
|
766
|
+
int rb_file_load_ok(const char *);
|
767
|
+
VALUE rb_file_expand_path_fast(VALUE, VALUE);
|
768
|
+
VALUE rb_file_expand_path_internal(VALUE, VALUE, int, int, VALUE);
|
769
|
+
VALUE rb_get_path_check_to_string(VALUE, int);
|
770
|
+
VALUE rb_get_path_check_convert(VALUE, VALUE, int);
|
771
|
+
void Init_File(void);
|
772
|
+
int ruby_is_fd_loadable(int fd);
|
773
|
+
|
774
|
+
#ifdef RUBY_FUNCTION_NAME_STRING
|
775
|
+
# if defined __GNUC__ && __GNUC__ >= 4
|
776
|
+
# pragma GCC visibility push(default)
|
777
|
+
# endif
|
778
|
+
NORETURN(void rb_sys_fail_path_in(const char *func_name, VALUE path));
|
779
|
+
NORETURN(void rb_syserr_fail_path_in(const char *func_name, int err, VALUE path));
|
780
|
+
# if defined __GNUC__ && __GNUC__ >= 4
|
781
|
+
# pragma GCC visibility pop
|
782
|
+
# endif
|
783
|
+
# define rb_sys_fail_path(path) rb_sys_fail_path_in(RUBY_FUNCTION_NAME_STRING, path)
|
784
|
+
# define rb_syserr_fail_path(err, path) rb_syserr_fail_path_in(RUBY_FUNCTION_NAME_STRING, (err), (path))
|
785
|
+
#else
|
786
|
+
# define rb_sys_fail_path(path) rb_sys_fail_str(path)
|
787
|
+
# define rb_syserr_fail_path(err, path) rb_syserr_fail_str((err), (path))
|
788
|
+
#endif
|
789
|
+
|
790
|
+
/* gc.c */
|
791
|
+
extern VALUE *ruby_initial_gc_stress_ptr;
|
792
|
+
extern int ruby_disable_gc;
|
793
|
+
void Init_heap(void);
|
794
|
+
void *ruby_mimmalloc(size_t size);
|
795
|
+
void ruby_mimfree(void *ptr);
|
796
|
+
void rb_objspace_set_event_hook(const rb_event_flag_t event);
|
797
|
+
#if USE_RGENGC
|
798
|
+
void rb_gc_writebarrier_remember(VALUE obj);
|
799
|
+
#else
|
800
|
+
#define rb_gc_writebarrier_remember(obj) 0
|
801
|
+
#endif
|
802
|
+
void ruby_gc_set_params(int safe_level);
|
803
|
+
void rb_copy_wb_protected_attribute(VALUE dest, VALUE obj);
|
804
|
+
|
805
|
+
#if defined(HAVE_MALLOC_USABLE_SIZE) || defined(HAVE_MALLOC_SIZE) || defined(_WIN32)
|
806
|
+
#define ruby_sized_xrealloc(ptr, new_size, old_size) ruby_xrealloc(ptr, new_size)
|
807
|
+
#define ruby_sized_xrealloc2(ptr, new_count, element_size, old_count) ruby_xrealloc(ptr, new_count, element_size)
|
808
|
+
#define ruby_sized_xfree(ptr, size) ruby_xfree(ptr)
|
809
|
+
#define SIZED_REALLOC_N(var,type,n,old_n) REALLOC_N(var, type, n)
|
810
|
+
#else
|
811
|
+
void *ruby_sized_xrealloc(void *ptr, size_t new_size, size_t old_size) RUBY_ATTR_ALLOC_SIZE((2));
|
812
|
+
void *ruby_sized_xrealloc2(void *ptr, size_t new_count, size_t element_size, size_t old_count) RUBY_ATTR_ALLOC_SIZE((2, 3));
|
813
|
+
void ruby_sized_xfree(void *x, size_t size);
|
814
|
+
#define SIZED_REALLOC_N(var,type,n,old_n) ((var)=(type*)ruby_sized_xrealloc((char*)(var), (n) * sizeof(type), (old_n) * sizeof(type)))
|
815
|
+
#endif
|
816
|
+
|
817
|
+
void rb_gc_resurrect(VALUE ptr);
|
818
|
+
|
819
|
+
/* optimized version of NEWOBJ() */
|
820
|
+
#undef NEWOBJF_OF
|
821
|
+
#undef RB_NEWOBJ_OF
|
822
|
+
#define RB_NEWOBJ_OF(obj,type,klass,flags) \
|
823
|
+
type *(obj) = (type*)(((flags) & FL_WB_PROTECTED) ? \
|
824
|
+
rb_wb_protected_newobj_of(klass, (flags) & ~FL_WB_PROTECTED) : \
|
825
|
+
rb_wb_unprotected_newobj_of(klass, flags))
|
826
|
+
#define NEWOBJ_OF(obj,type,klass,flags) RB_NEWOBJ_OF(obj,type,klass,flags)
|
827
|
+
|
828
|
+
/* hash.c */
|
829
|
+
struct st_table *rb_hash_tbl_raw(VALUE hash);
|
830
|
+
VALUE rb_hash_has_key(VALUE hash, VALUE key);
|
831
|
+
VALUE rb_hash_default_value(VALUE hash, VALUE key);
|
832
|
+
VALUE rb_hash_set_default_proc(VALUE hash, VALUE proc);
|
833
|
+
long rb_objid_hash(st_index_t index);
|
834
|
+
st_table *rb_init_identtable(void);
|
835
|
+
st_table *rb_init_identtable_with_size(st_index_t size);
|
836
|
+
|
837
|
+
#define RHASH_TBL_RAW(h) rb_hash_tbl_raw(h)
|
838
|
+
VALUE rb_hash_keys(VALUE hash);
|
839
|
+
VALUE rb_hash_values(VALUE hash);
|
840
|
+
#define HASH_DELETED FL_USER1
|
841
|
+
#define HASH_PROC_DEFAULT FL_USER2
|
842
|
+
|
843
|
+
/* inits.c */
|
844
|
+
void rb_call_inits(void);
|
845
|
+
|
846
|
+
/* io.c */
|
847
|
+
const char *ruby_get_inplace_mode(void);
|
848
|
+
void ruby_set_inplace_mode(const char *);
|
849
|
+
ssize_t rb_io_bufread(VALUE io, void *buf, size_t size);
|
850
|
+
void rb_stdio_set_default_encoding(void);
|
851
|
+
void rb_write_error_str(VALUE mesg);
|
852
|
+
VALUE rb_io_flush_raw(VALUE, int);
|
853
|
+
size_t rb_io_memsize(const rb_io_t *);
|
854
|
+
|
855
|
+
/* load.c */
|
856
|
+
VALUE rb_get_load_path(void);
|
857
|
+
VALUE rb_get_expanded_load_path(void);
|
858
|
+
int rb_require_internal(VALUE fname, int safe);
|
859
|
+
NORETURN(void rb_load_fail(VALUE, const char*));
|
860
|
+
|
861
|
+
/* loadpath.c */
|
862
|
+
extern const char ruby_exec_prefix[];
|
863
|
+
extern const char ruby_initial_load_paths[];
|
864
|
+
|
865
|
+
/* localeinit.c */
|
866
|
+
int Init_enc_set_filesystem_encoding(void);
|
867
|
+
|
868
|
+
/* math.c */
|
869
|
+
VALUE rb_math_atan2(VALUE, VALUE);
|
870
|
+
VALUE rb_math_cos(VALUE);
|
871
|
+
VALUE rb_math_cosh(VALUE);
|
872
|
+
VALUE rb_math_exp(VALUE);
|
873
|
+
VALUE rb_math_hypot(VALUE, VALUE);
|
874
|
+
VALUE rb_math_log(int argc, const VALUE *argv);
|
875
|
+
VALUE rb_math_sin(VALUE);
|
876
|
+
VALUE rb_math_sinh(VALUE);
|
877
|
+
#if 0
|
878
|
+
VALUE rb_math_sqrt(VALUE);
|
879
|
+
#endif
|
880
|
+
|
881
|
+
/* newline.c */
|
882
|
+
void Init_newline(void);
|
883
|
+
|
884
|
+
/* numeric.c */
|
885
|
+
int rb_num_to_uint(VALUE val, unsigned int *ret);
|
886
|
+
VALUE ruby_num_interval_step_size(VALUE from, VALUE to, VALUE step, int excl);
|
887
|
+
int ruby_float_step(VALUE from, VALUE to, VALUE step, int excl);
|
888
|
+
double ruby_float_mod(double x, double y);
|
889
|
+
int rb_num_negative_p(VALUE);
|
890
|
+
VALUE rb_int_succ(VALUE num);
|
891
|
+
VALUE rb_int_pred(VALUE num);
|
892
|
+
VALUE rb_dbl_hash(double d);
|
893
|
+
|
894
|
+
#if USE_FLONUM
|
895
|
+
#define RUBY_BIT_ROTL(v, n) (((v) << (n)) | ((v) >> ((sizeof(v) * 8) - n)))
|
896
|
+
#define RUBY_BIT_ROTR(v, n) (((v) >> (n)) | ((v) << ((sizeof(v) * 8) - n)))
|
897
|
+
#endif
|
898
|
+
|
899
|
+
static inline double
|
900
|
+
rb_float_flonum_value(VALUE v)
|
901
|
+
{
|
902
|
+
#if USE_FLONUM
|
903
|
+
if (v != (VALUE)0x8000000000000002) { /* LIKELY */
|
904
|
+
union {
|
905
|
+
double d;
|
906
|
+
VALUE v;
|
907
|
+
} t;
|
908
|
+
|
909
|
+
VALUE b63 = (v >> 63);
|
910
|
+
/* e: xx1... -> 011... */
|
911
|
+
/* xx0... -> 100... */
|
912
|
+
/* ^b63 */
|
913
|
+
t.v = RUBY_BIT_ROTR((2 - b63) | (v & ~0x03), 3);
|
914
|
+
return t.d;
|
915
|
+
}
|
916
|
+
#endif
|
917
|
+
return 0.0;
|
918
|
+
}
|
919
|
+
|
920
|
+
static inline double
|
921
|
+
rb_float_noflonum_value(VALUE v)
|
922
|
+
{
|
923
|
+
return ((struct RFloat *)v)->float_value;
|
924
|
+
}
|
925
|
+
|
926
|
+
static inline double
|
927
|
+
rb_float_value_inline(VALUE v)
|
928
|
+
{
|
929
|
+
if (FLONUM_P(v)) {
|
930
|
+
return rb_float_flonum_value(v);
|
931
|
+
}
|
932
|
+
return rb_float_noflonum_value(v);
|
933
|
+
}
|
934
|
+
|
935
|
+
static inline VALUE
|
936
|
+
rb_float_new_inline(double d)
|
937
|
+
{
|
938
|
+
#if USE_FLONUM
|
939
|
+
union {
|
940
|
+
double d;
|
941
|
+
VALUE v;
|
942
|
+
} t;
|
943
|
+
int bits;
|
944
|
+
|
945
|
+
t.d = d;
|
946
|
+
bits = (int)((VALUE)(t.v >> 60) & 0x7);
|
947
|
+
/* bits contains 3 bits of b62..b60. */
|
948
|
+
/* bits - 3 = */
|
949
|
+
/* b011 -> b000 */
|
950
|
+
/* b100 -> b001 */
|
951
|
+
|
952
|
+
if (t.v != 0x3000000000000000 /* 1.72723e-77 */ &&
|
953
|
+
!((bits-3) & ~0x01)) {
|
954
|
+
return (RUBY_BIT_ROTL(t.v, 3) & ~(VALUE)0x01) | 0x02;
|
955
|
+
}
|
956
|
+
else if (t.v == (VALUE)0) {
|
957
|
+
/* +0.0 */
|
958
|
+
return 0x8000000000000002;
|
959
|
+
}
|
960
|
+
/* out of range */
|
961
|
+
#endif
|
962
|
+
return rb_float_new_in_heap(d);
|
963
|
+
}
|
964
|
+
|
965
|
+
#define rb_float_value(v) rb_float_value_inline(v)
|
966
|
+
#define rb_float_new(d) rb_float_new_inline(d)
|
967
|
+
|
968
|
+
/* object.c */
|
969
|
+
void rb_obj_copy_ivar(VALUE dest, VALUE obj);
|
970
|
+
VALUE rb_obj_equal(VALUE obj1, VALUE obj2);
|
971
|
+
VALUE rb_class_search_ancestor(VALUE klass, VALUE super);
|
972
|
+
double rb_num_to_dbl(VALUE val);
|
973
|
+
VALUE rb_obj_dig(int argc, VALUE *argv, VALUE self, VALUE notfound);
|
974
|
+
|
975
|
+
struct RBasicRaw {
|
976
|
+
VALUE flags;
|
977
|
+
VALUE klass;
|
978
|
+
};
|
979
|
+
|
980
|
+
#define RBASIC_CLEAR_CLASS(obj) (((struct RBasicRaw *)((VALUE)(obj)))->klass = 0)
|
981
|
+
#define RBASIC_SET_CLASS_RAW(obj, cls) (((struct RBasicRaw *)((VALUE)(obj)))->klass = (cls))
|
982
|
+
#define RBASIC_SET_CLASS(obj, cls) do { \
|
983
|
+
VALUE _obj_ = (obj); \
|
984
|
+
RB_OBJ_WRITE(_obj_, &((struct RBasicRaw *)(_obj_))->klass, cls); \
|
985
|
+
} while (0)
|
986
|
+
|
987
|
+
/* parse.y */
|
988
|
+
#ifndef USE_SYMBOL_GC
|
989
|
+
#define USE_SYMBOL_GC 1
|
990
|
+
#endif
|
991
|
+
VALUE rb_parser_get_yydebug(VALUE);
|
992
|
+
VALUE rb_parser_set_yydebug(VALUE, VALUE);
|
993
|
+
int rb_is_const_name(VALUE name);
|
994
|
+
int rb_is_class_name(VALUE name);
|
995
|
+
int rb_is_global_name(VALUE name);
|
996
|
+
int rb_is_instance_name(VALUE name);
|
997
|
+
int rb_is_attrset_name(VALUE name);
|
998
|
+
int rb_is_local_name(VALUE name);
|
999
|
+
int rb_is_method_name(VALUE name);
|
1000
|
+
int rb_is_junk_name(VALUE name);
|
1001
|
+
int rb_is_const_sym(VALUE sym);
|
1002
|
+
int rb_is_class_sym(VALUE sym);
|
1003
|
+
int rb_is_global_sym(VALUE sym);
|
1004
|
+
int rb_is_instance_sym(VALUE sym);
|
1005
|
+
int rb_is_attrset_sym(VALUE sym);
|
1006
|
+
int rb_is_local_sym(VALUE sym);
|
1007
|
+
int rb_is_method_sym(VALUE sym);
|
1008
|
+
int rb_is_junk_sym(VALUE sym);
|
1009
|
+
ID rb_make_internal_id(void);
|
1010
|
+
void rb_gc_free_dsymbol(VALUE);
|
1011
|
+
ID rb_id_attrget(ID id);
|
1012
|
+
|
1013
|
+
/* proc.c */
|
1014
|
+
VALUE rb_proc_location(VALUE self);
|
1015
|
+
st_index_t rb_hash_proc(st_index_t hash, VALUE proc);
|
1016
|
+
int rb_block_arity(void);
|
1017
|
+
VALUE rb_func_proc_new(rb_block_call_func_t func, VALUE val);
|
1018
|
+
VALUE rb_func_lambda_new(rb_block_call_func_t func, VALUE val);
|
1019
|
+
|
1020
|
+
/* process.c */
|
1021
|
+
#define RB_MAX_GROUPS (65536)
|
1022
|
+
|
1023
|
+
struct rb_execarg {
|
1024
|
+
union {
|
1025
|
+
struct {
|
1026
|
+
VALUE shell_script;
|
1027
|
+
} sh;
|
1028
|
+
struct {
|
1029
|
+
VALUE command_name;
|
1030
|
+
VALUE command_abspath; /* full path string or nil */
|
1031
|
+
VALUE argv_str;
|
1032
|
+
VALUE argv_buf;
|
1033
|
+
} cmd;
|
1034
|
+
} invoke;
|
1035
|
+
VALUE redirect_fds;
|
1036
|
+
VALUE envp_str;
|
1037
|
+
VALUE envp_buf;
|
1038
|
+
VALUE dup2_tmpbuf;
|
1039
|
+
unsigned use_shell : 1;
|
1040
|
+
unsigned pgroup_given : 1;
|
1041
|
+
unsigned umask_given : 1;
|
1042
|
+
unsigned unsetenv_others_given : 1;
|
1043
|
+
unsigned unsetenv_others_do : 1;
|
1044
|
+
unsigned close_others_given : 1;
|
1045
|
+
unsigned close_others_do : 1;
|
1046
|
+
unsigned chdir_given : 1;
|
1047
|
+
unsigned new_pgroup_given : 1;
|
1048
|
+
unsigned new_pgroup_flag : 1;
|
1049
|
+
unsigned uid_given : 1;
|
1050
|
+
unsigned gid_given : 1;
|
1051
|
+
rb_pid_t pgroup_pgid; /* asis(-1), new pgroup(0), specified pgroup (0<V). */
|
1052
|
+
VALUE rlimit_limits; /* Qfalse or [[rtype, softlim, hardlim], ...] */
|
1053
|
+
mode_t umask_mask;
|
1054
|
+
rb_uid_t uid;
|
1055
|
+
rb_gid_t gid;
|
1056
|
+
int close_others_maxhint;
|
1057
|
+
VALUE fd_dup2;
|
1058
|
+
VALUE fd_close;
|
1059
|
+
VALUE fd_open;
|
1060
|
+
VALUE fd_dup2_child;
|
1061
|
+
VALUE env_modification; /* Qfalse or [[k1,v1], ...] */
|
1062
|
+
VALUE chdir_dir;
|
1063
|
+
};
|
1064
|
+
|
1065
|
+
/* argv_str contains extra two elements.
|
1066
|
+
* The beginning one is for /bin/sh used by exec_with_sh.
|
1067
|
+
* The last one for terminating NULL used by execve.
|
1068
|
+
* See rb_exec_fillarg() in process.c. */
|
1069
|
+
#define ARGVSTR2ARGC(argv_str) (RSTRING_LEN(argv_str) / sizeof(char *) - 2)
|
1070
|
+
#define ARGVSTR2ARGV(argv_str) ((char **)RSTRING_PTR(argv_str) + 1)
|
1071
|
+
|
1072
|
+
rb_pid_t rb_fork_ruby(int *status);
|
1073
|
+
void rb_last_status_clear(void);
|
1074
|
+
|
1075
|
+
/* rational.c */
|
1076
|
+
VALUE rb_lcm(VALUE x, VALUE y);
|
1077
|
+
VALUE rb_rational_reciprocal(VALUE x);
|
1078
|
+
VALUE rb_cstr_to_rat(const char *, int);
|
1079
|
+
|
1080
|
+
/* re.c */
|
1081
|
+
VALUE rb_reg_compile(VALUE str, int options, const char *sourcefile, int sourceline);
|
1082
|
+
VALUE rb_reg_check_preprocess(VALUE);
|
1083
|
+
long rb_reg_search0(VALUE, VALUE, long, int, int);
|
1084
|
+
void rb_backref_set_string(VALUE string, long pos, long len);
|
1085
|
+
|
1086
|
+
/* signal.c */
|
1087
|
+
extern int ruby_enable_coredump;
|
1088
|
+
int rb_get_next_signal(void);
|
1089
|
+
int rb_sigaltstack_size(void);
|
1090
|
+
|
1091
|
+
/* strftime.c */
|
1092
|
+
#ifdef RUBY_ENCODING_H
|
1093
|
+
size_t rb_strftime_timespec(char *s, size_t maxsize, const char *format, rb_encoding *enc,
|
1094
|
+
const struct vtm *vtm, struct timespec *ts, int gmt);
|
1095
|
+
size_t rb_strftime(char *s, size_t maxsize, const char *format, rb_encoding *enc,
|
1096
|
+
const struct vtm *vtm, VALUE timev, int gmt);
|
1097
|
+
#endif
|
1098
|
+
|
1099
|
+
/* string.c */
|
1100
|
+
void Init_frozen_strings(void);
|
1101
|
+
VALUE rb_fstring(VALUE);
|
1102
|
+
VALUE rb_fstring_new(const char *ptr, long len);
|
1103
|
+
#define rb_fstring_lit(str) rb_fstring_new((str), rb_strlen_lit(str))
|
1104
|
+
#define rb_fstring_literal(str) rb_fstring_lit(str)
|
1105
|
+
VALUE rb_fstring_cstr(const char *str);
|
1106
|
+
#if defined(__GNUC__) && !defined(__PCC__)
|
1107
|
+
#define rb_fstring_cstr(str) __extension__ ( \
|
1108
|
+
{ \
|
1109
|
+
(__builtin_constant_p(str)) ? \
|
1110
|
+
rb_fstring_new((str), (long)strlen(str)) : \
|
1111
|
+
rb_fstring_cstr(str); \
|
1112
|
+
})
|
1113
|
+
#endif
|
1114
|
+
int rb_str_buf_cat_escaped_char(VALUE result, unsigned int c, int unicode_p);
|
1115
|
+
int rb_str_symname_p(VALUE);
|
1116
|
+
VALUE rb_str_quote_unprintable(VALUE);
|
1117
|
+
VALUE rb_id_quote_unprintable(ID);
|
1118
|
+
#define QUOTE(str) rb_str_quote_unprintable(str)
|
1119
|
+
#define QUOTE_ID(id) rb_id_quote_unprintable(id)
|
1120
|
+
void rb_str_fill_terminator(VALUE str, const int termlen);
|
1121
|
+
VALUE rb_str_locktmp_ensure(VALUE str, VALUE (*func)(VALUE), VALUE arg);
|
1122
|
+
#ifdef RUBY_ENCODING_H
|
1123
|
+
VALUE rb_external_str_with_enc(VALUE str, rb_encoding *eenc);
|
1124
|
+
VALUE rb_str_cat_conv_enc_opts(VALUE newstr, long ofs, const char *ptr, long len,
|
1125
|
+
rb_encoding *from, int ecflags, VALUE ecopts);
|
1126
|
+
#endif
|
1127
|
+
#define STR_NOEMBED FL_USER1
|
1128
|
+
#define STR_SHARED FL_USER2 /* = ELTS_SHARED */
|
1129
|
+
#define STR_EMBED_P(str) (!FL_TEST_RAW((str), STR_NOEMBED))
|
1130
|
+
#define STR_SHARED_P(s) FL_ALL_RAW((s), STR_NOEMBED|ELTS_SHARED)
|
1131
|
+
#define is_ascii_string(str) (rb_enc_str_coderange(str) == ENC_CODERANGE_7BIT)
|
1132
|
+
#define is_broken_string(str) (rb_enc_str_coderange(str) == ENC_CODERANGE_BROKEN)
|
1133
|
+
size_t rb_str_memsize(VALUE);
|
1134
|
+
VALUE rb_sym_proc_call(VALUE args, VALUE sym, int argc, const VALUE *argv, VALUE passed_proc);
|
1135
|
+
VALUE rb_sym_to_proc(VALUE sym);
|
1136
|
+
|
1137
|
+
/* symbol.c */
|
1138
|
+
#ifdef RUBY_ENCODING_H
|
1139
|
+
VALUE rb_cstr_intern(const char *ptr, long len, rb_encoding *enc);
|
1140
|
+
#endif
|
1141
|
+
|
1142
|
+
/* struct.c */
|
1143
|
+
VALUE rb_struct_init_copy(VALUE copy, VALUE s);
|
1144
|
+
|
1145
|
+
/* time.c */
|
1146
|
+
struct timeval rb_time_timeval(VALUE);
|
1147
|
+
|
1148
|
+
/* thread.c */
|
1149
|
+
VALUE rb_obj_is_mutex(VALUE obj);
|
1150
|
+
VALUE rb_suppress_tracing(VALUE (*func)(VALUE), VALUE arg);
|
1151
|
+
void rb_thread_execute_interrupts(VALUE th);
|
1152
|
+
void rb_clear_trace_func(void);
|
1153
|
+
VALUE rb_get_coverages(void);
|
1154
|
+
VALUE rb_thread_shield_new(void);
|
1155
|
+
VALUE rb_thread_shield_wait(VALUE self);
|
1156
|
+
VALUE rb_thread_shield_release(VALUE self);
|
1157
|
+
VALUE rb_thread_shield_destroy(VALUE self);
|
1158
|
+
int rb_thread_to_be_killed(VALUE thread);
|
1159
|
+
void rb_mutex_allow_trap(VALUE self, int val);
|
1160
|
+
VALUE rb_uninterruptible(VALUE (*b_proc)(ANYARGS), VALUE data);
|
1161
|
+
VALUE rb_mutex_owned_p(VALUE self);
|
1162
|
+
void ruby_kill(rb_pid_t pid, int sig);
|
1163
|
+
|
1164
|
+
/* thread_pthread.c, thread_win32.c */
|
1165
|
+
void Init_native_thread(void);
|
1166
|
+
int rb_divert_reserved_fd(int fd);
|
1167
|
+
|
1168
|
+
/* transcode.c */
|
1169
|
+
extern VALUE rb_cEncodingConverter;
|
1170
|
+
size_t rb_econv_memsize(rb_econv_t *);
|
1171
|
+
|
1172
|
+
/* us_ascii.c */
|
1173
|
+
extern rb_encoding OnigEncodingUS_ASCII;
|
1174
|
+
|
1175
|
+
/* util.c */
|
1176
|
+
char *ruby_dtoa(double d_, int mode, int ndigits, int *decpt, int *sign, char **rve);
|
1177
|
+
char *ruby_hdtoa(double d, const char *xdigs, int ndigits, int *decpt, int *sign, char **rve);
|
1178
|
+
|
1179
|
+
/* utf_8.c */
|
1180
|
+
extern rb_encoding OnigEncodingUTF_8;
|
1181
|
+
|
1182
|
+
/* variable.c */
|
1183
|
+
size_t rb_generic_ivar_memsize(VALUE);
|
1184
|
+
VALUE rb_search_class_path(VALUE);
|
1185
|
+
VALUE rb_attr_delete(VALUE, ID);
|
1186
|
+
VALUE rb_ivar_lookup(VALUE obj, ID id, VALUE undef);
|
1187
|
+
|
1188
|
+
/* version.c */
|
1189
|
+
extern VALUE ruby_engine_name;
|
1190
|
+
|
1191
|
+
/* vm_insnhelper.h */
|
1192
|
+
rb_serial_t rb_next_class_serial(void);
|
1193
|
+
|
1194
|
+
/* vm.c */
|
1195
|
+
VALUE rb_obj_is_thread(VALUE obj);
|
1196
|
+
void rb_vm_mark(void *ptr);
|
1197
|
+
void Init_BareVM(void);
|
1198
|
+
void Init_vm_objects(void);
|
1199
|
+
VALUE rb_vm_top_self(void);
|
1200
|
+
void rb_thread_recycle_stack_release(VALUE *);
|
1201
|
+
void rb_vm_change_state(void);
|
1202
|
+
void rb_vm_inc_const_missing_count(void);
|
1203
|
+
void rb_thread_mark(void *th);
|
1204
|
+
const void **rb_vm_get_insns_address_table(void);
|
1205
|
+
VALUE rb_sourcefilename(void);
|
1206
|
+
VALUE rb_source_location(int *pline);
|
1207
|
+
const char *rb_source_loc(int *pline);
|
1208
|
+
void rb_vm_pop_cfunc_frame(void);
|
1209
|
+
int rb_vm_add_root_module(ID id, VALUE module);
|
1210
|
+
void rb_vm_check_redefinition_by_prepend(VALUE klass);
|
1211
|
+
VALUE rb_yield_refine_block(VALUE refinement, VALUE refinements);
|
1212
|
+
VALUE ruby_vm_sysstack_error_copy(void);
|
1213
|
+
|
1214
|
+
/* vm_dump.c */
|
1215
|
+
void rb_print_backtrace(void);
|
1216
|
+
|
1217
|
+
/* vm_eval.c */
|
1218
|
+
void Init_vm_eval(void);
|
1219
|
+
VALUE rb_current_realfilepath(void);
|
1220
|
+
VALUE rb_check_block_call(VALUE, ID, int, const VALUE *, rb_block_call_func_t, VALUE);
|
1221
|
+
typedef void rb_check_funcall_hook(int, VALUE, ID, int, const VALUE *, VALUE);
|
1222
|
+
VALUE rb_check_funcall_with_hook(VALUE recv, ID mid, int argc, const VALUE *argv,
|
1223
|
+
rb_check_funcall_hook *hook, VALUE arg);
|
1224
|
+
VALUE rb_check_funcall_default(VALUE, ID, int, const VALUE *, VALUE);
|
1225
|
+
VALUE rb_catch_protect(VALUE t, rb_block_call_func *func, VALUE data, int *stateptr);
|
1226
|
+
VALUE rb_yield_1(VALUE val);
|
1227
|
+
|
1228
|
+
/* vm_insnhelper.c */
|
1229
|
+
VALUE rb_equal_opt(VALUE obj1, VALUE obj2);
|
1230
|
+
|
1231
|
+
/* vm_method.c */
|
1232
|
+
void Init_eval_method(void);
|
1233
|
+
int rb_method_defined_by(VALUE obj, ID mid, VALUE (*cfunc)(ANYARGS));
|
1234
|
+
|
1235
|
+
/* miniprelude.c, prelude.c */
|
1236
|
+
void Init_prelude(void);
|
1237
|
+
|
1238
|
+
/* vm_backtrace.c */
|
1239
|
+
void Init_vm_backtrace(void);
|
1240
|
+
VALUE rb_vm_thread_backtrace(int argc, const VALUE *argv, VALUE thval);
|
1241
|
+
VALUE rb_vm_thread_backtrace_locations(int argc, const VALUE *argv, VALUE thval);
|
1242
|
+
|
1243
|
+
VALUE rb_make_backtrace(void);
|
1244
|
+
void rb_backtrace_print_as_bugreport(void);
|
1245
|
+
int rb_backtrace_p(VALUE obj);
|
1246
|
+
VALUE rb_backtrace_to_str_ary(VALUE obj);
|
1247
|
+
VALUE rb_backtrace_to_location_ary(VALUE obj);
|
1248
|
+
void rb_backtrace_print_to(VALUE output);
|
1249
|
+
VALUE rb_vm_backtrace_object(void);
|
1250
|
+
|
1251
|
+
RUBY_SYMBOL_EXPORT_BEGIN
|
1252
|
+
const char *rb_objspace_data_type_name(VALUE obj);
|
1253
|
+
|
1254
|
+
/* Temporary. This API will be removed (renamed). */
|
1255
|
+
VALUE rb_thread_io_blocking_region(rb_blocking_function_t *func, void *data1, int fd);
|
1256
|
+
|
1257
|
+
/* bignum.c (export) */
|
1258
|
+
VALUE rb_big_mul_normal(VALUE x, VALUE y);
|
1259
|
+
VALUE rb_big_mul_balance(VALUE x, VALUE y);
|
1260
|
+
VALUE rb_big_mul_karatsuba(VALUE x, VALUE y);
|
1261
|
+
VALUE rb_big_mul_toom3(VALUE x, VALUE y);
|
1262
|
+
VALUE rb_big_sq_fast(VALUE x);
|
1263
|
+
VALUE rb_big_divrem_normal(VALUE x, VALUE y);
|
1264
|
+
VALUE rb_big2str_poweroftwo(VALUE x, int base);
|
1265
|
+
VALUE rb_big2str_generic(VALUE x, int base);
|
1266
|
+
VALUE rb_str2big_poweroftwo(VALUE arg, int base, int badcheck);
|
1267
|
+
VALUE rb_str2big_normal(VALUE arg, int base, int badcheck);
|
1268
|
+
VALUE rb_str2big_karatsuba(VALUE arg, int base, int badcheck);
|
1269
|
+
#if defined(HAVE_LIBGMP) && defined(HAVE_GMP_H)
|
1270
|
+
VALUE rb_big_mul_gmp(VALUE x, VALUE y);
|
1271
|
+
VALUE rb_big_divrem_gmp(VALUE x, VALUE y);
|
1272
|
+
VALUE rb_big2str_gmp(VALUE x, int base);
|
1273
|
+
VALUE rb_str2big_gmp(VALUE arg, int base, int badcheck);
|
1274
|
+
#endif
|
1275
|
+
|
1276
|
+
/* error.c (export) */
|
1277
|
+
int rb_bug_reporter_add(void (*func)(FILE *, void *), void *data);
|
1278
|
+
|
1279
|
+
/* file.c (export) */
|
1280
|
+
#ifdef HAVE_READLINK
|
1281
|
+
VALUE rb_readlink(VALUE path, rb_encoding *enc);
|
1282
|
+
#endif
|
1283
|
+
#ifdef __APPLE__
|
1284
|
+
VALUE rb_str_normalize_ospath(const char *ptr, long len);
|
1285
|
+
#endif
|
1286
|
+
|
1287
|
+
/* hash.c (export) */
|
1288
|
+
VALUE rb_hash_delete_entry(VALUE hash, VALUE key);
|
1289
|
+
VALUE rb_ident_hash_new(void);
|
1290
|
+
|
1291
|
+
/* io.c (export) */
|
1292
|
+
void rb_maygvl_fd_fix_cloexec(int fd);
|
1293
|
+
|
1294
|
+
/* numeric.c (export) */
|
1295
|
+
VALUE rb_int_positive_pow(long x, unsigned long y);
|
1296
|
+
|
1297
|
+
/* process.c (export) */
|
1298
|
+
int rb_exec_async_signal_safe(const struct rb_execarg *e, char *errmsg, size_t errmsg_buflen);
|
1299
|
+
rb_pid_t rb_fork_async_signal_safe(int *status, int (*chfunc)(void*, char *, size_t), void *charg, VALUE fds, char *errmsg, size_t errmsg_buflen);
|
1300
|
+
VALUE rb_execarg_new(int argc, const VALUE *argv, int accept_shell);
|
1301
|
+
struct rb_execarg *rb_execarg_get(VALUE execarg_obj); /* dangerous. needs GC guard. */
|
1302
|
+
VALUE rb_execarg_init(int argc, const VALUE *argv, int accept_shell, VALUE execarg_obj);
|
1303
|
+
int rb_execarg_addopt(VALUE execarg_obj, VALUE key, VALUE val);
|
1304
|
+
void rb_execarg_parent_start(VALUE execarg_obj);
|
1305
|
+
void rb_execarg_parent_end(VALUE execarg_obj);
|
1306
|
+
int rb_execarg_run_options(const struct rb_execarg *e, struct rb_execarg *s, char* errmsg, size_t errmsg_buflen);
|
1307
|
+
VALUE rb_execarg_extract_options(VALUE execarg_obj, VALUE opthash);
|
1308
|
+
void rb_execarg_setenv(VALUE execarg_obj, VALUE env);
|
1309
|
+
|
1310
|
+
/* rational.c (export) */
|
1311
|
+
VALUE rb_gcd_normal(VALUE self, VALUE other);
|
1312
|
+
#if defined(HAVE_LIBGMP) && defined(HAVE_GMP_H)
|
1313
|
+
VALUE rb_gcd_gmp(VALUE x, VALUE y);
|
1314
|
+
#endif
|
1315
|
+
|
1316
|
+
/* string.c (export) */
|
1317
|
+
#ifdef RUBY_ENCODING_H
|
1318
|
+
/* internal use */
|
1319
|
+
VALUE rb_setup_fake_str(struct RString *fake_str, const char *name, long len, rb_encoding *enc);
|
1320
|
+
#endif
|
1321
|
+
|
1322
|
+
/* util.c (export) */
|
1323
|
+
extern const signed char ruby_digit36_to_number_table[];
|
1324
|
+
extern const char ruby_hexdigits[];
|
1325
|
+
extern unsigned long ruby_scan_digits(const char *str, ssize_t len, int base, size_t *retlen, int *overflow);
|
1326
|
+
|
1327
|
+
/* variable.c (export) */
|
1328
|
+
void rb_gc_mark_global_tbl(void);
|
1329
|
+
void rb_mark_generic_ivar(VALUE);
|
1330
|
+
VALUE rb_const_missing(VALUE klass, VALUE name);
|
1331
|
+
int rb_class_ivar_set(VALUE klass, ID vid, VALUE value);
|
1332
|
+
st_table *rb_st_copy(VALUE obj, struct st_table *orig_tbl);
|
1333
|
+
|
1334
|
+
/* gc.c (export) */
|
1335
|
+
VALUE rb_wb_protected_newobj_of(VALUE, VALUE);
|
1336
|
+
VALUE rb_wb_unprotected_newobj_of(VALUE, VALUE);
|
1337
|
+
|
1338
|
+
size_t rb_obj_memsize_of(VALUE);
|
1339
|
+
void rb_gc_verify_internal_consistency(void);
|
1340
|
+
|
1341
|
+
#define RB_OBJ_GC_FLAGS_MAX 5
|
1342
|
+
size_t rb_obj_gc_flags(VALUE, ID[], size_t);
|
1343
|
+
void rb_gc_mark_values(long n, const VALUE *values);
|
1344
|
+
|
1345
|
+
#if IMEMO_DEBUG
|
1346
|
+
VALUE rb_imemo_new_debug(enum imemo_type type, VALUE v1, VALUE v2, VALUE v3, VALUE v0, const char *file, int line);
|
1347
|
+
#define rb_imemo_new(type, v1, v2, v3, v0) rb_imemo_new_debug(type, v1, v2, v3, v0, __FILE__, __LINE__)
|
1348
|
+
#else
|
1349
|
+
VALUE rb_imemo_new(enum imemo_type type, VALUE v1, VALUE v2, VALUE v3, VALUE v0);
|
1350
|
+
#endif
|
1351
|
+
|
1352
|
+
RUBY_SYMBOL_EXPORT_END
|
1353
|
+
|
1354
|
+
#define RUBY_DTRACE_CREATE_HOOK(name, arg) \
|
1355
|
+
RUBY_DTRACE_HOOK(name##_CREATE, arg)
|
1356
|
+
#define RUBY_DTRACE_HOOK(name, arg) \
|
1357
|
+
do { \
|
1358
|
+
if (UNLIKELY(RUBY_DTRACE_##name##_ENABLED())) { \
|
1359
|
+
int dtrace_line; \
|
1360
|
+
const char *dtrace_file = rb_source_loc(&dtrace_line); \
|
1361
|
+
if (!dtrace_file) dtrace_file = ""; \
|
1362
|
+
RUBY_DTRACE_##name(arg, dtrace_file, dtrace_line); \
|
1363
|
+
} \
|
1364
|
+
} while (0)
|
1365
|
+
|
1366
|
+
#if defined(__cplusplus)
|
1367
|
+
#if 0
|
1368
|
+
{ /* satisfy cc-mode */
|
1369
|
+
#endif
|
1370
|
+
} /* extern "C" { */
|
1371
|
+
#endif
|
1372
|
+
|
1373
|
+
#endif /* RUBY_INTERNAL_H */
|