Home
last modified time | relevance | path

Searched refs:GetPrevious (Results 1 – 14 of 14) sorted by relevance

/art/compiler/optimizing/
Dconstant_folding_test.cc260 HInstruction* inst2 = inst1->GetPrevious(); in TEST()
263 HInstruction* inst3 = inst2->GetPrevious(); in TEST()
563 HInstruction* inst2 = inst1->GetPrevious(); in TEST()
566 HInstruction* inst3 = inst2->GetPrevious(); in TEST()
569 HInstruction* inst4 = inst3->GetPrevious(); in TEST()
Dgraph_test.cc305 ASSERT_EQ(first_instruction->GetPrevious(), nullptr); in TEST()
307 ASSERT_EQ(got->GetPrevious(), first_instruction); in TEST()
318 ASSERT_EQ(first_instruction->GetPrevious(), nullptr); in TEST()
320 ASSERT_EQ(second_instruction->GetPrevious(), first_instruction); in TEST()
322 ASSERT_EQ(got->GetPrevious(), second_instruction); in TEST()
Dprepare_for_register_allocation.cc53 if (check->GetPrevious() == cls) { in VisitClinitCheck()
Dnodes.h900 HUseListNode* GetPrevious() const { return prev_; } in GetPrevious() function
1315 HInstruction* GetPrevious() const { return previous_; } in GetPrevious() function
1623 next_ = Done() ? nullptr : instruction_->GetPrevious(); in HBackwardInstructionIterator()
1630 next_ = Done() ? nullptr : instruction_->GetPrevious(); in Advance()
3377 DCHECK(GetPrevious() != nullptr); in GetType()
3378 return GetPrevious()->GetType(); in GetType()
3912 if ((GetPrevious() == instruction) in AddMove()
3913 || ((GetPrevious() == nullptr) in AddMove()
Dregister_allocator.cc1319 HInstruction* previous = user->GetPrevious(); in AddInputMoveFor()
1393 HInstruction* previous = at->GetPrevious(); in InsertParallelMoveAt()
1428 HInstruction* previous = last->GetPrevious(); in InsertParallelMoveAtExitOf()
Dnodes.cc615 HInstruction* previous = GetPrevious(); in GetPreviousDisregardingMoves()
617 previous = previous->GetPrevious(); in GetPreviousDisregardingMoves()
Dregister_allocator_test.cc347 HXor* last_xor = graph->GetBlocks().Get(1)->GetLastInstruction()->GetPrevious()->AsXor(); in TEST()
Dcode_generator.cc408 HInstruction* previous = instruction->GetPrevious(); in InitLocationsBaseline()
Dbuilder.cc51 DCHECK(temp->GetPrevious() == instruction); in Add()
Dcode_generator_arm64.cc1721 HInstruction* previous = got->GetPrevious(); in VisitGoto()
Dcode_generator_mips64.cc1934 HInstruction* previous = got->GetPrevious(); in VisitGoto()
Dcode_generator_arm.cc911 HInstruction* previous = got->GetPrevious(); in VisitGoto()
Dcode_generator_x86.cc812 HInstruction* previous = got->GetPrevious(); in VisitGoto()
Dcode_generator_x86_64.cc775 HInstruction* previous = got->GetPrevious(); in VisitGoto()