Searched refs:successors (Results 1 – 12 of 12) sorted by relevance
/art/test/510-checker-try-catch/smali/ |
D | Builder.smali | 25 ## CHECK: successors "<<BEnterTry1:B\d+>>" 32 ## CHECK: successors "<<BExitTry1:B\d+>>" 37 ## CHECK: successors "<<BEnterTry2:B\d+>>" 42 ## CHECK: successors "<<BExitTry2:B\d+>>" 48 ## CHECK: successors "<<BReturn:B\d+>>" 58 ## CHECK: successors "<<BReturn>>" 64 ## CHECK: successors "<<BReturn>>" 70 ## CHECK: successors "<<BReturn>>" 76 ## CHECK: successors "<<BTry1>>" 82 ## CHECK: successors "<<BTry2>>" [all …]
|
D | SsaBuilder.smali | 28 ## CHECK-NEXT: successors "<<BAdd:B\d+>>" 34 ## CHECK-NEXT: successors 43 ## CHECK-NEXT: successors "<<BAdd>>"
|
/art/compiler/optimizing/ |
D | pretty_printer.h | 83 const ArenaVector<HBasicBlock*>& successors = block->GetSuccessors(); in VisitBasicBlock() local 84 if (!successors.empty()) { in VisitBasicBlock() 86 for (size_t i = 0; i < successors.size() - 1; i++) { in VisitBasicBlock() 87 PrintInt(successors[i]->GetBlockId()); in VisitBasicBlock() 90 PrintInt(successors.back()->GetBlockId()); in VisitBasicBlock()
|
D | code_generator_arm64.cc | 564 const ArenaVector<HBasicBlock*>& successors = switch_instr_->GetBlock()->GetSuccessors(); in EmitTable() local 566 vixl::Label* target_label = codegen->GetLabelOf(successors[i]); in EmitTable() 4765 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors(); in VisitPackedSwitch() local 4767 __ B(eq, codegen_->GetLabelOf(successors[0])); in VisitPackedSwitch() 4772 __ B(lo, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch() 4774 __ B(eq, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch() 4779 __ B(eq, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
|
D | code_generator_mips64.cc | 4157 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors(); in VisitPackedSwitch() local 4159 __ Beqzc(temp_reg, codegen_->GetLabelOf(successors[0])); in VisitPackedSwitch() 4164 __ Bltzc(temp_reg, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch() 4166 __ Beqzc(temp_reg, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch() 4171 __ Beqzc(temp_reg, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
|
D | code_generator_x86_64.cc | 6495 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors(); in VisitPackedSwitch() local 6500 __ j(kEqual, codegen_->GetLabelOf(successors[0])); in VisitPackedSwitch() 6514 __ j(first_condition, codegen_->GetLabelOf(successors[index])); in VisitPackedSwitch() 6516 __ j(kEqual, codegen_->GetLabelOf(successors[index + 1])); in VisitPackedSwitch() 6523 __ j(kEqual, codegen_->GetLabelOf(successors[index])); in VisitPackedSwitch() 6686 const ArenaVector<HBasicBlock*>& successors = block->GetSuccessors(); in CreateJumpTable() local 6689 HBasicBlock* b = successors[i]; in CreateJumpTable()
|
D | code_generator_arm.cc | 6660 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors(); in VisitPackedSwitch() local 6662 __ b(codegen_->GetLabelOf(successors[0]), EQ); in VisitPackedSwitch() 6667 __ b(codegen_->GetLabelOf(successors[last_index + 1]), LO); in VisitPackedSwitch() 6669 __ b(codegen_->GetLabelOf(successors[last_index + 2]), EQ); in VisitPackedSwitch() 6674 __ b(codegen_->GetLabelOf(successors[last_index + 1]), EQ); in VisitPackedSwitch() 6687 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors(); in VisitPackedSwitch() local 6689 labels[i] = codegen_->GetLabelOf(successors[i]); in VisitPackedSwitch()
|
D | code_generator_x86.cc | 7023 const ArenaVector<HBasicBlock*>& successors = switch_block->GetSuccessors(); in GenPackedSwitchWithCompares() local 7028 __ j(kEqual, codegen_->GetLabelOf(successors[0])); in GenPackedSwitchWithCompares() 7042 __ j(first_condition, codegen_->GetLabelOf(successors[index])); in GenPackedSwitchWithCompares() 7044 __ j(kEqual, codegen_->GetLabelOf(successors[index + 1])); in GenPackedSwitchWithCompares() 7051 __ j(kEqual, codegen_->GetLabelOf(successors[index])); in GenPackedSwitchWithCompares() 7263 const ArenaVector<HBasicBlock*>& successors = block->GetSuccessors(); in CreateJumpTable() local 7266 HBasicBlock* b = successors[i]; in CreateJumpTable()
|
D | code_generator_mips.cc | 5147 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors(); in VisitPackedSwitch() local 5149 __ Beqz(temp_reg, codegen_->GetLabelOf(successors[0])); in VisitPackedSwitch() 5154 __ Bltz(temp_reg, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch() 5156 __ Beqz(temp_reg, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch() 5161 __ Beqz(temp_reg, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
|
/art/test/517-checker-builder-fallthrough/smali/ |
D | TestCase.smali | 27 ## CHECK: successors "B5" "B2" 32 ## CHECK: successors "B4" 39 ## CHECK: successors "B3" 43 ## CHECK: successors "B3"
|
/art/test/596-checker-dead-phi/smali/ |
D | IrreducibleLoop.smali | 47 # its successors. To do that, load a boolean value and compare NotEqual to 1.
|
/art/test/594-checker-irreducible-linorder/smali/ |
D | IrreducibleLoop.smali | 93 # its successors. To do that, load a boolean value and compare NotEqual to 1.
|