cast_off 0.2.1 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. data/README +40 -19
  2. data/README.en +0 -1
  3. data/bin/CastOff +7 -6
  4. data/cast_off.gemspec +2 -2
  5. data/ext/cast_off/cast_off.c.rb +118 -21
  6. data/ext/cast_off/depend +68 -39
  7. data/ext/cast_off/generated_c_include/iter_api.h +1 -1
  8. data/ext/cast_off/generated_c_include/vm_api.h +90 -7
  9. data/ext/cast_off/ruby_source/1.9.2/debug.h +36 -0
  10. data/ext/cast_off/ruby_source/1.9.2/eval_intern.h +232 -0
  11. data/ext/cast_off/ruby_source/1.9.2/gc.h +77 -0
  12. data/ext/cast_off/ruby_source/1.9.2/id.h +170 -0
  13. data/ext/cast_off/ruby_source/{insns.inc → 1.9.2/insns.inc} +0 -0
  14. data/ext/cast_off/ruby_source/{insns_info.inc → 1.9.2/insns_info.inc} +0 -0
  15. data/ext/cast_off/ruby_source/1.9.2/iseq.h +104 -0
  16. data/ext/cast_off/ruby_source/{manual_update.h → 1.9.2/manual_update.h} +0 -0
  17. data/ext/cast_off/ruby_source/1.9.2/method.h +103 -0
  18. data/ext/cast_off/ruby_source/1.9.2/node.h +483 -0
  19. data/ext/cast_off/ruby_source/1.9.2/thread_pthread.h +27 -0
  20. data/ext/cast_off/ruby_source/1.9.2/thread_win32.h +33 -0
  21. data/ext/cast_off/ruby_source/1.9.2/vm_core.h +707 -0
  22. data/ext/cast_off/ruby_source/1.9.2/vm_exec.h +184 -0
  23. data/ext/cast_off/ruby_source/1.9.2/vm_insnhelper.c +1721 -0
  24. data/ext/cast_off/ruby_source/1.9.2/vm_insnhelper.h +208 -0
  25. data/ext/cast_off/ruby_source/1.9.2/vm_opts.h +51 -0
  26. data/ext/cast_off/ruby_source/{atomic.h → 1.9.3/atomic.h} +0 -0
  27. data/ext/cast_off/ruby_source/{constant.h → 1.9.3/constant.h} +0 -0
  28. data/ext/cast_off/ruby_source/{debug.h → 1.9.3/debug.h} +0 -0
  29. data/ext/cast_off/ruby_source/{eval_intern.h → 1.9.3/eval_intern.h} +0 -0
  30. data/ext/cast_off/ruby_source/{gc.h → 1.9.3/gc.h} +0 -0
  31. data/ext/cast_off/ruby_source/{id.h → 1.9.3/id.h} +0 -0
  32. data/ext/cast_off/ruby_source/1.9.3/insns.inc +179 -0
  33. data/ext/cast_off/ruby_source/1.9.3/insns_info.inc +695 -0
  34. data/ext/cast_off/ruby_source/{internal.h → 1.9.3/internal.h} +0 -0
  35. data/ext/cast_off/ruby_source/{iseq.h → 1.9.3/iseq.h} +0 -0
  36. data/ext/cast_off/ruby_source/1.9.3/manual_update.h +135 -0
  37. data/ext/cast_off/ruby_source/{method.h → 1.9.3/method.h} +0 -0
  38. data/ext/cast_off/ruby_source/{node.h → 1.9.3/node.h} +0 -0
  39. data/ext/cast_off/ruby_source/{thread_pthread.h → 1.9.3/thread_pthread.h} +0 -0
  40. data/ext/cast_off/ruby_source/{thread_win32.h → 1.9.3/thread_win32.h} +0 -0
  41. data/ext/cast_off/ruby_source/{vm_core.h → 1.9.3/vm_core.h} +0 -0
  42. data/ext/cast_off/ruby_source/{vm_exec.h → 1.9.3/vm_exec.h} +0 -0
  43. data/ext/cast_off/ruby_source/{vm_insnhelper.c → 1.9.3/vm_insnhelper.c} +0 -0
  44. data/ext/cast_off/ruby_source/{vm_insnhelper.h → 1.9.3/vm_insnhelper.h} +0 -0
  45. data/ext/cast_off/ruby_source/{vm_opts.h → 1.9.3/vm_opts.h} +0 -0
  46. data/lib/cast_off/compile.rb +118 -68
  47. data/lib/cast_off/compile/basicblock.rb +3 -1
  48. data/lib/cast_off/compile/cfg.rb +0 -2
  49. data/lib/cast_off/compile/code_manager.rb +36 -7
  50. data/lib/cast_off/compile/configuration.rb +18 -13
  51. data/lib/cast_off/compile/dependency.rb +32 -11
  52. data/lib/cast_off/compile/information.rb +10 -6
  53. data/lib/cast_off/compile/instruction.rb +0 -11
  54. data/lib/cast_off/compile/ir/call_ir.rb +27 -5
  55. data/lib/cast_off/compile/ir/operand.rb +54 -34
  56. data/lib/cast_off/compile/ir/simple_ir.rb +6 -8
  57. data/lib/cast_off/compile/translator.rb +9 -0
  58. metadata +41 -25
  59. data/ext/cast_off/cast_off.h +0 -24
@@ -61,7 +61,7 @@ static rb_iseq_t *construct_iter_api_iseq(VALUE (*fptr)(ANYARGS), ID mid)
61
61
 
62
62
  rb_ary_push(val, rb_str_new2("<compiled>")); /* name */
63
63
  rb_ary_push(val, rb_str_new2("<compiled>")); /* filename */
64
- rb_ary_push(val, rb_str_new2("<compiled>")); /* filepath */
64
+ rb_ary_push(val, Qnil); /* filepath */
65
65
  rb_ary_push(val, INT2FIX(-1)); /* line_no */
66
66
  rb_ary_push(val, ID2SYM(rb_intern("method"))); /* type */
67
67
 
@@ -580,11 +580,13 @@ static int should_be_call_directly_p(VALUE (*fptr)(ANYARGS))
580
580
  }
581
581
  NOINLINE(static int should_be_call_directly_p(VALUE (*fptr)(ANYARGS)));
582
582
 
583
- #define cast_off_get_constant(klass, id) cast_off_get_ev_const(self, cast_off_orig_iseq->cref_stack, (klass), (id))
583
+ #define cast_off_const_defined(klass, id) cast_off_get_ev_const(self, cast_off_orig_iseq->cref_stack, (klass), (id), 1)
584
+ #define cast_off_get_constant(klass, id) cast_off_get_ev_const(self, cast_off_orig_iseq->cref_stack, (klass), (id), 0)
584
585
  #define cast_off_get_cvar_base() vm_get_cvar_base(cast_off_orig_iseq->cref_stack)
585
586
 
587
+ #if defined(RUBY_1_9_3)
586
588
  static VALUE
587
- cast_off_get_ev_const(VALUE self, NODE *root_cref, VALUE orig_klass, ID id)
589
+ cast_off_get_ev_const(VALUE self, NODE *root_cref, VALUE orig_klass, ID id, int is_defined)
588
590
  {
589
591
  VALUE val;
590
592
 
@@ -615,10 +617,15 @@ search_continue:
615
617
  if (val == Qundef) {
616
618
  if (am == klass) break;
617
619
  am = klass;
620
+ if (is_defined) return 1;
618
621
  rb_autoload_load(klass, id);
619
622
  goto search_continue;
620
623
  } else {
621
- return val;
624
+ if (is_defined) {
625
+ return 1;
626
+ } else {
627
+ return val;
628
+ }
622
629
  }
623
630
  }
624
631
  }
@@ -630,14 +637,90 @@ search_continue:
630
637
  } else {
631
638
  klass = CLASS_OF(self);
632
639
  }
633
- return rb_const_get(klass, id);
640
+ if (is_defined) {
641
+ return rb_const_defined(klass, id);
642
+ } else {
643
+ return rb_const_get(klass, id);
644
+ }
634
645
  } else {
635
646
  vm_check_if_namespace(orig_klass);
636
- return rb_const_get(orig_klass, id); /* FIXME */
637
- /* return rb_public_const_get_from(orig_klass, id); */
647
+ if (is_defined) {
648
+ return rb_const_defined(orig_klass, id); /* FIXME */
649
+ /* return rb_public_const_defined_from(orig_klass, id); */
650
+ } else {
651
+ return rb_const_get(orig_klass, id); /* FIXME */
652
+ /* return rb_public_const_get_from(orig_klass, id); */
653
+ }
654
+ }
655
+ }
656
+ NOINLINE(static VALUE cast_off_get_ev_const(VALUE self, NODE *root_cref, VALUE orig_klass, ID id, int is_defined));
657
+ #elif defined(RUBY_1_9_2)
658
+ static VALUE
659
+ cast_off_get_ev_const(VALUE self, NODE *cref, VALUE orig_klass, ID id, int is_defined)
660
+ {
661
+ VALUE val;
662
+
663
+ if (orig_klass == Qnil) {
664
+ /* in current lexical scope */
665
+ const NODE *root_cref = NULL;
666
+ VALUE klass = orig_klass;
667
+
668
+ while (cref && cref->nd_next) {
669
+ if (!(cref->flags & NODE_FL_CREF_PUSHED_BY_EVAL)) {
670
+ klass = cref->nd_clss;
671
+ if (root_cref == NULL)
672
+ root_cref = cref;
673
+ }
674
+ cref = cref->nd_next;
675
+
676
+ if (!NIL_P(klass)) {
677
+ VALUE am = 0;
678
+ search_continue:
679
+ if (RCLASS_IV_TBL(klass) &&
680
+ st_lookup(RCLASS_IV_TBL(klass), id, &val)) {
681
+ if (val == Qundef) {
682
+ if (am == klass) break;
683
+ am = klass;
684
+ rb_autoload_load(klass, id);
685
+ goto search_continue;
686
+ } else {
687
+ if (is_defined) {
688
+ return 1;
689
+ } else {
690
+ return val;
691
+ }
692
+ }
693
+ }
694
+ }
695
+ }
696
+
697
+ /* search self */
698
+ if (root_cref && !NIL_P(root_cref->nd_clss)) {
699
+ klass = root_cref->nd_clss;
700
+ } else {
701
+ VALUE thval = rb_thread_current();
702
+ rb_thread_t *th = DATA_PTR(thval);
703
+ klass = CLASS_OF(th->cfp->self);
704
+ }
705
+ if (is_defined) {
706
+ return rb_const_defined(klass, id);
707
+ } else {
708
+ return rb_const_get(klass, id);
709
+ }
710
+ }
711
+ else {
712
+ vm_check_if_namespace(orig_klass);
713
+ if (is_defined) {
714
+ return rb_const_defined(orig_klass, id); /* FIXME */
715
+ /* return rb_public_const_defined_from(orig_klass, id); */
716
+ } else {
717
+ return rb_const_get(orig_klass, id); /* FIXME */
718
+ /* return rb_const_get_from(orig_klass, id); */
719
+ }
638
720
  }
639
721
  }
640
- NOINLINE(static VALUE cast_off_get_ev_const(VALUE self, NODE *root_cref, VALUE orig_klass, ID id));
722
+ NOINLINE(static VALUE cast_off_get_ev_const(VALUE self, NODE *cref, VALUE orig_klass, ID id, int is_defined));
723
+ #endif
641
724
 
642
725
  #if 0
643
726
  /* should be mark cache->obj */
@@ -0,0 +1,36 @@
1
+ /**********************************************************************
2
+
3
+ debug.h - YARV Debug function interface
4
+
5
+ $Author: akr $
6
+ created at: 04/08/25 02:33:49 JST
7
+
8
+ Copyright (C) 2004-2007 Koichi Sasada
9
+
10
+ **********************************************************************/
11
+
12
+ #ifndef RUBY_DEBUG_H
13
+ #define RUBY_DEBUG_H
14
+
15
+ #include "ruby/ruby.h"
16
+ #include "node.h"
17
+
18
+ #define dpv(h,v) ruby_debug_print_value(-1, 0, h, v)
19
+ #define dp(v) ruby_debug_print_value(-1, 0, "", v)
20
+ #define dpi(i) ruby_debug_print_id(-1, 0, "", i)
21
+ #define dpn(n) ruby_debug_print_node(-1, 0, "", n)
22
+
23
+ #define bp() ruby_debug_breakpoint()
24
+
25
+ VALUE ruby_debug_print_value(int level, int debug_level, const char *header, VALUE v);
26
+ ID ruby_debug_print_id(int level, int debug_level, const char *header, ID id);
27
+ NODE *ruby_debug_print_node(int level, int debug_level, const char *header, const NODE *node);
28
+ int ruby_debug_print_indent(int level, int debug_level, int indent_level);
29
+ void ruby_debug_breakpoint(void);
30
+ void ruby_debug_gc_check_func(void);
31
+
32
+ #ifdef RUBY_DEBUG_ENV
33
+ void ruby_set_debug_option(const char *str);
34
+ #endif
35
+
36
+ #endif /* RUBY_DEBUG_H */
@@ -0,0 +1,232 @@
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 = GC_GUARDED_PTR_REF((rb_block_t *)(th)->cfp->lfp[0]); \
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
+ #include <crt_externs.h>
32
+ #endif
33
+
34
+ /* Make alloca work the best possible way. */
35
+ #ifdef __GNUC__
36
+ # ifndef atarist
37
+ # ifndef alloca
38
+ # define alloca __builtin_alloca
39
+ # endif
40
+ # endif /* atarist */
41
+ #else
42
+ # ifdef HAVE_ALLOCA_H
43
+ # include <alloca.h>
44
+ # else
45
+ # ifdef _AIX
46
+ #pragma alloca
47
+ # else
48
+ # ifndef alloca /* predefined by HP cc +Olibcalls */
49
+ void *alloca();
50
+ # endif
51
+ # endif /* AIX */
52
+ # endif /* HAVE_ALLOCA_H */
53
+ #endif /* __GNUC__ */
54
+
55
+ #ifndef HAVE_STRING_H
56
+ char *strrchr(const char *, const char);
57
+ #endif
58
+
59
+ #ifdef HAVE_UNISTD_H
60
+ #include <unistd.h>
61
+ #endif
62
+
63
+ #ifdef HAVE_NET_SOCKET_H
64
+ #include <net/socket.h>
65
+ #endif
66
+
67
+ #define ruby_setjmp(env) RUBY_SETJMP(env)
68
+ #define ruby_longjmp(env,val) RUBY_LONGJMP(env,val)
69
+ #ifdef __CYGWIN__
70
+ # ifndef _setjmp
71
+ int _setjmp(jmp_buf);
72
+ # endif
73
+ # ifndef _longjmp
74
+ NORETURN(void _longjmp(jmp_buf, int));
75
+ # endif
76
+ #endif
77
+
78
+ #include <sys/types.h>
79
+ #include <signal.h>
80
+ #include <errno.h>
81
+
82
+ #ifdef HAVE_SYS_SELECT_H
83
+ #include <sys/select.h>
84
+ #endif
85
+
86
+ /*
87
+ Solaris sys/select.h switches select to select_large_fdset to support larger
88
+ file descriptors if FD_SETSIZE is larger than 1024 on 32bit environment.
89
+ But Ruby doesn't change FD_SETSIZE because fd_set is allocated dynamically.
90
+ So following definition is required to use select_large_fdset.
91
+ */
92
+ #ifdef HAVE_SELECT_LARGE_FDSET
93
+ #define select(n, r, w, e, t) select_large_fdset(n, r, w, e, t)
94
+ #endif
95
+
96
+ #ifdef HAVE_SYS_PARAM_H
97
+ #include <sys/param.h>
98
+ #endif
99
+
100
+ #include <sys/stat.h>
101
+
102
+ #define SAVE_ROOT_JMPBUF(th, stmt) do \
103
+ if (ruby_setjmp((th)->root_jmpbuf) == 0) { \
104
+ stmt; \
105
+ } \
106
+ else { \
107
+ rb_fiber_start(); \
108
+ } while (0)
109
+
110
+ #define TH_PUSH_TAG(th) do { \
111
+ rb_thread_t * const _th = th; \
112
+ struct rb_vm_tag _tag; \
113
+ _tag.tag = 0; \
114
+ _tag.prev = _th->tag; \
115
+ _th->tag = &_tag;
116
+
117
+ #define TH_POP_TAG() \
118
+ _th->tag = _tag.prev; \
119
+ } while (0)
120
+
121
+ #define TH_POP_TAG2() \
122
+ _th->tag = _tag.prev
123
+
124
+ #define PUSH_TAG() TH_PUSH_TAG(GET_THREAD())
125
+ #define POP_TAG() TH_POP_TAG()
126
+
127
+ #define TH_EXEC_TAG() ruby_setjmp(_th->tag->buf)
128
+
129
+ #define EXEC_TAG() \
130
+ TH_EXEC_TAG()
131
+
132
+ #define TH_JUMP_TAG(th, st) do { \
133
+ ruby_longjmp(th->tag->buf,(st)); \
134
+ } while (0)
135
+
136
+ #define JUMP_TAG(st) TH_JUMP_TAG(GET_THREAD(), st)
137
+
138
+ enum ruby_tag_type {
139
+ RUBY_TAG_RETURN = 0x1,
140
+ RUBY_TAG_BREAK = 0x2,
141
+ RUBY_TAG_NEXT = 0x3,
142
+ RUBY_TAG_RETRY = 0x4,
143
+ RUBY_TAG_REDO = 0x5,
144
+ RUBY_TAG_RAISE = 0x6,
145
+ RUBY_TAG_THROW = 0x7,
146
+ RUBY_TAG_FATAL = 0x8,
147
+ RUBY_TAG_MASK = 0xf
148
+ };
149
+ #define TAG_RETURN RUBY_TAG_RETURN
150
+ #define TAG_BREAK RUBY_TAG_BREAK
151
+ #define TAG_NEXT RUBY_TAG_NEXT
152
+ #define TAG_RETRY RUBY_TAG_RETRY
153
+ #define TAG_REDO RUBY_TAG_REDO
154
+ #define TAG_RAISE RUBY_TAG_RAISE
155
+ #define TAG_THROW RUBY_TAG_THROW
156
+ #define TAG_FATAL RUBY_TAG_FATAL
157
+ #define TAG_MASK RUBY_TAG_MASK
158
+
159
+ #define NEW_THROW_OBJECT(val, pt, st) \
160
+ ((VALUE)rb_node_newnode(NODE_LIT, (VALUE)(val), (VALUE)(pt), (VALUE)(st)))
161
+ #define SET_THROWOBJ_CATCH_POINT(obj, val) \
162
+ (RNODE((obj))->u2.value = (val))
163
+ #define SET_THROWOBJ_STATE(obj, val) \
164
+ (RNODE((obj))->u3.value = (val))
165
+
166
+ #define GET_THROWOBJ_VAL(obj) ((VALUE)RNODE((obj))->u1.value)
167
+ #define GET_THROWOBJ_CATCH_POINT(obj) ((VALUE*)RNODE((obj))->u2.value)
168
+ #define GET_THROWOBJ_STATE(obj) ((int)RNODE((obj))->u3.value)
169
+
170
+ #define SCOPE_TEST(f) (rb_vm_cref()->nd_visi & (f))
171
+ #define SCOPE_CHECK(f) (rb_vm_cref()->nd_visi == (f))
172
+ #define SCOPE_SET(f) (rb_vm_cref()->nd_visi = (f))
173
+
174
+ #define CHECK_STACK_OVERFLOW(cfp, margin) do \
175
+ if ((VALUE *)((char *)(((VALUE *)(cfp)->sp) + (margin)) + sizeof(rb_control_frame_t)) >= ((VALUE *)cfp)) { \
176
+ rb_exc_raise(sysstack_error); \
177
+ } \
178
+ while (0)
179
+
180
+ void rb_thread_cleanup(void);
181
+ void rb_thread_wait_other_threads(void);
182
+
183
+ enum {
184
+ RAISED_EXCEPTION = 1,
185
+ RAISED_STACKOVERFLOW = 2,
186
+ RAISED_NOMEMORY = 4
187
+ };
188
+ int rb_threadptr_set_raised(rb_thread_t *th);
189
+ int rb_threadptr_reset_raised(rb_thread_t *th);
190
+ #define rb_thread_raised_set(th, f) ((th)->raised_flag |= (f))
191
+ #define rb_thread_raised_reset(th, f) ((th)->raised_flag &= ~(f))
192
+ #define rb_thread_raised_p(th, f) (((th)->raised_flag & (f)) != 0)
193
+ #define rb_thread_raised_clear(th) ((th)->raised_flag = 0)
194
+
195
+ VALUE rb_f_eval(int argc, VALUE *argv, VALUE self);
196
+ VALUE rb_make_exception(int argc, VALUE *argv);
197
+
198
+ NORETURN(void rb_fiber_start(void));
199
+
200
+ NORETURN(void rb_print_undef(VALUE, ID, int));
201
+ NORETURN(void rb_vm_localjump_error(const char *,VALUE, int));
202
+ NORETURN(void rb_vm_jump_tag_but_local_jump(int, VALUE));
203
+ NORETURN(void rb_raise_method_missing(rb_thread_t *th, int argc, VALUE *argv,
204
+ VALUE obj, int call_status));
205
+
206
+ VALUE rb_vm_make_jump_tag_but_local_jump(int state, VALUE val);
207
+ NODE *rb_vm_cref(void);
208
+ VALUE rb_vm_call_cfunc(VALUE recv, VALUE (*func)(VALUE), VALUE arg, const rb_block_t *blockptr, VALUE filename, VALUE filepath);
209
+ void rb_vm_set_progname(VALUE filename);
210
+ void rb_thread_terminate_all(void);
211
+ VALUE rb_vm_top_self();
212
+ VALUE rb_vm_cbase(void);
213
+ int rb_vm_get_sourceline(const rb_control_frame_t *);
214
+ void rb_trap_restore_mask(void);
215
+
216
+ #ifndef CharNext /* defined as CharNext[AW] on Windows. */
217
+ #define CharNext(p) ((p) + mblen(p, RUBY_MBCHAR_MAXSIZE))
218
+ #endif
219
+
220
+ #if defined DOSISH || defined __CYGWIN__
221
+ static inline void
222
+ translit_char(char *p, int from, int to)
223
+ {
224
+ while (*p) {
225
+ if ((unsigned char)*p == from)
226
+ *p = to;
227
+ p = CharNext(p);
228
+ }
229
+ }
230
+ #endif
231
+
232
+ #endif /* RUBY_EVAL_INTERN_H */
@@ -0,0 +1,77 @@
1
+
2
+ #ifndef RUBY_GC_H
3
+ #define RUBY_GC_H 1
4
+
5
+ #if defined(__x86_64__) && defined(__GNUC__)
6
+ #define SET_MACHINE_STACK_END(p) __asm__("movq\t%%rsp, %0" : "=r" (*p))
7
+ #elif defined(__i386) && defined(__GNUC__)
8
+ #define SET_MACHINE_STACK_END(p) __asm__("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 void
25
+ rb_gc_debug_indent(void)
26
+ {
27
+ printf("%*s", ruby_gc_debug_indent, "");
28
+ }
29
+
30
+ static 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
+ #endif /* RUBY_GC_H */