Home | History | Annotate | Download | only in CodeGen

Lines Matching full:phys

268   unsigned Phys = Hint.second;
269 if (VRM && isVirtualRegister(Phys))
270 Phys = VRM->getPhys(Phys);
272 // Check that Phys is a valid hint in VirtReg's register class.
273 if (!isPhysicalRegister(Phys))
275 if (MRI.isReserved(Phys))
277 // Check that Phys is in the allocation order. We shouldn't heed hints
280 if (std::find(Order.begin(), Order.end(), Phys) == Order.end())
284 Hints.push_back(Phys);