From 71986ef6bc232455deca67017873fff0c3cbd860 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sun, 25 Feb 2007 01:34:33 +0000 Subject: * yarvcore.h: rename: rb_iseq_t#file_name -> filename rb_iseq_t#local_tbl -> local_table add: rb_iseq_t#local_table_size * compile.c: separate local_table_size and local_size (local variable size) * blockinlining.c: apply above rename. * compile.h: ditto. * eval.c: ditto. * iseq.c: ditto. * proc.c: ditto. * vm.c: ditto. * vm_dump.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11877 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- yarvcore.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'yarvcore.h') diff --git a/yarvcore.h b/yarvcore.h index f755e21790..dc1963ab62 100644 --- a/yarvcore.h +++ b/yarvcore.h @@ -240,9 +240,12 @@ struct rb_iseq_struct { unsigned int insn_info_size; /* file information where this sequence from */ - VALUE file_name; + VALUE filename; - ID *local_tbl; /* must free */ + ID *local_table; /* must free */ + int local_table_size; + + /* method, class frame: sizeof(vars) + 1, block frame: sizeof(vars) */ int local_size; /* jit compiled or not */ -- cgit v1.2.3