string.c: trivial optimizations
* string.c (rb_str_aset): prefer BUILTIN_TYPE over TYPE after SPECIAL_CONST_P check. * string.c (rb_str_start_with): prefer RB_TYPE_P over switch by TYPE. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63543 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ccdcc7300d
commit
ce2f4f8526
15
string.c
15
string.c
@ -4724,7 +4724,7 @@ rb_str_aset(VALUE str, VALUE indx, VALUE val)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (SPECIAL_CONST_P(indx)) goto generic;
|
if (SPECIAL_CONST_P(indx)) goto generic;
|
||||||
switch (TYPE(indx)) {
|
switch (BUILTIN_TYPE(indx)) {
|
||||||
case T_REGEXP:
|
case T_REGEXP:
|
||||||
rb_str_subpat_set(str, indx, INT2FIX(0), val);
|
rb_str_subpat_set(str, indx, INT2FIX(0), val);
|
||||||
return val;
|
return val;
|
||||||
@ -9628,14 +9628,11 @@ rb_str_start_with(int argc, VALUE *argv, VALUE str)
|
|||||||
|
|
||||||
for (i=0; i<argc; i++) {
|
for (i=0; i<argc; i++) {
|
||||||
VALUE tmp = argv[i];
|
VALUE tmp = argv[i];
|
||||||
switch (TYPE(tmp)) {
|
if (RB_TYPE_P(tmp, T_REGEXP)) {
|
||||||
case T_REGEXP:
|
if (rb_reg_start_with_p(tmp, str))
|
||||||
{
|
return Qtrue;
|
||||||
bool r = rb_reg_start_with_p(tmp, str);
|
}
|
||||||
if (r) return Qtrue;
|
else {
|
||||||
}
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
StringValue(tmp);
|
StringValue(tmp);
|
||||||
rb_enc_check(str, tmp);
|
rb_enc_check(str, tmp);
|
||||||
if (RSTRING_LEN(str) < RSTRING_LEN(tmp)) continue;
|
if (RSTRING_LEN(str) < RSTRING_LEN(tmp)) continue;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user