HomeSort by relevance Sort by last modified time
    Searched refs:WavesPerEU (Results 1 - 6 of 6) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPUSubtarget.h 877 unsigned getMinNumSGPRs(unsigned WavesPerEU) const {
879 WavesPerEU);
884 unsigned getMaxNumSGPRs(unsigned WavesPerEU, bool Addressable) const {
886 WavesPerEU, Addressable);
927 unsigned getMinNumVGPRs(unsigned WavesPerEU) const {
929 WavesPerEU);
934 unsigned getMaxNumVGPRs(unsigned WavesPerEU) const {
936 WavesPerEU);
AMDGPUSubtarget.cpp 552 std::pair<unsigned, unsigned> WavesPerEU = MFI.getWavesPerEU();
553 unsigned MaxNumSGPRs = getMaxNumSGPRs(WavesPerEU.first, false);
554 unsigned MaxAddressableNumSGPRs = getMaxNumSGPRs(WavesPerEU.first, true);
579 if (Requested && Requested > getMaxNumSGPRs(WavesPerEU.first, false))
581 if (WavesPerEU.second &&
582 Requested && Requested < getMinNumSGPRs(WavesPerEU.second))
602 std::pair<unsigned, unsigned> WavesPerEU = MFI.getWavesPerEU();
603 unsigned MaxNumVGPRs = getMaxNumVGPRs(WavesPerEU.first);
613 if (Requested && Requested > getMaxNumVGPRs(WavesPerEU.first))
615 if (WavesPerEU.second &
    [all...]
SIMachineFunctionInfo.h 125 std::pair<unsigned, unsigned> WavesPerEU = {0, 0};
555 return WavesPerEU;
560 return WavesPerEU.first;
565 return WavesPerEU.second;
SIMachineFunctionInfo.cpp 53 WavesPerEU = ST.getWavesPerEU(F);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/Utils/
AMDGPUBaseInfo.h 136 unsigned getMinNumSGPRs(const FeatureBitset &Features, unsigned WavesPerEU);
140 unsigned getMaxNumSGPRs(const FeatureBitset &Features, unsigned WavesPerEU,
173 unsigned getMinNumVGPRs(const FeatureBitset &Features, unsigned WavesPerEU);
177 unsigned getMaxNumVGPRs(const FeatureBitset &Features, unsigned WavesPerEU);
AMDGPUBaseInfo.cpp 312 unsigned getMinNumSGPRs(const FeatureBitset &Features, unsigned WavesPerEU) {
313 assert(WavesPerEU != 0);
315 if (WavesPerEU >= getMaxWavesPerEU())
318 unsigned MinNumSGPRs = getTotalNumSGPRs(Features) / (WavesPerEU + 1);
325 unsigned getMaxNumSGPRs(const FeatureBitset &Features, unsigned WavesPerEU,
327 assert(WavesPerEU != 0);
333 unsigned MaxNumSGPRs = getTotalNumSGPRs(Features) / WavesPerEU;
389 unsigned getMinNumVGPRs(const FeatureBitset &Features, unsigned WavesPerEU) {
390 assert(WavesPerEU != 0);
392 if (WavesPerEU >= getMaxWavesPerEU()
    [all...]

Completed in 77 milliseconds