From d83917ff70053cfb125e7cbad6d5a80795c00b05 Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 8 Dec 2015 15:30:46 +0000 Subject: * compile.c (iseq_ibf_dump): dump extra data just string length. * sample/iseq_loader.rb: add using RubyVM::InstructionSequence.from_binary_format_extra_data method (commented out). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52969 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- sample/iseq_loader.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'sample/iseq_loader.rb') diff --git a/sample/iseq_loader.rb b/sample/iseq_loader.rb index 6c6a67d3c8..2fd9184a7d 100644 --- a/sample/iseq_loader.rb +++ b/sample/iseq_loader.rb @@ -70,7 +70,10 @@ class RubyVM::InstructionSequence $ISEQ_LOADER_LOADED += 1 STDERR.puts "[ISEQ_LOADER] #{Process.pid} load #{fname} from #{iseq_key}" if COMPILE_DEBUG binary = read_compiled_iseq(fname, iseq_key) - RubyVM::InstructionSequence.from_binary_format(binary) + iseq = RubyVM::InstructionSequence.from_binary_format(binary) + # p [extra_data(iseq.path), RubyVM::InstructionSequence.from_binary_format_extra_data(binary)] + # raise unless extra_data(iseq.path) == RubyVM::InstructionSequence.from_binary_format_extra_data(binary) + iseq elsif COMPILE_IF_NOT_COMPILED compile_and_save_iseq(fname, iseq_key) else -- cgit v1.2.3