Searched refs:first_instruction (Results 1 – 2 of 2) sorted by relevance
284 HInstruction* first_instruction = new (GetAllocator()) HIntConstant(4); in TEST_F() local285 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()[all …]
528 HInstruction* first_instruction = header->GetFirstInstruction(); in SimplifyLoop() local529 if (first_instruction != nullptr && first_instruction->IsSuspendCheck()) { in SimplifyLoop()531 info->SetSuspendCheck(first_instruction->AsSuspendCheck()); in SimplifyLoop()