Home
last modified time | relevance | path

Searched refs:false_successor (Results 1 – 6 of 6) sorted by relevance

/art/compiler/optimizing/
Dbounds_check_elimination.cc712 HBasicBlock* false_successor = instruction->IfFalseSuccessor(); in HandleIf() local
714 DCHECK_EQ(false_successor->GetPredecessors().size(), 1u); in HandleIf()
779 ApplyRangeFromComparison(left, block, false_successor, new_range); in HandleIf()
802 ApplyRangeFromComparison(left, block, false_successor, new_range); in HandleIf()
813 left, block, cond == kCondEQ ? true_successor : false_successor, new_range); in HandleIf()
822 left, block, cond == kCondEQ ? false_successor : true_successor, new_range); in HandleIf()
831 left, block, cond == kCondEQ ? true_successor : false_successor, new_range); in HandleIf()
Dcode_generator_arm64.cc3915 HBasicBlock* false_successor = if_instr->IfFalseSuccessor(); in VisitIf() local
3920 vixl::aarch64::Label* false_target = codegen_->GetLabelOf(false_successor); in VisitIf()
3921 if (codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor)) { in VisitIf()
Dcode_generator_riscv64.cc3772 HBasicBlock* false_successor = instruction->IfFalseSuccessor(); in VisitIf() local
3776 Riscv64Label* false_target = codegen_->GoesToNextBlock(instruction->GetBlock(), false_successor) in VisitIf()
3778 : codegen_->GetLabelOf(false_successor); in VisitIf()
Dcode_generator_x86_64.cc2365 HBasicBlock* false_successor = if_instr->IfFalseSuccessor(); in VisitIf() local
2368 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf()
2369 nullptr : codegen_->GetLabelOf(false_successor); in VisitIf()
Dcode_generator_x86.cc2252 HBasicBlock* false_successor = if_instr->IfFalseSuccessor(); in VisitIf() local
2255 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf()
2256 nullptr : codegen_->GetLabelOf(false_successor); in VisitIf()
Dcode_generator_arm_vixl.cc3024 HBasicBlock* false_successor = if_instr->IfFalseSuccessor(); in VisitIf() local
3027 vixl32::Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf()
3028 nullptr : codegen_->GetLabelOf(false_successor); in VisitIf()