blob: 223fdf77941fddd20d80ee6f9646d7d1d291fc5c [file] [log] [blame]
Eugene Zelenkod16eff82017-08-08 23:53:55 +00001//===- AMDILCFGStructurizer.cpp - CFG Structurizer ------------------------===//
Tom Stellard75aadc22012-12-11 21:25:42 +00002//
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//
Tom Stellard75aadc22012-12-11 21:25:42 +00008//==-----------------------------------------------------------------------===//
9
Tom Stellarda6c6e1b2013-06-07 20:37:48 +000010#include "AMDGPU.h"
Eric Christopherd9134482014-08-04 21:25:23 +000011#include "AMDGPUSubtarget.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000012#include "R600InstrInfo.h"
Eugene Zelenko66203762017-01-21 00:53:49 +000013#include "R600RegisterInfo.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000014#include "llvm/ADT/DepthFirstIterator.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000015#include "llvm/ADT/SCCIterator.h"
Eugene Zelenko66203762017-01-21 00:53:49 +000016#include "llvm/ADT/SmallPtrSet.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000017#include "llvm/ADT/SmallVector.h"
18#include "llvm/ADT/Statistic.h"
Eugene Zelenko66203762017-01-21 00:53:49 +000019#include "llvm/ADT/StringRef.h"
20#include "llvm/CodeGen/MachineBasicBlock.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000021#include "llvm/CodeGen/MachineDominators.h"
22#include "llvm/CodeGen/MachineFunction.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000023#include "llvm/CodeGen/MachineFunctionPass.h"
Eugene Zelenko66203762017-01-21 00:53:49 +000024#include "llvm/CodeGen/MachineInstr.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000025#include "llvm/CodeGen/MachineInstrBuilder.h"
Eugene Zelenko06f90ef2017-01-21 01:34:25 +000026#include "llvm/CodeGen/MachineJumpTableInfo.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000027#include "llvm/CodeGen/MachineLoopInfo.h"
Eugene Zelenko66203762017-01-21 00:53:49 +000028#include "llvm/CodeGen/MachineOperand.h"
Chandler Carruthbe810232013-01-02 10:22:59 +000029#include "llvm/CodeGen/MachinePostDominators.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Eugene Zelenko66203762017-01-21 00:53:49 +000031#include "llvm/CodeGen/MachineValueType.h"
32#include "llvm/IR/DebugLoc.h"
33#include "llvm/IR/LLVMContext.h"
34#include "llvm/Pass.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000035#include "llvm/Support/Debug.h"
Eugene Zelenko66203762017-01-21 00:53:49 +000036#include "llvm/Support/ErrorHandling.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000037#include "llvm/Support/raw_ostream.h"
Eugene Zelenko66203762017-01-21 00:53:49 +000038#include <cassert>
39#include <cstddef>
Benjamin Kramer799003b2015-03-23 19:32:43 +000040#include <deque>
Eugene Zelenko66203762017-01-21 00:53:49 +000041#include <iterator>
42#include <map>
43#include <utility>
44#include <vector>
Tom Stellard75aadc22012-12-11 21:25:42 +000045
46using namespace llvm;
47
Chandler Carruth84e68b22014-04-22 02:41:26 +000048#define DEBUG_TYPE "structcfg"
49
Tom Stellarda6c6e1b2013-06-07 20:37:48 +000050#define DEFAULT_VEC_SLOTS 8
51
Tom Stellard75aadc22012-12-11 21:25:42 +000052// TODO: move-begin.
53
54//===----------------------------------------------------------------------===//
55//
56// Statistics for CFGStructurizer.
57//
58//===----------------------------------------------------------------------===//
59
60STATISTIC(numSerialPatternMatch, "CFGStructurizer number of serial pattern "
61 "matched");
62STATISTIC(numIfPatternMatch, "CFGStructurizer number of if pattern "
63 "matched");
Tom Stellard75aadc22012-12-11 21:25:42 +000064STATISTIC(numClonedBlock, "CFGStructurizer cloned blocks");
65STATISTIC(numClonedInstr, "CFGStructurizer cloned instructions");
66
Tom Stellardf2ba9722013-12-11 17:51:47 +000067namespace llvm {
Eugene Zelenko66203762017-01-21 00:53:49 +000068
Eugene Zelenkod16eff82017-08-08 23:53:55 +000069void initializeAMDGPUCFGStructurizerPass(PassRegistry &);
Eugene Zelenko66203762017-01-21 00:53:49 +000070
71} // end namespace llvm
72
73namespace {
Tom Stellardf2ba9722013-12-11 17:51:47 +000074
Tom Stellard75aadc22012-12-11 21:25:42 +000075//===----------------------------------------------------------------------===//
76//
77// Miscellaneous utility for CFGStructurizer.
78//
79//===----------------------------------------------------------------------===//
Eugene Zelenko66203762017-01-21 00:53:49 +000080
Tom Stellard75aadc22012-12-11 21:25:42 +000081#define SHOWNEWINSTR(i) \
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +000082 DEBUG(dbgs() << "New instr: " << *i << "\n");
Tom Stellard75aadc22012-12-11 21:25:42 +000083
84#define SHOWNEWBLK(b, msg) \
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +000085DEBUG( \
86 dbgs() << msg << "BB" << b->getNumber() << "size " << b->size(); \
87 dbgs() << "\n"; \
88);
Tom Stellard75aadc22012-12-11 21:25:42 +000089
90#define SHOWBLK_DETAIL(b, msg) \
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +000091DEBUG( \
Tom Stellard75aadc22012-12-11 21:25:42 +000092 if (b) { \
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +000093 dbgs() << msg << "BB" << b->getNumber() << "size " << b->size(); \
94 b->print(dbgs()); \
95 dbgs() << "\n"; \
Tom Stellard75aadc22012-12-11 21:25:42 +000096 } \
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +000097);
Tom Stellard75aadc22012-12-11 21:25:42 +000098
99#define INVALIDSCCNUM -1
Tom Stellard75aadc22012-12-11 21:25:42 +0000100
Tom Stellard75aadc22012-12-11 21:25:42 +0000101//===----------------------------------------------------------------------===//
102//
103// supporting data structure for CFGStructurizer
104//
105//===----------------------------------------------------------------------===//
106
Tom Stellard75aadc22012-12-11 21:25:42 +0000107class BlockInformation {
108public:
Eugene Zelenko66203762017-01-21 00:53:49 +0000109 bool IsRetired = false;
110 int SccNum = INVALIDSCCNUM;
Tom Stellard75aadc22012-12-11 21:25:42 +0000111
Eugene Zelenko66203762017-01-21 00:53:49 +0000112 BlockInformation() = default;
113};
Tom Stellard75aadc22012-12-11 21:25:42 +0000114
115//===----------------------------------------------------------------------===//
116//
117// CFGStructurizer
118//
119//===----------------------------------------------------------------------===//
120
Vincent Lejeune960a6222013-07-19 21:45:06 +0000121class AMDGPUCFGStructurizer : public MachineFunctionPass {
Tom Stellard75aadc22012-12-11 21:25:42 +0000122public:
Eugene Zelenkod16eff82017-08-08 23:53:55 +0000123 using MBBVector = SmallVector<MachineBasicBlock *, 32>;
124 using MBBInfoMap = std::map<MachineBasicBlock *, BlockInformation *>;
125 using LoopLandInfoMap = std::map<MachineLoop *, MachineBasicBlock *>;
Vincent Lejeune960a6222013-07-19 21:45:06 +0000126
127 enum PathToKind {
Tom Stellard75aadc22012-12-11 21:25:42 +0000128 Not_SinglePath = 0,
129 SinglePath_InPath = 1,
130 SinglePath_NotInPath = 2
Vincent Lejeune960a6222013-07-19 21:45:06 +0000131 };
Tom Stellard75aadc22012-12-11 21:25:42 +0000132
Vincent Lejeune960a6222013-07-19 21:45:06 +0000133 static char ID;
Tom Stellard75aadc22012-12-11 21:25:42 +0000134
Eugene Zelenko66203762017-01-21 00:53:49 +0000135 AMDGPUCFGStructurizer() : MachineFunctionPass(ID) {
Tom Stellardf2ba9722013-12-11 17:51:47 +0000136 initializeAMDGPUCFGStructurizerPass(*PassRegistry::getPassRegistry());
137 }
Tom Stellard75aadc22012-12-11 21:25:42 +0000138
Mehdi Amini117296c2016-10-01 02:56:57 +0000139 StringRef getPassName() const override {
Tom Stellardf2ba9722013-12-11 17:51:47 +0000140 return "AMDGPU Control Flow Graph structurizer Pass";
Vincent Lejeune960a6222013-07-19 21:45:06 +0000141 }
Tom Stellard75aadc22012-12-11 21:25:42 +0000142
Craig Topper5656db42014-04-29 07:57:24 +0000143 void getAnalysisUsage(AnalysisUsage &AU) const override {
Vincent Lejeune960a6222013-07-19 21:45:06 +0000144 AU.addRequired<MachineDominatorTree>();
145 AU.addRequired<MachinePostDominatorTree>();
146 AU.addRequired<MachineLoopInfo>();
Matthias Braun733fe362016-08-24 01:52:46 +0000147 MachineFunctionPass::getAnalysisUsage(AU);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000148 }
Tom Stellard75aadc22012-12-11 21:25:42 +0000149
150 /// Perform the CFG structurization
Vincent Lejeune960a6222013-07-19 21:45:06 +0000151 bool run();
Tom Stellard75aadc22012-12-11 21:25:42 +0000152
153 /// Perform the CFG preparation
Vincent Lejeune960a6222013-07-19 21:45:06 +0000154 /// This step will remove every unconditionnal/dead jump instructions and make
155 /// sure all loops have an exit block
156 bool prepare();
Tom Stellard75aadc22012-12-11 21:25:42 +0000157
Craig Topper5656db42014-04-29 07:57:24 +0000158 bool runOnMachineFunction(MachineFunction &MF) override {
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000159 TII = MF.getSubtarget<R600Subtarget>().getInstrInfo();
Tom Stellardf2ba9722013-12-11 17:51:47 +0000160 TRI = &TII->getRegisterInfo();
Vincent Lejeune960a6222013-07-19 21:45:06 +0000161 DEBUG(MF.dump(););
162 OrderedBlks.clear();
Jan Vesely7a9cca92015-03-13 17:32:46 +0000163 Visited.clear();
Vincent Lejeune960a6222013-07-19 21:45:06 +0000164 FuncRep = &MF;
165 MLI = &getAnalysis<MachineLoopInfo>();
166 DEBUG(dbgs() << "LoopInfo:\n"; PrintLoopinfo(*MLI););
167 MDT = &getAnalysis<MachineDominatorTree>();
Eugene Zelenko66203762017-01-21 00:53:49 +0000168 DEBUG(MDT->print(dbgs(), (const Module*)nullptr););
Vincent Lejeune960a6222013-07-19 21:45:06 +0000169 PDT = &getAnalysis<MachinePostDominatorTree>();
170 DEBUG(PDT->print(dbgs()););
171 prepare();
172 run();
173 DEBUG(MF.dump(););
174 return true;
175 }
Tom Stellard75aadc22012-12-11 21:25:42 +0000176
Vincent Lejeune960a6222013-07-19 21:45:06 +0000177protected:
Vincent Lejeune960a6222013-07-19 21:45:06 +0000178 MachineDominatorTree *MDT;
179 MachinePostDominatorTree *PDT;
180 MachineLoopInfo *MLI;
Eugene Zelenko66203762017-01-21 00:53:49 +0000181 const R600InstrInfo *TII = nullptr;
182 const R600RegisterInfo *TRI = nullptr;
Tom Stellard75aadc22012-12-11 21:25:42 +0000183
Vincent Lejeune960a6222013-07-19 21:45:06 +0000184 // PRINT FUNCTIONS
185 /// Print the ordered Blocks.
186 void printOrderedBlocks() const {
187 size_t i = 0;
188 for (MBBVector::const_iterator iterBlk = OrderedBlks.begin(),
189 iterBlkEnd = OrderedBlks.end(); iterBlk != iterBlkEnd; ++iterBlk, ++i) {
190 dbgs() << "BB" << (*iterBlk)->getNumber();
191 dbgs() << "(" << getSCCNum(*iterBlk) << "," << (*iterBlk)->size() << ")";
192 if (i != 0 && i % 10 == 0) {
193 dbgs() << "\n";
194 } else {
195 dbgs() << " ";
196 }
197 }
198 }
Eugene Zelenko66203762017-01-21 00:53:49 +0000199
Vincent Lejeune960a6222013-07-19 21:45:06 +0000200 static void PrintLoopinfo(const MachineLoopInfo &LoopInfo) {
201 for (MachineLoop::iterator iter = LoopInfo.begin(),
202 iterEnd = LoopInfo.end(); iter != iterEnd; ++iter) {
203 (*iter)->print(dbgs(), 0);
204 }
205 }
Tom Stellard75aadc22012-12-11 21:25:42 +0000206
Vincent Lejeune960a6222013-07-19 21:45:06 +0000207 // UTILITY FUNCTIONS
208 int getSCCNum(MachineBasicBlock *MBB) const;
209 MachineBasicBlock *getLoopLandInfo(MachineLoop *LoopRep) const;
210 bool hasBackEdge(MachineBasicBlock *MBB) const;
Vincent Lejeune960a6222013-07-19 21:45:06 +0000211 bool isRetiredBlock(MachineBasicBlock *MBB) const;
212 bool isActiveLoophead(MachineBasicBlock *MBB) const;
213 PathToKind singlePathTo(MachineBasicBlock *SrcMBB, MachineBasicBlock *DstMBB,
214 bool AllowSideEntry = true) const;
215 int countActiveBlock(MBBVector::const_iterator It,
216 MBBVector::const_iterator E) const;
217 bool needMigrateBlock(MachineBasicBlock *MBB) const;
218
219 // Utility Functions
Hans Wennborg0dd9ed12016-08-13 01:12:49 +0000220 void reversePredicateSetter(MachineBasicBlock::iterator I,
221 MachineBasicBlock &MBB);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000222 /// Compute the reversed DFS post order of Blocks
223 void orderBlocks(MachineFunction *MF);
224
Alp Tokercb402912014-01-24 17:20:08 +0000225 // Function originally from CFGStructTraits
Vincent Lejeune960a6222013-07-19 21:45:06 +0000226 void insertInstrEnd(MachineBasicBlock *MBB, int NewOpcode,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000227 const DebugLoc &DL = DebugLoc());
Vincent Lejeune960a6222013-07-19 21:45:06 +0000228 MachineInstr *insertInstrBefore(MachineBasicBlock *MBB, int NewOpcode,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000229 const DebugLoc &DL = DebugLoc());
Vincent Lejeune960a6222013-07-19 21:45:06 +0000230 MachineInstr *insertInstrBefore(MachineBasicBlock::iterator I, int NewOpcode);
231 void insertCondBranchBefore(MachineBasicBlock::iterator I, int NewOpcode,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000232 const DebugLoc &DL);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000233 void insertCondBranchBefore(MachineBasicBlock *MBB,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000234 MachineBasicBlock::iterator I, int NewOpcode,
235 int RegNum, const DebugLoc &DL);
Eugene Zelenkod16eff82017-08-08 23:53:55 +0000236
Vincent Lejeune960a6222013-07-19 21:45:06 +0000237 static int getBranchNzeroOpcode(int OldOpcode);
238 static int getBranchZeroOpcode(int OldOpcode);
239 static int getContinueNzeroOpcode(int OldOpcode);
240 static int getContinueZeroOpcode(int OldOpcode);
241 static MachineBasicBlock *getTrueBranch(MachineInstr *MI);
242 static void setTrueBranch(MachineInstr *MI, MachineBasicBlock *MBB);
243 static MachineBasicBlock *getFalseBranch(MachineBasicBlock *MBB,
244 MachineInstr *MI);
245 static bool isCondBranch(MachineInstr *MI);
246 static bool isUncondBranch(MachineInstr *MI);
247 static DebugLoc getLastDebugLocInBB(MachineBasicBlock *MBB);
248 static MachineInstr *getNormalBlockBranchInstr(MachineBasicBlock *MBB);
Eugene Zelenkod16eff82017-08-08 23:53:55 +0000249
Vincent Lejeune960a6222013-07-19 21:45:06 +0000250 /// The correct naming for this is getPossibleLoopendBlockBranchInstr.
251 ///
252 /// BB with backward-edge could have move instructions after the branch
253 /// instruction. Such move instruction "belong to" the loop backward-edge.
254 MachineInstr *getLoopendBlockBranchInstr(MachineBasicBlock *MBB);
Eugene Zelenkod16eff82017-08-08 23:53:55 +0000255
Vincent Lejeune960a6222013-07-19 21:45:06 +0000256 static MachineInstr *getReturnInstr(MachineBasicBlock *MBB);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000257 static bool isReturnBlock(MachineBasicBlock *MBB);
258 static void cloneSuccessorList(MachineBasicBlock *DstMBB,
Eugene Zelenkod16eff82017-08-08 23:53:55 +0000259 MachineBasicBlock *SrcMBB);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000260 static MachineBasicBlock *clone(MachineBasicBlock *MBB);
Eugene Zelenkod16eff82017-08-08 23:53:55 +0000261
Vincent Lejeune960a6222013-07-19 21:45:06 +0000262 /// MachineBasicBlock::ReplaceUsesOfBlockWith doesn't serve the purpose
263 /// because the AMDGPU instruction is not recognized as terminator fix this
264 /// and retire this routine
265 void replaceInstrUseOfBlockWith(MachineBasicBlock *SrcMBB,
266 MachineBasicBlock *OldMBB, MachineBasicBlock *NewBlk);
Eugene Zelenkod16eff82017-08-08 23:53:55 +0000267
Vincent Lejeune960a6222013-07-19 21:45:06 +0000268 static void wrapup(MachineBasicBlock *MBB);
269
Vincent Lejeune960a6222013-07-19 21:45:06 +0000270 int patternMatch(MachineBasicBlock *MBB);
271 int patternMatchGroup(MachineBasicBlock *MBB);
272 int serialPatternMatch(MachineBasicBlock *MBB);
273 int ifPatternMatch(MachineBasicBlock *MBB);
274 int loopendPatternMatch();
275 int mergeLoop(MachineLoop *LoopRep);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000276
Vincent Lejeune960a6222013-07-19 21:45:06 +0000277 /// return true iff src1Blk->succ_size() == 0 && src1Blk and src2Blk are in
278 /// the same loop with LoopLandInfo without explicitly keeping track of
279 /// loopContBlks and loopBreakBlks, this is a method to get the information.
280 bool isSameloopDetachedContbreak(MachineBasicBlock *Src1MBB,
281 MachineBasicBlock *Src2MBB);
282 int handleJumpintoIf(MachineBasicBlock *HeadMBB,
283 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB);
284 int handleJumpintoIfImp(MachineBasicBlock *HeadMBB,
285 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB);
286 int improveSimpleJumpintoIf(MachineBasicBlock *HeadMBB,
287 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB,
288 MachineBasicBlock **LandMBBPtr);
289 void showImproveSimpleJumpintoIf(MachineBasicBlock *HeadMBB,
290 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB,
291 MachineBasicBlock *LandMBB, bool Detail = false);
292 int cloneOnSideEntryTo(MachineBasicBlock *PreMBB,
293 MachineBasicBlock *SrcMBB, MachineBasicBlock *DstMBB);
294 void mergeSerialBlock(MachineBasicBlock *DstMBB,
295 MachineBasicBlock *SrcMBB);
296
297 void mergeIfthenelseBlock(MachineInstr *BranchMI,
298 MachineBasicBlock *MBB, MachineBasicBlock *TrueMBB,
299 MachineBasicBlock *FalseMBB, MachineBasicBlock *LandMBB);
300 void mergeLooplandBlock(MachineBasicBlock *DstMBB,
301 MachineBasicBlock *LandMBB);
302 void mergeLoopbreakBlock(MachineBasicBlock *ExitingMBB,
303 MachineBasicBlock *LandMBB);
304 void settleLoopcontBlock(MachineBasicBlock *ContingMBB,
305 MachineBasicBlock *ContMBB);
Eugene Zelenkod16eff82017-08-08 23:53:55 +0000306
Vincent Lejeune960a6222013-07-19 21:45:06 +0000307 /// normalizeInfiniteLoopExit change
308 /// B1:
309 /// uncond_br LoopHeader
310 ///
311 /// to
312 /// B1:
313 /// cond_br 1 LoopHeader dummyExit
314 /// and return the newly added dummy exit block
315 MachineBasicBlock *normalizeInfiniteLoopExit(MachineLoop *LoopRep);
316 void removeUnconditionalBranch(MachineBasicBlock *MBB);
Eugene Zelenkod16eff82017-08-08 23:53:55 +0000317
Vincent Lejeune960a6222013-07-19 21:45:06 +0000318 /// Remove duplicate branches instructions in a block.
319 /// For instance
320 /// B0:
321 /// cond_br X B1 B2
322 /// cond_br X B1 B2
323 /// is transformed to
324 /// B0:
325 /// cond_br X B1 B2
326 void removeRedundantConditionalBranch(MachineBasicBlock *MBB);
Eugene Zelenkod16eff82017-08-08 23:53:55 +0000327
Vincent Lejeune960a6222013-07-19 21:45:06 +0000328 void addDummyExitBlock(SmallVectorImpl<MachineBasicBlock *> &RetMBB);
329 void removeSuccessor(MachineBasicBlock *MBB);
330 MachineBasicBlock *cloneBlockForPredecessor(MachineBasicBlock *MBB,
331 MachineBasicBlock *PredMBB);
332 void migrateInstruction(MachineBasicBlock *SrcMBB,
333 MachineBasicBlock *DstMBB, MachineBasicBlock::iterator I);
334 void recordSccnum(MachineBasicBlock *MBB, int SCCNum);
335 void retireBlock(MachineBasicBlock *MBB);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000336
Vincent Lejeune960a6222013-07-19 21:45:06 +0000337private:
338 MBBInfoMap BlockInfoMap;
339 LoopLandInfoMap LLInfoMap;
340 std::map<MachineLoop *, bool> Visited;
341 MachineFunction *FuncRep;
342 SmallVector<MachineBasicBlock *, DEFAULT_VEC_SLOTS> OrderedBlks;
343};
344
Eugene Zelenko66203762017-01-21 00:53:49 +0000345} // end anonymous namespace
346
Eugene Zelenkod16eff82017-08-08 23:53:55 +0000347char AMDGPUCFGStructurizer::ID = 0;
348
Vincent Lejeune960a6222013-07-19 21:45:06 +0000349int AMDGPUCFGStructurizer::getSCCNum(MachineBasicBlock *MBB) const {
350 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB);
351 if (It == BlockInfoMap.end())
352 return INVALIDSCCNUM;
353 return (*It).second->SccNum;
Tom Stellard75aadc22012-12-11 21:25:42 +0000354}
355
Vincent Lejeune960a6222013-07-19 21:45:06 +0000356MachineBasicBlock *AMDGPUCFGStructurizer::getLoopLandInfo(MachineLoop *LoopRep)
357 const {
358 LoopLandInfoMap::const_iterator It = LLInfoMap.find(LoopRep);
359 if (It == LLInfoMap.end())
Craig Topper062a2ba2014-04-25 05:30:21 +0000360 return nullptr;
Vincent Lejeune960a6222013-07-19 21:45:06 +0000361 return (*It).second;
362}
363
364bool AMDGPUCFGStructurizer::hasBackEdge(MachineBasicBlock *MBB) const {
365 MachineLoop *LoopRep = MLI->getLoopFor(MBB);
366 if (!LoopRep)
367 return false;
368 MachineBasicBlock *LoopHeader = LoopRep->getHeader();
369 return MBB->isSuccessor(LoopHeader);
370}
371
Vincent Lejeune960a6222013-07-19 21:45:06 +0000372bool AMDGPUCFGStructurizer::isRetiredBlock(MachineBasicBlock *MBB) const {
373 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB);
374 if (It == BlockInfoMap.end())
375 return false;
376 return (*It).second->IsRetired;
377}
378
379bool AMDGPUCFGStructurizer::isActiveLoophead(MachineBasicBlock *MBB) const {
380 MachineLoop *LoopRep = MLI->getLoopFor(MBB);
381 while (LoopRep && LoopRep->getHeader() == MBB) {
382 MachineBasicBlock *LoopLand = getLoopLandInfo(LoopRep);
383 if(!LoopLand)
384 return true;
385 if (!isRetiredBlock(LoopLand))
386 return true;
387 LoopRep = LoopRep->getParentLoop();
388 }
389 return false;
390}
Eugene Zelenko66203762017-01-21 00:53:49 +0000391
Vincent Lejeune960a6222013-07-19 21:45:06 +0000392AMDGPUCFGStructurizer::PathToKind AMDGPUCFGStructurizer::singlePathTo(
393 MachineBasicBlock *SrcMBB, MachineBasicBlock *DstMBB,
394 bool AllowSideEntry) const {
395 assert(DstMBB);
396 if (SrcMBB == DstMBB)
397 return SinglePath_InPath;
398 while (SrcMBB && SrcMBB->succ_size() == 1) {
399 SrcMBB = *SrcMBB->succ_begin();
400 if (SrcMBB == DstMBB)
401 return SinglePath_InPath;
402 if (!AllowSideEntry && SrcMBB->pred_size() > 1)
403 return Not_SinglePath;
404 }
405 if (SrcMBB && SrcMBB->succ_size()==0)
406 return SinglePath_NotInPath;
407 return Not_SinglePath;
408}
409
410int AMDGPUCFGStructurizer::countActiveBlock(MBBVector::const_iterator It,
411 MBBVector::const_iterator E) const {
412 int Count = 0;
413 while (It != E) {
414 if (!isRetiredBlock(*It))
415 ++Count;
416 ++It;
417 }
418 return Count;
419}
420
421bool AMDGPUCFGStructurizer::needMigrateBlock(MachineBasicBlock *MBB) const {
422 unsigned BlockSizeThreshold = 30;
423 unsigned CloneInstrThreshold = 100;
424 bool MultiplePreds = MBB && (MBB->pred_size() > 1);
425
426 if(!MultiplePreds)
427 return false;
428 unsigned BlkSize = MBB->size();
429 return ((BlkSize > BlockSizeThreshold) &&
430 (BlkSize * (MBB->pred_size() - 1) > CloneInstrThreshold));
431}
432
433void AMDGPUCFGStructurizer::reversePredicateSetter(
Hans Wennborg0dd9ed12016-08-13 01:12:49 +0000434 MachineBasicBlock::iterator I, MachineBasicBlock &MBB) {
Duncan P. N. Exon Smithf197b1f2016-08-12 05:05:36 +0000435 assert(I.isValid() && "Expected valid iterator");
Duncan P. N. Exon Smith221847e2016-07-08 19:00:17 +0000436 for (;; --I) {
Hans Wennborg0dd9ed12016-08-13 01:12:49 +0000437 if (I == MBB.end())
438 continue;
Vincent Lejeune960a6222013-07-19 21:45:06 +0000439 if (I->getOpcode() == AMDGPU::PRED_X) {
Duncan P. N. Exon Smithf197b1f2016-08-12 05:05:36 +0000440 switch (I->getOperand(2).getImm()) {
Matt Arsenault44f6d692016-08-13 01:43:46 +0000441 case AMDGPU::PRED_SETE_INT:
442 I->getOperand(2).setImm(AMDGPU::PRED_SETNE_INT);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000443 return;
Matt Arsenault44f6d692016-08-13 01:43:46 +0000444 case AMDGPU::PRED_SETNE_INT:
445 I->getOperand(2).setImm(AMDGPU::PRED_SETE_INT);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000446 return;
Matt Arsenault44f6d692016-08-13 01:43:46 +0000447 case AMDGPU::PRED_SETE:
448 I->getOperand(2).setImm(AMDGPU::PRED_SETNE);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000449 return;
Matt Arsenault44f6d692016-08-13 01:43:46 +0000450 case AMDGPU::PRED_SETNE:
451 I->getOperand(2).setImm(AMDGPU::PRED_SETE);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000452 return;
453 default:
454 llvm_unreachable("PRED_X Opcode invalid!");
455 }
456 }
Tom Stellard75aadc22012-12-11 21:25:42 +0000457 }
458}
459
Vincent Lejeune960a6222013-07-19 21:45:06 +0000460void AMDGPUCFGStructurizer::insertInstrEnd(MachineBasicBlock *MBB,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000461 int NewOpcode, const DebugLoc &DL) {
462 MachineInstr *MI =
463 MBB->getParent()->CreateMachineInstr(TII->get(NewOpcode), DL);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000464 MBB->push_back(MI);
465 //assume the instruction doesn't take any reg operand ...
466 SHOWNEWINSTR(MI);
467}
Tom Stellard75aadc22012-12-11 21:25:42 +0000468
Vincent Lejeune960a6222013-07-19 21:45:06 +0000469MachineInstr *AMDGPUCFGStructurizer::insertInstrBefore(MachineBasicBlock *MBB,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000470 int NewOpcode,
471 const DebugLoc &DL) {
Vincent Lejeune960a6222013-07-19 21:45:06 +0000472 MachineInstr *MI =
473 MBB->getParent()->CreateMachineInstr(TII->get(NewOpcode), DL);
474 if (MBB->begin() != MBB->end())
475 MBB->insert(MBB->begin(), MI);
476 else
477 MBB->push_back(MI);
478 SHOWNEWINSTR(MI);
479 return MI;
480}
481
482MachineInstr *AMDGPUCFGStructurizer::insertInstrBefore(
483 MachineBasicBlock::iterator I, int NewOpcode) {
484 MachineInstr *OldMI = &(*I);
485 MachineBasicBlock *MBB = OldMI->getParent();
486 MachineInstr *NewMBB =
487 MBB->getParent()->CreateMachineInstr(TII->get(NewOpcode), DebugLoc());
488 MBB->insert(I, NewMBB);
489 //assume the instruction doesn't take any reg operand ...
490 SHOWNEWINSTR(NewMBB);
491 return NewMBB;
492}
493
494void AMDGPUCFGStructurizer::insertCondBranchBefore(
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000495 MachineBasicBlock::iterator I, int NewOpcode, const DebugLoc &DL) {
Vincent Lejeune960a6222013-07-19 21:45:06 +0000496 MachineInstr *OldMI = &(*I);
497 MachineBasicBlock *MBB = OldMI->getParent();
498 MachineFunction *MF = MBB->getParent();
499 MachineInstr *NewMI = MF->CreateMachineInstr(TII->get(NewOpcode), DL);
500 MBB->insert(I, NewMI);
501 MachineInstrBuilder MIB(*MF, NewMI);
502 MIB.addReg(OldMI->getOperand(1).getReg(), false);
503 SHOWNEWINSTR(NewMI);
504 //erase later oldInstr->eraseFromParent();
505}
506
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000507void AMDGPUCFGStructurizer::insertCondBranchBefore(
508 MachineBasicBlock *blk, MachineBasicBlock::iterator I, int NewOpcode,
509 int RegNum, const DebugLoc &DL) {
Vincent Lejeune960a6222013-07-19 21:45:06 +0000510 MachineFunction *MF = blk->getParent();
511 MachineInstr *NewInstr = MF->CreateMachineInstr(TII->get(NewOpcode), DL);
512 //insert before
513 blk->insert(I, NewInstr);
514 MachineInstrBuilder(*MF, NewInstr).addReg(RegNum, false);
515 SHOWNEWINSTR(NewInstr);
516}
517
Vincent Lejeune960a6222013-07-19 21:45:06 +0000518int AMDGPUCFGStructurizer::getBranchNzeroOpcode(int OldOpcode) {
519 switch(OldOpcode) {
520 case AMDGPU::JUMP_COND:
521 case AMDGPU::JUMP: return AMDGPU::IF_PREDICATE_SET;
522 case AMDGPU::BRANCH_COND_i32:
523 case AMDGPU::BRANCH_COND_f32: return AMDGPU::IF_LOGICALNZ_f32;
524 default: llvm_unreachable("internal error");
525 }
526 return -1;
527}
528
529int AMDGPUCFGStructurizer::getBranchZeroOpcode(int OldOpcode) {
530 switch(OldOpcode) {
531 case AMDGPU::JUMP_COND:
532 case AMDGPU::JUMP: return AMDGPU::IF_PREDICATE_SET;
533 case AMDGPU::BRANCH_COND_i32:
534 case AMDGPU::BRANCH_COND_f32: return AMDGPU::IF_LOGICALZ_f32;
535 default: llvm_unreachable("internal error");
536 }
537 return -1;
538}
539
540int AMDGPUCFGStructurizer::getContinueNzeroOpcode(int OldOpcode) {
541 switch(OldOpcode) {
542 case AMDGPU::JUMP_COND:
543 case AMDGPU::JUMP: return AMDGPU::CONTINUE_LOGICALNZ_i32;
544 default: llvm_unreachable("internal error");
Eugene Zelenkod16eff82017-08-08 23:53:55 +0000545 }
Vincent Lejeune960a6222013-07-19 21:45:06 +0000546 return -1;
547}
548
549int AMDGPUCFGStructurizer::getContinueZeroOpcode(int OldOpcode) {
550 switch(OldOpcode) {
551 case AMDGPU::JUMP_COND:
552 case AMDGPU::JUMP: return AMDGPU::CONTINUE_LOGICALZ_i32;
553 default: llvm_unreachable("internal error");
554 }
555 return -1;
556}
557
558MachineBasicBlock *AMDGPUCFGStructurizer::getTrueBranch(MachineInstr *MI) {
559 return MI->getOperand(0).getMBB();
560}
561
562void AMDGPUCFGStructurizer::setTrueBranch(MachineInstr *MI,
563 MachineBasicBlock *MBB) {
564 MI->getOperand(0).setMBB(MBB);
565}
566
567MachineBasicBlock *
568AMDGPUCFGStructurizer::getFalseBranch(MachineBasicBlock *MBB,
569 MachineInstr *MI) {
570 assert(MBB->succ_size() == 2);
571 MachineBasicBlock *TrueBranch = getTrueBranch(MI);
572 MachineBasicBlock::succ_iterator It = MBB->succ_begin();
573 MachineBasicBlock::succ_iterator Next = It;
574 ++Next;
575 return (*It == TrueBranch) ? *Next : *It;
576}
577
578bool AMDGPUCFGStructurizer::isCondBranch(MachineInstr *MI) {
579 switch (MI->getOpcode()) {
580 case AMDGPU::JUMP_COND:
581 case AMDGPU::BRANCH_COND_i32:
582 case AMDGPU::BRANCH_COND_f32: return true;
583 default:
584 return false;
585 }
586 return false;
587}
588
589bool AMDGPUCFGStructurizer::isUncondBranch(MachineInstr *MI) {
590 switch (MI->getOpcode()) {
591 case AMDGPU::JUMP:
592 case AMDGPU::BRANCH:
593 return true;
594 default:
595 return false;
596 }
597 return false;
598}
599
600DebugLoc AMDGPUCFGStructurizer::getLastDebugLocInBB(MachineBasicBlock *MBB) {
601 //get DebugLoc from the first MachineBasicBlock instruction with debug info
602 DebugLoc DL;
603 for (MachineBasicBlock::iterator It = MBB->begin(); It != MBB->end();
604 ++It) {
605 MachineInstr *instr = &(*It);
Duncan P. N. Exon Smith9dffcd02015-03-30 19:14:47 +0000606 if (instr->getDebugLoc())
Vincent Lejeune960a6222013-07-19 21:45:06 +0000607 DL = instr->getDebugLoc();
608 }
609 return DL;
610}
611
612MachineInstr *AMDGPUCFGStructurizer::getNormalBlockBranchInstr(
613 MachineBasicBlock *MBB) {
614 MachineBasicBlock::reverse_iterator It = MBB->rbegin();
615 MachineInstr *MI = &*It;
616 if (MI && (isCondBranch(MI) || isUncondBranch(MI)))
617 return MI;
Craig Topper062a2ba2014-04-25 05:30:21 +0000618 return nullptr;
Vincent Lejeune960a6222013-07-19 21:45:06 +0000619}
620
621MachineInstr *AMDGPUCFGStructurizer::getLoopendBlockBranchInstr(
622 MachineBasicBlock *MBB) {
623 for (MachineBasicBlock::reverse_iterator It = MBB->rbegin(), E = MBB->rend();
624 It != E; ++It) {
625 // FIXME: Simplify
626 MachineInstr *MI = &*It;
627 if (MI) {
628 if (isCondBranch(MI) || isUncondBranch(MI))
629 return MI;
630 else if (!TII->isMov(MI->getOpcode()))
631 break;
632 }
633 }
Craig Topper062a2ba2014-04-25 05:30:21 +0000634 return nullptr;
Vincent Lejeune960a6222013-07-19 21:45:06 +0000635}
636
637MachineInstr *AMDGPUCFGStructurizer::getReturnInstr(MachineBasicBlock *MBB) {
638 MachineBasicBlock::reverse_iterator It = MBB->rbegin();
639 if (It != MBB->rend()) {
640 MachineInstr *instr = &(*It);
641 if (instr->getOpcode() == AMDGPU::RETURN)
642 return instr;
643 }
Craig Topper062a2ba2014-04-25 05:30:21 +0000644 return nullptr;
Vincent Lejeune960a6222013-07-19 21:45:06 +0000645}
646
Vincent Lejeune960a6222013-07-19 21:45:06 +0000647bool AMDGPUCFGStructurizer::isReturnBlock(MachineBasicBlock *MBB) {
648 MachineInstr *MI = getReturnInstr(MBB);
649 bool IsReturn = (MBB->succ_size() == 0);
650 if (MI)
651 assert(IsReturn);
652 else if (IsReturn)
653 DEBUG(
654 dbgs() << "BB" << MBB->getNumber()
655 <<" is return block without RETURN instr\n";);
656 return IsReturn;
657}
658
659void AMDGPUCFGStructurizer::cloneSuccessorList(MachineBasicBlock *DstMBB,
660 MachineBasicBlock *SrcMBB) {
661 for (MachineBasicBlock::succ_iterator It = SrcMBB->succ_begin(),
662 iterEnd = SrcMBB->succ_end(); It != iterEnd; ++It)
663 DstMBB->addSuccessor(*It); // *iter's predecessor is also taken care of
664}
665
666MachineBasicBlock *AMDGPUCFGStructurizer::clone(MachineBasicBlock *MBB) {
667 MachineFunction *Func = MBB->getParent();
668 MachineBasicBlock *NewMBB = Func->CreateMachineBasicBlock();
669 Func->push_back(NewMBB); //insert to function
Duncan P. N. Exon Smith4d295112016-07-08 19:16:05 +0000670 for (const MachineInstr &It : *MBB)
671 NewMBB->push_back(Func->CloneMachineInstr(&It));
Vincent Lejeune960a6222013-07-19 21:45:06 +0000672 return NewMBB;
673}
674
675void AMDGPUCFGStructurizer::replaceInstrUseOfBlockWith(
676 MachineBasicBlock *SrcMBB, MachineBasicBlock *OldMBB,
677 MachineBasicBlock *NewBlk) {
678 MachineInstr *BranchMI = getLoopendBlockBranchInstr(SrcMBB);
679 if (BranchMI && isCondBranch(BranchMI) &&
680 getTrueBranch(BranchMI) == OldMBB)
681 setTrueBranch(BranchMI, NewBlk);
682}
683
684void AMDGPUCFGStructurizer::wrapup(MachineBasicBlock *MBB) {
685 assert((!MBB->getParent()->getJumpTableInfo()
686 || MBB->getParent()->getJumpTableInfo()->isEmpty())
687 && "found a jump table");
688
689 //collect continue right before endloop
690 SmallVector<MachineInstr *, DEFAULT_VEC_SLOTS> ContInstr;
691 MachineBasicBlock::iterator Pre = MBB->begin();
692 MachineBasicBlock::iterator E = MBB->end();
693 MachineBasicBlock::iterator It = Pre;
694 while (It != E) {
695 if (Pre->getOpcode() == AMDGPU::CONTINUE
696 && It->getOpcode() == AMDGPU::ENDLOOP)
Duncan P. N. Exon Smith4d295112016-07-08 19:16:05 +0000697 ContInstr.push_back(&*Pre);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000698 Pre = It;
699 ++It;
700 }
701
702 //delete continue right before endloop
703 for (unsigned i = 0; i < ContInstr.size(); ++i)
704 ContInstr[i]->eraseFromParent();
705
706 // TODO to fix up jump table so later phase won't be confused. if
707 // (jumpTableInfo->isEmpty() == false) { need to clean the jump table, but
708 // there isn't such an interface yet. alternatively, replace all the other
709 // blocks in the jump table with the entryBlk //}
Vincent Lejeune960a6222013-07-19 21:45:06 +0000710}
711
Vincent Lejeune960a6222013-07-19 21:45:06 +0000712bool AMDGPUCFGStructurizer::prepare() {
713 bool Changed = false;
Tom Stellard75aadc22012-12-11 21:25:42 +0000714
715 //FIXME: if not reducible flow graph, make it so ???
716
Vincent Lejeune960a6222013-07-19 21:45:06 +0000717 DEBUG(dbgs() << "AMDGPUCFGStructurizer::prepare\n";);
Tom Stellard75aadc22012-12-11 21:25:42 +0000718
Vincent Lejeune960a6222013-07-19 21:45:06 +0000719 orderBlocks(FuncRep);
Tom Stellard75aadc22012-12-11 21:25:42 +0000720
Vincent Lejeune960a6222013-07-19 21:45:06 +0000721 SmallVector<MachineBasicBlock *, DEFAULT_VEC_SLOTS> RetBlks;
Tom Stellard75aadc22012-12-11 21:25:42 +0000722
Vincent Lejeune960a6222013-07-19 21:45:06 +0000723 // Add an ExitBlk to loop that don't have one
724 for (MachineLoopInfo::iterator It = MLI->begin(),
725 E = MLI->end(); It != E; ++It) {
726 MachineLoop *LoopRep = (*It);
727 MBBVector ExitingMBBs;
728 LoopRep->getExitingBlocks(ExitingMBBs);
Tom Stellard75aadc22012-12-11 21:25:42 +0000729
Vincent Lejeune960a6222013-07-19 21:45:06 +0000730 if (ExitingMBBs.size() == 0) {
731 MachineBasicBlock* DummyExitBlk = normalizeInfiniteLoopExit(LoopRep);
732 if (DummyExitBlk)
733 RetBlks.push_back(DummyExitBlk);
Tom Stellard75aadc22012-12-11 21:25:42 +0000734 }
735 }
736
737 // Remove unconditional branch instr.
738 // Add dummy exit block iff there are multiple returns.
Vincent Lejeune960a6222013-07-19 21:45:06 +0000739 for (SmallVectorImpl<MachineBasicBlock *>::const_iterator
740 It = OrderedBlks.begin(), E = OrderedBlks.end(); It != E; ++It) {
741 MachineBasicBlock *MBB = *It;
742 removeUnconditionalBranch(MBB);
743 removeRedundantConditionalBranch(MBB);
744 if (isReturnBlock(MBB)) {
745 RetBlks.push_back(MBB);
Tom Stellard75aadc22012-12-11 21:25:42 +0000746 }
Vincent Lejeune960a6222013-07-19 21:45:06 +0000747 assert(MBB->succ_size() <= 2);
Tom Stellard75aadc22012-12-11 21:25:42 +0000748 }
749
Vincent Lejeune960a6222013-07-19 21:45:06 +0000750 if (RetBlks.size() >= 2) {
751 addDummyExitBlock(RetBlks);
752 Changed = true;
753 }
Tom Stellard75aadc22012-12-11 21:25:42 +0000754
Vincent Lejeune960a6222013-07-19 21:45:06 +0000755 return Changed;
756}
757
758bool AMDGPUCFGStructurizer::run() {
Tom Stellard75aadc22012-12-11 21:25:42 +0000759 //Assume reducible CFG...
Matt Arsenaultdb8b1d52014-03-24 20:29:02 +0000760 DEBUG(dbgs() << "AMDGPUCFGStructurizer::run\n");
Tom Stellard75aadc22012-12-11 21:25:42 +0000761
Tom Stellard75aadc22012-12-11 21:25:42 +0000762#ifdef STRESSTEST
763 //Use the worse block ordering to test the algorithm.
764 ReverseVector(orderedBlks);
765#endif
766
Vincent Lejeune960a6222013-07-19 21:45:06 +0000767 DEBUG(dbgs() << "Ordered blocks:\n"; printOrderedBlocks(););
768 int NumIter = 0;
769 bool Finish = false;
770 MachineBasicBlock *MBB;
771 bool MakeProgress = false;
772 int NumRemainedBlk = countActiveBlock(OrderedBlks.begin(),
773 OrderedBlks.end());
Tom Stellard75aadc22012-12-11 21:25:42 +0000774
775 do {
Vincent Lejeune960a6222013-07-19 21:45:06 +0000776 ++NumIter;
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000777 DEBUG(
Vincent Lejeune960a6222013-07-19 21:45:06 +0000778 dbgs() << "numIter = " << NumIter
779 << ", numRemaintedBlk = " << NumRemainedBlk << "\n";
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000780 );
Tom Stellard75aadc22012-12-11 21:25:42 +0000781
Vincent Lejeune960a6222013-07-19 21:45:06 +0000782 SmallVectorImpl<MachineBasicBlock *>::const_iterator It =
783 OrderedBlks.begin();
784 SmallVectorImpl<MachineBasicBlock *>::const_iterator E =
785 OrderedBlks.end();
Tom Stellard75aadc22012-12-11 21:25:42 +0000786
Vincent Lejeune960a6222013-07-19 21:45:06 +0000787 SmallVectorImpl<MachineBasicBlock *>::const_iterator SccBeginIter =
788 It;
Craig Topper062a2ba2014-04-25 05:30:21 +0000789 MachineBasicBlock *SccBeginMBB = nullptr;
Vincent Lejeune960a6222013-07-19 21:45:06 +0000790 int SccNumBlk = 0; // The number of active blocks, init to a
Tom Stellard75aadc22012-12-11 21:25:42 +0000791 // maximum possible number.
Vincent Lejeune960a6222013-07-19 21:45:06 +0000792 int SccNumIter; // Number of iteration in this SCC.
Tom Stellard75aadc22012-12-11 21:25:42 +0000793
Vincent Lejeune960a6222013-07-19 21:45:06 +0000794 while (It != E) {
795 MBB = *It;
Tom Stellard75aadc22012-12-11 21:25:42 +0000796
Vincent Lejeune960a6222013-07-19 21:45:06 +0000797 if (!SccBeginMBB) {
798 SccBeginIter = It;
799 SccBeginMBB = MBB;
800 SccNumIter = 0;
801 SccNumBlk = NumRemainedBlk; // Init to maximum possible number.
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000802 DEBUG(
Vincent Lejeune960a6222013-07-19 21:45:06 +0000803 dbgs() << "start processing SCC" << getSCCNum(SccBeginMBB);
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000804 dbgs() << "\n";
805 );
Tom Stellard75aadc22012-12-11 21:25:42 +0000806 }
807
Vincent Lejeune960a6222013-07-19 21:45:06 +0000808 if (!isRetiredBlock(MBB))
809 patternMatch(MBB);
Tom Stellard75aadc22012-12-11 21:25:42 +0000810
Vincent Lejeune960a6222013-07-19 21:45:06 +0000811 ++It;
Tom Stellard75aadc22012-12-11 21:25:42 +0000812
Vincent Lejeune960a6222013-07-19 21:45:06 +0000813 bool ContNextScc = true;
814 if (It == E
815 || getSCCNum(SccBeginMBB) != getSCCNum(*It)) {
Tom Stellard75aadc22012-12-11 21:25:42 +0000816 // Just finish one scc.
Vincent Lejeune960a6222013-07-19 21:45:06 +0000817 ++SccNumIter;
818 int sccRemainedNumBlk = countActiveBlock(SccBeginIter, It);
819 if (sccRemainedNumBlk != 1 && sccRemainedNumBlk >= SccNumBlk) {
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000820 DEBUG(
Vincent Lejeune960a6222013-07-19 21:45:06 +0000821 dbgs() << "Can't reduce SCC " << getSCCNum(MBB)
822 << ", sccNumIter = " << SccNumIter;
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000823 dbgs() << "doesn't make any progress\n";
824 );
Vincent Lejeune960a6222013-07-19 21:45:06 +0000825 ContNextScc = true;
826 } else if (sccRemainedNumBlk != 1 && sccRemainedNumBlk < SccNumBlk) {
827 SccNumBlk = sccRemainedNumBlk;
828 It = SccBeginIter;
829 ContNextScc = false;
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000830 DEBUG(
Vincent Lejeune960a6222013-07-19 21:45:06 +0000831 dbgs() << "repeat processing SCC" << getSCCNum(MBB)
Matt Arsenaultdb8b1d52014-03-24 20:29:02 +0000832 << "sccNumIter = " << SccNumIter << '\n';
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000833 );
Tom Stellard75aadc22012-12-11 21:25:42 +0000834 } else {
835 // Finish the current scc.
Vincent Lejeune960a6222013-07-19 21:45:06 +0000836 ContNextScc = true;
Tom Stellard75aadc22012-12-11 21:25:42 +0000837 }
838 } else {
839 // Continue on next component in the current scc.
Vincent Lejeune960a6222013-07-19 21:45:06 +0000840 ContNextScc = false;
Tom Stellard75aadc22012-12-11 21:25:42 +0000841 }
842
Vincent Lejeune960a6222013-07-19 21:45:06 +0000843 if (ContNextScc)
Craig Topper062a2ba2014-04-25 05:30:21 +0000844 SccBeginMBB = nullptr;
Tom Stellard75aadc22012-12-11 21:25:42 +0000845 } //while, "one iteration" over the function.
846
Vincent Lejeune960a6222013-07-19 21:45:06 +0000847 MachineBasicBlock *EntryMBB =
Tim Shenb5e0f5a2016-08-19 21:20:13 +0000848 *GraphTraits<MachineFunction *>::nodes_begin(FuncRep);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000849 if (EntryMBB->succ_size() == 0) {
850 Finish = true;
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000851 DEBUG(
852 dbgs() << "Reduce to one block\n";
853 );
Tom Stellard75aadc22012-12-11 21:25:42 +0000854 } else {
Vincent Lejeune960a6222013-07-19 21:45:06 +0000855 int NewnumRemainedBlk
856 = countActiveBlock(OrderedBlks.begin(), OrderedBlks.end());
Tom Stellard75aadc22012-12-11 21:25:42 +0000857 // consider cloned blocks ??
Vincent Lejeune960a6222013-07-19 21:45:06 +0000858 if (NewnumRemainedBlk == 1 || NewnumRemainedBlk < NumRemainedBlk) {
859 MakeProgress = true;
860 NumRemainedBlk = NewnumRemainedBlk;
Tom Stellard75aadc22012-12-11 21:25:42 +0000861 } else {
Vincent Lejeune960a6222013-07-19 21:45:06 +0000862 MakeProgress = false;
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000863 DEBUG(
864 dbgs() << "No progress\n";
865 );
Tom Stellard75aadc22012-12-11 21:25:42 +0000866 }
867 }
Vincent Lejeune960a6222013-07-19 21:45:06 +0000868 } while (!Finish && MakeProgress);
Tom Stellard75aadc22012-12-11 21:25:42 +0000869
870 // Misc wrap up to maintain the consistency of the Function representation.
Tim Shenb5e0f5a2016-08-19 21:20:13 +0000871 wrapup(*GraphTraits<MachineFunction *>::nodes_begin(FuncRep));
Tom Stellard75aadc22012-12-11 21:25:42 +0000872
873 // Detach retired Block, release memory.
Vincent Lejeune960a6222013-07-19 21:45:06 +0000874 for (MBBInfoMap::iterator It = BlockInfoMap.begin(), E = BlockInfoMap.end();
875 It != E; ++It) {
876 if ((*It).second && (*It).second->IsRetired) {
877 assert(((*It).first)->getNumber() != -1);
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000878 DEBUG(
Vincent Lejeune960a6222013-07-19 21:45:06 +0000879 dbgs() << "Erase BB" << ((*It).first)->getNumber() << "\n";
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000880 );
Vincent Lejeune960a6222013-07-19 21:45:06 +0000881 (*It).first->eraseFromParent(); //Remove from the parent Function.
Tom Stellard75aadc22012-12-11 21:25:42 +0000882 }
Vincent Lejeune960a6222013-07-19 21:45:06 +0000883 delete (*It).second;
Tom Stellard75aadc22012-12-11 21:25:42 +0000884 }
Vincent Lejeune960a6222013-07-19 21:45:06 +0000885 BlockInfoMap.clear();
886 LLInfoMap.clear();
Tom Stellard75aadc22012-12-11 21:25:42 +0000887
Matt Arsenaultdb8b1d52014-03-24 20:29:02 +0000888 if (!Finish) {
889 DEBUG(FuncRep->viewCFG());
Matt Arsenault5de68cb2016-03-02 03:33:55 +0000890 report_fatal_error("IRREDUCIBLE_CFG");
Matt Arsenaultdb8b1d52014-03-24 20:29:02 +0000891 }
Tom Stellard75aadc22012-12-11 21:25:42 +0000892
893 return true;
Vincent Lejeune960a6222013-07-19 21:45:06 +0000894}
Tom Stellard75aadc22012-12-11 21:25:42 +0000895
Vincent Lejeune960a6222013-07-19 21:45:06 +0000896void AMDGPUCFGStructurizer::orderBlocks(MachineFunction *MF) {
897 int SccNum = 0;
898 MachineBasicBlock *MBB;
Duncan P. N. Exon Smith8e661ef2014-02-04 19:19:07 +0000899 for (scc_iterator<MachineFunction *> It = scc_begin(MF); !It.isAtEnd();
900 ++It, ++SccNum) {
Duncan P. N. Exon Smithd2b2fac2014-04-25 18:24:50 +0000901 const std::vector<MachineBasicBlock *> &SccNext = *It;
Vincent Lejeune960a6222013-07-19 21:45:06 +0000902 for (std::vector<MachineBasicBlock *>::const_iterator
903 blockIter = SccNext.begin(), blockEnd = SccNext.end();
Tom Stellard75aadc22012-12-11 21:25:42 +0000904 blockIter != blockEnd; ++blockIter) {
Vincent Lejeune960a6222013-07-19 21:45:06 +0000905 MBB = *blockIter;
906 OrderedBlks.push_back(MBB);
907 recordSccnum(MBB, SccNum);
Tom Stellard75aadc22012-12-11 21:25:42 +0000908 }
909 }
910
Daniel Berlin58a6e572017-02-09 20:37:24 +0000911 // walk through all the block in func to check for unreachable
Daniel Berlin73ad5cb2017-02-09 20:37:46 +0000912 for (auto *MBB : nodes(MF)) {
Vincent Lejeune960a6222013-07-19 21:45:06 +0000913 SccNum = getSCCNum(MBB);
914 if (SccNum == INVALIDSCCNUM)
915 dbgs() << "unreachable block BB" << MBB->getNumber() << "\n";
Tom Stellard75aadc22012-12-11 21:25:42 +0000916 }
Vincent Lejeune960a6222013-07-19 21:45:06 +0000917}
Tom Stellard75aadc22012-12-11 21:25:42 +0000918
Vincent Lejeune960a6222013-07-19 21:45:06 +0000919int AMDGPUCFGStructurizer::patternMatch(MachineBasicBlock *MBB) {
920 int NumMatch = 0;
921 int CurMatch;
Tom Stellard75aadc22012-12-11 21:25:42 +0000922
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000923 DEBUG(
Vincent Lejeune960a6222013-07-19 21:45:06 +0000924 dbgs() << "Begin patternMatch BB" << MBB->getNumber() << "\n";
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000925 );
Tom Stellard75aadc22012-12-11 21:25:42 +0000926
Vincent Lejeune960a6222013-07-19 21:45:06 +0000927 while ((CurMatch = patternMatchGroup(MBB)) > 0)
928 NumMatch += CurMatch;
Tom Stellard75aadc22012-12-11 21:25:42 +0000929
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000930 DEBUG(
Vincent Lejeune960a6222013-07-19 21:45:06 +0000931 dbgs() << "End patternMatch BB" << MBB->getNumber()
932 << ", numMatch = " << NumMatch << "\n";
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +0000933 );
Tom Stellard75aadc22012-12-11 21:25:42 +0000934
Vincent Lejeune960a6222013-07-19 21:45:06 +0000935 return NumMatch;
936}
Tom Stellard75aadc22012-12-11 21:25:42 +0000937
Vincent Lejeune960a6222013-07-19 21:45:06 +0000938int AMDGPUCFGStructurizer::patternMatchGroup(MachineBasicBlock *MBB) {
939 int NumMatch = 0;
940 NumMatch += loopendPatternMatch();
941 NumMatch += serialPatternMatch(MBB);
942 NumMatch += ifPatternMatch(MBB);
943 return NumMatch;
944}
Tom Stellard75aadc22012-12-11 21:25:42 +0000945
Vincent Lejeune960a6222013-07-19 21:45:06 +0000946int AMDGPUCFGStructurizer::serialPatternMatch(MachineBasicBlock *MBB) {
947 if (MBB->succ_size() != 1)
Tom Stellard75aadc22012-12-11 21:25:42 +0000948 return 0;
Tom Stellard75aadc22012-12-11 21:25:42 +0000949
Vincent Lejeune960a6222013-07-19 21:45:06 +0000950 MachineBasicBlock *childBlk = *MBB->succ_begin();
951 if (childBlk->pred_size() != 1 || isActiveLoophead(childBlk))
Tom Stellard75aadc22012-12-11 21:25:42 +0000952 return 0;
Tom Stellard75aadc22012-12-11 21:25:42 +0000953
Vincent Lejeune960a6222013-07-19 21:45:06 +0000954 mergeSerialBlock(MBB, childBlk);
Tom Stellard75aadc22012-12-11 21:25:42 +0000955 ++numSerialPatternMatch;
956 return 1;
Vincent Lejeune960a6222013-07-19 21:45:06 +0000957}
Tom Stellard75aadc22012-12-11 21:25:42 +0000958
Vincent Lejeune960a6222013-07-19 21:45:06 +0000959int AMDGPUCFGStructurizer::ifPatternMatch(MachineBasicBlock *MBB) {
Tom Stellard75aadc22012-12-11 21:25:42 +0000960 //two edges
Vincent Lejeune960a6222013-07-19 21:45:06 +0000961 if (MBB->succ_size() != 2)
Tom Stellard75aadc22012-12-11 21:25:42 +0000962 return 0;
Vincent Lejeune960a6222013-07-19 21:45:06 +0000963 if (hasBackEdge(MBB))
Tom Stellard75aadc22012-12-11 21:25:42 +0000964 return 0;
Vincent Lejeune960a6222013-07-19 21:45:06 +0000965 MachineInstr *BranchMI = getNormalBlockBranchInstr(MBB);
966 if (!BranchMI)
Tom Stellard75aadc22012-12-11 21:25:42 +0000967 return 0;
Tom Stellard75aadc22012-12-11 21:25:42 +0000968
Vincent Lejeune960a6222013-07-19 21:45:06 +0000969 assert(isCondBranch(BranchMI));
Tom Stellard827ec9b2013-11-18 19:43:38 +0000970 int NumMatch = 0;
Tom Stellard75aadc22012-12-11 21:25:42 +0000971
Vincent Lejeune960a6222013-07-19 21:45:06 +0000972 MachineBasicBlock *TrueMBB = getTrueBranch(BranchMI);
Tom Stellard827ec9b2013-11-18 19:43:38 +0000973 NumMatch += serialPatternMatch(TrueMBB);
974 NumMatch += ifPatternMatch(TrueMBB);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000975 MachineBasicBlock *FalseMBB = getFalseBranch(MBB, BranchMI);
Tom Stellard827ec9b2013-11-18 19:43:38 +0000976 NumMatch += serialPatternMatch(FalseMBB);
977 NumMatch += ifPatternMatch(FalseMBB);
Vincent Lejeune960a6222013-07-19 21:45:06 +0000978 MachineBasicBlock *LandBlk;
979 int Cloned = 0;
Tom Stellard75aadc22012-12-11 21:25:42 +0000980
Vincent Lejeune960a6222013-07-19 21:45:06 +0000981 assert (!TrueMBB->succ_empty() || !FalseMBB->succ_empty());
Tom Stellard75aadc22012-12-11 21:25:42 +0000982 // TODO: Simplify
Vincent Lejeune960a6222013-07-19 21:45:06 +0000983 if (TrueMBB->succ_size() == 1 && FalseMBB->succ_size() == 1
984 && *TrueMBB->succ_begin() == *FalseMBB->succ_begin()) {
985 // Diamond pattern
986 LandBlk = *TrueMBB->succ_begin();
987 } else if (TrueMBB->succ_size() == 1 && *TrueMBB->succ_begin() == FalseMBB) {
988 // Triangle pattern, false is empty
989 LandBlk = FalseMBB;
Craig Topper062a2ba2014-04-25 05:30:21 +0000990 FalseMBB = nullptr;
Vincent Lejeune960a6222013-07-19 21:45:06 +0000991 } else if (FalseMBB->succ_size() == 1
992 && *FalseMBB->succ_begin() == TrueMBB) {
993 // Triangle pattern, true is empty
Vincent Lejeune8b8a7b52013-07-19 21:45:15 +0000994 // We reverse the predicate to make a triangle, empty false pattern;
995 std::swap(TrueMBB, FalseMBB);
Hans Wennborg0dd9ed12016-08-13 01:12:49 +0000996 reversePredicateSetter(MBB->end(), *MBB);
Vincent Lejeune8b8a7b52013-07-19 21:45:15 +0000997 LandBlk = FalseMBB;
Craig Topper062a2ba2014-04-25 05:30:21 +0000998 FalseMBB = nullptr;
Vincent Lejeune960a6222013-07-19 21:45:06 +0000999 } else if (FalseMBB->succ_size() == 1
1000 && isSameloopDetachedContbreak(TrueMBB, FalseMBB)) {
1001 LandBlk = *FalseMBB->succ_begin();
1002 } else if (TrueMBB->succ_size() == 1
1003 && isSameloopDetachedContbreak(FalseMBB, TrueMBB)) {
1004 LandBlk = *TrueMBB->succ_begin();
Tom Stellard75aadc22012-12-11 21:25:42 +00001005 } else {
Tom Stellard827ec9b2013-11-18 19:43:38 +00001006 return NumMatch + handleJumpintoIf(MBB, TrueMBB, FalseMBB);
Tom Stellard75aadc22012-12-11 21:25:42 +00001007 }
1008
1009 // improveSimpleJumpinfoIf can handle the case where landBlk == NULL but the
1010 // new BB created for landBlk==NULL may introduce new challenge to the
1011 // reduction process.
Vincent Lejeune960a6222013-07-19 21:45:06 +00001012 if (LandBlk &&
1013 ((TrueMBB && TrueMBB->pred_size() > 1)
1014 || (FalseMBB && FalseMBB->pred_size() > 1))) {
1015 Cloned += improveSimpleJumpintoIf(MBB, TrueMBB, FalseMBB, &LandBlk);
Tom Stellard75aadc22012-12-11 21:25:42 +00001016 }
1017
Vincent Lejeune960a6222013-07-19 21:45:06 +00001018 if (TrueMBB && TrueMBB->pred_size() > 1) {
1019 TrueMBB = cloneBlockForPredecessor(TrueMBB, MBB);
1020 ++Cloned;
Tom Stellard75aadc22012-12-11 21:25:42 +00001021 }
1022
Vincent Lejeune960a6222013-07-19 21:45:06 +00001023 if (FalseMBB && FalseMBB->pred_size() > 1) {
1024 FalseMBB = cloneBlockForPredecessor(FalseMBB, MBB);
1025 ++Cloned;
Tom Stellard75aadc22012-12-11 21:25:42 +00001026 }
1027
Vincent Lejeune960a6222013-07-19 21:45:06 +00001028 mergeIfthenelseBlock(BranchMI, MBB, TrueMBB, FalseMBB, LandBlk);
Tom Stellard75aadc22012-12-11 21:25:42 +00001029
1030 ++numIfPatternMatch;
1031
Vincent Lejeune960a6222013-07-19 21:45:06 +00001032 numClonedBlock += Cloned;
Tom Stellard75aadc22012-12-11 21:25:42 +00001033
Tom Stellard827ec9b2013-11-18 19:43:38 +00001034 return 1 + Cloned + NumMatch;
Vincent Lejeune960a6222013-07-19 21:45:06 +00001035}
Tom Stellard75aadc22012-12-11 21:25:42 +00001036
Vincent Lejeune960a6222013-07-19 21:45:06 +00001037int AMDGPUCFGStructurizer::loopendPatternMatch() {
Jan Vesely18b289f2015-03-13 17:32:43 +00001038 std::deque<MachineLoop *> NestedLoops;
1039 for (auto &It: *MLI)
1040 for (MachineLoop *ML : depth_first(It))
1041 NestedLoops.push_front(ML);
David Blaikieceec2bd2014-04-11 01:50:01 +00001042
Eugene Zelenko66203762017-01-21 00:53:49 +00001043 if (NestedLoops.empty())
Tom Stellard75aadc22012-12-11 21:25:42 +00001044 return 0;
Tom Stellard75aadc22012-12-11 21:25:42 +00001045
Jan Vesely18b289f2015-03-13 17:32:43 +00001046 // Process nested loop outside->inside (we did push_front),
1047 // so "continue" to a outside loop won't be mistaken as "break"
1048 // of the current loop.
Vincent Lejeune960a6222013-07-19 21:45:06 +00001049 int Num = 0;
Jan Vesely18b289f2015-03-13 17:32:43 +00001050 for (MachineLoop *ExaminedLoop : NestedLoops) {
Vincent Lejeune960a6222013-07-19 21:45:06 +00001051 if (ExaminedLoop->getNumBlocks() == 0 || Visited[ExaminedLoop])
Tom Stellard75aadc22012-12-11 21:25:42 +00001052 continue;
Vincent Lejeune960a6222013-07-19 21:45:06 +00001053 DEBUG(dbgs() << "Processing:\n"; ExaminedLoop->dump(););
1054 int NumBreak = mergeLoop(ExaminedLoop);
1055 if (NumBreak == -1)
Tom Stellard75aadc22012-12-11 21:25:42 +00001056 break;
Vincent Lejeune960a6222013-07-19 21:45:06 +00001057 Num += NumBreak;
1058 }
1059 return Num;
1060}
Tom Stellard75aadc22012-12-11 21:25:42 +00001061
Vincent Lejeune960a6222013-07-19 21:45:06 +00001062int AMDGPUCFGStructurizer::mergeLoop(MachineLoop *LoopRep) {
1063 MachineBasicBlock *LoopHeader = LoopRep->getHeader();
1064 MBBVector ExitingMBBs;
1065 LoopRep->getExitingBlocks(ExitingMBBs);
1066 assert(!ExitingMBBs.empty() && "Infinite Loop not supported");
1067 DEBUG(dbgs() << "Loop has " << ExitingMBBs.size() << " exiting blocks\n";);
1068 // We assume a single ExitBlk
1069 MBBVector ExitBlks;
1070 LoopRep->getExitBlocks(ExitBlks);
1071 SmallPtrSet<MachineBasicBlock *, 2> ExitBlkSet;
1072 for (unsigned i = 0, e = ExitBlks.size(); i < e; ++i)
1073 ExitBlkSet.insert(ExitBlks[i]);
1074 assert(ExitBlkSet.size() == 1);
1075 MachineBasicBlock *ExitBlk = *ExitBlks.begin();
1076 assert(ExitBlk && "Loop has several exit block");
1077 MBBVector LatchBlks;
Daniel Berlin73ad5cb2017-02-09 20:37:46 +00001078 for (auto *LB : inverse_children<MachineBasicBlock*>(LoopHeader))
Daniel Berlin58a6e572017-02-09 20:37:24 +00001079 if (LoopRep->contains(LB))
1080 LatchBlks.push_back(LB);
Tom Stellard75aadc22012-12-11 21:25:42 +00001081
Vincent Lejeune960a6222013-07-19 21:45:06 +00001082 for (unsigned i = 0, e = ExitingMBBs.size(); i < e; ++i)
1083 mergeLoopbreakBlock(ExitingMBBs[i], ExitBlk);
1084 for (unsigned i = 0, e = LatchBlks.size(); i < e; ++i)
1085 settleLoopcontBlock(LatchBlks[i], LoopHeader);
1086 int Match = 0;
1087 do {
1088 Match = 0;
1089 Match += serialPatternMatch(LoopHeader);
1090 Match += ifPatternMatch(LoopHeader);
1091 } while (Match > 0);
1092 mergeLooplandBlock(LoopHeader, ExitBlk);
1093 MachineLoop *ParentLoop = LoopRep->getParentLoop();
1094 if (ParentLoop)
1095 MLI->changeLoopFor(LoopHeader, ParentLoop);
1096 else
1097 MLI->removeBlock(LoopHeader);
1098 Visited[LoopRep] = true;
1099 return 1;
1100}
Tom Stellard75aadc22012-12-11 21:25:42 +00001101
Vincent Lejeune960a6222013-07-19 21:45:06 +00001102bool AMDGPUCFGStructurizer::isSameloopDetachedContbreak(
1103 MachineBasicBlock *Src1MBB, MachineBasicBlock *Src2MBB) {
1104 if (Src1MBB->succ_size() == 0) {
1105 MachineLoop *LoopRep = MLI->getLoopFor(Src1MBB);
1106 if (LoopRep&& LoopRep == MLI->getLoopFor(Src2MBB)) {
1107 MachineBasicBlock *&TheEntry = LLInfoMap[LoopRep];
1108 if (TheEntry) {
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001109 DEBUG(
1110 dbgs() << "isLoopContBreakBlock yes src1 = BB"
Vincent Lejeune960a6222013-07-19 21:45:06 +00001111 << Src1MBB->getNumber()
1112 << " src2 = BB" << Src2MBB->getNumber() << "\n";
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001113 );
Tom Stellard75aadc22012-12-11 21:25:42 +00001114 return true;
1115 }
1116 }
1117 }
1118 return false;
Vincent Lejeune960a6222013-07-19 21:45:06 +00001119}
Tom Stellard75aadc22012-12-11 21:25:42 +00001120
Vincent Lejeune960a6222013-07-19 21:45:06 +00001121int AMDGPUCFGStructurizer::handleJumpintoIf(MachineBasicBlock *HeadMBB,
1122 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB) {
1123 int Num = handleJumpintoIfImp(HeadMBB, TrueMBB, FalseMBB);
1124 if (Num == 0) {
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001125 DEBUG(
1126 dbgs() << "handleJumpintoIf swap trueBlk and FalseBlk" << "\n";
1127 );
Vincent Lejeune960a6222013-07-19 21:45:06 +00001128 Num = handleJumpintoIfImp(HeadMBB, FalseMBB, TrueMBB);
Tom Stellard75aadc22012-12-11 21:25:42 +00001129 }
Vincent Lejeune960a6222013-07-19 21:45:06 +00001130 return Num;
Tom Stellard75aadc22012-12-11 21:25:42 +00001131}
1132
Vincent Lejeune960a6222013-07-19 21:45:06 +00001133int AMDGPUCFGStructurizer::handleJumpintoIfImp(MachineBasicBlock *HeadMBB,
1134 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB) {
1135 int Num = 0;
1136 MachineBasicBlock *DownBlk;
Tom Stellard75aadc22012-12-11 21:25:42 +00001137
1138 //trueBlk could be the common post dominator
Vincent Lejeune960a6222013-07-19 21:45:06 +00001139 DownBlk = TrueMBB;
Tom Stellard75aadc22012-12-11 21:25:42 +00001140
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001141 DEBUG(
Vincent Lejeune960a6222013-07-19 21:45:06 +00001142 dbgs() << "handleJumpintoIfImp head = BB" << HeadMBB->getNumber()
1143 << " true = BB" << TrueMBB->getNumber()
1144 << ", numSucc=" << TrueMBB->succ_size()
1145 << " false = BB" << FalseMBB->getNumber() << "\n";
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001146 );
Tom Stellard75aadc22012-12-11 21:25:42 +00001147
Vincent Lejeune960a6222013-07-19 21:45:06 +00001148 while (DownBlk) {
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001149 DEBUG(
Vincent Lejeune960a6222013-07-19 21:45:06 +00001150 dbgs() << "check down = BB" << DownBlk->getNumber();
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001151 );
Tom Stellard75aadc22012-12-11 21:25:42 +00001152
Vincent Lejeune960a6222013-07-19 21:45:06 +00001153 if (singlePathTo(FalseMBB, DownBlk) == SinglePath_InPath) {
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001154 DEBUG(
1155 dbgs() << " working\n";
1156 );
Tom Stellard75aadc22012-12-11 21:25:42 +00001157
Vincent Lejeune960a6222013-07-19 21:45:06 +00001158 Num += cloneOnSideEntryTo(HeadMBB, TrueMBB, DownBlk);
1159 Num += cloneOnSideEntryTo(HeadMBB, FalseMBB, DownBlk);
Tom Stellard75aadc22012-12-11 21:25:42 +00001160
Vincent Lejeune960a6222013-07-19 21:45:06 +00001161 numClonedBlock += Num;
1162 Num += serialPatternMatch(*HeadMBB->succ_begin());
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001163 Num += serialPatternMatch(*std::next(HeadMBB->succ_begin()));
Vincent Lejeune960a6222013-07-19 21:45:06 +00001164 Num += ifPatternMatch(HeadMBB);
1165 assert(Num > 0);
Tom Stellard75aadc22012-12-11 21:25:42 +00001166
1167 break;
1168 }
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001169 DEBUG(
1170 dbgs() << " not working\n";
1171 );
Craig Topper062a2ba2014-04-25 05:30:21 +00001172 DownBlk = (DownBlk->succ_size() == 1) ? (*DownBlk->succ_begin()) : nullptr;
Tom Stellard75aadc22012-12-11 21:25:42 +00001173 } // walk down the postDomTree
1174
Vincent Lejeune960a6222013-07-19 21:45:06 +00001175 return Num;
1176}
Tom Stellard75aadc22012-12-11 21:25:42 +00001177
Florian Hahn6b3216a2017-07-31 10:07:49 +00001178#ifndef NDEBUG
Vincent Lejeune960a6222013-07-19 21:45:06 +00001179void AMDGPUCFGStructurizer::showImproveSimpleJumpintoIf(
1180 MachineBasicBlock *HeadMBB, MachineBasicBlock *TrueMBB,
1181 MachineBasicBlock *FalseMBB, MachineBasicBlock *LandMBB, bool Detail) {
1182 dbgs() << "head = BB" << HeadMBB->getNumber()
1183 << " size = " << HeadMBB->size();
1184 if (Detail) {
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001185 dbgs() << "\n";
Vincent Lejeune960a6222013-07-19 21:45:06 +00001186 HeadMBB->print(dbgs());
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001187 dbgs() << "\n";
Tom Stellard75aadc22012-12-11 21:25:42 +00001188 }
1189
Vincent Lejeune960a6222013-07-19 21:45:06 +00001190 if (TrueMBB) {
1191 dbgs() << ", true = BB" << TrueMBB->getNumber() << " size = "
1192 << TrueMBB->size() << " numPred = " << TrueMBB->pred_size();
1193 if (Detail) {
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001194 dbgs() << "\n";
Vincent Lejeune960a6222013-07-19 21:45:06 +00001195 TrueMBB->print(dbgs());
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001196 dbgs() << "\n";
Tom Stellard75aadc22012-12-11 21:25:42 +00001197 }
1198 }
Vincent Lejeune960a6222013-07-19 21:45:06 +00001199 if (FalseMBB) {
1200 dbgs() << ", false = BB" << FalseMBB->getNumber() << " size = "
1201 << FalseMBB->size() << " numPred = " << FalseMBB->pred_size();
1202 if (Detail) {
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001203 dbgs() << "\n";
Vincent Lejeune960a6222013-07-19 21:45:06 +00001204 FalseMBB->print(dbgs());
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001205 dbgs() << "\n";
Tom Stellard75aadc22012-12-11 21:25:42 +00001206 }
1207 }
Vincent Lejeune960a6222013-07-19 21:45:06 +00001208 if (LandMBB) {
1209 dbgs() << ", land = BB" << LandMBB->getNumber() << " size = "
1210 << LandMBB->size() << " numPred = " << LandMBB->pred_size();
1211 if (Detail) {
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001212 dbgs() << "\n";
Vincent Lejeune960a6222013-07-19 21:45:06 +00001213 LandMBB->print(dbgs());
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001214 dbgs() << "\n";
Tom Stellard75aadc22012-12-11 21:25:42 +00001215 }
1216 }
1217
Eugene Zelenko66203762017-01-21 00:53:49 +00001218 dbgs() << "\n";
Vincent Lejeune960a6222013-07-19 21:45:06 +00001219}
Florian Hahn6b3216a2017-07-31 10:07:49 +00001220#endif
Tom Stellard75aadc22012-12-11 21:25:42 +00001221
Vincent Lejeune960a6222013-07-19 21:45:06 +00001222int AMDGPUCFGStructurizer::improveSimpleJumpintoIf(MachineBasicBlock *HeadMBB,
1223 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB,
1224 MachineBasicBlock **LandMBBPtr) {
1225 bool MigrateTrue = false;
1226 bool MigrateFalse = false;
Tom Stellard75aadc22012-12-11 21:25:42 +00001227
Vincent Lejeune960a6222013-07-19 21:45:06 +00001228 MachineBasicBlock *LandBlk = *LandMBBPtr;
Tom Stellard75aadc22012-12-11 21:25:42 +00001229
Vincent Lejeune960a6222013-07-19 21:45:06 +00001230 assert((!TrueMBB || TrueMBB->succ_size() <= 1)
1231 && (!FalseMBB || FalseMBB->succ_size() <= 1));
Tom Stellard75aadc22012-12-11 21:25:42 +00001232
Vincent Lejeune960a6222013-07-19 21:45:06 +00001233 if (TrueMBB == FalseMBB)
Tom Stellard75aadc22012-12-11 21:25:42 +00001234 return 0;
Tom Stellard75aadc22012-12-11 21:25:42 +00001235
Vincent Lejeune960a6222013-07-19 21:45:06 +00001236 MigrateTrue = needMigrateBlock(TrueMBB);
1237 MigrateFalse = needMigrateBlock(FalseMBB);
Tom Stellard75aadc22012-12-11 21:25:42 +00001238
Vincent Lejeune960a6222013-07-19 21:45:06 +00001239 if (!MigrateTrue && !MigrateFalse)
Tom Stellard75aadc22012-12-11 21:25:42 +00001240 return 0;
Tom Stellard75aadc22012-12-11 21:25:42 +00001241
1242 // If we need to migrate either trueBlk and falseBlk, migrate the rest that
1243 // have more than one predecessors. without doing this, its predecessor
1244 // rather than headBlk will have undefined value in initReg.
Vincent Lejeune960a6222013-07-19 21:45:06 +00001245 if (!MigrateTrue && TrueMBB && TrueMBB->pred_size() > 1)
1246 MigrateTrue = true;
1247 if (!MigrateFalse && FalseMBB && FalseMBB->pred_size() > 1)
1248 MigrateFalse = true;
Tom Stellard75aadc22012-12-11 21:25:42 +00001249
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001250 DEBUG(
1251 dbgs() << "before improveSimpleJumpintoIf: ";
Vincent Lejeune960a6222013-07-19 21:45:06 +00001252 showImproveSimpleJumpintoIf(HeadMBB, TrueMBB, FalseMBB, LandBlk, 0);
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001253 );
Tom Stellard75aadc22012-12-11 21:25:42 +00001254
1255 // org: headBlk => if () {trueBlk} else {falseBlk} => landBlk
1256 //
1257 // new: headBlk => if () {initReg = 1; org trueBlk branch} else
1258 // {initReg = 0; org falseBlk branch }
1259 // => landBlk => if (initReg) {org trueBlk} else {org falseBlk}
1260 // => org landBlk
1261 // if landBlk->pred_size() > 2, put the about if-else inside
1262 // if (initReg !=2) {...}
1263 //
1264 // add initReg = initVal to headBlk
1265
1266 const TargetRegisterClass * I32RC = TRI->getCFGStructurizerRegClass(MVT::i32);
Tom Stellardb34186a2013-10-16 17:06:02 +00001267 if (!MigrateTrue || !MigrateFalse) {
1268 // XXX: We have an opportunity here to optimize the "branch into if" case
1269 // here. Branch into if looks like this:
1270 // entry
Benjamin Kramera9fe95b2013-10-18 14:12:50 +00001271 // / |
Tom Stellardb34186a2013-10-16 17:06:02 +00001272 // diamond_head branch_from
1273 // / \ |
1274 // diamond_false diamond_true
1275 // \ /
1276 // done
1277 //
1278 // The diamond_head block begins the "if" and the diamond_true block
1279 // is the block being "branched into".
1280 //
1281 // If MigrateTrue is true, then TrueBB is the block being "branched into"
1282 // and if MigrateFalse is true, then FalseBB is the block being
1283 // "branched into"
Matt Arsenaulte0b44042015-09-10 21:51:19 +00001284 //
Tom Stellardb34186a2013-10-16 17:06:02 +00001285 // Here is the pseudo code for how I think the optimization should work:
1286 // 1. Insert MOV GPR0, 0 before the branch instruction in diamond_head.
1287 // 2. Insert MOV GPR0, 1 before the branch instruction in branch_from.
1288 // 3. Move the branch instruction from diamond_head into its own basic
1289 // block (new_block).
1290 // 4. Add an unconditional branch from diamond_head to new_block
1291 // 5. Replace the branch instruction in branch_from with an unconditional
1292 // branch to new_block. If branch_from has multiple predecessors, then
1293 // we need to replace the True/False block in the branch
1294 // instruction instead of replacing it.
1295 // 6. Change the condition of the branch instruction in new_block from
1296 // COND to (COND || GPR0)
1297 //
1298 // In order insert these MOV instruction, we will need to use the
1299 // RegisterScavenger. Usually liveness stops being tracked during
1300 // the late machine optimization passes, however if we implement
1301 // bool TargetRegisterInfo::requiresRegisterScavenging(
1302 // const MachineFunction &MF)
Matt Arsenaulte0b44042015-09-10 21:51:19 +00001303 // and have it return true, liveness will be tracked correctly
Tom Stellardb34186a2013-10-16 17:06:02 +00001304 // by generic optimization passes. We will also need to make sure that
1305 // all of our target-specific passes that run after regalloc and before
1306 // the CFGStructurizer track liveness and we will need to modify this pass
1307 // to correctly track liveness.
1308 //
1309 // After the above changes, the new CFG should look like this:
1310 // entry
Benjamin Kramera9fe95b2013-10-18 14:12:50 +00001311 // / |
Tom Stellardb34186a2013-10-16 17:06:02 +00001312 // diamond_head branch_from
1313 // \ /
1314 // new_block
Benjamin Kramera9fe95b2013-10-18 14:12:50 +00001315 // / |
Tom Stellardb34186a2013-10-16 17:06:02 +00001316 // diamond_false diamond_true
1317 // \ /
1318 // done
1319 //
1320 // Without this optimization, we are forced to duplicate the diamond_true
1321 // block and we will end up with a CFG like this:
1322 //
1323 // entry
Benjamin Kramera9fe95b2013-10-18 14:12:50 +00001324 // / |
Tom Stellardb34186a2013-10-16 17:06:02 +00001325 // diamond_head branch_from
1326 // / \ |
1327 // diamond_false diamond_true diamond_true (duplicate)
1328 // \ / |
1329 // done --------------------|
1330 //
1331 // Duplicating diamond_true can be very costly especially if it has a
1332 // lot of instructions.
1333 return 0;
1334 }
Tom Stellard75aadc22012-12-11 21:25:42 +00001335
Vincent Lejeune960a6222013-07-19 21:45:06 +00001336 int NumNewBlk = 0;
Tom Stellard75aadc22012-12-11 21:25:42 +00001337
Vincent Lejeune960a6222013-07-19 21:45:06 +00001338 bool LandBlkHasOtherPred = (LandBlk->pred_size() > 2);
Tom Stellard75aadc22012-12-11 21:25:42 +00001339
1340 //insert AMDGPU::ENDIF to avoid special case "input landBlk == NULL"
Vincent Lejeune960a6222013-07-19 21:45:06 +00001341 MachineBasicBlock::iterator I = insertInstrBefore(LandBlk, AMDGPU::ENDIF);
Tom Stellard75aadc22012-12-11 21:25:42 +00001342
Vincent Lejeune960a6222013-07-19 21:45:06 +00001343 if (LandBlkHasOtherPred) {
Matt Arsenault5de68cb2016-03-02 03:33:55 +00001344 report_fatal_error("Extra register needed to handle CFG");
Vincent Lejeune960a6222013-07-19 21:45:06 +00001345 unsigned CmpResReg =
1346 HeadMBB->getParent()->getRegInfo().createVirtualRegister(I32RC);
Matt Arsenault5de68cb2016-03-02 03:33:55 +00001347 report_fatal_error("Extra compare instruction needed to handle CFG");
Vincent Lejeune960a6222013-07-19 21:45:06 +00001348 insertCondBranchBefore(LandBlk, I, AMDGPU::IF_PREDICATE_SET,
1349 CmpResReg, DebugLoc());
Tom Stellard75aadc22012-12-11 21:25:42 +00001350 }
1351
Tom Stellard69f86d12013-10-16 17:05:56 +00001352 // XXX: We are running this after RA, so creating virtual registers will
1353 // cause an assertion failure in the PostRA scheduling pass.
1354 unsigned InitReg =
1355 HeadMBB->getParent()->getRegInfo().createVirtualRegister(I32RC);
Vincent Lejeune960a6222013-07-19 21:45:06 +00001356 insertCondBranchBefore(LandBlk, I, AMDGPU::IF_PREDICATE_SET, InitReg,
1357 DebugLoc());
Tom Stellard75aadc22012-12-11 21:25:42 +00001358
Vincent Lejeune960a6222013-07-19 21:45:06 +00001359 if (MigrateTrue) {
1360 migrateInstruction(TrueMBB, LandBlk, I);
Tom Stellard75aadc22012-12-11 21:25:42 +00001361 // need to uncondionally insert the assignment to ensure a path from its
1362 // predecessor rather than headBlk has valid value in initReg if
1363 // (initVal != 1).
Matt Arsenault5de68cb2016-03-02 03:33:55 +00001364 report_fatal_error("Extra register needed to handle CFG");
Tom Stellard75aadc22012-12-11 21:25:42 +00001365 }
Vincent Lejeune960a6222013-07-19 21:45:06 +00001366 insertInstrBefore(I, AMDGPU::ELSE);
Tom Stellard75aadc22012-12-11 21:25:42 +00001367
Vincent Lejeune960a6222013-07-19 21:45:06 +00001368 if (MigrateFalse) {
1369 migrateInstruction(FalseMBB, LandBlk, I);
Tom Stellard75aadc22012-12-11 21:25:42 +00001370 // need to uncondionally insert the assignment to ensure a path from its
1371 // predecessor rather than headBlk has valid value in initReg if
1372 // (initVal != 0)
Matt Arsenault5de68cb2016-03-02 03:33:55 +00001373 report_fatal_error("Extra register needed to handle CFG");
Tom Stellard75aadc22012-12-11 21:25:42 +00001374 }
1375
Vincent Lejeune960a6222013-07-19 21:45:06 +00001376 if (LandBlkHasOtherPred) {
Tom Stellard75aadc22012-12-11 21:25:42 +00001377 // add endif
Vincent Lejeune960a6222013-07-19 21:45:06 +00001378 insertInstrBefore(I, AMDGPU::ENDIF);
Tom Stellard75aadc22012-12-11 21:25:42 +00001379
1380 // put initReg = 2 to other predecessors of landBlk
Vincent Lejeune960a6222013-07-19 21:45:06 +00001381 for (MachineBasicBlock::pred_iterator PI = LandBlk->pred_begin(),
1382 PE = LandBlk->pred_end(); PI != PE; ++PI) {
1383 MachineBasicBlock *MBB = *PI;
1384 if (MBB != TrueMBB && MBB != FalseMBB)
Matt Arsenault5de68cb2016-03-02 03:33:55 +00001385 report_fatal_error("Extra register needed to handle CFG");
Vincent Lejeune960a6222013-07-19 21:45:06 +00001386 }
Tom Stellard75aadc22012-12-11 21:25:42 +00001387 }
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001388 DEBUG(
1389 dbgs() << "result from improveSimpleJumpintoIf: ";
Vincent Lejeune960a6222013-07-19 21:45:06 +00001390 showImproveSimpleJumpintoIf(HeadMBB, TrueMBB, FalseMBB, LandBlk, 0);
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001391 );
Tom Stellard75aadc22012-12-11 21:25:42 +00001392
1393 // update landBlk
Vincent Lejeune960a6222013-07-19 21:45:06 +00001394 *LandMBBPtr = LandBlk;
Tom Stellard75aadc22012-12-11 21:25:42 +00001395
Vincent Lejeune960a6222013-07-19 21:45:06 +00001396 return NumNewBlk;
1397}
Tom Stellard75aadc22012-12-11 21:25:42 +00001398
Vincent Lejeune960a6222013-07-19 21:45:06 +00001399void AMDGPUCFGStructurizer::mergeSerialBlock(MachineBasicBlock *DstMBB,
1400 MachineBasicBlock *SrcMBB) {
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001401 DEBUG(
Vincent Lejeune960a6222013-07-19 21:45:06 +00001402 dbgs() << "serialPattern BB" << DstMBB->getNumber()
1403 << " <= BB" << SrcMBB->getNumber() << "\n";
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001404 );
Vincent Lejeune960a6222013-07-19 21:45:06 +00001405 DstMBB->splice(DstMBB->end(), SrcMBB, SrcMBB->begin(), SrcMBB->end());
Tom Stellard75aadc22012-12-11 21:25:42 +00001406
Cong Houc1069892015-12-13 09:26:17 +00001407 DstMBB->removeSuccessor(SrcMBB, true);
Vincent Lejeune960a6222013-07-19 21:45:06 +00001408 cloneSuccessorList(DstMBB, SrcMBB);
Tom Stellard75aadc22012-12-11 21:25:42 +00001409
Vincent Lejeune960a6222013-07-19 21:45:06 +00001410 removeSuccessor(SrcMBB);
1411 MLI->removeBlock(SrcMBB);
1412 retireBlock(SrcMBB);
1413}
Tom Stellard75aadc22012-12-11 21:25:42 +00001414
Vincent Lejeune960a6222013-07-19 21:45:06 +00001415void AMDGPUCFGStructurizer::mergeIfthenelseBlock(MachineInstr *BranchMI,
1416 MachineBasicBlock *MBB, MachineBasicBlock *TrueMBB,
1417 MachineBasicBlock *FalseMBB, MachineBasicBlock *LandMBB) {
Vincent Lejeune8b8a7b52013-07-19 21:45:15 +00001418 assert (TrueMBB);
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001419 DEBUG(
Vincent Lejeune960a6222013-07-19 21:45:06 +00001420 dbgs() << "ifPattern BB" << MBB->getNumber();
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001421 dbgs() << "{ ";
Vincent Lejeune960a6222013-07-19 21:45:06 +00001422 if (TrueMBB) {
1423 dbgs() << "BB" << TrueMBB->getNumber();
Tom Stellard75aadc22012-12-11 21:25:42 +00001424 }
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001425 dbgs() << " } else ";
1426 dbgs() << "{ ";
Vincent Lejeune960a6222013-07-19 21:45:06 +00001427 if (FalseMBB) {
1428 dbgs() << "BB" << FalseMBB->getNumber();
Tom Stellard75aadc22012-12-11 21:25:42 +00001429 }
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001430 dbgs() << " }\n ";
1431 dbgs() << "landBlock: ";
Vincent Lejeune960a6222013-07-19 21:45:06 +00001432 if (!LandMBB) {
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001433 dbgs() << "NULL";
Tom Stellard75aadc22012-12-11 21:25:42 +00001434 } else {
Vincent Lejeune960a6222013-07-19 21:45:06 +00001435 dbgs() << "BB" << LandMBB->getNumber();
Tom Stellard75aadc22012-12-11 21:25:42 +00001436 }
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001437 dbgs() << "\n";
1438 );
Tom Stellard75aadc22012-12-11 21:25:42 +00001439
Vincent Lejeune960a6222013-07-19 21:45:06 +00001440 int OldOpcode = BranchMI->getOpcode();
1441 DebugLoc BranchDL = BranchMI->getDebugLoc();
Tom Stellard75aadc22012-12-11 21:25:42 +00001442
1443// transform to
1444// if cond
1445// trueBlk
1446// else
1447// falseBlk
1448// endif
1449// landBlk
1450
Vincent Lejeune960a6222013-07-19 21:45:06 +00001451 MachineBasicBlock::iterator I = BranchMI;
1452 insertCondBranchBefore(I, getBranchNzeroOpcode(OldOpcode),
1453 BranchDL);
Tom Stellard75aadc22012-12-11 21:25:42 +00001454
Vincent Lejeune960a6222013-07-19 21:45:06 +00001455 if (TrueMBB) {
1456 MBB->splice(I, TrueMBB, TrueMBB->begin(), TrueMBB->end());
Cong Houc1069892015-12-13 09:26:17 +00001457 MBB->removeSuccessor(TrueMBB, true);
Vincent Lejeune960a6222013-07-19 21:45:06 +00001458 if (LandMBB && TrueMBB->succ_size()!=0)
Cong Houc1069892015-12-13 09:26:17 +00001459 TrueMBB->removeSuccessor(LandMBB, true);
Vincent Lejeune960a6222013-07-19 21:45:06 +00001460 retireBlock(TrueMBB);
1461 MLI->removeBlock(TrueMBB);
Tom Stellard75aadc22012-12-11 21:25:42 +00001462 }
1463
Vincent Lejeune960a6222013-07-19 21:45:06 +00001464 if (FalseMBB) {
1465 insertInstrBefore(I, AMDGPU::ELSE);
1466 MBB->splice(I, FalseMBB, FalseMBB->begin(),
1467 FalseMBB->end());
Cong Houc1069892015-12-13 09:26:17 +00001468 MBB->removeSuccessor(FalseMBB, true);
Vincent Lejeune960a6222013-07-19 21:45:06 +00001469 if (LandMBB && FalseMBB->succ_size() != 0)
Cong Houc1069892015-12-13 09:26:17 +00001470 FalseMBB->removeSuccessor(LandMBB, true);
Vincent Lejeune960a6222013-07-19 21:45:06 +00001471 retireBlock(FalseMBB);
1472 MLI->removeBlock(FalseMBB);
Tom Stellard75aadc22012-12-11 21:25:42 +00001473 }
Vincent Lejeune960a6222013-07-19 21:45:06 +00001474 insertInstrBefore(I, AMDGPU::ENDIF);
1475
1476 BranchMI->eraseFromParent();
1477
1478 if (LandMBB && TrueMBB && FalseMBB)
1479 MBB->addSuccessor(LandMBB);
Vincent Lejeune960a6222013-07-19 21:45:06 +00001480}
1481
1482void AMDGPUCFGStructurizer::mergeLooplandBlock(MachineBasicBlock *DstBlk,
1483 MachineBasicBlock *LandMBB) {
1484 DEBUG(dbgs() << "loopPattern header = BB" << DstBlk->getNumber()
1485 << " land = BB" << LandMBB->getNumber() << "\n";);
Tom Stellard75aadc22012-12-11 21:25:42 +00001486
Vincent Lejeune0c5ed2b2013-07-31 19:31:14 +00001487 insertInstrBefore(DstBlk, AMDGPU::WHILELOOP, DebugLoc());
1488 insertInstrEnd(DstBlk, AMDGPU::ENDLOOP, DebugLoc());
Cong Houd97c1002015-12-01 05:29:22 +00001489 DstBlk->replaceSuccessor(DstBlk, LandMBB);
Vincent Lejeune960a6222013-07-19 21:45:06 +00001490}
Tom Stellard75aadc22012-12-11 21:25:42 +00001491
Vincent Lejeune960a6222013-07-19 21:45:06 +00001492void AMDGPUCFGStructurizer::mergeLoopbreakBlock(MachineBasicBlock *ExitingMBB,
1493 MachineBasicBlock *LandMBB) {
1494 DEBUG(dbgs() << "loopbreakPattern exiting = BB" << ExitingMBB->getNumber()
1495 << " land = BB" << LandMBB->getNumber() << "\n";);
1496 MachineInstr *BranchMI = getLoopendBlockBranchInstr(ExitingMBB);
1497 assert(BranchMI && isCondBranch(BranchMI));
1498 DebugLoc DL = BranchMI->getDebugLoc();
1499 MachineBasicBlock *TrueBranch = getTrueBranch(BranchMI);
1500 MachineBasicBlock::iterator I = BranchMI;
1501 if (TrueBranch != LandMBB)
Hans Wennborg0dd9ed12016-08-13 01:12:49 +00001502 reversePredicateSetter(I, *I->getParent());
Vincent Lejeune0c5ed2b2013-07-31 19:31:14 +00001503 insertCondBranchBefore(ExitingMBB, I, AMDGPU::IF_PREDICATE_SET, AMDGPU::PREDICATE_BIT, DL);
1504 insertInstrBefore(I, AMDGPU::BREAK);
1505 insertInstrBefore(I, AMDGPU::ENDIF);
Vincent Lejeune960a6222013-07-19 21:45:06 +00001506 //now branchInst can be erase safely
1507 BranchMI->eraseFromParent();
1508 //now take care of successors, retire blocks
Cong Houc1069892015-12-13 09:26:17 +00001509 ExitingMBB->removeSuccessor(LandMBB, true);
Vincent Lejeune960a6222013-07-19 21:45:06 +00001510}
Tom Stellard75aadc22012-12-11 21:25:42 +00001511
Vincent Lejeune960a6222013-07-19 21:45:06 +00001512void AMDGPUCFGStructurizer::settleLoopcontBlock(MachineBasicBlock *ContingMBB,
1513 MachineBasicBlock *ContMBB) {
1514 DEBUG(dbgs() << "settleLoopcontBlock conting = BB"
1515 << ContingMBB->getNumber()
1516 << ", cont = BB" << ContMBB->getNumber() << "\n";);
Tom Stellard75aadc22012-12-11 21:25:42 +00001517
Vincent Lejeune960a6222013-07-19 21:45:06 +00001518 MachineInstr *MI = getLoopendBlockBranchInstr(ContingMBB);
1519 if (MI) {
1520 assert(isCondBranch(MI));
1521 MachineBasicBlock::iterator I = MI;
1522 MachineBasicBlock *TrueBranch = getTrueBranch(MI);
1523 int OldOpcode = MI->getOpcode();
1524 DebugLoc DL = MI->getDebugLoc();
Tom Stellard75aadc22012-12-11 21:25:42 +00001525
Vincent Lejeune960a6222013-07-19 21:45:06 +00001526 bool UseContinueLogical = ((&*ContingMBB->rbegin()) == MI);
1527
David Blaikie4eaa79c2015-03-23 20:56:44 +00001528 if (!UseContinueLogical) {
Vincent Lejeune960a6222013-07-19 21:45:06 +00001529 int BranchOpcode =
1530 TrueBranch == ContMBB ? getBranchNzeroOpcode(OldOpcode) :
1531 getBranchZeroOpcode(OldOpcode);
1532 insertCondBranchBefore(I, BranchOpcode, DL);
1533 // insertEnd to ensure phi-moves, if exist, go before the continue-instr.
1534 insertInstrEnd(ContingMBB, AMDGPU::CONTINUE, DL);
1535 insertInstrEnd(ContingMBB, AMDGPU::ENDIF, DL);
1536 } else {
1537 int BranchOpcode =
1538 TrueBranch == ContMBB ? getContinueNzeroOpcode(OldOpcode) :
1539 getContinueZeroOpcode(OldOpcode);
1540 insertCondBranchBefore(I, BranchOpcode, DL);
Tom Stellard75aadc22012-12-11 21:25:42 +00001541 }
Vincent Lejeune960a6222013-07-19 21:45:06 +00001542
1543 MI->eraseFromParent();
1544 } else {
1545 // if we've arrived here then we've already erased the branch instruction
1546 // travel back up the basic block to see the last reference of our debug
1547 // location we've just inserted that reference here so it should be
1548 // representative insertEnd to ensure phi-moves, if exist, go before the
1549 // continue-instr.
1550 insertInstrEnd(ContingMBB, AMDGPU::CONTINUE,
1551 getLastDebugLocInBB(ContingMBB));
Tom Stellard75aadc22012-12-11 21:25:42 +00001552 }
1553}
1554
Vincent Lejeune960a6222013-07-19 21:45:06 +00001555int AMDGPUCFGStructurizer::cloneOnSideEntryTo(MachineBasicBlock *PreMBB,
1556 MachineBasicBlock *SrcMBB, MachineBasicBlock *DstMBB) {
1557 int Cloned = 0;
1558 assert(PreMBB->isSuccessor(SrcMBB));
1559 while (SrcMBB && SrcMBB != DstMBB) {
1560 assert(SrcMBB->succ_size() == 1);
1561 if (SrcMBB->pred_size() > 1) {
1562 SrcMBB = cloneBlockForPredecessor(SrcMBB, PreMBB);
1563 ++Cloned;
Tom Stellard75aadc22012-12-11 21:25:42 +00001564 }
Tom Stellard75aadc22012-12-11 21:25:42 +00001565
Vincent Lejeune960a6222013-07-19 21:45:06 +00001566 PreMBB = SrcMBB;
1567 SrcMBB = *SrcMBB->succ_begin();
Tom Stellard75aadc22012-12-11 21:25:42 +00001568 }
1569
Vincent Lejeune960a6222013-07-19 21:45:06 +00001570 return Cloned;
1571}
Tom Stellard75aadc22012-12-11 21:25:42 +00001572
Vincent Lejeune960a6222013-07-19 21:45:06 +00001573MachineBasicBlock *
1574AMDGPUCFGStructurizer::cloneBlockForPredecessor(MachineBasicBlock *MBB,
1575 MachineBasicBlock *PredMBB) {
1576 assert(PredMBB->isSuccessor(MBB) &&
Tom Stellard75aadc22012-12-11 21:25:42 +00001577 "succBlk is not a prececessor of curBlk");
1578
Vincent Lejeune960a6222013-07-19 21:45:06 +00001579 MachineBasicBlock *CloneMBB = clone(MBB); //clone instructions
1580 replaceInstrUseOfBlockWith(PredMBB, MBB, CloneMBB);
Tom Stellard75aadc22012-12-11 21:25:42 +00001581 //srcBlk, oldBlk, newBlk
1582
Cong Houd97c1002015-12-01 05:29:22 +00001583 PredMBB->replaceSuccessor(MBB, CloneMBB);
Tom Stellard75aadc22012-12-11 21:25:42 +00001584
1585 // add all successor to cloneBlk
Vincent Lejeune960a6222013-07-19 21:45:06 +00001586 cloneSuccessorList(CloneMBB, MBB);
Tom Stellard75aadc22012-12-11 21:25:42 +00001587
Vincent Lejeune960a6222013-07-19 21:45:06 +00001588 numClonedInstr += MBB->size();
Tom Stellard75aadc22012-12-11 21:25:42 +00001589
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001590 DEBUG(
1591 dbgs() << "Cloned block: " << "BB"
Vincent Lejeune960a6222013-07-19 21:45:06 +00001592 << MBB->getNumber() << "size " << MBB->size() << "\n";
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001593 );
Tom Stellard75aadc22012-12-11 21:25:42 +00001594
Vincent Lejeune960a6222013-07-19 21:45:06 +00001595 SHOWNEWBLK(CloneMBB, "result of Cloned block: ");
Tom Stellard75aadc22012-12-11 21:25:42 +00001596
Vincent Lejeune960a6222013-07-19 21:45:06 +00001597 return CloneMBB;
1598}
Tom Stellard75aadc22012-12-11 21:25:42 +00001599
Vincent Lejeune960a6222013-07-19 21:45:06 +00001600void AMDGPUCFGStructurizer::migrateInstruction(MachineBasicBlock *SrcMBB,
1601 MachineBasicBlock *DstMBB, MachineBasicBlock::iterator I) {
1602 MachineBasicBlock::iterator SpliceEnd;
Tom Stellard75aadc22012-12-11 21:25:42 +00001603 //look for the input branchinstr, not the AMDGPU branchinstr
Vincent Lejeune960a6222013-07-19 21:45:06 +00001604 MachineInstr *BranchMI = getNormalBlockBranchInstr(SrcMBB);
1605 if (!BranchMI) {
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001606 DEBUG(
Eugene Zelenkod16eff82017-08-08 23:53:55 +00001607 dbgs() << "migrateInstruction don't see branch instr\n";
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001608 );
Vincent Lejeune960a6222013-07-19 21:45:06 +00001609 SpliceEnd = SrcMBB->end();
Tom Stellard75aadc22012-12-11 21:25:42 +00001610 } else {
Matt Arsenaulte0b44042015-09-10 21:51:19 +00001611 DEBUG(dbgs() << "migrateInstruction see branch instr: " << *BranchMI);
Vincent Lejeune960a6222013-07-19 21:45:06 +00001612 SpliceEnd = BranchMI;
Tom Stellard75aadc22012-12-11 21:25:42 +00001613 }
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001614 DEBUG(
Vincent Lejeune960a6222013-07-19 21:45:06 +00001615 dbgs() << "migrateInstruction before splice dstSize = " << DstMBB->size()
1616 << "srcSize = " << SrcMBB->size() << "\n";
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001617 );
Tom Stellard75aadc22012-12-11 21:25:42 +00001618
1619 //splice insert before insertPos
Vincent Lejeune960a6222013-07-19 21:45:06 +00001620 DstMBB->splice(I, SrcMBB, SrcMBB->begin(), SpliceEnd);
Tom Stellard75aadc22012-12-11 21:25:42 +00001621
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001622 DEBUG(
Vincent Lejeune960a6222013-07-19 21:45:06 +00001623 dbgs() << "migrateInstruction after splice dstSize = " << DstMBB->size()
Matt Arsenaulte0b44042015-09-10 21:51:19 +00001624 << "srcSize = " << SrcMBB->size() << '\n';
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001625 );
Vincent Lejeune960a6222013-07-19 21:45:06 +00001626}
Tom Stellard75aadc22012-12-11 21:25:42 +00001627
Vincent Lejeune960a6222013-07-19 21:45:06 +00001628MachineBasicBlock *
1629AMDGPUCFGStructurizer::normalizeInfiniteLoopExit(MachineLoop* LoopRep) {
1630 MachineBasicBlock *LoopHeader = LoopRep->getHeader();
1631 MachineBasicBlock *LoopLatch = LoopRep->getLoopLatch();
Tom Stellard75aadc22012-12-11 21:25:42 +00001632
Vincent Lejeune960a6222013-07-19 21:45:06 +00001633 if (!LoopHeader || !LoopLatch)
Craig Topper062a2ba2014-04-25 05:30:21 +00001634 return nullptr;
Vincent Lejeune960a6222013-07-19 21:45:06 +00001635 MachineInstr *BranchMI = getLoopendBlockBranchInstr(LoopLatch);
1636 // Is LoopRep an infinite loop ?
1637 if (!BranchMI || !isUncondBranch(BranchMI))
Craig Topper062a2ba2014-04-25 05:30:21 +00001638 return nullptr;
Tom Stellard75aadc22012-12-11 21:25:42 +00001639
Vincent Lejeune960a6222013-07-19 21:45:06 +00001640 MachineBasicBlock *DummyExitBlk = FuncRep->CreateMachineBasicBlock();
1641 FuncRep->push_back(DummyExitBlk); //insert to function
1642 SHOWNEWBLK(DummyExitBlk, "DummyExitBlock to normalize infiniteLoop: ");
1643 DEBUG(dbgs() << "Old branch instr: " << *BranchMI << "\n";);
Tom Stellard1d46fb22015-07-16 15:38:29 +00001644 LLVMContext &Ctx = LoopHeader->getParent()->getFunction()->getContext();
1645 Ctx.emitError("Extra register needed to handle CFG");
1646 return nullptr;
Vincent Lejeune960a6222013-07-19 21:45:06 +00001647}
Tom Stellard75aadc22012-12-11 21:25:42 +00001648
Vincent Lejeune960a6222013-07-19 21:45:06 +00001649void AMDGPUCFGStructurizer::removeUnconditionalBranch(MachineBasicBlock *MBB) {
1650 MachineInstr *BranchMI;
Tom Stellard75aadc22012-12-11 21:25:42 +00001651
1652 // I saw two unconditional branch in one basic block in example
1653 // test_fc_do_while_or.c need to fix the upstream on this to remove the loop.
Vincent Lejeune960a6222013-07-19 21:45:06 +00001654 while ((BranchMI = getLoopendBlockBranchInstr(MBB))
1655 && isUncondBranch(BranchMI)) {
Matt Arsenaulte0b44042015-09-10 21:51:19 +00001656 DEBUG(dbgs() << "Removing uncond branch instr: " << *BranchMI);
Vincent Lejeune960a6222013-07-19 21:45:06 +00001657 BranchMI->eraseFromParent();
Tom Stellard75aadc22012-12-11 21:25:42 +00001658 }
Vincent Lejeune960a6222013-07-19 21:45:06 +00001659}
Tom Stellard75aadc22012-12-11 21:25:42 +00001660
Vincent Lejeune960a6222013-07-19 21:45:06 +00001661void AMDGPUCFGStructurizer::removeRedundantConditionalBranch(
1662 MachineBasicBlock *MBB) {
1663 if (MBB->succ_size() != 2)
1664 return;
1665 MachineBasicBlock *MBB1 = *MBB->succ_begin();
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001666 MachineBasicBlock *MBB2 = *std::next(MBB->succ_begin());
Vincent Lejeune960a6222013-07-19 21:45:06 +00001667 if (MBB1 != MBB2)
1668 return;
Tom Stellard75aadc22012-12-11 21:25:42 +00001669
Vincent Lejeune960a6222013-07-19 21:45:06 +00001670 MachineInstr *BranchMI = getNormalBlockBranchInstr(MBB);
1671 assert(BranchMI && isCondBranch(BranchMI));
Matt Arsenaulte0b44042015-09-10 21:51:19 +00001672 DEBUG(dbgs() << "Removing unneeded cond branch instr: " << *BranchMI);
Vincent Lejeune960a6222013-07-19 21:45:06 +00001673 BranchMI->eraseFromParent();
1674 SHOWNEWBLK(MBB1, "Removing redundant successor");
Cong Houc1069892015-12-13 09:26:17 +00001675 MBB->removeSuccessor(MBB1, true);
Vincent Lejeune960a6222013-07-19 21:45:06 +00001676}
Tom Stellard75aadc22012-12-11 21:25:42 +00001677
Vincent Lejeune960a6222013-07-19 21:45:06 +00001678void AMDGPUCFGStructurizer::addDummyExitBlock(
1679 SmallVectorImpl<MachineBasicBlock*> &RetMBB) {
1680 MachineBasicBlock *DummyExitBlk = FuncRep->CreateMachineBasicBlock();
1681 FuncRep->push_back(DummyExitBlk); //insert to function
1682 insertInstrEnd(DummyExitBlk, AMDGPU::RETURN);
Tom Stellard75aadc22012-12-11 21:25:42 +00001683
Vincent Lejeune960a6222013-07-19 21:45:06 +00001684 for (SmallVectorImpl<MachineBasicBlock *>::iterator It = RetMBB.begin(),
1685 E = RetMBB.end(); It != E; ++It) {
1686 MachineBasicBlock *MBB = *It;
1687 MachineInstr *MI = getReturnInstr(MBB);
1688 if (MI)
1689 MI->eraseFromParent();
1690 MBB->addSuccessor(DummyExitBlk);
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001691 DEBUG(
Vincent Lejeune960a6222013-07-19 21:45:06 +00001692 dbgs() << "Add dummyExitBlock to BB" << MBB->getNumber()
Tom Stellard75aadc22012-12-11 21:25:42 +00001693 << " successors\n";
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001694 );
Tom Stellard75aadc22012-12-11 21:25:42 +00001695 }
Vincent Lejeune960a6222013-07-19 21:45:06 +00001696 SHOWNEWBLK(DummyExitBlk, "DummyExitBlock: ");
Tom Stellard75aadc22012-12-11 21:25:42 +00001697}
1698
Vincent Lejeune960a6222013-07-19 21:45:06 +00001699void AMDGPUCFGStructurizer::removeSuccessor(MachineBasicBlock *MBB) {
1700 while (MBB->succ_size())
1701 MBB->removeSuccessor(*MBB->succ_begin());
Tom Stellard75aadc22012-12-11 21:25:42 +00001702}
1703
Vincent Lejeune960a6222013-07-19 21:45:06 +00001704void AMDGPUCFGStructurizer::recordSccnum(MachineBasicBlock *MBB,
1705 int SccNum) {
1706 BlockInformation *&srcBlkInfo = BlockInfoMap[MBB];
1707 if (!srcBlkInfo)
1708 srcBlkInfo = new BlockInformation();
1709 srcBlkInfo->SccNum = SccNum;
Tom Stellard75aadc22012-12-11 21:25:42 +00001710}
1711
Vincent Lejeune960a6222013-07-19 21:45:06 +00001712void AMDGPUCFGStructurizer::retireBlock(MachineBasicBlock *MBB) {
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001713 DEBUG(
Vincent Lejeune960a6222013-07-19 21:45:06 +00001714 dbgs() << "Retiring BB" << MBB->getNumber() << "\n";
Vincent Lejeunea8c38fe2013-07-19 21:44:56 +00001715 );
Tom Stellard75aadc22012-12-11 21:25:42 +00001716
Vincent Lejeune960a6222013-07-19 21:45:06 +00001717 BlockInformation *&SrcBlkInfo = BlockInfoMap[MBB];
Tom Stellard75aadc22012-12-11 21:25:42 +00001718
Vincent Lejeune960a6222013-07-19 21:45:06 +00001719 if (!SrcBlkInfo)
1720 SrcBlkInfo = new BlockInformation();
Tom Stellard75aadc22012-12-11 21:25:42 +00001721
Vincent Lejeune960a6222013-07-19 21:45:06 +00001722 SrcBlkInfo->IsRetired = true;
1723 assert(MBB->succ_size() == 0 && MBB->pred_size() == 0
Tom Stellard75aadc22012-12-11 21:25:42 +00001724 && "can't retire block yet");
1725}
1726
Tom Stellardf2ba9722013-12-11 17:51:47 +00001727INITIALIZE_PASS_BEGIN(AMDGPUCFGStructurizer, "amdgpustructurizer",
1728 "AMDGPU CFG Structurizer", false, false)
1729INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
1730INITIALIZE_PASS_DEPENDENCY(MachinePostDominatorTree)
1731INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
1732INITIALIZE_PASS_END(AMDGPUCFGStructurizer, "amdgpustructurizer",
1733 "AMDGPU CFG Structurizer", false, false)
1734
1735FunctionPass *llvm::createAMDGPUCFGStructurizerPass() {
1736 return new AMDGPUCFGStructurizer();
Tom Stellard75aadc22012-12-11 21:25:42 +00001737}