Searched defs:first_instruction (Results 1 - 2 of 2) sorted by last modified time

/art/compiler/optimizing/
H A Dgraph_test.cc284 HInstruction* first_instruction = new (GetAllocator()) HIntConstant(4); local
285 block->InsertInstructionBefore(first_instruction, got);
287 ASSERT_NE(first_instruction->GetId(), -1);
288 ASSERT_EQ(first_instruction->GetBlock(), block);
289 ASSERT_EQ(block->GetFirstInstruction(), first_instruction);
291 ASSERT_EQ(first_instruction->GetNext(), got);
292 ASSERT_EQ(first_instruction->GetPrevious(), nullptr);
294 ASSERT_EQ(got->GetPrevious(), first_instruction);
302 ASSERT_EQ(block->GetFirstInstruction(), first_instruction);
304 ASSERT_EQ(first_instruction
[all...]
H A Dnodes.cc525 HInstruction* first_instruction = header->GetFirstInstruction(); local
526 if (first_instruction != nullptr && first_instruction->IsSuspendCheck()) {
528 info->SetSuspendCheck(first_instruction->AsSuspendCheck());

Completed in 50 milliseconds