Searched refs:LoadCnt (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
H A D | AMDGPUBaseInfo.h | 924 unsigned LoadCnt = ~0u; // Corresponds to Vmcnt 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() 957 std::min(LoadCnt, Other.LoadCnt), std::min(ExpCnt, Other.ExpCnt), in combined()
|
H A D | AMDGPUBaseInfo.cpp | 1433 Decoded.LoadCnt = decodeVmcnt(Version, Encoded); in decodeWaitcnt() 1470 return encodeWaitcnt(Version, Decoded.LoadCnt, Decoded.ExpCnt, Decoded.DsCnt); in encodeWaitcnt() 1489 Decoded.LoadCnt = in decodeLoadcntDscnt() 1534 return encodeLoadcntDscnt(Version, Decoded.LoadCnt, Decoded.DsCnt); in encodeLoadcntDscnt()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIInsertWaitcnts.cpp | 201 return Wait.LoadCnt; in getCounterRef() 1039 simplifyWaitcnt(LOAD_CNT, Wait.LoadCnt); in simplifyWaitcnt() 1087 applyWaitcnt(LOAD_CNT, Wait.LoadCnt); in applyWaitcnt() 1241 ScoreBrackets.applyWaitcnt(LOAD_CNT, Wait.LoadCnt); in applyPreexistingWaitcnt() 1244 Wait.LoadCnt = ~0u; in applyPreexistingWaitcnt() 1405 if (Wait.LoadCnt != ~0u && Wait.DsCnt != ~0u) { in applyPreexistingWaitcnt() 1410 ScoreBrackets.applyWaitcnt(LOAD_CNT, Wait.LoadCnt); in applyPreexistingWaitcnt() 1412 Wait.LoadCnt = ~0u; in applyPreexistingWaitcnt() 1468 if (Wait.LoadCnt != ~0u) { in applyPreexistingWaitcnt() 1529 if (Wait.LoadCnt != ~0u) { in createNewWaitcnt() [all …]
|