Home | History | Annotate | Download | only in optimizing

Lines Matching refs:allocator_

27   LoadStoreAnalysisTest() : pool_(), allocator_(&pool_) {
28 graph_ = CreateGraph(&allocator_);
32 ArenaAllocator allocator_;
37 HBasicBlock* entry = new (&allocator_) HBasicBlock(graph_);
51 HInstruction* array = new (&allocator_) HParameterValue(
53 HInstruction* index = new (&allocator_) HParameterValue(
58 HInstruction* array_get1 = new (&allocator_) HArrayGet(array, c1, Primitive::kPrimInt, 0);
59 HInstruction* array_get2 = new (&allocator_) HArrayGet(array, c2, Primitive::kPrimInt, 0);
60 HInstruction* array_set1 = new (&allocator_) HArraySet(array, c1, c3, Primitive::kPrimInt, 0);
61 HInstruction* array_set2 = new (&allocator_) HArraySet(array, index, c3, Primitive::kPrimInt, 0);
109 HBasicBlock* entry = new (&allocator_) HBasicBlock(graph_);
121 HInstruction* object = new (&allocator_) HParameterValue(graph_->GetDexFile(),
125 HInstanceFieldSet* set_field10 = new (&allocator_) HInstanceFieldSet(object,
135 HInstanceFieldGet* get_field10 = new (&allocator_) HInstanceFieldGet(object,
144 HInstanceFieldGet* get_field20 = new (&allocator_) HInstanceFieldGet(object,
188 HBasicBlock* entry = new (&allocator_) HBasicBlock(graph_);
193 HInstruction* array = new (&allocator_) HParameterValue(
195 HInstruction* index = new (&allocator_) HParameterValue(
200 HInstruction* add0 = new (&allocator_) HAdd(Primitive::kPrimInt, index, c0);
201 HInstruction* add1 = new (&allocator_) HAdd(Primitive::kPrimInt, index, c1);
202 HInstruction* sub0 = new (&allocator_) HSub(Primitive::kPrimInt, index, c0);
203 HInstruction* sub1 = new (&allocator_) HSub(Primitive::kPrimInt, index, c1);
204 HInstruction* sub_neg1 = new (&allocator_) HSub(Primitive::kPrimInt, index, c_neg1);
205 HInstruction* rev_sub1 = new (&allocator_) HSub(Primitive::kPrimInt, c1, index);
206 HInstruction* arr_set1 = new (&allocator_) HArraySet(array, c0, c0, Primitive::kPrimInt, 0);
207 HInstruction* arr_set2 = new (&allocator_) HArraySet(array, c1, c0, Primitive::kPrimInt, 0);
208 HInstruction* arr_set3 = new (&allocator_) HArraySet(array, add0, c0, Primitive::kPrimInt, 0);
209 HInstruction* arr_set4 = new (&allocator_) HArraySet(array, add1, c0, Primitive::kPrimInt, 0);
210 HInstruction* arr_set5 = new (&allocator_) HArraySet(array, sub0, c0, Primitive::kPrimInt, 0);
211 HInstruction* arr_set6 = new (&allocator_) HArraySet(array, sub1, c0, Primitive::kPrimInt, 0);
212 HInstruction* arr_set7 = new (&allocator_) HArraySet(array, rev_sub1, c0, Primitive::kPrimInt, 0);
213 HInstruction* arr_set8 = new (&allocator_) HArraySet(array, sub_neg1, c0, Primitive::kPrimInt, 0);
272 HBasicBlock* entry = new (&allocator_) HBasicBlock(graph_);
277 HInstruction* array = new (&allocator_) HParameterValue(
279 HInstruction* index = new (&allocator_) HParameterValue(
290 HInstruction* add_0x80000000 = new (&allocator_) HAdd(Primitive::kPrimInt, index, c_0x80000000);
291 HInstruction* sub_0x80000000 = new (&allocator_) HSub(Primitive::kPrimInt, index, c_0x80000000);
292 HInstruction* arr_set_1 = new (&allocator_) HArraySet(
294 HInstruction* arr_set_2 = new (&allocator_) HArraySet(
298 HInstruction* add_0x10 = new (&allocator_) HAdd(Primitive::kPrimInt, index, c_0x10);
299 HInstruction* sub_0xFFFFFFF0 = new (&allocator_) HSub(Primitive::kPrimInt, index, c_0xFFFFFFF0);
300 HInstruction* arr_set_3 = new (&allocator_) HArraySet(
302 HInstruction* arr_set_4 = new (&allocator_) HArraySet(
306 HInstruction* add_0x7FFFFFFF = new (&allocator_) HAdd(Primitive::kPrimInt, index, c_0x7FFFFFFF);
307 HInstruction* sub_0x80000001 = new (&allocator_) HSub(Primitive::kPrimInt, index, c_0x80000001);
308 HInstruction* arr_set_5 = new (&allocator_) HArraySet(
310 HInstruction* arr_set_6 = new (&allocator_) HArraySet(
314 HInstruction* add_0 = new (&allocator_) HAdd(Primitive::kPrimInt, index, c0);
315 HInstruction* sub_0 = new (&allocator_) HSub(Primitive::kPrimInt, index, c0);
316 allocator_) HArraySet(array, add_0, c0, Primitive::kPrimInt, 0);
317 HInstruction* arr_set_8 = new (&allocator_) HArraySet(array, sub_0, c0, Primitive::kPrimInt, 0);