Lines Matching refs:GetAllocator

39     entry_ = new (GetAllocator()) HBasicBlock(graph_);  in SetUp()
47 HBasicBlock* successor = new (GetAllocator()) HBasicBlock(graph); in CreateSuccessor()
60 HInstruction* arg = new (GetAllocator()) HParameterValue( in TEST_F()
65 HInstruction* ret = new (GetAllocator()) HReturn(arg); in TEST_F()
67 block->AddInstruction(new (GetAllocator()) HExit()); in TEST_F()
80 HInstruction* array = new (GetAllocator()) HParameterValue( in TEST_F()
82 HInstruction* index = new (GetAllocator()) HParameterValue( in TEST_F()
84 HInstruction* value = new (GetAllocator()) HParameterValue( in TEST_F()
86 HInstruction* extra_arg1 = new (GetAllocator()) HParameterValue( in TEST_F()
88 HInstruction* extra_arg2 = new (GetAllocator()) HParameterValue( in TEST_F()
96 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0); in TEST_F()
98 HEnvironment* null_check_env = new (GetAllocator()) HEnvironment(GetAllocator(), in TEST_F()
105 HInstruction* length = new (GetAllocator()) HArrayLength(array, 0); in TEST_F()
107 HInstruction* bounds_check = new (GetAllocator()) HBoundsCheck(index, length, /* dex_pc= */ 0u); in TEST_F()
109 HEnvironment* bounds_check_env = new (GetAllocator()) HEnvironment(GetAllocator(), in TEST_F()
117 new (GetAllocator()) HArraySet(array, index, value, DataType::Type::kInt32, /* dex_pc= */ 0); in TEST_F()
149 HInstruction* array = new (GetAllocator()) HParameterValue( in TEST_F()
151 HInstruction* index = new (GetAllocator()) HParameterValue( in TEST_F()
153 HInstruction* value = new (GetAllocator()) HParameterValue( in TEST_F()
155 HInstruction* extra_arg1 = new (GetAllocator()) HParameterValue( in TEST_F()
157 HInstruction* extra_arg2 = new (GetAllocator()) HParameterValue( in TEST_F()
165 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0); in TEST_F()
167 HEnvironment* null_check_env = new (GetAllocator()) HEnvironment(GetAllocator(), in TEST_F()
174 HInstruction* length = new (GetAllocator()) HArrayLength(array, 0); in TEST_F()
177 HInstruction* ae = new (GetAllocator()) HAboveOrEqual(index, length); in TEST_F()
179 HInstruction* deoptimize = new(GetAllocator()) HDeoptimize( in TEST_F()
180 GetAllocator(), ae, DeoptimizationKind::kBlockBCE, /* dex_pc= */ 0u); in TEST_F()
182 HEnvironment* deoptimize_env = new (GetAllocator()) HEnvironment(GetAllocator(), in TEST_F()
190 new (GetAllocator()) HArraySet(array, index, value, DataType::Type::kInt32, /* dex_pc= */ 0); in TEST_F()