Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h108 RegAllocHints; variable
803 RegAllocHints.grow(Register::index2VirtReg(getNumVirtRegs())); in setRegAllocationHint()
804 auto &Hint = RegAllocHints[VReg]; in setRegAllocationHint()
814 RegAllocHints.grow(Register::index2VirtReg(getNumVirtRegs())); in addRegAllocationHint()
815 RegAllocHints[VReg].second.push_back(PrefReg); in addRegAllocationHint()
825 assert (!RegAllocHints[VReg].first && in clearSimpleHint()
827 if (RegAllocHints.inBounds(VReg)) in clearSimpleHint()
828 RegAllocHints[VReg].second.clear(); in clearSimpleHint()
836 if (!RegAllocHints.inBounds(VReg)) in getRegAllocationHint()
838 auto &Hint = RegAllocHints[VReg.id()]; in getRegAllocationHint()
[all …]