Home | History | Annotate | Download | only in optimizing

Lines Matching defs:allocator_

31   LICMTest() : pool_(), allocator_(&pool_) {
32 graph_ = CreateGraph(&allocator_);
40 entry_ = new (&allocator_) HBasicBlock(graph_);
41 loop_preheader_ = new (&allocator_) HBasicBlock(graph_);
42 loop_header_ = new (&allocator_) HBasicBlock(graph_);
43 loop_body_ = new (&allocator_) HBasicBlock(graph_);
44 return_ = new (&allocator_) HBasicBlock(graph_);
45 exit_ = new (&allocator_) HBasicBlock(graph_);
66 parameter_ = new (&allocator_) HParameterValue(graph_->GetDexFile(), 0, 0, Primitive::kPrimNot);
70 loop_preheader_->AddInstruction(new (&allocator_) HGoto());
71 loop_header_->AddInstruction(new (&allocator_) HIf(parameter_));
72 loop_body_->AddInstruction(new (&allocator_) HGoto());
73 return_->AddInstruction(new (&allocator_) HReturnVoid());
74 exit_->AddInstruction(new (&allocator_) HExit());
87 ArenaAllocator allocator_;
112 HInstruction* get_field = new (&allocator_) HInstanceFieldGet(parameter_,
122 HInstruction* set_field = new (&allocator_) HInstanceFieldSet(
139 HInstruction* get_field = new (&allocator_) HInstanceFieldGet(parameter_,
149 HInstruction* set_field = new (&allocator_) HInstanceFieldSet(parameter_,
174 HInstruction* get_array = new (&allocator_) HArrayGet(
177 HInstruction* set_array = new (&allocator_) HArraySet(
194 HInstruction* get_array = new (&allocator_) HArrayGet(
197 HInstruction* set_array = new (&allocator_) HArraySet(