Home
last modified time | relevance | path

Searched refs:RegAllocHints (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h103 VirtReg2IndexFunctor> RegAllocHints; variable
760 RegAllocHints[VReg].first = Type; in setRegAllocationHint()
761 RegAllocHints[VReg].second.clear(); in setRegAllocationHint()
762 RegAllocHints[VReg].second.push_back(PrefReg); in setRegAllocationHint()
769 RegAllocHints[VReg].second.push_back(PrefReg); in addRegAllocationHint()
779 assert (RegAllocHints[VReg].first == 0 && in clearSimpleHint()
781 RegAllocHints[VReg].second.clear(); in clearSimpleHint()
790 unsigned BestHint = (RegAllocHints[VReg].second.size() ? in getRegAllocationHint()
791 RegAllocHints[VReg].second[0] : 0); in getRegAllocationHint()
792 return std::pair<unsigned, unsigned>(RegAllocHints[VReg].first, BestHint); in getRegAllocationHint()
[all …]
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineRegisterInfo.cpp51 RegAllocHints.reserve(256); in MachineRegisterInfo()
150 RegAllocHints.grow(Reg); in createIncompleteVirtualRegister()