Home
last modified time | relevance | path

Searched refs:DsCnt (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInsertWaitcnts.cpp225 return Wait.DsCnt; in getCounterRef()
1170 simplifyWaitcnt(DS_CNT, Wait.DsCnt); in simplifyWaitcnt()
1222 applyWaitcnt(DS_CNT, Wait.DsCnt); in applyWaitcnt()
1408 ScoreBrackets.applyWaitcnt(DS_CNT, Wait.DsCnt); in applyPreexistingWaitcnt()
1411 Wait.DsCnt = ~0u; in applyPreexistingWaitcnt()
1582 if (Wait.LoadCnt != ~0u && Wait.DsCnt != ~0u) { in applyPreexistingWaitcnt()
1588 ScoreBrackets.applyWaitcnt(DS_CNT, Wait.DsCnt); in applyPreexistingWaitcnt()
1590 Wait.DsCnt = ~0u; in applyPreexistingWaitcnt()
1607 if (Wait.StoreCnt != ~0u && Wait.DsCnt != ~0u) { in applyPreexistingWaitcnt()
1613 ScoreBrackets.applyWaitcnt(DS_CNT, Wait.DsCnt); in applyPreexistingWaitcnt()
[all …]
H A DGCNHazardRecognizer.cpp1343 return (Decoded.DsCnt == 0); in fixSMEMtoVectorWriteHazards()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.h1051 unsigned DsCnt = ~0u; // Corresponds to LGKMcnt prior to gfx12. member
1061 : LoadCnt(VmCnt), ExpCnt(ExpCnt), DsCnt(LgkmCnt), StoreCnt(VsCnt) {} in Waitcnt()
1064 Waitcnt(unsigned LoadCnt, unsigned ExpCnt, unsigned DsCnt, unsigned StoreCnt, in Waitcnt()
1066 : LoadCnt(LoadCnt), ExpCnt(ExpCnt), DsCnt(DsCnt), StoreCnt(StoreCnt), in Waitcnt()
1072 return LoadCnt != ~0u || ExpCnt != ~0u || DsCnt != ~0u || in hasWaitExceptStoreCnt()
1083 std::min(DsCnt, Other.DsCnt), std::min(StoreCnt, Other.StoreCnt), in combined()
H A DAMDGPUBaseInfo.cpp1680 Decoded.DsCnt = decodeLgkmcnt(Version, Encoded); in decodeWaitcnt()
1715 return encodeWaitcnt(Version, Decoded.LoadCnt, Decoded.ExpCnt, Decoded.DsCnt); in encodeWaitcnt()
1737 Decoded.DsCnt = unpackBits(LoadcntDscnt, getDscntBitShift(Version.Major), in decodeLoadcntDscnt()
1747 Decoded.DsCnt = unpackBits(StorecntDscnt, getDscntBitShift(Version.Major), in decodeStorecntDscnt()
1779 return encodeLoadcntDscnt(Version, Decoded.LoadCnt, Decoded.DsCnt); in encodeLoadcntDscnt()
1792 return encodeStorecntDscnt(Version, Decoded.StoreCnt, Decoded.DsCnt); in encodeStorecntDscnt()