Lines Matching refs:first_instruction
284 HInstruction* first_instruction = new (GetAllocator()) HIntConstant(4); in TEST_F() local
285 block->InsertInstructionBefore(first_instruction, got); in TEST_F()
287 ASSERT_NE(first_instruction->GetId(), -1); in TEST_F()
288 ASSERT_EQ(first_instruction->GetBlock(), block); in TEST_F()
289 ASSERT_EQ(block->GetFirstInstruction(), first_instruction); in TEST_F()
291 ASSERT_EQ(first_instruction->GetNext(), got); in TEST_F()
292 ASSERT_EQ(first_instruction->GetPrevious(), nullptr); in TEST_F()
294 ASSERT_EQ(got->GetPrevious(), first_instruction); in TEST_F()
302 ASSERT_EQ(block->GetFirstInstruction(), first_instruction); in TEST_F()
304 ASSERT_EQ(first_instruction->GetNext(), second_instruction); in TEST_F()
305 ASSERT_EQ(first_instruction->GetPrevious(), nullptr); in TEST_F()
307 ASSERT_EQ(second_instruction->GetPrevious(), first_instruction); in TEST_F()