Home | History | Annotate | Download | only in optimizing

Lines Matching refs:allocator_

31         allocator_(&pool_),
32 graph_(CreateGraph(&allocator_)),
33 iva_(new (&allocator_) HInductionVarAnalysis(graph_)),
34 loop_opt_(new (&allocator_) HLoopOptimization(graph_, nullptr, iva_)) {
43 entry_block_ = new (&allocator_) HBasicBlock(graph_);
44 return_block_ = new (&allocator_) HBasicBlock(graph_);
45 exit_block_ = new (&allocator_) HBasicBlock(graph_);
51 parameter_ = new (&allocator_) HParameterValue(graph_->GetDexFile(),
56 return_block_->AddInstruction(new (&allocator_) HReturnVoid());
57 exit_block_->AddInstruction(new (&allocator_) HExit());
64 HBasicBlock* header = new (&allocator_) HBasicBlock(graph_);
65 HBasicBlock* body = new (&allocator_) HBasicBlock(graph_);
72 header->AddInstruction(new (&allocator_) HIf(parameter_));
74 body->AddInstruction(new (&allocator_) HGoto());
83 loop_opt_->loop_allocator_ = &allocator_;
105 ArenaAllocator allocator_;