mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	An instruction is leaf if it has no rb_funcall inside. In order to check this property, we introduce stack canary which is a random number collected at runtime. Stack top is always filled with this number and checked for stack smashing operations, when VM_CHECK_MODE. [GH-1947] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64677 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			67 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/**********************************************************************
 | 
						|
 | 
						|
  inits.c -
 | 
						|
 | 
						|
  $Author$
 | 
						|
  created at: Tue Dec 28 16:01:58 JST 1993
 | 
						|
 | 
						|
  Copyright (C) 1993-2007 Yukihiro Matsumoto
 | 
						|
 | 
						|
**********************************************************************/
 | 
						|
 | 
						|
#include "internal.h"
 | 
						|
 | 
						|
#define CALL(n) {void Init_##n(void); Init_##n();}
 | 
						|
 | 
						|
void
 | 
						|
rb_call_inits(void)
 | 
						|
{
 | 
						|
    CALL(Method);
 | 
						|
    CALL(RandomSeedCore);
 | 
						|
    CALL(sym);
 | 
						|
    CALL(var_tables);
 | 
						|
    CALL(Object);
 | 
						|
    CALL(top_self);
 | 
						|
    CALL(Encoding);
 | 
						|
    CALL(Comparable);
 | 
						|
    CALL(Enumerable);
 | 
						|
    CALL(String);
 | 
						|
    CALL(Exception);
 | 
						|
    CALL(eval);
 | 
						|
    CALL(safe);
 | 
						|
    CALL(jump);
 | 
						|
    CALL(Numeric);
 | 
						|
    CALL(Bignum);
 | 
						|
    CALL(syserr);
 | 
						|
    CALL(Array);
 | 
						|
    CALL(Hash);
 | 
						|
    CALL(Struct);
 | 
						|
    CALL(Regexp);
 | 
						|
    CALL(pack);
 | 
						|
    CALL(transcode);
 | 
						|
    CALL(marshal);
 | 
						|
    CALL(Range);
 | 
						|
    CALL(IO);
 | 
						|
    CALL(Dir);
 | 
						|
    CALL(Time);
 | 
						|
    CALL(Random);
 | 
						|
    CALL(signal);
 | 
						|
    CALL(load);
 | 
						|
    CALL(Proc);
 | 
						|
    CALL(Binding);
 | 
						|
    CALL(Math);
 | 
						|
    CALL(GC);
 | 
						|
    CALL(Enumerator);
 | 
						|
    CALL(VM);
 | 
						|
    CALL(ISeq);
 | 
						|
    CALL(Thread);
 | 
						|
    CALL(process);
 | 
						|
    CALL(Cont);
 | 
						|
    CALL(Rational);
 | 
						|
    CALL(Complex);
 | 
						|
    CALL(version);
 | 
						|
    CALL(vm_trace);
 | 
						|
    CALL(vm_stack_canary);
 | 
						|
    CALL(ast);
 | 
						|
}
 | 
						|
#undef CALL
 |