mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	* yarvcore.c: rename cYarvThread to rb_cThread. * gc.c: remove YARV_* prefix. * gc.h: add an include guard and prototype of rb_gc_set_stack_end(). * inits.c: fix to ANSI prototype style and reorder Init_*(). * io.c (pipe_finalize): TODO: comment out last_status. * process.c, yarvcore.h: fix to use yarv_vm_t#last_status instead of rb_last_status and make last_status_get() to access $?. * yarvcore.c (vm_mark): mark yarv_vm_t#last_status. * ruby.h: add declarations of rb_cISeq and rb_cVM. * thread.c: move eval_thread.c codes to thread.c and remove yarv_* function prefix. * thread.c (thread_start_func_2): use yarv_thread_t#first_func if it is not null. * vm.c: fix copyright year. * yarvcore.c (Init_vm): rename to Init_VM(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11631 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			57 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
 | 
						|
#ifndef RUBY_GC_H
 | 
						|
#define RUBY_GC_H 1
 | 
						|
 | 
						|
NOINLINE(void rb_gc_set_stack_end(VALUE **stack_end_p));
 | 
						|
 | 
						|
/* for GC debug */
 | 
						|
 | 
						|
#ifndef MARK_FREE_DEBUG
 | 
						|
#define MARK_FREE_DEBUG 0
 | 
						|
#endif
 | 
						|
 | 
						|
 | 
						|
#if MARK_FREE_DEBUG
 | 
						|
static int g_indent = 0;
 | 
						|
 | 
						|
static void
 | 
						|
rb_gc_debug_indent(void)
 | 
						|
{
 | 
						|
    int i;
 | 
						|
    for (i = 0; i < g_indent; i++) {
 | 
						|
	printf(" ");
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
static void
 | 
						|
rb_gc_debug_body(char *mode, char *msg, int st, void *ptr)
 | 
						|
{
 | 
						|
    if (st == 0) {
 | 
						|
	g_indent--;
 | 
						|
    }
 | 
						|
    rb_gc_debug_indent();
 | 
						|
    printf("%s: %s %s (%p)\n", mode, st ? "->" : "<-", msg, ptr);
 | 
						|
    if (st) {
 | 
						|
	g_indent++;
 | 
						|
    }
 | 
						|
    fflush(stdout);
 | 
						|
}
 | 
						|
 | 
						|
#define MARK_REPORT_ENTER(msg) rb_gc_debug_body("mark", msg, 1, ptr)
 | 
						|
#define MARK_REPORT_LEAVE(msg) rb_gc_debug_body("mark", msg, 0, ptr)
 | 
						|
#define FREE_REPORT_ENTER(msg) rb_gc_debug_body("free", msg, 1, ptr)
 | 
						|
#define FREE_REPORT_LEAVE(msg) rb_gc_debug_body("free", msg, 0, ptr)
 | 
						|
#define GC_INFO                rb_gc_debug_indent(); printf
 | 
						|
 | 
						|
#else
 | 
						|
#define MARK_REPORT_ENTER(msg)
 | 
						|
#define MARK_REPORT_LEAVE(msg)
 | 
						|
#define FREE_REPORT_ENTER(msg)
 | 
						|
#define FREE_REPORT_LEAVE(msg)
 | 
						|
#define GC_INFO if(0)printf
 | 
						|
#endif
 | 
						|
 | 
						|
#define MARK_UNLESS_NULL(ptr) if(ptr){rb_gc_mark(ptr);}
 | 
						|
#define FREE_UNLESS_NULL(ptr) if(ptr){ruby_xfree(ptr);}
 | 
						|
#endif /* RUBY_GC_H */
 | 
						|
 |