summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-11 08:13:17 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-11 08:13:17 +0000
commit3468cd1ed68ac08b19fffd78442b5de3a622c6ce (patch)
tree32695a86edd90a8c9741bdd69426eee0a409ff97
parent8b49c7158c038dbc8bb13304729a97f4d065f529 (diff)
merge revision(s) 38739: [Backport #7671]
* vm_core.h (rb_iseq_t): move flip_cnt from struct iseq_compile_data, because it has same life span as enclosing iseq. [Bug #7671] [ruby-core:51296] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@38781 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--compile.c5
-rw-r--r--iseq.h1
-rw-r--r--test/ruby/test_flip.rb8
-rw-r--r--version.h2
-rw-r--r--vm_core.h1
6 files changed, 18 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 0f4b87676e..f5aba83442 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Jan 11 17:12:44 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * vm_core.h (rb_iseq_t): move flip_cnt from struct iseq_compile_data,
+ because it has same life span as enclosing iseq. [Bug #7671]
+ [ruby-core:51296]
+
Fri Jan 11 17:11:26 2013 NARUSE, Yui <naruse@ruby-lang.org>
* lib/mkmf.rb: add dummy clean-static target to prevent errors for the
diff --git a/compile.c b/compile.c
index f78d13db78..bbc80e5ef5 100644
--- a/compile.c
+++ b/compile.c
@@ -4844,12 +4844,11 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
LABEL *lend = NEW_LABEL(nd_line(node));
LABEL *lfin = NEW_LABEL(nd_line(node));
LABEL *ltrue = NEW_LABEL(nd_line(node));
- struct iseq_compile_data *data = iseq->local_iseq->compile_data;
+ rb_iseq_t *local_iseq = iseq->local_iseq;
rb_num_t cnt;
VALUE key;
- if (!data) data = iseq->compile_data;
- cnt = data->flip_cnt++ + DEFAULT_SPECIAL_VAR_COUNT;
+ cnt = local_iseq->flip_cnt++ + DEFAULT_SPECIAL_VAR_COUNT;
key = INT2FIX(cnt);
ADD_INSN2(ret, nd_line(node), getspecial, key, INT2FIX(0));
diff --git a/iseq.h b/iseq.h
index 85336d93d8..d07e98bd43 100644
--- a/iseq.h
+++ b/iseq.h
@@ -94,7 +94,6 @@ struct iseq_compile_data {
struct iseq_compile_data_storage *storage_current;
int last_line;
int last_coverable_line;
- int flip_cnt;
int label_no;
int node_level;
const rb_compile_option_t *option;
diff --git a/test/ruby/test_flip.rb b/test/ruby/test_flip.rb
index 8d7cdd03ad..bd14228a8c 100644
--- a/test/ruby/test_flip.rb
+++ b/test/ruby/test_flip.rb
@@ -10,4 +10,12 @@ class TestFlip < Test::Unit::TestCase
2000.times {eval %[(foo..bar) ? 1 : 2]}
end
end
+
+ def test_shared_eval
+ bug7671 = '[ruby-core:51296]'
+ vs = (1..9).to_a
+ vs.select {|n| if n==2..n==16 then 1 end}
+ v = eval("vs.select {|n| if n==3..n==6 then 1 end}")
+ assert_equal([*3..6], v, bug7671)
+ end
end
diff --git a/version.h b/version.h
index 31cdf09240..8b91162071 100644
--- a/version.h
+++ b/version.h
@@ -1,5 +1,5 @@
#define RUBY_VERSION "1.9.3"
-#define RUBY_PATCHLEVEL 366
+#define RUBY_PATCHLEVEL 367
#define RUBY_RELEASE_DATE "2013-01-11"
#define RUBY_RELEASE_YEAR 2013
diff --git a/vm_core.h b/vm_core.h
index ee49704317..dfc0e3c1ef 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -252,6 +252,7 @@ struct rb_iseq_struct {
/* misc */
ID defined_method_id; /* for define_method */
+ rb_num_t flip_cnt;
/* used at compile time */
struct iseq_compile_data *compile_data;