Lines Matching refs:GetAllocator
38 entry_ = new (GetAllocator()) HBasicBlock(graph_); in SetUp()
46 HBasicBlock* successor = new (GetAllocator()) HBasicBlock(graph); in CreateSuccessor()
58 HInstruction* arg = new (GetAllocator()) HParameterValue( in TEST_F()
63 HInstruction* ret = new (GetAllocator()) HReturn(arg); in TEST_F()
65 block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
78 HInstruction* array = new (GetAllocator()) HParameterValue( in TEST_F()
80 HInstruction* index = new (GetAllocator()) HParameterValue( in TEST_F()
82 HInstruction* value = new (GetAllocator()) HParameterValue( in TEST_F()
84 HInstruction* extra_arg1 = new (GetAllocator()) HParameterValue( in TEST_F()
86 HInstruction* extra_arg2 = new (GetAllocator()) HParameterValue( in TEST_F()
94 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0); in TEST_F()
96 HEnvironment* null_check_env = new (GetAllocator()) HEnvironment(GetAllocator(), in TEST_F()
103 HInstruction* length = new (GetAllocator()) HArrayLength(array, 0); in TEST_F()
105 HInstruction* bounds_check = new (GetAllocator()) HBoundsCheck(index, length, /* dex_pc= */ 0u); in TEST_F()
107 HEnvironment* bounds_check_env = new (GetAllocator()) HEnvironment(GetAllocator(), in TEST_F()
115 new (GetAllocator()) HArraySet(array, index, value, DataType::Type::kInt32, /* dex_pc= */ 0); in TEST_F()
147 HInstruction* array = new (GetAllocator()) HParameterValue( in TEST_F()
149 HInstruction* index = new (GetAllocator()) HParameterValue( in TEST_F()
151 HInstruction* value = new (GetAllocator()) HParameterValue( in TEST_F()
153 HInstruction* extra_arg1 = new (GetAllocator()) HParameterValue( in TEST_F()
155 HInstruction* extra_arg2 = new (GetAllocator()) HParameterValue( in TEST_F()
163 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0); in TEST_F()
165 HEnvironment* null_check_env = new (GetAllocator()) HEnvironment(GetAllocator(), in TEST_F()
172 HInstruction* length = new (GetAllocator()) HArrayLength(array, 0); in TEST_F()
175 HInstruction* ae = new (GetAllocator()) HAboveOrEqual(index, length); in TEST_F()
177 HInstruction* deoptimize = new(GetAllocator()) HDeoptimize( in TEST_F()
178 GetAllocator(), ae, DeoptimizationKind::kBlockBCE, /* dex_pc= */ 0u); in TEST_F()
180 HEnvironment* deoptimize_env = new (GetAllocator()) HEnvironment(GetAllocator(), in TEST_F()
188 new (GetAllocator()) HArraySet(array, index, value, DataType::Type::kInt32, /* dex_pc= */ 0); in TEST_F()