debase-ruby_core_source 0.6.0 → 0.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/addr2line.h +21 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/constant.h +34 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/debug.h +41 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/dln.h +50 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/encdb.h +167 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/eval_intern.h +234 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/gc.h +99 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/id.h +177 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/insns.inc +179 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/insns_info.inc +695 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/internal.h +242 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/iseq.h +126 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/known_errors.inc +731 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/method.h +105 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/node.h +504 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/node_name.inc +208 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/opt_sc.inc +670 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/optinsn.inc +30 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/optunifs.inc +116 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/parse.h +186 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/regenc.h +219 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/regint.h +850 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/regparse.h +362 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/revision.h +1 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/ruby_atomic.h +175 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/siphash.h +48 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/thread_pthread.h +51 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/thread_win32.h +40 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/timev.h +21 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/transcode_data.h +117 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/transdb.h +189 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/version.h +52 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/vm.inc +3054 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/vm_core.h +763 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/vm_exec.h +184 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/vm_insnhelper.h +220 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/vm_opts.h +51 -0
- data/lib/debase/ruby_core_source/ruby-1.9.3-p550/vmtc.inc +97 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/addr2line.h +21 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/constant.h +36 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/dln.h +50 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/encdb.h +169 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/eval_intern.h +241 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/gc.h +104 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/id.h +135 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/insns.inc +187 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/insns_info.inc +724 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/internal.h +395 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/iseq.h +140 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/known_errors.inc +731 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/method.h +138 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/node.h +541 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/node_name.inc +212 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/opt_sc.inc +702 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/optinsn.inc +83 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/optunifs.inc +120 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/parse.h +181 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/probes_helper.h +67 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/regenc.h +227 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/regint.h +915 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/regparse.h +367 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/revision.h +1 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/ruby_atomic.h +170 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/siphash.h +48 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/thread_pthread.h +56 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/thread_win32.h +45 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/timev.h +21 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/transcode_data.h +127 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/transdb.h +193 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/version.h +52 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/vm.inc +3196 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/vm_core.h +1018 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/vm_debug.h +41 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/vm_exec.h +173 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/vm_insnhelper.h +274 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/vm_opts.h +56 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p594/vmtc.inc +101 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/addr2line.h +21 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/constant.h +36 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/dln.h +51 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/encdb.h +170 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/eval_intern.h +270 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/gc.h +101 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/id.h +171 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/insns.inc +189 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/insns_info.inc +731 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/internal.h +892 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/iseq.h +136 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/known_errors.inc +731 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/method.h +142 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/node.h +543 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/node_name.inc +212 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/opt_sc.inc +710 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/optinsn.inc +83 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/optunifs.inc +121 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/parse.h +183 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/probes_helper.h +67 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/regenc.h +223 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/regint.h +911 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/regparse.h +363 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/revision.h +1 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/ruby_atomic.h +170 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/siphash.h +48 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/thread_native.h +23 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/thread_pthread.h +56 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/thread_win32.h +45 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/timev.h +42 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/transcode_data.h +123 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/transdb.h +193 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/version.h +52 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/vm.inc +3243 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/vm_core.h +1055 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/vm_debug.h +37 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/vm_exec.h +182 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/vm_insnhelper.h +273 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/vm_opts.h +56 -0
- data/lib/debase/ruby_core_source/ruby-2.1.4-p265/vmtc.inc +102 -0
- data/lib/debase/ruby_core_source/version.rb +1 -1
- metadata +119 -2
@@ -0,0 +1,242 @@
|
|
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
|
+
#if defined(__cplusplus)
|
16
|
+
extern "C" {
|
17
|
+
#if 0
|
18
|
+
} /* satisfy cc-mode */
|
19
|
+
#endif
|
20
|
+
#endif
|
21
|
+
|
22
|
+
struct rb_deprecated_classext_struct {
|
23
|
+
char conflict[sizeof(VALUE) * 3];
|
24
|
+
};
|
25
|
+
|
26
|
+
struct rb_classext_struct {
|
27
|
+
VALUE super;
|
28
|
+
struct st_table *iv_tbl;
|
29
|
+
struct st_table *const_tbl;
|
30
|
+
};
|
31
|
+
|
32
|
+
#undef RCLASS_SUPER
|
33
|
+
#define RCLASS_EXT(c) (RCLASS(c)->ptr)
|
34
|
+
#define RCLASS_SUPER(c) (RCLASS_EXT(c)->super)
|
35
|
+
#define RCLASS_IV_TBL(c) (RCLASS_EXT(c)->iv_tbl)
|
36
|
+
#define RCLASS_CONST_TBL(c) (RCLASS_EXT(c)->const_tbl)
|
37
|
+
#define RCLASS_M_TBL(c) (RCLASS(c)->m_tbl)
|
38
|
+
#define RCLASS_IV_INDEX_TBL(c) (RCLASS(c)->iv_index_tbl)
|
39
|
+
|
40
|
+
struct vtm; /* defined by timev.h */
|
41
|
+
|
42
|
+
/* array.c */
|
43
|
+
VALUE rb_ary_last(int, VALUE *, VALUE);
|
44
|
+
|
45
|
+
/* bignum.c */
|
46
|
+
VALUE rb_big_fdiv(VALUE x, VALUE y);
|
47
|
+
VALUE rb_big_uminus(VALUE x);
|
48
|
+
|
49
|
+
/* class.c */
|
50
|
+
VALUE rb_obj_methods(int argc, VALUE *argv, VALUE obj);
|
51
|
+
VALUE rb_obj_protected_methods(int argc, VALUE *argv, VALUE obj);
|
52
|
+
VALUE rb_obj_private_methods(int argc, VALUE *argv, VALUE obj);
|
53
|
+
VALUE rb_obj_public_methods(int argc, VALUE *argv, VALUE obj);
|
54
|
+
int rb_obj_basic_to_s_p(VALUE);
|
55
|
+
void Init_class_hierarchy(void);
|
56
|
+
|
57
|
+
/* compile.c */
|
58
|
+
int rb_dvar_defined(ID);
|
59
|
+
int rb_local_defined(ID);
|
60
|
+
int rb_parse_in_eval(void);
|
61
|
+
int rb_parse_in_main(void);
|
62
|
+
VALUE rb_insns_name_array(void);
|
63
|
+
|
64
|
+
/* cont.c */
|
65
|
+
VALUE rb_obj_is_fiber(VALUE);
|
66
|
+
void rb_fiber_reset_root_local_storage(VALUE);
|
67
|
+
|
68
|
+
/* debug.c */
|
69
|
+
PRINTF_ARGS(void ruby_debug_printf(const char*, ...), 1, 2);
|
70
|
+
|
71
|
+
/* dmyext.c */
|
72
|
+
void Init_ext(void);
|
73
|
+
|
74
|
+
/* encoding.c */
|
75
|
+
ID rb_id_encoding(void);
|
76
|
+
|
77
|
+
/* encoding.c */
|
78
|
+
void rb_gc_mark_encodings(void);
|
79
|
+
|
80
|
+
/* error.c */
|
81
|
+
NORETURN(PRINTF_ARGS(void rb_compile_bug(const char*, int, const char*, ...), 3, 4));
|
82
|
+
VALUE rb_check_backtrace(VALUE);
|
83
|
+
NORETURN(void rb_async_bug_errno(const char *,int));
|
84
|
+
|
85
|
+
/* eval_error.c */
|
86
|
+
void ruby_error_print(void);
|
87
|
+
VALUE rb_get_backtrace(VALUE info);
|
88
|
+
|
89
|
+
/* eval_jump.c */
|
90
|
+
void rb_call_end_proc(VALUE data);
|
91
|
+
|
92
|
+
/* file.c */
|
93
|
+
VALUE rb_home_dir(const char *user, VALUE result);
|
94
|
+
VALUE rb_realpath_internal(VALUE basedir, VALUE path, int strict);
|
95
|
+
VALUE rb_file_expand_path_fast(VALUE, VALUE);
|
96
|
+
VALUE rb_file_expand_path_internal(VALUE, VALUE, int, int, VALUE);
|
97
|
+
void Init_File(void);
|
98
|
+
|
99
|
+
#ifdef _WIN32
|
100
|
+
/* file.c, win32/file.c */
|
101
|
+
void rb_w32_init_file(void);
|
102
|
+
#endif
|
103
|
+
|
104
|
+
/* gc.c */
|
105
|
+
void Init_heap(void);
|
106
|
+
|
107
|
+
/* inits.c */
|
108
|
+
void rb_call_inits(void);
|
109
|
+
|
110
|
+
/* io.c */
|
111
|
+
const char *ruby_get_inplace_mode(void);
|
112
|
+
void ruby_set_inplace_mode(const char *);
|
113
|
+
ssize_t rb_io_bufread(VALUE io, void *buf, size_t size);
|
114
|
+
void rb_stdio_set_default_encoding(void);
|
115
|
+
|
116
|
+
/* iseq.c */
|
117
|
+
VALUE rb_iseq_compile_with_option(VALUE src, VALUE file, VALUE filepath, VALUE line, VALUE opt);
|
118
|
+
VALUE rb_iseq_clone(VALUE iseqval, VALUE newcbase);
|
119
|
+
|
120
|
+
/* load.c */
|
121
|
+
VALUE rb_get_load_path(void);
|
122
|
+
|
123
|
+
/* math.c */
|
124
|
+
VALUE rb_math_atan2(VALUE, VALUE);
|
125
|
+
VALUE rb_math_cos(VALUE);
|
126
|
+
VALUE rb_math_cosh(VALUE);
|
127
|
+
VALUE rb_math_exp(VALUE);
|
128
|
+
VALUE rb_math_hypot(VALUE, VALUE);
|
129
|
+
VALUE rb_math_log(int argc, VALUE *argv);
|
130
|
+
VALUE rb_math_sin(VALUE);
|
131
|
+
VALUE rb_math_sinh(VALUE);
|
132
|
+
VALUE rb_math_sqrt(VALUE);
|
133
|
+
|
134
|
+
/* newline.c */
|
135
|
+
void Init_newline(void);
|
136
|
+
|
137
|
+
/* numeric.c */
|
138
|
+
int rb_num_to_uint(VALUE val, unsigned int *ret);
|
139
|
+
int ruby_float_step(VALUE from, VALUE to, VALUE step, int excl);
|
140
|
+
double ruby_float_mod(double x, double y);
|
141
|
+
VALUE rb_int_succ(VALUE num);
|
142
|
+
VALUE rb_int_pred(VALUE num);
|
143
|
+
|
144
|
+
/* object.c */
|
145
|
+
VALUE rb_obj_equal(VALUE obj1, VALUE obj2);
|
146
|
+
|
147
|
+
/* parse.y */
|
148
|
+
VALUE rb_parser_get_yydebug(VALUE);
|
149
|
+
VALUE rb_parser_set_yydebug(VALUE, VALUE);
|
150
|
+
|
151
|
+
/* proc.c */
|
152
|
+
VALUE rb_proc_location(VALUE self);
|
153
|
+
|
154
|
+
/* rational.c */
|
155
|
+
VALUE rb_lcm(VALUE x, VALUE y);
|
156
|
+
VALUE rb_rational_reciprocal(VALUE x);
|
157
|
+
|
158
|
+
/* re.c */
|
159
|
+
VALUE rb_reg_compile(VALUE str, int options, const char *sourcefile, int sourceline);
|
160
|
+
VALUE rb_reg_check_preprocess(VALUE);
|
161
|
+
|
162
|
+
/* signal.c */
|
163
|
+
int rb_get_next_signal(void);
|
164
|
+
|
165
|
+
/* strftime.c */
|
166
|
+
size_t rb_strftime_timespec(char *s, size_t maxsize, const char *format, const struct vtm *vtm, struct timespec *ts, int gmt);
|
167
|
+
|
168
|
+
/* string.c */
|
169
|
+
int rb_str_buf_cat_escaped_char(VALUE result, unsigned int c, int unicode_p);
|
170
|
+
VALUE rb_str_locktmp_ensure(VALUE str, VALUE (*func)(VALUE), VALUE arg);
|
171
|
+
|
172
|
+
/* struct.c */
|
173
|
+
VALUE rb_struct_init_copy(VALUE copy, VALUE s);
|
174
|
+
|
175
|
+
/* time.c */
|
176
|
+
struct timeval rb_time_timeval(VALUE);
|
177
|
+
|
178
|
+
/* thread.c */
|
179
|
+
VALUE rb_obj_is_mutex(VALUE obj);
|
180
|
+
VALUE ruby_suppress_tracing(VALUE (*func)(VALUE, int), VALUE arg, int always);
|
181
|
+
void rb_thread_execute_interrupts(VALUE th);
|
182
|
+
void rb_clear_trace_func(void);
|
183
|
+
VALUE rb_thread_backtrace(VALUE thval);
|
184
|
+
VALUE rb_get_coverages(void);
|
185
|
+
|
186
|
+
/* thread_pthread.c, thread_win32.c */
|
187
|
+
void Init_native_thread(void);
|
188
|
+
|
189
|
+
/* vm.c */
|
190
|
+
VALUE rb_obj_is_thread(VALUE obj);
|
191
|
+
void rb_vm_mark(void *ptr);
|
192
|
+
void Init_BareVM(void);
|
193
|
+
VALUE rb_vm_top_self(void);
|
194
|
+
void rb_thread_recycle_stack_release(VALUE *);
|
195
|
+
void rb_vm_change_state(void);
|
196
|
+
void rb_vm_inc_const_missing_count(void);
|
197
|
+
void rb_thread_mark(void *th);
|
198
|
+
const void **rb_vm_get_insns_address_table(void);
|
199
|
+
|
200
|
+
/* vm_dump.c */
|
201
|
+
void rb_vm_bugreport(void);
|
202
|
+
|
203
|
+
/* vm_eval.c */
|
204
|
+
void Init_vm_eval(void);
|
205
|
+
VALUE rb_current_realfilepath(void);
|
206
|
+
|
207
|
+
/* vm_method.c */
|
208
|
+
void Init_eval_method(void);
|
209
|
+
|
210
|
+
/* miniprelude.c, prelude.c */
|
211
|
+
void Init_prelude(void);
|
212
|
+
|
213
|
+
#if defined __GNUC__ && __GNUC__ >= 4
|
214
|
+
#pragma GCC visibility push(default)
|
215
|
+
#endif
|
216
|
+
const char *rb_objspace_data_type_name(VALUE obj);
|
217
|
+
|
218
|
+
/* Temporary. This API will be removed (renamed). */
|
219
|
+
VALUE rb_thread_io_blocking_region(rb_blocking_function_t *func, void *data1, int fd);
|
220
|
+
|
221
|
+
/* experimental.
|
222
|
+
* These APIs can be changed on Ruby 1.9.4 or later.
|
223
|
+
* We will change these APIs (spac, name and so on) if there are something wrong.
|
224
|
+
* If you use these APIs, catch up future changes.
|
225
|
+
*/
|
226
|
+
void *rb_thread_call_with_gvl(void *(*func)(void *), void *data1);
|
227
|
+
VALUE rb_thread_call_without_gvl(
|
228
|
+
rb_blocking_function_t *func, void *data1,
|
229
|
+
rb_unblock_function_t *ubf, void *data2);
|
230
|
+
|
231
|
+
#if defined __GNUC__ && __GNUC__ >= 4
|
232
|
+
#pragma GCC visibility pop
|
233
|
+
#endif
|
234
|
+
|
235
|
+
#if defined(__cplusplus)
|
236
|
+
#if 0
|
237
|
+
{ /* satisfy cc-mode */
|
238
|
+
#endif
|
239
|
+
} /* extern "C" { */
|
240
|
+
#endif
|
241
|
+
|
242
|
+
#endif /* RUBY_INTERNAL_H */
|
@@ -0,0 +1,126 @@
|
|
1
|
+
/**********************************************************************
|
2
|
+
|
3
|
+
iseq.h -
|
4
|
+
|
5
|
+
$Author: usa $
|
6
|
+
created at: 04/01/01 23:36:57 JST
|
7
|
+
|
8
|
+
Copyright (C) 2004-2008 Koichi Sasada
|
9
|
+
|
10
|
+
**********************************************************************/
|
11
|
+
|
12
|
+
#ifndef RUBY_COMPILE_H
|
13
|
+
#define RUBY_COMPILE_H
|
14
|
+
|
15
|
+
#if defined __GNUC__ && __GNUC__ >= 4
|
16
|
+
#pragma GCC visibility push(default)
|
17
|
+
#endif
|
18
|
+
|
19
|
+
/* compile.c */
|
20
|
+
VALUE rb_iseq_compile_node(VALUE self, NODE *node);
|
21
|
+
int rb_iseq_translate_threaded_code(rb_iseq_t *iseq);
|
22
|
+
VALUE rb_iseq_build_from_ary(rb_iseq_t *iseq, VALUE locals, VALUE args,
|
23
|
+
VALUE exception, VALUE body);
|
24
|
+
|
25
|
+
/* iseq.c */
|
26
|
+
VALUE rb_iseq_load(VALUE data, VALUE parent, VALUE opt);
|
27
|
+
VALUE rb_iseq_parameters(const rb_iseq_t *iseq, int is_proc);
|
28
|
+
struct st_table *ruby_insn_make_insn_table(void);
|
29
|
+
|
30
|
+
/* proc.c */
|
31
|
+
rb_iseq_t *rb_method_get_iseq(VALUE body);
|
32
|
+
rb_iseq_t *rb_proc_get_iseq(VALUE proc, int *is_proc);
|
33
|
+
|
34
|
+
struct rb_compile_option_struct {
|
35
|
+
int inline_const_cache;
|
36
|
+
int peephole_optimization;
|
37
|
+
int tailcall_optimization;
|
38
|
+
int specialized_instruction;
|
39
|
+
int operands_unification;
|
40
|
+
int instructions_unification;
|
41
|
+
int stack_caching;
|
42
|
+
int trace_instruction;
|
43
|
+
int debug_level;
|
44
|
+
};
|
45
|
+
|
46
|
+
struct iseq_insn_info_entry {
|
47
|
+
unsigned short position;
|
48
|
+
unsigned short line_no;
|
49
|
+
unsigned short sp;
|
50
|
+
};
|
51
|
+
|
52
|
+
struct iseq_catch_table_entry {
|
53
|
+
enum catch_type {
|
54
|
+
CATCH_TYPE_RESCUE,
|
55
|
+
CATCH_TYPE_ENSURE,
|
56
|
+
CATCH_TYPE_RETRY,
|
57
|
+
CATCH_TYPE_BREAK,
|
58
|
+
CATCH_TYPE_REDO,
|
59
|
+
CATCH_TYPE_NEXT
|
60
|
+
} type;
|
61
|
+
VALUE iseq;
|
62
|
+
unsigned long start;
|
63
|
+
unsigned long end;
|
64
|
+
unsigned long cont;
|
65
|
+
unsigned long sp;
|
66
|
+
};
|
67
|
+
|
68
|
+
#define INITIAL_ISEQ_COMPILE_DATA_STORAGE_BUFF_SIZE (512)
|
69
|
+
|
70
|
+
struct iseq_compile_data_storage {
|
71
|
+
struct iseq_compile_data_storage *next;
|
72
|
+
unsigned long pos;
|
73
|
+
unsigned long size;
|
74
|
+
char *buff;
|
75
|
+
};
|
76
|
+
|
77
|
+
struct iseq_compile_data {
|
78
|
+
/* GC is needed */
|
79
|
+
VALUE err_info;
|
80
|
+
VALUE mark_ary;
|
81
|
+
VALUE catch_table_ary; /* Array */
|
82
|
+
|
83
|
+
/* GC is not needed */
|
84
|
+
struct iseq_label_data *start_label;
|
85
|
+
struct iseq_label_data *end_label;
|
86
|
+
struct iseq_label_data *redo_label;
|
87
|
+
VALUE current_block;
|
88
|
+
VALUE ensure_node;
|
89
|
+
VALUE for_iseq;
|
90
|
+
struct iseq_compile_data_ensure_node_stack *ensure_node_stack;
|
91
|
+
int loopval_popped; /* used by NODE_BREAK */
|
92
|
+
int cached_const;
|
93
|
+
struct iseq_compile_data_storage *storage_head;
|
94
|
+
struct iseq_compile_data_storage *storage_current;
|
95
|
+
int last_line;
|
96
|
+
int last_coverable_line;
|
97
|
+
int label_no;
|
98
|
+
int node_level;
|
99
|
+
const rb_compile_option_t *option;
|
100
|
+
#if SUPPORT_JOKE
|
101
|
+
st_table *labels_table;
|
102
|
+
#endif
|
103
|
+
};
|
104
|
+
|
105
|
+
/* defined? */
|
106
|
+
|
107
|
+
enum defined_type {
|
108
|
+
DEFINED_IVAR = 1,
|
109
|
+
DEFINED_IVAR2,
|
110
|
+
DEFINED_GVAR,
|
111
|
+
DEFINED_CVAR,
|
112
|
+
DEFINED_CONST,
|
113
|
+
DEFINED_METHOD,
|
114
|
+
DEFINED_YIELD,
|
115
|
+
DEFINED_REF,
|
116
|
+
DEFINED_ZSUPER,
|
117
|
+
DEFINED_FUNC
|
118
|
+
};
|
119
|
+
|
120
|
+
#define DEFAULT_SPECIAL_VAR_COUNT 2
|
121
|
+
|
122
|
+
#if defined __GNUC__ && __GNUC__ >= 4
|
123
|
+
#pragma GCC visibility pop
|
124
|
+
#endif
|
125
|
+
|
126
|
+
#endif /* RUBY_COMPILE_H */
|