Home | History | Annotate | Download | only in CodeGen

Lines Matching full:phys

278   unsigned Phys = Hint.second;
279 if (VRM && isVirtualRegister(Phys))
280 Phys = VRM->getPhys(Phys);
282 // Check that Phys is a valid hint in VirtReg's register class.
283 if (!isPhysicalRegister(Phys))
285 if (MRI.isReserved(Phys))
287 // Check that Phys is in the allocation order. We shouldn't heed hints
290 if (std::find(Order.begin(), Order.end(), Phys) == Order.end())
294 Hints.push_back(Phys);