Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIMachineFunctionInfo.h424 unsigned Occupancy;
903 return Occupancy;
908 return Occupancy;
909 return (Occupancy < 4) ? Occupancy : 4;
915 if (Occupancy > Limit)
916 Occupancy = Limit;
920 if (Occupancy < Limit)
921 Occupancy = Limit;
DAMDGPUSubtarget.cpp629 unsigned Occupancy = in computeOccupancy() local
633 Occupancy = std::min(Occupancy, getOccupancyWithNumSGPRs(NumSGPRs)); in computeOccupancy()
635 Occupancy = std::min(Occupancy, getOccupancyWithNumVGPRs(NumVGPRs)); in computeOccupancy()
636 return Occupancy; in computeOccupancy()
DSIProgramInfo.h57 uint32_t Occupancy = 0; member
DSIFormMemoryClauses.cpp253 unsigned Occupancy = MaxPressure.getOccupancy(*ST); in checkPressure() local
254 if (Occupancy >= MFI->getMinAllowedOccupancy() && in checkPressure()
257 LastRecordedOccupancy = Occupancy; in checkPressure()
DGCNRegBankReassign.cpp741 unsigned Occupancy = MFI->getOccupancy(); in runOnMachineFunction() local
744 MaxNumVGPRs = std::min(ST->getMaxNumVGPRs(Occupancy), MaxNumVGPRs); in runOnMachineFunction()
745 MaxNumSGPRs = std::min(ST->getMaxNumSGPRs(Occupancy, true), MaxNumSGPRs); in runOnMachineFunction()
DSIMachineFunctionInfo.cpp55 Occupancy = ST.computeOccupancy(MF, getLDSSize()); in SIMachineFunctionInfo()
DSIRegisterInfo.cpp1726 unsigned Occupancy = ST.getOccupancyWithLocalMemSize(MFI->getLDSSize(), in getRegPressureLimit() local
1732 return std::min(ST.getMaxNumVGPRs(Occupancy), ST.getMaxNumVGPRs(MF)); in getRegPressureLimit()
1734 return std::min(ST.getMaxNumSGPRs(Occupancy, true), ST.getMaxNumSGPRs(MF)); in getRegPressureLimit()
DAMDGPUAsmPrinter.cpp523 Twine(CurrentProgramInfo.Occupancy), false); in runOnMachineFunction()
1111 ProgInfo.Occupancy = STM.computeOccupancy(MF, ProgInfo.LDSSize, in getSIProgramInfo()