Lines Matching refs:loop_body
216 HBasicBlock* loop_body = new (GetAllocator()) HBasicBlock(graph); in TEST_F() local
220 graph->AddBlock(loop_body); in TEST_F()
223 loop_header->AddSuccessor(loop_body); in TEST_F()
225 loop_body->AddSuccessor(loop_header); in TEST_F()
241 loop_body->AddInstruction(new (GetAllocator()) HInstanceFieldSet(parameter, in TEST_F()
251 HInstruction* field_set = loop_body->GetLastInstruction(); in TEST_F()
252 loop_body->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter, in TEST_F()
261 HInstruction* field_get_in_loop_body = loop_body->GetLastInstruction(); in TEST_F()
262 loop_body->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
277 ASSERT_EQ(field_get_in_loop_body->GetBlock(), loop_body); in TEST_F()
289 ASSERT_EQ(field_get_in_loop_body->GetBlock(), loop_body); in TEST_F()
295 loop_body->RemoveInstruction(field_set); in TEST_F()