[PATCH] D137624: [AMDGPU] Declutter applyPreexistingWaitcnt()
Stephen Thomas via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 8 03:28:02 PST 2022
stepthomas updated this revision to Diff 473942.
stepthomas added a comment.
Apply review comments.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D137624/new/
https://reviews.llvm.org/D137624
Files:
llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
Index: llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
===================================================================
--- llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
+++ llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
@@ -842,6 +842,20 @@
return new SIInsertWaitcnts();
}
+static bool updateOperandIfDifferent(MachineInstr &MI, uint16_t OpName,
+ unsigned NewEnc) {
+ int OpIdx = AMDGPU::getNamedOperandIdx(MI.getOpcode(), OpName);
+ assert(OpIdx >= 0);
+
+ MachineOperand &MO = MI.getOperand(OpIdx);
+
+ if (NewEnc == MO.getImm())
+ return false;
+
+ MO.setImm(NewEnc);
+ return true;
+}
+
/// Combine consecutive waitcnt instructions that precede \p It and follow
/// \p OldWaitcntInstr and apply any extra wait from waitcnt that were added
/// by previous passes. Currently this pass conservatively assumes that these
@@ -897,12 +911,9 @@
// Updated encoding of merged waitcnt with the required wait.
if (WaitcntInstr) {
if (Wait.hasWaitExceptVsCnt()) {
- unsigned NewEnc = AMDGPU::encodeWaitcnt(IV, Wait);
- unsigned OldEnc = WaitcntInstr->getOperand(0).getImm();
- if (OldEnc != NewEnc) {
- WaitcntInstr->getOperand(0).setImm(NewEnc);
- Modified = true;
- }
+ Modified |=
+ updateOperandIfDifferent(*WaitcntInstr, AMDGPU::OpName::simm16,
+ AMDGPU::encodeWaitcnt(IV, Wait));
ScoreBrackets.applyWaitcnt(Wait);
Wait.VmCnt = ~0u;
Wait.LgkmCnt = ~0u;
@@ -925,14 +936,8 @@
if (WaitcntVsCntInstr) {
if (Wait.hasWaitVsCnt()) {
assert(ST->hasVscnt());
- unsigned OldVSCnt =
- TII->getNamedOperand(*WaitcntVsCntInstr, AMDGPU::OpName::simm16)
- ->getImm();
- if (Wait.VsCnt != OldVSCnt) {
- TII->getNamedOperand(*WaitcntVsCntInstr, AMDGPU::OpName::simm16)
- ->setImm(Wait.VsCnt);
- Modified = true;
- }
+ Modified |= updateOperandIfDifferent(*WaitcntVsCntInstr,
+ AMDGPU::OpName::simm16, Wait.VsCnt);
ScoreBrackets.applyWaitcnt(Wait);
Wait.VsCnt = ~0u;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D137624.473942.patch
Type: text/x-patch
Size: 2152 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221108/e9eb34c5/attachment.bin>
More information about the llvm-commits
mailing list