From d3f73f45d8342e37a814eeb8c98e1d04f451a3b4 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 24 Feb 2010 17:06:15 +0000 Subject: * insns.def: Change the operand type of setinlinecache (OFFSET to IC). This IC must be same as corresponding getinlinecache instruction's IC operand. This change is for a little performance improvement (getting IC directly) and is for the AOT compilation development. * compile.c, iseq.c, insns.def: Change the approach to handling inline cahce (IC) type operand to enable the above change. This change also affects ISeq#to_a method. The inline cache operand will be dumped by fixnum, the index of inline cache, in other words, inline cache identity. * template/insns_info.inc.tmpl, tool/instruction.rb: No need to count inline cache size (insn_iclen()). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26759 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/instruction.rb | 7 ------- 1 file changed, 7 deletions(-) (limited to 'tool') diff --git a/tool/instruction.rb b/tool/instruction.rb index a82ac2ccc0..4fd2127be2 100755 --- a/tool/instruction.rb +++ b/tool/instruction.rb @@ -984,7 +984,6 @@ class RubyVM # operands info operands_info = '' operands_num_info = '' - icoperands_num_info = '' @insns.each{|insn| opes = insn.opes @@ -996,12 +995,6 @@ class RubyVM num = opes.size + 1 operands_num_info << " #{num},\n" - - icnum = 0 - opes.each{|e| - icnum += 1 if e[0] == 'IC' - } - icoperands_num_info << " #{icnum},\n" } # stack num -- cgit v1.2.3