Home | History | Annotate | Download | only in ia32

Lines Matching defs:cc

967 void LCodeGen::DeoptimizeIf(Condition cc,
1008 if (cc != no_condition) __ j(NegateCondition(cc), &done, Label::kNear);
1015 cc != no_condition) __ j(NegateCondition(cc), &done, Label::kNear);
1021 if (cc == no_condition && frame_is_built_) {
1035 if (cc == no_condition) {
1038 __ j(cc, &jump_table_.last().label);
1044 void LCodeGen::DeoptimizeIf(Condition cc,
1049 DeoptimizeIf(cc, environment, bailout_type);
2218 void LCodeGen::EmitBranch(InstrType instr, Condition cc) {
2224 if (right_block == left_block || cc == no_condition) {
2227 __ j(NegateCondition(cc), chunk_->GetAssemblyLabel(right_block));
2229 __ j(cc, chunk_->GetAssemblyLabel(left_block));
2231 __ j(cc, chunk_->GetAssemblyLabel(left_block));
2238 void LCodeGen::EmitFalseBranch(InstrType instr, Condition cc) {
2240 if (cc == no_condition) {
2243 __ j(cc, chunk_->GetAssemblyLabel(false_block));
2450 Condition cc = TokenToCondition(instr->op(), instr->is_double());
2474 cc = ReverseCondition(cc);
2479 EmitBranch(instr, cc);
4469 void LCodeGen::ApplyCheckIf(Condition cc, LBoundsCheck* check) {
4472 __ j(NegateCondition(cc), &done, Label::kNear);
4476 DeoptimizeIf(cc, check->environment());