Home | History | Annotate | Download | only in optimizing

Lines Matching refs:GetAllocator

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