Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator.cc1267 HInstruction* current_phi = block->GetFirstPhi(); in RecordCatchBlockInfo() local
1269 while (current_phi != nullptr && current_phi->AsPhi()->GetRegNumber() < vreg) { in RecordCatchBlockInfo()
1270 HInstruction* next_phi = current_phi->GetNext(); in RecordCatchBlockInfo()
1272 current_phi->AsPhi()->GetRegNumber() <= next_phi->AsPhi()->GetRegNumber()) in RecordCatchBlockInfo()
1274 current_phi = next_phi; in RecordCatchBlockInfo()
1277 if (current_phi == nullptr || current_phi->AsPhi()->GetRegNumber() != vreg) { in RecordCatchBlockInfo()
1280 Location location = current_phi->GetLocations()->Out(); in RecordCatchBlockInfo()