Home | History | Annotate | Download | only in optimizing

Lines Matching refs:false_target

2809                                                           vixl::Label* false_target) {
2815 if (true_target == nullptr && false_target == nullptr) {
2826 if (false_target != nullptr) {
2827 __ B(false_target);
2834 false_target != nullptr
2835 // - opposite condition true => branch to false_target
2836 // (2) true_target != nullptr && false_target == nullptr
2838 // (3) true_target != nullptr && false_target != nullptr
2840 // - branch to false_target
2846 __ Cbz(InputRegisterAt(instruction, condition_input_index), false_target);
2860 __ B(ARM64FPCondition(opposite_condition, condition->IsGtBias()), false_target);
2873 non_fallthrough_target = false_target;
2909 // was already emitted (case 2) and we need to emit a jump to `false_target`.
2910 if (true_target != nullptr && false_target != nullptr) {
2911 __ B(false_target);
2931 vixl::Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ?
2933 GenerateTestAndBranch(if_instr, /* condition_input_index */ 0, true_target, false_target);
2950 /* false_target */ nullptr);