debase-ruby_core_source 0.7.7 → 0.7.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/addr2line.h +21 -0
  4. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/constant.h +36 -0
  5. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/dln.h +50 -0
  6. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/encdb.h +169 -0
  7. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/eval_intern.h +241 -0
  8. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/gc.h +104 -0
  9. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/id.h +135 -0
  10. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/insns.inc +187 -0
  11. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/insns_info.inc +724 -0
  12. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/internal.h +395 -0
  13. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/iseq.h +140 -0
  14. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/known_errors.inc +731 -0
  15. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/method.h +141 -0
  16. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/node.h +541 -0
  17. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/node_name.inc +212 -0
  18. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/opt_sc.inc +702 -0
  19. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/optinsn.inc +83 -0
  20. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/optunifs.inc +120 -0
  21. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/parse.h +181 -0
  22. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/probes_helper.h +67 -0
  23. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/regenc.h +227 -0
  24. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/regint.h +915 -0
  25. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/regparse.h +367 -0
  26. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/revision.h +1 -0
  27. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/ruby_atomic.h +170 -0
  28. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/siphash.h +48 -0
  29. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/thread_pthread.h +56 -0
  30. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/thread_win32.h +45 -0
  31. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/timev.h +21 -0
  32. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/transcode_data.h +127 -0
  33. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/transdb.h +193 -0
  34. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/version.h +52 -0
  35. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/vm.inc +3196 -0
  36. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/vm_core.h +1020 -0
  37. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/vm_debug.h +41 -0
  38. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/vm_exec.h +173 -0
  39. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/vm_insnhelper.h +274 -0
  40. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/vm_opts.h +56 -0
  41. data/lib/debase/ruby_core_source/ruby-2.0.0-p643/vmtc.inc +101 -0
  42. data/lib/debase/ruby_core_source/version.rb +1 -1
  43. metadata +41 -2
@@ -0,0 +1,395 @@
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
+ #define MUL_OVERFLOW_SIGNED_INTEGER_P(a, b, min, max) ( \
23
+ (a) == 0 ? 0 : \
24
+ (a) == -1 ? (b) < -(max) : \
25
+ (a) > 0 ? \
26
+ ((b) > 0 ? (max) / (a) < (b) : (min) / (a) > (b)) : \
27
+ ((b) > 0 ? (min) / (a) < (b) : (max) / (a) > (b)))
28
+ #define MUL_OVERFLOW_FIXNUM_P(a, b) MUL_OVERFLOW_SIGNED_INTEGER_P(a, b, FIXNUM_MIN, FIXNUM_MAX)
29
+ #define MUL_OVERFLOW_LONG_P(a, b) MUL_OVERFLOW_SIGNED_INTEGER_P(a, b, LONG_MIN, LONG_MAX)
30
+
31
+ struct rb_deprecated_classext_struct {
32
+ char conflict[sizeof(VALUE) * 3];
33
+ };
34
+
35
+ struct rb_classext_struct {
36
+ VALUE super;
37
+ struct st_table *iv_tbl;
38
+ struct st_table *const_tbl;
39
+ VALUE origin;
40
+ VALUE refined_class;
41
+ rb_alloc_func_t allocator;
42
+ };
43
+
44
+ #undef RCLASS_SUPER
45
+ #define RCLASS_EXT(c) (RCLASS(c)->ptr)
46
+ #define RCLASS_SUPER(c) (RCLASS_EXT(c)->super)
47
+ #define RCLASS_IV_TBL(c) (RCLASS_EXT(c)->iv_tbl)
48
+ #define RCLASS_CONST_TBL(c) (RCLASS_EXT(c)->const_tbl)
49
+ #define RCLASS_M_TBL(c) (RCLASS(c)->m_tbl)
50
+ #define RCLASS_IV_INDEX_TBL(c) (RCLASS(c)->iv_index_tbl)
51
+ #define RCLASS_ORIGIN(c) (RCLASS_EXT(c)->origin)
52
+ #define RCLASS_REFINED_CLASS(c) (RCLASS_EXT(c)->refined_class)
53
+
54
+ struct vtm; /* defined by timev.h */
55
+
56
+ /* array.c */
57
+ VALUE rb_ary_last(int, VALUE *, VALUE);
58
+ void rb_ary_set_len(VALUE, long);
59
+ VALUE rb_ary_cat(VALUE, const VALUE *, long);
60
+ void rb_ary_delete_same(VALUE, VALUE);
61
+
62
+ /* bignum.c */
63
+ VALUE rb_big_fdiv(VALUE x, VALUE y);
64
+ VALUE rb_big_uminus(VALUE x);
65
+ VALUE rb_integer_float_cmp(VALUE x, VALUE y);
66
+ VALUE rb_integer_float_eq(VALUE x, VALUE y);
67
+
68
+ /* class.c */
69
+ VALUE rb_obj_methods(int argc, VALUE *argv, VALUE obj);
70
+ VALUE rb_obj_protected_methods(int argc, VALUE *argv, VALUE obj);
71
+ VALUE rb_obj_private_methods(int argc, VALUE *argv, VALUE obj);
72
+ VALUE rb_obj_public_methods(int argc, VALUE *argv, VALUE obj);
73
+ int rb_obj_basic_to_s_p(VALUE);
74
+ VALUE rb_special_singleton_class(VALUE);
75
+ VALUE rb_singleton_class_clone_and_attach(VALUE obj, VALUE attach);
76
+ void Init_class_hierarchy(void);
77
+
78
+ /* compar.c */
79
+ VALUE rb_invcmp(VALUE, VALUE);
80
+
81
+ /* compile.c */
82
+ int rb_dvar_defined(ID);
83
+ int rb_local_defined(ID);
84
+ int rb_parse_in_eval(void);
85
+ int rb_parse_in_main(void);
86
+ const char * rb_insns_name(int i);
87
+ VALUE rb_insns_name_array(void);
88
+
89
+ /* cont.c */
90
+ VALUE rb_obj_is_fiber(VALUE);
91
+ void rb_fiber_reset_root_local_storage(VALUE);
92
+
93
+ /* debug.c */
94
+ PRINTF_ARGS(void ruby_debug_printf(const char*, ...), 1, 2);
95
+
96
+ /* dmyext.c */
97
+ void Init_ext(void);
98
+
99
+ /* encoding.c */
100
+ ID rb_id_encoding(void);
101
+
102
+ /* encoding.c */
103
+ void rb_gc_mark_encodings(void);
104
+
105
+ /* error.c */
106
+ NORETURN(PRINTF_ARGS(void rb_compile_bug(const char*, int, const char*, ...), 3, 4));
107
+ VALUE rb_check_backtrace(VALUE);
108
+ NORETURN(void rb_async_bug_errno(const char *,int));
109
+ const char *rb_builtin_type_name(int t);
110
+ const char *rb_builtin_class_name(VALUE x);
111
+
112
+ /* eval.c */
113
+ VALUE rb_refinement_module_get_refined_class(VALUE module);
114
+
115
+ /* eval_error.c */
116
+ void ruby_error_print(void);
117
+ VALUE rb_get_backtrace(VALUE info);
118
+
119
+ /* eval_jump.c */
120
+ void rb_call_end_proc(VALUE data);
121
+ void rb_mark_end_proc(void);
122
+
123
+ /* file.c */
124
+ VALUE rb_home_dir(const char *user, VALUE result);
125
+ VALUE rb_realpath_internal(VALUE basedir, VALUE path, int strict);
126
+ void rb_file_const(const char*, VALUE);
127
+ int rb_file_load_ok(const char *);
128
+ VALUE rb_file_expand_path_fast(VALUE, VALUE);
129
+ VALUE rb_file_expand_path_internal(VALUE, VALUE, int, int, VALUE);
130
+ VALUE rb_get_path_check_to_string(VALUE, int);
131
+ VALUE rb_get_path_check_convert(VALUE, VALUE, int);
132
+ void Init_File(void);
133
+
134
+ #ifdef _WIN32
135
+ /* file.c, win32/file.c */
136
+ void rb_w32_init_file(void);
137
+ #endif
138
+
139
+ /* gc.c */
140
+ void Init_heap(void);
141
+ void *ruby_mimmalloc(size_t size);
142
+
143
+ /* inits.c */
144
+ void rb_call_inits(void);
145
+
146
+ /* io.c */
147
+ const char *ruby_get_inplace_mode(void);
148
+ void ruby_set_inplace_mode(const char *);
149
+ ssize_t rb_io_bufread(VALUE io, void *buf, size_t size);
150
+ void rb_stdio_set_default_encoding(void);
151
+ void rb_write_error_str(VALUE mesg);
152
+
153
+ /* iseq.c */
154
+ VALUE rb_iseq_clone(VALUE iseqval, VALUE newcbase);
155
+
156
+ /* load.c */
157
+ VALUE rb_get_load_path(void);
158
+ VALUE rb_get_expanded_load_path(void);
159
+ NORETURN(void rb_load_fail(VALUE, const char*));
160
+
161
+ /* math.c */
162
+ VALUE rb_math_atan2(VALUE, VALUE);
163
+ VALUE rb_math_cos(VALUE);
164
+ VALUE rb_math_cosh(VALUE);
165
+ VALUE rb_math_exp(VALUE);
166
+ VALUE rb_math_hypot(VALUE, VALUE);
167
+ VALUE rb_math_log(int argc, VALUE *argv);
168
+ VALUE rb_math_sin(VALUE);
169
+ VALUE rb_math_sinh(VALUE);
170
+ VALUE rb_math_sqrt(VALUE);
171
+
172
+ /* newline.c */
173
+ void Init_newline(void);
174
+
175
+ /* numeric.c */
176
+ int rb_num_to_uint(VALUE val, unsigned int *ret);
177
+ VALUE num_interval_step_size(VALUE from, VALUE to, VALUE step, int excl);
178
+ int ruby_float_step(VALUE from, VALUE to, VALUE step, int excl);
179
+ double ruby_float_mod(double x, double y);
180
+ int rb_num_negative_p(VALUE);
181
+ VALUE rb_int_succ(VALUE num);
182
+ VALUE rb_int_pred(VALUE num);
183
+
184
+ /* object.c */
185
+ void rb_obj_copy_ivar(VALUE dest, VALUE obj);
186
+ VALUE rb_obj_equal(VALUE obj1, VALUE obj2);
187
+ VALUE rb_class_search_ancestor(VALUE klass, VALUE super);
188
+
189
+ /* parse.y */
190
+ VALUE rb_parser_get_yydebug(VALUE);
191
+ VALUE rb_parser_set_yydebug(VALUE, VALUE);
192
+ int rb_is_const_name(VALUE name);
193
+ int rb_is_class_name(VALUE name);
194
+ int rb_is_global_name(VALUE name);
195
+ int rb_is_instance_name(VALUE name);
196
+ int rb_is_attrset_name(VALUE name);
197
+ int rb_is_local_name(VALUE name);
198
+ int rb_is_method_name(VALUE name);
199
+ int rb_is_junk_name(VALUE name);
200
+ void rb_gc_mark_parser(void);
201
+ void rb_gc_mark_symbols(void);
202
+
203
+ /* proc.c */
204
+ VALUE rb_proc_location(VALUE self);
205
+ st_index_t rb_hash_proc(st_index_t hash, VALUE proc);
206
+
207
+ /* process.c */
208
+ #define RB_MAX_GROUPS (65536)
209
+
210
+ struct rb_execarg {
211
+ int use_shell;
212
+ union {
213
+ struct {
214
+ VALUE shell_script;
215
+ } sh;
216
+ struct {
217
+ VALUE command_name;
218
+ VALUE command_abspath; /* full path string or nil */
219
+ VALUE argv_str;
220
+ VALUE argv_buf;
221
+ } cmd;
222
+ } invoke;
223
+ VALUE redirect_fds;
224
+ VALUE envp_str;
225
+ VALUE envp_buf;
226
+ VALUE dup2_tmpbuf;
227
+ unsigned pgroup_given : 1;
228
+ unsigned umask_given : 1;
229
+ unsigned unsetenv_others_given : 1;
230
+ unsigned unsetenv_others_do : 1;
231
+ unsigned close_others_given : 1;
232
+ unsigned close_others_do : 1;
233
+ unsigned chdir_given : 1;
234
+ unsigned new_pgroup_given : 1;
235
+ unsigned new_pgroup_flag : 1;
236
+ unsigned uid_given : 1;
237
+ unsigned gid_given : 1;
238
+ rb_pid_t pgroup_pgid; /* asis(-1), new pgroup(0), specified pgroup (0<V). */
239
+ VALUE rlimit_limits; /* Qfalse or [[rtype, softlim, hardlim], ...] */
240
+ mode_t umask_mask;
241
+ rb_uid_t uid;
242
+ rb_gid_t gid;
243
+ VALUE fd_dup2;
244
+ VALUE fd_close;
245
+ VALUE fd_open;
246
+ VALUE fd_dup2_child;
247
+ int close_others_maxhint;
248
+ VALUE env_modification; /* Qfalse or [[k1,v1], ...] */
249
+ VALUE chdir_dir;
250
+ };
251
+
252
+ /* argv_str contains extra two elements.
253
+ * The beginning one is for /bin/sh used by exec_with_sh.
254
+ * The last one for terminating NULL used by execve.
255
+ * See rb_exec_fillarg() in process.c. */
256
+ #define ARGVSTR2ARGC(argv_str) (RSTRING_LEN(argv_str) / sizeof(char *) - 2)
257
+ #define ARGVSTR2ARGV(argv_str) ((char **)RSTRING_PTR(argv_str) + 1)
258
+
259
+ rb_pid_t rb_fork_ruby(int *status);
260
+ void rb_last_status_clear(void);
261
+
262
+ /* rational.c */
263
+ VALUE rb_lcm(VALUE x, VALUE y);
264
+ VALUE rb_rational_reciprocal(VALUE x);
265
+
266
+ /* re.c */
267
+ VALUE rb_reg_compile(VALUE str, int options, const char *sourcefile, int sourceline);
268
+ VALUE rb_reg_check_preprocess(VALUE);
269
+
270
+ /* signal.c */
271
+ int rb_get_next_signal(void);
272
+ int rb_sigaltstack_size(void);
273
+
274
+ /* strftime.c */
275
+ #ifdef RUBY_ENCODING_H
276
+ size_t rb_strftime_timespec(char *s, size_t maxsize, const char *format, rb_encoding *enc,
277
+ const struct vtm *vtm, struct timespec *ts, int gmt);
278
+ size_t rb_strftime(char *s, size_t maxsize, const char *format, rb_encoding *enc,
279
+ const struct vtm *vtm, VALUE timev, int gmt);
280
+ #endif
281
+
282
+ /* string.c */
283
+ int rb_str_buf_cat_escaped_char(VALUE result, unsigned int c, int unicode_p);
284
+ int rb_str_symname_p(VALUE);
285
+ VALUE rb_str_quote_unprintable(VALUE);
286
+ VALUE rb_id_quote_unprintable(ID);
287
+ #define QUOTE(str) rb_str_quote_unprintable(str)
288
+ #define QUOTE_ID(id) rb_id_quote_unprintable(id)
289
+ VALUE rb_str_locktmp_ensure(VALUE str, VALUE (*func)(VALUE), VALUE arg);
290
+
291
+ /* struct.c */
292
+ VALUE rb_struct_init_copy(VALUE copy, VALUE s);
293
+
294
+ /* time.c */
295
+ struct timeval rb_time_timeval(VALUE);
296
+
297
+ /* thread.c */
298
+ VALUE rb_obj_is_mutex(VALUE obj);
299
+ VALUE rb_suppress_tracing(VALUE (*func)(VALUE), VALUE arg);
300
+ void rb_thread_execute_interrupts(VALUE th);
301
+ void rb_clear_trace_func(void);
302
+ VALUE rb_get_coverages(void);
303
+ VALUE rb_thread_shield_new(void);
304
+ VALUE rb_thread_shield_wait(VALUE self);
305
+ VALUE rb_thread_shield_release(VALUE self);
306
+ VALUE rb_thread_shield_destroy(VALUE self);
307
+ void rb_mutex_allow_trap(VALUE self, int val);
308
+ VALUE rb_uninterruptible(VALUE (*b_proc)(ANYARGS), VALUE data);
309
+ VALUE rb_mutex_owned_p(VALUE self);
310
+
311
+ /* thread_pthread.c, thread_win32.c */
312
+ void Init_native_thread(void);
313
+
314
+ /* vm.c */
315
+ VALUE rb_obj_is_thread(VALUE obj);
316
+ void rb_vm_mark(void *ptr);
317
+ void Init_BareVM(void);
318
+ VALUE rb_vm_top_self(void);
319
+ void rb_thread_recycle_stack_release(VALUE *);
320
+ void rb_vm_change_state(void);
321
+ void rb_vm_inc_const_missing_count(void);
322
+ void rb_thread_mark(void *th);
323
+ const void **rb_vm_get_insns_address_table(void);
324
+ VALUE rb_sourcefilename(void);
325
+ void rb_vm_pop_cfunc_frame(void);
326
+
327
+ /* vm_dump.c */
328
+ void rb_vm_bugreport(void);
329
+
330
+ /* vm_eval.c */
331
+ void Init_vm_eval(void);
332
+ VALUE rb_current_realfilepath(void);
333
+ VALUE rb_check_block_call(VALUE, ID, int, VALUE *, VALUE (*)(ANYARGS), VALUE);
334
+ typedef void rb_check_funcall_hook(int, VALUE, ID, int, VALUE *, VALUE);
335
+ VALUE rb_check_funcall_with_hook(VALUE recv, ID mid, int argc, VALUE *argv,
336
+ rb_check_funcall_hook *hook, VALUE arg);
337
+
338
+ /* vm_method.c */
339
+ void Init_eval_method(void);
340
+ int rb_method_defined_by(VALUE obj, ID mid, VALUE (*cfunc)(ANYARGS));
341
+
342
+ /* miniprelude.c, prelude.c */
343
+ void Init_prelude(void);
344
+
345
+ /* vm_backtrace.c */
346
+ void Init_vm_backtrace(void);
347
+ VALUE vm_thread_backtrace(int argc, VALUE *argv, VALUE thval);
348
+ VALUE vm_thread_backtrace_locations(int argc, VALUE *argv, VALUE thval);
349
+
350
+ VALUE rb_make_backtrace(void);
351
+ void rb_backtrace_print_as_bugreport(void);
352
+ int rb_backtrace_p(VALUE obj);
353
+ VALUE rb_backtrace_to_str_ary(VALUE obj);
354
+ VALUE rb_vm_backtrace_object();
355
+
356
+ #if defined __GNUC__ && __GNUC__ >= 4
357
+ #pragma GCC visibility push(default)
358
+ #endif
359
+ const char *rb_objspace_data_type_name(VALUE obj);
360
+
361
+ /* Temporary. This API will be removed (renamed). */
362
+ VALUE rb_thread_io_blocking_region(rb_blocking_function_t *func, void *data1, int fd);
363
+
364
+ /* io.c */
365
+ void rb_maygvl_fd_fix_cloexec(int fd);
366
+
367
+ /* process.c */
368
+ int rb_exec_async_signal_safe(const struct rb_execarg *e, char *errmsg, size_t errmsg_buflen);
369
+ 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);
370
+ VALUE rb_execarg_new(int argc, VALUE *argv, int accept_shell);
371
+ struct rb_execarg *rb_execarg_get(VALUE execarg_obj); /* dangerous. needs GC guard. */
372
+ VALUE rb_execarg_init(int argc, VALUE *argv, int accept_shell, VALUE execarg_obj);
373
+ int rb_execarg_addopt(VALUE execarg_obj, VALUE key, VALUE val);
374
+ void rb_execarg_fixup(VALUE execarg_obj);
375
+ int rb_execarg_run_options(const struct rb_execarg *e, struct rb_execarg *s, char* errmsg, size_t errmsg_buflen);
376
+ VALUE rb_execarg_extract_options(VALUE execarg_obj, VALUE opthash);
377
+ void rb_execarg_setenv(VALUE execarg_obj, VALUE env);
378
+
379
+ /* variable.c */
380
+ void rb_gc_mark_global_tbl(void);
381
+ void rb_mark_generic_ivar(VALUE);
382
+ void rb_mark_generic_ivar_tbl(void);
383
+
384
+ #if defined __GNUC__ && __GNUC__ >= 4
385
+ #pragma GCC visibility pop
386
+ #endif
387
+
388
+ #if defined(__cplusplus)
389
+ #if 0
390
+ { /* satisfy cc-mode */
391
+ #endif
392
+ } /* extern "C" { */
393
+ #endif
394
+
395
+ #endif /* RUBY_INTERNAL_H */
@@ -0,0 +1,140 @@
1
+ /**********************************************************************
2
+
3
+ iseq.h -
4
+
5
+ $Author: nagachika $
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
+ void rb_iseq_add_mark_object(rb_iseq_t *iseq, VALUE obj);
27
+ VALUE rb_iseq_load(VALUE data, VALUE parent, VALUE opt);
28
+ VALUE rb_iseq_parameters(const rb_iseq_t *iseq, int is_proc);
29
+ struct st_table *ruby_insn_make_insn_table(void);
30
+ unsigned int rb_iseq_line_no(const rb_iseq_t *iseq, size_t pos);
31
+
32
+ int rb_iseq_line_trace_each(VALUE iseqval, int (*func)(int line, rb_event_flag_t *events_ptr, void *d), void *data);
33
+ VALUE rb_iseq_line_trace_all(VALUE iseqval);
34
+ VALUE rb_iseq_line_trace_specify(VALUE iseqval, VALUE pos, VALUE set);
35
+
36
+ /* proc.c */
37
+ rb_iseq_t *rb_method_get_iseq(VALUE body);
38
+ rb_iseq_t *rb_proc_get_iseq(VALUE proc, int *is_proc);
39
+
40
+ struct rb_compile_option_struct {
41
+ int inline_const_cache;
42
+ int peephole_optimization;
43
+ int tailcall_optimization;
44
+ int specialized_instruction;
45
+ int operands_unification;
46
+ int instructions_unification;
47
+ int stack_caching;
48
+ int trace_instruction;
49
+ int debug_level;
50
+ };
51
+
52
+ struct iseq_line_info_entry {
53
+ unsigned int position;
54
+ unsigned int line_no;
55
+ };
56
+
57
+ struct iseq_catch_table_entry {
58
+ enum catch_type {
59
+ CATCH_TYPE_RESCUE = INT2FIX(1),
60
+ CATCH_TYPE_ENSURE = INT2FIX(2),
61
+ CATCH_TYPE_RETRY = INT2FIX(3),
62
+ CATCH_TYPE_BREAK = INT2FIX(4),
63
+ CATCH_TYPE_REDO = INT2FIX(5),
64
+ CATCH_TYPE_NEXT = INT2FIX(6)
65
+ } type;
66
+ VALUE iseq;
67
+ unsigned long start;
68
+ unsigned long end;
69
+ unsigned long cont;
70
+ unsigned long sp;
71
+ };
72
+
73
+ #define INITIAL_ISEQ_COMPILE_DATA_STORAGE_BUFF_SIZE (512)
74
+
75
+ struct iseq_compile_data_storage {
76
+ struct iseq_compile_data_storage *next;
77
+ unsigned long pos;
78
+ unsigned long size;
79
+ char *buff;
80
+ };
81
+
82
+ struct iseq_compile_data {
83
+ /* GC is needed */
84
+ VALUE err_info;
85
+ VALUE mark_ary;
86
+ VALUE catch_table_ary; /* Array */
87
+
88
+ /* GC is not needed */
89
+ struct iseq_label_data *start_label;
90
+ struct iseq_label_data *end_label;
91
+ struct iseq_label_data *redo_label;
92
+ VALUE current_block;
93
+ VALUE ensure_node;
94
+ VALUE for_iseq;
95
+ struct iseq_compile_data_ensure_node_stack *ensure_node_stack;
96
+ int loopval_popped; /* used by NODE_BREAK */
97
+ int cached_const;
98
+ struct iseq_compile_data_storage *storage_head;
99
+ struct iseq_compile_data_storage *storage_current;
100
+ int last_line;
101
+ int last_coverable_line;
102
+ int label_no;
103
+ int node_level;
104
+ const rb_compile_option_t *option;
105
+ #if SUPPORT_JOKE
106
+ st_table *labels_table;
107
+ #endif
108
+ };
109
+
110
+ /* defined? */
111
+
112
+ enum defined_type {
113
+ DEFINED_NIL = 1,
114
+ DEFINED_IVAR,
115
+ DEFINED_LVAR,
116
+ DEFINED_GVAR,
117
+ DEFINED_CVAR,
118
+ DEFINED_CONST,
119
+ DEFINED_METHOD,
120
+ DEFINED_YIELD,
121
+ DEFINED_ZSUPER,
122
+ DEFINED_SELF,
123
+ DEFINED_TRUE,
124
+ DEFINED_FALSE,
125
+ DEFINED_ASGN,
126
+ DEFINED_EXPR,
127
+ DEFINED_IVAR2,
128
+ DEFINED_REF,
129
+ DEFINED_FUNC
130
+ };
131
+
132
+ VALUE rb_iseq_defined_string(enum defined_type type);
133
+
134
+ #define DEFAULT_SPECIAL_VAR_COUNT 2
135
+
136
+ #if defined __GNUC__ && __GNUC__ >= 4
137
+ #pragma GCC visibility pop
138
+ #endif
139
+
140
+ #endif /* RUBY_COMPILE_H */