From 85473c481e3d07cf9856b1c73d7c8df1f0062bd8 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 17 Mar 2016 11:55:58 +0000 Subject: * enum.c (ary_inject_op): Extracted from enum_inject. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++ enum.c | 124 +++++++++++++++++++++++++++++++++----------------------------- 2 files changed, 71 insertions(+), 57 deletions(-) diff --git a/ChangeLog b/ChangeLog index ef81b12fc3..1aba531199 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Mar 17 20:55:21 2016 Tanaka Akira + + * enum.c (ary_inject_op): Extracted from enum_inject. + Thu Mar 17 18:39:04 2016 Tanaka Akira * enum.c (enum_inject): Implement the specialized code for sum of diff --git a/enum.c b/enum.c index e2ed920533..b925e54ae0 100644 --- a/enum.c +++ b/enum.c @@ -628,6 +628,72 @@ inject_op_i(RB_BLOCK_CALL_FUNC_ARGLIST(i, p)) return Qnil; } +static VALUE +ary_inject_op(VALUE ary, VALUE init, VALUE op) +{ + ID id; + VALUE v; + long i; + + if (RARRAY_LEN(ary) == 0) + return init == Qundef ? Qnil : init; + + if (init == Qundef) { + v = RARRAY_AREF(ary, 0); + i = 1; + } + else { + v = init; + i = 0; + } + + id = SYM2ID(op); + if (id == idPLUS) { + if (FIXNUM_P(v) && + rb_method_basic_definition_p(rb_cFixnum, idPLUS)) { + long n = FIX2LONG(v); + while (i < RARRAY_LEN(ary)) { + VALUE e = RARRAY_AREF(ary, i); + if (!FIXNUM_P(e)) break; + n += FIX2LONG(e); /* should not overflow long type */ + i++; + if (!FIXABLE(n)) break; + } + v = LONG2NUM(n); + } + if (i < RARRAY_LEN(ary) && (FIXNUM_P(v) || RB_TYPE_P(v, T_BIGNUM)) && + rb_method_basic_definition_p(rb_cFixnum, idPLUS) && + rb_method_basic_definition_p(rb_cBignum, idPLUS)) { + long n = 0; + while (i < RARRAY_LEN(ary)) { + VALUE e = RARRAY_AREF(ary, i); + if (FIXNUM_P(e)) { + n += FIX2LONG(e); /* should not overflow long type */ + i++; + if (!FIXABLE(n)) { + v = rb_big_plus(LONG2NUM(n), v); + n = 0; + } + } + else if (RB_TYPE_P(e, T_BIGNUM)) { + v = rb_big_plus(e, v); + i++; + } + else { + break; + } + } + if (n != 0) { + v = rb_fix_plus(LONG2FIX(n), v); + } + } + } + for (; i obj @@ -706,63 +772,7 @@ enum_inject(int argc, VALUE *argv, VALUE obj) SYMBOL_P(op) && RB_TYPE_P(obj, T_ARRAY) && rb_method_basic_definition_p(CLASS_OF(obj), id_each)) { - VALUE v; - long i; - if (RARRAY_LEN(obj) == 0) - return init == Qundef ? Qnil : init; - if (init == Qundef) { - v = RARRAY_AREF(obj, 0); - i = 1; - } - else { - v = init; - i = 0; - } - id = SYM2ID(op); - if (id == idPLUS) { - if (FIXNUM_P(v) && - rb_method_basic_definition_p(rb_cFixnum, idPLUS)) { - long n = FIX2LONG(v); - while (i < RARRAY_LEN(obj)) { - VALUE e = RARRAY_AREF(obj, i); - if (!FIXNUM_P(e)) break; - n += FIX2LONG(e); /* should not overflow long type */ - i++; - if (!FIXABLE(n)) break; - } - v = LONG2NUM(n); - } - if (i < RARRAY_LEN(obj) && (FIXNUM_P(v) || RB_TYPE_P(v, T_BIGNUM)) && - rb_method_basic_definition_p(rb_cFixnum, idPLUS) && - rb_method_basic_definition_p(rb_cBignum, idPLUS)) { - long n = 0; - while (i < RARRAY_LEN(obj)) { - VALUE e = RARRAY_AREF(obj, i); - if (FIXNUM_P(e)) { - n += FIX2LONG(e); /* should not overflow long type */ - i++; - if (!FIXABLE(n)) { - v = rb_big_plus(LONG2NUM(n), v); - n = 0; - } - } - else if (RB_TYPE_P(e, T_BIGNUM)) { - v = rb_big_plus(e, v); - i++; - } - else { - break; - } - } - if (n != 0) { - v = rb_fix_plus(LONG2FIX(n), v); - } - } - } - for (; i