Searched defs:next_phi (Results 1 - 3 of 3) sorted by relevance

/art/compiler/optimizing/
H A Dssa_builder.cc643 HPhi* next_phi = next->AsPhi(); local
644 DCHECK_EQ(next_phi->GetType(), type);
645 return next_phi->IsLive() ? next_phi : nullptr;
H A Dgraph_checker.cc763 HInstruction* next_phi = phi->GetNext(); local
764 if (next_phi != nullptr) {
765 size_t input_count_next = next_phi->InputCount();
772 next_phi->GetId(),
809 HInstruction* next_phi = phi->GetNext(); local
810 if (next_phi != nullptr && phi->GetRegNumber() > next_phi->AsPhi()->GetRegNumber()) {
814 next_phi->GetId(),
H A Dcode_generator.cc1128 HInstruction* next_phi = current_phi->GetNext(); local
1129 DCHECK(next_phi == nullptr ||
1130 current_phi->AsPhi()->GetRegNumber() <= next_phi->AsPhi()->GetRegNumber())
1132 current_phi = next_phi;

Completed in 10 milliseconds