Lines Matching refs:parameter
37 HInstruction* parameter = new (GetAllocator()) HParameterValue( in TEST_F() local
39 entry->AddInstruction(parameter); in TEST_F()
45 HInstruction* null_check = new (GetAllocator()) HNullCheck(parameter, 0); in TEST_F()
57 environment->SetRawEnvAt(0, parameter); in TEST_F()
58 parameter->AddEnvUseAt(null_check->GetEnvironment(), 0); in TEST_F()
60 ASSERT_TRUE(parameter->HasEnvironmentUses()); in TEST_F()
61 ASSERT_TRUE(parameter->HasUses()); in TEST_F()
65 ASSERT_FALSE(parameter->HasEnvironmentUses()); in TEST_F()
66 ASSERT_FALSE(parameter->HasUses()); in TEST_F()
102 HInstruction* parameter = new (GetAllocator()) HParameterValue( in TEST_F() local
104 entry->AddInstruction(parameter); in TEST_F()
106 ASSERT_FALSE(parameter->HasUses()); in TEST_F()
108 HInstruction* to_add = new (GetAllocator()) HNullCheck(parameter, 0); in TEST_F()
111 ASSERT_TRUE(parameter->HasUses()); in TEST_F()
112 ASSERT_TRUE(parameter->GetUses().HasExactlyOneElement()); in TEST_F()