Lines Matching full:phys
270 unsigned Phys = Hint.second;
271 if (VRM && isVirtualRegister(Phys))
272 Phys = VRM->getPhys(Phys);
274 // Check that Phys is a valid hint in VirtReg's register class.
275 if (!isPhysicalRegister(Phys))
277 if (MRI.isReserved(Phys))
279 // Check that Phys is in the allocation order. We shouldn't heed hints
282 if (std::find(Order.begin(), Order.end(), Phys) == Order.end())
286 Hints.push_back(Phys);