Home
last modified time | relevance | path

Searched refs:AddInstruction (Results 1 – 25 of 32) sorted by relevance

12

/art/compiler/optimizing/
Dbounds_check_elimination_test.cc74 entry->AddInstruction(parameter1); in TEST_F()
75 entry->AddInstruction(parameter2); in TEST_F()
84 block1->AddInstruction(cmp); in TEST_F()
85 block1->AddInstruction(if_inst); in TEST_F()
96 block2->AddInstruction(null_check); in TEST_F()
97 block2->AddInstruction(array_length); in TEST_F()
98 block2->AddInstruction(bounds_check2); in TEST_F()
99 block2->AddInstruction(array_set); in TEST_F()
107 block3->AddInstruction(null_check); in TEST_F()
108 block3->AddInstruction(array_length); in TEST_F()
[all …]
Dload_store_elimination_test.cc87 entry_block_->AddInstruction(i_add1_); in CreateEntryBlockInstructions()
88 entry_block_->AddInstruction(i_add4_); in CreateEntryBlockInstructions()
89 entry_block_->AddInstruction(new (GetAllocator()) HGoto()); in CreateEntryBlockInstructions()
122 pre_header_->AddInstruction(new (GetAllocator()) HGoto()); in CreateTestControlFlowGraph()
133 loop_->AddInstruction(suspend_check_); in CreateTestControlFlowGraph()
134 loop_->AddInstruction(inc_phi); in CreateTestControlFlowGraph()
135 loop_->AddInstruction(cmp); in CreateTestControlFlowGraph()
136 loop_->AddInstruction(hif); in CreateTestControlFlowGraph()
170 upper->AddInstruction(cmp); in CreateDiamondShapedCFG()
171 upper->AddInstruction(hif); in CreateDiamondShapedCFG()
[all …]
Dload_store_analysis_test.cc94 entry->AddInstruction(array); in TEST_F()
95 entry->AddInstruction(index); in TEST_F()
96 entry->AddInstruction(array_get1); in TEST_F()
97 entry->AddInstruction(array_get2); in TEST_F()
98 entry->AddInstruction(array_set1); in TEST_F()
99 entry->AddInstruction(array_set2); in TEST_F()
194 entry->AddInstruction(object); in TEST_F()
195 entry->AddInstruction(set_field10); in TEST_F()
196 entry->AddInstruction(get_field10); in TEST_F()
197 entry->AddInstruction(get_field20); in TEST_F()
[all …]
Dgvn_test.cc38 entry->AddInstruction(parameter); in TEST_F()
44 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
53 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
63 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
74 block->AddInstruction(new (GetAllocator()) HInstanceFieldSet(parameter, in TEST_F()
84 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
94 block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
119 entry->AddInstruction(parameter); in TEST_F()
124 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
134 block->AddInstruction(new (GetAllocator()) HIf(block->GetLastInstruction())); in TEST_F()
[all …]
Dinstruction_simplifier_test.cc164 entry->AddInstruction(cls); in TEST_F()
165 entry->AddInstruction(switch_inst); in TEST_F()
169 case1->AddInstruction(goto_c1); in TEST_F()
172 case2->AddInstruction(goto_c2); in TEST_F()
176 case3->AddInstruction(obj3); in TEST_F()
177 case3->AddInstruction(goto_c3); in TEST_F()
195 breturn->AddInstruction(read_end); in TEST_F()
196 breturn->AddInstruction(return_exit); in TEST_F()
256 entry->AddInstruction(cls); in TEST_F()
257 entry->AddInstruction(switch_inst); in TEST_F()
[all …]
Dssa_liveness_analysis_test.cc62 entry_->AddInstruction(arg); in TEST_F()
66 block->AddInstruction(ret); in TEST_F()
67 block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
92 entry_->AddInstruction(insn); in TEST_F()
97 block->AddInstruction(null_check); in TEST_F()
106 block->AddInstruction(length); in TEST_F()
108 block->AddInstruction(bounds_check); in TEST_F()
118 block->AddInstruction(array_set); in TEST_F()
161 entry_->AddInstruction(insn); in TEST_F()
166 block->AddInstruction(null_check); in TEST_F()
[all …]
Dnodes_test.cc151 entry->AddInstruction(parameter); in TEST_F()
152 entry->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
158 first_block->AddInstruction(null_check); in TEST_F()
159 first_block->AddInstruction(new (GetAllocator()) HReturnVoid()); in TEST_F()
164 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
193 entry->AddInstruction(parameter1); in TEST_F()
194 entry->AddInstruction(parameter2); in TEST_F()
195 entry->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
209 TEST_F(NodeTest, AddInstruction) { in TEST_F() argument
216 entry->AddInstruction(parameter); in TEST_F()
[all …]
Dselect_generator_test.cc53 entry_block_->AddInstruction(bool_param); in ConstructBasicGraphForSelect()
56 if_block->AddInstruction(new (GetAllocator()) HIf(bool_param)); in ConstructBasicGraphForSelect()
58 then_block->AddInstruction(instr); in ConstructBasicGraphForSelect()
59 then_block->AddInstruction(new (GetAllocator()) HGoto()); in ConstructBasicGraphForSelect()
61 else_block->AddInstruction(new (GetAllocator()) HGoto()); in ConstructBasicGraphForSelect()
Dconstant_folding_test.cc751 entry_block->AddInstruction(parameter); in TEST_F()
752 entry_block->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
757 block->AddInstruction(last = new (GetAllocator()) HAbove(zero, parameter)); in TEST_F()
758 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
759 block->AddInstruction(last = new (GetAllocator()) HAbove(parameter, zero)); in TEST_F()
760 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
761 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(zero, parameter)); in TEST_F()
762 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
763 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(parameter, zero)); in TEST_F()
764 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F()
[all …]
Dloop_optimization_test.cc70 entry_block_->AddInstruction(parameter_); in BuildGraph()
71 return_block_->AddInstruction(new (GetAllocator()) HReturnVoid()); in BuildGraph()
72 exit_block_->AddInstruction(new (GetAllocator()) HExit()); in BuildGraph()
87 header->AddInstruction(new (GetAllocator()) HIf(parameter_)); in AddLoop()
89 body->AddInstruction(new (GetAllocator()) HGoto()); in AddLoop()
235 header->AddInstruction(new (GetAllocator()) HIf(parameter_)); in TEST_F()
236 body->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
241 body->AddInstruction(add); in TEST_F()
286 if_block->AddInstruction(new (GetAllocator()) HIf(parameter_)); in TEST_F()
287 preheader0->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
[all …]
Dlicm_test.cc80 entry_->AddInstruction(parameter_); in BuildLoop()
83 loop_preheader_->AddInstruction(new (GetAllocator()) HGoto()); in BuildLoop()
84 loop_header_->AddInstruction(new (GetAllocator()) HIf(parameter_)); in BuildLoop()
85 loop_body_->AddInstruction(new (GetAllocator()) HGoto()); in BuildLoop()
86 return_->AddInstruction(new (GetAllocator()) HReturnVoid()); in BuildLoop()
87 exit_->AddInstruction(new (GetAllocator()) HExit()); in BuildLoop()
Dregister_allocator_test.cc497 entry->AddInstruction(parameter); in BuildIfElseWithPhi()
512 block->AddInstruction(test); in BuildIfElseWithPhi()
513 block->AddInstruction(new (GetAllocator()) HIf(test)); in BuildIfElseWithPhi()
525 then->AddInstruction(new (GetAllocator()) HGoto()); in BuildIfElseWithPhi()
526 else_->AddInstruction(new (GetAllocator()) HGoto()); in BuildIfElseWithPhi()
548 then->AddInstruction(*input1); in BuildIfElseWithPhi()
549 else_->AddInstruction(*input2); in BuildIfElseWithPhi()
550 join->AddInstruction(new (GetAllocator()) HExit()); in BuildIfElseWithPhi()
647 entry->AddInstruction(parameter); in BuildFieldReturn()
662 block->AddInstruction(*field); in BuildFieldReturn()
[all …]
Dcodegen_test.cc420 entry->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
428 first_block->AddInstruction(equal); in TEST_F()
429 first_block->AddInstruction(new (GetAllocator()) HIf(equal)); in TEST_F()
444 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
445 then_block->AddInstruction(new (GetAllocator()) HReturn(constant0)); in TEST_F()
446 else_block->AddInstruction(new (GetAllocator()) HReturn(constant1)); in TEST_F()
482 entry_block->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
487 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
496 code_block->AddInstruction(&cmp_lt); in TEST_F()
498 code_block->AddInstruction(&ret); in TEST_F()
[all …]
Dsuperblock_cloner_test.cc77 loop_header->AddInstruction(suspend_check); in CreateBasicLoopDataFlow()
78 loop_header->AddInstruction(loop_check); in CreateBasicLoopDataFlow()
79 loop_header->AddInstruction(new (GetAllocator()) HIf(loop_check)); in CreateBasicLoopDataFlow()
92 loop_body->AddInstruction(null_check); in CreateBasicLoopDataFlow()
93 loop_body->AddInstruction(array_length); in CreateBasicLoopDataFlow()
94 loop_body->AddInstruction(bounds_check); in CreateBasicLoopDataFlow()
95 loop_body->AddInstruction(array_get); in CreateBasicLoopDataFlow()
96 loop_body->AddInstruction(add); in CreateBasicLoopDataFlow()
97 loop_body->AddInstruction(array_set); in CreateBasicLoopDataFlow()
98 loop_body->AddInstruction(induction_inc); in CreateBasicLoopDataFlow()
[all …]
Dgraph_test.cc41 if_block->AddInstruction(equal); in CreateIfBlock()
43 if_block->AddInstruction(instr); in CreateIfBlock()
51 block->AddInstruction(got); in CreateGotoBlock()
65 block->AddInstruction(return_instr); in CreateReturnBlock()
73 block->AddInstruction(exit_instr); in CreateExitBlock()
Dgraph_checker_test.cc39 entry_block->AddInstruction(new (GetAllocator()) HReturnVoid()); in CreateSimpleCFG()
43 exit_block->AddInstruction(new (GetAllocator()) HExit()); in CreateSimpleCFG()
Dinduction_var_analysis_test.cc96 entry_->AddInstruction(parameter_); in BuildLoopNest()
104 return_->AddInstruction(new (GetAllocator()) HReturnVoid()); in BuildLoopNest()
105 exit_->AddInstruction(new (GetAllocator()) HExit()); in BuildLoopNest()
110 loop_preheader_[d]->AddInstruction(new (GetAllocator()) HGoto()); in BuildLoopNest()
113 loop_header_[d]->AddInstruction(compare); in BuildLoopNest()
114 loop_header_[d]->AddInstruction(new (GetAllocator()) HIf(compare)); in BuildLoopNest()
116 loop_body_[d]->AddInstruction(increment_[d]); in BuildLoopNest()
117 loop_body_[d]->AddInstruction(new (GetAllocator()) HGoto()); in BuildLoopNest()
138 cond->AddInstruction(new (GetAllocator()) HIf(parameter_)); in BuildIf()
351 ifTrue->AddInstruction(inc1); in TEST_F()
[all …]
Dblock_builder.cc340 new_catch_block->AddInstruction(new (allocator_) HGoto(address)); in InsertTryBoundaryBlocks()
367 try_block->CreateImmediateDominator()->AddInstruction(try_entry); in InsertTryBoundaryBlocks()
395 graph_->SplitEdge(try_block, successor)->AddInstruction(try_exit); in InsertTryBoundaryBlocks()
439 loop_block->AddInstruction(new (allocator_) HIf(graph_->GetIntConstant(0), kNoDexPc)); in InsertSynthesizedLoopsForOsr()
Dreference_type_propagation_test.cc314 start->AddInstruction(maybe_null_val); in RunVisitListTest()
315 start->AddInstruction(cls); in RunVisitListTest()
316 start->AddInstruction(new_inst); in RunVisitListTest()
408 start->AddInstruction(cls); in RunVisitListTest()
409 start->AddInstruction(new_inst); in RunVisitListTest()
Dinduction_var_range_test.cc73 entry_block_->AddInstruction(x_); in BuildGraph()
78 entry_block_->AddInstruction(y_); in BuildGraph()
101 loop_preheader_->AddInstruction(new (GetAllocator()) HGoto()); in BuildLoop()
110 loop_header_->AddInstruction(condition_); in BuildLoop()
111 loop_header_->AddInstruction(new (GetAllocator()) HIf(condition_)); in BuildLoop()
114 loop_body_->AddInstruction(increment_); // i += s in BuildLoop()
116 loop_body_->AddInstruction(new (GetAllocator()) HGoto()); in BuildLoop()
117 return_block->AddInstruction(new (GetAllocator()) HReturnVoid()); in BuildLoop()
118 exit_block_->AddInstruction(new (GetAllocator()) HExit()); in BuildLoop()
929 entry_block_->AddInstruction(new_array); in TEST_F()
[all …]
Dcode_sinking.cc125 static void AddInstruction(HInstruction* instruction, in AddInstruction() function
143 AddInstruction(input, processed_instructions, discard_blocks, worklist); in AddInputs()
462 AddInstruction(use.GetUser(), processed_instructions, post_dominated, &worklist); in SinkCodeToUncommonBranch()
Doptimizing_unit_test.h305 return_block_->AddInstruction(new (GetAllocator()) HReturnVoid());
306 exit_block_->AddInstruction(new (GetAllocator()) HExit());
310 entry_block_->AddInstruction(parameter); in AddParameter()
494 exit->AddInstruction(new (GetAllocator()) HExit()); in SetupExit()
529 graph_->GetEntryBlock()->AddInstruction(val);
Dscheduler_test.cc117 entry->AddInstruction(array); in TestBuildDependencyGraphAndSchedule()
129 block1->AddInstruction(instr); in TestBuildDependencyGraphAndSchedule()
273 entry->AddInstruction(instr); in TestDependencyGraphOnAliasingArrayAccesses()
Dnodes_vector_test.cc47 entry_block_->AddInstruction(int8_parameter_); in BuildGraph()
52 entry_block_->AddInstruction(int16_parameter_); in BuildGraph()
57 entry_block_->AddInstruction(int32_parameter_); in BuildGraph()
Dnodes.cc536 new_block->AddInstruction(new (allocator_) HGoto(successor->GetDexPc())); in SplitCriticalEdge()
624 preheader->AddInstruction(new (allocator_) HGoto(header->GetDexPc())); in TransformLoopToSinglePreheaderFormat()
827 entry_block_->AddInstruction(constant); in InsertConstant()
858 entry_block_->AddInstruction(cached_current_method_); in GetCurrentMethod()
1173 instruction_list->AddInstruction(instruction); in Add()
1176 void HBasicBlock::AddInstruction(HInstruction* instruction) { in AddInstruction() function in art::HBasicBlock
1383 void HInstructionList::AddInstruction(HInstruction* instruction) { in AddInstruction() function in art::HInstructionList
2128 AddInstruction(new (GetGraph()->GetAllocator()) HGoto(new_block->GetDexPc())); in SplitBefore()
2500 predecessor->AddInstruction(new (graph_->GetAllocator()) HGoto(last_instruction->GetDexPc())); in DisconnectAndDelete()
2864 predecessor->AddInstruction(new (allocator) HGoto(last->GetDexPc())); in InlineInto()
[all …]

12