2006-12-31 18:02:22 +03:00
|
|
|
|
2007-02-05 15:21:01 +03:00
|
|
|
#ifndef RUBY_GC_H
|
|
|
|
#define RUBY_GC_H 1
|
|
|
|
|
2007-07-14 11:19:59 +04:00
|
|
|
#if defined(__i386) && defined(__GNUC__)
|
|
|
|
#define SET_MACHINE_STACK_END(p) __asm__("mov %%esp, %0" : "=r" (*p))
|
|
|
|
#else
|
2007-02-05 15:21:01 +03:00
|
|
|
NOINLINE(void rb_gc_set_stack_end(VALUE **stack_end_p));
|
2007-07-14 11:19:59 +04:00
|
|
|
#define SET_MACHINE_STACK_END(p) rb_gc_set_stack_end(p)
|
|
|
|
#define USE_CONSERVATIVE_STACK_END
|
|
|
|
#endif
|
|
|
|
|
2007-02-05 15:21:01 +03:00
|
|
|
/* for GC debug */
|
|
|
|
|
2007-06-25 06:44:20 +04:00
|
|
|
#ifndef RUBY_MARK_FREE_DEBUG
|
|
|
|
#define RUBY_MARK_FREE_DEBUG 0
|
2006-12-31 18:02:22 +03:00
|
|
|
#endif
|
|
|
|
|
2007-06-25 06:44:20 +04:00
|
|
|
#if RUBY_MARK_FREE_DEBUG
|
2007-12-21 11:13:39 +03:00
|
|
|
extern int ruby_gc_debug_indent;
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
static void
|
|
|
|
rb_gc_debug_indent(void)
|
|
|
|
{
|
2007-06-25 06:44:20 +04:00
|
|
|
printf("%*s", ruby_gc_debug_indent, "");
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rb_gc_debug_body(char *mode, char *msg, int st, void *ptr)
|
|
|
|
{
|
|
|
|
if (st == 0) {
|
2007-06-25 06:44:20 +04:00
|
|
|
ruby_gc_debug_indent--;
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
rb_gc_debug_indent();
|
|
|
|
printf("%s: %s %s (%p)\n", mode, st ? "->" : "<-", msg, ptr);
|
2007-06-25 06:44:20 +04:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
if (st) {
|
2007-06-25 06:44:20 +04:00
|
|
|
ruby_gc_debug_indent++;
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2007-06-25 06:44:20 +04:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
|
2007-06-25 06:44:20 +04:00
|
|
|
#define RUBY_MARK_ENTER(msg) rb_gc_debug_body("mark", msg, 1, ptr)
|
|
|
|
#define RUBY_MARK_LEAVE(msg) rb_gc_debug_body("mark", msg, 0, ptr)
|
|
|
|
#define RUBY_FREE_ENTER(msg) rb_gc_debug_body("free", msg, 1, ptr)
|
|
|
|
#define RUBY_FREE_LEAVE(msg) rb_gc_debug_body("free", msg, 0, ptr)
|
|
|
|
#define RUBY_GC_INFO rb_gc_debug_indent(); printf
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
#else
|
2007-06-25 06:44:20 +04:00
|
|
|
#define RUBY_MARK_ENTER(msg)
|
|
|
|
#define RUBY_MARK_LEAVE(msg)
|
|
|
|
#define RUBY_FREE_ENTER(msg)
|
|
|
|
#define RUBY_FREE_LEAVE(msg)
|
|
|
|
#define RUBY_GC_INFO if(0)printf
|
2006-12-31 18:02:22 +03:00
|
|
|
#endif
|
|
|
|
|
2007-06-25 06:44:20 +04:00
|
|
|
#define RUBY_MARK_UNLESS_NULL(ptr) if(RTEST(ptr)){rb_gc_mark(ptr);}
|
|
|
|
#define RUBY_FREE_UNLESS_NULL(ptr) if(ptr){ruby_xfree(ptr);}
|
2007-02-05 15:21:01 +03:00
|
|
|
#endif /* RUBY_GC_H */
|
|
|
|
|