Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h792 void setRegAllocationHint(Register VReg, unsigned Type, Register PrefReg) { in setRegAllocationHint() argument
796 RegAllocHints[VReg].second.push_back(PrefReg); in setRegAllocationHint()
801 void addRegAllocationHint(Register VReg, Register PrefReg) { in addRegAllocationHint() argument
803 RegAllocHints[VReg].second.push_back(PrefReg); in addRegAllocationHint()
808 void setSimpleHint(Register VReg, Register PrefReg) { in setSimpleHint() argument
809 setRegAllocationHint(VReg, /*Type=*/0, PrefReg); in setSimpleHint()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DSpillPlacement.h82 PrefReg, ///< Block entry/exit prefers a register. enumerator
H A DSpillPlacement.cpp138 case PrefReg: in addBias()
381 case PrefReg: return "PrefReg"; in print()
H A DRegAllocGreedy.cpp610 BC.Entry = BI.LiveIn ? SpillPlacement::PrefReg : SpillPlacement::DontCare; in addSplitConstraints()
613 ? SpillPlacement::PrefReg in addSplitConstraints()
861 Ins += RegIn != (BC.Entry == SpillPlacement::PrefReg); in calcGlobalSplitCost()
863 Ins += RegOut != (BC.Exit == SpillPlacement::PrefReg); in calcGlobalSplitCost()
/openbsd-src/gnu/llvm/llvm/tools/llvm-reduce/
H A DReducerWorkItem.cpp285 for (Register PrefReg : Hints.second) in cloneMF() local
286 DstMRI->addRegAllocationHint(NewReg, PrefReg); in cloneMF()