blob: 0ca54ac386523c513fbae1c86b5c6e2a8fabd3fb [file] [log] [blame]
Chris Lattner21ab22e2004-07-31 10:01:27 +00001//===-- BranchFolding.cpp - Fold machine code branch instructions ---------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner21ab22e2004-07-31 10:01:27 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner21ab22e2004-07-31 10:01:27 +00008//===----------------------------------------------------------------------===//
9//
10// This pass forwards branches to unconditional branches to make them branch
11// directly to the target block. This pass often results in dead MBB's, which
12// it then removes.
13//
14// Note that this pass must be run after register allocation, it cannot handle
15// SSA form.
16//
17//===----------------------------------------------------------------------===//
18
Chris Lattnerf10a56a2006-11-18 21:56:39 +000019#define DEBUG_TYPE "branchfolding"
Evan Cheng030a0a02009-09-04 07:47:40 +000020#include "BranchFolding.h"
Bob Wilson2c04dae2009-10-28 22:10:20 +000021#include "llvm/Function.h"
Chris Lattner21ab22e2004-07-31 10:01:27 +000022#include "llvm/CodeGen/Passes.h"
Jim Laskey44c3b9f2007-01-26 21:22:28 +000023#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner21ab22e2004-07-31 10:01:27 +000024#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattnerc50ffcb2006-10-17 17:13:52 +000025#include "llvm/CodeGen/MachineJumpTableInfo.h"
Dale Johannesen69cb9b72007-03-20 21:35:06 +000026#include "llvm/CodeGen/RegisterScavenging.h"
Chris Lattner21ab22e2004-07-31 10:01:27 +000027#include "llvm/Target/TargetInstrInfo.h"
28#include "llvm/Target/TargetMachine.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000029#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner12143052006-10-21 00:47:49 +000030#include "llvm/Support/CommandLine.h"
Chris Lattnerf10a56a2006-11-18 21:56:39 +000031#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000032#include "llvm/Support/ErrorHandling.h"
Bill Wendling3403bcd2009-08-22 20:03:00 +000033#include "llvm/Support/raw_ostream.h"
Evan Cheng80b09fe2008-04-10 02:32:10 +000034#include "llvm/ADT/SmallSet.h"
Dan Gohman2210c0b2009-11-11 19:48:59 +000035#include "llvm/ADT/SetVector.h"
Chris Lattner12143052006-10-21 00:47:49 +000036#include "llvm/ADT/Statistic.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000037#include "llvm/ADT/STLExtras.h"
Jeff Cohend41b30d2006-11-05 19:31:28 +000038#include <algorithm>
Chris Lattner21ab22e2004-07-31 10:01:27 +000039using namespace llvm;
40
Chris Lattnercd3245a2006-12-19 22:41:21 +000041STATISTIC(NumDeadBlocks, "Number of dead blocks removed");
42STATISTIC(NumBranchOpts, "Number of branches optimized");
43STATISTIC(NumTailMerge , "Number of block tails merged");
Evan Chengcbc988b2011-05-12 00:56:58 +000044STATISTIC(NumHoist , "Number of times common instructions are hoisted");
Bob Wilson7cd5d3e2009-11-18 19:29:37 +000045
Dan Gohman4e3f1252009-11-11 18:38:14 +000046static cl::opt<cl::boolOrDefault> FlagEnableTailMerge("enable-tail-merge",
Dale Johannesen81da02b2007-05-22 17:14:46 +000047 cl::init(cl::BOU_UNSET), cl::Hidden);
Bob Wilson7cd5d3e2009-11-18 19:29:37 +000048
Dan Gohman844731a2008-05-13 00:00:25 +000049// Throttle for huge numbers of predecessors (compile speed problems)
50static cl::opt<unsigned>
Dan Gohman4e3f1252009-11-11 18:38:14 +000051TailMergeThreshold("tail-merge-threshold",
Dan Gohman844731a2008-05-13 00:00:25 +000052 cl::desc("Max number of predecessors to consider tail merging"),
Dale Johannesen622addb2008-10-27 02:10:21 +000053 cl::init(150), cl::Hidden);
Dale Johannesen1a90a5a2007-06-08 01:08:52 +000054
Dan Gohman2210c0b2009-11-11 19:48:59 +000055// Heuristic for tail merging (and, inversely, tail duplication).
56// TODO: This should be replaced with a target query.
57static cl::opt<unsigned>
Bob Wilson3cbc3122009-11-16 17:56:13 +000058TailMergeSize("tail-merge-size",
Dan Gohman2210c0b2009-11-11 19:48:59 +000059 cl::desc("Min number of instructions to consider tail merging"),
60 cl::init(3), cl::Hidden);
Devang Patel794fd752007-05-01 21:15:47 +000061
Dan Gohman72b29902009-11-12 01:59:26 +000062namespace {
63 /// BranchFolderPass - Wrap branch folder in a machine function pass.
64 class BranchFolderPass : public MachineFunctionPass,
65 public BranchFolder {
66 public:
67 static char ID;
68 explicit BranchFolderPass(bool defaultEnableTailMerge)
Evan Chengcbc988b2011-05-12 00:56:58 +000069 : MachineFunctionPass(ID), BranchFolder(defaultEnableTailMerge, true) {}
Dan Gohman72b29902009-11-12 01:59:26 +000070
71 virtual bool runOnMachineFunction(MachineFunction &MF);
72 virtual const char *getPassName() const { return "Control Flow Optimizer"; }
73 };
74}
75
Evan Cheng030a0a02009-09-04 07:47:40 +000076char BranchFolderPass::ID = 0;
Chris Lattner21ab22e2004-07-31 10:01:27 +000077
Dan Gohman7cc253e2009-11-11 19:56:05 +000078FunctionPass *llvm::createBranchFoldingPass(bool DefaultEnableTailMerge) {
Bob Wilsona5971032009-10-28 20:46:46 +000079 return new BranchFolderPass(DefaultEnableTailMerge);
Evan Cheng030a0a02009-09-04 07:47:40 +000080}
81
82bool BranchFolderPass::runOnMachineFunction(MachineFunction &MF) {
83 return OptimizeFunction(MF,
84 MF.getTarget().getInstrInfo(),
85 MF.getTarget().getRegisterInfo(),
86 getAnalysisIfAvailable<MachineModuleInfo>());
87}
88
89
Evan Chengcbc988b2011-05-12 00:56:58 +000090BranchFolder::BranchFolder(bool defaultEnableTailMerge, bool CommonHoist) {
Evan Cheng030a0a02009-09-04 07:47:40 +000091 switch (FlagEnableTailMerge) {
92 case cl::BOU_UNSET: EnableTailMerge = defaultEnableTailMerge; break;
93 case cl::BOU_TRUE: EnableTailMerge = true; break;
94 case cl::BOU_FALSE: EnableTailMerge = false; break;
95 }
Evan Chengcbc988b2011-05-12 00:56:58 +000096
97 EnableHoistCommonCode = CommonHoist;
Evan Chengb3c27422009-09-03 23:54:22 +000098}
Chris Lattner21ab22e2004-07-31 10:01:27 +000099
Chris Lattnerc50ffcb2006-10-17 17:13:52 +0000100/// RemoveDeadBlock - Remove the specified dead machine basic block from the
101/// function, updating the CFG.
Chris Lattner683747a2006-10-17 23:17:27 +0000102void BranchFolder::RemoveDeadBlock(MachineBasicBlock *MBB) {
Jim Laskey033c9712007-02-22 16:39:03 +0000103 assert(MBB->pred_empty() && "MBB must be dead!");
David Greene465e2b92009-12-24 00:34:21 +0000104 DEBUG(dbgs() << "\nRemoving MBB: " << *MBB);
Dan Gohman4e3f1252009-11-11 18:38:14 +0000105
Chris Lattnerc50ffcb2006-10-17 17:13:52 +0000106 MachineFunction *MF = MBB->getParent();
107 // drop all successors.
108 while (!MBB->succ_empty())
109 MBB->removeSuccessor(MBB->succ_end()-1);
Dan Gohman4e3f1252009-11-11 18:38:14 +0000110
Chris Lattnerc50ffcb2006-10-17 17:13:52 +0000111 // Remove the block.
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000112 MF->erase(MBB);
Chris Lattnerc50ffcb2006-10-17 17:13:52 +0000113}
114
Evan Cheng80b09fe2008-04-10 02:32:10 +0000115/// OptimizeImpDefsBlock - If a basic block is just a bunch of implicit_def
116/// followed by terminators, and if the implicitly defined registers are not
117/// used by the terminators, remove those implicit_def's. e.g.
118/// BB1:
119/// r0 = implicit_def
120/// r1 = implicit_def
121/// br
122/// This block can be optimized away later if the implicit instructions are
123/// removed.
124bool BranchFolder::OptimizeImpDefsBlock(MachineBasicBlock *MBB) {
125 SmallSet<unsigned, 4> ImpDefRegs;
126 MachineBasicBlock::iterator I = MBB->begin();
127 while (I != MBB->end()) {
Chris Lattner518bb532010-02-09 19:54:29 +0000128 if (!I->isImplicitDef())
Evan Cheng80b09fe2008-04-10 02:32:10 +0000129 break;
130 unsigned Reg = I->getOperand(0).getReg();
131 ImpDefRegs.insert(Reg);
Evan Cheng030a0a02009-09-04 07:47:40 +0000132 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
Evan Cheng80b09fe2008-04-10 02:32:10 +0000133 unsigned SubReg = *SubRegs; ++SubRegs)
134 ImpDefRegs.insert(SubReg);
135 ++I;
136 }
137 if (ImpDefRegs.empty())
138 return false;
139
140 MachineBasicBlock::iterator FirstTerm = I;
141 while (I != MBB->end()) {
142 if (!TII->isUnpredicatedTerminator(I))
143 return false;
144 // See if it uses any of the implicitly defined registers.
145 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
146 MachineOperand &MO = I->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000147 if (!MO.isReg() || !MO.isUse())
Evan Cheng80b09fe2008-04-10 02:32:10 +0000148 continue;
149 unsigned Reg = MO.getReg();
150 if (ImpDefRegs.count(Reg))
151 return false;
152 }
153 ++I;
154 }
155
156 I = MBB->begin();
157 while (I != FirstTerm) {
158 MachineInstr *ImpDefMI = &*I;
159 ++I;
160 MBB->erase(ImpDefMI);
161 }
162
163 return true;
164}
165
Evan Cheng030a0a02009-09-04 07:47:40 +0000166/// OptimizeFunction - Perhaps branch folding, tail merging and other
167/// CFG optimizations on the given function.
168bool BranchFolder::OptimizeFunction(MachineFunction &MF,
169 const TargetInstrInfo *tii,
170 const TargetRegisterInfo *tri,
171 MachineModuleInfo *mmi) {
172 if (!tii) return false;
Chris Lattner7821a8a2006-10-14 00:21:48 +0000173
Evan Cheng030a0a02009-09-04 07:47:40 +0000174 TII = tii;
175 TRI = tri;
176 MMI = mmi;
177
178 RS = TRI->requiresRegisterScavenging(MF) ? new RegScavenger() : NULL;
Evan Cheng80b09fe2008-04-10 02:32:10 +0000179
Dale Johannesen14ba0cc2007-05-15 21:19:17 +0000180 // Fix CFG. The later algorithms expect it to be right.
Evan Cheng030a0a02009-09-04 07:47:40 +0000181 bool MadeChange = false;
Dale Johannesen14ba0cc2007-05-15 21:19:17 +0000182 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; I++) {
183 MachineBasicBlock *MBB = I, *TBB = 0, *FBB = 0;
Owen Anderson44eb65c2008-08-14 22:49:33 +0000184 SmallVector<MachineOperand, 4> Cond;
Evan Chengdc54d312009-02-09 07:14:22 +0000185 if (!TII->AnalyzeBranch(*MBB, TBB, FBB, Cond, true))
Evan Cheng030a0a02009-09-04 07:47:40 +0000186 MadeChange |= MBB->CorrectExtraCFGEdges(TBB, FBB, !Cond.empty());
187 MadeChange |= OptimizeImpDefsBlock(MBB);
Dale Johannesen14ba0cc2007-05-15 21:19:17 +0000188 }
189
Chris Lattner12143052006-10-21 00:47:49 +0000190 bool MadeChangeThisIteration = true;
191 while (MadeChangeThisIteration) {
Evan Chengcbc988b2011-05-12 00:56:58 +0000192 MadeChangeThisIteration = TailMergeBlocks(MF);
193 MadeChangeThisIteration |= OptimizeBranches(MF);
194 if (EnableHoistCommonCode)
195 MadeChangeThisIteration |= HoistCommonCode(MF);
Evan Cheng030a0a02009-09-04 07:47:40 +0000196 MadeChange |= MadeChangeThisIteration;
Chris Lattner21ab22e2004-07-31 10:01:27 +0000197 }
198
Bob Wilson80d23702010-03-19 19:05:41 +0000199 // See if any jump tables have become dead as the code generator
Chris Lattner6acfe122006-10-28 18:34:47 +0000200 // did its thing.
201 MachineJumpTableInfo *JTI = MF.getJumpTableInfo();
Chris Lattner071c62f2010-01-25 23:26:13 +0000202 if (JTI == 0) {
203 delete RS;
204 return MadeChange;
205 }
206
Bob Wilson80d23702010-03-19 19:05:41 +0000207 // Walk the function to find jump tables that are live.
208 BitVector JTIsLive(JTI->getJumpTables().size());
Chris Lattner071c62f2010-01-25 23:26:13 +0000209 for (MachineFunction::iterator BB = MF.begin(), E = MF.end();
210 BB != E; ++BB) {
211 for (MachineBasicBlock::iterator I = BB->begin(), E = BB->end();
212 I != E; ++I)
213 for (unsigned op = 0, e = I->getNumOperands(); op != e; ++op) {
214 MachineOperand &Op = I->getOperand(op);
215 if (!Op.isJTI()) continue;
Chris Lattner6acfe122006-10-28 18:34:47 +0000216
Chris Lattner071c62f2010-01-25 23:26:13 +0000217 // Remember that this JT is live.
Bob Wilson80d23702010-03-19 19:05:41 +0000218 JTIsLive.set(Op.getIndex());
Chris Lattner6acfe122006-10-28 18:34:47 +0000219 }
220 }
Evan Cheng030a0a02009-09-04 07:47:40 +0000221
Bob Wilson80d23702010-03-19 19:05:41 +0000222 // Finally, remove dead jump tables. This happens when the
223 // indirect jump was unreachable (and thus deleted).
Chris Lattner071c62f2010-01-25 23:26:13 +0000224 for (unsigned i = 0, e = JTIsLive.size(); i != e; ++i)
225 if (!JTIsLive.test(i)) {
226 JTI->RemoveJumpTable(i);
227 MadeChange = true;
228 }
229
Dale Johannesen69cb9b72007-03-20 21:35:06 +0000230 delete RS;
Evan Cheng030a0a02009-09-04 07:47:40 +0000231 return MadeChange;
Chris Lattner21ab22e2004-07-31 10:01:27 +0000232}
233
Chris Lattner12143052006-10-21 00:47:49 +0000234//===----------------------------------------------------------------------===//
235// Tail Merging of Blocks
236//===----------------------------------------------------------------------===//
237
238/// HashMachineInstr - Compute a hash value for MI and its operands.
239static unsigned HashMachineInstr(const MachineInstr *MI) {
240 unsigned Hash = MI->getOpcode();
241 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
242 const MachineOperand &Op = MI->getOperand(i);
Dan Gohman4e3f1252009-11-11 18:38:14 +0000243
Chris Lattner12143052006-10-21 00:47:49 +0000244 // Merge in bits from the operand if easy.
245 unsigned OperandHash = 0;
246 switch (Op.getType()) {
247 case MachineOperand::MO_Register: OperandHash = Op.getReg(); break;
248 case MachineOperand::MO_Immediate: OperandHash = Op.getImm(); break;
249 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000250 OperandHash = Op.getMBB()->getNumber();
Chris Lattner12143052006-10-21 00:47:49 +0000251 break;
Chris Lattner8aa797a2007-12-30 23:10:15 +0000252 case MachineOperand::MO_FrameIndex:
Chris Lattner12143052006-10-21 00:47:49 +0000253 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner12143052006-10-21 00:47:49 +0000254 case MachineOperand::MO_JumpTableIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000255 OperandHash = Op.getIndex();
Chris Lattner12143052006-10-21 00:47:49 +0000256 break;
257 case MachineOperand::MO_GlobalAddress:
258 case MachineOperand::MO_ExternalSymbol:
259 // Global address / external symbol are too hard, don't bother, but do
260 // pull in the offset.
261 OperandHash = Op.getOffset();
262 break;
263 default: break;
264 }
Dan Gohman4e3f1252009-11-11 18:38:14 +0000265
Chris Lattner12143052006-10-21 00:47:49 +0000266 Hash += ((OperandHash << 3) | Op.getType()) << (i&31);
267 }
268 return Hash;
269}
270
Dan Gohman30fc5bb2010-05-03 14:35:47 +0000271/// HashEndOfMBB - Hash the last instruction in the MBB.
272static unsigned HashEndOfMBB(const MachineBasicBlock *MBB) {
Chris Lattner12143052006-10-21 00:47:49 +0000273 MachineBasicBlock::const_iterator I = MBB->end();
274 if (I == MBB->begin())
275 return 0; // Empty MBB.
Dan Gohman4e3f1252009-11-11 18:38:14 +0000276
Chris Lattner12143052006-10-21 00:47:49 +0000277 --I;
Dale Johannesen84839da2010-03-08 05:38:13 +0000278 // Skip debug info so it will not affect codegen.
279 while (I->isDebugValue()) {
280 if (I==MBB->begin())
281 return 0; // MBB empty except for debug info.
282 --I;
283 }
Dan Gohman4e3f1252009-11-11 18:38:14 +0000284
Dan Gohman30fc5bb2010-05-03 14:35:47 +0000285 return HashMachineInstr(I);
Chris Lattner12143052006-10-21 00:47:49 +0000286}
287
288/// ComputeCommonTailLength - Given two machine basic blocks, compute the number
289/// of instructions they actually have in common together at their end. Return
290/// iterators for the first shared instruction in each block.
291static unsigned ComputeCommonTailLength(MachineBasicBlock *MBB1,
292 MachineBasicBlock *MBB2,
293 MachineBasicBlock::iterator &I1,
294 MachineBasicBlock::iterator &I2) {
295 I1 = MBB1->end();
296 I2 = MBB2->end();
Dan Gohman4e3f1252009-11-11 18:38:14 +0000297
Chris Lattner12143052006-10-21 00:47:49 +0000298 unsigned TailLen = 0;
299 while (I1 != MBB1->begin() && I2 != MBB2->begin()) {
300 --I1; --I2;
Dale Johannesen84839da2010-03-08 05:38:13 +0000301 // Skip debugging pseudos; necessary to avoid changing the code.
302 while (I1->isDebugValue()) {
Dale Johannesenc5cf2272010-03-10 05:45:47 +0000303 if (I1==MBB1->begin()) {
304 while (I2->isDebugValue()) {
305 if (I2==MBB2->begin())
306 // I1==DBG at begin; I2==DBG at begin
307 return TailLen;
308 --I2;
309 }
310 ++I2;
311 // I1==DBG at begin; I2==non-DBG, or first of DBGs not at begin
Dale Johannesen84839da2010-03-08 05:38:13 +0000312 return TailLen;
Dale Johannesenc5cf2272010-03-10 05:45:47 +0000313 }
Dale Johannesen84839da2010-03-08 05:38:13 +0000314 --I1;
315 }
Dale Johannesenc5cf2272010-03-10 05:45:47 +0000316 // I1==first (untested) non-DBG preceding known match
Dale Johannesen84839da2010-03-08 05:38:13 +0000317 while (I2->isDebugValue()) {
Dale Johannesenc5cf2272010-03-10 05:45:47 +0000318 if (I2==MBB2->begin()) {
319 ++I1;
320 // I1==non-DBG, or first of DBGs not at begin; I2==DBG at begin
Dale Johannesen84839da2010-03-08 05:38:13 +0000321 return TailLen;
Dale Johannesenc5cf2272010-03-10 05:45:47 +0000322 }
Dale Johannesen84839da2010-03-08 05:38:13 +0000323 --I2;
324 }
Dale Johannesenc5cf2272010-03-10 05:45:47 +0000325 // I1, I2==first (untested) non-DBGs preceding known match
Dale Johannesen84839da2010-03-08 05:38:13 +0000326 if (!I1->isIdenticalTo(I2) ||
Bill Wendlingda6efc52007-10-25 19:49:32 +0000327 // FIXME: This check is dubious. It's used to get around a problem where
Bill Wendling0713a222007-10-25 18:23:45 +0000328 // people incorrectly expect inline asm directives to remain in the same
329 // relative order. This is untenable because normal compiler
330 // optimizations (like this one) may reorder and/or merge these
331 // directives.
Chris Lattner518bb532010-02-09 19:54:29 +0000332 I1->isInlineAsm()) {
Chris Lattner12143052006-10-21 00:47:49 +0000333 ++I1; ++I2;
334 break;
335 }
336 ++TailLen;
337 }
Dale Johannesenc5cf2272010-03-10 05:45:47 +0000338 // Back past possible debugging pseudos at beginning of block. This matters
339 // when one block differs from the other only by whether debugging pseudos
340 // are present at the beginning. (This way, the various checks later for
341 // I1==MBB1->begin() work as expected.)
342 if (I1 == MBB1->begin() && I2 != MBB2->begin()) {
343 --I2;
344 while (I2->isDebugValue()) {
345 if (I2 == MBB2->begin()) {
346 return TailLen;
347 }
348 --I2;
349 }
350 ++I2;
351 }
352 if (I2 == MBB2->begin() && I1 != MBB1->begin()) {
353 --I1;
354 while (I1->isDebugValue()) {
355 if (I1 == MBB1->begin())
356 return TailLen;
357 --I1;
358 }
359 ++I1;
360 }
Chris Lattner12143052006-10-21 00:47:49 +0000361 return TailLen;
362}
363
364/// ReplaceTailWithBranchTo - Delete the instruction OldInst and everything
Evan Cheng86050dc2010-06-18 23:09:54 +0000365/// after it, replacing it with an unconditional branch to NewDest.
Chris Lattner12143052006-10-21 00:47:49 +0000366void BranchFolder::ReplaceTailWithBranchTo(MachineBasicBlock::iterator OldInst,
367 MachineBasicBlock *NewDest) {
Evan Cheng86050dc2010-06-18 23:09:54 +0000368 TII->ReplaceTailWithBranchTo(OldInst, NewDest);
Chris Lattner12143052006-10-21 00:47:49 +0000369 ++NumTailMerge;
370}
371
Chris Lattner1d08d832006-11-01 01:16:12 +0000372/// SplitMBBAt - Given a machine basic block and an iterator into it, split the
373/// MBB so that the part before the iterator falls into the part starting at the
374/// iterator. This returns the new MBB.
375MachineBasicBlock *BranchFolder::SplitMBBAt(MachineBasicBlock &CurMBB,
376 MachineBasicBlock::iterator BBI1) {
Evan Cheng4d54e5b2010-06-22 01:18:16 +0000377 if (!TII->isLegalToSplitMBBAt(CurMBB, BBI1))
378 return 0;
379
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000380 MachineFunction &MF = *CurMBB.getParent();
381
Chris Lattner1d08d832006-11-01 01:16:12 +0000382 // Create the fall-through block.
383 MachineFunction::iterator MBBI = &CurMBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000384 MachineBasicBlock *NewMBB =MF.CreateMachineBasicBlock(CurMBB.getBasicBlock());
385 CurMBB.getParent()->insert(++MBBI, NewMBB);
Chris Lattner1d08d832006-11-01 01:16:12 +0000386
387 // Move all the successors of this block to the specified block.
Dan Gohman04478e52008-06-19 17:22:29 +0000388 NewMBB->transferSuccessors(&CurMBB);
Dan Gohman4e3f1252009-11-11 18:38:14 +0000389
Chris Lattner1d08d832006-11-01 01:16:12 +0000390 // Add an edge from CurMBB to NewMBB for the fall-through.
391 CurMBB.addSuccessor(NewMBB);
Dan Gohman4e3f1252009-11-11 18:38:14 +0000392
Chris Lattner1d08d832006-11-01 01:16:12 +0000393 // Splice the code over.
394 NewMBB->splice(NewMBB->end(), &CurMBB, BBI1, CurMBB.end());
Dale Johannesen69cb9b72007-03-20 21:35:06 +0000395
396 // For targets that use the register scavenger, we must maintain LiveIns.
397 if (RS) {
398 RS->enterBasicBlock(&CurMBB);
399 if (!CurMBB.empty())
400 RS->forward(prior(CurMBB.end()));
Evan Cheng030a0a02009-09-04 07:47:40 +0000401 BitVector RegsLiveAtExit(TRI->getNumRegs());
Dale Johannesen69cb9b72007-03-20 21:35:06 +0000402 RS->getRegsUsed(RegsLiveAtExit, false);
Dan Gohman8520149d2009-11-12 01:51:28 +0000403 for (unsigned int i = 0, e = TRI->getNumRegs(); i != e; i++)
Dale Johannesen69cb9b72007-03-20 21:35:06 +0000404 if (RegsLiveAtExit[i])
405 NewMBB->addLiveIn(i);
406 }
407
Chris Lattner1d08d832006-11-01 01:16:12 +0000408 return NewMBB;
409}
410
Chris Lattnerd4bf3c22006-11-01 19:36:29 +0000411/// EstimateRuntime - Make a rough estimate for how long it will take to run
412/// the specified code.
413static unsigned EstimateRuntime(MachineBasicBlock::iterator I,
Chris Lattner69244302008-01-07 01:56:04 +0000414 MachineBasicBlock::iterator E) {
Chris Lattnerd4bf3c22006-11-01 19:36:29 +0000415 unsigned Time = 0;
416 for (; I != E; ++I) {
Dale Johannesenb0812f12010-03-05 00:02:59 +0000417 if (I->isDebugValue())
418 continue;
Chris Lattner749c6f62008-01-07 07:27:27 +0000419 const TargetInstrDesc &TID = I->getDesc();
420 if (TID.isCall())
Chris Lattnerd4bf3c22006-11-01 19:36:29 +0000421 Time += 10;
Dan Gohman41474ba2008-12-03 02:30:17 +0000422 else if (TID.mayLoad() || TID.mayStore())
Chris Lattnerd4bf3c22006-11-01 19:36:29 +0000423 Time += 2;
424 else
425 ++Time;
426 }
427 return Time;
428}
429
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000430// CurMBB needs to add an unconditional branch to SuccMBB (we removed these
431// branches temporarily for tail merging). In the case where CurMBB ends
432// with a conditional branch to the next block, optimize by reversing the
433// test and conditionally branching to SuccMBB instead.
Bob Wilsond34f5d92009-11-16 18:08:46 +0000434static void FixTail(MachineBasicBlock *CurMBB, MachineBasicBlock *SuccBB,
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000435 const TargetInstrInfo *TII) {
436 MachineFunction *MF = CurMBB->getParent();
Chris Lattner7896c9f2009-12-03 00:50:42 +0000437 MachineFunction::iterator I = llvm::next(MachineFunction::iterator(CurMBB));
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000438 MachineBasicBlock *TBB = 0, *FBB = 0;
Owen Anderson44eb65c2008-08-14 22:49:33 +0000439 SmallVector<MachineOperand, 4> Cond;
Stuart Hastings3bf91252010-06-17 22:43:56 +0000440 DebugLoc dl; // FIXME: this is nowhere
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000441 if (I != MF->end() &&
Evan Chengdc54d312009-02-09 07:14:22 +0000442 !TII->AnalyzeBranch(*CurMBB, TBB, FBB, Cond, true)) {
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000443 MachineBasicBlock *NextBB = I;
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000444 if (TBB == NextBB && !Cond.empty() && !FBB) {
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000445 if (!TII->ReverseBranchCondition(Cond)) {
446 TII->RemoveBranch(*CurMBB);
Stuart Hastings3bf91252010-06-17 22:43:56 +0000447 TII->InsertBranch(*CurMBB, SuccBB, NULL, Cond, dl);
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000448 return;
449 }
450 }
451 }
Stuart Hastings3bf91252010-06-17 22:43:56 +0000452 TII->InsertBranch(*CurMBB, SuccBB, NULL,
453 SmallVector<MachineOperand, 0>(), dl);
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000454}
455
Dan Gohmanffe644e2009-11-11 21:57:02 +0000456bool
457BranchFolder::MergePotentialsElt::operator<(const MergePotentialsElt &o) const {
458 if (getHash() < o.getHash())
459 return true;
460 else if (getHash() > o.getHash())
461 return false;
462 else if (getBlock()->getNumber() < o.getBlock()->getNumber())
463 return true;
464 else if (getBlock()->getNumber() > o.getBlock()->getNumber())
465 return false;
466 else {
467 // _GLIBCXX_DEBUG checks strict weak ordering, which involves comparing
468 // an object with itself.
Duncan Sands97b4ac82007-07-11 08:47:55 +0000469#ifndef _GLIBCXX_DEBUG
Dan Gohmanffe644e2009-11-11 21:57:02 +0000470 llvm_unreachable("Predecessor appears twice");
David Greene67fcdf72007-07-10 22:00:30 +0000471#endif
Dan Gohmanffe644e2009-11-11 21:57:02 +0000472 return false;
473 }
Dale Johannesen95ef4062007-05-29 23:47:50 +0000474}
475
Dan Gohman2210c0b2009-11-11 19:48:59 +0000476/// CountTerminators - Count the number of terminators in the given
477/// block and set I to the position of the first non-terminator, if there
478/// is one, or MBB->end() otherwise.
479static unsigned CountTerminators(MachineBasicBlock *MBB,
480 MachineBasicBlock::iterator &I) {
481 I = MBB->end();
482 unsigned NumTerms = 0;
483 for (;;) {
484 if (I == MBB->begin()) {
485 I = MBB->end();
486 break;
487 }
488 --I;
489 if (!I->getDesc().isTerminator()) break;
490 ++NumTerms;
491 }
492 return NumTerms;
493}
494
Bob Wilson7b888b82009-10-29 18:40:06 +0000495/// ProfitableToMerge - Check if two machine basic blocks have a common tail
496/// and decide if it would be profitable to merge those tails. Return the
497/// length of the common tail and iterators to the first common instruction
498/// in each block.
499static bool ProfitableToMerge(MachineBasicBlock *MBB1,
500 MachineBasicBlock *MBB2,
501 unsigned minCommonTailLength,
502 unsigned &CommonTailLen,
503 MachineBasicBlock::iterator &I1,
Dan Gohman2210c0b2009-11-11 19:48:59 +0000504 MachineBasicBlock::iterator &I2,
505 MachineBasicBlock *SuccBB,
506 MachineBasicBlock *PredBB) {
Bob Wilson7b888b82009-10-29 18:40:06 +0000507 CommonTailLen = ComputeCommonTailLength(MBB1, MBB2, I1, I2);
Bob Wilson7b888b82009-10-29 18:40:06 +0000508 if (CommonTailLen == 0)
509 return false;
Evan Chengcf13af62011-02-21 23:39:48 +0000510 DEBUG(dbgs() << "Common tail length of BB#" << MBB1->getNumber()
511 << " and BB#" << MBB2->getNumber() << " is " << CommonTailLen
512 << '\n');
Bob Wilson7b888b82009-10-29 18:40:06 +0000513
Dan Gohman2210c0b2009-11-11 19:48:59 +0000514 // It's almost always profitable to merge any number of non-terminator
515 // instructions with the block that falls through into the common successor.
516 if (MBB1 == PredBB || MBB2 == PredBB) {
517 MachineBasicBlock::iterator I;
518 unsigned NumTerms = CountTerminators(MBB1 == PredBB ? MBB2 : MBB1, I);
519 if (CommonTailLen > NumTerms)
520 return true;
521 }
522
Dan Gohmanad6af452009-11-12 00:39:10 +0000523 // If one of the blocks can be completely merged and happens to be in
524 // a position where the other could fall through into it, merge any number
525 // of instructions, because it can be done without a branch.
526 // TODO: If the blocks are not adjacent, move one of them so that they are?
527 if (MBB1->isLayoutSuccessor(MBB2) && I2 == MBB2->begin())
528 return true;
529 if (MBB2->isLayoutSuccessor(MBB1) && I1 == MBB1->begin())
530 return true;
531
Dan Gohman2210c0b2009-11-11 19:48:59 +0000532 // If both blocks have an unconditional branch temporarily stripped out,
Dan Gohmanc4c550c2009-11-13 21:02:15 +0000533 // count that as an additional common instruction for the following
534 // heuristics.
535 unsigned EffectiveTailLen = CommonTailLen;
Bob Wilson3cbc3122009-11-16 17:56:13 +0000536 if (SuccBB && MBB1 != PredBB && MBB2 != PredBB &&
Dan Gohman2210c0b2009-11-11 19:48:59 +0000537 !MBB1->back().getDesc().isBarrier() &&
538 !MBB2->back().getDesc().isBarrier())
Dan Gohmanc4c550c2009-11-13 21:02:15 +0000539 ++EffectiveTailLen;
Dan Gohman2210c0b2009-11-11 19:48:59 +0000540
541 // Check if the common tail is long enough to be worthwhile.
Dan Gohmanc4c550c2009-11-13 21:02:15 +0000542 if (EffectiveTailLen >= minCommonTailLength)
Dan Gohman2210c0b2009-11-11 19:48:59 +0000543 return true;
544
Dan Gohmanc4c550c2009-11-13 21:02:15 +0000545 // If we are optimizing for code size, 2 instructions in common is enough if
546 // we don't have to split a block. At worst we will be introducing 1 new
547 // branch instruction, which is likely to be smaller than the 2
548 // instructions that would be deleted in the merge.
Evan Chengcf13af62011-02-21 23:39:48 +0000549 MachineFunction *MF = MBB1->getParent();
Dan Gohmanc4c550c2009-11-13 21:02:15 +0000550 if (EffectiveTailLen >= 2 &&
551 MF->getFunction()->hasFnAttr(Attribute::OptimizeForSize) &&
Bob Wilson7b888b82009-10-29 18:40:06 +0000552 (I1 == MBB1->begin() || I2 == MBB2->begin()))
553 return true;
554
555 return false;
556}
557
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000558/// ComputeSameTails - Look through all the blocks in MergePotentials that have
Dan Gohman4e3f1252009-11-11 18:38:14 +0000559/// hash CurHash (guaranteed to match the last element). Build the vector
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000560/// SameTails of all those that have the (same) largest number of instructions
561/// in common of any pair of these blocks. SameTails entries contain an
Dan Gohman4e3f1252009-11-11 18:38:14 +0000562/// iterator into MergePotentials (from which the MachineBasicBlock can be
563/// found) and a MachineBasicBlock::iterator into that MBB indicating the
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000564/// instruction where the matching code sequence begins.
565/// Order of elements in SameTails is the reverse of the order in which
566/// those blocks appear in MergePotentials (where they are not necessarily
567/// consecutive).
Dan Gohman4e3f1252009-11-11 18:38:14 +0000568unsigned BranchFolder::ComputeSameTails(unsigned CurHash,
Dan Gohman2210c0b2009-11-11 19:48:59 +0000569 unsigned minCommonTailLength,
570 MachineBasicBlock *SuccBB,
571 MachineBasicBlock *PredBB) {
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000572 unsigned maxCommonTailLength = 0U;
573 SameTails.clear();
574 MachineBasicBlock::iterator TrialBBI1, TrialBBI2;
575 MPIterator HighestMPIter = prior(MergePotentials.end());
576 for (MPIterator CurMPIter = prior(MergePotentials.end()),
Dan Gohman4e3f1252009-11-11 18:38:14 +0000577 B = MergePotentials.begin();
Dan Gohman8520149d2009-11-12 01:51:28 +0000578 CurMPIter != B && CurMPIter->getHash() == CurHash;
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000579 --CurMPIter) {
Dan Gohmanffe644e2009-11-11 21:57:02 +0000580 for (MPIterator I = prior(CurMPIter); I->getHash() == CurHash ; --I) {
Bob Wilson7b888b82009-10-29 18:40:06 +0000581 unsigned CommonTailLen;
Dan Gohmanffe644e2009-11-11 21:57:02 +0000582 if (ProfitableToMerge(CurMPIter->getBlock(), I->getBlock(),
583 minCommonTailLength,
Dan Gohman2210c0b2009-11-11 19:48:59 +0000584 CommonTailLen, TrialBBI1, TrialBBI2,
585 SuccBB, PredBB)) {
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000586 if (CommonTailLen > maxCommonTailLength) {
587 SameTails.clear();
588 maxCommonTailLength = CommonTailLen;
589 HighestMPIter = CurMPIter;
Dan Gohmanffe644e2009-11-11 21:57:02 +0000590 SameTails.push_back(SameTailElt(CurMPIter, TrialBBI1));
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000591 }
592 if (HighestMPIter == CurMPIter &&
593 CommonTailLen == maxCommonTailLength)
Dan Gohmanffe644e2009-11-11 21:57:02 +0000594 SameTails.push_back(SameTailElt(I, TrialBBI2));
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000595 }
Dan Gohman4e3f1252009-11-11 18:38:14 +0000596 if (I == B)
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000597 break;
598 }
599 }
600 return maxCommonTailLength;
601}
602
603/// RemoveBlocksWithHash - Remove all blocks with hash CurHash from
604/// MergePotentials, restoring branches at ends of blocks as appropriate.
Dan Gohman4e3f1252009-11-11 18:38:14 +0000605void BranchFolder::RemoveBlocksWithHash(unsigned CurHash,
Bob Wilsond34f5d92009-11-16 18:08:46 +0000606 MachineBasicBlock *SuccBB,
607 MachineBasicBlock *PredBB) {
Dale Johannesen679860e2008-05-23 17:19:02 +0000608 MPIterator CurMPIter, B;
Dan Gohman4e3f1252009-11-11 18:38:14 +0000609 for (CurMPIter = prior(MergePotentials.end()), B = MergePotentials.begin();
Dan Gohmanffe644e2009-11-11 21:57:02 +0000610 CurMPIter->getHash() == CurHash;
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000611 --CurMPIter) {
612 // Put the unconditional branch back, if we need one.
Dan Gohmanffe644e2009-11-11 21:57:02 +0000613 MachineBasicBlock *CurMBB = CurMPIter->getBlock();
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000614 if (SuccBB && CurMBB != PredBB)
615 FixTail(CurMBB, SuccBB, TII);
Dan Gohman4e3f1252009-11-11 18:38:14 +0000616 if (CurMPIter == B)
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000617 break;
618 }
Dan Gohmanffe644e2009-11-11 21:57:02 +0000619 if (CurMPIter->getHash() != CurHash)
Dale Johannesen679860e2008-05-23 17:19:02 +0000620 CurMPIter++;
621 MergePotentials.erase(CurMPIter, MergePotentials.end());
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000622}
623
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000624/// CreateCommonTailOnlyBlock - None of the blocks to be tail-merged consist
625/// only of the common tail. Create a block that does by splitting one.
Evan Cheng4d54e5b2010-06-22 01:18:16 +0000626bool BranchFolder::CreateCommonTailOnlyBlock(MachineBasicBlock *&PredBB,
627 unsigned maxCommonTailLength,
628 unsigned &commonTailIndex) {
629 commonTailIndex = 0;
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000630 unsigned TimeEstimate = ~0U;
Dan Gohman8520149d2009-11-12 01:51:28 +0000631 for (unsigned i = 0, e = SameTails.size(); i != e; ++i) {
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000632 // Use PredBB if possible; that doesn't require a new branch.
Dan Gohmanffe644e2009-11-11 21:57:02 +0000633 if (SameTails[i].getBlock() == PredBB) {
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000634 commonTailIndex = i;
635 break;
636 }
637 // Otherwise, make a (fairly bogus) choice based on estimate of
638 // how long it will take the various blocks to execute.
Dan Gohmanffe644e2009-11-11 21:57:02 +0000639 unsigned t = EstimateRuntime(SameTails[i].getBlock()->begin(),
640 SameTails[i].getTailStartPos());
Dan Gohman4e3f1252009-11-11 18:38:14 +0000641 if (t <= TimeEstimate) {
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000642 TimeEstimate = t;
643 commonTailIndex = i;
644 }
645 }
646
Dan Gohmanffe644e2009-11-11 21:57:02 +0000647 MachineBasicBlock::iterator BBI =
648 SameTails[commonTailIndex].getTailStartPos();
649 MachineBasicBlock *MBB = SameTails[commonTailIndex].getBlock();
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000650
Dale Johannesen84839da2010-03-08 05:38:13 +0000651 // If the common tail includes any debug info we will take it pretty
652 // randomly from one of the inputs. Might be better to remove it?
David Greene465e2b92009-12-24 00:34:21 +0000653 DEBUG(dbgs() << "\nSplitting BB#" << MBB->getNumber() << ", size "
Bill Wendling3403bcd2009-08-22 20:03:00 +0000654 << maxCommonTailLength);
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000655
656 MachineBasicBlock *newMBB = SplitMBBAt(*MBB, BBI);
Evan Cheng4d54e5b2010-06-22 01:18:16 +0000657 if (!newMBB) {
658 DEBUG(dbgs() << "... failed!");
659 return false;
660 }
661
Dan Gohmanffe644e2009-11-11 21:57:02 +0000662 SameTails[commonTailIndex].setBlock(newMBB);
663 SameTails[commonTailIndex].setTailStartPos(newMBB->begin());
Dan Gohman4e3f1252009-11-11 18:38:14 +0000664
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000665 // If we split PredBB, newMBB is the new predecessor.
Dan Gohman4e3f1252009-11-11 18:38:14 +0000666 if (PredBB == MBB)
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000667 PredBB = newMBB;
668
Evan Cheng4d54e5b2010-06-22 01:18:16 +0000669 return true;
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000670}
671
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000672// See if any of the blocks in MergePotentials (which all have a common single
673// successor, or all have no successor) can be tail-merged. If there is a
674// successor, any blocks in MergePotentials that are not tail-merged and
675// are not immediately before Succ must have an unconditional branch to
Dan Gohman4e3f1252009-11-11 18:38:14 +0000676// Succ added (but the predecessor/successor lists need no adjustment).
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000677// The lone predecessor of Succ that falls through into Succ,
678// if any, is given in PredBB.
679
Dan Gohman2210c0b2009-11-11 19:48:59 +0000680bool BranchFolder::TryTailMergeBlocks(MachineBasicBlock *SuccBB,
Bob Wilsond34f5d92009-11-16 18:08:46 +0000681 MachineBasicBlock *PredBB) {
Evan Cheng030a0a02009-09-04 07:47:40 +0000682 bool MadeChange = false;
683
Dan Gohman2210c0b2009-11-11 19:48:59 +0000684 // Except for the special cases below, tail-merge if there are at least
685 // this many instructions in common.
686 unsigned minCommonTailLength = TailMergeSize;
Dan Gohman4e3f1252009-11-11 18:38:14 +0000687
David Greene465e2b92009-12-24 00:34:21 +0000688 DEBUG(dbgs() << "\nTryTailMergeBlocks: ";
Dan Gohman2210c0b2009-11-11 19:48:59 +0000689 for (unsigned i = 0, e = MergePotentials.size(); i != e; ++i)
David Greene465e2b92009-12-24 00:34:21 +0000690 dbgs() << "BB#" << MergePotentials[i].getBlock()->getNumber()
Dan Gohman2210c0b2009-11-11 19:48:59 +0000691 << (i == e-1 ? "" : ", ");
David Greene465e2b92009-12-24 00:34:21 +0000692 dbgs() << "\n";
Dan Gohman2210c0b2009-11-11 19:48:59 +0000693 if (SuccBB) {
David Greene465e2b92009-12-24 00:34:21 +0000694 dbgs() << " with successor BB#" << SuccBB->getNumber() << '\n';
Dan Gohman2210c0b2009-11-11 19:48:59 +0000695 if (PredBB)
David Greene465e2b92009-12-24 00:34:21 +0000696 dbgs() << " which has fall-through from BB#"
Dan Gohman2210c0b2009-11-11 19:48:59 +0000697 << PredBB->getNumber() << "\n";
698 }
David Greene465e2b92009-12-24 00:34:21 +0000699 dbgs() << "Looking for common tails of at least "
Dan Gohman2210c0b2009-11-11 19:48:59 +0000700 << minCommonTailLength << " instruction"
701 << (minCommonTailLength == 1 ? "" : "s") << '\n';
702 );
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000703
Chris Lattner12143052006-10-21 00:47:49 +0000704 // Sort by hash value so that blocks with identical end sequences sort
705 // together.
Dan Gohmanffe644e2009-11-11 21:57:02 +0000706 std::stable_sort(MergePotentials.begin(), MergePotentials.end());
Chris Lattner12143052006-10-21 00:47:49 +0000707
708 // Walk through equivalence sets looking for actual exact matches.
709 while (MergePotentials.size() > 1) {
Dan Gohmanffe644e2009-11-11 21:57:02 +0000710 unsigned CurHash = MergePotentials.back().getHash();
Dan Gohman4e3f1252009-11-11 18:38:14 +0000711
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000712 // Build SameTails, identifying the set of blocks with this hash code
713 // and with the maximum number of instructions in common.
Dan Gohman4e3f1252009-11-11 18:38:14 +0000714 unsigned maxCommonTailLength = ComputeSameTails(CurHash,
Dan Gohman2210c0b2009-11-11 19:48:59 +0000715 minCommonTailLength,
716 SuccBB, PredBB);
Dale Johannesen7aea8322007-05-23 21:07:20 +0000717
Dan Gohman4e3f1252009-11-11 18:38:14 +0000718 // If we didn't find any pair that has at least minCommonTailLength
Dale Johannesen6ae83fa2008-05-09 21:24:35 +0000719 // instructions in common, remove all blocks with this hash code and retry.
720 if (SameTails.empty()) {
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000721 RemoveBlocksWithHash(CurHash, SuccBB, PredBB);
Dale Johannesen7aea8322007-05-23 21:07:20 +0000722 continue;
Chris Lattner12143052006-10-21 00:47:49 +0000723 }
Chris Lattner1d08d832006-11-01 01:16:12 +0000724
Dale Johannesen6ae83fa2008-05-09 21:24:35 +0000725 // If one of the blocks is the entire common tail (and not the entry
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000726 // block, which we can't jump to), we can treat all blocks with this same
727 // tail at once. Use PredBB if that is one of the possibilities, as that
728 // will not introduce any extra branches.
Dan Gohmanffe644e2009-11-11 21:57:02 +0000729 MachineBasicBlock *EntryBB = MergePotentials.begin()->getBlock()->
730 getParent()->begin();
731 unsigned commonTailIndex = SameTails.size();
Dan Gohmanad6af452009-11-12 00:39:10 +0000732 // If there are two blocks, check to see if one can be made to fall through
733 // into the other.
734 if (SameTails.size() == 2 &&
735 SameTails[0].getBlock()->isLayoutSuccessor(SameTails[1].getBlock()) &&
736 SameTails[1].tailIsWholeBlock())
737 commonTailIndex = 1;
738 else if (SameTails.size() == 2 &&
739 SameTails[1].getBlock()->isLayoutSuccessor(
740 SameTails[0].getBlock()) &&
741 SameTails[0].tailIsWholeBlock())
742 commonTailIndex = 0;
743 else {
744 // Otherwise just pick one, favoring the fall-through predecessor if
745 // there is one.
746 for (unsigned i = 0, e = SameTails.size(); i != e; ++i) {
747 MachineBasicBlock *MBB = SameTails[i].getBlock();
748 if (MBB == EntryBB && SameTails[i].tailIsWholeBlock())
749 continue;
750 if (MBB == PredBB) {
751 commonTailIndex = i;
752 break;
753 }
754 if (SameTails[i].tailIsWholeBlock())
755 commonTailIndex = i;
Dale Johannesen6ae83fa2008-05-09 21:24:35 +0000756 }
Dale Johannesen6ae83fa2008-05-09 21:24:35 +0000757 }
Dale Johannesena5a21172007-06-01 23:02:45 +0000758
Dan Gohman2210c0b2009-11-11 19:48:59 +0000759 if (commonTailIndex == SameTails.size() ||
Dan Gohmanffe644e2009-11-11 21:57:02 +0000760 (SameTails[commonTailIndex].getBlock() == PredBB &&
761 !SameTails[commonTailIndex].tailIsWholeBlock())) {
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000762 // None of the blocks consist entirely of the common tail.
763 // Split a block so that one does.
Evan Cheng4d54e5b2010-06-22 01:18:16 +0000764 if (!CreateCommonTailOnlyBlock(PredBB,
765 maxCommonTailLength, commonTailIndex)) {
766 RemoveBlocksWithHash(CurHash, SuccBB, PredBB);
767 continue;
768 }
Chris Lattner1d08d832006-11-01 01:16:12 +0000769 }
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000770
Dan Gohmanffe644e2009-11-11 21:57:02 +0000771 MachineBasicBlock *MBB = SameTails[commonTailIndex].getBlock();
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000772 // MBB is common tail. Adjust all other BB's to jump to this one.
773 // Traversal must be forwards so erases work.
David Greene465e2b92009-12-24 00:34:21 +0000774 DEBUG(dbgs() << "\nUsing common tail in BB#" << MBB->getNumber()
Dan Gohman2210c0b2009-11-11 19:48:59 +0000775 << " for ");
776 for (unsigned int i=0, e = SameTails.size(); i != e; ++i) {
Dan Gohman4e3f1252009-11-11 18:38:14 +0000777 if (commonTailIndex == i)
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000778 continue;
David Greene465e2b92009-12-24 00:34:21 +0000779 DEBUG(dbgs() << "BB#" << SameTails[i].getBlock()->getNumber()
Dan Gohman2210c0b2009-11-11 19:48:59 +0000780 << (i == e-1 ? "" : ", "));
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000781 // Hack the end off BB i, making it jump to BB commonTailIndex instead.
Dan Gohmanffe644e2009-11-11 21:57:02 +0000782 ReplaceTailWithBranchTo(SameTails[i].getTailStartPos(), MBB);
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000783 // BB i is no longer a predecessor of SuccBB; remove it from the worklist.
Dan Gohmanffe644e2009-11-11 21:57:02 +0000784 MergePotentials.erase(SameTails[i].getMPIter());
Chris Lattner12143052006-10-21 00:47:49 +0000785 }
David Greene465e2b92009-12-24 00:34:21 +0000786 DEBUG(dbgs() << "\n");
Dale Johannesen51b2b9e2008-05-12 20:33:57 +0000787 // We leave commonTailIndex in the worklist in case there are other blocks
788 // that match it with a smaller number of instructions.
Chris Lattner1d08d832006-11-01 01:16:12 +0000789 MadeChange = true;
Chris Lattner12143052006-10-21 00:47:49 +0000790 }
Chris Lattner12143052006-10-21 00:47:49 +0000791 return MadeChange;
792}
793
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000794bool BranchFolder::TailMergeBlocks(MachineFunction &MF) {
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000795
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000796 if (!EnableTailMerge) return false;
Dan Gohman4e3f1252009-11-11 18:38:14 +0000797
Evan Cheng030a0a02009-09-04 07:47:40 +0000798 bool MadeChange = false;
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000799
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000800 // First find blocks with no successors.
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000801 MergePotentials.clear();
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000802 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I) {
803 if (I->succ_empty())
Dan Gohman30fc5bb2010-05-03 14:35:47 +0000804 MergePotentials.push_back(MergePotentialsElt(HashEndOfMBB(I), I));
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000805 }
Dan Gohman4e3f1252009-11-11 18:38:14 +0000806
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000807 // See if we can do any tail merging on those.
Dale Johannesen6ae83fa2008-05-09 21:24:35 +0000808 if (MergePotentials.size() < TailMergeThreshold &&
809 MergePotentials.size() >= 2)
Dan Gohman2210c0b2009-11-11 19:48:59 +0000810 MadeChange |= TryTailMergeBlocks(NULL, NULL);
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000811
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000812 // Look at blocks (IBB) with multiple predecessors (PBB).
813 // We change each predecessor to a canonical form, by
814 // (1) temporarily removing any unconditional branch from the predecessor
815 // to IBB, and
816 // (2) alter conditional branches so they branch to the other block
Dan Gohman4e3f1252009-11-11 18:38:14 +0000817 // not IBB; this may require adding back an unconditional branch to IBB
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000818 // later, where there wasn't one coming in. E.g.
819 // Bcc IBB
820 // fallthrough to QBB
821 // here becomes
822 // Bncc QBB
823 // with a conceptual B to IBB after that, which never actually exists.
824 // With those changes, we see whether the predecessors' tails match,
825 // and merge them if so. We change things out of canonical form and
826 // back to the way they were later in the process. (OptimizeBranches
827 // would undo some of this, but we can't use it, because we'd get into
828 // a compile-time infinite loop repeatedly doing and undoing the same
829 // transformations.)
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000830
Chris Lattner7896c9f2009-12-03 00:50:42 +0000831 for (MachineFunction::iterator I = llvm::next(MF.begin()), E = MF.end();
Dan Gohman2210c0b2009-11-11 19:48:59 +0000832 I != E; ++I) {
Dale Johannesen62bc8a42008-07-01 21:50:14 +0000833 if (I->pred_size() >= 2 && I->pred_size() < TailMergeThreshold) {
Dan Gohmanda658222009-08-18 15:18:18 +0000834 SmallPtrSet<MachineBasicBlock *, 8> UniquePreds;
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000835 MachineBasicBlock *IBB = I;
836 MachineBasicBlock *PredBB = prior(I);
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000837 MergePotentials.clear();
Dan Gohman4e3f1252009-11-11 18:38:14 +0000838 for (MachineBasicBlock::pred_iterator P = I->pred_begin(),
Dale Johannesen1a90a5a2007-06-08 01:08:52 +0000839 E2 = I->pred_end();
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000840 P != E2; ++P) {
Bob Wilsond34f5d92009-11-16 18:08:46 +0000841 MachineBasicBlock *PBB = *P;
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000842 // Skip blocks that loop to themselves, can't tail merge these.
Dan Gohman4e3f1252009-11-11 18:38:14 +0000843 if (PBB == IBB)
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000844 continue;
Dan Gohmanda658222009-08-18 15:18:18 +0000845 // Visit each predecessor only once.
846 if (!UniquePreds.insert(PBB))
847 continue;
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000848 MachineBasicBlock *TBB = 0, *FBB = 0;
Owen Anderson44eb65c2008-08-14 22:49:33 +0000849 SmallVector<MachineOperand, 4> Cond;
Evan Chengdc54d312009-02-09 07:14:22 +0000850 if (!TII->AnalyzeBranch(*PBB, TBB, FBB, Cond, true)) {
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000851 // Failing case: IBB is the target of a cbr, and
852 // we cannot reverse the branch.
Owen Anderson44eb65c2008-08-14 22:49:33 +0000853 SmallVector<MachineOperand, 4> NewCond(Cond);
Dan Gohman4e3f1252009-11-11 18:38:14 +0000854 if (!Cond.empty() && TBB == IBB) {
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000855 if (TII->ReverseBranchCondition(NewCond))
856 continue;
857 // This is the QBB case described above
858 if (!FBB)
Chris Lattner7896c9f2009-12-03 00:50:42 +0000859 FBB = llvm::next(MachineFunction::iterator(PBB));
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000860 }
Dale Johannesenfe7e3972007-06-04 23:52:54 +0000861 // Failing case: the only way IBB can be reached from PBB is via
862 // exception handling. Happens for landing pads. Would be nice
863 // to have a bit in the edge so we didn't have to do all this.
864 if (IBB->isLandingPad()) {
865 MachineFunction::iterator IP = PBB; IP++;
Bob Wilsond34f5d92009-11-16 18:08:46 +0000866 MachineBasicBlock *PredNextBB = NULL;
Dan Gohman8520149d2009-11-12 01:51:28 +0000867 if (IP != MF.end())
Dale Johannesenfe7e3972007-06-04 23:52:54 +0000868 PredNextBB = IP;
Dan Gohman4e3f1252009-11-11 18:38:14 +0000869 if (TBB == NULL) {
Dan Gohman8520149d2009-11-12 01:51:28 +0000870 if (IBB != PredNextBB) // fallthrough
Dale Johannesenfe7e3972007-06-04 23:52:54 +0000871 continue;
872 } else if (FBB) {
Dan Gohman8520149d2009-11-12 01:51:28 +0000873 if (TBB != IBB && FBB != IBB) // cbr then ubr
Dale Johannesenfe7e3972007-06-04 23:52:54 +0000874 continue;
Dan Gohman30359592008-01-29 13:02:09 +0000875 } else if (Cond.empty()) {
Dan Gohman8520149d2009-11-12 01:51:28 +0000876 if (TBB != IBB) // ubr
Dale Johannesenfe7e3972007-06-04 23:52:54 +0000877 continue;
878 } else {
Dan Gohman8520149d2009-11-12 01:51:28 +0000879 if (TBB != IBB && IBB != PredNextBB) // cbr
Dale Johannesenfe7e3972007-06-04 23:52:54 +0000880 continue;
881 }
882 }
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000883 // Remove the unconditional branch at the end, if any.
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000884 if (TBB && (Cond.empty() || FBB)) {
Stuart Hastings3bf91252010-06-17 22:43:56 +0000885 DebugLoc dl; // FIXME: this is nowhere
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000886 TII->RemoveBranch(*PBB);
Dale Johannesen6b8583c2008-05-09 23:28:24 +0000887 if (!Cond.empty())
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000888 // reinsert conditional branch only, for now
Stuart Hastings3bf91252010-06-17 22:43:56 +0000889 TII->InsertBranch(*PBB, (TBB == IBB) ? FBB : TBB, 0, NewCond, dl);
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000890 }
Dan Gohman30fc5bb2010-05-03 14:35:47 +0000891 MergePotentials.push_back(MergePotentialsElt(HashEndOfMBB(PBB), *P));
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000892 }
893 }
Dan Gohmancdc06ba2009-11-11 18:42:28 +0000894 if (MergePotentials.size() >= 2)
Dan Gohman2210c0b2009-11-11 19:48:59 +0000895 MadeChange |= TryTailMergeBlocks(IBB, PredBB);
Dan Gohmancdc06ba2009-11-11 18:42:28 +0000896 // Reinsert an unconditional branch if needed.
Dan Gohman2210c0b2009-11-11 19:48:59 +0000897 // The 1 below can occur as a result of removing blocks in TryTailMergeBlocks.
898 PredBB = prior(I); // this may have been changed in TryTailMergeBlocks
Dan Gohmancdc06ba2009-11-11 18:42:28 +0000899 if (MergePotentials.size() == 1 &&
Dan Gohmanffe644e2009-11-11 21:57:02 +0000900 MergePotentials.begin()->getBlock() != PredBB)
901 FixTail(MergePotentials.begin()->getBlock(), IBB, TII);
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000902 }
903 }
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000904 return MadeChange;
905}
Chris Lattner12143052006-10-21 00:47:49 +0000906
907//===----------------------------------------------------------------------===//
908// Branch Optimization
909//===----------------------------------------------------------------------===//
910
911bool BranchFolder::OptimizeBranches(MachineFunction &MF) {
Evan Cheng030a0a02009-09-04 07:47:40 +0000912 bool MadeChange = false;
Dan Gohman4e3f1252009-11-11 18:38:14 +0000913
Dale Johannesen6b896ce2007-02-17 00:44:34 +0000914 // Make sure blocks are numbered in order
915 MF.RenumberBlocks();
916
Evan Chengcbc988b2011-05-12 00:56:58 +0000917 for (MachineFunction::iterator I = llvm::next(MF.begin()), E = MF.end();
918 I != E; ) {
Chris Lattner12143052006-10-21 00:47:49 +0000919 MachineBasicBlock *MBB = I++;
Evan Cheng030a0a02009-09-04 07:47:40 +0000920 MadeChange |= OptimizeBlock(MBB);
Dan Gohman4e3f1252009-11-11 18:38:14 +0000921
Chris Lattner12143052006-10-21 00:47:49 +0000922 // If it is dead, remove it.
Jim Laskey033c9712007-02-22 16:39:03 +0000923 if (MBB->pred_empty()) {
Chris Lattner12143052006-10-21 00:47:49 +0000924 RemoveDeadBlock(MBB);
925 MadeChange = true;
926 ++NumDeadBlocks;
927 }
928 }
929 return MadeChange;
930}
931
Dale Johannesenc5cf2272010-03-10 05:45:47 +0000932// Blocks should be considered empty if they contain only debug info;
933// else the debug info would affect codegen.
934static bool IsEmptyBlock(MachineBasicBlock *MBB) {
935 if (MBB->empty())
936 return true;
937 for (MachineBasicBlock::iterator MBBI = MBB->begin(), MBBE = MBB->end();
938 MBBI!=MBBE; ++MBBI) {
939 if (!MBBI->isDebugValue())
940 return false;
941 }
942 return true;
943}
Chris Lattner12143052006-10-21 00:47:49 +0000944
Dale Johannesen2cd9ffe2010-03-10 19:57:56 +0000945// Blocks with only debug info and branches should be considered the same
946// as blocks with only branches.
947static bool IsBranchOnlyBlock(MachineBasicBlock *MBB) {
948 MachineBasicBlock::iterator MBBI, MBBE;
949 for (MBBI = MBB->begin(), MBBE = MBB->end(); MBBI!=MBBE; ++MBBI) {
950 if (!MBBI->isDebugValue())
951 break;
952 }
953 return (MBBI->getDesc().isBranch());
954}
955
Chris Lattnera7bef4a2006-11-18 20:47:54 +0000956/// IsBetterFallthrough - Return true if it would be clearly better to
957/// fall-through to MBB1 than to fall through into MBB2. This has to return
958/// a strict ordering, returning true for both (MBB1,MBB2) and (MBB2,MBB1) will
959/// result in infinite loops.
Dan Gohman4e3f1252009-11-11 18:38:14 +0000960static bool IsBetterFallthrough(MachineBasicBlock *MBB1,
Chris Lattner69244302008-01-07 01:56:04 +0000961 MachineBasicBlock *MBB2) {
Chris Lattner154e1042006-11-18 21:30:35 +0000962 // Right now, we use a simple heuristic. If MBB2 ends with a call, and
963 // MBB1 doesn't, we prefer to fall through into MBB1. This allows us to
Chris Lattnera7bef4a2006-11-18 20:47:54 +0000964 // optimize branches that branch to either a return block or an assert block
965 // into a fallthrough to the return.
Dale Johannesen93d6a7e2010-04-02 01:38:09 +0000966 if (IsEmptyBlock(MBB1) || IsEmptyBlock(MBB2)) return false;
Dan Gohman4e3f1252009-11-11 18:38:14 +0000967
Christopher Lamb11a4f642007-12-10 07:24:06 +0000968 // If there is a clear successor ordering we make sure that one block
969 // will fall through to the next
970 if (MBB1->isSuccessor(MBB2)) return true;
971 if (MBB2->isSuccessor(MBB1)) return false;
Chris Lattnera7bef4a2006-11-18 20:47:54 +0000972
Dale Johannesen93d6a7e2010-04-02 01:38:09 +0000973 // Neither block consists entirely of debug info (per IsEmptyBlock check),
974 // so we needn't test for falling off the beginning here.
975 MachineBasicBlock::iterator MBB1I = --MBB1->end();
976 while (MBB1I->isDebugValue())
977 --MBB1I;
978 MachineBasicBlock::iterator MBB2I = --MBB2->end();
979 while (MBB2I->isDebugValue())
980 --MBB2I;
Chris Lattner749c6f62008-01-07 07:27:27 +0000981 return MBB2I->getDesc().isCall() && !MBB1I->getDesc().isCall();
Chris Lattnera7bef4a2006-11-18 20:47:54 +0000982}
983
Chris Lattner7821a8a2006-10-14 00:21:48 +0000984/// OptimizeBlock - Analyze and optimize control flow related to the specified
985/// block. This is never called on the entry block.
Evan Cheng030a0a02009-09-04 07:47:40 +0000986bool BranchFolder::OptimizeBlock(MachineBasicBlock *MBB) {
987 bool MadeChange = false;
Dan Gohmand1944982009-11-11 18:18:34 +0000988 MachineFunction &MF = *MBB->getParent();
Stuart Hastings3bf91252010-06-17 22:43:56 +0000989 DebugLoc dl; // FIXME: this is nowhere
Dan Gohman2210c0b2009-11-11 19:48:59 +0000990ReoptimizeBlock:
Evan Cheng030a0a02009-09-04 07:47:40 +0000991
Chris Lattner7d097842006-10-24 01:12:32 +0000992 MachineFunction::iterator FallThrough = MBB;
993 ++FallThrough;
Dan Gohman4e3f1252009-11-11 18:38:14 +0000994
Chris Lattnereb15eee2006-10-13 20:43:10 +0000995 // If this block is empty, make everyone use its fall-through, not the block
Dale Johannesena52dd152007-05-31 21:54:00 +0000996 // explicitly. Landing pads should not do this since the landing-pad table
Dan Gohmanab918102009-10-30 02:13:27 +0000997 // points to this block. Blocks with their addresses taken shouldn't be
998 // optimized away.
Dale Johannesenc5cf2272010-03-10 05:45:47 +0000999 if (IsEmptyBlock(MBB) && !MBB->isLandingPad() && !MBB->hasAddressTaken()) {
Chris Lattner386e2902006-10-21 05:08:28 +00001000 // Dead block? Leave for cleanup later.
Evan Cheng030a0a02009-09-04 07:47:40 +00001001 if (MBB->pred_empty()) return MadeChange;
Dan Gohman4e3f1252009-11-11 18:38:14 +00001002
Dan Gohmand1944982009-11-11 18:18:34 +00001003 if (FallThrough == MF.end()) {
Chris Lattnerc50ffcb2006-10-17 17:13:52 +00001004 // TODO: Simplify preds to not branch here if possible!
1005 } else {
1006 // Rewrite all predecessors of the old block to go to the fallthrough
1007 // instead.
Jim Laskey033c9712007-02-22 16:39:03 +00001008 while (!MBB->pred_empty()) {
Chris Lattner7821a8a2006-10-14 00:21:48 +00001009 MachineBasicBlock *Pred = *(MBB->pred_end()-1);
Evan Cheng0370fad2007-06-04 06:44:01 +00001010 Pred->ReplaceUsesOfBlockWith(MBB, FallThrough);
Chris Lattner7821a8a2006-10-14 00:21:48 +00001011 }
Chris Lattnerc50ffcb2006-10-17 17:13:52 +00001012 // If MBB was the target of a jump table, update jump tables to go to the
1013 // fallthrough instead.
Chris Lattner071c62f2010-01-25 23:26:13 +00001014 if (MachineJumpTableInfo *MJTI = MF.getJumpTableInfo())
1015 MJTI->ReplaceMBBInJumpTables(MBB, FallThrough);
Chris Lattner7821a8a2006-10-14 00:21:48 +00001016 MadeChange = true;
Chris Lattner21ab22e2004-07-31 10:01:27 +00001017 }
Evan Cheng030a0a02009-09-04 07:47:40 +00001018 return MadeChange;
Chris Lattner21ab22e2004-07-31 10:01:27 +00001019 }
1020
Chris Lattner7821a8a2006-10-14 00:21:48 +00001021 // Check to see if we can simplify the terminator of the block before this
1022 // one.
Chris Lattner7d097842006-10-24 01:12:32 +00001023 MachineBasicBlock &PrevBB = *prior(MachineFunction::iterator(MBB));
Chris Lattnerffddf6b2006-10-17 18:16:40 +00001024
Chris Lattner7821a8a2006-10-14 00:21:48 +00001025 MachineBasicBlock *PriorTBB = 0, *PriorFBB = 0;
Owen Anderson44eb65c2008-08-14 22:49:33 +00001026 SmallVector<MachineOperand, 4> PriorCond;
Chris Lattner6b0e3f82006-10-29 21:05:41 +00001027 bool PriorUnAnalyzable =
Evan Chengdc54d312009-02-09 07:14:22 +00001028 TII->AnalyzeBranch(PrevBB, PriorTBB, PriorFBB, PriorCond, true);
Chris Lattner386e2902006-10-21 05:08:28 +00001029 if (!PriorUnAnalyzable) {
1030 // If the CFG for the prior block has extra edges, remove them.
Evan Cheng2bdb7d02007-06-18 22:43:58 +00001031 MadeChange |= PrevBB.CorrectExtraCFGEdges(PriorTBB, PriorFBB,
1032 !PriorCond.empty());
Dan Gohman4e3f1252009-11-11 18:38:14 +00001033
Chris Lattner7821a8a2006-10-14 00:21:48 +00001034 // If the previous branch is conditional and both conditions go to the same
Chris Lattner2d47bd92006-10-21 05:43:30 +00001035 // destination, remove the branch, replacing it with an unconditional one or
1036 // a fall-through.
Chris Lattner7821a8a2006-10-14 00:21:48 +00001037 if (PriorTBB && PriorTBB == PriorFBB) {
Chris Lattner386e2902006-10-21 05:08:28 +00001038 TII->RemoveBranch(PrevBB);
Dan Gohman4e3f1252009-11-11 18:38:14 +00001039 PriorCond.clear();
Chris Lattner7d097842006-10-24 01:12:32 +00001040 if (PriorTBB != MBB)
Stuart Hastings3bf91252010-06-17 22:43:56 +00001041 TII->InsertBranch(PrevBB, PriorTBB, 0, PriorCond, dl);
Chris Lattner7821a8a2006-10-14 00:21:48 +00001042 MadeChange = true;
Chris Lattner12143052006-10-21 00:47:49 +00001043 ++NumBranchOpts;
Dan Gohman2210c0b2009-11-11 19:48:59 +00001044 goto ReoptimizeBlock;
Chris Lattner7821a8a2006-10-14 00:21:48 +00001045 }
Dan Gohman4e3f1252009-11-11 18:38:14 +00001046
Dan Gohman2210c0b2009-11-11 19:48:59 +00001047 // If the previous block unconditionally falls through to this block and
1048 // this block has no other predecessors, move the contents of this block
1049 // into the prior block. This doesn't usually happen when SimplifyCFG
Bob Wilson465c8252009-11-17 17:40:31 +00001050 // has been used, but it can happen if tail merging splits a fall-through
1051 // predecessor of a block.
Dan Gohman2210c0b2009-11-11 19:48:59 +00001052 // This has to check PrevBB->succ_size() because EH edges are ignored by
1053 // AnalyzeBranch.
1054 if (PriorCond.empty() && !PriorTBB && MBB->pred_size() == 1 &&
1055 PrevBB.succ_size() == 1 &&
Bill Wendlingd3dbd5f2011-04-22 01:07:09 +00001056 !MBB->hasAddressTaken() && !MBB->isLandingPad()) {
David Greene465e2b92009-12-24 00:34:21 +00001057 DEBUG(dbgs() << "\nMerging into block: " << PrevBB
Dan Gohman2210c0b2009-11-11 19:48:59 +00001058 << "From MBB: " << *MBB);
1059 PrevBB.splice(PrevBB.end(), MBB, MBB->begin(), MBB->end());
1060 PrevBB.removeSuccessor(PrevBB.succ_begin());;
1061 assert(PrevBB.succ_empty());
1062 PrevBB.transferSuccessors(MBB);
1063 MadeChange = true;
1064 return MadeChange;
1065 }
Bob Wilson3cbc3122009-11-16 17:56:13 +00001066
Chris Lattner7821a8a2006-10-14 00:21:48 +00001067 // If the previous branch *only* branches to *this* block (conditional or
1068 // not) remove the branch.
Chris Lattner7d097842006-10-24 01:12:32 +00001069 if (PriorTBB == MBB && PriorFBB == 0) {
Chris Lattner386e2902006-10-21 05:08:28 +00001070 TII->RemoveBranch(PrevBB);
Chris Lattner7821a8a2006-10-14 00:21:48 +00001071 MadeChange = true;
Chris Lattner12143052006-10-21 00:47:49 +00001072 ++NumBranchOpts;
Dan Gohman2210c0b2009-11-11 19:48:59 +00001073 goto ReoptimizeBlock;
Chris Lattner7821a8a2006-10-14 00:21:48 +00001074 }
Dan Gohman4e3f1252009-11-11 18:38:14 +00001075
Chris Lattner2d47bd92006-10-21 05:43:30 +00001076 // If the prior block branches somewhere else on the condition and here if
1077 // the condition is false, remove the uncond second branch.
Chris Lattner7d097842006-10-24 01:12:32 +00001078 if (PriorFBB == MBB) {
Chris Lattner2d47bd92006-10-21 05:43:30 +00001079 TII->RemoveBranch(PrevBB);
Stuart Hastings3bf91252010-06-17 22:43:56 +00001080 TII->InsertBranch(PrevBB, PriorTBB, 0, PriorCond, dl);
Chris Lattner2d47bd92006-10-21 05:43:30 +00001081 MadeChange = true;
1082 ++NumBranchOpts;
Dan Gohman2210c0b2009-11-11 19:48:59 +00001083 goto ReoptimizeBlock;
Chris Lattner2d47bd92006-10-21 05:43:30 +00001084 }
Dan Gohman4e3f1252009-11-11 18:38:14 +00001085
Chris Lattnera2d79952006-10-21 05:54:00 +00001086 // If the prior block branches here on true and somewhere else on false, and
1087 // if the branch condition is reversible, reverse the branch to create a
1088 // fall-through.
Chris Lattner7d097842006-10-24 01:12:32 +00001089 if (PriorTBB == MBB) {
Owen Anderson44eb65c2008-08-14 22:49:33 +00001090 SmallVector<MachineOperand, 4> NewPriorCond(PriorCond);
Chris Lattnera2d79952006-10-21 05:54:00 +00001091 if (!TII->ReverseBranchCondition(NewPriorCond)) {
1092 TII->RemoveBranch(PrevBB);
Stuart Hastings3bf91252010-06-17 22:43:56 +00001093 TII->InsertBranch(PrevBB, PriorFBB, 0, NewPriorCond, dl);
Chris Lattnera2d79952006-10-21 05:54:00 +00001094 MadeChange = true;
1095 ++NumBranchOpts;
Dan Gohman2210c0b2009-11-11 19:48:59 +00001096 goto ReoptimizeBlock;
Chris Lattnera2d79952006-10-21 05:54:00 +00001097 }
1098 }
Dan Gohman4e3f1252009-11-11 18:38:14 +00001099
Dan Gohman6d312682009-10-22 00:03:58 +00001100 // If this block has no successors (e.g. it is a return block or ends with
1101 // a call to a no-return function like abort or __cxa_throw) and if the pred
1102 // falls through into this block, and if it would otherwise fall through
1103 // into the block after this, move this block to the end of the function.
Chris Lattner154e1042006-11-18 21:30:35 +00001104 //
Chris Lattnera7bef4a2006-11-18 20:47:54 +00001105 // We consider it more likely that execution will stay in the function (e.g.
1106 // due to loops) than it is to exit it. This asserts in loops etc, moving
1107 // the assert condition out of the loop body.
Dan Gohman6d312682009-10-22 00:03:58 +00001108 if (MBB->succ_empty() && !PriorCond.empty() && PriorFBB == 0 &&
Chris Lattner154e1042006-11-18 21:30:35 +00001109 MachineFunction::iterator(PriorTBB) == FallThrough &&
Bob Wilson15acadd2009-11-26 00:32:21 +00001110 !MBB->canFallThrough()) {
Chris Lattnerf10a56a2006-11-18 21:56:39 +00001111 bool DoTransform = true;
Dan Gohman4e3f1252009-11-11 18:38:14 +00001112
Chris Lattnera7bef4a2006-11-18 20:47:54 +00001113 // We have to be careful that the succs of PredBB aren't both no-successor
1114 // blocks. If neither have successors and if PredBB is the second from
1115 // last block in the function, we'd just keep swapping the two blocks for
1116 // last. Only do the swap if one is clearly better to fall through than
1117 // the other.
Dan Gohmand1944982009-11-11 18:18:34 +00001118 if (FallThrough == --MF.end() &&
Chris Lattner69244302008-01-07 01:56:04 +00001119 !IsBetterFallthrough(PriorTBB, MBB))
Chris Lattnerf10a56a2006-11-18 21:56:39 +00001120 DoTransform = false;
1121
Chris Lattnerf10a56a2006-11-18 21:56:39 +00001122 if (DoTransform) {
Chris Lattnera7bef4a2006-11-18 20:47:54 +00001123 // Reverse the branch so we will fall through on the previous true cond.
Owen Anderson44eb65c2008-08-14 22:49:33 +00001124 SmallVector<MachineOperand, 4> NewPriorCond(PriorCond);
Chris Lattnera7bef4a2006-11-18 20:47:54 +00001125 if (!TII->ReverseBranchCondition(NewPriorCond)) {
David Greene465e2b92009-12-24 00:34:21 +00001126 DEBUG(dbgs() << "\nMoving MBB: " << *MBB
Bill Wendling3403bcd2009-08-22 20:03:00 +00001127 << "To make fallthrough to: " << *PriorTBB << "\n");
Dan Gohman4e3f1252009-11-11 18:38:14 +00001128
Chris Lattnera7bef4a2006-11-18 20:47:54 +00001129 TII->RemoveBranch(PrevBB);
Stuart Hastings3bf91252010-06-17 22:43:56 +00001130 TII->InsertBranch(PrevBB, MBB, 0, NewPriorCond, dl);
Chris Lattnera7bef4a2006-11-18 20:47:54 +00001131
1132 // Move this block to the end of the function.
Dan Gohmand1944982009-11-11 18:18:34 +00001133 MBB->moveAfter(--MF.end());
Chris Lattnera7bef4a2006-11-18 20:47:54 +00001134 MadeChange = true;
1135 ++NumBranchOpts;
Evan Cheng030a0a02009-09-04 07:47:40 +00001136 return MadeChange;
Chris Lattnera7bef4a2006-11-18 20:47:54 +00001137 }
1138 }
1139 }
Chris Lattner7821a8a2006-10-14 00:21:48 +00001140 }
Dan Gohman4e3f1252009-11-11 18:38:14 +00001141
Chris Lattner386e2902006-10-21 05:08:28 +00001142 // Analyze the branch in the current block.
1143 MachineBasicBlock *CurTBB = 0, *CurFBB = 0;
Owen Anderson44eb65c2008-08-14 22:49:33 +00001144 SmallVector<MachineOperand, 4> CurCond;
Evan Chengdc54d312009-02-09 07:14:22 +00001145 bool CurUnAnalyzable= TII->AnalyzeBranch(*MBB, CurTBB, CurFBB, CurCond, true);
Chris Lattner6b0e3f82006-10-29 21:05:41 +00001146 if (!CurUnAnalyzable) {
Chris Lattner386e2902006-10-21 05:08:28 +00001147 // If the CFG for the prior block has extra edges, remove them.
Evan Cheng2bdb7d02007-06-18 22:43:58 +00001148 MadeChange |= MBB->CorrectExtraCFGEdges(CurTBB, CurFBB, !CurCond.empty());
Chris Lattnereb15eee2006-10-13 20:43:10 +00001149
Dan Gohman4e3f1252009-11-11 18:38:14 +00001150 // If this is a two-way branch, and the FBB branches to this block, reverse
Chris Lattner5d056952006-11-08 01:03:21 +00001151 // the condition so the single-basic-block loop is faster. Instead of:
1152 // Loop: xxx; jcc Out; jmp Loop
1153 // we want:
1154 // Loop: xxx; jncc Loop; jmp Out
1155 if (CurTBB && CurFBB && CurFBB == MBB && CurTBB != MBB) {
Owen Anderson44eb65c2008-08-14 22:49:33 +00001156 SmallVector<MachineOperand, 4> NewCond(CurCond);
Chris Lattner5d056952006-11-08 01:03:21 +00001157 if (!TII->ReverseBranchCondition(NewCond)) {
1158 TII->RemoveBranch(*MBB);
Stuart Hastings3bf91252010-06-17 22:43:56 +00001159 TII->InsertBranch(*MBB, CurFBB, CurTBB, NewCond, dl);
Chris Lattner5d056952006-11-08 01:03:21 +00001160 MadeChange = true;
1161 ++NumBranchOpts;
Dan Gohman2210c0b2009-11-11 19:48:59 +00001162 goto ReoptimizeBlock;
Chris Lattner5d056952006-11-08 01:03:21 +00001163 }
1164 }
Dan Gohman4e3f1252009-11-11 18:38:14 +00001165
Chris Lattner386e2902006-10-21 05:08:28 +00001166 // If this branch is the only thing in its block, see if we can forward
1167 // other blocks across it.
Dan Gohman4e3f1252009-11-11 18:38:14 +00001168 if (CurTBB && CurCond.empty() && CurFBB == 0 &&
Dale Johannesen2cd9ffe2010-03-10 19:57:56 +00001169 IsBranchOnlyBlock(MBB) && CurTBB != MBB &&
Bob Wilson888acc32009-11-03 23:44:31 +00001170 !MBB->hasAddressTaken()) {
Chris Lattner386e2902006-10-21 05:08:28 +00001171 // This block may contain just an unconditional branch. Because there can
1172 // be 'non-branch terminators' in the block, try removing the branch and
1173 // then seeing if the block is empty.
1174 TII->RemoveBranch(*MBB);
Dale Johannesenc5cf2272010-03-10 05:45:47 +00001175 // If the only things remaining in the block are debug info, remove these
1176 // as well, so this will behave the same as an empty block in non-debug
1177 // mode.
1178 if (!MBB->empty()) {
1179 bool NonDebugInfoFound = false;
1180 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
1181 I != E; ++I) {
1182 if (!I->isDebugValue()) {
1183 NonDebugInfoFound = true;
1184 break;
1185 }
1186 }
1187 if (!NonDebugInfoFound)
1188 // Make the block empty, losing the debug info (we could probably
1189 // improve this in some cases.)
1190 MBB->erase(MBB->begin(), MBB->end());
1191 }
Chris Lattner386e2902006-10-21 05:08:28 +00001192 // If this block is just an unconditional branch to CurTBB, we can
1193 // usually completely eliminate the block. The only case we cannot
1194 // completely eliminate the block is when the block before this one
1195 // falls through into MBB and we can't understand the prior block's branch
1196 // condition.
Chris Lattnercf420cc2006-10-28 17:32:47 +00001197 if (MBB->empty()) {
Dan Gohman864e2ef2009-12-05 00:44:40 +00001198 bool PredHasNoFallThrough = !PrevBB.canFallThrough();
Chris Lattnercf420cc2006-10-28 17:32:47 +00001199 if (PredHasNoFallThrough || !PriorUnAnalyzable ||
1200 !PrevBB.isSuccessor(MBB)) {
1201 // If the prior block falls through into us, turn it into an
1202 // explicit branch to us to make updates simpler.
Dan Gohman4e3f1252009-11-11 18:38:14 +00001203 if (!PredHasNoFallThrough && PrevBB.isSuccessor(MBB) &&
Chris Lattnercf420cc2006-10-28 17:32:47 +00001204 PriorTBB != MBB && PriorFBB != MBB) {
1205 if (PriorTBB == 0) {
Chris Lattner6acfe122006-10-28 18:34:47 +00001206 assert(PriorCond.empty() && PriorFBB == 0 &&
1207 "Bad branch analysis");
Chris Lattnercf420cc2006-10-28 17:32:47 +00001208 PriorTBB = MBB;
1209 } else {
1210 assert(PriorFBB == 0 && "Machine CFG out of date!");
1211 PriorFBB = MBB;
1212 }
1213 TII->RemoveBranch(PrevBB);
Stuart Hastings3bf91252010-06-17 22:43:56 +00001214 TII->InsertBranch(PrevBB, PriorTBB, PriorFBB, PriorCond, dl);
Chris Lattner386e2902006-10-21 05:08:28 +00001215 }
Chris Lattner386e2902006-10-21 05:08:28 +00001216
Chris Lattnercf420cc2006-10-28 17:32:47 +00001217 // Iterate through all the predecessors, revectoring each in-turn.
David Greene8a46d342007-06-29 02:45:24 +00001218 size_t PI = 0;
Chris Lattnercf420cc2006-10-28 17:32:47 +00001219 bool DidChange = false;
1220 bool HasBranchToSelf = false;
David Greene8a46d342007-06-29 02:45:24 +00001221 while(PI != MBB->pred_size()) {
1222 MachineBasicBlock *PMBB = *(MBB->pred_begin() + PI);
1223 if (PMBB == MBB) {
Chris Lattnercf420cc2006-10-28 17:32:47 +00001224 // If this block has an uncond branch to itself, leave it.
1225 ++PI;
1226 HasBranchToSelf = true;
1227 } else {
1228 DidChange = true;
David Greene8a46d342007-06-29 02:45:24 +00001229 PMBB->ReplaceUsesOfBlockWith(MBB, CurTBB);
Dale Johannesenbf06f6a2009-05-11 21:54:13 +00001230 // If this change resulted in PMBB ending in a conditional
1231 // branch where both conditions go to the same destination,
1232 // change this to an unconditional branch (and fix the CFG).
1233 MachineBasicBlock *NewCurTBB = 0, *NewCurFBB = 0;
1234 SmallVector<MachineOperand, 4> NewCurCond;
1235 bool NewCurUnAnalyzable = TII->AnalyzeBranch(*PMBB, NewCurTBB,
1236 NewCurFBB, NewCurCond, true);
1237 if (!NewCurUnAnalyzable && NewCurTBB && NewCurTBB == NewCurFBB) {
1238 TII->RemoveBranch(*PMBB);
Dan Gohman4e3f1252009-11-11 18:38:14 +00001239 NewCurCond.clear();
Stuart Hastings3bf91252010-06-17 22:43:56 +00001240 TII->InsertBranch(*PMBB, NewCurTBB, 0, NewCurCond, dl);
Dale Johannesenbf06f6a2009-05-11 21:54:13 +00001241 MadeChange = true;
1242 ++NumBranchOpts;
Dan Gohman2210c0b2009-11-11 19:48:59 +00001243 PMBB->CorrectExtraCFGEdges(NewCurTBB, 0, false);
Dale Johannesenbf06f6a2009-05-11 21:54:13 +00001244 }
Chris Lattnercf420cc2006-10-28 17:32:47 +00001245 }
Chris Lattner4bc135e2006-10-21 06:11:43 +00001246 }
Chris Lattner386e2902006-10-21 05:08:28 +00001247
Chris Lattnercf420cc2006-10-28 17:32:47 +00001248 // Change any jumptables to go to the new MBB.
Chris Lattner071c62f2010-01-25 23:26:13 +00001249 if (MachineJumpTableInfo *MJTI = MF.getJumpTableInfo())
1250 MJTI->ReplaceMBBInJumpTables(MBB, CurTBB);
Chris Lattnercf420cc2006-10-28 17:32:47 +00001251 if (DidChange) {
1252 ++NumBranchOpts;
1253 MadeChange = true;
Evan Cheng030a0a02009-09-04 07:47:40 +00001254 if (!HasBranchToSelf) return MadeChange;
Chris Lattnercf420cc2006-10-28 17:32:47 +00001255 }
Chris Lattner4bc135e2006-10-21 06:11:43 +00001256 }
Chris Lattnereb15eee2006-10-13 20:43:10 +00001257 }
Dan Gohman4e3f1252009-11-11 18:38:14 +00001258
Chris Lattner386e2902006-10-21 05:08:28 +00001259 // Add the branch back if the block is more than just an uncond branch.
Stuart Hastings3bf91252010-06-17 22:43:56 +00001260 TII->InsertBranch(*MBB, CurTBB, 0, CurCond, dl);
Chris Lattner21ab22e2004-07-31 10:01:27 +00001261 }
Chris Lattner6b0e3f82006-10-29 21:05:41 +00001262 }
1263
Bill Wendling43cf6c32009-12-15 00:39:24 +00001264 // If the prior block doesn't fall through into this block, and if this
1265 // block doesn't fall through into some other block, see if we can find a
1266 // place to move this block where a fall-through will happen.
1267 if (!PrevBB.canFallThrough()) {
1268
Bob Wilson56ea69c2009-11-17 17:06:18 +00001269 // Now we know that there was no fall-through into this block, check to
1270 // see if it has a fall-through into its successor.
Bob Wilson15acadd2009-11-26 00:32:21 +00001271 bool CurFallsThru = MBB->canFallThrough();
Bob Wilson56ea69c2009-11-17 17:06:18 +00001272
Jim Laskey02b3f5e2007-02-21 22:42:20 +00001273 if (!MBB->isLandingPad()) {
1274 // Check all the predecessors of this block. If one of them has no fall
1275 // throughs, move this block right after it.
1276 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
1277 E = MBB->pred_end(); PI != E; ++PI) {
1278 // Analyze the branch at the end of the pred.
1279 MachineBasicBlock *PredBB = *PI;
Bill Wendling43cf6c32009-12-15 00:39:24 +00001280 MachineFunction::iterator PredFallthrough = PredBB; ++PredFallthrough;
Bill Wendling408e9d12009-12-16 00:00:18 +00001281 MachineBasicBlock *PredTBB = 0, *PredFBB = 0;
Dan Gohman2210c0b2009-11-11 19:48:59 +00001282 SmallVector<MachineOperand, 4> PredCond;
Bill Wendling43cf6c32009-12-15 00:39:24 +00001283 if (PredBB != MBB && !PredBB->canFallThrough() &&
1284 !TII->AnalyzeBranch(*PredBB, PredTBB, PredFBB, PredCond, true)
Dale Johannesen76b38fc2007-05-10 01:01:49 +00001285 && (!CurFallsThru || !CurTBB || !CurFBB)
Jim Laskey02b3f5e2007-02-21 22:42:20 +00001286 && (!CurFallsThru || MBB->getNumber() >= PredBB->getNumber())) {
Bill Wendling43cf6c32009-12-15 00:39:24 +00001287 // If the current block doesn't fall through, just move it.
1288 // If the current block can fall through and does not end with a
1289 // conditional branch, we need to append an unconditional jump to
1290 // the (current) next block. To avoid a possible compile-time
1291 // infinite loop, move blocks only backward in this case.
1292 // Also, if there are already 2 branches here, we cannot add a third;
1293 // this means we have the case
1294 // Bcc next
1295 // B elsewhere
1296 // next:
Jim Laskey02b3f5e2007-02-21 22:42:20 +00001297 if (CurFallsThru) {
Bill Wendling43cf6c32009-12-15 00:39:24 +00001298 MachineBasicBlock *NextBB = llvm::next(MachineFunction::iterator(MBB));
Jim Laskey02b3f5e2007-02-21 22:42:20 +00001299 CurCond.clear();
Stuart Hastings3bf91252010-06-17 22:43:56 +00001300 TII->InsertBranch(*MBB, NextBB, 0, CurCond, dl);
Jim Laskey02b3f5e2007-02-21 22:42:20 +00001301 }
1302 MBB->moveAfter(PredBB);
1303 MadeChange = true;
Dan Gohman2210c0b2009-11-11 19:48:59 +00001304 goto ReoptimizeBlock;
Chris Lattner7d097842006-10-24 01:12:32 +00001305 }
1306 }
Dale Johannesen6b896ce2007-02-17 00:44:34 +00001307 }
Dan Gohman4e3f1252009-11-11 18:38:14 +00001308
Dale Johannesen6b896ce2007-02-17 00:44:34 +00001309 if (!CurFallsThru) {
Chris Lattner6b0e3f82006-10-29 21:05:41 +00001310 // Check all successors to see if we can move this block before it.
1311 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
1312 E = MBB->succ_end(); SI != E; ++SI) {
1313 // Analyze the branch at the end of the block before the succ.
1314 MachineBasicBlock *SuccBB = *SI;
1315 MachineFunction::iterator SuccPrev = SuccBB; --SuccPrev;
Dan Gohman4e3f1252009-11-11 18:38:14 +00001316
Chris Lattner77edc4b2007-04-30 23:35:00 +00001317 // If this block doesn't already fall-through to that successor, and if
1318 // the succ doesn't already have a block that can fall through into it,
1319 // and if the successor isn't an EH destination, we can arrange for the
1320 // fallthrough to happen.
Dan Gohman2210c0b2009-11-11 19:48:59 +00001321 if (SuccBB != MBB && &*SuccPrev != MBB &&
Bob Wilson15acadd2009-11-26 00:32:21 +00001322 !SuccPrev->canFallThrough() && !CurUnAnalyzable &&
Chris Lattner77edc4b2007-04-30 23:35:00 +00001323 !SuccBB->isLandingPad()) {
Chris Lattner6b0e3f82006-10-29 21:05:41 +00001324 MBB->moveBefore(SuccBB);
1325 MadeChange = true;
Dan Gohman2210c0b2009-11-11 19:48:59 +00001326 goto ReoptimizeBlock;
Chris Lattner6b0e3f82006-10-29 21:05:41 +00001327 }
1328 }
Dan Gohman4e3f1252009-11-11 18:38:14 +00001329
Chris Lattner6b0e3f82006-10-29 21:05:41 +00001330 // Okay, there is no really great place to put this block. If, however,
1331 // the block before this one would be a fall-through if this block were
1332 // removed, move this block to the end of the function.
Bill Wendlingfe586b32009-12-16 00:01:27 +00001333 MachineBasicBlock *PrevTBB = 0, *PrevFBB = 0;
Dan Gohman2210c0b2009-11-11 19:48:59 +00001334 SmallVector<MachineOperand, 4> PrevCond;
Dan Gohmand1944982009-11-11 18:18:34 +00001335 if (FallThrough != MF.end() &&
Dan Gohman2210c0b2009-11-11 19:48:59 +00001336 !TII->AnalyzeBranch(PrevBB, PrevTBB, PrevFBB, PrevCond, true) &&
Chris Lattner6b0e3f82006-10-29 21:05:41 +00001337 PrevBB.isSuccessor(FallThrough)) {
Dan Gohmand1944982009-11-11 18:18:34 +00001338 MBB->moveAfter(--MF.end());
Chris Lattner6b0e3f82006-10-29 21:05:41 +00001339 MadeChange = true;
Evan Cheng030a0a02009-09-04 07:47:40 +00001340 return MadeChange;
Chris Lattner6b0e3f82006-10-29 21:05:41 +00001341 }
Chris Lattner7d097842006-10-24 01:12:32 +00001342 }
Chris Lattner21ab22e2004-07-31 10:01:27 +00001343 }
Evan Cheng030a0a02009-09-04 07:47:40 +00001344
1345 return MadeChange;
Chris Lattner21ab22e2004-07-31 10:01:27 +00001346}
Evan Chengcbc988b2011-05-12 00:56:58 +00001347
1348//===----------------------------------------------------------------------===//
1349// Hoist Common Code
1350//===----------------------------------------------------------------------===//
1351
1352/// HoistCommonCode - Hoist common instruction sequences at the start of basic
1353/// blocks to their common predecessor.
1354/// NOTE: This optimization does not update live-in information so it must be
1355/// run after all passes that require correct liveness information.
1356bool BranchFolder::HoistCommonCode(MachineFunction &MF) {
1357 bool MadeChange = false;
1358 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ) {
1359 MachineBasicBlock *MBB = I++;
1360 MadeChange |= HoistCommonCodeInSuccs(MBB);
1361 }
1362
1363 return MadeChange;
1364}
1365
1366/// findFalseBlock - BB has a fallthrough. Find its 'false' successor given
1367/// its 'true' successor.
1368static MachineBasicBlock *findFalseBlock(MachineBasicBlock *BB,
1369 MachineBasicBlock *TrueBB) {
1370 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
1371 E = BB->succ_end(); SI != E; ++SI) {
1372 MachineBasicBlock *SuccBB = *SI;
1373 if (SuccBB != TrueBB)
1374 return SuccBB;
1375 }
1376 return NULL;
1377}
1378
1379/// findHoistingInsertPosAndDeps - Find the location to move common instructions
1380/// in successors to. The location is ususally just before the terminator,
1381/// however if the terminator is a conditional branch and its previous
1382/// instruction is the flag setting instruction, the previous instruction is
1383/// the preferred location. This function also gathers uses and defs of the
1384/// instructions from the insertion point to the end of the block. The data is
1385/// used by HoistCommonCodeInSuccs to ensure safety.
1386static
1387MachineBasicBlock::iterator findHoistingInsertPosAndDeps(MachineBasicBlock *MBB,
1388 const TargetInstrInfo *TII,
1389 const TargetRegisterInfo *TRI,
1390 SmallSet<unsigned,4> &Uses,
1391 SmallSet<unsigned,4> &Defs) {
1392 MachineBasicBlock::iterator Loc = MBB->getFirstTerminator();
1393 if (!TII->isUnpredicatedTerminator(Loc))
1394 return MBB->end();
1395
1396 for (unsigned i = 0, e = Loc->getNumOperands(); i != e; ++i) {
1397 const MachineOperand &MO = Loc->getOperand(i);
1398 if (!MO.isReg())
1399 continue;
1400 unsigned Reg = MO.getReg();
1401 if (!Reg)
1402 continue;
1403 if (MO.isUse()) {
1404 Uses.insert(Reg);
1405 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
1406 Uses.insert(*AS);
1407 } else if (!MO.isDead())
1408 // Don't try to hoist code in the rare case the terminator defines a
1409 // register that is later used.
1410 return MBB->end();
1411 }
1412
1413 if (Uses.empty())
1414 return Loc;
1415 if (Loc == MBB->begin())
1416 return MBB->end();
1417
1418 // The terminator is probably a conditional branch, try not to separate the
1419 // branch from condition setting instruction.
1420 MachineBasicBlock::iterator PI = Loc;
1421 --PI;
1422 while (PI != MBB->begin() && Loc->isDebugValue())
1423 --PI;
1424
1425 bool IsDef = false;
1426 for (unsigned i = 0, e = PI->getNumOperands(); !IsDef && i != e; ++i) {
1427 const MachineOperand &MO = PI->getOperand(i);
1428 if (!MO.isReg() || MO.isUse())
1429 continue;
1430 unsigned Reg = MO.getReg();
1431 if (!Reg)
1432 continue;
1433 if (Uses.count(Reg))
1434 IsDef = true;
1435 }
1436 if (!IsDef)
1437 // The condition setting instruction is not just before the conditional
1438 // branch.
1439 return Loc;
1440
1441 // Be conservative, don't insert instruction above something that may have
1442 // side-effects. And since it's potentially bad to separate flag setting
1443 // instruction from the conditional branch, just abort the optimization
1444 // completely.
1445 // Also avoid moving code above predicated instruction since it's hard to
1446 // reason about register liveness with predicated instruction.
1447 bool DontMoveAcrossStore = true;
1448 if (!PI->isSafeToMove(TII, 0, DontMoveAcrossStore) ||
1449 TII->isPredicated(PI))
1450 return MBB->end();
1451
1452
1453 // Find out what registers are live. Note this routine is ignoring other live
1454 // registers which are only used by instructions in successor blocks.
1455 for (unsigned i = 0, e = PI->getNumOperands(); i != e; ++i) {
1456 const MachineOperand &MO = PI->getOperand(i);
1457 if (!MO.isReg())
1458 continue;
1459 unsigned Reg = MO.getReg();
1460 if (!Reg)
1461 continue;
1462 if (MO.isUse()) {
1463 Uses.insert(Reg);
1464 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
1465 Uses.insert(*AS);
1466 } else {
1467 if (Uses.count(Reg)) {
1468 Uses.erase(Reg);
1469 for (const unsigned *SR = TRI->getSubRegisters(Reg); *SR; ++SR)
1470 Uses.erase(*SR); // Use getSubRegisters to be conservative
Evan Chengcbc988b2011-05-12 00:56:58 +00001471 }
Evan Cheng7139d352011-05-12 20:30:01 +00001472 Defs.insert(Reg);
1473 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
1474 Defs.insert(*AS);
Evan Chengcbc988b2011-05-12 00:56:58 +00001475 }
1476 }
1477
1478 return PI;
1479}
1480
1481/// HoistCommonCodeInSuccs - If the successors of MBB has common instruction
1482/// sequence at the start of the function, move the instructions before MBB
1483/// terminator if it's legal.
1484bool BranchFolder::HoistCommonCodeInSuccs(MachineBasicBlock *MBB) {
1485 MachineBasicBlock *TBB = 0, *FBB = 0;
1486 SmallVector<MachineOperand, 4> Cond;
1487 if (TII->AnalyzeBranch(*MBB, TBB, FBB, Cond, true) || !TBB || Cond.empty())
1488 return false;
1489
1490 if (!FBB) FBB = findFalseBlock(MBB, TBB);
1491 if (!FBB)
1492 // Malformed bcc? True and false blocks are the same?
1493 return false;
1494
1495 // Restrict the optimization to cases where MBB is the only predecessor,
1496 // it is an obvious win.
1497 if (TBB->pred_size() > 1 || FBB->pred_size() > 1)
1498 return false;
1499
1500 // Find a suitable position to hoist the common instructions to. Also figure
1501 // out which registers are used or defined by instructions from the insertion
1502 // point to the end of the block.
1503 SmallSet<unsigned, 4> Uses, Defs;
1504 MachineBasicBlock::iterator Loc =
1505 findHoistingInsertPosAndDeps(MBB, TII, TRI, Uses, Defs);
1506 if (Loc == MBB->end())
1507 return false;
1508
1509 bool HasDups = false;
Evan Cheng7139d352011-05-12 20:30:01 +00001510 SmallVector<unsigned, 4> LocalDefs;
1511 SmallSet<unsigned, 4> LocalDefsSet;
Evan Chengcbc988b2011-05-12 00:56:58 +00001512 MachineBasicBlock::iterator TIB = TBB->begin();
1513 MachineBasicBlock::iterator FIB = FBB->begin();
1514 MachineBasicBlock::iterator TIE = TBB->end();
1515 MachineBasicBlock::iterator FIE = FBB->end();
1516 while (TIB != TIE && FIB != FIE) {
1517 // Skip dbg_value instructions. These do not count.
1518 if (TIB->isDebugValue()) {
1519 while (TIB != TIE && TIB->isDebugValue())
1520 ++TIB;
1521 if (TIB == TIE)
1522 break;
1523 }
1524 if (FIB->isDebugValue()) {
1525 while (FIB != FIE && FIB->isDebugValue())
1526 ++FIB;
1527 if (FIB == FIE)
1528 break;
1529 }
1530 if (!TIB->isIdenticalTo(FIB, MachineInstr::CheckKillDead))
1531 break;
1532
1533 if (TII->isPredicated(TIB))
1534 // Hard to reason about register liveness with predicated instruction.
1535 break;
1536
1537 bool IsSafe = true;
1538 for (unsigned i = 0, e = TIB->getNumOperands(); i != e; ++i) {
1539 MachineOperand &MO = TIB->getOperand(i);
1540 if (!MO.isReg())
1541 continue;
1542 unsigned Reg = MO.getReg();
1543 if (!Reg)
1544 continue;
1545 if (MO.isDef()) {
1546 if (Uses.count(Reg)) {
1547 // Avoid clobbering a register that's used by the instruction at
1548 // the point of insertion.
1549 IsSafe = false;
1550 break;
1551 }
1552
1553 if (Defs.count(Reg) && !MO.isDead()) {
1554 // Don't hoist the instruction if the def would be clobber by the
1555 // instruction at the point insertion. FIXME: This is overly
1556 // conservative. It should be possible to hoist the instructions
1557 // in BB2 in the following example:
1558 // BB1:
1559 // r1, eflag = op1 r2, r3
1560 // brcc eflag
1561 //
1562 // BB2:
1563 // r1 = op2, ...
1564 // = op3, r1<kill>
1565 IsSafe = false;
1566 break;
1567 }
Evan Cheng7139d352011-05-12 20:30:01 +00001568 } else if (!LocalDefsSet.count(Reg)) {
Evan Chengcbc988b2011-05-12 00:56:58 +00001569 if (Defs.count(Reg)) {
1570 // Use is defined by the instruction at the point of insertion.
1571 IsSafe = false;
1572 break;
1573 }
1574 }
1575 }
1576 if (!IsSafe)
1577 break;
1578
1579 bool DontMoveAcrossStore = true;
1580 if (!TIB->isSafeToMove(TII, 0, DontMoveAcrossStore))
1581 break;
1582
Evan Cheng7139d352011-05-12 20:30:01 +00001583 // Track local defs so we can update liveins.
1584 for (unsigned i = 0, e = TIB->getNumOperands(); i != e; ++i) {
1585 MachineOperand &MO = TIB->getOperand(i);
1586 if (!MO.isReg())
1587 continue;
1588 unsigned Reg = MO.getReg();
1589 if (!Reg)
1590 continue;
1591 if (MO.isDef()) {
1592 if (!MO.isDead()) {
1593 LocalDefs.push_back(Reg);
1594 LocalDefsSet.insert(Reg);
1595 for (const unsigned *SR = TRI->getSubRegisters(Reg); *SR; ++SR)
1596 LocalDefsSet.insert(*SR);
1597 }
1598 } else if (MO.isKill() && LocalDefsSet.count(Reg)) {
1599 LocalDefsSet.erase(Reg);
1600 for (const unsigned *SR = TRI->getSubRegisters(Reg); *SR; ++SR)
1601 LocalDefsSet.erase(*SR);
1602 }
1603 }
1604
Evan Chengcbc988b2011-05-12 00:56:58 +00001605 HasDups = true;;
1606 ++TIB;
1607 ++FIB;
1608 }
1609
1610 if (!HasDups)
1611 return false;
1612
1613 MBB->splice(Loc, TBB, TBB->begin(), TIB);
1614 FBB->erase(FBB->begin(), FIB);
Evan Cheng7139d352011-05-12 20:30:01 +00001615
1616 // Update livein's.
1617 for (unsigned i = 0, e = LocalDefs.size(); i != e; ++i) {
1618 unsigned Def = LocalDefs[i];
1619 if (LocalDefsSet.count(Def)) {
1620 TBB->addLiveIn(Def);
1621 FBB->addLiveIn(Def);
1622 }
1623 }
1624
Evan Chengcbc988b2011-05-12 00:56:58 +00001625 ++NumHoist;
1626 return true;
1627}