Home
last modified time | relevance | path

Searched refs:first_instruction (Results 1 – 2 of 2) sorted by relevance

/aosp12/art/compiler/optimizing/
H A Dgraph_test.cc285 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()
[all …]
H A Dnodes.cc701 HInstruction* first_instruction = header->GetFirstInstruction(); in SimplifyLoop() local
702 if (first_instruction != nullptr && first_instruction->IsSuspendCheck()) { in SimplifyLoop()
704 info->SetSuspendCheck(first_instruction->AsSuspendCheck()); in SimplifyLoop()