Home | History | Annotate | Download | only in optimizing

Lines Matching refs:true_target

2808                                                           vixl::Label* true_target,
2815 if (true_target == nullptr && false_target == nullptr) {
2821 if (true_target != nullptr) {
2822 __ B(true_target);
2834 true_target == nullptr && false_target != nullptr
2836 // (2) true_target != nullptr && false_target == nullptr
2837 // - condition true => branch to true_target
2838 // (3) true_target != nullptr && false_target != nullptr
2839 // - condition true => branch to true_target
2845 if (true_target == nullptr) {
2848 __ Cbnz(InputRegisterAt(instruction, condition_input_index), true_target);
2858 if (true_target == nullptr) {
2862 __ B(ARM64FPCondition(condition->GetCondition(), condition->IsGtBias()), true_target);
2871 if (true_target == nullptr) {
2876 non_fallthrough_target = true_target;
2908 // If neither branch falls through (case 3), the conditional branch to `true_target`
2910 if (true_target != nullptr && false_target != nullptr) {
2929 vixl::Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ?
2933 GenerateTestAndBranch(if_instr, /* condition_input_index */ 0, true_target, false_target);