Lines Matching refs:GetAllocator
31 iva_(new (GetAllocator()) HInductionVarAnalysis(graph_)), in LoopOptimizationTest()
32 loop_opt_(new (GetAllocator()) HLoopOptimization( in LoopOptimizationTest()
42 entry_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph()
43 return_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph()
44 exit_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph()
50 parameter_ = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in BuildGraph()
55 return_block_->AddInstruction(new (GetAllocator()) HReturnVoid()); in BuildGraph()
56 exit_block_->AddInstruction(new (GetAllocator()) HExit()); in BuildGraph()
63 HBasicBlock* header = new (GetAllocator()) HBasicBlock(graph_); in AddLoop()
64 HBasicBlock* body = new (GetAllocator()) HBasicBlock(graph_); in AddLoop()
71 header->AddInstruction(new (GetAllocator()) HIf(parameter_)); in AddLoop()
73 body->AddInstruction(new (GetAllocator()) HGoto()); in AddLoop()
202 HBasicBlock* header = new (GetAllocator()) HBasicBlock(graph_); in TEST_F()
203 HBasicBlock* body = new (GetAllocator()) HBasicBlock(graph_); in TEST_F()
216 header->AddInstruction(new (GetAllocator()) HIf(parameter_)); in TEST_F()
217 body->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
219 HPhi* phi = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in TEST_F()
220 HInstruction* add = new (GetAllocator()) HAdd(DataType::Type::kInt32, phi, parameter_); in TEST_F()
249 new (GetAllocator()) HSuspendCheck(), header->GetLastInstruction()); in TEST_F()
252 HBasicBlock* if_block = new (GetAllocator()) HBasicBlock(graph_); in TEST_F()
253 HBasicBlock* preheader0 = new (GetAllocator()) HBasicBlock(graph_); in TEST_F()
254 HBasicBlock* preheader1 = new (GetAllocator()) HBasicBlock(graph_); in TEST_F()
267 if_block->AddInstruction(new (GetAllocator()) HIf(parameter_)); in TEST_F()
268 preheader0->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
269 preheader1->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
279 HAdd* preheader0_add = new (GetAllocator()) HAdd(DataType::Type::kInt32, parameter_, const_0); in TEST_F()
281 HAdd* preheader1_add = new (GetAllocator()) HAdd(DataType::Type::kInt32, parameter_, const_1); in TEST_F()
284 HPhi* header_phi = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in TEST_F()
287 HAdd* body_add = new (GetAllocator()) HAdd(DataType::Type::kInt32, parameter_, const_2); in TEST_F()