Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator.cc1188 HInstruction* current_phi = block->GetFirstPhi(); in RecordCatchBlockInfo() local
1190 while (current_phi != nullptr && current_phi->AsPhi()->GetRegNumber() < vreg) { in RecordCatchBlockInfo()
1191 HInstruction* next_phi = current_phi->GetNext(); in RecordCatchBlockInfo()
1193 current_phi->AsPhi()->GetRegNumber() <= next_phi->AsPhi()->GetRegNumber()) in RecordCatchBlockInfo()
1195 current_phi = next_phi; in RecordCatchBlockInfo()
1198 if (current_phi == nullptr || current_phi->AsPhi()->GetRegNumber() != vreg) { in RecordCatchBlockInfo()
1201 Location location = current_phi->GetLocations()->Out(); in RecordCatchBlockInfo()