ruby-changes:27542
From: nobu <ko1@a...>
Date: Tue, 5 Mar 2013 10:20:36 +0900 (JST)
Subject: [ruby-changes:27542] nobu:r39594 (trunk): enumerator.c: allow Bignum for with_index
nobu 2013-03-05 10:20:20 +0900 (Tue, 05 Mar 2013) New Revision: 39594 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=39594 Log: enumerator.c: allow Bignum for with_index * enumerator.c (enumerator_with_index_i): allow Bignum as offset, to get rid of conversion exception and integer overflow. [ruby-dev:47131] [Bug #8010] Modified files: trunk/ChangeLog trunk/enumerator.c trunk/internal.h trunk/numeric.c trunk/test/ruby/test_enumerator.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 39593) +++ ChangeLog (revision 39594) @@ -1,4 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 -Tue Mar 5 10:19:09 2013 Nobuyoshi Nakada <nobu@r...> +Tue Mar 5 10:20:16 2013 Nobuyoshi Nakada <nobu@r...> + + * enumerator.c (enumerator_with_index_i): allow Bignum as offset, to + get rid of conversion exception and integer overflow. + [ruby-dev:47131] [Bug #8010] * numeric.c (rb_int_succ, rb_int_pred): shortcut optimization for Bignum. Index: enumerator.c =================================================================== --- enumerator.c (revision 39593) +++ enumerator.c (revision 39594) @@ -460,11 +460,9 @@ enumerator_each(int argc, VALUE *argv, V https://github.com/ruby/ruby/blob/trunk/enumerator.c#L460 static VALUE enumerator_with_index_i(VALUE val, VALUE m, int argc, VALUE *argv) { - VALUE idx; VALUE *memo = (VALUE *)m; - - idx = INT2FIX(*memo); - ++*memo; + VALUE idx = *memo; + *memo = rb_int_succ(idx); if (argc <= 1) return rb_yield_values(2, val, idx); @@ -494,7 +492,6 @@ enumerator_with_index(int argc, VALUE *a https://github.com/ruby/ruby/blob/trunk/enumerator.c#L492 rb_scan_args(argc, argv, "01", &memo); RETURN_SIZED_ENUMERATOR(obj, argc, argv, enumerator_size); - memo = NIL_P(memo) ? 0 : (VALUE)NUM2LONG(memo); return enumerator_block_call(obj, enumerator_with_index_i, (VALUE)&memo); } Index: numeric.c =================================================================== --- numeric.c (revision 39593) +++ numeric.c (revision 39594) @@ -2383,8 +2383,8 @@ fix_succ(VALUE num) https://github.com/ruby/ruby/blob/trunk/numeric.c#L2383 * (-1).next #=> 0 */ -static VALUE -int_succ(VALUE num) +VALUE +rb_int_succ(VALUE num) { if (FIXNUM_P(num)) { long i = FIX2LONG(num) + 1; @@ -2396,6 +2396,8 @@ int_succ(VALUE num) https://github.com/ruby/ruby/blob/trunk/numeric.c#L2396 return rb_funcall(num, '+', 1, INT2FIX(1)); } +#define int_succ rb_int_succ + /* * call-seq: * int.pred -> integer @@ -2406,8 +2408,8 @@ int_succ(VALUE num) https://github.com/ruby/ruby/blob/trunk/numeric.c#L2408 * (-1).pred #=> -2 */ -static VALUE -int_pred(VALUE num) +VALUE +rb_int_pred(VALUE num) { if (FIXNUM_P(num)) { long i = FIX2LONG(num) - 1; @@ -2419,6 +2421,8 @@ int_pred(VALUE num) https://github.com/ruby/ruby/blob/trunk/numeric.c#L2421 return rb_funcall(num, '-', 1, INT2FIX(1)); } +#define int_pred rb_int_pred + VALUE rb_enc_uint_chr(unsigned int code, rb_encoding *enc) { Index: internal.h =================================================================== --- internal.h (revision 39593) +++ internal.h (revision 39594) @@ -169,6 +169,8 @@ VALUE num_interval_step_size(VALUE from, https://github.com/ruby/ruby/blob/trunk/internal.h#L169 int ruby_float_step(VALUE from, VALUE to, VALUE step, int excl); double ruby_float_mod(double x, double y); int rb_num_negative_p(VALUE); +VALUE rb_int_succ(VALUE num); +VALUE rb_int_pred(VALUE num); /* object.c */ VALUE rb_obj_equal(VALUE obj1, VALUE obj2); Index: test/ruby/test_enumerator.rb =================================================================== --- test/ruby/test_enumerator.rb (revision 39593) +++ test/ruby/test_enumerator.rb (revision 39594) @@ -104,6 +104,14 @@ class TestEnumerator < Test::Unit::TestC https://github.com/ruby/ruby/blob/trunk/test/ruby/test_enumerator.rb#L104 assert_equal([[1,5],[2,6],[3,7]], @obj.to_enum(:foo, 1, 2, 3).with_index(5).to_a) end + def test_with_index_large_offset + bug8010 = '[ruby-dev:47131] [Bug #8010]' + s = 1 << (8*1.size-2) + assert_equal([[1,s],[2,s+1],[3,s+2]], @obj.to_enum(:foo, 1, 2, 3).with_index(s).to_a, bug8010) + s <<= 1 + assert_equal([[1,s],[2,s+1],[3,s+2]], @obj.to_enum(:foo, 1, 2, 3).with_index(s).to_a, bug8010) + end + def test_with_object obj = [0, 1] ret = (1..10).each.with_object(obj) {|i, memo| -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/