Home | History | Annotate | Download | only in x87

Lines Matching defs:cc

1008 void LCodeGen::DeoptimizeIf(Condition cc,
1049 if (cc != no_condition) __ j(NegateCondition(cc), &done, Label::kNear);
1056 if (cc != no_condition) __ j(NegateCondition(cc), &done, Label::kNear);
1062 if (cc == no_condition && frame_is_built_) {
1076 if (cc == no_condition) {
1079 __ j(cc, &jump_table_.last().label);
1085 void LCodeGen::DeoptimizeIf(Condition cc,
1090 DeoptimizeIf(cc, environment, bailout_type);
2180 void LCodeGen::EmitBranch(InstrType instr, Condition cc) {
2186 if (right_block == left_block || cc == no_condition) {
2189 __ j(NegateCondition(cc), chunk_->GetAssemblyLabel(right_block));
2191 __ j(cc, chunk_->GetAssemblyLabel(left_block));
2193 __ j(cc, chunk_->GetAssemblyLabel(left_block));
2200 void LCodeGen::EmitFalseBranch(InstrType instr, Condition cc) {
2202 if (cc == no_condition) {
2205 __ j(cc, chunk_->GetAssemblyLabel(false_block));
2389 Condition cc = TokenToCondition(instr->op(), is_unsigned);
2413 cc = CommuteCondition(cc);
2418 EmitBranch(instr, cc);
3977 Condition cc = instr->hydrogen()->allow_equality() ? above : above_equal;
3982 cc = CommuteCondition(cc);
3992 __ j(NegateCondition(cc), &done, Label::kNear);
3996 DeoptimizeIf(cc, instr->environment());