Home | History | Annotate | Download | only in CodeGen

Lines Matching full:phys

352   unsigned Phys = Hint.second;
353 if (VRM && isVirtualRegister(Phys))
354 Phys = VRM->getPhys(Phys);
356 // Check that Phys is a valid hint in VirtReg's register class.
357 if (!isPhysicalRegister(Phys))
359 if (MRI.isReserved(Phys))
361 // Check that Phys is in the allocation order. We shouldn't heed hints
364 if (std::find(Order.begin(), Order.end(), Phys) == Order.end())
368 Hints.push_back(Phys);