Home | History | Annotate | Download | only in x64

Lines Matching defs:cc

680 void LCodeGen::DeoptimizeIf(Condition cc,
698 if (cc != no_condition) {
699 __ j(NegateCondition(cc), &done, Label::kNear);
706 if (cc == no_condition && frame_is_built_) {
720 if (cc == no_condition) {
723 __ j(cc, &jump_table_.last().label);
729 void LCodeGen::DeoptimizeIf(Condition cc,
734 DeoptimizeIf(cc, environment, bailout_type);
1638 Condition cc = masm()->CheckSmi(object);
1639 DeoptimizeIf(cc, instr->environment());
1883 void LCodeGen::EmitBranch(InstrType instr, Condition cc) {
1889 if (right_block == left_block || cc == no_condition) {
1892 __ j(NegateCondition(cc), chunk_->GetAssemblyLabel(right_block));
1894 __ j(cc, chunk_->GetAssemblyLabel(left_block));
1896 __ j(cc, chunk_->GetAssemblyLabel(left_block));
1897 if (cc != always) {
1905 void LCodeGen::EmitFalseBranch(InstrType instr, Condition cc) {
1907 __ j(cc, chunk_->GetAssemblyLabel(false_block));
2112 Condition cc = TokenToCondition(instr->op(), instr->is_double());
2150 cc = ReverseCondition(cc);
2165 EmitBranch(instr, cc);
3955 Condition cc = masm()->CheckSmi(value);
3956 DeoptimizeIf(cc, instr->environment());
4038 void LCodeGen::ApplyCheckIf(Condition cc, LBoundsCheck* check) {
4041 __ j(NegateCondition(cc), &done, Label::kNear);
4045 DeoptimizeIf(cc, check->environment());
4840 Condition cc = masm()->CheckSmi(ToRegister(input));
4841 DeoptimizeIf(NegateCondition(cc), instr->environment());
4848 Condition cc = masm()->CheckSmi(ToRegister(input));
4849 DeoptimizeIf(cc, instr->environment());
5452 Condition cc = masm()->CheckSmi(rax);
5453 DeoptimizeIf(cc, instr->environment());
5493 Condition cc = masm()->CheckSmi(result);
5494 DeoptimizeIf(cc, instr->environment());