Searched refs:GoesToNextBlock (Results 1 – 9 of 9) sorted by relevance
/art/compiler/optimizing/ |
D | code_generator.h | 196 bool GoesToNextBlock(HBasicBlock* current, HBasicBlock* next) const;
|
D | code_generator.cc | 165 bool CodeGenerator::GoesToNextBlock(HBasicBlock* current, HBasicBlock* next) const { in GoesToNextBlock() function in art::CodeGenerator
|
D | code_generator_arm64.cc | 3538 if (!codegen_->GoesToNextBlock(block, successor)) { in HandleGoto() 3679 if (codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor)) { in VisitIf() 3683 if (codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor)) { in VisitIf() 5799 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) { in VisitPackedSwitch()
|
D | code_generator_mips64.cc | 3335 if (!codegen_->GoesToNextBlock(block, successor)) { in HandleGoto() 3904 Mips64Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? in VisitIf() 3906 Mips64Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf() 6175 if (!codegen_->GoesToNextBlock(switch_block, default_block)) { in GenPackedSwitchWithCompares()
|
D | code_generator_x86_64.cc | 1469 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { in HandleGoto() 1709 Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? in VisitIf() 1711 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf() 6829 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) { in VisitPackedSwitch()
|
D | code_generator_x86.cc | 1366 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { in HandleGoto() 1687 Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? in VisitIf() 1689 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf() 7454 if (!codegen_->GoesToNextBlock(switch_block, default_block)) { in GenPackedSwitchWithCompares()
|
D | code_generator_arm.cc | 2405 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { in HandleGoto() 2677 Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? in VisitIf() 2679 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf() 8589 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) { in VisitPackedSwitch()
|
D | code_generator_arm_vixl.cc | 2440 if (!codegen_->GoesToNextBlock(block, successor)) { in HandleGoto() 2710 vixl32::Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? in VisitIf() 2712 vixl32::Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf() 8732 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) { in VisitPackedSwitch()
|
D | code_generator_mips.cc | 3805 if (!codegen_->GoesToNextBlock(block, successor)) { in HandleGoto() 5153 MipsLabel* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? in VisitIf() 5155 MipsLabel* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf() 8408 if (!codegen_->GoesToNextBlock(switch_block, default_block)) { in GenPackedSwitchWithCompares()
|