Lines Matching refs:GetAllocator

31   HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph);  in TEST_F()
34 HInstruction* parameter = new (GetAllocator()) HParameterValue(graph->GetDexFile(), in TEST_F()
40 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
44 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
53 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
63 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
74 block->AddInstruction(new (GetAllocator()) HInstanceFieldSet(parameter, in TEST_F()
84 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
94 block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
112 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
115 HInstruction* parameter = new (GetAllocator()) HParameterValue(graph->GetDexFile(), in TEST_F()
121 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
124 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
134 block->AddInstruction(new (GetAllocator()) HIf(block->GetLastInstruction())); in TEST_F()
135 HBasicBlock* then = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
136 HBasicBlock* else_ = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
137 HBasicBlock* join = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
147 then->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
156 then->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
157 else_->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
166 else_->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
167 join->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
176 join->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
191 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
195 HInstruction* parameter = new (GetAllocator()) HParameterValue(graph->GetDexFile(), in TEST_F()
201 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
204 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
213 block->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
215 HBasicBlock* loop_header = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
216 HBasicBlock* loop_body = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
217 HBasicBlock* exit = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
227 loop_header->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
237 loop_header->AddInstruction(new (GetAllocator()) HIf(block->GetLastInstruction())); in TEST_F()
241 loop_body->AddInstruction(new (GetAllocator()) HInstanceFieldSet(parameter, in TEST_F()
252 loop_body->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
262 loop_body->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
264 exit->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
274 exit->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
312 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
316 HBasicBlock* outer_loop_header = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
317 HBasicBlock* outer_loop_body = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
318 HBasicBlock* outer_loop_exit = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
319 HBasicBlock* inner_loop_header = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
320 HBasicBlock* inner_loop_body = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
321 HBasicBlock* inner_loop_exit = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
339 HInstruction* parameter = new (GetAllocator()) HParameterValue(graph->GetDexFile(), in TEST_F()
344 entry->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
345 outer_loop_header->AddInstruction(new (GetAllocator()) HSuspendCheck()); in TEST_F()
346 outer_loop_header->AddInstruction(new (GetAllocator()) HIf(parameter)); in TEST_F()
347 outer_loop_body->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
348 inner_loop_header->AddInstruction(new (GetAllocator()) HSuspendCheck()); in TEST_F()
349 inner_loop_header->AddInstruction(new (GetAllocator()) HIf(parameter)); in TEST_F()
350 inner_loop_body->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
351 inner_loop_exit->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
352 outer_loop_exit->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
362 entry->AddInstruction(new (GetAllocator()) HInstanceFieldSet(parameter, in TEST_F()
387 new (GetAllocator()) HInstanceFieldSet(parameter, in TEST_F()
413 new (GetAllocator()) HInstanceFieldSet(parameter, in TEST_F()