Searched refs:phi_it (Results 1 – 4 of 4) sorted by relevance
423 for (const auto& phi_it : phi_candidates_) { in PrintPhiCandidates() local424 std::cerr << "\tBB %" << phi_it.second.bb()->id() << ": " in PrintPhiCandidates()425 << phi_it.second.PrettyPrint(pass_->cfg()) << "\n"; in PrintPhiCandidates()
1937 std::vector<aco_ptr<Instruction>>::iterator phi_it; in register_allocation() local1938 for (phi_it = instructions.begin(); phi_it != instructions.end(); ++phi_it) { in register_allocation()1939 if ((*phi_it)->definitions[0].tempId() == pc.first.tempId()) in register_allocation()1940 prev_phi = phi_it->get(); in register_allocation()1942 phi_it = it; in register_allocation()1943 while (!prev_phi && is_phi(*++phi_it)) { in register_allocation()1944 if ((*phi_it)->definitions[0].tempId() == pc.first.tempId()) in register_allocation()1945 prev_phi = phi_it->get(); in register_allocation()