Searched refs:default_block (Results 1 – 5 of 5) sorted by relevance
/aosp12/art/compiler/optimizing/ |
H A D | code_generator_x86.h | 341 HBasicBlock* default_block);
|
H A D | code_generator_x86.cc | 8560 HBasicBlock* default_block) { in GenPackedSwitchWithCompares() argument 8571 __ j(first_condition, codegen_->GetLabelOf(default_block)); in GenPackedSwitchWithCompares() 8599 if (!codegen_->GoesToNextBlock(switch_block, default_block)) { in GenPackedSwitchWithCompares() 8600 __ jmp(codegen_->GetLabelOf(default_block)); in GenPackedSwitchWithCompares() 8634 HBasicBlock* default_block = switch_instr->GetDefaultBlock(); in VisitX86PackedSwitch() local 8641 default_block); in VisitX86PackedSwitch() 8658 __ j(kAbove, codegen_->GetLabelOf(default_block)); in VisitX86PackedSwitch()
|
H A D | code_generator_x86_64.cc | 7645 HBasicBlock* default_block = switch_instr->GetDefaultBlock(); in VisitPackedSwitch() local 7659 __ j(first_condition, codegen_->GetLabelOf(default_block)); in VisitPackedSwitch() 7687 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) { in VisitPackedSwitch() 7688 __ jmp(codegen_->GetLabelOf(default_block)); in VisitPackedSwitch() 7703 __ j(kAbove, codegen_->GetLabelOf(default_block)); in VisitPackedSwitch()
|
H A D | code_generator_arm64.cc | 6313 HBasicBlock* default_block = switch_instr->GetDefaultBlock(); in VisitPackedSwitch() local 6349 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) { in VisitPackedSwitch() 6350 __ B(codegen_->GetLabelOf(default_block)); in VisitPackedSwitch() 6371 __ B(hs, codegen_->GetLabelOf(default_block)); in VisitPackedSwitch()
|
H A D | code_generator_arm_vixl.cc | 9729 HBasicBlock* default_block = switch_instr->GetDefaultBlock(); in VisitPackedSwitch() local 9760 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) { in VisitPackedSwitch() 9761 __ B(codegen_->GetLabelOf(default_block)); in VisitPackedSwitch() 9780 __ B(hi, codegen_->GetLabelOf(default_block)); in VisitPackedSwitch()
|