Lines Matching refs:false_target
1838 LabelType* false_target = false_target_in == nullptr ? &fallthrough_target : false_target_in; in GenerateCompareTestAndBranch() local
1847 GenerateLongComparesAndJumps(condition, true_target, false_target); in GenerateCompareTestAndBranch()
1851 GenerateFPJumps(condition, true_target, false_target); in GenerateCompareTestAndBranch()
1855 GenerateFPJumps(condition, true_target, false_target); in GenerateCompareTestAndBranch()
1861 if (false_target != &fallthrough_target) { in GenerateCompareTestAndBranch()
1862 __ jmp(false_target); in GenerateCompareTestAndBranch()
1884 LabelType* false_target) { in GenerateTestAndBranch() argument
1887 if (true_target == nullptr && false_target == nullptr) { in GenerateTestAndBranch()
1898 if (false_target != nullptr) { in GenerateTestAndBranch()
1899 __ jmp(false_target); in GenerateTestAndBranch()
1916 __ j(X86Condition(cond->AsCondition()->GetOppositeCondition()), false_target); in GenerateTestAndBranch()
1929 __ j(kEqual, false_target); in GenerateTestAndBranch()
1943 GenerateCompareTestAndBranch(condition, true_target, false_target); in GenerateTestAndBranch()
1952 __ j(X86Condition(condition->GetOppositeCondition()), false_target); in GenerateTestAndBranch()
1960 if (true_target != nullptr && false_target != nullptr) { in GenerateTestAndBranch()
1961 __ jmp(false_target); in GenerateTestAndBranch()
1977 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf() local
1979 GenerateTestAndBranch(if_instr, /* condition_input_index= */ 0, true_target, false_target); in VisitIf()
2120 NearLabel false_target; in VisitSelect() local
2122 select, /* condition_input_index= */ 2, /* true_target= */ nullptr, &false_target); in VisitSelect()
2124 __ Bind(&false_target); in VisitSelect()