Lines Matching refs:GetAllocator

34   HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph);  in TEST_F()
37 HInstruction* parameter = new (GetAllocator()) HParameterValue( in TEST_F()
40 entry->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
42 HBasicBlock* first_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
45 HInstruction* null_check = new (GetAllocator()) HNullCheck(parameter, 0); in TEST_F()
47 first_block->AddInstruction(new (GetAllocator()) HReturnVoid()); in TEST_F()
49 HBasicBlock* exit_block = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
52 exit_block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
54 HEnvironment* environment = new (GetAllocator()) HEnvironment( in TEST_F()
55 GetAllocator(), 1, graph->GetArtMethod(), 0, null_check); in TEST_F()
74 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
77 HInstruction* parameter1 = new (GetAllocator()) HParameterValue( in TEST_F()
79 HInstruction* parameter2 = new (GetAllocator()) HParameterValue( in TEST_F()
83 entry->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
87 HInstruction* to_insert = new (GetAllocator()) HNullCheck(parameter1, 0); in TEST_F()
99 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
102 HInstruction* parameter = new (GetAllocator()) HParameterValue( in TEST_F()
108 HInstruction* to_add = new (GetAllocator()) HNullCheck(parameter, 0); in TEST_F()
117 HBasicBlock* entry = new (GetAllocator()) HBasicBlock(graph); in TEST_F()
120 HInstruction* parameter1 = new (GetAllocator()) HParameterValue( in TEST_F()
122 HInstruction* with_environment = new (GetAllocator()) HNullCheck(parameter1, 0); in TEST_F()
125 entry->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
130 HEnvironment* environment = new (GetAllocator()) HEnvironment( in TEST_F()
131 GetAllocator(), 1, graph->GetArtMethod(), 0, with_environment); in TEST_F()
140 HEnvironment* parent1 = new (GetAllocator()) HEnvironment( in TEST_F()
141 GetAllocator(), 1, graph->GetArtMethod(), 0, nullptr); in TEST_F()
146 HEnvironment* parent2 = new (GetAllocator()) HEnvironment( in TEST_F()
147 GetAllocator(), 1, graph->GetArtMethod(), 0, nullptr); in TEST_F()
149 parent1->SetAndCopyParentChain(GetAllocator(), parent2); in TEST_F()
155 environment->SetAndCopyParentChain(GetAllocator(), parent1); in TEST_F()