[前][次][番号順一覧][スレッド一覧]

ruby-changes:26235

From: nobu <ko1@a...>
Date: Mon, 10 Dec 2012 15:11:30 +0900 (JST)
Subject: [ruby-changes:26235] nobu:r38292 (trunk): compile.c, vm_insnhelper.c: flip-flop without hidden string key

nobu	2012-12-10 15:11:16 +0900 (Mon, 10 Dec 2012)

  New Revision: 38292

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=38292

  Log:
    compile.c, vm_insnhelper.c: flip-flop without hidden string key
    
    * compile.c (iseq_compile_each): count flip-flop state in local iseq
      not in each iseqs, so that the keys can be other than hidden
      strings.  [ruby-core:47253] [Bug #6899]
    * vm_insnhelper.c (lep_svar_get, lep_svar_set, vm_getspecial): store
      flip-flop states in an array instead of a hash.
    * iseq.c (set_relation): main iseq also can has local scope.

  Added files:
    trunk/test/ruby/test_flip.rb
  Modified files:
    trunk/ChangeLog
    trunk/compile.c
    trunk/insns.def
    trunk/iseq.c
    trunk/iseq.h
    trunk/vm_insnhelper.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 38291)
+++ ChangeLog	(revision 38292)
@@ -1,3 +1,14 @@
+Mon Dec 10 15:11:06 2012  Nobuyoshi Nakada  <nobu@r...>
+
+	* compile.c (iseq_compile_each): count flip-flop state in local iseq
+	  not in each iseqs, so that the keys can be other than hidden
+	  strings.  [ruby-core:47253] [Bug #6899]
+
+	* vm_insnhelper.c (lep_svar_get, lep_svar_set, vm_getspecial): store
+	  flip-flop states in an array instead of a hash.
+
+	* iseq.c (set_relation): main iseq also can has local scope.
+
 Mon Dec 10 10:36:12 2012  Narihiro Nakamura  <authornari@g...>
 
 	* lib/irb/magic-file.rb: set a encoding, which is detected from
Index: insns.def
===================================================================
--- insns.def	(revision 38291)
+++ insns.def	(revision 38292)
@@ -95,7 +95,7 @@
  */
 DEFINE_INSN
 getspecial
-(VALUE key, rb_num_t type)
+(rb_num_t key, rb_num_t type)
 ()
 (VALUE val)
 {
@@ -109,7 +109,7 @@
  */
 DEFINE_INSN
 setspecial
-(VALUE key)
+(rb_num_t key)
 (VALUE obj)
 ()
 {
Index: iseq.c
===================================================================
--- iseq.c	(revision 38291)
+++ iseq.c	(revision 38292)
@@ -231,6 +231,10 @@
 	GetISeqPtr(parent, piseq);
 	iseq->parent_iseq = piseq;
     }
+
+    if (type == ISEQ_TYPE_MAIN) {
+	iseq->local_iseq = iseq;
+    }
 }
 
 static VALUE
Index: iseq.h
===================================================================
--- iseq.h	(revision 38291)
+++ iseq.h	(revision 38292)
@@ -131,6 +131,8 @@
 
 VALUE rb_iseq_defined_string(enum defined_type type);
 
+#define DEFAULT_SPECIAL_VAR_COUNT 2
+
 #if defined __GNUC__ && __GNUC__ >= 4
 #pragma GCC visibility pop
 #endif
Index: compile.c
===================================================================
--- compile.c	(revision 38291)
+++ compile.c	(revision 38292)
@@ -4977,12 +4977,14 @@
 	LABEL *lend = NEW_LABEL(nd_line(node));
 	LABEL *lfin = NEW_LABEL(nd_line(node));
 	LABEL *ltrue = NEW_LABEL(nd_line(node));
-	VALUE key = rb_sprintf("flipflag/%s-%p-%d",
-			       RSTRING_PTR(iseq->location.label), (void *)iseq,
-			       iseq->compile_data->flip_cnt++);
+	struct iseq_compile_data *data = iseq->local_iseq->compile_data;
+	rb_num_t cnt;
+	VALUE key;
 
-	hide_obj(key);
-	iseq_add_mark_object_compile_time(iseq, key);
+	if (!data) data = iseq->compile_data;
+	cnt = data->flip_cnt++ + DEFAULT_SPECIAL_VAR_COUNT;
+	key = INT2FIX(cnt);
+
 	ADD_INSN2(ret, nd_line(node), getspecial, key, INT2FIX(0));
 	ADD_INSNL(ret, nd_line(node), branchif, lend);
 
Index: vm_insnhelper.c
===================================================================
--- vm_insnhelper.c	(revision 38291)
+++ vm_insnhelper.c	(revision 38292)
@@ -180,7 +180,7 @@
 }
 
 static VALUE
-lep_svar_get(rb_thread_t *th, VALUE *lep, VALUE key)
+lep_svar_get(rb_thread_t *th, VALUE *lep, rb_num_t key)
 {
     NODE *svar = lep_svar_place(th, lep);
 
@@ -190,20 +190,20 @@
       case 1:
 	return svar->u2.value;
       default: {
-	const VALUE hash = svar->u3.value;
+	const VALUE ary = svar->u3.value;
 
-	if (hash == Qnil) {
+	if (NIL_P(ary)) {
 	    return Qnil;
 	}
 	else {
-	    return rb_hash_lookup(hash, key);
+	    return rb_ary_entry(ary, key - DEFAULT_SPECIAL_VAR_COUNT);
 	}
       }
     }
 }
 
 static void
-lep_svar_set(rb_thread_t *th, VALUE *lep, VALUE key, VALUE val)
+lep_svar_set(rb_thread_t *th, VALUE *lep, rb_num_t key, VALUE val)
 {
     NODE *svar = lep_svar_place(th, lep);
 
@@ -215,27 +215,23 @@
 	svar->u2.value = val;
 	return;
       default: {
-	VALUE hash = svar->u3.value;
+	VALUE ary = svar->u3.value;
 
-	if (hash == Qnil) {
-	    svar->u3.value = hash = rb_hash_new();
+	if (NIL_P(ary)) {
+	    svar->u3.value = ary = rb_ary_new();
 	}
-	rb_hash_aset(hash, key, val);
+	rb_ary_store(ary, key - DEFAULT_SPECIAL_VAR_COUNT, val);
       }
     }
 }
 
 static inline VALUE
-vm_getspecial(rb_thread_t *th, VALUE *lep, VALUE key, rb_num_t type)
+vm_getspecial(rb_thread_t *th, VALUE *lep, rb_num_t key, rb_num_t type)
 {
     VALUE val;
 
     if (type == 0) {
-	VALUE k = key;
-	if (FIXNUM_P(key)) {
-	    k = FIX2INT(key);
-	}
-	val = lep_svar_get(th, lep, k);
+	val = lep_svar_get(th, lep, key);
     }
     else {
 	VALUE backref = lep_svar_get(th, lep, 1);
Index: test/ruby/test_flip.rb
===================================================================
--- test/ruby/test_flip.rb	(revision 0)
+++ test/ruby/test_flip.rb	(revision 38292)
@@ -0,0 +1,13 @@
+require 'test/unit'
+require_relative 'envutil'
+
+class TestFlip < Test::Unit::TestCase
+  def test_hidden_key
+    bug6899 = '[ruby-core:47253]'
+    foo = "foor"
+    bar = "bar"
+    assert_nothing_raised(NotImplementedError, bug6899) do
+      2000.times {eval %[(foo..bar) ? 1 : 2]}
+    end
+  end
+end

Property changes on: test/ruby/test_flip.rb
___________________________________________________________________
Added: svn:eol-style
   + LF


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]