Searched refs:ExpCnt (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCA/ |
H A D | AMDGPUCustomBehaviour.cpp | 138 if (PrevInstWaitInfo.ExpCnt) { in handleWaitCnt() 254 InstrWaitCntInfo[Index].ExpCnt = true; in generateWaitCntInfo() 284 InstrWaitCntInfo[Index].ExpCnt = true; in generateWaitCntInfo() 288 InstrWaitCntInfo[Index].ExpCnt = true; in generateWaitCntInfo()
|
H A D | AMDGPUCustomBehaviour.h | 42 bool ExpCnt = false; member
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
H A D | AMDGPUBaseInfo.h | 925 unsigned ExpCnt = ~0u; member 934 Waitcnt(unsigned VmCnt, unsigned ExpCnt, unsigned LgkmCnt, unsigned VsCnt) in Waitcnt() 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 | 1434 Decoded.ExpCnt = decodeExpcnt(Version, Encoded); in decodeWaitcnt() 1470 return encodeWaitcnt(Version, Decoded.LoadCnt, Decoded.ExpCnt, Decoded.DsCnt); in encodeWaitcnt()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIInsertWaitcnts.cpp | 203 return Wait.ExpCnt; in getCounterRef() 1040 simplifyWaitcnt(EXP_CNT, Wait.ExpCnt); in simplifyWaitcnt() 1088 applyWaitcnt(EXP_CNT, Wait.ExpCnt); in applyWaitcnt() 1242 ScoreBrackets.applyWaitcnt(EXP_CNT, Wait.ExpCnt); in applyPreexistingWaitcnt() 1245 Wait.ExpCnt = ~0u; in applyPreexistingWaitcnt() 1678 Wait.ExpCnt = 0; in generateWaitcntInstBefore() 1831 Wait.ExpCnt = 0; in generateWaitcntInstBefore() 1872 if (Wait.ExpCnt != ~0u && It != Block.instr_end() && in generateWaitcnt() 1876 if (Wait.ExpCnt < WaitExp->getImm()) { in generateWaitcnt() 1877 WaitExp->setImm(Wait.ExpCnt); in generateWaitcnt() [all …]
|