Searched refs:GoesToNextBlock (Results 1 – 6 of 6) sorted by relevance
/art/compiler/optimizing/ |
D | code_generator.h | 200 bool GoesToNextBlock(HBasicBlock* current, HBasicBlock* next) const;
|
D | code_generator.cc | 308 bool CodeGenerator::GoesToNextBlock(HBasicBlock* current, HBasicBlock* next) const { in GoesToNextBlock() function in art::CodeGenerator
|
D | code_generator_arm64.cc | 3505 if (!codegen_->GoesToNextBlock(block, successor)) { in HandleGoto() 3646 if (codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor)) { in VisitIf() 3650 if (codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor)) { in VisitIf() 6349 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) { in VisitPackedSwitch()
|
D | code_generator_x86_64.cc | 1730 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { in HandleGoto() 1971 Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? in VisitIf() 1973 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf() 7687 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) { in VisitPackedSwitch()
|
D | code_generator_x86.cc | 1654 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { in HandleGoto() 1975 Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? in VisitIf() 1977 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf() 8599 if (!codegen_->GoesToNextBlock(switch_block, default_block)) { in GenPackedSwitchWithCompares()
|
D | code_generator_arm_vixl.cc | 2647 if (!codegen_->GoesToNextBlock(block, successor)) { in HandleGoto() 2820 vixl32::Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? in VisitIf() 2822 vixl32::Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf() 9760 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) { in VisitPackedSwitch()
|