Home | History | Annotate | Download | only in ia32

Lines Matching defs:cc

826 void LCodeGen::DeoptimizeIf(Condition cc,
863 if (cc != no_condition) __ j(NegateCondition(cc), &done, Label::kNear);
869 if (cc == no_condition && frame_is_built_) {
883 if (cc == no_condition) {
886 __ j(cc, &jump_table_.last().label);
892 void LCodeGen::DeoptimizeIf(Condition cc,
897 DeoptimizeIf(cc, environment, bailout_type);
2042 void LCodeGen::EmitBranch(InstrType instr, Condition cc) {
2048 if (right_block == left_block || cc == no_condition) {
2051 __ j(NegateCondition(cc), chunk_->GetAssemblyLabel(right_block));
2053 __ j(cc, chunk_->GetAssemblyLabel(left_block));
2055 __ j(cc, chunk_->GetAssemblyLabel(left_block));
2062 void LCodeGen::EmitFalseBranch(InstrType instr, Condition cc) {
2064 if (cc == no_condition) {
2067 __ j(cc, chunk_->GetAssemblyLabel(false_block));
2256 Condition cc = TokenToCondition(instr->op(), is_unsigned);
2279 cc = CommuteCondition(cc);
2284 EmitBranch(instr, cc);
4067 Condition cc = instr->hydrogen()->allow_equality() ? above : above_equal;
4072 cc = CommuteCondition(cc);
4082 __ j(NegateCondition(cc), &done, Label::kNear);
4086 DeoptimizeIf(cc, instr->environment());