blob: 0971956d3065188e8338ace12d7d5b39672d2078 [file] [log] [blame]
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +00001//===-- SIOptimizeExecMaskingPreRA.cpp ------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10/// \file
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000011/// This pass removes redundant S_OR_B64 instructions enabling lanes in
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +000012/// the exec. If two SI_END_CF (lowered as S_OR_B64) come together without any
13/// vector instructions between them we can only keep outer SI_END_CF, given
14/// that CFG is structured and exec bits of the outer end statement are always
15/// not less than exec bit of the inner one.
16///
17/// This needs to be done before the RA to eliminate saved exec bits registers
18/// but after register coalescer to have no vector registers copies in between
19/// of different end cf statements.
20///
21//===----------------------------------------------------------------------===//
22
23#include "AMDGPU.h"
24#include "AMDGPUSubtarget.h"
25#include "SIInstrInfo.h"
Tom Stellard44b30b42018-05-22 02:03:23 +000026#include "MCTargetDesc/AMDGPUMCTargetDesc.h"
Matthias Braunf8422972017-12-13 02:51:04 +000027#include "llvm/CodeGen/LiveIntervals.h"
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +000028#include "llvm/CodeGen/MachineFunctionPass.h"
29
30using namespace llvm;
31
32#define DEBUG_TYPE "si-optimize-exec-masking-pre-ra"
33
34namespace {
35
36class SIOptimizeExecMaskingPreRA : public MachineFunctionPass {
37public:
38 static char ID;
39
40public:
41 SIOptimizeExecMaskingPreRA() : MachineFunctionPass(ID) {
42 initializeSIOptimizeExecMaskingPreRAPass(*PassRegistry::getPassRegistry());
43 }
44
45 bool runOnMachineFunction(MachineFunction &MF) override;
46
47 StringRef getPassName() const override {
48 return "SI optimize exec mask operations pre-RA";
49 }
50
51 void getAnalysisUsage(AnalysisUsage &AU) const override {
52 AU.addRequired<LiveIntervals>();
53 AU.setPreservesAll();
54 MachineFunctionPass::getAnalysisUsage(AU);
55 }
56};
57
58} // End anonymous namespace.
59
60INITIALIZE_PASS_BEGIN(SIOptimizeExecMaskingPreRA, DEBUG_TYPE,
61 "SI optimize exec mask operations pre-RA", false, false)
62INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
63INITIALIZE_PASS_END(SIOptimizeExecMaskingPreRA, DEBUG_TYPE,
64 "SI optimize exec mask operations pre-RA", false, false)
65
66char SIOptimizeExecMaskingPreRA::ID = 0;
67
68char &llvm::SIOptimizeExecMaskingPreRAID = SIOptimizeExecMaskingPreRA::ID;
69
70FunctionPass *llvm::createSIOptimizeExecMaskingPreRAPass() {
71 return new SIOptimizeExecMaskingPreRA();
72}
73
74static bool isEndCF(const MachineInstr& MI, const SIRegisterInfo* TRI) {
75 return MI.getOpcode() == AMDGPU::S_OR_B64 &&
76 MI.modifiesRegister(AMDGPU::EXEC, TRI);
77}
78
79static bool isFullExecCopy(const MachineInstr& MI) {
80 return MI.isFullCopy() && MI.getOperand(1).getReg() == AMDGPU::EXEC;
81}
82
83static unsigned getOrNonExecReg(const MachineInstr &MI,
84 const SIInstrInfo &TII) {
85 auto Op = TII.getNamedOperand(MI, AMDGPU::OpName::src1);
86 if (Op->isReg() && Op->getReg() != AMDGPU::EXEC)
87 return Op->getReg();
88 Op = TII.getNamedOperand(MI, AMDGPU::OpName::src0);
89 if (Op->isReg() && Op->getReg() != AMDGPU::EXEC)
90 return Op->getReg();
91 return AMDGPU::NoRegister;
92}
93
94static MachineInstr* getOrExecSource(const MachineInstr &MI,
95 const SIInstrInfo &TII,
96 const MachineRegisterInfo &MRI) {
97 auto SavedExec = getOrNonExecReg(MI, TII);
98 if (SavedExec == AMDGPU::NoRegister)
99 return nullptr;
100 auto SaveExecInst = MRI.getUniqueVRegDef(SavedExec);
101 if (!SaveExecInst || !isFullExecCopy(*SaveExecInst))
102 return nullptr;
103 return SaveExecInst;
104}
105
106bool SIOptimizeExecMaskingPreRA::runOnMachineFunction(MachineFunction &MF) {
Matthias Braunf1caa282017-12-15 22:22:58 +0000107 if (skipFunction(MF.getFunction()))
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +0000108 return false;
109
110 const SISubtarget &ST = MF.getSubtarget<SISubtarget>();
111 const SIRegisterInfo *TRI = ST.getRegisterInfo();
112 const SIInstrInfo *TII = ST.getInstrInfo();
113 MachineRegisterInfo &MRI = MF.getRegInfo();
114 LiveIntervals *LIS = &getAnalysis<LiveIntervals>();
Stanislav Mekhanoshina9487d92017-08-16 04:43:49 +0000115 DenseSet<unsigned> RecalcRegs({AMDGPU::EXEC_LO, AMDGPU::EXEC_HI});
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +0000116 bool Changed = false;
117
118 for (MachineBasicBlock &MBB : MF) {
Stanislav Mekhanoshina9487d92017-08-16 04:43:49 +0000119
120 // Try to remove unneeded instructions before s_endpgm.
121 if (MBB.succ_empty()) {
122 if (MBB.empty() || MBB.back().getOpcode() != AMDGPU::S_ENDPGM)
123 continue;
124
125 SmallVector<MachineBasicBlock*, 4> Blocks({&MBB});
126
127 while (!Blocks.empty()) {
128 auto CurBB = Blocks.pop_back_val();
129 auto I = CurBB->rbegin(), E = CurBB->rend();
130 if (I != E) {
131 if (I->isUnconditionalBranch() || I->getOpcode() == AMDGPU::S_ENDPGM)
132 ++I;
133 else if (I->isBranch())
134 continue;
135 }
136
137 while (I != E) {
Shiva Chen801bf7e2018-05-09 02:42:00 +0000138 if (I->isDebugInstr()) {
Matt Arsenault7f0a5272017-12-05 18:23:17 +0000139 I = std::next(I);
Stanislav Mekhanoshina9487d92017-08-16 04:43:49 +0000140 continue;
Matt Arsenault7f0a5272017-12-05 18:23:17 +0000141 }
142
Stanislav Mekhanoshina9487d92017-08-16 04:43:49 +0000143 if (I->mayStore() || I->isBarrier() || I->isCall() ||
144 I->hasUnmodeledSideEffects() || I->hasOrderedMemoryRef())
145 break;
146
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000147 LLVM_DEBUG(dbgs()
148 << "Removing no effect instruction: " << *I << '\n');
Stanislav Mekhanoshina9487d92017-08-16 04:43:49 +0000149
Matt Arsenault2f4df7e2017-09-08 18:51:26 +0000150 for (auto &Op : I->operands()) {
Stanislav Mekhanoshina9487d92017-08-16 04:43:49 +0000151 if (Op.isReg())
152 RecalcRegs.insert(Op.getReg());
Matt Arsenault2f4df7e2017-09-08 18:51:26 +0000153 }
Stanislav Mekhanoshina9487d92017-08-16 04:43:49 +0000154
155 auto Next = std::next(I);
156 LIS->RemoveMachineInstrFromMaps(*I);
157 I->eraseFromParent();
158 I = Next;
159
160 Changed = true;
161 }
162
163 if (I != E)
164 continue;
165
166 // Try to ascend predecessors.
167 for (auto *Pred : CurBB->predecessors()) {
168 if (Pred->succ_size() == 1)
169 Blocks.push_back(Pred);
170 }
171 }
172 continue;
173 }
174
175 // Try to collapse adjacent endifs.
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +0000176 auto Lead = MBB.begin(), E = MBB.end();
177 if (MBB.succ_size() != 1 || Lead == E || !isEndCF(*Lead, TRI))
178 continue;
179
180 const MachineBasicBlock* Succ = *MBB.succ_begin();
181 if (!MBB.isLayoutSuccessor(Succ))
182 continue;
183
184 auto I = std::next(Lead);
185
186 for ( ; I != E; ++I)
187 if (!TII->isSALU(*I) || I->readsRegister(AMDGPU::EXEC, TRI))
188 break;
189
190 if (I != E)
191 continue;
192
193 const auto NextLead = Succ->begin();
194 if (NextLead == Succ->end() || !isEndCF(*NextLead, TRI) ||
195 !getOrExecSource(*NextLead, *TII, MRI))
196 continue;
197
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000198 LLVM_DEBUG(dbgs() << "Redundant EXEC = S_OR_B64 found: " << *Lead << '\n');
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +0000199
Stanislav Mekhanoshinf23ae4f2017-08-02 01:18:57 +0000200 auto SaveExec = getOrExecSource(*Lead, *TII, MRI);
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +0000201 unsigned SaveExecReg = getOrNonExecReg(*Lead, *TII);
Matt Arsenault2f4df7e2017-09-08 18:51:26 +0000202 for (auto &Op : Lead->operands()) {
203 if (Op.isReg())
204 RecalcRegs.insert(Op.getReg());
205 }
206
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +0000207 LIS->RemoveMachineInstrFromMaps(*Lead);
208 Lead->eraseFromParent();
209 if (SaveExecReg) {
210 LIS->removeInterval(SaveExecReg);
211 LIS->createAndComputeVirtRegInterval(SaveExecReg);
212 }
213
214 Changed = true;
Stanislav Mekhanoshinda0edef2017-08-01 23:44:35 +0000215
216 // If the only use of saved exec in the removed instruction is S_AND_B64
217 // fold the copy now.
Stanislav Mekhanoshinda0edef2017-08-01 23:44:35 +0000218 if (!SaveExec || !SaveExec->isFullCopy())
219 continue;
220
221 unsigned SavedExec = SaveExec->getOperand(0).getReg();
222 bool SafeToReplace = true;
223 for (auto& U : MRI.use_nodbg_instructions(SavedExec)) {
224 if (U.getParent() != SaveExec->getParent()) {
225 SafeToReplace = false;
226 break;
227 }
228
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000229 LLVM_DEBUG(dbgs() << "Redundant EXEC COPY: " << *SaveExec << '\n');
Stanislav Mekhanoshinda0edef2017-08-01 23:44:35 +0000230 }
231
232 if (SafeToReplace) {
233 LIS->RemoveMachineInstrFromMaps(*SaveExec);
234 SaveExec->eraseFromParent();
235 MRI.replaceRegWith(SavedExec, AMDGPU::EXEC);
236 LIS->removeInterval(SavedExec);
237 }
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +0000238 }
239
240 if (Changed) {
Stanislav Mekhanoshina9487d92017-08-16 04:43:49 +0000241 for (auto Reg : RecalcRegs) {
242 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
243 LIS->removeInterval(Reg);
244 if (!MRI.reg_empty(Reg))
245 LIS->createAndComputeVirtRegInterval(Reg);
246 } else {
247 for (MCRegUnitIterator U(Reg, TRI); U.isValid(); ++U)
248 LIS->removeRegUnit(*U);
249 }
250 }
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +0000251 }
252
253 return Changed;
254}