Lines Matching refs:parameter
149 HInstruction* parameter = new (GetAllocator()) HParameterValue( in TEST_F() local
151 entry->AddInstruction(parameter); in TEST_F()
157 HInstruction* null_check = new (GetAllocator()) HNullCheck(parameter, 0); in TEST_F()
169 environment->SetRawEnvAt(0, parameter); in TEST_F()
170 parameter->AddEnvUseAt(null_check->GetEnvironment(), 0); in TEST_F()
172 ASSERT_TRUE(parameter->HasEnvironmentUses()); in TEST_F()
173 ASSERT_TRUE(parameter->HasUses()); in TEST_F()
177 ASSERT_FALSE(parameter->HasEnvironmentUses()); in TEST_F()
178 ASSERT_FALSE(parameter->HasUses()); in TEST_F()
214 HInstruction* parameter = new (GetAllocator()) HParameterValue( in TEST_F() local
216 entry->AddInstruction(parameter); in TEST_F()
218 ASSERT_FALSE(parameter->HasUses()); in TEST_F()
220 HInstruction* to_add = new (GetAllocator()) HNullCheck(parameter, 0); in TEST_F()
223 ASSERT_TRUE(parameter->HasUses()); in TEST_F()
224 ASSERT_TRUE(parameter->GetUses().HasExactlyOneElement()); in TEST_F()