Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DSIMachineFunctionInfo.h266 unsigned Occupancy = 0;
317 YamlIO.mapOptional("occupancy", MFI.Occupancy, 0);
457 unsigned Occupancy;
1021 return Occupancy;
1026 return Occupancy;
1027 return (Occupancy < 4) ? Occupancy : 4;
1033 if (Occupancy > Limit)
1034 Occupancy = Limit;
1038 if (Occupancy < Limit)
1039 Occupancy = Limit;
H A DAMDGPUSubtarget.cpp686 unsigned Occupancy = in computeOccupancy() local
690 Occupancy = std::min(Occupancy, getOccupancyWithNumSGPRs(NumSGPRs)); in computeOccupancy()
692 Occupancy = std::min(Occupancy, getOccupancyWithNumVGPRs(NumVGPRs)); in computeOccupancy()
693 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 DSIProgramInfo.h64 uint32_t Occupancy = 0; member
H A DSIMachineFunctionInfo.cpp65 Occupancy = ST.computeOccupancy(F, getLDSSize()); in SIMachineFunctionInfo()
635 Occupancy(MFI.getOccupancy()), in SIMachineFunctionInfo()
665 Occupancy = YamlMFI.Occupancy; in initializeBaseYamlFields()
H A DAMDGPUAsmPrinter.cpp565 Twine(CurrentProgramInfo.Occupancy), false); in runOnMachineFunction()
938 ProgInfo.Occupancy = STM.computeOccupancy(MF.getFunction(), ProgInfo.LDSSize, in getSIProgramInfo()
1234 CurrentProgramInfo.Occupancy); in emitResourceUsageRemarks()
H A DAMDGPUTargetMachine.cpp1443 if (MFI->Occupancy == 0) { in parseMachineFunctionInfo()
1446 MFI->Occupancy = ST.computeOccupancy(MF.getFunction(), MFI->getLDSSize()); in parseMachineFunctionInfo()
H A DSIRegisterInfo.cpp2952 unsigned Occupancy = ST.getOccupancyWithLocalMemSize(MFI->getLDSSize(), in getRegPressureLimit() local
2960 return std::min(ST.getMaxNumVGPRs(Occupancy), ST.getMaxNumVGPRs(MF)); in getRegPressureLimit()
2963 return std::min(ST.getMaxNumSGPRs(Occupancy, true), ST.getMaxNumSGPRs(MF)); in getRegPressureLimit()