debase-ruby_core_source 0.7.3 → 0.7.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/debase/ruby_core_source.rb +2 -1
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/addr2line.h +21 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/ccan/build_assert/build_assert.h +40 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/ccan/check_type/check_type.h +63 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/ccan/container_of/container_of.h +142 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/ccan/list/list.h +635 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/ccan/str/str.h +16 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/constant.h +43 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/dln.h +51 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/eval_intern.h +275 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/gc.h +107 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/id.h +210 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/insns.inc +107 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/insns_info.inc +752 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/internal.h +1179 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/iseq.h +158 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/known_errors.inc +746 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/method.h +141 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/node.h +544 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/node_name.inc +212 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/opt_sc.inc +734 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/optinsn.inc +83 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/optunifs.inc +124 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/parse.h +203 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/probes_helper.h +67 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/regenc.h +234 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/regint.h +972 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/regparse.h +363 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/revision.h +1 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/ruby_atomic.h +170 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/siphash.h +48 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/symbol.h +87 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/thread_pthread.h +54 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/thread_win32.h +36 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/timev.h +42 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/transcode_data.h +123 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/version.h +53 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/vm.inc +3353 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/vm_core.h +1159 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/vm_debug.h +37 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/vm_exec.h +182 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/vm_insnhelper.h +233 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/vm_opts.h +56 -0
- data/lib/debase/ruby_core_source/ruby-2.2.0-rc1/vmtc.inc +105 -0
- data/lib/debase/ruby_core_source/version.rb +1 -1
- metadata +45 -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,43 @@
|
|
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_PUBLIC = 0x00,
|
16
|
+
CONST_PRIVATE,
|
17
|
+
CONST_VISIBILITY_MAX
|
18
|
+
} rb_const_flag_t;
|
19
|
+
|
20
|
+
#define RB_CONST_PRIVATE_P(ce) \
|
21
|
+
((ce)->flag == CONST_PRIVATE)
|
22
|
+
#define RB_CONST_PUBLIC_P(ce) \
|
23
|
+
((ce)->flag == CONST_PUBLIC)
|
24
|
+
|
25
|
+
typedef struct rb_const_entry_struct {
|
26
|
+
rb_const_flag_t flag;
|
27
|
+
int line;
|
28
|
+
const VALUE value; /* should be mark */
|
29
|
+
const VALUE file; /* should be mark */
|
30
|
+
} rb_const_entry_t;
|
31
|
+
|
32
|
+
VALUE rb_mod_private_constant(int argc, const VALUE *argv, VALUE obj);
|
33
|
+
VALUE rb_mod_public_constant(int argc, const VALUE *argv, VALUE obj);
|
34
|
+
void rb_free_const_table(st_table *tbl);
|
35
|
+
VALUE rb_public_const_get(VALUE klass, ID id);
|
36
|
+
VALUE rb_public_const_get_at(VALUE klass, ID id);
|
37
|
+
VALUE rb_public_const_get_from(VALUE klass, ID id);
|
38
|
+
int rb_public_const_defined(VALUE klass, ID id);
|
39
|
+
int rb_public_const_defined_at(VALUE klass, ID id);
|
40
|
+
int rb_public_const_defined_from(VALUE klass, ID id);
|
41
|
+
rb_const_entry_t *rb_const_lookup(VALUE klass, ID id);
|
42
|
+
|
43
|
+
#endif /* CONSTANT_H */
|
@@ -0,0 +1,51 @@
|
|
1
|
+
/**********************************************************************
|
2
|
+
|
3
|
+
dln.h -
|
4
|
+
|
5
|
+
$Author: nobu $
|
6
|
+
created at: Wed Jan 19 16:53:09 JST 1994
|
7
|
+
|
8
|
+
Copyright (C) 1993-2007 Yukihiro Matsumoto
|
9
|
+
|
10
|
+
**********************************************************************/
|
11
|
+
|
12
|
+
#ifndef DLN_H
|
13
|
+
#define DLN_H
|
14
|
+
|
15
|
+
#ifdef __cplusplus
|
16
|
+
# ifndef HAVE_PROTOTYPES
|
17
|
+
# define HAVE_PROTOTYPES 1
|
18
|
+
# endif
|
19
|
+
# ifndef HAVE_STDARG_PROTOTYPES
|
20
|
+
# define HAVE_STDARG_PROTOTYPES 1
|
21
|
+
# endif
|
22
|
+
#endif
|
23
|
+
|
24
|
+
#undef _
|
25
|
+
#ifdef HAVE_PROTOTYPES
|
26
|
+
# define _(args) args
|
27
|
+
#else
|
28
|
+
# define _(args) ()
|
29
|
+
#endif
|
30
|
+
|
31
|
+
RUBY_SYMBOL_EXPORT_BEGIN
|
32
|
+
|
33
|
+
#ifndef DLN_FIND_EXTRA_ARG
|
34
|
+
#define DLN_FIND_EXTRA_ARG
|
35
|
+
#endif
|
36
|
+
#ifndef DLN_FIND_EXTRA_ARG_DECL
|
37
|
+
#define DLN_FIND_EXTRA_ARG_DECL
|
38
|
+
#endif
|
39
|
+
|
40
|
+
char *dln_find_exe_r(const char*,const char*,char*,size_t DLN_FIND_EXTRA_ARG_DECL);
|
41
|
+
char *dln_find_file_r(const char*,const char*,char*,size_t DLN_FIND_EXTRA_ARG_DECL);
|
42
|
+
|
43
|
+
#ifdef USE_DLN_A_OUT
|
44
|
+
extern char *dln_argv0;
|
45
|
+
#endif
|
46
|
+
|
47
|
+
void *dln_load(const char*);
|
48
|
+
|
49
|
+
RUBY_SYMBOL_EXPORT_END
|
50
|
+
|
51
|
+
#endif
|
@@ -0,0 +1,275 @@
|
|
1
|
+
#ifndef RUBY_EVAL_INTERN_H
|
2
|
+
#define RUBY_EVAL_INTERN_H
|
3
|
+
|
4
|
+
#include "ruby/ruby.h"
|
5
|
+
#include "vm_core.h"
|
6
|
+
|
7
|
+
#define PASS_PASSED_BLOCK_TH(th) do { \
|
8
|
+
(th)->passed_block = rb_vm_control_frame_block_ptr(th->cfp); \
|
9
|
+
(th)->cfp->flag |= VM_FRAME_FLAG_PASSED; \
|
10
|
+
} while (0)
|
11
|
+
|
12
|
+
#define PASS_PASSED_BLOCK() do { \
|
13
|
+
rb_thread_t * const __th__ = GET_THREAD(); \
|
14
|
+
PASS_PASSED_BLOCK_TH(__th__); \
|
15
|
+
} while (0)
|
16
|
+
|
17
|
+
#ifdef HAVE_STDLIB_H
|
18
|
+
#include <stdlib.h>
|
19
|
+
#endif
|
20
|
+
#ifndef EXIT_SUCCESS
|
21
|
+
#define EXIT_SUCCESS 0
|
22
|
+
#endif
|
23
|
+
#ifndef EXIT_FAILURE
|
24
|
+
#define EXIT_FAILURE 1
|
25
|
+
#endif
|
26
|
+
|
27
|
+
#include <stdio.h>
|
28
|
+
#include <setjmp.h>
|
29
|
+
|
30
|
+
#ifdef __APPLE__
|
31
|
+
# ifdef HAVE_CRT_EXTERNS_H
|
32
|
+
# include <crt_externs.h>
|
33
|
+
# else
|
34
|
+
# include "missing/crt_externs.h"
|
35
|
+
# endif
|
36
|
+
#endif
|
37
|
+
|
38
|
+
#ifndef HAVE_STRING_H
|
39
|
+
char *strrchr(const char *, const char);
|
40
|
+
#endif
|
41
|
+
|
42
|
+
#ifdef HAVE_UNISTD_H
|
43
|
+
#include <unistd.h>
|
44
|
+
#endif
|
45
|
+
|
46
|
+
#ifdef HAVE_NET_SOCKET_H
|
47
|
+
#include <net/socket.h>
|
48
|
+
#endif
|
49
|
+
|
50
|
+
#define ruby_setjmp(env) RUBY_SETJMP(env)
|
51
|
+
#define ruby_longjmp(env,val) RUBY_LONGJMP((env),(val))
|
52
|
+
#ifdef __CYGWIN__
|
53
|
+
# ifndef _setjmp
|
54
|
+
int _setjmp(jmp_buf);
|
55
|
+
# endif
|
56
|
+
# ifndef _longjmp
|
57
|
+
NORETURN(void _longjmp(jmp_buf, int));
|
58
|
+
# endif
|
59
|
+
#endif
|
60
|
+
|
61
|
+
#include <sys/types.h>
|
62
|
+
#include <signal.h>
|
63
|
+
#include <errno.h>
|
64
|
+
|
65
|
+
#ifdef HAVE_SYS_SELECT_H
|
66
|
+
#include <sys/select.h>
|
67
|
+
#endif
|
68
|
+
|
69
|
+
/*
|
70
|
+
Solaris sys/select.h switches select to select_large_fdset to support larger
|
71
|
+
file descriptors if FD_SETSIZE is larger than 1024 on 32bit environment.
|
72
|
+
But Ruby doesn't change FD_SETSIZE because fd_set is allocated dynamically.
|
73
|
+
So following definition is required to use select_large_fdset.
|
74
|
+
*/
|
75
|
+
#ifdef HAVE_SELECT_LARGE_FDSET
|
76
|
+
#define select(n, r, w, e, t) select_large_fdset((n), (r), (w), (e), (t))
|
77
|
+
extern int select_large_fdset(int, fd_set *, fd_set *, fd_set *, struct timeval *);
|
78
|
+
#endif
|
79
|
+
|
80
|
+
#ifdef HAVE_SYS_PARAM_H
|
81
|
+
#include <sys/param.h>
|
82
|
+
#endif
|
83
|
+
|
84
|
+
#include <sys/stat.h>
|
85
|
+
|
86
|
+
#ifdef _MSC_VER
|
87
|
+
#define SAVE_ROOT_JMPBUF_BEFORE_STMT \
|
88
|
+
__try {
|
89
|
+
#define SAVE_ROOT_JMPBUF_AFTER_STMT \
|
90
|
+
} \
|
91
|
+
__except (GetExceptionCode() == EXCEPTION_STACK_OVERFLOW ? \
|
92
|
+
(rb_thread_raised_set(GET_THREAD(), RAISED_STACKOVERFLOW), \
|
93
|
+
raise(SIGSEGV), \
|
94
|
+
EXCEPTION_EXECUTE_HANDLER) : \
|
95
|
+
EXCEPTION_CONTINUE_SEARCH) { \
|
96
|
+
/* never reaches here */ \
|
97
|
+
}
|
98
|
+
#elif defined(__MINGW32__)
|
99
|
+
LONG WINAPI rb_w32_stack_overflow_handler(struct _EXCEPTION_POINTERS *);
|
100
|
+
#define SAVE_ROOT_JMPBUF_BEFORE_STMT \
|
101
|
+
do { \
|
102
|
+
PVOID _handler = AddVectoredExceptionHandler(1, rb_w32_stack_overflow_handler);
|
103
|
+
|
104
|
+
#define SAVE_ROOT_JMPBUF_AFTER_STMT \
|
105
|
+
RemoveVectoredExceptionHandler(_handler); \
|
106
|
+
} while (0);
|
107
|
+
#else
|
108
|
+
#define SAVE_ROOT_JMPBUF_BEFORE_STMT
|
109
|
+
#define SAVE_ROOT_JMPBUF_AFTER_STMT
|
110
|
+
#endif
|
111
|
+
|
112
|
+
#define SAVE_ROOT_JMPBUF(th, stmt) do \
|
113
|
+
if (ruby_setjmp((th)->root_jmpbuf) == 0) { \
|
114
|
+
SAVE_ROOT_JMPBUF_BEFORE_STMT \
|
115
|
+
stmt; \
|
116
|
+
SAVE_ROOT_JMPBUF_AFTER_STMT \
|
117
|
+
} \
|
118
|
+
else { \
|
119
|
+
rb_fiber_start(); \
|
120
|
+
} while (0)
|
121
|
+
|
122
|
+
#define TH_PUSH_TAG(th) do { \
|
123
|
+
rb_thread_t * const _th = (th); \
|
124
|
+
struct rb_vm_tag _tag; \
|
125
|
+
_tag.tag = 0; \
|
126
|
+
_tag.prev = _th->tag;
|
127
|
+
|
128
|
+
#define TH_POP_TAG() \
|
129
|
+
_th->tag = _tag.prev; \
|
130
|
+
} while (0)
|
131
|
+
|
132
|
+
#define TH_TMPPOP_TAG() \
|
133
|
+
_th->tag = _tag.prev
|
134
|
+
|
135
|
+
#define TH_REPUSH_TAG() (void)(_th->tag = &_tag)
|
136
|
+
|
137
|
+
#define PUSH_TAG() TH_PUSH_TAG(GET_THREAD())
|
138
|
+
#define POP_TAG() TH_POP_TAG()
|
139
|
+
|
140
|
+
#if defined __GNUC__ && __GNUC__ == 4 && (__GNUC_MINOR__ >= 6 && __GNUC_MINOR__ <= 8)
|
141
|
+
# define VAR_FROM_MEMORY(var) __extension__(*(__typeof__(var) volatile *)&(var))
|
142
|
+
# define VAR_INITIALIZED(var) ((var) = VAR_FROM_MEMORY(var))
|
143
|
+
#else
|
144
|
+
# define VAR_FROM_MEMORY(var) (var)
|
145
|
+
# define VAR_INITIALIZED(var) ((void)&(var))
|
146
|
+
#endif
|
147
|
+
|
148
|
+
/* clear th->state, and return the value */
|
149
|
+
static inline int
|
150
|
+
rb_threadptr_tag_state(rb_thread_t *th)
|
151
|
+
{
|
152
|
+
int state = th->state;
|
153
|
+
th->state = 0;
|
154
|
+
return state;
|
155
|
+
}
|
156
|
+
|
157
|
+
NORETURN(static inline void rb_threadptr_tag_jump(rb_thread_t *, int));
|
158
|
+
static inline void
|
159
|
+
rb_threadptr_tag_jump(rb_thread_t *th, int st)
|
160
|
+
{
|
161
|
+
th->state = st;
|
162
|
+
ruby_longjmp(th->tag->buf, 1);
|
163
|
+
}
|
164
|
+
|
165
|
+
/*
|
166
|
+
setjmp() in assignment expression rhs is undefined behavior
|
167
|
+
[ISO/IEC 9899:1999] 7.13.1.1
|
168
|
+
*/
|
169
|
+
#define TH_EXEC_TAG() \
|
170
|
+
(ruby_setjmp(_tag.buf) ? rb_threadptr_tag_state(VAR_FROM_MEMORY(_th)) : (TH_REPUSH_TAG(), 0))
|
171
|
+
|
172
|
+
#define EXEC_TAG() \
|
173
|
+
TH_EXEC_TAG()
|
174
|
+
|
175
|
+
#define TH_JUMP_TAG(th, st) rb_threadptr_tag_jump(th, st)
|
176
|
+
|
177
|
+
#define JUMP_TAG(st) TH_JUMP_TAG(GET_THREAD(), (st))
|
178
|
+
|
179
|
+
#define INTERNAL_EXCEPTION_P(exc) FIXNUM_P(exc)
|
180
|
+
|
181
|
+
enum ruby_tag_type {
|
182
|
+
RUBY_TAG_RETURN = 0x1,
|
183
|
+
RUBY_TAG_BREAK = 0x2,
|
184
|
+
RUBY_TAG_NEXT = 0x3,
|
185
|
+
RUBY_TAG_RETRY = 0x4,
|
186
|
+
RUBY_TAG_REDO = 0x5,
|
187
|
+
RUBY_TAG_RAISE = 0x6,
|
188
|
+
RUBY_TAG_THROW = 0x7,
|
189
|
+
RUBY_TAG_FATAL = 0x8,
|
190
|
+
RUBY_TAG_MASK = 0xf
|
191
|
+
};
|
192
|
+
#define TAG_RETURN RUBY_TAG_RETURN
|
193
|
+
#define TAG_BREAK RUBY_TAG_BREAK
|
194
|
+
#define TAG_NEXT RUBY_TAG_NEXT
|
195
|
+
#define TAG_RETRY RUBY_TAG_RETRY
|
196
|
+
#define TAG_REDO RUBY_TAG_REDO
|
197
|
+
#define TAG_RAISE RUBY_TAG_RAISE
|
198
|
+
#define TAG_THROW RUBY_TAG_THROW
|
199
|
+
#define TAG_FATAL RUBY_TAG_FATAL
|
200
|
+
#define TAG_MASK RUBY_TAG_MASK
|
201
|
+
|
202
|
+
#define NEW_THROW_OBJECT(val, pt, st) \
|
203
|
+
((VALUE)rb_node_newnode(NODE_LIT, (VALUE)(val), (VALUE)(pt), (VALUE)(st)))
|
204
|
+
#define SET_THROWOBJ_CATCH_POINT(obj, val) \
|
205
|
+
(RNODE((obj))->u2.value = (val))
|
206
|
+
#define SET_THROWOBJ_STATE(obj, val) \
|
207
|
+
(RNODE((obj))->u3.value = (val))
|
208
|
+
|
209
|
+
#define GET_THROWOBJ_VAL(obj) ((VALUE)RNODE((obj))->u1.value)
|
210
|
+
#define GET_THROWOBJ_CATCH_POINT(obj) ((VALUE*)RNODE((obj))->u2.value)
|
211
|
+
#define GET_THROWOBJ_STATE(obj) ((int)RNODE((obj))->u3.value)
|
212
|
+
|
213
|
+
#define SCOPE_TEST(f) (rb_vm_cref()->nd_visi & (f))
|
214
|
+
#define SCOPE_CHECK(f) (rb_vm_cref()->nd_visi == (f))
|
215
|
+
#define SCOPE_SET(f) (rb_vm_cref()->nd_visi = (f))
|
216
|
+
|
217
|
+
void rb_thread_cleanup(void);
|
218
|
+
void rb_thread_wait_other_threads(void);
|
219
|
+
|
220
|
+
enum {
|
221
|
+
RAISED_EXCEPTION = 1,
|
222
|
+
RAISED_STACKOVERFLOW = 2,
|
223
|
+
RAISED_NOMEMORY = 4
|
224
|
+
};
|
225
|
+
int rb_threadptr_set_raised(rb_thread_t *th);
|
226
|
+
int rb_threadptr_reset_raised(rb_thread_t *th);
|
227
|
+
#define rb_thread_raised_set(th, f) ((th)->raised_flag |= (f))
|
228
|
+
#define rb_thread_raised_reset(th, f) ((th)->raised_flag &= ~(f))
|
229
|
+
#define rb_thread_raised_p(th, f) (((th)->raised_flag & (f)) != 0)
|
230
|
+
#define rb_thread_raised_clear(th) ((th)->raised_flag = 0)
|
231
|
+
|
232
|
+
VALUE rb_f_eval(int argc, const VALUE *argv, VALUE self);
|
233
|
+
VALUE rb_make_exception(int argc, const VALUE *argv);
|
234
|
+
|
235
|
+
NORETURN(void rb_method_name_error(VALUE, VALUE));
|
236
|
+
|
237
|
+
NORETURN(void rb_fiber_start(void));
|
238
|
+
|
239
|
+
NORETURN(void rb_print_undef(VALUE, ID, int));
|
240
|
+
NORETURN(void rb_print_undef_str(VALUE, VALUE));
|
241
|
+
NORETURN(void rb_print_inaccessible(VALUE, ID, int));
|
242
|
+
NORETURN(void rb_vm_localjump_error(const char *,VALUE, int));
|
243
|
+
NORETURN(void rb_vm_jump_tag_but_local_jump(int));
|
244
|
+
NORETURN(void rb_raise_method_missing(rb_thread_t *th, int argc, const VALUE *argv,
|
245
|
+
VALUE obj, int call_status));
|
246
|
+
|
247
|
+
VALUE rb_vm_make_jump_tag_but_local_jump(int state, VALUE val);
|
248
|
+
NODE *rb_vm_cref(void);
|
249
|
+
VALUE rb_vm_call_cfunc(VALUE recv, VALUE (*func)(VALUE), VALUE arg, const rb_block_t *blockptr, VALUE filename);
|
250
|
+
void rb_vm_set_progname(VALUE filename);
|
251
|
+
void rb_thread_terminate_all(void);
|
252
|
+
VALUE rb_vm_top_self();
|
253
|
+
VALUE rb_vm_cbase(void);
|
254
|
+
|
255
|
+
#ifndef CharNext /* defined as CharNext[AW] on Windows. */
|
256
|
+
# ifdef HAVE_MBLEN
|
257
|
+
# define CharNext(p) ((p) + mblen((p), RUBY_MBCHAR_MAXSIZE))
|
258
|
+
# else
|
259
|
+
# define CharNext(p) ((p) + 1)
|
260
|
+
# endif
|
261
|
+
#endif
|
262
|
+
|
263
|
+
#if defined DOSISH || defined __CYGWIN__
|
264
|
+
static inline void
|
265
|
+
translit_char(char *p, int from, int to)
|
266
|
+
{
|
267
|
+
while (*p) {
|
268
|
+
if ((unsigned char)*p == from)
|
269
|
+
*p = to;
|
270
|
+
p = CharNext(p);
|
271
|
+
}
|
272
|
+
}
|
273
|
+
#endif
|
274
|
+
|
275
|
+
#endif /* RUBY_EVAL_INTERN_H */
|
@@ -0,0 +1,107 @@
|
|
1
|
+
|
2
|
+
#ifndef RUBY_GC_H
|
3
|
+
#define RUBY_GC_H 1
|
4
|
+
|
5
|
+
#if defined(__x86_64__) && !defined(_ILP32) && defined(__GNUC__) && !defined(__native_client__)
|
6
|
+
#define SET_MACHINE_STACK_END(p) __asm__ __volatile__ ("movq\t%%rsp, %0" : "=r" (*(p)))
|
7
|
+
#elif defined(__i386) && defined(__GNUC__) && !defined(__native_client__)
|
8
|
+
#define SET_MACHINE_STACK_END(p) __asm__ __volatile__ ("movl\t%%esp, %0" : "=r" (*(p)))
|
9
|
+
#else
|
10
|
+
NOINLINE(void rb_gc_set_stack_end(VALUE **stack_end_p));
|
11
|
+
#define SET_MACHINE_STACK_END(p) rb_gc_set_stack_end(p)
|
12
|
+
#define USE_CONSERVATIVE_STACK_END
|
13
|
+
#endif
|
14
|
+
|
15
|
+
/* for GC debug */
|
16
|
+
|
17
|
+
#ifndef RUBY_MARK_FREE_DEBUG
|
18
|
+
#define RUBY_MARK_FREE_DEBUG 0
|
19
|
+
#endif
|
20
|
+
|
21
|
+
#if RUBY_MARK_FREE_DEBUG
|
22
|
+
extern int ruby_gc_debug_indent;
|
23
|
+
|
24
|
+
static inline void
|
25
|
+
rb_gc_debug_indent(void)
|
26
|
+
{
|
27
|
+
printf("%*s", ruby_gc_debug_indent, "");
|
28
|
+
}
|
29
|
+
|
30
|
+
static inline void
|
31
|
+
rb_gc_debug_body(const char *mode, const char *msg, int st, void *ptr)
|
32
|
+
{
|
33
|
+
if (st == 0) {
|
34
|
+
ruby_gc_debug_indent--;
|
35
|
+
}
|
36
|
+
rb_gc_debug_indent();
|
37
|
+
printf("%s: %s %s (%p)\n", mode, st ? "->" : "<-", msg, ptr);
|
38
|
+
|
39
|
+
if (st) {
|
40
|
+
ruby_gc_debug_indent++;
|
41
|
+
}
|
42
|
+
|
43
|
+
fflush(stdout);
|
44
|
+
}
|
45
|
+
|
46
|
+
#define RUBY_MARK_ENTER(msg) rb_gc_debug_body("mark", (msg), 1, ptr)
|
47
|
+
#define RUBY_MARK_LEAVE(msg) rb_gc_debug_body("mark", (msg), 0, ptr)
|
48
|
+
#define RUBY_FREE_ENTER(msg) rb_gc_debug_body("free", (msg), 1, ptr)
|
49
|
+
#define RUBY_FREE_LEAVE(msg) rb_gc_debug_body("free", (msg), 0, ptr)
|
50
|
+
#define RUBY_GC_INFO rb_gc_debug_indent(); printf
|
51
|
+
|
52
|
+
#else
|
53
|
+
#define RUBY_MARK_ENTER(msg)
|
54
|
+
#define RUBY_MARK_LEAVE(msg)
|
55
|
+
#define RUBY_FREE_ENTER(msg)
|
56
|
+
#define RUBY_FREE_LEAVE(msg)
|
57
|
+
#define RUBY_GC_INFO if(0)printf
|
58
|
+
#endif
|
59
|
+
|
60
|
+
#define RUBY_MARK_UNLESS_NULL(ptr) if(RTEST(ptr)){rb_gc_mark(ptr);}
|
61
|
+
#define RUBY_FREE_UNLESS_NULL(ptr) if(ptr){ruby_xfree(ptr);(ptr)=NULL;}
|
62
|
+
|
63
|
+
#if STACK_GROW_DIRECTION > 0
|
64
|
+
# define STACK_UPPER(x, a, b) (a)
|
65
|
+
#elif STACK_GROW_DIRECTION < 0
|
66
|
+
# define STACK_UPPER(x, a, b) (b)
|
67
|
+
#else
|
68
|
+
RUBY_EXTERN int ruby_stack_grow_direction;
|
69
|
+
int ruby_get_stack_grow_direction(volatile VALUE *addr);
|
70
|
+
# define stack_growup_p(x) ( \
|
71
|
+
(ruby_stack_grow_direction ? \
|
72
|
+
ruby_stack_grow_direction : \
|
73
|
+
ruby_get_stack_grow_direction(x)) > 0)
|
74
|
+
# define STACK_UPPER(x, a, b) (stack_growup_p(x) ? (a) : (b))
|
75
|
+
#endif
|
76
|
+
|
77
|
+
#if STACK_GROW_DIRECTION
|
78
|
+
#define STACK_GROW_DIR_DETECTION
|
79
|
+
#define STACK_DIR_UPPER(a,b) STACK_UPPER(0, (a), (b))
|
80
|
+
#else
|
81
|
+
#define STACK_GROW_DIR_DETECTION VALUE stack_grow_dir_detection
|
82
|
+
#define STACK_DIR_UPPER(a,b) STACK_UPPER(&stack_grow_dir_detection, (a), (b))
|
83
|
+
#endif
|
84
|
+
#define IS_STACK_DIR_UPPER() STACK_DIR_UPPER(1,0)
|
85
|
+
|
86
|
+
RUBY_SYMBOL_EXPORT_BEGIN
|
87
|
+
|
88
|
+
/* exports for objspace module */
|
89
|
+
size_t rb_objspace_data_type_memsize(VALUE obj);
|
90
|
+
void rb_objspace_reachable_objects_from(VALUE obj, void (func)(VALUE, void *), void *data);
|
91
|
+
void rb_objspace_reachable_objects_from_root(void (func)(const char *category, VALUE, void *), void *data);
|
92
|
+
int rb_objspace_markable_object_p(VALUE obj);
|
93
|
+
int rb_objspace_internal_object_p(VALUE obj);
|
94
|
+
int rb_objspace_marked_object_p(VALUE obj);
|
95
|
+
int rb_objspace_garbage_object_p(VALUE obj);
|
96
|
+
|
97
|
+
void rb_objspace_each_objects(
|
98
|
+
int (*callback)(void *start, void *end, size_t stride, void *data),
|
99
|
+
void *data);
|
100
|
+
|
101
|
+
void rb_objspace_each_objects_without_setup(
|
102
|
+
int (*callback)(void *, void *, size_t, void *),
|
103
|
+
void *data);
|
104
|
+
|
105
|
+
RUBY_SYMBOL_EXPORT_END
|
106
|
+
|
107
|
+
#endif /* RUBY_GC_H */
|