blob: ac23e34da957010b4e34d670c316d0087b906521 [file] [log] [blame]
Bob Wilson15acadd2009-11-26 00:32:21 +00001//===-- TailDuplication.cpp - Duplicate blocks into predecessors' tails ---===//
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// This pass duplicates basic blocks ending in unconditional branches into
11// the tails of their predecessors.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "tailduplication"
16#include "llvm/Function.h"
17#include "llvm/CodeGen/Passes.h"
18#include "llvm/CodeGen/MachineModuleInfo.h"
19#include "llvm/CodeGen/MachineFunctionPass.h"
Jakob Stoklund Olesen1e1098c2010-07-10 22:42:59 +000020#include "llvm/CodeGen/MachineInstrBuilder.h"
Evan Cheng111e7622009-12-03 08:43:53 +000021#include "llvm/CodeGen/MachineRegisterInfo.h"
22#include "llvm/CodeGen/MachineSSAUpdater.h"
Bob Wilson15acadd2009-11-26 00:32:21 +000023#include "llvm/Target/TargetInstrInfo.h"
24#include "llvm/Support/CommandLine.h"
25#include "llvm/Support/Debug.h"
Evan Cheng75eb5352009-12-07 10:15:19 +000026#include "llvm/Support/ErrorHandling.h"
Bob Wilson15acadd2009-11-26 00:32:21 +000027#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesenc66d3602011-08-09 23:49:21 +000028#include "llvm/ADT/DenseSet.h"
Bob Wilson15acadd2009-11-26 00:32:21 +000029#include "llvm/ADT/SmallSet.h"
30#include "llvm/ADT/SetVector.h"
31#include "llvm/ADT/Statistic.h"
32using namespace llvm;
33
Evan Cheng75eb5352009-12-07 10:15:19 +000034STATISTIC(NumTails , "Number of tails duplicated");
Bob Wilson15acadd2009-11-26 00:32:21 +000035STATISTIC(NumTailDups , "Number of tail duplicated blocks");
36STATISTIC(NumInstrDups , "Additional instructions due to tail duplication");
37STATISTIC(NumDeadBlocks, "Number of dead blocks removed");
Rafael Espindola0cdca082011-06-08 14:13:31 +000038STATISTIC(NumAddedPHIs , "Number of phis added");
Bob Wilson15acadd2009-11-26 00:32:21 +000039
40// Heuristic for tail duplication.
41static cl::opt<unsigned>
42TailDuplicateSize("tail-dup-size",
43 cl::desc("Maximum instructions to consider tail duplicating"),
44 cl::init(2), cl::Hidden);
45
Evan Cheng75eb5352009-12-07 10:15:19 +000046static cl::opt<bool>
47TailDupVerify("tail-dup-verify",
48 cl::desc("Verify sanity of PHI instructions during taildup"),
49 cl::init(false), cl::Hidden);
50
51static cl::opt<unsigned>
52TailDupLimit("tail-dup-limit", cl::init(~0U), cl::Hidden);
53
Evan Cheng11572ba2009-12-04 19:09:10 +000054typedef std::vector<std::pair<MachineBasicBlock*,unsigned> > AvailableValsTy;
Evan Cheng111e7622009-12-03 08:43:53 +000055
Bob Wilson15acadd2009-11-26 00:32:21 +000056namespace {
Bob Wilson2d521e52009-11-26 21:38:41 +000057 /// TailDuplicatePass - Perform tail duplication.
58 class TailDuplicatePass : public MachineFunctionPass {
Bob Wilson15acadd2009-11-26 00:32:21 +000059 const TargetInstrInfo *TII;
60 MachineModuleInfo *MMI;
Evan Cheng111e7622009-12-03 08:43:53 +000061 MachineRegisterInfo *MRI;
Andrew Trickd2a7bed2012-02-08 21:22:30 +000062 bool PreRegAlloc;
Evan Cheng111e7622009-12-03 08:43:53 +000063
64 // SSAUpdateVRs - A list of virtual registers for which to update SSA form.
65 SmallVector<unsigned, 16> SSAUpdateVRs;
66
67 // SSAUpdateVals - For each virtual register in SSAUpdateVals keep a list of
68 // source virtual registers.
69 DenseMap<unsigned, AvailableValsTy> SSAUpdateVals;
Bob Wilson15acadd2009-11-26 00:32:21 +000070
71 public:
72 static char ID;
Andrew Trickd2a7bed2012-02-08 21:22:30 +000073 explicit TailDuplicatePass() :
74 MachineFunctionPass(ID), PreRegAlloc(false) {}
Bob Wilson15acadd2009-11-26 00:32:21 +000075
76 virtual bool runOnMachineFunction(MachineFunction &MF);
Bob Wilson15acadd2009-11-26 00:32:21 +000077
78 private:
Evan Cheng11572ba2009-12-04 19:09:10 +000079 void AddSSAUpdateEntry(unsigned OrigReg, unsigned NewReg,
80 MachineBasicBlock *BB);
Evan Cheng79fc6f42009-12-04 09:42:45 +000081 void ProcessPHI(MachineInstr *MI, MachineBasicBlock *TailBB,
82 MachineBasicBlock *PredBB,
Evan Cheng75eb5352009-12-07 10:15:19 +000083 DenseMap<unsigned, unsigned> &LocalVRMap,
Rafael Espindola0f28c3f2011-06-09 22:53:47 +000084 SmallVector<std::pair<unsigned,unsigned>, 4> &Copies,
Rafael Espindola689d7d52011-06-09 23:22:56 +000085 const DenseSet<unsigned> &UsedByPhi,
86 bool Remove);
Evan Cheng79fc6f42009-12-04 09:42:45 +000087 void DuplicateInstruction(MachineInstr *MI,
88 MachineBasicBlock *TailBB,
89 MachineBasicBlock *PredBB,
90 MachineFunction &MF,
Rafael Espindola0f28c3f2011-06-09 22:53:47 +000091 DenseMap<unsigned, unsigned> &LocalVRMap,
92 const DenseSet<unsigned> &UsedByPhi);
Evan Cheng75eb5352009-12-07 10:15:19 +000093 void UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead,
94 SmallVector<MachineBasicBlock*, 8> &TDBBs,
95 SmallSetVector<MachineBasicBlock*, 8> &Succs);
Bob Wilson15acadd2009-11-26 00:32:21 +000096 bool TailDuplicateBlocks(MachineFunction &MF);
Rafael Espindola54c25622011-06-09 19:54:42 +000097 bool shouldTailDuplicate(const MachineFunction &MF,
Rafael Espindola9dbbd872011-06-23 03:41:29 +000098 bool IsSimple, MachineBasicBlock &TailBB);
Rafael Espindola275c1f92011-06-20 04:16:35 +000099 bool isSimpleBB(MachineBasicBlock *TailBB);
Rafael Espindola40179bf2011-06-24 15:50:56 +0000100 bool canCompletelyDuplicateBB(MachineBasicBlock &BB);
Rafael Espindolad7f35fa2011-06-24 15:47:41 +0000101 bool duplicateSimpleBB(MachineBasicBlock *TailBB,
Rafael Espindola275c1f92011-06-20 04:16:35 +0000102 SmallVector<MachineBasicBlock*, 8> &TDBBs,
103 const DenseSet<unsigned> &RegsUsedByPhi,
104 SmallVector<MachineInstr*, 16> &Copies);
Rafael Espindola6a9d2b12011-07-04 01:21:42 +0000105 bool TailDuplicate(MachineBasicBlock *TailBB,
106 bool IsSimple,
107 MachineFunction &MF,
Evan Cheng3466f132009-12-15 01:44:10 +0000108 SmallVector<MachineBasicBlock*, 8> &TDBBs,
109 SmallVector<MachineInstr*, 16> &Copies);
Rafael Espindola6a9d2b12011-07-04 01:21:42 +0000110 bool TailDuplicateAndUpdate(MachineBasicBlock *MBB,
111 bool IsSimple,
112 MachineFunction &MF);
113
Bob Wilson15acadd2009-11-26 00:32:21 +0000114 void RemoveDeadBlock(MachineBasicBlock *MBB);
115 };
116
Bob Wilson2d521e52009-11-26 21:38:41 +0000117 char TailDuplicatePass::ID = 0;
Bob Wilson15acadd2009-11-26 00:32:21 +0000118}
119
Andrew Trick1dd8c852012-02-08 21:23:13 +0000120char &llvm::TailDuplicateID = TailDuplicatePass::ID;
121
122INITIALIZE_PASS(TailDuplicatePass, "tailduplication", "Tail Duplication",
123 false, false)
Bob Wilson15acadd2009-11-26 00:32:21 +0000124
Bob Wilson2d521e52009-11-26 21:38:41 +0000125bool TailDuplicatePass::runOnMachineFunction(MachineFunction &MF) {
Bob Wilson15acadd2009-11-26 00:32:21 +0000126 TII = MF.getTarget().getInstrInfo();
Evan Cheng111e7622009-12-03 08:43:53 +0000127 MRI = &MF.getRegInfo();
Bob Wilson15acadd2009-11-26 00:32:21 +0000128 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
Andrew Trickd2a7bed2012-02-08 21:22:30 +0000129 PreRegAlloc = MRI->isSSA();
Bob Wilson15acadd2009-11-26 00:32:21 +0000130
131 bool MadeChange = false;
Jakob Stoklund Olesen057d5392010-01-15 19:59:57 +0000132 while (TailDuplicateBlocks(MF))
133 MadeChange = true;
Bob Wilson15acadd2009-11-26 00:32:21 +0000134
135 return MadeChange;
136}
137
Evan Cheng75eb5352009-12-07 10:15:19 +0000138static void VerifyPHIs(MachineFunction &MF, bool CheckExtra) {
139 for (MachineFunction::iterator I = ++MF.begin(), E = MF.end(); I != E; ++I) {
140 MachineBasicBlock *MBB = I;
141 SmallSetVector<MachineBasicBlock*, 8> Preds(MBB->pred_begin(),
142 MBB->pred_end());
143 MachineBasicBlock::iterator MI = MBB->begin();
144 while (MI != MBB->end()) {
Chris Lattner518bb532010-02-09 19:54:29 +0000145 if (!MI->isPHI())
Evan Cheng75eb5352009-12-07 10:15:19 +0000146 break;
147 for (SmallSetVector<MachineBasicBlock *, 8>::iterator PI = Preds.begin(),
148 PE = Preds.end(); PI != PE; ++PI) {
149 MachineBasicBlock *PredBB = *PI;
150 bool Found = false;
151 for (unsigned i = 1, e = MI->getNumOperands(); i != e; i += 2) {
152 MachineBasicBlock *PHIBB = MI->getOperand(i+1).getMBB();
153 if (PHIBB == PredBB) {
154 Found = true;
155 break;
156 }
157 }
158 if (!Found) {
David Greene00dec1b2010-01-05 01:25:15 +0000159 dbgs() << "Malformed PHI in BB#" << MBB->getNumber() << ": " << *MI;
160 dbgs() << " missing input from predecessor BB#"
Evan Cheng75eb5352009-12-07 10:15:19 +0000161 << PredBB->getNumber() << '\n';
162 llvm_unreachable(0);
163 }
164 }
165
166 for (unsigned i = 1, e = MI->getNumOperands(); i != e; i += 2) {
167 MachineBasicBlock *PHIBB = MI->getOperand(i+1).getMBB();
168 if (CheckExtra && !Preds.count(PHIBB)) {
David Greene00dec1b2010-01-05 01:25:15 +0000169 dbgs() << "Warning: malformed PHI in BB#" << MBB->getNumber()
Evan Cheng75eb5352009-12-07 10:15:19 +0000170 << ": " << *MI;
David Greene00dec1b2010-01-05 01:25:15 +0000171 dbgs() << " extra input from predecessor BB#"
Evan Cheng75eb5352009-12-07 10:15:19 +0000172 << PHIBB->getNumber() << '\n';
Rafael Espindolad3f4eea2011-06-09 23:55:56 +0000173 llvm_unreachable(0);
Evan Cheng75eb5352009-12-07 10:15:19 +0000174 }
175 if (PHIBB->getNumber() < 0) {
David Greene00dec1b2010-01-05 01:25:15 +0000176 dbgs() << "Malformed PHI in BB#" << MBB->getNumber() << ": " << *MI;
177 dbgs() << " non-existing BB#" << PHIBB->getNumber() << '\n';
Evan Cheng75eb5352009-12-07 10:15:19 +0000178 llvm_unreachable(0);
179 }
180 }
181 ++MI;
182 }
183 }
184}
185
Rafael Espindola6a9d2b12011-07-04 01:21:42 +0000186/// TailDuplicateAndUpdate - Tail duplicate the block and cleanup.
187bool
188TailDuplicatePass::TailDuplicateAndUpdate(MachineBasicBlock *MBB,
189 bool IsSimple,
190 MachineFunction &MF) {
191 // Save the successors list.
192 SmallSetVector<MachineBasicBlock*, 8> Succs(MBB->succ_begin(),
193 MBB->succ_end());
194
195 SmallVector<MachineBasicBlock*, 8> TDBBs;
196 SmallVector<MachineInstr*, 16> Copies;
197 if (!TailDuplicate(MBB, IsSimple, MF, TDBBs, Copies))
198 return false;
199
200 ++NumTails;
201
202 SmallVector<MachineInstr*, 8> NewPHIs;
203 MachineSSAUpdater SSAUpdate(MF, &NewPHIs);
204
205 // TailBB's immediate successors are now successors of those predecessors
206 // which duplicated TailBB. Add the predecessors as sources to the PHI
207 // instructions.
208 bool isDead = MBB->pred_empty() && !MBB->hasAddressTaken();
209 if (PreRegAlloc)
210 UpdateSuccessorsPHIs(MBB, isDead, TDBBs, Succs);
211
212 // If it is dead, remove it.
213 if (isDead) {
214 NumInstrDups -= MBB->size();
215 RemoveDeadBlock(MBB);
216 ++NumDeadBlocks;
217 }
218
219 // Update SSA form.
220 if (!SSAUpdateVRs.empty()) {
221 for (unsigned i = 0, e = SSAUpdateVRs.size(); i != e; ++i) {
222 unsigned VReg = SSAUpdateVRs[i];
223 SSAUpdate.Initialize(VReg);
224
225 // If the original definition is still around, add it as an available
226 // value.
227 MachineInstr *DefMI = MRI->getVRegDef(VReg);
228 MachineBasicBlock *DefBB = 0;
229 if (DefMI) {
230 DefBB = DefMI->getParent();
231 SSAUpdate.AddAvailableValue(DefBB, VReg);
232 }
233
234 // Add the new vregs as available values.
235 DenseMap<unsigned, AvailableValsTy>::iterator LI =
236 SSAUpdateVals.find(VReg);
237 for (unsigned j = 0, ee = LI->second.size(); j != ee; ++j) {
238 MachineBasicBlock *SrcBB = LI->second[j].first;
239 unsigned SrcReg = LI->second[j].second;
240 SSAUpdate.AddAvailableValue(SrcBB, SrcReg);
241 }
242
243 // Rewrite uses that are outside of the original def's block.
244 MachineRegisterInfo::use_iterator UI = MRI->use_begin(VReg);
245 while (UI != MRI->use_end()) {
246 MachineOperand &UseMO = UI.getOperand();
247 MachineInstr *UseMI = &*UI;
248 ++UI;
249 if (UseMI->isDebugValue()) {
250 // SSAUpdate can replace the use with an undef. That creates
251 // a debug instruction that is a kill.
252 // FIXME: Should it SSAUpdate job to delete debug instructions
253 // instead of replacing the use with undef?
254 UseMI->eraseFromParent();
255 continue;
256 }
257 if (UseMI->getParent() == DefBB && !UseMI->isPHI())
258 continue;
259 SSAUpdate.RewriteUse(UseMO);
260 }
261 }
262
263 SSAUpdateVRs.clear();
264 SSAUpdateVals.clear();
265 }
266
267 // Eliminate some of the copies inserted by tail duplication to maintain
268 // SSA form.
269 for (unsigned i = 0, e = Copies.size(); i != e; ++i) {
270 MachineInstr *Copy = Copies[i];
271 if (!Copy->isCopy())
272 continue;
273 unsigned Dst = Copy->getOperand(0).getReg();
274 unsigned Src = Copy->getOperand(1).getReg();
275 MachineRegisterInfo::use_iterator UI = MRI->use_begin(Src);
276 if (++UI == MRI->use_end()) {
277 // Copy is the only use. Do trivial copy propagation here.
278 MRI->replaceRegWith(Dst, Src);
279 Copy->eraseFromParent();
280 }
281 }
282
283 if (NewPHIs.size())
284 NumAddedPHIs += NewPHIs.size();
285
286 return true;
287}
288
Bob Wilson15acadd2009-11-26 00:32:21 +0000289/// TailDuplicateBlocks - Look for small blocks that are unconditionally
290/// branched to and do not fall through. Tail-duplicate their instructions
291/// into their predecessors to eliminate (dynamic) branches.
Bob Wilson2d521e52009-11-26 21:38:41 +0000292bool TailDuplicatePass::TailDuplicateBlocks(MachineFunction &MF) {
Bob Wilson15acadd2009-11-26 00:32:21 +0000293 bool MadeChange = false;
294
Evan Cheng75eb5352009-12-07 10:15:19 +0000295 if (PreRegAlloc && TailDupVerify) {
David Greene00dec1b2010-01-05 01:25:15 +0000296 DEBUG(dbgs() << "\n*** Before tail-duplicating\n");
Evan Cheng75eb5352009-12-07 10:15:19 +0000297 VerifyPHIs(MF, true);
298 }
299
Bob Wilson15acadd2009-11-26 00:32:21 +0000300 for (MachineFunction::iterator I = ++MF.begin(), E = MF.end(); I != E; ) {
301 MachineBasicBlock *MBB = I++;
302
Evan Cheng75eb5352009-12-07 10:15:19 +0000303 if (NumTails == TailDupLimit)
304 break;
305
Rafael Espindola6a9d2b12011-07-04 01:21:42 +0000306 bool IsSimple = isSimpleBB(MBB);
Bob Wilson15acadd2009-11-26 00:32:21 +0000307
Rafael Espindola6a9d2b12011-07-04 01:21:42 +0000308 if (!shouldTailDuplicate(MF, IsSimple, *MBB))
Rafael Espindolac0af3522011-07-04 00:13:36 +0000309 continue;
Evan Cheng75eb5352009-12-07 10:15:19 +0000310
Rafael Espindola6a9d2b12011-07-04 01:21:42 +0000311 MadeChange |= TailDuplicateAndUpdate(MBB, IsSimple, MF);
Bob Wilson15acadd2009-11-26 00:32:21 +0000312 }
Rafael Espindolac0af3522011-07-04 00:13:36 +0000313
Rafael Espindola6a9d2b12011-07-04 01:21:42 +0000314 if (PreRegAlloc && TailDupVerify)
315 VerifyPHIs(MF, false);
Evan Cheng111e7622009-12-03 08:43:53 +0000316
Bob Wilson15acadd2009-11-26 00:32:21 +0000317 return MadeChange;
318}
319
Evan Cheng111e7622009-12-03 08:43:53 +0000320static bool isDefLiveOut(unsigned Reg, MachineBasicBlock *BB,
321 const MachineRegisterInfo *MRI) {
322 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(Reg),
323 UE = MRI->use_end(); UI != UE; ++UI) {
324 MachineInstr *UseMI = &*UI;
Rafael Espindoladb3983b2011-06-17 13:59:43 +0000325 if (UseMI->isDebugValue())
326 continue;
Evan Cheng111e7622009-12-03 08:43:53 +0000327 if (UseMI->getParent() != BB)
328 return true;
329 }
330 return false;
331}
332
333static unsigned getPHISrcRegOpIdx(MachineInstr *MI, MachineBasicBlock *SrcBB) {
334 for (unsigned i = 1, e = MI->getNumOperands(); i != e; i += 2)
335 if (MI->getOperand(i+1).getMBB() == SrcBB)
336 return i;
337 return 0;
338}
339
Rafael Espindola0f28c3f2011-06-09 22:53:47 +0000340
341// Remember which registers are used by phis in this block. This is
342// used to determine which registers are liveout while modifying the
343// block (which is why we need to copy the information).
344static void getRegsUsedByPHIs(const MachineBasicBlock &BB,
Rafael Espindola33b46582011-06-10 21:01:53 +0000345 DenseSet<unsigned> *UsedByPhi) {
Rafael Espindola0f28c3f2011-06-09 22:53:47 +0000346 for(MachineBasicBlock::const_iterator I = BB.begin(), E = BB.end();
347 I != E; ++I) {
348 const MachineInstr &MI = *I;
349 if (!MI.isPHI())
350 break;
351 for (unsigned i = 1, e = MI.getNumOperands(); i != e; i += 2) {
352 unsigned SrcReg = MI.getOperand(i).getReg();
353 UsedByPhi->insert(SrcReg);
354 }
355 }
356}
357
Evan Cheng111e7622009-12-03 08:43:53 +0000358/// AddSSAUpdateEntry - Add a definition and source virtual registers pair for
359/// SSA update.
Evan Cheng11572ba2009-12-04 19:09:10 +0000360void TailDuplicatePass::AddSSAUpdateEntry(unsigned OrigReg, unsigned NewReg,
361 MachineBasicBlock *BB) {
362 DenseMap<unsigned, AvailableValsTy>::iterator LI= SSAUpdateVals.find(OrigReg);
Evan Cheng111e7622009-12-03 08:43:53 +0000363 if (LI != SSAUpdateVals.end())
Evan Cheng11572ba2009-12-04 19:09:10 +0000364 LI->second.push_back(std::make_pair(BB, NewReg));
Evan Cheng111e7622009-12-03 08:43:53 +0000365 else {
366 AvailableValsTy Vals;
Evan Cheng11572ba2009-12-04 19:09:10 +0000367 Vals.push_back(std::make_pair(BB, NewReg));
Evan Cheng111e7622009-12-03 08:43:53 +0000368 SSAUpdateVals.insert(std::make_pair(OrigReg, Vals));
369 SSAUpdateVRs.push_back(OrigReg);
370 }
371}
372
Evan Cheng75eb5352009-12-07 10:15:19 +0000373/// ProcessPHI - Process PHI node in TailBB by turning it into a copy in PredBB.
374/// Remember the source register that's contributed by PredBB and update SSA
375/// update map.
Evan Cheng79fc6f42009-12-04 09:42:45 +0000376void TailDuplicatePass::ProcessPHI(MachineInstr *MI,
377 MachineBasicBlock *TailBB,
378 MachineBasicBlock *PredBB,
Evan Cheng75eb5352009-12-07 10:15:19 +0000379 DenseMap<unsigned, unsigned> &LocalVRMap,
Rafael Espindola0f28c3f2011-06-09 22:53:47 +0000380 SmallVector<std::pair<unsigned,unsigned>, 4> &Copies,
Rafael Espindola33b46582011-06-10 21:01:53 +0000381 const DenseSet<unsigned> &RegsUsedByPhi,
Rafael Espindola689d7d52011-06-09 23:22:56 +0000382 bool Remove) {
Evan Cheng79fc6f42009-12-04 09:42:45 +0000383 unsigned DefReg = MI->getOperand(0).getReg();
384 unsigned SrcOpIdx = getPHISrcRegOpIdx(MI, PredBB);
385 assert(SrcOpIdx && "Unable to find matching PHI source?");
386 unsigned SrcReg = MI->getOperand(SrcOpIdx).getReg();
Evan Cheng75eb5352009-12-07 10:15:19 +0000387 const TargetRegisterClass *RC = MRI->getRegClass(DefReg);
Evan Cheng79fc6f42009-12-04 09:42:45 +0000388 LocalVRMap.insert(std::make_pair(DefReg, SrcReg));
Evan Cheng75eb5352009-12-07 10:15:19 +0000389
390 // Insert a copy from source to the end of the block. The def register is the
391 // available value liveout of the block.
392 unsigned NewDef = MRI->createVirtualRegister(RC);
393 Copies.push_back(std::make_pair(NewDef, SrcReg));
Rafael Espindola0f28c3f2011-06-09 22:53:47 +0000394 if (isDefLiveOut(DefReg, TailBB, MRI) || RegsUsedByPhi.count(DefReg))
Evan Cheng75eb5352009-12-07 10:15:19 +0000395 AddSSAUpdateEntry(DefReg, NewDef, PredBB);
Evan Cheng79fc6f42009-12-04 09:42:45 +0000396
Rafael Espindola689d7d52011-06-09 23:22:56 +0000397 if (!Remove)
398 return;
399
Evan Cheng79fc6f42009-12-04 09:42:45 +0000400 // Remove PredBB from the PHI node.
401 MI->RemoveOperand(SrcOpIdx+1);
402 MI->RemoveOperand(SrcOpIdx);
403 if (MI->getNumOperands() == 1)
404 MI->eraseFromParent();
405}
406
407/// DuplicateInstruction - Duplicate a TailBB instruction to PredBB and update
408/// the source operands due to earlier PHI translation.
409void TailDuplicatePass::DuplicateInstruction(MachineInstr *MI,
410 MachineBasicBlock *TailBB,
411 MachineBasicBlock *PredBB,
412 MachineFunction &MF,
Rafael Espindola0f28c3f2011-06-09 22:53:47 +0000413 DenseMap<unsigned, unsigned> &LocalVRMap,
414 const DenseSet<unsigned> &UsedByPhi) {
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +0000415 MachineInstr *NewMI = TII->duplicate(MI, MF);
Evan Cheng79fc6f42009-12-04 09:42:45 +0000416 for (unsigned i = 0, e = NewMI->getNumOperands(); i != e; ++i) {
417 MachineOperand &MO = NewMI->getOperand(i);
418 if (!MO.isReg())
419 continue;
420 unsigned Reg = MO.getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +0000421 if (!TargetRegisterInfo::isVirtualRegister(Reg))
Evan Cheng79fc6f42009-12-04 09:42:45 +0000422 continue;
423 if (MO.isDef()) {
424 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
425 unsigned NewReg = MRI->createVirtualRegister(RC);
426 MO.setReg(NewReg);
427 LocalVRMap.insert(std::make_pair(Reg, NewReg));
Rafael Espindola0f28c3f2011-06-09 22:53:47 +0000428 if (isDefLiveOut(Reg, TailBB, MRI) || UsedByPhi.count(Reg))
Evan Cheng11572ba2009-12-04 19:09:10 +0000429 AddSSAUpdateEntry(Reg, NewReg, PredBB);
Evan Cheng79fc6f42009-12-04 09:42:45 +0000430 } else {
431 DenseMap<unsigned, unsigned>::iterator VI = LocalVRMap.find(Reg);
432 if (VI != LocalVRMap.end())
433 MO.setReg(VI->second);
434 }
435 }
436 PredBB->insert(PredBB->end(), NewMI);
437}
438
439/// UpdateSuccessorsPHIs - After FromBB is tail duplicated into its predecessor
440/// blocks, the successors have gained new predecessors. Update the PHI
441/// instructions in them accordingly.
Evan Cheng75eb5352009-12-07 10:15:19 +0000442void
443TailDuplicatePass::UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead,
444 SmallVector<MachineBasicBlock*, 8> &TDBBs,
Evan Cheng79fc6f42009-12-04 09:42:45 +0000445 SmallSetVector<MachineBasicBlock*,8> &Succs) {
446 for (SmallSetVector<MachineBasicBlock*, 8>::iterator SI = Succs.begin(),
447 SE = Succs.end(); SI != SE; ++SI) {
448 MachineBasicBlock *SuccBB = *SI;
449 for (MachineBasicBlock::iterator II = SuccBB->begin(), EE = SuccBB->end();
450 II != EE; ++II) {
Chris Lattner518bb532010-02-09 19:54:29 +0000451 if (!II->isPHI())
Evan Cheng79fc6f42009-12-04 09:42:45 +0000452 break;
Evan Cheng75eb5352009-12-07 10:15:19 +0000453 unsigned Idx = 0;
Evan Cheng79fc6f42009-12-04 09:42:45 +0000454 for (unsigned i = 1, e = II->getNumOperands(); i != e; i += 2) {
Evan Cheng75eb5352009-12-07 10:15:19 +0000455 MachineOperand &MO = II->getOperand(i+1);
456 if (MO.getMBB() == FromBB) {
457 Idx = i;
Evan Cheng79fc6f42009-12-04 09:42:45 +0000458 break;
Evan Cheng75eb5352009-12-07 10:15:19 +0000459 }
460 }
461
462 assert(Idx != 0);
463 MachineOperand &MO0 = II->getOperand(Idx);
464 unsigned Reg = MO0.getReg();
465 if (isDead) {
466 // Folded into the previous BB.
467 // There could be duplicate phi source entries. FIXME: Should sdisel
468 // or earlier pass fixed this?
469 for (unsigned i = II->getNumOperands()-2; i != Idx; i -= 2) {
470 MachineOperand &MO = II->getOperand(i+1);
471 if (MO.getMBB() == FromBB) {
472 II->RemoveOperand(i+1);
473 II->RemoveOperand(i);
474 }
475 }
Jakob Stoklund Olesen09eeac92010-02-11 00:34:33 +0000476 } else
477 Idx = 0;
478
479 // If Idx is set, the operands at Idx and Idx+1 must be removed.
480 // We reuse the location to avoid expensive RemoveOperand calls.
481
Evan Cheng75eb5352009-12-07 10:15:19 +0000482 DenseMap<unsigned,AvailableValsTy>::iterator LI=SSAUpdateVals.find(Reg);
483 if (LI != SSAUpdateVals.end()) {
484 // This register is defined in the tail block.
Evan Cheng79fc6f42009-12-04 09:42:45 +0000485 for (unsigned j = 0, ee = LI->second.size(); j != ee; ++j) {
Evan Cheng11572ba2009-12-04 19:09:10 +0000486 MachineBasicBlock *SrcBB = LI->second[j].first;
Rafael Espindolad3f4eea2011-06-09 23:55:56 +0000487 // If we didn't duplicate a bb into a particular predecessor, we
488 // might still have added an entry to SSAUpdateVals to correcly
489 // recompute SSA. If that case, avoid adding a dummy extra argument
490 // this PHI.
491 if (!SrcBB->isSuccessor(SuccBB))
492 continue;
493
Evan Cheng11572ba2009-12-04 19:09:10 +0000494 unsigned SrcReg = LI->second[j].second;
Jakob Stoklund Olesen09eeac92010-02-11 00:34:33 +0000495 if (Idx != 0) {
496 II->getOperand(Idx).setReg(SrcReg);
497 II->getOperand(Idx+1).setMBB(SrcBB);
498 Idx = 0;
499 } else {
500 II->addOperand(MachineOperand::CreateReg(SrcReg, false));
501 II->addOperand(MachineOperand::CreateMBB(SrcBB));
502 }
Evan Cheng79fc6f42009-12-04 09:42:45 +0000503 }
Evan Cheng75eb5352009-12-07 10:15:19 +0000504 } else {
505 // Live in tail block, must also be live in predecessors.
506 for (unsigned j = 0, ee = TDBBs.size(); j != ee; ++j) {
507 MachineBasicBlock *SrcBB = TDBBs[j];
Jakob Stoklund Olesen09eeac92010-02-11 00:34:33 +0000508 if (Idx != 0) {
509 II->getOperand(Idx).setReg(Reg);
510 II->getOperand(Idx+1).setMBB(SrcBB);
511 Idx = 0;
512 } else {
513 II->addOperand(MachineOperand::CreateReg(Reg, false));
514 II->addOperand(MachineOperand::CreateMBB(SrcBB));
515 }
Evan Cheng75eb5352009-12-07 10:15:19 +0000516 }
Evan Cheng79fc6f42009-12-04 09:42:45 +0000517 }
Jakob Stoklund Olesen09eeac92010-02-11 00:34:33 +0000518 if (Idx != 0) {
519 II->RemoveOperand(Idx+1);
520 II->RemoveOperand(Idx);
521 }
Evan Cheng79fc6f42009-12-04 09:42:45 +0000522 }
523 }
524}
525
Rafael Espindola54c25622011-06-09 19:54:42 +0000526/// shouldTailDuplicate - Determine if it is profitable to duplicate this block.
Evan Cheng75eb5352009-12-07 10:15:19 +0000527bool
Rafael Espindola54c25622011-06-09 19:54:42 +0000528TailDuplicatePass::shouldTailDuplicate(const MachineFunction &MF,
Rafael Espindola9dbbd872011-06-23 03:41:29 +0000529 bool IsSimple,
Rafael Espindola54c25622011-06-09 19:54:42 +0000530 MachineBasicBlock &TailBB) {
531 // Only duplicate blocks that end with unconditional branches.
532 if (TailBB.canFallThrough())
533 return false;
534
Rafael Espindolaec324e52011-06-17 05:54:50 +0000535 // Don't try to tail-duplicate single-block loops.
536 if (TailBB.isSuccessor(&TailBB))
537 return false;
538
Rafael Espindola54c25622011-06-09 19:54:42 +0000539 // Set the limit on the cost to duplicate. When optimizing for size,
Bob Wilson15acadd2009-11-26 00:32:21 +0000540 // duplicate only one, because one branch instruction can be eliminated to
541 // compensate for the duplication.
542 unsigned MaxDuplicateCount;
Jakob Stoklund Olesen83520622011-01-30 20:38:12 +0000543 if (TailDuplicateSize.getNumOccurrences() == 0 &&
544 MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize))
Bob Wilson38582252009-11-30 18:56:45 +0000545 MaxDuplicateCount = 1;
Bob Wilson15acadd2009-11-26 00:32:21 +0000546 else
547 MaxDuplicateCount = TailDuplicateSize;
548
Rafael Espindolaec324e52011-06-17 05:54:50 +0000549 // If the target has hardware branch prediction that can handle indirect
550 // branches, duplicating them can often make them predictable when there
551 // are common paths through the code. The limit needs to be high enough
552 // to allow undoing the effects of tail merging and other optimizations
553 // that rearrange the predecessors of the indirect branch.
Bob Wilsoncb44b282010-01-16 00:42:25 +0000554
Rafael Espindola6a9d2b12011-07-04 01:21:42 +0000555 bool HasIndirectbr = false;
556 if (!TailBB.empty())
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000557 HasIndirectbr = TailBB.back().isIndirectBranch();
Rafael Espindola6a9d2b12011-07-04 01:21:42 +0000558
559 if (HasIndirectbr && PreRegAlloc)
560 MaxDuplicateCount = 20;
Bob Wilsonbfdcf3b2010-01-15 06:29:17 +0000561
Bob Wilson15acadd2009-11-26 00:32:21 +0000562 // Check the instructions in the block to determine whether tail-duplication
563 // is invalid or unlikely to be profitable.
Bob Wilsonf1e01dc2009-12-02 17:15:24 +0000564 unsigned InstrCount = 0;
Evan Cheng7c2a4a32011-12-06 22:12:01 +0000565 for (MachineBasicBlock::iterator I = TailBB.begin(); I != TailBB.end(); ++I) {
Bob Wilson15acadd2009-11-26 00:32:21 +0000566 // Non-duplicable things shouldn't be tail-duplicated.
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000567 if (I->isNotDuplicable())
Rafael Espindolaec324e52011-06-17 05:54:50 +0000568 return false;
569
Evan Cheng79fc6f42009-12-04 09:42:45 +0000570 // Do not duplicate 'return' instructions if this is a pre-regalloc run.
571 // A return may expand into a lot more instructions (e.g. reload of callee
572 // saved registers) after PEI.
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000573 if (PreRegAlloc && I->isReturn())
Rafael Espindolaec324e52011-06-17 05:54:50 +0000574 return false;
575
576 // Avoid duplicating calls before register allocation. Calls presents a
577 // barrier to register allocation so duplicating them may end up increasing
578 // spills.
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000579 if (PreRegAlloc && I->isCall())
Rafael Espindolaec324e52011-06-17 05:54:50 +0000580 return false;
581
Devang Patelcbe1e312010-03-16 21:02:07 +0000582 if (!I->isPHI() && !I->isDebugValue())
Bob Wilsonf1e01dc2009-12-02 17:15:24 +0000583 InstrCount += 1;
Rafael Espindolaec324e52011-06-17 05:54:50 +0000584
585 if (InstrCount > MaxDuplicateCount)
586 return false;
Bob Wilson15acadd2009-11-26 00:32:21 +0000587 }
Bob Wilson15acadd2009-11-26 00:32:21 +0000588
Rafael Espindola6a9d2b12011-07-04 01:21:42 +0000589 if (HasIndirectbr && PreRegAlloc)
Rafael Espindola9dbbd872011-06-23 03:41:29 +0000590 return true;
591
592 if (IsSimple)
Rafael Espindolad7f35fa2011-06-24 15:47:41 +0000593 return true;
Rafael Espindola9dbbd872011-06-23 03:41:29 +0000594
595 if (!PreRegAlloc)
596 return true;
597
Rafael Espindola40179bf2011-06-24 15:50:56 +0000598 return canCompletelyDuplicateBB(TailBB);
Rafael Espindola54c25622011-06-09 19:54:42 +0000599}
600
Rafael Espindola275c1f92011-06-20 04:16:35 +0000601/// isSimpleBB - True if this BB has only one unconditional jump.
602bool
603TailDuplicatePass::isSimpleBB(MachineBasicBlock *TailBB) {
604 if (TailBB->succ_size() != 1)
605 return false;
Rafael Espindola9dbbd872011-06-23 03:41:29 +0000606 if (TailBB->pred_empty())
607 return false;
Rafael Espindolad6379a92011-06-22 22:31:57 +0000608 MachineBasicBlock::iterator I = TailBB->begin();
Rafael Espindola275c1f92011-06-20 04:16:35 +0000609 MachineBasicBlock::iterator E = TailBB->end();
Rafael Espindolad6379a92011-06-22 22:31:57 +0000610 while (I != E && I->isDebugValue())
Rafael Espindola275c1f92011-06-20 04:16:35 +0000611 ++I;
612 if (I == E)
613 return true;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000614 return I->isUnconditionalBranch();
Rafael Espindola275c1f92011-06-20 04:16:35 +0000615}
616
617static bool
618bothUsedInPHI(const MachineBasicBlock &A,
619 SmallPtrSet<MachineBasicBlock*, 8> SuccsB) {
620 for (MachineBasicBlock::const_succ_iterator SI = A.succ_begin(),
621 SE = A.succ_end(); SI != SE; ++SI) {
622 MachineBasicBlock *BB = *SI;
623 if (SuccsB.count(BB) && !BB->empty() && BB->begin()->isPHI())
624 return true;
625 }
626
627 return false;
628}
629
630bool
Rafael Espindola40179bf2011-06-24 15:50:56 +0000631TailDuplicatePass::canCompletelyDuplicateBB(MachineBasicBlock &BB) {
Rafael Espindola275c1f92011-06-20 04:16:35 +0000632 SmallPtrSet<MachineBasicBlock*, 8> Succs(BB.succ_begin(), BB.succ_end());
633
634 for (MachineBasicBlock::pred_iterator PI = BB.pred_begin(),
635 PE = BB.pred_end(); PI != PE; ++PI) {
636 MachineBasicBlock *PredBB = *PI;
Rafael Espindola9dbbd872011-06-23 03:41:29 +0000637
Rafael Espindola40179bf2011-06-24 15:50:56 +0000638 if (PredBB->succ_size() > 1)
639 return false;
Rafael Espindola9dbbd872011-06-23 03:41:29 +0000640
Rafael Espindola275c1f92011-06-20 04:16:35 +0000641 MachineBasicBlock *PredTBB = NULL, *PredFBB = NULL;
642 SmallVector<MachineOperand, 4> PredCond;
643 if (TII->AnalyzeBranch(*PredBB, PredTBB, PredFBB, PredCond, true))
644 return false;
Rafael Espindola9dbbd872011-06-23 03:41:29 +0000645
Rafael Espindola40179bf2011-06-24 15:50:56 +0000646 if (!PredCond.empty())
Rafael Espindola9dbbd872011-06-23 03:41:29 +0000647 return false;
Rafael Espindola275c1f92011-06-20 04:16:35 +0000648 }
649 return true;
650}
651
Rafael Espindolad7f35fa2011-06-24 15:47:41 +0000652bool
Rafael Espindola275c1f92011-06-20 04:16:35 +0000653TailDuplicatePass::duplicateSimpleBB(MachineBasicBlock *TailBB,
654 SmallVector<MachineBasicBlock*, 8> &TDBBs,
655 const DenseSet<unsigned> &UsedByPhi,
656 SmallVector<MachineInstr*, 16> &Copies) {
Rafael Espindolad7f35fa2011-06-24 15:47:41 +0000657 SmallPtrSet<MachineBasicBlock*, 8> Succs(TailBB->succ_begin(),
658 TailBB->succ_end());
Rafael Espindola275c1f92011-06-20 04:16:35 +0000659 SmallVector<MachineBasicBlock*, 8> Preds(TailBB->pred_begin(),
660 TailBB->pred_end());
Rafael Espindolad7f35fa2011-06-24 15:47:41 +0000661 bool Changed = false;
Rafael Espindola275c1f92011-06-20 04:16:35 +0000662 for (SmallSetVector<MachineBasicBlock *, 8>::iterator PI = Preds.begin(),
663 PE = Preds.end(); PI != PE; ++PI) {
664 MachineBasicBlock *PredBB = *PI;
665
Rafael Espindolad7f35fa2011-06-24 15:47:41 +0000666 if (PredBB->getLandingPadSuccessor())
667 continue;
668
669 if (bothUsedInPHI(*PredBB, Succs))
670 continue;
671
Rafael Espindola275c1f92011-06-20 04:16:35 +0000672 MachineBasicBlock *PredTBB = NULL, *PredFBB = NULL;
673 SmallVector<MachineOperand, 4> PredCond;
Rafael Espindolad7f35fa2011-06-24 15:47:41 +0000674 if (TII->AnalyzeBranch(*PredBB, PredTBB, PredFBB, PredCond, true))
675 continue;
Rafael Espindola275c1f92011-06-20 04:16:35 +0000676
Rafael Espindolad7f35fa2011-06-24 15:47:41 +0000677 Changed = true;
Rafael Espindola275c1f92011-06-20 04:16:35 +0000678 DEBUG(dbgs() << "\nTail-duplicating into PredBB: " << *PredBB
679 << "From simple Succ: " << *TailBB);
680
681 MachineBasicBlock *NewTarget = *TailBB->succ_begin();
Francois Pichet289a2792011-06-20 05:19:37 +0000682 MachineBasicBlock *NextBB = llvm::next(MachineFunction::iterator(PredBB));
Rafael Espindola275c1f92011-06-20 04:16:35 +0000683
Rafael Espindola275c1f92011-06-20 04:16:35 +0000684 // Make PredFBB explicit.
685 if (PredCond.empty())
686 PredFBB = PredTBB;
687
688 // Make fall through explicit.
689 if (!PredTBB)
690 PredTBB = NextBB;
691 if (!PredFBB)
692 PredFBB = NextBB;
693
694 // Redirect
695 if (PredFBB == TailBB)
696 PredFBB = NewTarget;
697 if (PredTBB == TailBB)
698 PredTBB = NewTarget;
699
700 // Make the branch unconditional if possible
Rafael Espindola689c2472011-06-20 14:11:42 +0000701 if (PredTBB == PredFBB) {
702 PredCond.clear();
Rafael Espindola275c1f92011-06-20 04:16:35 +0000703 PredFBB = NULL;
Rafael Espindola689c2472011-06-20 14:11:42 +0000704 }
Rafael Espindola275c1f92011-06-20 04:16:35 +0000705
706 // Avoid adding fall through branches.
707 if (PredFBB == NextBB)
708 PredFBB = NULL;
709 if (PredTBB == NextBB && PredFBB == NULL)
710 PredTBB = NULL;
711
712 TII->RemoveBranch(*PredBB);
713
714 if (PredTBB)
715 TII->InsertBranch(*PredBB, PredTBB, PredFBB, PredCond, DebugLoc());
716
717 PredBB->removeSuccessor(TailBB);
Rafael Espindola689c2472011-06-20 14:11:42 +0000718 unsigned NumSuccessors = PredBB->succ_size();
719 assert(NumSuccessors <= 1);
720 if (NumSuccessors == 0 || *PredBB->succ_begin() != NewTarget)
721 PredBB->addSuccessor(NewTarget);
Rafael Espindola275c1f92011-06-20 04:16:35 +0000722
723 TDBBs.push_back(PredBB);
Rafael Espindola275c1f92011-06-20 04:16:35 +0000724 }
Rafael Espindolad7f35fa2011-06-24 15:47:41 +0000725 return Changed;
Rafael Espindola275c1f92011-06-20 04:16:35 +0000726}
727
Rafael Espindola54c25622011-06-09 19:54:42 +0000728/// TailDuplicate - If it is profitable, duplicate TailBB's contents in each
729/// of its predecessors.
730bool
Rafael Espindola6a9d2b12011-07-04 01:21:42 +0000731TailDuplicatePass::TailDuplicate(MachineBasicBlock *TailBB,
732 bool IsSimple,
733 MachineFunction &MF,
Rafael Espindola54c25622011-06-09 19:54:42 +0000734 SmallVector<MachineBasicBlock*, 8> &TDBBs,
735 SmallVector<MachineInstr*, 16> &Copies) {
David Greene00dec1b2010-01-05 01:25:15 +0000736 DEBUG(dbgs() << "\n*** Tail-duplicating BB#" << TailBB->getNumber() << '\n');
Evan Cheng75eb5352009-12-07 10:15:19 +0000737
Rafael Espindola275c1f92011-06-20 04:16:35 +0000738 DenseSet<unsigned> UsedByPhi;
739 getRegsUsedByPHIs(*TailBB, &UsedByPhi);
740
Rafael Espindolad7f35fa2011-06-24 15:47:41 +0000741 if (IsSimple)
742 return duplicateSimpleBB(TailBB, TDBBs, UsedByPhi, Copies);
Rafael Espindola275c1f92011-06-20 04:16:35 +0000743
Bob Wilson15acadd2009-11-26 00:32:21 +0000744 // Iterate through all the unique predecessors and tail-duplicate this
745 // block into them, if possible. Copying the list ahead of time also
746 // avoids trouble with the predecessor list reallocating.
747 bool Changed = false;
Evan Cheng79fc6f42009-12-04 09:42:45 +0000748 SmallSetVector<MachineBasicBlock*, 8> Preds(TailBB->pred_begin(),
749 TailBB->pred_end());
Bob Wilson15acadd2009-11-26 00:32:21 +0000750 for (SmallSetVector<MachineBasicBlock *, 8>::iterator PI = Preds.begin(),
751 PE = Preds.end(); PI != PE; ++PI) {
752 MachineBasicBlock *PredBB = *PI;
753
754 assert(TailBB != PredBB &&
755 "Single-block loop should have been rejected earlier!");
Rafael Espindola9a9a3a52011-06-10 20:08:23 +0000756 // EH edges are ignored by AnalyzeBranch.
757 if (PredBB->succ_size() > 1)
758 continue;
Bob Wilson15acadd2009-11-26 00:32:21 +0000759
760 MachineBasicBlock *PredTBB, *PredFBB;
761 SmallVector<MachineOperand, 4> PredCond;
762 if (TII->AnalyzeBranch(*PredBB, PredTBB, PredFBB, PredCond, true))
763 continue;
764 if (!PredCond.empty())
765 continue;
Bob Wilson15acadd2009-11-26 00:32:21 +0000766 // Don't duplicate into a fall-through predecessor (at least for now).
767 if (PredBB->isLayoutSuccessor(TailBB) && PredBB->canFallThrough())
768 continue;
769
David Greene00dec1b2010-01-05 01:25:15 +0000770 DEBUG(dbgs() << "\nTail-duplicating into PredBB: " << *PredBB
Bob Wilson15acadd2009-11-26 00:32:21 +0000771 << "From Succ: " << *TailBB);
772
Evan Cheng75eb5352009-12-07 10:15:19 +0000773 TDBBs.push_back(PredBB);
774
Bob Wilson15acadd2009-11-26 00:32:21 +0000775 // Remove PredBB's unconditional branch.
776 TII->RemoveBranch(*PredBB);
Evan Cheng111e7622009-12-03 08:43:53 +0000777
Bob Wilson15acadd2009-11-26 00:32:21 +0000778 // Clone the contents of TailBB into PredBB.
Evan Cheng111e7622009-12-03 08:43:53 +0000779 DenseMap<unsigned, unsigned> LocalVRMap;
Evan Cheng3466f132009-12-15 01:44:10 +0000780 SmallVector<std::pair<unsigned,unsigned>, 4> CopyInfos;
Evan Cheng111e7622009-12-03 08:43:53 +0000781 MachineBasicBlock::iterator I = TailBB->begin();
Evan Cheng79fc6f42009-12-04 09:42:45 +0000782 while (I != TailBB->end()) {
783 MachineInstr *MI = &*I;
784 ++I;
Chris Lattner518bb532010-02-09 19:54:29 +0000785 if (MI->isPHI()) {
Evan Cheng111e7622009-12-03 08:43:53 +0000786 // Replace the uses of the def of the PHI with the register coming
787 // from PredBB.
Rafael Espindola689d7d52011-06-09 23:22:56 +0000788 ProcessPHI(MI, TailBB, PredBB, LocalVRMap, CopyInfos, UsedByPhi, true);
Evan Cheng79fc6f42009-12-04 09:42:45 +0000789 } else {
790 // Replace def of virtual registers with new registers, and update
791 // uses with PHI source register or the new registers.
Rafael Espindola0f28c3f2011-06-09 22:53:47 +0000792 DuplicateInstruction(MI, TailBB, PredBB, MF, LocalVRMap, UsedByPhi);
Evan Cheng111e7622009-12-03 08:43:53 +0000793 }
Bob Wilson15acadd2009-11-26 00:32:21 +0000794 }
Evan Cheng75eb5352009-12-07 10:15:19 +0000795 MachineBasicBlock::iterator Loc = PredBB->getFirstTerminator();
Evan Cheng3466f132009-12-15 01:44:10 +0000796 for (unsigned i = 0, e = CopyInfos.size(); i != e; ++i) {
Jakob Stoklund Olesen1e1098c2010-07-10 22:42:59 +0000797 Copies.push_back(BuildMI(*PredBB, Loc, DebugLoc(),
798 TII->get(TargetOpcode::COPY),
799 CopyInfos[i].first).addReg(CopyInfos[i].second));
Evan Cheng75eb5352009-12-07 10:15:19 +0000800 }
Rafael Espindolaec324e52011-06-17 05:54:50 +0000801
802 // Simplify
803 TII->AnalyzeBranch(*PredBB, PredTBB, PredFBB, PredCond, true);
804
Bob Wilson15acadd2009-11-26 00:32:21 +0000805 NumInstrDups += TailBB->size() - 1; // subtract one for removed branch
806
807 // Update the CFG.
808 PredBB->removeSuccessor(PredBB->succ_begin());
809 assert(PredBB->succ_empty() &&
810 "TailDuplicate called on block with multiple successors!");
811 for (MachineBasicBlock::succ_iterator I = TailBB->succ_begin(),
Evan Cheng79fc6f42009-12-04 09:42:45 +0000812 E = TailBB->succ_end(); I != E; ++I)
813 PredBB->addSuccessor(*I);
Bob Wilson15acadd2009-11-26 00:32:21 +0000814
815 Changed = true;
816 ++NumTailDups;
817 }
818
819 // If TailBB was duplicated into all its predecessors except for the prior
820 // block, which falls through unconditionally, move the contents of this
821 // block into the prior block.
Evan Cheng79fc6f42009-12-04 09:42:45 +0000822 MachineBasicBlock *PrevBB = prior(MachineFunction::iterator(TailBB));
Bob Wilson15acadd2009-11-26 00:32:21 +0000823 MachineBasicBlock *PriorTBB = 0, *PriorFBB = 0;
824 SmallVector<MachineOperand, 4> PriorCond;
Bob Wilson15acadd2009-11-26 00:32:21 +0000825 // This has to check PrevBB->succ_size() because EH edges are ignored by
826 // AnalyzeBranch.
Andrew Trickd2a7bed2012-02-08 21:22:30 +0000827 if (PrevBB->succ_size() == 1 &&
Rafael Espindolaa899b222011-06-09 21:43:25 +0000828 !TII->AnalyzeBranch(*PrevBB, PriorTBB, PriorFBB, PriorCond, true) &&
829 PriorCond.empty() && !PriorTBB && TailBB->pred_size() == 1 &&
Bob Wilson15acadd2009-11-26 00:32:21 +0000830 !TailBB->hasAddressTaken()) {
David Greene00dec1b2010-01-05 01:25:15 +0000831 DEBUG(dbgs() << "\nMerging into block: " << *PrevBB
Bob Wilson15acadd2009-11-26 00:32:21 +0000832 << "From MBB: " << *TailBB);
Evan Cheng79fc6f42009-12-04 09:42:45 +0000833 if (PreRegAlloc) {
834 DenseMap<unsigned, unsigned> LocalVRMap;
Evan Cheng3466f132009-12-15 01:44:10 +0000835 SmallVector<std::pair<unsigned,unsigned>, 4> CopyInfos;
Evan Cheng79fc6f42009-12-04 09:42:45 +0000836 MachineBasicBlock::iterator I = TailBB->begin();
837 // Process PHI instructions first.
Chris Lattner518bb532010-02-09 19:54:29 +0000838 while (I != TailBB->end() && I->isPHI()) {
Evan Cheng79fc6f42009-12-04 09:42:45 +0000839 // Replace the uses of the def of the PHI with the register coming
840 // from PredBB.
841 MachineInstr *MI = &*I++;
Rafael Espindola689d7d52011-06-09 23:22:56 +0000842 ProcessPHI(MI, TailBB, PrevBB, LocalVRMap, CopyInfos, UsedByPhi, true);
Evan Cheng79fc6f42009-12-04 09:42:45 +0000843 if (MI->getParent())
844 MI->eraseFromParent();
845 }
846
847 // Now copy the non-PHI instructions.
848 while (I != TailBB->end()) {
849 // Replace def of virtual registers with new registers, and update
850 // uses with PHI source register or the new registers.
851 MachineInstr *MI = &*I++;
Rafael Espindola0f28c3f2011-06-09 22:53:47 +0000852 DuplicateInstruction(MI, TailBB, PrevBB, MF, LocalVRMap, UsedByPhi);
Evan Cheng79fc6f42009-12-04 09:42:45 +0000853 MI->eraseFromParent();
854 }
Evan Cheng75eb5352009-12-07 10:15:19 +0000855 MachineBasicBlock::iterator Loc = PrevBB->getFirstTerminator();
Evan Cheng3466f132009-12-15 01:44:10 +0000856 for (unsigned i = 0, e = CopyInfos.size(); i != e; ++i) {
Jakob Stoklund Olesen1e1098c2010-07-10 22:42:59 +0000857 Copies.push_back(BuildMI(*PrevBB, Loc, DebugLoc(),
858 TII->get(TargetOpcode::COPY),
859 CopyInfos[i].first)
860 .addReg(CopyInfos[i].second));
Evan Cheng75eb5352009-12-07 10:15:19 +0000861 }
Evan Cheng79fc6f42009-12-04 09:42:45 +0000862 } else {
863 // No PHIs to worry about, just splice the instructions over.
864 PrevBB->splice(PrevBB->end(), TailBB, TailBB->begin(), TailBB->end());
865 }
866 PrevBB->removeSuccessor(PrevBB->succ_begin());
867 assert(PrevBB->succ_empty());
868 PrevBB->transferSuccessors(TailBB);
Evan Cheng75eb5352009-12-07 10:15:19 +0000869 TDBBs.push_back(PrevBB);
Bob Wilson15acadd2009-11-26 00:32:21 +0000870 Changed = true;
871 }
872
Rafael Espindola689d7d52011-06-09 23:22:56 +0000873 // If this is after register allocation, there are no phis to fix.
874 if (!PreRegAlloc)
875 return Changed;
876
877 // If we made no changes so far, we are safe.
878 if (!Changed)
879 return Changed;
880
881
882 // Handle the nasty case in that we duplicated a block that is part of a loop
883 // into some but not all of its predecessors. For example:
Rafael Espindola4d7b4572011-06-09 23:51:45 +0000884 // 1 -> 2 <-> 3 |
885 // \ |
886 // \---> rest |
Rafael Espindola689d7d52011-06-09 23:22:56 +0000887 // if we duplicate 2 into 1 but not into 3, we end up with
Rafael Espindola4d7b4572011-06-09 23:51:45 +0000888 // 12 -> 3 <-> 2 -> rest |
889 // \ / |
890 // \----->-----/ |
Rafael Espindola689d7d52011-06-09 23:22:56 +0000891 // If there was a "var = phi(1, 3)" in 2, it has to be ultimately replaced
892 // with a phi in 3 (which now dominates 2).
893 // What we do here is introduce a copy in 3 of the register defined by the
894 // phi, just like when we are duplicating 2 into 3, but we don't copy any
895 // real instructions or remove the 3 -> 2 edge from the phi in 2.
896 for (SmallSetVector<MachineBasicBlock *, 8>::iterator PI = Preds.begin(),
897 PE = Preds.end(); PI != PE; ++PI) {
898 MachineBasicBlock *PredBB = *PI;
899 if (std::find(TDBBs.begin(), TDBBs.end(), PredBB) != TDBBs.end())
900 continue;
901
902 // EH edges
903 if (PredBB->succ_size() != 1)
904 continue;
905
906 DenseMap<unsigned, unsigned> LocalVRMap;
907 SmallVector<std::pair<unsigned,unsigned>, 4> CopyInfos;
908 MachineBasicBlock::iterator I = TailBB->begin();
909 // Process PHI instructions first.
910 while (I != TailBB->end() && I->isPHI()) {
911 // Replace the uses of the def of the PHI with the register coming
912 // from PredBB.
913 MachineInstr *MI = &*I++;
914 ProcessPHI(MI, TailBB, PredBB, LocalVRMap, CopyInfos, UsedByPhi, false);
915 }
916 MachineBasicBlock::iterator Loc = PredBB->getFirstTerminator();
917 for (unsigned i = 0, e = CopyInfos.size(); i != e; ++i) {
918 Copies.push_back(BuildMI(*PredBB, Loc, DebugLoc(),
919 TII->get(TargetOpcode::COPY),
920 CopyInfos[i].first).addReg(CopyInfos[i].second));
921 }
922 }
923
Bob Wilson15acadd2009-11-26 00:32:21 +0000924 return Changed;
925}
926
927/// RemoveDeadBlock - Remove the specified dead machine basic block from the
928/// function, updating the CFG.
Bob Wilson2d521e52009-11-26 21:38:41 +0000929void TailDuplicatePass::RemoveDeadBlock(MachineBasicBlock *MBB) {
Bob Wilson15acadd2009-11-26 00:32:21 +0000930 assert(MBB->pred_empty() && "MBB must be dead!");
David Greene00dec1b2010-01-05 01:25:15 +0000931 DEBUG(dbgs() << "\nRemoving MBB: " << *MBB);
Bob Wilson15acadd2009-11-26 00:32:21 +0000932
933 // Remove all successors.
934 while (!MBB->succ_empty())
935 MBB->removeSuccessor(MBB->succ_end()-1);
936
Bob Wilson15acadd2009-11-26 00:32:21 +0000937 // Remove the block.
938 MBB->eraseFromParent();
939}