Home | History | Annotate | Download | only in optimizing

Lines Matching refs:allocator_

33         allocator_(&pool_),
43 graph_ = CreateGraph(&allocator_);
51 entry_ = new (&allocator_) HBasicBlock(graph_);
52 loop_preheader_ = new (&allocator_) HBasicBlock(graph_);
53 loop_header_ = new (&allocator_) HBasicBlock(graph_);
54 loop_body_ = new (&allocator_) HBasicBlock(graph_);
55 return_ = new (&allocator_) HBasicBlock(graph_);
56 exit_ = new (&allocator_) HBasicBlock(graph_);
77 parameter_ = new (&allocator_) HParameterValue(graph_->GetDexFile(),
84 loop_preheader_->AddInstruction(new (&allocator_) HGoto());
85 loop_header_->AddInstruction(new (&allocator_) HIf(parameter_));
86 loop_body_->AddInstruction(new (&allocator_) HGoto());
87 return_->AddInstruction(new (&allocator_) HReturnVoid());
88 exit_->AddInstruction(new (&allocator_) HExit());
101 ArenaAllocator allocator_;
125 HInstruction* get_field = new (&allocator_) HInstanceFieldGet(parameter_,
135 HInstruction* set_field = new (&allocator_) HInstanceFieldSet(
152 HInstruction* get_field = new (&allocator_) HInstanceFieldGet(parameter_,
162 HInstruction* set_field = new (&allocator_) HInstanceFieldSet(parameter_,
185 HInstruction* get_array = new (&allocator_) HArrayGet(
188 HInstruction* set_array = new (&allocator_) HArraySet(
203 HInstruction* get_array = new (&allocator_) HArrayGet(
206 HInstruction* set_array = new (&allocator_) HArraySet(