Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator.cc857 HInstruction* current_phi = block->GetFirstPhi(); in RecordCatchBlockInfo() local
859 while (current_phi != nullptr && current_phi->AsPhi()->GetRegNumber() < vreg) { in RecordCatchBlockInfo()
860 HInstruction* next_phi = current_phi->GetNext(); in RecordCatchBlockInfo()
862 current_phi->AsPhi()->GetRegNumber() <= next_phi->AsPhi()->GetRegNumber()) in RecordCatchBlockInfo()
864 current_phi = next_phi; in RecordCatchBlockInfo()
867 if (current_phi == nullptr || current_phi->AsPhi()->GetRegNumber() != vreg) { in RecordCatchBlockInfo()
870 Location location = current_phi->GetLiveInterval()->ToLocation(); in RecordCatchBlockInfo()