Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / lib / Target / AMDGPU / SIOptimizeExecMasking.cpp
blobc73066fe8d6140ca1f37e1d6c53b0bb5e76e4062
1 //===-- SIOptimizeExecMasking.cpp -----------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "AMDGPU.h"
10 #include "AMDGPUSubtarget.h"
11 #include "SIInstrInfo.h"
12 #include "MCTargetDesc/AMDGPUMCTargetDesc.h"
13 #include "llvm/ADT/SmallSet.h"
14 #include "llvm/CodeGen/MachineFunctionPass.h"
15 #include "llvm/CodeGen/MachineInstrBuilder.h"
16 #include "llvm/CodeGen/MachineRegisterInfo.h"
17 #include "llvm/Support/Debug.h"
19 using namespace llvm;
21 #define DEBUG_TYPE "si-optimize-exec-masking"
23 namespace {
25 class SIOptimizeExecMasking : public MachineFunctionPass {
26 public:
27 static char ID;
29 public:
30 SIOptimizeExecMasking() : MachineFunctionPass(ID) {
31 initializeSIOptimizeExecMaskingPass(*PassRegistry::getPassRegistry());
34 bool runOnMachineFunction(MachineFunction &MF) override;
36 StringRef getPassName() const override {
37 return "SI optimize exec mask operations";
40 void getAnalysisUsage(AnalysisUsage &AU) const override {
41 AU.setPreservesCFG();
42 MachineFunctionPass::getAnalysisUsage(AU);
46 } // End anonymous namespace.
48 INITIALIZE_PASS_BEGIN(SIOptimizeExecMasking, DEBUG_TYPE,
49 "SI optimize exec mask operations", false, false)
50 INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
51 INITIALIZE_PASS_END(SIOptimizeExecMasking, DEBUG_TYPE,
52 "SI optimize exec mask operations", false, false)
54 char SIOptimizeExecMasking::ID = 0;
56 char &llvm::SIOptimizeExecMaskingID = SIOptimizeExecMasking::ID;
58 /// If \p MI is a copy from exec, return the register copied to.
59 static unsigned isCopyFromExec(const MachineInstr &MI) {
60 switch (MI.getOpcode()) {
61 case AMDGPU::COPY:
62 case AMDGPU::S_MOV_B64:
63 case AMDGPU::S_MOV_B64_term: {
64 const MachineOperand &Src = MI.getOperand(1);
65 if (Src.isReg() && Src.getReg() == AMDGPU::EXEC)
66 return MI.getOperand(0).getReg();
70 return AMDGPU::NoRegister;
73 /// If \p MI is a copy to exec, return the register copied from.
74 static unsigned isCopyToExec(const MachineInstr &MI) {
75 switch (MI.getOpcode()) {
76 case AMDGPU::COPY:
77 case AMDGPU::S_MOV_B64: {
78 const MachineOperand &Dst = MI.getOperand(0);
79 if (Dst.isReg() && Dst.getReg() == AMDGPU::EXEC && MI.getOperand(1).isReg())
80 return MI.getOperand(1).getReg();
81 break;
83 case AMDGPU::S_MOV_B64_term:
84 llvm_unreachable("should have been replaced");
87 return AMDGPU::NoRegister;
90 /// If \p MI is a logical operation on an exec value,
91 /// return the register copied to.
92 static unsigned isLogicalOpOnExec(const MachineInstr &MI) {
93 switch (MI.getOpcode()) {
94 case AMDGPU::S_AND_B64:
95 case AMDGPU::S_OR_B64:
96 case AMDGPU::S_XOR_B64:
97 case AMDGPU::S_ANDN2_B64:
98 case AMDGPU::S_ORN2_B64:
99 case AMDGPU::S_NAND_B64:
100 case AMDGPU::S_NOR_B64:
101 case AMDGPU::S_XNOR_B64: {
102 const MachineOperand &Src1 = MI.getOperand(1);
103 if (Src1.isReg() && Src1.getReg() == AMDGPU::EXEC)
104 return MI.getOperand(0).getReg();
105 const MachineOperand &Src2 = MI.getOperand(2);
106 if (Src2.isReg() && Src2.getReg() == AMDGPU::EXEC)
107 return MI.getOperand(0).getReg();
111 return AMDGPU::NoRegister;
114 static unsigned getSaveExecOp(unsigned Opc) {
115 switch (Opc) {
116 case AMDGPU::S_AND_B64:
117 return AMDGPU::S_AND_SAVEEXEC_B64;
118 case AMDGPU::S_OR_B64:
119 return AMDGPU::S_OR_SAVEEXEC_B64;
120 case AMDGPU::S_XOR_B64:
121 return AMDGPU::S_XOR_SAVEEXEC_B64;
122 case AMDGPU::S_ANDN2_B64:
123 return AMDGPU::S_ANDN2_SAVEEXEC_B64;
124 case AMDGPU::S_ORN2_B64:
125 return AMDGPU::S_ORN2_SAVEEXEC_B64;
126 case AMDGPU::S_NAND_B64:
127 return AMDGPU::S_NAND_SAVEEXEC_B64;
128 case AMDGPU::S_NOR_B64:
129 return AMDGPU::S_NOR_SAVEEXEC_B64;
130 case AMDGPU::S_XNOR_B64:
131 return AMDGPU::S_XNOR_SAVEEXEC_B64;
132 default:
133 return AMDGPU::INSTRUCTION_LIST_END;
137 // These are only terminators to get correct spill code placement during
138 // register allocation, so turn them back into normal instructions. Only one of
139 // these is expected per block.
140 static bool removeTerminatorBit(const SIInstrInfo &TII, MachineInstr &MI) {
141 switch (MI.getOpcode()) {
142 case AMDGPU::S_MOV_B64_term: {
143 MI.setDesc(TII.get(AMDGPU::COPY));
144 return true;
146 case AMDGPU::S_XOR_B64_term: {
147 // This is only a terminator to get the correct spill code placement during
148 // register allocation.
149 MI.setDesc(TII.get(AMDGPU::S_XOR_B64));
150 return true;
152 case AMDGPU::S_ANDN2_B64_term: {
153 // This is only a terminator to get the correct spill code placement during
154 // register allocation.
155 MI.setDesc(TII.get(AMDGPU::S_ANDN2_B64));
156 return true;
158 default:
159 return false;
163 static MachineBasicBlock::reverse_iterator fixTerminators(
164 const SIInstrInfo &TII,
165 MachineBasicBlock &MBB) {
166 MachineBasicBlock::reverse_iterator I = MBB.rbegin(), E = MBB.rend();
167 for (; I != E; ++I) {
168 if (!I->isTerminator())
169 return I;
171 if (removeTerminatorBit(TII, *I))
172 return I;
175 return E;
178 static MachineBasicBlock::reverse_iterator findExecCopy(
179 const SIInstrInfo &TII,
180 MachineBasicBlock &MBB,
181 MachineBasicBlock::reverse_iterator I,
182 unsigned CopyToExec) {
183 const unsigned InstLimit = 25;
185 auto E = MBB.rend();
186 for (unsigned N = 0; N <= InstLimit && I != E; ++I, ++N) {
187 unsigned CopyFromExec = isCopyFromExec(*I);
188 if (CopyFromExec != AMDGPU::NoRegister)
189 return I;
192 return E;
195 // XXX - Seems LivePhysRegs doesn't work correctly since it will incorrectly
196 // repor tthe register as unavailable because a super-register with a lane mask
197 // as unavailable.
198 static bool isLiveOut(const MachineBasicBlock &MBB, unsigned Reg) {
199 for (MachineBasicBlock *Succ : MBB.successors()) {
200 if (Succ->isLiveIn(Reg))
201 return true;
204 return false;
207 bool SIOptimizeExecMasking::runOnMachineFunction(MachineFunction &MF) {
208 if (skipFunction(MF.getFunction()))
209 return false;
211 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>();
212 const SIRegisterInfo *TRI = ST.getRegisterInfo();
213 const SIInstrInfo *TII = ST.getInstrInfo();
215 // Optimize sequences emitted for control flow lowering. They are originally
216 // emitted as the separate operations because spill code may need to be
217 // inserted for the saved copy of exec.
219 // x = copy exec
220 // z = s_<op>_b64 x, y
221 // exec = copy z
222 // =>
223 // x = s_<op>_saveexec_b64 y
226 for (MachineBasicBlock &MBB : MF) {
227 MachineBasicBlock::reverse_iterator I = fixTerminators(*TII, MBB);
228 MachineBasicBlock::reverse_iterator E = MBB.rend();
229 if (I == E)
230 continue;
232 unsigned CopyToExec = isCopyToExec(*I);
233 if (CopyToExec == AMDGPU::NoRegister)
234 continue;
236 // Scan backwards to find the def.
237 auto CopyToExecInst = &*I;
238 auto CopyFromExecInst = findExecCopy(*TII, MBB, I, CopyToExec);
239 if (CopyFromExecInst == E) {
240 auto PrepareExecInst = std::next(I);
241 if (PrepareExecInst == E)
242 continue;
243 // Fold exec = COPY (S_AND_B64 reg, exec) -> exec = S_AND_B64 reg, exec
244 if (CopyToExecInst->getOperand(1).isKill() &&
245 isLogicalOpOnExec(*PrepareExecInst) == CopyToExec) {
246 LLVM_DEBUG(dbgs() << "Fold exec copy: " << *PrepareExecInst);
248 PrepareExecInst->getOperand(0).setReg(AMDGPU::EXEC);
250 LLVM_DEBUG(dbgs() << "into: " << *PrepareExecInst << '\n');
252 CopyToExecInst->eraseFromParent();
255 continue;
258 if (isLiveOut(MBB, CopyToExec)) {
259 // The copied register is live out and has a second use in another block.
260 LLVM_DEBUG(dbgs() << "Exec copy source register is live out\n");
261 continue;
264 unsigned CopyFromExec = CopyFromExecInst->getOperand(0).getReg();
265 MachineInstr *SaveExecInst = nullptr;
266 SmallVector<MachineInstr *, 4> OtherUseInsts;
268 for (MachineBasicBlock::iterator J
269 = std::next(CopyFromExecInst->getIterator()), JE = I->getIterator();
270 J != JE; ++J) {
271 if (SaveExecInst && J->readsRegister(AMDGPU::EXEC, TRI)) {
272 LLVM_DEBUG(dbgs() << "exec read prevents saveexec: " << *J << '\n');
273 // Make sure this is inserted after any VALU ops that may have been
274 // scheduled in between.
275 SaveExecInst = nullptr;
276 break;
279 bool ReadsCopyFromExec = J->readsRegister(CopyFromExec, TRI);
281 if (J->modifiesRegister(CopyToExec, TRI)) {
282 if (SaveExecInst) {
283 LLVM_DEBUG(dbgs() << "Multiple instructions modify "
284 << printReg(CopyToExec, TRI) << '\n');
285 SaveExecInst = nullptr;
286 break;
289 unsigned SaveExecOp = getSaveExecOp(J->getOpcode());
290 if (SaveExecOp == AMDGPU::INSTRUCTION_LIST_END)
291 break;
293 if (ReadsCopyFromExec) {
294 SaveExecInst = &*J;
295 LLVM_DEBUG(dbgs() << "Found save exec op: " << *SaveExecInst << '\n');
296 continue;
297 } else {
298 LLVM_DEBUG(dbgs()
299 << "Instruction does not read exec copy: " << *J << '\n');
300 break;
302 } else if (ReadsCopyFromExec && !SaveExecInst) {
303 // Make sure no other instruction is trying to use this copy, before it
304 // will be rewritten by the saveexec, i.e. hasOneUse. There may have
305 // been another use, such as an inserted spill. For example:
307 // %sgpr0_sgpr1 = COPY %exec
308 // spill %sgpr0_sgpr1
309 // %sgpr2_sgpr3 = S_AND_B64 %sgpr0_sgpr1
311 LLVM_DEBUG(dbgs() << "Found second use of save inst candidate: " << *J
312 << '\n');
313 break;
316 if (SaveExecInst && J->readsRegister(CopyToExec, TRI)) {
317 assert(SaveExecInst != &*J);
318 OtherUseInsts.push_back(&*J);
322 if (!SaveExecInst)
323 continue;
325 LLVM_DEBUG(dbgs() << "Insert save exec op: " << *SaveExecInst << '\n');
327 MachineOperand &Src0 = SaveExecInst->getOperand(1);
328 MachineOperand &Src1 = SaveExecInst->getOperand(2);
330 MachineOperand *OtherOp = nullptr;
332 if (Src0.isReg() && Src0.getReg() == CopyFromExec) {
333 OtherOp = &Src1;
334 } else if (Src1.isReg() && Src1.getReg() == CopyFromExec) {
335 if (!SaveExecInst->isCommutable())
336 break;
338 OtherOp = &Src0;
339 } else
340 llvm_unreachable("unexpected");
342 CopyFromExecInst->eraseFromParent();
344 auto InsPt = SaveExecInst->getIterator();
345 const DebugLoc &DL = SaveExecInst->getDebugLoc();
347 BuildMI(MBB, InsPt, DL, TII->get(getSaveExecOp(SaveExecInst->getOpcode())),
348 CopyFromExec)
349 .addReg(OtherOp->getReg());
350 SaveExecInst->eraseFromParent();
352 CopyToExecInst->eraseFromParent();
354 for (MachineInstr *OtherInst : OtherUseInsts) {
355 OtherInst->substituteRegister(CopyToExec, AMDGPU::EXEC,
356 AMDGPU::NoSubRegister, *TRI);
360 return true;