Lines Matching refs:got
50 HInstruction* got = new (GetAllocator()) HGoto(); in CreateGotoBlock() local
51 block->AddInstruction(got); in CreateGotoBlock()
280 HInstruction* got = block->GetLastInstruction(); in TEST_F() local
281 ASSERT_TRUE(got->IsControlFlow()); in TEST_F()
285 block->InsertInstructionBefore(first_instruction, got); in TEST_F()
290 ASSERT_EQ(block->GetLastInstruction(), got); in TEST_F()
291 ASSERT_EQ(first_instruction->GetNext(), got); in TEST_F()
293 ASSERT_EQ(got->GetNext(), nullptr); in TEST_F()
294 ASSERT_EQ(got->GetPrevious(), first_instruction); in TEST_F()
298 block->InsertInstructionBefore(second_instruction, got); in TEST_F()
303 ASSERT_EQ(block->GetLastInstruction(), got); in TEST_F()
306 ASSERT_EQ(second_instruction->GetNext(), got); in TEST_F()
308 ASSERT_EQ(got->GetNext(), nullptr); in TEST_F()
309 ASSERT_EQ(got->GetPrevious(), second_instruction); in TEST_F()