Home
last modified time | relevance | path

Searched refs:next_phi (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dgraph_checker.cc848 HInstruction* next_phi = phi->GetNext(); in VisitPhi() local
849 if (next_phi != nullptr) { in VisitPhi()
850 size_t input_count_next = next_phi->InputCount(); in VisitPhi()
857 next_phi->GetId(), in VisitPhi()
894 HInstruction* next_phi = phi->GetNext(); in VisitPhi() local
895 if (next_phi != nullptr && phi->GetRegNumber() > next_phi->AsPhi()->GetRegNumber()) { in VisitPhi()
899 next_phi->GetId(), in VisitPhi()
Dssa_builder.cc681 HPhi* next_phi = next->AsPhi(); in GetFloatDoubleOrReferenceEquivalentOfPhi() local
682 DCHECK_EQ(next_phi->GetType(), type); in GetFloatDoubleOrReferenceEquivalentOfPhi()
683 return next_phi->IsLive() ? next_phi : nullptr; in GetFloatDoubleOrReferenceEquivalentOfPhi()
Dcode_generator.cc1321 HInstruction* next_phi = current_phi->GetNext(); in RecordCatchBlockInfo() local
1322 DCHECK(next_phi == nullptr || in RecordCatchBlockInfo()
1323 current_phi->AsPhi()->GetRegNumber() <= next_phi->AsPhi()->GetRegNumber()) in RecordCatchBlockInfo()
1325 current_phi = next_phi; in RecordCatchBlockInfo()