mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	* gc.h (SET_MACHINE_STACK_END): new macro to replace rb_gc_set_stack_end. it find out accurate stack boundary by asm using gcc on x86. * thread.c (rb_gc_set_stack_end): don't define if asm-version SET_MACHINE_STACK_END is available. * gc.c (mark_current_thread): extracted from garbage_collect. it use SET_MACHINE_STACK_END to not scan out of stack area. it notify conservative GC information to valgrind if --enable-valgrind. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12785 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			63 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
 | 
						|
#ifndef RUBY_GC_H
 | 
						|
#define RUBY_GC_H 1
 | 
						|
 | 
						|
#if defined(__i386) && defined(__GNUC__)
 | 
						|
#define SET_MACHINE_STACK_END(p) __asm__("mov %%esp, %0" : "=r" (*p))
 | 
						|
#else
 | 
						|
NOINLINE(void rb_gc_set_stack_end(VALUE **stack_end_p));
 | 
						|
#define SET_MACHINE_STACK_END(p) rb_gc_set_stack_end(p)
 | 
						|
#define USE_CONSERVATIVE_STACK_END
 | 
						|
#endif
 | 
						|
 | 
						|
NOINLINE(void rb_gc_save_machine_context(rb_thread_t *));
 | 
						|
 | 
						|
/* for GC debug */
 | 
						|
 | 
						|
#ifndef RUBY_MARK_FREE_DEBUG
 | 
						|
#define RUBY_MARK_FREE_DEBUG 0
 | 
						|
#endif
 | 
						|
 | 
						|
#if RUBY_MARK_FREE_DEBUG
 | 
						|
extern int ruby_gc_debug_indent = 0;
 | 
						|
 | 
						|
static void
 | 
						|
rb_gc_debug_indent(void)
 | 
						|
{
 | 
						|
    printf("%*s", ruby_gc_debug_indent, "");
 | 
						|
}
 | 
						|
 | 
						|
static void
 | 
						|
rb_gc_debug_body(char *mode, char *msg, int st, void *ptr)
 | 
						|
{
 | 
						|
    if (st == 0) {
 | 
						|
	ruby_gc_debug_indent--;
 | 
						|
    }
 | 
						|
    rb_gc_debug_indent();
 | 
						|
    printf("%s: %s %s (%p)\n", mode, st ? "->" : "<-", msg, ptr);
 | 
						|
 | 
						|
    if (st) {
 | 
						|
	ruby_gc_debug_indent++;
 | 
						|
    }
 | 
						|
 | 
						|
    fflush(stdout);
 | 
						|
}
 | 
						|
 | 
						|
#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
 | 
						|
 | 
						|
#else
 | 
						|
#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
 | 
						|
#endif
 | 
						|
 | 
						|
#define RUBY_MARK_UNLESS_NULL(ptr) if(RTEST(ptr)){rb_gc_mark(ptr);}
 | 
						|
#define RUBY_FREE_UNLESS_NULL(ptr) if(ptr){ruby_xfree(ptr);}
 | 
						|
#endif /* RUBY_GC_H */
 | 
						|
 |