Searched refs:GoesToNextBlock (Results 1 – 8 of 8) sorted by relevance
/art/compiler/optimizing/ |
D | code_generator.h | 201 bool GoesToNextBlock(HBasicBlock* current, HBasicBlock* next) const;
|
D | code_generator.cc | 312 bool CodeGenerator::GoesToNextBlock(HBasicBlock* current, HBasicBlock* next) const { in GoesToNextBlock() function in art::CodeGenerator
|
D | code_generator_arm64.cc | 3536 if (!codegen_->GoesToNextBlock(block, successor)) { in HandleGoto() 3677 if (codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor)) { in VisitIf() 3681 if (codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor)) { in VisitIf() 5793 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) { in VisitPackedSwitch()
|
D | code_generator_mips64.cc | 3567 if (!codegen_->GoesToNextBlock(block, successor)) { in HandleGoto() 4337 Mips64Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? in VisitIf() 4339 Mips64Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf() 7133 if (!codegen_->GoesToNextBlock(switch_block, default_block)) { in GenPackedSwitchWithCompares()
|
D | code_generator_x86_64.cc | 1479 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { in HandleGoto() 1720 Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? in VisitIf() 1722 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf() 6838 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) { in VisitPackedSwitch()
|
D | code_generator_x86.cc | 1382 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { in HandleGoto() 1703 Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? in VisitIf() 1705 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf() 7446 if (!codegen_->GoesToNextBlock(switch_block, default_block)) { in GenPackedSwitchWithCompares()
|
D | code_generator_arm_vixl.cc | 2833 if (!codegen_->GoesToNextBlock(block, successor)) { in HandleGoto() 3006 vixl32::Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? in VisitIf() 3008 vixl32::Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf() 9226 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) { in VisitPackedSwitch()
|
D | code_generator_mips.cc | 4242 if (!codegen_->GoesToNextBlock(block, successor)) { in HandleGoto() 5805 MipsLabel* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ? in VisitIf() 5807 MipsLabel* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ? in VisitIf() 9378 if (!codegen_->GoesToNextBlock(switch_block, default_block)) { in GenPackedSwitchWithCompares()
|