Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h106 RegAllocHints; variable
804 RegAllocHints[VReg].first = Type; in setRegAllocationHint()
805 RegAllocHints[VReg].second.clear(); in setRegAllocationHint()
806 RegAllocHints[VReg].second.push_back(PrefReg); in setRegAllocationHint()
813 RegAllocHints[VReg].second.push_back(PrefReg); in addRegAllocationHint()
823 assert (!RegAllocHints[VReg].first && in clearSimpleHint()
825 RegAllocHints[VReg].second.clear(); in clearSimpleHint()
833 Register BestHint = (RegAllocHints[VReg.id()].second.size() ? in getRegAllocationHint()
834 RegAllocHints[VReg.id()].second[0] : Register()); in getRegAllocationHint()
835 return {RegAllocHints[VReg.id()].first, BestHint}; in getRegAllocationHint()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineRegisterInfo.cpp50 RegAllocHints.reserve(256); in MachineRegisterInfo()
150 RegAllocHints.grow(Reg); in createIncompleteVirtualRegister()