Searched refs:DsCnt (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIInsertWaitcnts.cpp | 205 return Wait.DsCnt; in getCounterRef() 1041 simplifyWaitcnt(DS_CNT, Wait.DsCnt); in simplifyWaitcnt() 1089 applyWaitcnt(DS_CNT, Wait.DsCnt); in applyWaitcnt() 1243 ScoreBrackets.applyWaitcnt(DS_CNT, Wait.DsCnt); in applyPreexistingWaitcnt() 1246 Wait.DsCnt = ~0u; in applyPreexistingWaitcnt() 1405 if (Wait.LoadCnt != ~0u && Wait.DsCnt != ~0u) { in applyPreexistingWaitcnt() 1411 ScoreBrackets.applyWaitcnt(DS_CNT, Wait.DsCnt); in applyPreexistingWaitcnt() 1413 Wait.DsCnt = ~0u; in applyPreexistingWaitcnt() 1430 if (Wait.StoreCnt != ~0u && Wait.DsCnt != ~0u) { in applyPreexistingWaitcnt() 1436 ScoreBrackets.applyWaitcnt(DS_CNT, Wait.DsCnt); in applyPreexistingWaitcnt() [all …]
|
H A D | GCNHazardRecognizer.cpp | 1252 return (Decoded.DsCnt == 0); in fixSMEMtoVectorWriteHazards()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
H A D | AMDGPUBaseInfo.h | 926 unsigned DsCnt = ~0u; // Corresponds to LGKMcnt prior to gfx12. member 935 : LoadCnt(VmCnt), ExpCnt(ExpCnt), DsCnt(LgkmCnt), StoreCnt(VsCnt), in Waitcnt() 939 Waitcnt(unsigned LoadCnt, unsigned ExpCnt, unsigned DsCnt, unsigned StoreCnt, in Waitcnt() 941 : LoadCnt(LoadCnt), ExpCnt(ExpCnt), DsCnt(DsCnt), StoreCnt(StoreCnt), in Waitcnt() 947 return LoadCnt != ~0u || ExpCnt != ~0u || DsCnt != ~0u || in hasWaitExceptStoreCnt() 958 std::min(DsCnt, Other.DsCnt), std::min(StoreCnt, Other.StoreCnt), in combined()
|
H A D | AMDGPUBaseInfo.cpp | 1435 Decoded.DsCnt = decodeLgkmcnt(Version, Encoded); in decodeWaitcnt() 1470 return encodeWaitcnt(Version, Decoded.LoadCnt, Decoded.ExpCnt, Decoded.DsCnt); in encodeWaitcnt() 1492 Decoded.DsCnt = unpackBits(LoadcntDscnt, getDscntBitShift(Version.Major), in decodeLoadcntDscnt() 1502 Decoded.DsCnt = unpackBits(StorecntDscnt, getDscntBitShift(Version.Major), in decodeStorecntDscnt() 1534 return encodeLoadcntDscnt(Version, Decoded.LoadCnt, Decoded.DsCnt); in encodeLoadcntDscnt() 1547 return encodeStorecntDscnt(Version, Decoded.StoreCnt, Decoded.DsCnt); in encodeStorecntDscnt()
|