Lines Matching defs:cc
1076 void LCodeGen::DeoptimizeIf(Condition cc, LInstruction* instr,
1121 if (cc != no_condition) __ j(NegateCondition(cc), &done, Label::kNear);
1134 if (cc != no_condition) __ j(NegateCondition(cc), &done, Label::kNear);
1142 if (cc == no_condition && frame_is_built_) {
1156 if (cc == no_condition) {
1159 __ j(cc, &jump_table_.last().label);
1165 void LCodeGen::DeoptimizeIf(Condition cc, LInstruction* instr,
1170 DeoptimizeIf(cc, instr, deopt_reason, bailout_type);
2210 void LCodeGen::EmitBranch(InstrType instr, Condition cc) {
2216 if (right_block == left_block || cc == no_condition) {
2219 __ j(NegateCondition(cc), chunk_->GetAssemblyLabel(right_block));
2221 __ j(cc, chunk_->GetAssemblyLabel(left_block));
2223 __ j(cc, chunk_->GetAssemblyLabel(left_block));
2230 void LCodeGen::EmitTrueBranch(InstrType instr, Condition cc) {
2232 if (cc == no_condition) {
2235 __ j(cc, chunk_->GetAssemblyLabel(true_block));
2241 void LCodeGen::EmitFalseBranch(InstrType instr, Condition cc) {
2243 if (cc == no_condition) {
2246 __ j(cc, chunk_->GetAssemblyLabel(false_block));
2440 Condition cc = TokenToCondition(instr->op(), is_unsigned);
2464 cc = CommuteCondition(cc);
2469 EmitBranch(instr, cc);
4229 Condition cc = instr->hydrogen()->allow_equality() ? above : above_equal;
4234 cc = CommuteCondition(cc);
4244 __ j(NegateCondition(cc), &done, Label::kNear);
4248 DeoptimizeIf(cc, instr, Deoptimizer::kOutOfBounds);