Searched defs:Phys (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/CodeGen/
H A DTargetRegisterInfo.cpp270 unsigned Phys = Hint.second; local
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);
[all...]

Completed in 130 milliseconds