Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DGCNSubtarget.h1236 unsigned getMaxNumVGPRs(unsigned WavesPerEU) const { in getMaxNumVGPRs() function
1237 return AMDGPU::IsaInfo::getMaxNumVGPRs(this, WavesPerEU); in getMaxNumVGPRs()
1252 unsigned getMaxNumVGPRs(const Function &F) const;
1255 return getMaxNumVGPRs(F); in getMaxNumAGPRs()
1266 unsigned getMaxNumVGPRs(const MachineFunction &MF) const;
H A DGCNNSAReassign.cpp250 MaxNumVGPRs = ST->getMaxNumVGPRs(MF); in runOnMachineFunction()
251 MaxNumVGPRs = std::min(ST->getMaxNumVGPRs(MFI->getOccupancy()), MaxNumVGPRs); in runOnMachineFunction()
H A DAMDGPUSubtarget.cpp782 unsigned MaxNumVGPRs = getMaxNumVGPRs(WavesPerEU.first); in getBaseMaxNumVGPRs()
795 if (Requested && Requested > getMaxNumVGPRs(WavesPerEU.first)) in getBaseMaxNumVGPRs()
808 unsigned GCNSubtarget::getMaxNumVGPRs(const Function &F) const { in getMaxNumVGPRs() function in GCNSubtarget
812 unsigned GCNSubtarget::getMaxNumVGPRs(const MachineFunction &MF) const { in getMaxNumVGPRs() function in GCNSubtarget
H A DSIMachineFunctionInfo.cpp111 ST.getMaxNumVGPRs(F) <= AMDGPU::VGPR_32RegClass.getNumRegs() && in SIMachineFunctionInfo()
202 AMDGPU::VGPR_32RegClass.getRegister(ST.getMaxNumVGPRs(F) - 1); in SIMachineFunctionInfo()
H A DAMDGPUPromoteAlloca.cpp180 MaxVGPRs = ST.getMaxNumVGPRs(ST.getWavesPerEU(F).first); in run()
1181 MaxVGPRs = ST.getMaxNumVGPRs(ST.getWavesPerEU(F).first); in promoteAllocasToVector()
H A DGCNSchedStrategy.cpp76 std::min(ST.getMaxNumVGPRs(TargetOccupancy), VGPRExcessLimit); in initialize()
938 unsigned MaxVGPRs = ST.getMaxNumVGPRs(MF); in checkScheduling()
H A DSIRegisterInfo.cpp651 unsigned MaxNumVGPRs = ST.getMaxNumVGPRs(MF); in getReservedRegs()
2960 return std::min(ST.getMaxNumVGPRs(Occupancy), ST.getMaxNumVGPRs(MF)); in getRegPressureLimit()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.h297 unsigned getMaxNumVGPRs(const MCSubtargetInfo *STI, unsigned WavesPerEU);
H A DAMDGPUBaseInfo.cpp1101 unsigned getMaxNumVGPRs(const MCSubtargetInfo *STI, unsigned WavesPerEU) { in getMaxNumVGPRs() function