Home | History | Annotate | Download | only in interpreter

Lines Matching full:cond

2639         /* loop_if_true cond(r) target(offset)
2642 only if register cond converts to boolean as true.
2647 int cond = vPC[1].u.operand;
2649 if (callFrame->r(cond).jsValue().toBoolean(callFrame)) {
2659 /* loop_if_true cond(r) target(offset)
2662 only if register cond converts to boolean as false.
2667 int cond = vPC[1].u.operand;
2669 if (!callFrame->r(cond).jsValue().toBoolean(callFrame)) {
2679 /* jtrue cond(r) target(offset)
2682 only if register cond converts to boolean as true.
2684 int cond = vPC[1].u.operand;
2686 if (callFrame->r(cond).jsValue().toBoolean(callFrame)) {
2695 /* jfalse cond(r) target(offset)
2698 only if register cond converts to boolean as false.
2700 int cond = vPC[1].u.operand;
2702 if (!callFrame->r(cond).jsValue().toBoolean(callFrame)) {