Lines Matching refs:got
51 HInstruction* got = new (GetAllocator()) HGoto(); in CreateGotoBlock() local
52 block->AddInstruction(got); in CreateGotoBlock()
281 HInstruction* got = block->GetLastInstruction(); in TEST_F() local
282 ASSERT_TRUE(got->IsControlFlow()); in TEST_F()
286 block->InsertInstructionBefore(first_instruction, got); in TEST_F()
291 ASSERT_EQ(block->GetLastInstruction(), got); in TEST_F()
292 ASSERT_EQ(first_instruction->GetNext(), got); in TEST_F()
294 ASSERT_EQ(got->GetNext(), nullptr); in TEST_F()
295 ASSERT_EQ(got->GetPrevious(), first_instruction); in TEST_F()
299 block->InsertInstructionBefore(second_instruction, got); in TEST_F()
304 ASSERT_EQ(block->GetLastInstruction(), got); in TEST_F()
307 ASSERT_EQ(second_instruction->GetNext(), got); in TEST_F()
309 ASSERT_EQ(got->GetNext(), nullptr); in TEST_F()
310 ASSERT_EQ(got->GetPrevious(), second_instruction); in TEST_F()