Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator.cc920 HInstruction* current_phi = block->GetFirstPhi(); in RecordCatchBlockInfo() local
922 while (current_phi != nullptr && current_phi->AsPhi()->GetRegNumber() < vreg) { in RecordCatchBlockInfo()
923 HInstruction* next_phi = current_phi->GetNext(); in RecordCatchBlockInfo()
925 current_phi->AsPhi()->GetRegNumber() <= next_phi->AsPhi()->GetRegNumber()) in RecordCatchBlockInfo()
927 current_phi = next_phi; in RecordCatchBlockInfo()
930 if (current_phi == nullptr || current_phi->AsPhi()->GetRegNumber() != vreg) { in RecordCatchBlockInfo()
933 Location location = current_phi->GetLiveInterval()->ToLocation(); in RecordCatchBlockInfo()