Searched refs:GoesToNextBlock (Results 1 – 4 of 4) 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_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_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()
|