Searched refs:true_target (Results 1 – 10 of 10) sorted by relevance
/art/compiler/optimizing/ |
D | code_generator_x86_64.h | 363 LabelType* true_target, 367 LabelType* true_target,
|
D | code_generator_x86.h | 374 LabelType* true_target, 378 LabelType* true_target,
|
D | code_generator_x86_64.cc | 2218 LabelType* true_target = true_target_in == nullptr ? &fallthrough_target : true_target_in; in GenerateCompareTestAndBranch() local 2228 __ j(X86_64IntegerCondition(condition->GetCondition()), true_target); in GenerateCompareTestAndBranch() 2232 GenerateFPJumps(condition, true_target, false_target); in GenerateCompareTestAndBranch() 2236 GenerateFPJumps(condition, true_target, false_target); in GenerateCompareTestAndBranch() 2268 LabelType* true_target, in GenerateTestAndBranch() argument 2272 if (true_target == nullptr && false_target == nullptr) { in GenerateTestAndBranch() 2278 if (true_target != nullptr) { in GenerateTestAndBranch() 2279 __ jmp(true_target); in GenerateTestAndBranch() 2300 if (true_target == nullptr) { in GenerateTestAndBranch() 2303 __ j(X86_64IntegerCondition(cond->AsCondition()->GetCondition()), true_target); in GenerateTestAndBranch() [all …]
|
D | code_generator_arm_vixl.cc | 2879 vixl32::Label* true_target, in GenerateCompareTestAndBranch() argument 2882 if (true_target == false_target) { in GenerateCompareTestAndBranch() 2883 DCHECK(true_target != nullptr); in GenerateCompareTestAndBranch() 2884 __ B(true_target); in GenerateCompareTestAndBranch() 2892 if (true_target == nullptr) { in GenerateCompareTestAndBranch() 2899 non_fallthrough_target = true_target; in GenerateCompareTestAndBranch() 2918 vixl32::Label* true_target, in GenerateTestAndBranch() argument 2923 if (true_target == nullptr && false_target == nullptr) { in GenerateTestAndBranch() 2929 if (true_target != nullptr) { in GenerateTestAndBranch() 2930 __ B(true_target); in GenerateTestAndBranch() [all …]
|
D | code_generator_arm_vixl.h | 502 vixl::aarch32::Label* true_target, 506 vixl::aarch32::Label* true_target,
|
D | code_generator_arm64.cc | 3802 vixl::aarch64::Label* true_target, in GenerateTestAndBranch() argument 3806 if (true_target == nullptr && false_target == nullptr) { in GenerateTestAndBranch() 3812 if (true_target != nullptr) { in GenerateTestAndBranch() 3813 __ B(true_target); in GenerateTestAndBranch() 3836 if (true_target == nullptr) { in GenerateTestAndBranch() 3839 __ Cbnz(InputRegisterAt(instruction, condition_input_index), true_target); in GenerateTestAndBranch() 3849 if (true_target == nullptr) { in GenerateTestAndBranch() 3853 __ B(ARM64FPCondition(condition->GetCondition(), condition->IsGtBias()), true_target); in GenerateTestAndBranch() 3862 if (true_target == nullptr) { in GenerateTestAndBranch() 3867 non_fallthrough_target = true_target; in GenerateTestAndBranch() [all …]
|
D | code_generator_x86.cc | 2103 LabelType* true_target = true_target_in == nullptr ? &fallthrough_target : true_target_in; in GenerateCompareTestAndBranch() local 2113 GenerateLongComparesAndJumps(condition, true_target, false_target); in GenerateCompareTestAndBranch() 2117 GenerateFPJumps(condition, true_target, false_target); in GenerateCompareTestAndBranch() 2121 GenerateFPJumps(condition, true_target, false_target); in GenerateCompareTestAndBranch() 2153 LabelType* true_target, in GenerateTestAndBranch() argument 2157 if (true_target == nullptr && false_target == nullptr) { in GenerateTestAndBranch() 2163 if (true_target != nullptr) { in GenerateTestAndBranch() 2164 __ jmp(true_target); in GenerateTestAndBranch() 2185 if (true_target == nullptr) { in GenerateTestAndBranch() 2188 __ j(X86Condition(cond->AsCondition()->GetCondition()), true_target); in GenerateTestAndBranch() [all …]
|
D | code_generator_riscv64.cc | 1355 Riscv64Label* true_target, in GenerateTestAndBranch() argument 1359 if (true_target == nullptr && false_target == nullptr) { in GenerateTestAndBranch() 1365 if (true_target != nullptr) { in GenerateTestAndBranch() 1366 __ J(true_target); in GenerateTestAndBranch() 1389 if (true_target == nullptr) { in GenerateTestAndBranch() 1392 __ Bnez(cond_val.AsRegister<XRegister>(), true_target); in GenerateTestAndBranch() 1401 Riscv64Label* branch_target = true_target; in GenerateTestAndBranch() 1403 if (true_target == nullptr) { in GenerateTestAndBranch() 1422 if (true_target != nullptr && false_target != nullptr) { in GenerateTestAndBranch() 3773 Riscv64Label* true_target = codegen_->GoesToNextBlock(instruction->GetBlock(), true_successor) in VisitIf() local [all …]
|
D | code_generator_riscv64.h | 351 Riscv64Label* true_target,
|
D | code_generator_arm64.h | 400 vixl::aarch64::Label* true_target,
|