Lines Matching refs:GetAllocator

40                          GetAllocator(),  in TEST_F()
96 GetAllocator(), in TEST_F()
146 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
149 HInstruction* parameter = new (GetAllocator()) HParameterValue( in TEST_F()
152 entry->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
154 HBasicBlock* first_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
157 HInstruction* null_check = new (GetAllocator()) HNullCheck(parameter, 0); in TEST_F()
159 first_block->AddInstruction(new (GetAllocator()) HReturnVoid()); in TEST_F()
161 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
164 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
166 HEnvironment* environment = new (GetAllocator()) HEnvironment( in TEST_F()
167 GetAllocator(), 1, graph->GetArtMethod(), 0, null_check); in TEST_F()
186 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
189 HInstruction* parameter1 = new (GetAllocator()) HParameterValue( in TEST_F()
191 HInstruction* parameter2 = new (GetAllocator()) HParameterValue( in TEST_F()
195 entry->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
199 HInstruction* to_insert = new (GetAllocator()) HNullCheck(parameter1, 0); in TEST_F()
211 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
214 HInstruction* parameter = new (GetAllocator()) HParameterValue( in TEST_F()
220 HInstruction* to_add = new (GetAllocator()) HNullCheck(parameter, 0); in TEST_F()
229 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
232 HInstruction* parameter1 = new (GetAllocator()) HParameterValue( in TEST_F()
234 HInstruction* with_environment = new (GetAllocator()) HNullCheck(parameter1, 0); in TEST_F()
237 entry->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
242 HEnvironment* environment = new (GetAllocator()) HEnvironment( in TEST_F()
243 GetAllocator(), 1, graph->GetArtMethod(), 0, with_environment); in TEST_F()
252 HEnvironment* parent1 = new (GetAllocator()) HEnvironment( in TEST_F()
253 GetAllocator(), 1, graph->GetArtMethod(), 0, nullptr); in TEST_F()
258 HEnvironment* parent2 = new (GetAllocator()) HEnvironment( in TEST_F()
259 GetAllocator(), 1, graph->GetArtMethod(), 0, nullptr); in TEST_F()
261 parent1->SetAndCopyParentChain(GetAllocator(), parent2); in TEST_F()
267 environment->SetAndCopyParentChain(GetAllocator(), parent1); in TEST_F()