Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DLiveRegMatrix.cpp38 char LiveRegMatrix::ID = 0;
39 INITIALIZE_PASS_BEGIN(LiveRegMatrix, "liveregmatrix",
43 INITIALIZE_PASS_END(LiveRegMatrix, "liveregmatrix", in INITIALIZE_PASS_DEPENDENCY()
46 LiveRegMatrix::LiveRegMatrix() : MachineFunctionPass(ID) {} in INITIALIZE_PASS_DEPENDENCY()
48 void LiveRegMatrix::getAnalysisUsage(AnalysisUsage &AU) const { in getAnalysisUsage()
55 bool LiveRegMatrix::runOnMachineFunction(MachineFunction &MF) { in runOnMachineFunction()
70 void LiveRegMatrix::releaseMemory() { in releaseMemory()
121 void LiveRegMatrix::unassign(LiveInterval &VirtReg) { in unassign()
138 bool LiveRegMatrix::isPhysRegUsed(unsigned PhysReg) const { in isPhysRegUsed()
146 bool LiveRegMatrix::checkRegMaskInterference(LiveInterval &VirtReg, in checkRegMaskInterference()
[all …]
H A DRegAllocBasic.cpp141 INITIALIZE_PASS_DEPENDENCY(LiveRegMatrix) in INITIALIZE_PASS_DEPENDENCY()
192 AU.addRequired<LiveRegMatrix>(); in getAnalysisUsage()
193 AU.addPreserved<LiveRegMatrix>(); in getAnalysisUsage()
267 case LiveRegMatrix::IK_Free: in selectOrSplit()
271 case LiveRegMatrix::IK_VirtReg: in selectOrSplit()
313 getAnalysis<LiveRegMatrix>()); in runOnMachineFunction()
H A DRegAllocBase.h47 class LiveRegMatrix; variable
69 LiveRegMatrix *Matrix = nullptr;
82 void init(VirtRegMap &vrm, LiveIntervals &lis, LiveRegMatrix &mat);
H A DAllocationOrder.h28 class LiveRegMatrix; variable
47 const LiveRegMatrix *Matrix);
H A DAllocationOrder.cpp33 const LiveRegMatrix *Matrix) in AllocationOrder()
H A DRegAllocBase.cpp59 LiveRegMatrix &mat) { in init()
H A DRegAllocGreedy.cpp571 INITIALIZE_PASS_DEPENDENCY(LiveRegMatrix)
621 AU.addRequired<LiveRegMatrix>(); in getAnalysisUsage()
622 AU.addPreserved<LiveRegMatrix>(); in getAnalysisUsage()
871 if (Matrix->checkInterference(VirtReg, PhysReg) > LiveRegMatrix::IK_VirtReg) in canEvictInterference()
2627 LiveRegMatrix::IK_VirtReg) { in tryLastChanceRecoloring()
3214 getAnalysis<LiveRegMatrix>()); in runOnMachineFunction()
H A DTargetRegisterInfo.cpp397 const LiveRegMatrix *Matrix) const { in getRegAllocationHints()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DLiveRegMatrix.h41 class LiveRegMatrix : public MachineFunctionPass {
69 LiveRegMatrix();
H A DTargetRegisterInfo.h38 class LiveRegMatrix; variable
814 const LiveRegMatrix *Matrix = nullptr)
/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A DSystemZRegisterInfo.h58 const LiveRegMatrix *Matrix) const override;
H A DSystemZRegisterInfo.cpp63 const LiveRegMatrix *Matrix) const { in getRegAllocationHints()
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMBaseRegisterInfo.h155 const LiveRegMatrix *Matrix) const override;
H A DARMBaseRegisterInfo.cpp294 const LiveRegMatrix *Matrix) const { in getRegAllocationHints()
/freebsd-12.1/lib/clang/libllvm/
H A DMakefile240 SRCS_MIN+= CodeGen/LiveRegMatrix.cpp