Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dgraph_test.cc285 HInstruction* first_instruction = new (GetAllocator()) HIntConstant(4); in TEST_F() local
286 block->InsertInstructionBefore(first_instruction, got); in TEST_F()
288 ASSERT_NE(first_instruction->GetId(), -1); in TEST_F()
289 ASSERT_EQ(first_instruction->GetBlock(), block); in TEST_F()
290 ASSERT_EQ(block->GetFirstInstruction(), first_instruction); in TEST_F()
292 ASSERT_EQ(first_instruction->GetNext(), got); in TEST_F()
293 ASSERT_EQ(first_instruction->GetPrevious(), nullptr); in TEST_F()
295 ASSERT_EQ(got->GetPrevious(), first_instruction); in TEST_F()
303 ASSERT_EQ(block->GetFirstInstruction(), first_instruction); in TEST_F()
305 ASSERT_EQ(first_instruction->GetNext(), second_instruction); in TEST_F()
[all …]
Dnodes.cc580 HInstruction* first_instruction = header->GetFirstInstruction(); in SimplifyLoop() local
581 if (first_instruction != nullptr && first_instruction->IsSuspendCheck()) { in SimplifyLoop()
583 info->SetSuspendCheck(first_instruction->AsSuspendCheck()); in SimplifyLoop()