mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
compile.c: optimization of defined? in condition
* compile.c (compile_branch_condition): trivial optimization of defined? expression in a branch condition, where a string is not needed, but just a boolean. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57381 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2de1dbdffc
commit
f81c1c24b8
1 changed files with 34 additions and 20 deletions
54
compile.c
54
compile.c
|
@ -462,6 +462,8 @@ static int iseq_set_sequence(rb_iseq_t *iseq, LINK_ANCHOR *const anchor);
|
|||
static int iseq_set_exception_table(rb_iseq_t *iseq);
|
||||
static int iseq_set_optargs_table(rb_iseq_t *iseq);
|
||||
|
||||
static int compile_defined_expr(rb_iseq_t *iseq, LINK_ANCHOR *const ret, NODE *node, VALUE needstr);
|
||||
|
||||
/*
|
||||
* To make Array to LinkedList, use link_anchor
|
||||
*/
|
||||
|
@ -2903,8 +2905,12 @@ compile_branch_condition(rb_iseq_t *iseq, LINK_ANCHOR *const ret, NODE *cond,
|
|||
case NODE_FLIP3:
|
||||
CHECK(compile_flip_flop(iseq, ret, cond, FALSE, then_label, else_label));
|
||||
break;
|
||||
case NODE_DEFINED:
|
||||
CHECK(compile_defined_expr(iseq, ret, cond, Qfalse));
|
||||
goto branch;
|
||||
default:
|
||||
CHECK(COMPILE(ret, "branch condition", cond));
|
||||
branch:
|
||||
ADD_INSNL(ret, nd_line(cond), branchunless, else_label);
|
||||
ADD_INSNL(ret, nd_line(cond), jump, then_label);
|
||||
break;
|
||||
|
@ -3705,6 +3711,31 @@ defined_expr(rb_iseq_t *iseq, LINK_ANCHOR *const ret,
|
|||
return done;
|
||||
}
|
||||
|
||||
static int
|
||||
compile_defined_expr(rb_iseq_t *iseq, LINK_ANCHOR *const ret, NODE *node, VALUE needstr)
|
||||
{
|
||||
const int line = nd_line(node);
|
||||
if (!node->nd_head) {
|
||||
VALUE str = rb_iseq_defined_string(DEFINED_NIL);
|
||||
ADD_INSN1(ret, line, putobject, str);
|
||||
}
|
||||
else {
|
||||
LABEL *lfinish[2];
|
||||
LINK_ELEMENT *last = ret->last;
|
||||
lfinish[0] = NEW_LABEL(line);
|
||||
lfinish[1] = 0;
|
||||
defined_expr(iseq, ret, node->nd_head, lfinish, needstr);
|
||||
if (lfinish[1]) {
|
||||
INSERT_ELEM_NEXT(last, &new_insn_body(iseq, line, BIN(putnil), 0)->link);
|
||||
ADD_INSN(ret, line, swap);
|
||||
ADD_INSN(ret, line, pop);
|
||||
ADD_LABEL(ret, lfinish[1]);
|
||||
}
|
||||
ADD_LABEL(ret, lfinish[0]);
|
||||
}
|
||||
return COMPILE_OK;
|
||||
}
|
||||
|
||||
static VALUE
|
||||
make_name_for_block(const rb_iseq_t *orig_iseq)
|
||||
{
|
||||
|
@ -6112,28 +6143,11 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *const ret, NODE *node, int poppe
|
|||
}
|
||||
break;
|
||||
}
|
||||
case NODE_DEFINED:{
|
||||
if (popped) break;
|
||||
if (!node->nd_head) {
|
||||
VALUE str = rb_iseq_defined_string(DEFINED_NIL);
|
||||
ADD_INSN1(ret, nd_line(node), putobject, str);
|
||||
}
|
||||
else {
|
||||
LABEL *lfinish[2];
|
||||
LINK_ELEMENT *last = ret->last;
|
||||
lfinish[0] = NEW_LABEL(line);
|
||||
lfinish[1] = 0;
|
||||
defined_expr(iseq, ret, node->nd_head, lfinish, Qtrue);
|
||||
if (lfinish[1]) {
|
||||
INSERT_ELEM_NEXT(last, &new_insn_body(iseq, line, BIN(putnil), 0)->link);
|
||||
ADD_INSN(ret, line, swap);
|
||||
ADD_INSN(ret, line, pop);
|
||||
ADD_LABEL(ret, lfinish[1]);
|
||||
}
|
||||
ADD_LABEL(ret, lfinish[0]);
|
||||
case NODE_DEFINED:
|
||||
if (!popped) {
|
||||
CHECK(compile_defined_expr(iseq, ret, node, Qtrue));
|
||||
}
|
||||
break;
|
||||
}
|
||||
case NODE_POSTEXE:{
|
||||
/* compiled to:
|
||||
* ONCE{ rb_mRubyVMFrozenCore::core#set_postexe{ ... } }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue