blob: 83074773c49548edcc743e7f45fa79461e716741 [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
11/// \brief This pass removes redundant S_OR_B64 instructions enabling lanes in
12/// 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"
Matthias Braunf8422972017-12-13 02:51:04 +000026#include "llvm/CodeGen/LiveIntervals.h"
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +000027#include "llvm/CodeGen/MachineFunctionPass.h"
28
29using namespace llvm;
30
31#define DEBUG_TYPE "si-optimize-exec-masking-pre-ra"
32
33namespace {
34
35class SIOptimizeExecMaskingPreRA : public MachineFunctionPass {
36public:
37 static char ID;
38
39public:
40 SIOptimizeExecMaskingPreRA() : MachineFunctionPass(ID) {
41 initializeSIOptimizeExecMaskingPreRAPass(*PassRegistry::getPassRegistry());
42 }
43
44 bool runOnMachineFunction(MachineFunction &MF) override;
45
46 StringRef getPassName() const override {
47 return "SI optimize exec mask operations pre-RA";
48 }
49
50 void getAnalysisUsage(AnalysisUsage &AU) const override {
51 AU.addRequired<LiveIntervals>();
52 AU.setPreservesAll();
53 MachineFunctionPass::getAnalysisUsage(AU);
54 }
55};
56
57} // End anonymous namespace.
58
59INITIALIZE_PASS_BEGIN(SIOptimizeExecMaskingPreRA, DEBUG_TYPE,
60 "SI optimize exec mask operations pre-RA", false, false)
61INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
62INITIALIZE_PASS_END(SIOptimizeExecMaskingPreRA, DEBUG_TYPE,
63 "SI optimize exec mask operations pre-RA", false, false)
64
65char SIOptimizeExecMaskingPreRA::ID = 0;
66
67char &llvm::SIOptimizeExecMaskingPreRAID = SIOptimizeExecMaskingPreRA::ID;
68
69FunctionPass *llvm::createSIOptimizeExecMaskingPreRAPass() {
70 return new SIOptimizeExecMaskingPreRA();
71}
72
73static bool isEndCF(const MachineInstr& MI, const SIRegisterInfo* TRI) {
74 return MI.getOpcode() == AMDGPU::S_OR_B64 &&
75 MI.modifiesRegister(AMDGPU::EXEC, TRI);
76}
77
78static bool isFullExecCopy(const MachineInstr& MI) {
79 return MI.isFullCopy() && MI.getOperand(1).getReg() == AMDGPU::EXEC;
80}
81
82static unsigned getOrNonExecReg(const MachineInstr &MI,
83 const SIInstrInfo &TII) {
84 auto Op = TII.getNamedOperand(MI, AMDGPU::OpName::src1);
85 if (Op->isReg() && Op->getReg() != AMDGPU::EXEC)
86 return Op->getReg();
87 Op = TII.getNamedOperand(MI, AMDGPU::OpName::src0);
88 if (Op->isReg() && Op->getReg() != AMDGPU::EXEC)
89 return Op->getReg();
90 return AMDGPU::NoRegister;
91}
92
93static MachineInstr* getOrExecSource(const MachineInstr &MI,
94 const SIInstrInfo &TII,
95 const MachineRegisterInfo &MRI) {
96 auto SavedExec = getOrNonExecReg(MI, TII);
97 if (SavedExec == AMDGPU::NoRegister)
98 return nullptr;
99 auto SaveExecInst = MRI.getUniqueVRegDef(SavedExec);
100 if (!SaveExecInst || !isFullExecCopy(*SaveExecInst))
101 return nullptr;
102 return SaveExecInst;
103}
104
105bool SIOptimizeExecMaskingPreRA::runOnMachineFunction(MachineFunction &MF) {
Matthias Braunf1caa282017-12-15 22:22:58 +0000106 if (skipFunction(MF.getFunction()))
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +0000107 return false;
108
109 const SISubtarget &ST = MF.getSubtarget<SISubtarget>();
110 const SIRegisterInfo *TRI = ST.getRegisterInfo();
111 const SIInstrInfo *TII = ST.getInstrInfo();
112 MachineRegisterInfo &MRI = MF.getRegInfo();
113 LiveIntervals *LIS = &getAnalysis<LiveIntervals>();
Stanislav Mekhanoshina9487d92017-08-16 04:43:49 +0000114 DenseSet<unsigned> RecalcRegs({AMDGPU::EXEC_LO, AMDGPU::EXEC_HI});
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +0000115 bool Changed = false;
116
117 for (MachineBasicBlock &MBB : MF) {
Stanislav Mekhanoshina9487d92017-08-16 04:43:49 +0000118
119 // Try to remove unneeded instructions before s_endpgm.
120 if (MBB.succ_empty()) {
121 if (MBB.empty() || MBB.back().getOpcode() != AMDGPU::S_ENDPGM)
122 continue;
123
124 SmallVector<MachineBasicBlock*, 4> Blocks({&MBB});
125
126 while (!Blocks.empty()) {
127 auto CurBB = Blocks.pop_back_val();
128 auto I = CurBB->rbegin(), E = CurBB->rend();
129 if (I != E) {
130 if (I->isUnconditionalBranch() || I->getOpcode() == AMDGPU::S_ENDPGM)
131 ++I;
132 else if (I->isBranch())
133 continue;
134 }
135
136 while (I != E) {
Matt Arsenault7f0a5272017-12-05 18:23:17 +0000137 if (I->isDebugValue()) {
138 I = std::next(I);
Stanislav Mekhanoshina9487d92017-08-16 04:43:49 +0000139 continue;
Matt Arsenault7f0a5272017-12-05 18:23:17 +0000140 }
141
Stanislav Mekhanoshina9487d92017-08-16 04:43:49 +0000142 if (I->mayStore() || I->isBarrier() || I->isCall() ||
143 I->hasUnmodeledSideEffects() || I->hasOrderedMemoryRef())
144 break;
145
146 DEBUG(dbgs() << "Removing no effect instruction: " << *I << '\n');
147
Matt Arsenault2f4df7e2017-09-08 18:51:26 +0000148 for (auto &Op : I->operands()) {
Stanislav Mekhanoshina9487d92017-08-16 04:43:49 +0000149 if (Op.isReg())
150 RecalcRegs.insert(Op.getReg());
Matt Arsenault2f4df7e2017-09-08 18:51:26 +0000151 }
Stanislav Mekhanoshina9487d92017-08-16 04:43:49 +0000152
153 auto Next = std::next(I);
154 LIS->RemoveMachineInstrFromMaps(*I);
155 I->eraseFromParent();
156 I = Next;
157
158 Changed = true;
159 }
160
161 if (I != E)
162 continue;
163
164 // Try to ascend predecessors.
165 for (auto *Pred : CurBB->predecessors()) {
166 if (Pred->succ_size() == 1)
167 Blocks.push_back(Pred);
168 }
169 }
170 continue;
171 }
172
173 // Try to collapse adjacent endifs.
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +0000174 auto Lead = MBB.begin(), E = MBB.end();
175 if (MBB.succ_size() != 1 || Lead == E || !isEndCF(*Lead, TRI))
176 continue;
177
178 const MachineBasicBlock* Succ = *MBB.succ_begin();
179 if (!MBB.isLayoutSuccessor(Succ))
180 continue;
181
182 auto I = std::next(Lead);
183
184 for ( ; I != E; ++I)
185 if (!TII->isSALU(*I) || I->readsRegister(AMDGPU::EXEC, TRI))
186 break;
187
188 if (I != E)
189 continue;
190
191 const auto NextLead = Succ->begin();
192 if (NextLead == Succ->end() || !isEndCF(*NextLead, TRI) ||
193 !getOrExecSource(*NextLead, *TII, MRI))
194 continue;
195
196 DEBUG(dbgs() << "Redundant EXEC = S_OR_B64 found: " << *Lead << '\n');
197
Stanislav Mekhanoshinf23ae4f2017-08-02 01:18:57 +0000198 auto SaveExec = getOrExecSource(*Lead, *TII, MRI);
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +0000199 unsigned SaveExecReg = getOrNonExecReg(*Lead, *TII);
Matt Arsenault2f4df7e2017-09-08 18:51:26 +0000200 for (auto &Op : Lead->operands()) {
201 if (Op.isReg())
202 RecalcRegs.insert(Op.getReg());
203 }
204
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +0000205 LIS->RemoveMachineInstrFromMaps(*Lead);
206 Lead->eraseFromParent();
207 if (SaveExecReg) {
208 LIS->removeInterval(SaveExecReg);
209 LIS->createAndComputeVirtRegInterval(SaveExecReg);
210 }
211
212 Changed = true;
Stanislav Mekhanoshinda0edef2017-08-01 23:44:35 +0000213
214 // If the only use of saved exec in the removed instruction is S_AND_B64
215 // fold the copy now.
Stanislav Mekhanoshinda0edef2017-08-01 23:44:35 +0000216 if (!SaveExec || !SaveExec->isFullCopy())
217 continue;
218
219 unsigned SavedExec = SaveExec->getOperand(0).getReg();
220 bool SafeToReplace = true;
221 for (auto& U : MRI.use_nodbg_instructions(SavedExec)) {
222 if (U.getParent() != SaveExec->getParent()) {
223 SafeToReplace = false;
224 break;
225 }
226
227 DEBUG(dbgs() << "Redundant EXEC COPY: " << *SaveExec << '\n');
228 }
229
230 if (SafeToReplace) {
231 LIS->RemoveMachineInstrFromMaps(*SaveExec);
232 SaveExec->eraseFromParent();
233 MRI.replaceRegWith(SavedExec, AMDGPU::EXEC);
234 LIS->removeInterval(SavedExec);
235 }
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +0000236 }
237
238 if (Changed) {
Stanislav Mekhanoshina9487d92017-08-16 04:43:49 +0000239 for (auto Reg : RecalcRegs) {
240 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
241 LIS->removeInterval(Reg);
242 if (!MRI.reg_empty(Reg))
243 LIS->createAndComputeVirtRegInterval(Reg);
244 } else {
245 for (MCRegUnitIterator U(Reg, TRI); U.isValid(); ++U)
246 LIS->removeRegUnit(*U);
247 }
248 }
Stanislav Mekhanoshin37e7f952017-08-01 23:14:32 +0000249 }
250
251 return Changed;
252}