Home | History | Annotate | Download | only in optimizing

Lines Matching defs:got

42   HInstruction* got = new (allocator) HGoto();
43 block->AddInstruction(got);
293 HInstruction* got = block->GetLastInstruction();
294 ASSERT_TRUE(got->IsControlFlow());
298 block->InsertInstructionBefore(first_instruction, got);
303 ASSERT_EQ(block->GetLastInstruction(), got);
304 ASSERT_EQ(first_instruction->GetNext(), got);
306 ASSERT_EQ(got->GetNext(), nullptr);
307 ASSERT_EQ(got->GetPrevious(), first_instruction);
311 block->InsertInstructionBefore(second_instruction, got);
316 ASSERT_EQ(block->GetLastInstruction(), got);
319 ASSERT_EQ(second_instruction->GetNext(), got);
321 ASSERT_EQ(got->GetNext(), nullptr);
322 ASSERT_EQ(got->GetPrevious(), second_instruction);