Home
last modified time | relevance | path

Searched refs:successors (Results 1 – 13 of 13) sorted by relevance

/art/test/510-checker-try-catch/smali/
DBuilder.smali25 ## 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 …]
DSsaBuilder.smali28 ## CHECK-NEXT: successors "<<BAdd:B\d+>>"
34 ## CHECK-NEXT: successors
43 ## CHECK-NEXT: successors "<<BAdd>>"
/art/compiler/optimizing/
Dpretty_printer.h86 const ArenaVector<HBasicBlock*>& successors = block->GetSuccessors(); in VisitBasicBlock() local
87 if (!successors.empty()) { in VisitBasicBlock()
89 for (size_t i = 0; i < successors.size() - 1; i++) { in VisitBasicBlock()
90 PrintInt(successors[i]->GetBlockId()); in VisitBasicBlock()
93 PrintInt(successors.back()->GetBlockId()); in VisitBasicBlock()
Dcode_sinking.cc382 ArrayRef<HBasicBlock* const> successors = in SinkCodeToUncommonBranch() local
385 for (HBasicBlock* successor : successors) { in SinkCodeToUncommonBranch()
Dcode_generator_arm64.cc565 const ArenaVector<HBasicBlock*>& successors = switch_instr_->GetBlock()->GetSuccessors(); in EmitTable() local
567 vixl::aarch64::Label* target_label = codegen->GetLabelOf(successors[i]); in EmitTable()
6652 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors(); in VisitPackedSwitch() local
6654 __ B(eq, codegen_->GetLabelOf(successors[0])); in VisitPackedSwitch()
6659 __ B(lo, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
6661 __ B(eq, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch()
6666 __ B(eq, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
Dcode_generator_riscv64.cc2040 ArrayRef<HBasicBlock* const> successors(switch_block->GetSuccessors()); in GenPackedSwitchWithCompares() local
2045 __ Beqz(adjusted, codegen_->GetLabelOf(successors[index])); in GenPackedSwitchWithCompares()
2053 __ Bltz(adjusted, codegen_->GetLabelOf(successors[index + 1])); in GenPackedSwitchWithCompares()
2056 __ J(codegen_->GetLabelOf(successors[num_entries - 1u])); in GenPackedSwitchWithCompares()
2070 const ArenaVector<HBasicBlock*>& successors = switch_block->GetSuccessors(); in GenTableBasedPackedSwitch() local
2072 labels[i] = codegen_->GetLabelOf(successors[i]); in GenTableBasedPackedSwitch()
Dcode_generator_x86_64.cc8180 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors(); in VisitPackedSwitch() local
8185 __ j(kEqual, codegen_->GetLabelOf(successors[0])); in VisitPackedSwitch()
8199 __ j(first_condition, codegen_->GetLabelOf(successors[index])); in VisitPackedSwitch()
8201 __ j(kEqual, codegen_->GetLabelOf(successors[index + 1])); in VisitPackedSwitch()
8208 __ j(kEqual, codegen_->GetLabelOf(successors[index])); in VisitPackedSwitch()
8418 const ArenaVector<HBasicBlock*>& successors = block->GetSuccessors(); in CreateJumpTable() local
8421 HBasicBlock* b = successors[i]; in CreateJumpTable()
Dcode_generator_x86.cc8850 const ArenaVector<HBasicBlock*>& successors = switch_block->GetSuccessors(); in GenPackedSwitchWithCompares() local
8855 __ j(kEqual, codegen_->GetLabelOf(successors[0])); in GenPackedSwitchWithCompares()
8869 __ j(first_condition, codegen_->GetLabelOf(successors[index])); in GenPackedSwitchWithCompares()
8871 __ j(kEqual, codegen_->GetLabelOf(successors[index + 1])); in GenPackedSwitchWithCompares()
8878 __ j(kEqual, codegen_->GetLabelOf(successors[index])); in GenPackedSwitchWithCompares()
9102 const ArenaVector<HBasicBlock*>& successors = block->GetSuccessors(); in CreateJumpTable() local
9105 HBasicBlock* b = successors[i]; in CreateJumpTable()
Dcode_generator_arm_vixl.cc1995 const ArenaVector<HBasicBlock*>& successors = switch_instr_->GetBlock()->GetSuccessors(); in FixTable() local
1997 vixl32::Label* target_label = codegen->GetLabelOf(successors[i]); in FixTable()
10076 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors(); in VisitPackedSwitch() local
10078 __ B(eq, codegen_->GetLabelOf(successors[0])); in VisitPackedSwitch()
10083 __ B(lo, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
10085 __ B(eq, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch()
10090 __ B(eq, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
/art/test/517-checker-builder-fallthrough/smali/
DTestCase.smali27 ## CHECK: successors "B5" "B2"
32 ## CHECK: successors "B4"
39 ## CHECK: successors "B3"
43 ## CHECK: successors "B3"
/art/test/596-checker-dead-phi/smali/
DIrreducibleLoop.smali48 # its successors. To do that, load a boolean value and compare NotEqual to 1.
/art/test/594-checker-irreducible-linorder/smali/
DIrreducibleLoop.smali93 # its successors. To do that, load a boolean value and compare NotEqual to 1.
/art/test/626-checker-arm64-scratch-register/smali/
DMain2.smali118 ## CHECK: successors "<<ThenBlock:B\d+>>" "<<ElseBlock:B\d+>>"
133 ## CHECK: successors "<<ThenBlock:B\d+>>" "<<ElseBlock:B\d+>>"