Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSIMachineFunctionInfo.h284 unsigned Occupancy = 0;
326 YamlIO.mapOptional("occupancy", MFI.Occupancy, 0);
434 unsigned Occupancy;
928 return Occupancy;
933 return Occupancy;
934 return (Occupancy < 4) ? Occupancy : 4;
940 if (Occupancy > Limit)
941 Occupancy = Limit;
945 if (Occupancy < Limit)
946 Occupancy = Limit;
H A DAMDGPUSubtarget.cpp720 unsigned Occupancy = in computeOccupancy() local
724 Occupancy = std::min(Occupancy, getOccupancyWithNumSGPRs(NumSGPRs)); in computeOccupancy()
726 Occupancy = std::min(Occupancy, getOccupancyWithNumVGPRs(NumVGPRs)); in computeOccupancy()
727 return Occupancy; in computeOccupancy()
H A DSIFormMemoryClauses.cpp197 unsigned Occupancy = MaxPressure.getOccupancy(*ST); in checkPressure() local
208 if (Occupancy >= MFI->getMinAllowedOccupancy() && in checkPressure()
211 LastRecordedOccupancy = Occupancy; in checkPressure()
H A DSIMachineFunctionInfo.cpp43 Occupancy = ST.computeOccupancy(F, getLDSSize()); in SIMachineFunctionInfo()
564 Occupancy(MFI.getOccupancy()), in SIMachineFunctionInfo()
586 Occupancy = YamlMFI.Occupancy; in initializeBaseYamlFields()
H A DSIProgramInfo.h62 uint32_t Occupancy = 0; member
H A DAMDGPUTargetMachine.cpp1257 if (MFI->Occupancy == 0) { in parseMachineFunctionInfo()
1260 MFI->Occupancy = ST.computeOccupancy(MF.getFunction(), MFI->getLDSSize()); in parseMachineFunctionInfo()
H A DAMDGPUAsmPrinter.cpp566 Twine(CurrentProgramInfo.Occupancy), false); in runOnMachineFunction()
1266 ProgInfo.Occupancy = STM.computeOccupancy(MF.getFunction(), ProgInfo.LDSSize, in getSIProgramInfo()
H A DSIRegisterInfo.cpp2282 unsigned Occupancy = ST.getOccupancyWithLocalMemSize(MFI->getLDSSize(), in getRegPressureLimit() local
2290 return std::min(ST.getMaxNumVGPRs(Occupancy), ST.getMaxNumVGPRs(MF)); in getRegPressureLimit()
2293 return std::min(ST.getMaxNumSGPRs(Occupancy, true), ST.getMaxNumSGPRs(MF)); in getRegPressureLimit()