Lines Matching refs:GetAllocator
36 iva_ = new (GetAllocator()) HInductionVarAnalysis(graph_); in SetUp()
41 loop_opt_ = new (GetAllocator()) HLoopOptimization( in SetUp()
58 entry_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph()
59 return_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph()
60 exit_block_ = new (GetAllocator()) HBasicBlock(graph_); in BuildGraph()
66 parameter_ = new (GetAllocator()) HParameterValue(graph_->GetDexFile(), in BuildGraph()
71 return_block_->AddInstruction(new (GetAllocator()) HReturnVoid()); in BuildGraph()
72 exit_block_->AddInstruction(new (GetAllocator()) HExit()); in BuildGraph()
79 HBasicBlock* header = new (GetAllocator()) HBasicBlock(graph_); in AddLoop()
80 HBasicBlock* body = new (GetAllocator()) HBasicBlock(graph_); in AddLoop()
87 header->AddInstruction(new (GetAllocator()) HIf(parameter_)); in AddLoop()
89 body->AddInstruction(new (GetAllocator()) HGoto()); in AddLoop()
221 HBasicBlock* header = new (GetAllocator()) HBasicBlock(graph_); in TEST_F()
222 HBasicBlock* body = new (GetAllocator()) HBasicBlock(graph_); in TEST_F()
235 header->AddInstruction(new (GetAllocator()) HIf(parameter_)); in TEST_F()
236 body->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
238 HPhi* phi = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in TEST_F()
239 HInstruction* add = new (GetAllocator()) HAdd(DataType::Type::kInt32, phi, parameter_); in TEST_F()
268 new (GetAllocator()) HSuspendCheck(), header->GetLastInstruction()); in TEST_F()
271 HBasicBlock* if_block = new (GetAllocator()) HBasicBlock(graph_); in TEST_F()
272 HBasicBlock* preheader0 = new (GetAllocator()) HBasicBlock(graph_); in TEST_F()
273 HBasicBlock* preheader1 = new (GetAllocator()) HBasicBlock(graph_); in TEST_F()
286 if_block->AddInstruction(new (GetAllocator()) HIf(parameter_)); in TEST_F()
287 preheader0->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
288 preheader1->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
298 HAdd* preheader0_add = new (GetAllocator()) HAdd(DataType::Type::kInt32, parameter_, const_0); in TEST_F()
300 HAdd* preheader1_add = new (GetAllocator()) HAdd(DataType::Type::kInt32, parameter_, const_1); in TEST_F()
303 HPhi* header_phi = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in TEST_F()
306 HAdd* body_add = new (GetAllocator()) HAdd(DataType::Type::kInt32, parameter_, const_2); in TEST_F()