blob: d9874b53b614806bae5d4d037c288f41c47fe82d [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"
Chris Lattner21ab22e2004-07-31 10:01:27 +000020#include "llvm/CodeGen/Passes.h"
Jim Laskey44c3b9f2007-01-26 21:22:28 +000021#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner21ab22e2004-07-31 10:01:27 +000022#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattnerc50ffcb2006-10-17 17:13:52 +000023#include "llvm/CodeGen/MachineJumpTableInfo.h"
Dale Johannesen69cb9b72007-03-20 21:35:06 +000024#include "llvm/CodeGen/RegisterScavenging.h"
Chris Lattner21ab22e2004-07-31 10:01:27 +000025#include "llvm/Target/TargetInstrInfo.h"
26#include "llvm/Target/TargetMachine.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000027#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner12143052006-10-21 00:47:49 +000028#include "llvm/Support/CommandLine.h"
Chris Lattnerf10a56a2006-11-18 21:56:39 +000029#include "llvm/Support/Debug.h"
Chris Lattner12143052006-10-21 00:47:49 +000030#include "llvm/ADT/Statistic.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000031#include "llvm/ADT/STLExtras.h"
Jeff Cohend41b30d2006-11-05 19:31:28 +000032#include <algorithm>
Chris Lattner21ab22e2004-07-31 10:01:27 +000033using namespace llvm;
34
Chris Lattnercd3245a2006-12-19 22:41:21 +000035STATISTIC(NumDeadBlocks, "Number of dead blocks removed");
36STATISTIC(NumBranchOpts, "Number of branches optimized");
37STATISTIC(NumTailMerge , "Number of block tails merged");
Dale Johannesen81da02b2007-05-22 17:14:46 +000038static cl::opt<cl::boolOrDefault> FlagEnableTailMerge("enable-tail-merge",
39 cl::init(cl::BOU_UNSET), cl::Hidden);
Chris Lattner21ab22e2004-07-31 10:01:27 +000040namespace {
Dale Johannesen1a90a5a2007-06-08 01:08:52 +000041 // Throttle for huge numbers of predecessors (compile speed problems)
42 cl::opt<unsigned>
43 TailMergeThreshold("tail-merge-threshold",
44 cl::desc("Max number of predecessors to consider tail merging"),
45 cl::init(100), cl::Hidden);
46
Evan Chengfb8075d2008-02-28 00:43:03 +000047 struct VISIBILITY_HIDDEN BranchFolder : public MachineFunctionPass {
Devang Patel19974732007-05-03 01:11:54 +000048 static char ID;
Dan Gohman61e729e2007-08-02 21:21:54 +000049 explicit BranchFolder(bool defaultEnableTailMerge) :
Dale Johannesen81da02b2007-05-22 17:14:46 +000050 MachineFunctionPass((intptr_t)&ID) {
51 switch (FlagEnableTailMerge) {
52 case cl::BOU_UNSET: EnableTailMerge = defaultEnableTailMerge; break;
53 case cl::BOU_TRUE: EnableTailMerge = true; break;
54 case cl::BOU_FALSE: EnableTailMerge = false; break;
55 }
56 }
Devang Patel794fd752007-05-01 21:15:47 +000057
Chris Lattner21ab22e2004-07-31 10:01:27 +000058 virtual bool runOnMachineFunction(MachineFunction &MF);
Chris Lattner7821a8a2006-10-14 00:21:48 +000059 virtual const char *getPassName() const { return "Control Flow Optimizer"; }
60 const TargetInstrInfo *TII;
Jim Laskey44c3b9f2007-01-26 21:22:28 +000061 MachineModuleInfo *MMI;
Chris Lattner7821a8a2006-10-14 00:21:48 +000062 bool MadeChange;
Chris Lattner21ab22e2004-07-31 10:01:27 +000063 private:
Chris Lattner12143052006-10-21 00:47:49 +000064 // Tail Merging.
Dale Johannesen81da02b2007-05-22 17:14:46 +000065 bool EnableTailMerge;
Chris Lattner12143052006-10-21 00:47:49 +000066 bool TailMergeBlocks(MachineFunction &MF);
Dale Johannesen7d33b4c2007-05-07 20:57:21 +000067 bool TryMergeBlocks(MachineBasicBlock* SuccBB,
68 MachineBasicBlock* PredBB);
Chris Lattner12143052006-10-21 00:47:49 +000069 void ReplaceTailWithBranchTo(MachineBasicBlock::iterator OldInst,
70 MachineBasicBlock *NewDest);
Chris Lattner1d08d832006-11-01 01:16:12 +000071 MachineBasicBlock *SplitMBBAt(MachineBasicBlock &CurMBB,
72 MachineBasicBlock::iterator BBI1);
Dale Johannesen69cb9b72007-03-20 21:35:06 +000073
Dale Johannesen7d33b4c2007-05-07 20:57:21 +000074 std::vector<std::pair<unsigned,MachineBasicBlock*> > MergePotentials;
Dan Gohman6f0d0242008-02-10 18:45:23 +000075 const TargetRegisterInfo *RegInfo;
Dale Johannesen69cb9b72007-03-20 21:35:06 +000076 RegScavenger *RS;
Chris Lattner12143052006-10-21 00:47:49 +000077 // Branch optzn.
78 bool OptimizeBranches(MachineFunction &MF);
Chris Lattner7d097842006-10-24 01:12:32 +000079 void OptimizeBlock(MachineBasicBlock *MBB);
Chris Lattner683747a2006-10-17 23:17:27 +000080 void RemoveDeadBlock(MachineBasicBlock *MBB);
Chris Lattner6b0e3f82006-10-29 21:05:41 +000081
82 bool CanFallThrough(MachineBasicBlock *CurBB);
83 bool CanFallThrough(MachineBasicBlock *CurBB, bool BranchUnAnalyzable,
84 MachineBasicBlock *TBB, MachineBasicBlock *FBB,
85 const std::vector<MachineOperand> &Cond);
Chris Lattner21ab22e2004-07-31 10:01:27 +000086 };
Devang Patel19974732007-05-03 01:11:54 +000087 char BranchFolder::ID = 0;
Chris Lattner21ab22e2004-07-31 10:01:27 +000088}
89
Dale Johannesen81da02b2007-05-22 17:14:46 +000090FunctionPass *llvm::createBranchFoldingPass(bool DefaultEnableTailMerge) {
91 return new BranchFolder(DefaultEnableTailMerge); }
Chris Lattner21ab22e2004-07-31 10:01:27 +000092
Chris Lattnerc50ffcb2006-10-17 17:13:52 +000093/// RemoveDeadBlock - Remove the specified dead machine basic block from the
94/// function, updating the CFG.
Chris Lattner683747a2006-10-17 23:17:27 +000095void BranchFolder::RemoveDeadBlock(MachineBasicBlock *MBB) {
Jim Laskey033c9712007-02-22 16:39:03 +000096 assert(MBB->pred_empty() && "MBB must be dead!");
Jim Laskey02b3f5e2007-02-21 22:42:20 +000097 DOUT << "\nRemoving MBB: " << *MBB;
Chris Lattner683747a2006-10-17 23:17:27 +000098
Chris Lattnerc50ffcb2006-10-17 17:13:52 +000099 MachineFunction *MF = MBB->getParent();
100 // drop all successors.
101 while (!MBB->succ_empty())
102 MBB->removeSuccessor(MBB->succ_end()-1);
Chris Lattner683747a2006-10-17 23:17:27 +0000103
Jim Laskey1ee29252007-01-26 14:34:52 +0000104 // If there is DWARF info to active, check to see if there are any LABEL
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000105 // records in the basic block. If so, unregister them from MachineModuleInfo.
106 if (MMI && !MBB->empty()) {
Chris Lattner683747a2006-10-17 23:17:27 +0000107 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
108 I != E; ++I) {
Jim Laskey1ee29252007-01-26 14:34:52 +0000109 if ((unsigned)I->getOpcode() == TargetInstrInfo::LABEL) {
Chris Lattner683747a2006-10-17 23:17:27 +0000110 // The label ID # is always operand #0, an immediate.
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000111 MMI->InvalidateLabel(I->getOperand(0).getImm());
Chris Lattner683747a2006-10-17 23:17:27 +0000112 }
113 }
114 }
115
Chris Lattnerc50ffcb2006-10-17 17:13:52 +0000116 // Remove the block.
117 MF->getBasicBlockList().erase(MBB);
118}
119
Chris Lattner21ab22e2004-07-31 10:01:27 +0000120bool BranchFolder::runOnMachineFunction(MachineFunction &MF) {
Chris Lattner7821a8a2006-10-14 00:21:48 +0000121 TII = MF.getTarget().getInstrInfo();
122 if (!TII) return false;
123
Dale Johannesen14ba0cc2007-05-15 21:19:17 +0000124 // Fix CFG. The later algorithms expect it to be right.
125 bool EverMadeChange = false;
126 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; I++) {
127 MachineBasicBlock *MBB = I, *TBB = 0, *FBB = 0;
128 std::vector<MachineOperand> Cond;
129 if (!TII->AnalyzeBranch(*MBB, TBB, FBB, Cond))
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000130 EverMadeChange |= MBB->CorrectExtraCFGEdges(TBB, FBB, !Cond.empty());
Dale Johannesen14ba0cc2007-05-15 21:19:17 +0000131 }
132
Dale Johannesen69cb9b72007-03-20 21:35:06 +0000133 RegInfo = MF.getTarget().getRegisterInfo();
134 RS = RegInfo->requiresRegisterScavenging(MF) ? new RegScavenger() : NULL;
135
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000136 MMI = getAnalysisToUpdate<MachineModuleInfo>();
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000137
Chris Lattner12143052006-10-21 00:47:49 +0000138 bool MadeChangeThisIteration = true;
139 while (MadeChangeThisIteration) {
140 MadeChangeThisIteration = false;
141 MadeChangeThisIteration |= TailMergeBlocks(MF);
142 MadeChangeThisIteration |= OptimizeBranches(MF);
143 EverMadeChange |= MadeChangeThisIteration;
Chris Lattner21ab22e2004-07-31 10:01:27 +0000144 }
145
Chris Lattner6acfe122006-10-28 18:34:47 +0000146 // See if any jump tables have become mergable or dead as the code generator
147 // did its thing.
148 MachineJumpTableInfo *JTI = MF.getJumpTableInfo();
149 const std::vector<MachineJumpTableEntry> &JTs = JTI->getJumpTables();
150 if (!JTs.empty()) {
151 // Figure out how these jump tables should be merged.
152 std::vector<unsigned> JTMapping;
153 JTMapping.reserve(JTs.size());
154
155 // We always keep the 0th jump table.
156 JTMapping.push_back(0);
157
158 // Scan the jump tables, seeing if there are any duplicates. Note that this
159 // is N^2, which should be fixed someday.
160 for (unsigned i = 1, e = JTs.size(); i != e; ++i)
161 JTMapping.push_back(JTI->getJumpTableIndex(JTs[i].MBBs));
162
163 // If a jump table was merge with another one, walk the function rewriting
164 // references to jump tables to reference the new JT ID's. Keep track of
165 // whether we see a jump table idx, if not, we can delete the JT.
166 std::vector<bool> JTIsLive;
167 JTIsLive.resize(JTs.size());
168 for (MachineFunction::iterator BB = MF.begin(), E = MF.end();
169 BB != E; ++BB) {
170 for (MachineBasicBlock::iterator I = BB->begin(), E = BB->end();
171 I != E; ++I)
172 for (unsigned op = 0, e = I->getNumOperands(); op != e; ++op) {
173 MachineOperand &Op = I->getOperand(op);
174 if (!Op.isJumpTableIndex()) continue;
Chris Lattner8aa797a2007-12-30 23:10:15 +0000175 unsigned NewIdx = JTMapping[Op.getIndex()];
176 Op.setIndex(NewIdx);
Chris Lattner6acfe122006-10-28 18:34:47 +0000177
178 // Remember that this JT is live.
179 JTIsLive[NewIdx] = true;
180 }
181 }
182
183 // Finally, remove dead jump tables. This happens either because the
184 // indirect jump was unreachable (and thus deleted) or because the jump
185 // table was merged with some other one.
186 for (unsigned i = 0, e = JTIsLive.size(); i != e; ++i)
187 if (!JTIsLive[i]) {
188 JTI->RemoveJumpTable(i);
189 EverMadeChange = true;
190 }
191 }
192
Dale Johannesen69cb9b72007-03-20 21:35:06 +0000193 delete RS;
Chris Lattner21ab22e2004-07-31 10:01:27 +0000194 return EverMadeChange;
195}
196
Chris Lattner12143052006-10-21 00:47:49 +0000197//===----------------------------------------------------------------------===//
198// Tail Merging of Blocks
199//===----------------------------------------------------------------------===//
200
201/// HashMachineInstr - Compute a hash value for MI and its operands.
202static unsigned HashMachineInstr(const MachineInstr *MI) {
203 unsigned Hash = MI->getOpcode();
204 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
205 const MachineOperand &Op = MI->getOperand(i);
206
207 // Merge in bits from the operand if easy.
208 unsigned OperandHash = 0;
209 switch (Op.getType()) {
210 case MachineOperand::MO_Register: OperandHash = Op.getReg(); break;
211 case MachineOperand::MO_Immediate: OperandHash = Op.getImm(); break;
212 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000213 OperandHash = Op.getMBB()->getNumber();
Chris Lattner12143052006-10-21 00:47:49 +0000214 break;
Chris Lattner8aa797a2007-12-30 23:10:15 +0000215 case MachineOperand::MO_FrameIndex:
Chris Lattner12143052006-10-21 00:47:49 +0000216 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner12143052006-10-21 00:47:49 +0000217 case MachineOperand::MO_JumpTableIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000218 OperandHash = Op.getIndex();
Chris Lattner12143052006-10-21 00:47:49 +0000219 break;
220 case MachineOperand::MO_GlobalAddress:
221 case MachineOperand::MO_ExternalSymbol:
222 // Global address / external symbol are too hard, don't bother, but do
223 // pull in the offset.
224 OperandHash = Op.getOffset();
225 break;
226 default: break;
227 }
228
229 Hash += ((OperandHash << 3) | Op.getType()) << (i&31);
230 }
231 return Hash;
232}
233
Dale Johannesen7aea8322007-05-23 21:07:20 +0000234/// HashEndOfMBB - Hash the last few instructions in the MBB. For blocks
235/// with no successors, we hash two instructions, because cross-jumping
236/// only saves code when at least two instructions are removed (since a
237/// branch must be inserted). For blocks with a successor, one of the
238/// two blocks to be tail-merged will end with a branch already, so
239/// it gains to cross-jump even for one instruction.
240
241static unsigned HashEndOfMBB(const MachineBasicBlock *MBB,
242 unsigned minCommonTailLength) {
Chris Lattner12143052006-10-21 00:47:49 +0000243 MachineBasicBlock::const_iterator I = MBB->end();
244 if (I == MBB->begin())
245 return 0; // Empty MBB.
246
247 --I;
248 unsigned Hash = HashMachineInstr(I);
249
Dale Johannesen7aea8322007-05-23 21:07:20 +0000250 if (I == MBB->begin() || minCommonTailLength == 1)
Chris Lattner12143052006-10-21 00:47:49 +0000251 return Hash; // Single instr MBB.
252
253 --I;
254 // Hash in the second-to-last instruction.
255 Hash ^= HashMachineInstr(I) << 2;
256 return Hash;
257}
258
259/// ComputeCommonTailLength - Given two machine basic blocks, compute the number
260/// of instructions they actually have in common together at their end. Return
261/// iterators for the first shared instruction in each block.
262static unsigned ComputeCommonTailLength(MachineBasicBlock *MBB1,
263 MachineBasicBlock *MBB2,
264 MachineBasicBlock::iterator &I1,
265 MachineBasicBlock::iterator &I2) {
266 I1 = MBB1->end();
267 I2 = MBB2->end();
268
269 unsigned TailLen = 0;
270 while (I1 != MBB1->begin() && I2 != MBB2->begin()) {
271 --I1; --I2;
Bill Wendling80629c82007-10-19 21:09:55 +0000272 if (!I1->isIdenticalTo(I2) ||
Bill Wendlingda6efc52007-10-25 19:49:32 +0000273 // FIXME: This check is dubious. It's used to get around a problem where
Bill Wendling0713a222007-10-25 18:23:45 +0000274 // people incorrectly expect inline asm directives to remain in the same
275 // relative order. This is untenable because normal compiler
276 // optimizations (like this one) may reorder and/or merge these
277 // directives.
Bill Wendling80629c82007-10-19 21:09:55 +0000278 I1->getOpcode() == TargetInstrInfo::INLINEASM) {
Chris Lattner12143052006-10-21 00:47:49 +0000279 ++I1; ++I2;
280 break;
281 }
282 ++TailLen;
283 }
284 return TailLen;
285}
286
287/// ReplaceTailWithBranchTo - Delete the instruction OldInst and everything
Chris Lattner386e2902006-10-21 05:08:28 +0000288/// after it, replacing it with an unconditional branch to NewDest. This
289/// returns true if OldInst's block is modified, false if NewDest is modified.
Chris Lattner12143052006-10-21 00:47:49 +0000290void BranchFolder::ReplaceTailWithBranchTo(MachineBasicBlock::iterator OldInst,
291 MachineBasicBlock *NewDest) {
292 MachineBasicBlock *OldBB = OldInst->getParent();
293
294 // Remove all the old successors of OldBB from the CFG.
295 while (!OldBB->succ_empty())
296 OldBB->removeSuccessor(OldBB->succ_begin());
297
298 // Remove all the dead instructions from the end of OldBB.
299 OldBB->erase(OldInst, OldBB->end());
300
Chris Lattner386e2902006-10-21 05:08:28 +0000301 // If OldBB isn't immediately before OldBB, insert a branch to it.
302 if (++MachineFunction::iterator(OldBB) != MachineFunction::iterator(NewDest))
303 TII->InsertBranch(*OldBB, NewDest, 0, std::vector<MachineOperand>());
Chris Lattner12143052006-10-21 00:47:49 +0000304 OldBB->addSuccessor(NewDest);
305 ++NumTailMerge;
306}
307
Chris Lattner1d08d832006-11-01 01:16:12 +0000308/// SplitMBBAt - Given a machine basic block and an iterator into it, split the
309/// MBB so that the part before the iterator falls into the part starting at the
310/// iterator. This returns the new MBB.
311MachineBasicBlock *BranchFolder::SplitMBBAt(MachineBasicBlock &CurMBB,
312 MachineBasicBlock::iterator BBI1) {
313 // Create the fall-through block.
314 MachineFunction::iterator MBBI = &CurMBB;
315 MachineBasicBlock *NewMBB = new MachineBasicBlock(CurMBB.getBasicBlock());
316 CurMBB.getParent()->getBasicBlockList().insert(++MBBI, NewMBB);
317
318 // Move all the successors of this block to the specified block.
319 while (!CurMBB.succ_empty()) {
320 MachineBasicBlock *S = *(CurMBB.succ_end()-1);
321 NewMBB->addSuccessor(S);
322 CurMBB.removeSuccessor(S);
323 }
324
325 // Add an edge from CurMBB to NewMBB for the fall-through.
326 CurMBB.addSuccessor(NewMBB);
327
328 // Splice the code over.
329 NewMBB->splice(NewMBB->end(), &CurMBB, BBI1, CurMBB.end());
Dale Johannesen69cb9b72007-03-20 21:35:06 +0000330
331 // For targets that use the register scavenger, we must maintain LiveIns.
332 if (RS) {
333 RS->enterBasicBlock(&CurMBB);
334 if (!CurMBB.empty())
335 RS->forward(prior(CurMBB.end()));
336 BitVector RegsLiveAtExit(RegInfo->getNumRegs());
337 RS->getRegsUsed(RegsLiveAtExit, false);
338 for (unsigned int i=0, e=RegInfo->getNumRegs(); i!=e; i++)
339 if (RegsLiveAtExit[i])
340 NewMBB->addLiveIn(i);
341 }
342
Chris Lattner1d08d832006-11-01 01:16:12 +0000343 return NewMBB;
344}
345
Chris Lattnerd4bf3c22006-11-01 19:36:29 +0000346/// EstimateRuntime - Make a rough estimate for how long it will take to run
347/// the specified code.
348static unsigned EstimateRuntime(MachineBasicBlock::iterator I,
Chris Lattner69244302008-01-07 01:56:04 +0000349 MachineBasicBlock::iterator E) {
Chris Lattnerd4bf3c22006-11-01 19:36:29 +0000350 unsigned Time = 0;
351 for (; I != E; ++I) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000352 const TargetInstrDesc &TID = I->getDesc();
353 if (TID.isCall())
Chris Lattnerd4bf3c22006-11-01 19:36:29 +0000354 Time += 10;
Chris Lattner749c6f62008-01-07 07:27:27 +0000355 else if (TID.isSimpleLoad() || TID.mayStore())
Chris Lattnerd4bf3c22006-11-01 19:36:29 +0000356 Time += 2;
357 else
358 ++Time;
359 }
360 return Time;
361}
362
363/// ShouldSplitFirstBlock - We need to either split MBB1 at MBB1I or MBB2 at
364/// MBB2I and then insert an unconditional branch in the other block. Determine
365/// which is the best to split
366static bool ShouldSplitFirstBlock(MachineBasicBlock *MBB1,
367 MachineBasicBlock::iterator MBB1I,
368 MachineBasicBlock *MBB2,
369 MachineBasicBlock::iterator MBB2I,
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000370 MachineBasicBlock *PredBB) {
Dale Johannesen54f4a672007-05-10 23:59:23 +0000371 // If one block is the entry block, split the other one; we can't generate
372 // a branch to the entry block, as its label is not emitted.
373 MachineBasicBlock *Entry = MBB1->getParent()->begin();
374 if (MBB1 == Entry)
375 return false;
376 if (MBB2 == Entry)
377 return true;
378
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000379 // If one block falls through into the common successor, choose that
380 // one to split; it is one instruction less to do that.
381 if (PredBB) {
382 if (MBB1 == PredBB)
383 return true;
384 else if (MBB2 == PredBB)
385 return false;
386 }
Chris Lattnerd4bf3c22006-11-01 19:36:29 +0000387 // TODO: if we had some notion of which block was hotter, we could split
388 // the hot block, so it is the fall-through. Since we don't have profile info
389 // make a decision based on which will hurt most to split.
Chris Lattner69244302008-01-07 01:56:04 +0000390 unsigned MBB1Time = EstimateRuntime(MBB1->begin(), MBB1I);
391 unsigned MBB2Time = EstimateRuntime(MBB2->begin(), MBB2I);
Chris Lattnerd4bf3c22006-11-01 19:36:29 +0000392
393 // If the MBB1 prefix takes "less time" to run than the MBB2 prefix, split the
394 // MBB1 block so it falls through. This will penalize the MBB2 path, but will
395 // have a lower overall impact on the program execution.
396 return MBB1Time < MBB2Time;
397}
398
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000399// CurMBB needs to add an unconditional branch to SuccMBB (we removed these
400// branches temporarily for tail merging). In the case where CurMBB ends
401// with a conditional branch to the next block, optimize by reversing the
402// test and conditionally branching to SuccMBB instead.
403
404static void FixTail(MachineBasicBlock* CurMBB, MachineBasicBlock *SuccBB,
405 const TargetInstrInfo *TII) {
406 MachineFunction *MF = CurMBB->getParent();
407 MachineFunction::iterator I = next(MachineFunction::iterator(CurMBB));
408 MachineBasicBlock *TBB = 0, *FBB = 0;
409 std::vector<MachineOperand> Cond;
410 if (I != MF->end() &&
411 !TII->AnalyzeBranch(*CurMBB, TBB, FBB, Cond)) {
412 MachineBasicBlock *NextBB = I;
413 if (TBB == NextBB && Cond.size() && !FBB) {
414 if (!TII->ReverseBranchCondition(Cond)) {
415 TII->RemoveBranch(*CurMBB);
416 TII->InsertBranch(*CurMBB, SuccBB, NULL, Cond);
417 return;
418 }
419 }
420 }
421 TII->InsertBranch(*CurMBB, SuccBB, NULL, std::vector<MachineOperand>());
422}
423
Dale Johannesen44008c52007-05-30 00:32:01 +0000424static bool MergeCompare(const std::pair<unsigned,MachineBasicBlock*> &p,
425 const std::pair<unsigned,MachineBasicBlock*> &q) {
Dale Johannesen95ef4062007-05-29 23:47:50 +0000426 if (p.first < q.first)
427 return true;
428 else if (p.first > q.first)
429 return false;
430 else if (p.second->getNumber() < q.second->getNumber())
431 return true;
432 else if (p.second->getNumber() > q.second->getNumber())
433 return false;
David Greene67fcdf72007-07-10 22:00:30 +0000434 else {
Duncan Sands97b4ac82007-07-11 08:47:55 +0000435 // _GLIBCXX_DEBUG checks strict weak ordering, which involves comparing
436 // an object with itself.
437#ifndef _GLIBCXX_DEBUG
Dale Johannesen95ef4062007-05-29 23:47:50 +0000438 assert(0 && "Predecessor appears twice");
David Greene67fcdf72007-07-10 22:00:30 +0000439#endif
Duncan Sands97b4ac82007-07-11 08:47:55 +0000440 return(false);
David Greene67fcdf72007-07-10 22:00:30 +0000441 }
Dale Johannesen95ef4062007-05-29 23:47:50 +0000442}
443
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000444// See if any of the blocks in MergePotentials (which all have a common single
445// successor, or all have no successor) can be tail-merged. If there is a
446// successor, any blocks in MergePotentials that are not tail-merged and
447// are not immediately before Succ must have an unconditional branch to
448// Succ added (but the predecessor/successor lists need no adjustment).
449// The lone predecessor of Succ that falls through into Succ,
450// if any, is given in PredBB.
451
452bool BranchFolder::TryMergeBlocks(MachineBasicBlock *SuccBB,
453 MachineBasicBlock* PredBB) {
Evan Cheng31886db2008-02-19 02:09:37 +0000454 // It doesn't make sense to save a single instruction since tail merging
455 // will add a jump.
456 // FIXME: Ask the target to provide the threshold?
457 unsigned minCommonTailLength = (SuccBB ? 1 : 2) + 1;
Chris Lattner12143052006-10-21 00:47:49 +0000458 MadeChange = false;
459
Chris Lattner12143052006-10-21 00:47:49 +0000460 // Sort by hash value so that blocks with identical end sequences sort
461 // together.
Dale Johannesen95ef4062007-05-29 23:47:50 +0000462 std::stable_sort(MergePotentials.begin(), MergePotentials.end(), MergeCompare);
Chris Lattner12143052006-10-21 00:47:49 +0000463
464 // Walk through equivalence sets looking for actual exact matches.
465 while (MergePotentials.size() > 1) {
466 unsigned CurHash = (MergePotentials.end()-1)->first;
467 unsigned PrevHash = (MergePotentials.end()-2)->first;
468 MachineBasicBlock *CurMBB = (MergePotentials.end()-1)->second;
469
470 // If there is nothing that matches the hash of the current basic block,
471 // give up.
472 if (CurHash != PrevHash) {
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000473 if (SuccBB && CurMBB != PredBB)
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000474 FixTail(CurMBB, SuccBB, TII);
Chris Lattner12143052006-10-21 00:47:49 +0000475 MergePotentials.pop_back();
476 continue;
477 }
478
Dale Johannesena5a21172007-06-01 23:02:45 +0000479 // Look through all the pairs of blocks that have the same hash as this
480 // one, and find the pair that has the largest number of instructions in
481 // common.
Evan Cheng31886db2008-02-19 02:09:37 +0000482 // Since instructions may get combined later (e.g. single stores into
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000483 // store multiple) this measure is not particularly accurate.
Evan Cheng31886db2008-02-19 02:09:37 +0000484 MachineBasicBlock::iterator BBI1, BBI2;
Dale Johannesen7aea8322007-05-23 21:07:20 +0000485
Dale Johannesena5a21172007-06-01 23:02:45 +0000486 unsigned FoundI = ~0U, FoundJ = ~0U;
Dale Johannesen7aea8322007-05-23 21:07:20 +0000487 unsigned maxCommonTailLength = 0U;
Dale Johannesena5a21172007-06-01 23:02:45 +0000488 for (int i = MergePotentials.size()-1;
Dale Johannesen7aea8322007-05-23 21:07:20 +0000489 i != -1 && MergePotentials[i].first == CurHash; --i) {
Dale Johannesena5a21172007-06-01 23:02:45 +0000490 for (int j = i-1;
491 j != -1 && MergePotentials[j].first == CurHash; --j) {
492 MachineBasicBlock::iterator TrialBBI1, TrialBBI2;
493 unsigned CommonTailLen = ComputeCommonTailLength(
494 MergePotentials[i].second,
495 MergePotentials[j].second,
496 TrialBBI1, TrialBBI2);
497 if (CommonTailLen >= minCommonTailLength &&
498 CommonTailLen > maxCommonTailLength) {
499 FoundI = i;
500 FoundJ = j;
501 maxCommonTailLength = CommonTailLen;
502 BBI1 = TrialBBI1;
503 BBI2 = TrialBBI2;
504 }
Chris Lattner12143052006-10-21 00:47:49 +0000505 }
Dale Johannesena5a21172007-06-01 23:02:45 +0000506 }
Dale Johannesen7aea8322007-05-23 21:07:20 +0000507
Dale Johannesena5a21172007-06-01 23:02:45 +0000508 // If we didn't find any pair that has at least minCommonTailLength
509 // instructions in common, bail out. All entries with this
510 // hash code can go away now.
511 if (FoundI == ~0U) {
512 for (int i = MergePotentials.size()-1;
513 i != -1 && MergePotentials[i].first == CurHash; --i) {
514 // Put the unconditional branch back, if we need one.
515 CurMBB = MergePotentials[i].second;
516 if (SuccBB && CurMBB != PredBB)
517 FixTail(CurMBB, SuccBB, TII);
518 MergePotentials.pop_back();
519 }
Dale Johannesen7aea8322007-05-23 21:07:20 +0000520 continue;
Chris Lattner12143052006-10-21 00:47:49 +0000521 }
Chris Lattner1d08d832006-11-01 01:16:12 +0000522
Dale Johannesena5a21172007-06-01 23:02:45 +0000523 // Otherwise, move the block(s) to the right position(s). So that
524 // BBI1/2 will be valid, the last must be I and the next-to-last J.
525 if (FoundI != MergePotentials.size()-1)
526 std::swap(MergePotentials[FoundI], *(MergePotentials.end()-1));
527 if (FoundJ != MergePotentials.size()-2)
528 std::swap(MergePotentials[FoundJ], *(MergePotentials.end()-2));
529
530 CurMBB = (MergePotentials.end()-1)->second;
Chris Lattner12143052006-10-21 00:47:49 +0000531 MachineBasicBlock *MBB2 = (MergePotentials.end()-2)->second;
Chris Lattner1d08d832006-11-01 01:16:12 +0000532
533 // If neither block is the entire common tail, split the tail of one block
Dale Johannesen54f4a672007-05-10 23:59:23 +0000534 // to make it redundant with the other tail. Also, we cannot jump to the
535 // entry block, so if one block is the entry block, split the other one.
536 MachineBasicBlock *Entry = CurMBB->getParent()->begin();
537 if (CurMBB->begin() == BBI1 && CurMBB != Entry)
538 ; // CurMBB is common tail
539 else if (MBB2->begin() == BBI2 && MBB2 != Entry)
540 ; // MBB2 is common tail
541 else {
Chris Lattner1d08d832006-11-01 01:16:12 +0000542 if (0) { // Enable this to disable partial tail merges.
543 MergePotentials.pop_back();
544 continue;
545 }
Chris Lattnerd4bf3c22006-11-01 19:36:29 +0000546
Evan Cheng31886db2008-02-19 02:09:37 +0000547 MachineBasicBlock::iterator TrialBBI1, TrialBBI2;
548 unsigned CommonTailLen = ComputeCommonTailLength(CurMBB, MBB2,
549 TrialBBI1, TrialBBI2);
550 if (CommonTailLen < minCommonTailLength)
551 continue;
552
Chris Lattnerd4bf3c22006-11-01 19:36:29 +0000553 // Decide whether we want to split CurMBB or MBB2.
Chris Lattner69244302008-01-07 01:56:04 +0000554 if (ShouldSplitFirstBlock(CurMBB, BBI1, MBB2, BBI2, PredBB)) {
Chris Lattnerd4bf3c22006-11-01 19:36:29 +0000555 CurMBB = SplitMBBAt(*CurMBB, BBI1);
556 BBI1 = CurMBB->begin();
557 MergePotentials.back().second = CurMBB;
558 } else {
559 MBB2 = SplitMBBAt(*MBB2, BBI2);
560 BBI2 = MBB2->begin();
561 (MergePotentials.end()-2)->second = MBB2;
562 }
Chris Lattner1d08d832006-11-01 01:16:12 +0000563 }
564
Dale Johannesen54f4a672007-05-10 23:59:23 +0000565 if (MBB2->begin() == BBI2 && MBB2 != Entry) {
Chris Lattner12143052006-10-21 00:47:49 +0000566 // Hack the end off CurMBB, making it jump to MBBI@ instead.
567 ReplaceTailWithBranchTo(BBI1, MBB2);
568 // This modifies CurMBB, so remove it from the worklist.
569 MergePotentials.pop_back();
Chris Lattner1d08d832006-11-01 01:16:12 +0000570 } else {
Dale Johannesen54f4a672007-05-10 23:59:23 +0000571 assert(CurMBB->begin() == BBI1 && CurMBB != Entry &&
572 "Didn't split block correctly?");
Chris Lattner1d08d832006-11-01 01:16:12 +0000573 // Hack the end off MBB2, making it jump to CurMBB instead.
574 ReplaceTailWithBranchTo(BBI2, CurMBB);
575 // This modifies MBB2, so remove it from the worklist.
576 MergePotentials.erase(MergePotentials.end()-2);
Chris Lattner12143052006-10-21 00:47:49 +0000577 }
Chris Lattner1d08d832006-11-01 01:16:12 +0000578 MadeChange = true;
Chris Lattner12143052006-10-21 00:47:49 +0000579 }
Chris Lattner12143052006-10-21 00:47:49 +0000580 return MadeChange;
581}
582
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000583bool BranchFolder::TailMergeBlocks(MachineFunction &MF) {
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000584
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000585 if (!EnableTailMerge) return false;
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000586
587 MadeChange = false;
588
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000589 // First find blocks with no successors.
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000590 MergePotentials.clear();
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000591 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I) {
592 if (I->succ_empty())
Dale Johannesen7aea8322007-05-23 21:07:20 +0000593 MergePotentials.push_back(std::make_pair(HashEndOfMBB(I, 2U), I));
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000594 }
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000595 // See if we can do any tail merging on those.
Dale Johannesen1a90a5a2007-06-08 01:08:52 +0000596 if (MergePotentials.size() < TailMergeThreshold)
Dale Johannesen53af4c02007-06-08 00:34:27 +0000597 MadeChange |= TryMergeBlocks(NULL, NULL);
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000598
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000599 // Look at blocks (IBB) with multiple predecessors (PBB).
600 // We change each predecessor to a canonical form, by
601 // (1) temporarily removing any unconditional branch from the predecessor
602 // to IBB, and
603 // (2) alter conditional branches so they branch to the other block
604 // not IBB; this may require adding back an unconditional branch to IBB
605 // later, where there wasn't one coming in. E.g.
606 // Bcc IBB
607 // fallthrough to QBB
608 // here becomes
609 // Bncc QBB
610 // with a conceptual B to IBB after that, which never actually exists.
611 // With those changes, we see whether the predecessors' tails match,
612 // and merge them if so. We change things out of canonical form and
613 // back to the way they were later in the process. (OptimizeBranches
614 // would undo some of this, but we can't use it, because we'd get into
615 // a compile-time infinite loop repeatedly doing and undoing the same
616 // transformations.)
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000617
618 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I) {
Dale Johannesen1a90a5a2007-06-08 01:08:52 +0000619 if (!I->succ_empty() && I->pred_size() >= 2 &&
620 I->pred_size() < TailMergeThreshold) {
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000621 MachineBasicBlock *IBB = I;
622 MachineBasicBlock *PredBB = prior(I);
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000623 MergePotentials.clear();
Dale Johannesen1a90a5a2007-06-08 01:08:52 +0000624 for (MachineBasicBlock::pred_iterator P = I->pred_begin(),
625 E2 = I->pred_end();
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000626 P != E2; ++P) {
627 MachineBasicBlock* PBB = *P;
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000628 // Skip blocks that loop to themselves, can't tail merge these.
629 if (PBB==IBB)
630 continue;
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000631 MachineBasicBlock *TBB = 0, *FBB = 0;
632 std::vector<MachineOperand> Cond;
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000633 if (!TII->AnalyzeBranch(*PBB, TBB, FBB, Cond)) {
634 // Failing case: IBB is the target of a cbr, and
635 // we cannot reverse the branch.
636 std::vector<MachineOperand> NewCond(Cond);
637 if (Cond.size() && TBB==IBB) {
638 if (TII->ReverseBranchCondition(NewCond))
639 continue;
640 // This is the QBB case described above
641 if (!FBB)
642 FBB = next(MachineFunction::iterator(PBB));
643 }
Dale Johannesenfe7e3972007-06-04 23:52:54 +0000644 // Failing case: the only way IBB can be reached from PBB is via
645 // exception handling. Happens for landing pads. Would be nice
646 // to have a bit in the edge so we didn't have to do all this.
647 if (IBB->isLandingPad()) {
648 MachineFunction::iterator IP = PBB; IP++;
649 MachineBasicBlock* PredNextBB = NULL;
650 if (IP!=MF.end())
651 PredNextBB = IP;
652 if (TBB==NULL) {
653 if (IBB!=PredNextBB) // fallthrough
654 continue;
655 } else if (FBB) {
656 if (TBB!=IBB && FBB!=IBB) // cbr then ubr
657 continue;
Dan Gohman30359592008-01-29 13:02:09 +0000658 } else if (Cond.empty()) {
Dale Johannesenfe7e3972007-06-04 23:52:54 +0000659 if (TBB!=IBB) // ubr
660 continue;
661 } else {
662 if (TBB!=IBB && IBB!=PredNextBB) // cbr
663 continue;
664 }
665 }
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000666 // Remove the unconditional branch at the end, if any.
667 if (TBB && (Cond.size()==0 || FBB)) {
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000668 TII->RemoveBranch(*PBB);
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000669 if (Cond.size())
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000670 // reinsert conditional branch only, for now
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000671 TII->InsertBranch(*PBB, (TBB==IBB) ? FBB : TBB, 0, NewCond);
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000672 }
Dale Johannesen7aea8322007-05-23 21:07:20 +0000673 MergePotentials.push_back(std::make_pair(HashEndOfMBB(PBB, 1U), *P));
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000674 }
675 }
676 if (MergePotentials.size() >= 2)
677 MadeChange |= TryMergeBlocks(I, PredBB);
678 // Reinsert an unconditional branch if needed.
679 // The 1 below can be either an original single predecessor, or a result
680 // of removing blocks in TryMergeBlocks.
Dale Johannesen1cf08c12007-05-18 01:28:58 +0000681 PredBB = prior(I); // this may have been changed in TryMergeBlocks
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000682 if (MergePotentials.size()==1 &&
683 (MergePotentials.begin())->second != PredBB)
Dale Johannesen76b38fc2007-05-10 01:01:49 +0000684 FixTail((MergePotentials.begin())->second, I, TII);
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000685 }
686 }
Dale Johannesen7d33b4c2007-05-07 20:57:21 +0000687 return MadeChange;
688}
Chris Lattner12143052006-10-21 00:47:49 +0000689
690//===----------------------------------------------------------------------===//
691// Branch Optimization
692//===----------------------------------------------------------------------===//
693
694bool BranchFolder::OptimizeBranches(MachineFunction &MF) {
695 MadeChange = false;
696
Dale Johannesen6b896ce2007-02-17 00:44:34 +0000697 // Make sure blocks are numbered in order
698 MF.RenumberBlocks();
699
Chris Lattner12143052006-10-21 00:47:49 +0000700 for (MachineFunction::iterator I = ++MF.begin(), E = MF.end(); I != E; ) {
701 MachineBasicBlock *MBB = I++;
702 OptimizeBlock(MBB);
703
704 // If it is dead, remove it.
Jim Laskey033c9712007-02-22 16:39:03 +0000705 if (MBB->pred_empty()) {
Chris Lattner12143052006-10-21 00:47:49 +0000706 RemoveDeadBlock(MBB);
707 MadeChange = true;
708 ++NumDeadBlocks;
709 }
710 }
711 return MadeChange;
712}
713
714
Chris Lattner6b0e3f82006-10-29 21:05:41 +0000715/// CanFallThrough - Return true if the specified block (with the specified
716/// branch condition) can implicitly transfer control to the block after it by
717/// falling off the end of it. This should return false if it can reach the
718/// block after it, but it uses an explicit branch to do so (e.g. a table jump).
719///
720/// True is a conservative answer.
721///
722bool BranchFolder::CanFallThrough(MachineBasicBlock *CurBB,
723 bool BranchUnAnalyzable,
724 MachineBasicBlock *TBB, MachineBasicBlock *FBB,
725 const std::vector<MachineOperand> &Cond) {
726 MachineFunction::iterator Fallthrough = CurBB;
727 ++Fallthrough;
728 // If FallthroughBlock is off the end of the function, it can't fall through.
729 if (Fallthrough == CurBB->getParent()->end())
730 return false;
731
732 // If FallthroughBlock isn't a successor of CurBB, no fallthrough is possible.
733 if (!CurBB->isSuccessor(Fallthrough))
734 return false;
735
736 // If we couldn't analyze the branch, assume it could fall through.
737 if (BranchUnAnalyzable) return true;
738
Chris Lattner7d097842006-10-24 01:12:32 +0000739 // If there is no branch, control always falls through.
740 if (TBB == 0) return true;
741
742 // If there is some explicit branch to the fallthrough block, it can obviously
743 // reach, even though the branch should get folded to fall through implicitly.
Chris Lattner6b0e3f82006-10-29 21:05:41 +0000744 if (MachineFunction::iterator(TBB) == Fallthrough ||
745 MachineFunction::iterator(FBB) == Fallthrough)
Chris Lattner7d097842006-10-24 01:12:32 +0000746 return true;
747
748 // If it's an unconditional branch to some block not the fall through, it
749 // doesn't fall through.
750 if (Cond.empty()) return false;
751
752 // Otherwise, if it is conditional and has no explicit false block, it falls
753 // through.
Chris Lattnerc2e91e32006-10-25 22:21:37 +0000754 return FBB == 0;
Chris Lattner7d097842006-10-24 01:12:32 +0000755}
756
Chris Lattner6b0e3f82006-10-29 21:05:41 +0000757/// CanFallThrough - Return true if the specified can implicitly transfer
758/// control to the block after it by falling off the end of it. This should
759/// return false if it can reach the block after it, but it uses an explicit
760/// branch to do so (e.g. a table jump).
761///
762/// True is a conservative answer.
763///
764bool BranchFolder::CanFallThrough(MachineBasicBlock *CurBB) {
765 MachineBasicBlock *TBB = 0, *FBB = 0;
766 std::vector<MachineOperand> Cond;
767 bool CurUnAnalyzable = TII->AnalyzeBranch(*CurBB, TBB, FBB, Cond);
768 return CanFallThrough(CurBB, CurUnAnalyzable, TBB, FBB, Cond);
769}
770
Chris Lattnera7bef4a2006-11-18 20:47:54 +0000771/// IsBetterFallthrough - Return true if it would be clearly better to
772/// fall-through to MBB1 than to fall through into MBB2. This has to return
773/// a strict ordering, returning true for both (MBB1,MBB2) and (MBB2,MBB1) will
774/// result in infinite loops.
775static bool IsBetterFallthrough(MachineBasicBlock *MBB1,
Chris Lattner69244302008-01-07 01:56:04 +0000776 MachineBasicBlock *MBB2) {
Chris Lattner154e1042006-11-18 21:30:35 +0000777 // Right now, we use a simple heuristic. If MBB2 ends with a call, and
778 // MBB1 doesn't, we prefer to fall through into MBB1. This allows us to
Chris Lattnera7bef4a2006-11-18 20:47:54 +0000779 // optimize branches that branch to either a return block or an assert block
780 // into a fallthrough to the return.
781 if (MBB1->empty() || MBB2->empty()) return false;
Christopher Lamb11a4f642007-12-10 07:24:06 +0000782
783 // If there is a clear successor ordering we make sure that one block
784 // will fall through to the next
785 if (MBB1->isSuccessor(MBB2)) return true;
786 if (MBB2->isSuccessor(MBB1)) return false;
Chris Lattnera7bef4a2006-11-18 20:47:54 +0000787
788 MachineInstr *MBB1I = --MBB1->end();
789 MachineInstr *MBB2I = --MBB2->end();
Chris Lattner749c6f62008-01-07 07:27:27 +0000790 return MBB2I->getDesc().isCall() && !MBB1I->getDesc().isCall();
Chris Lattnera7bef4a2006-11-18 20:47:54 +0000791}
792
Chris Lattner7821a8a2006-10-14 00:21:48 +0000793/// OptimizeBlock - Analyze and optimize control flow related to the specified
794/// block. This is never called on the entry block.
Chris Lattner7d097842006-10-24 01:12:32 +0000795void BranchFolder::OptimizeBlock(MachineBasicBlock *MBB) {
796 MachineFunction::iterator FallThrough = MBB;
797 ++FallThrough;
798
Chris Lattnereb15eee2006-10-13 20:43:10 +0000799 // If this block is empty, make everyone use its fall-through, not the block
Dale Johannesena52dd152007-05-31 21:54:00 +0000800 // explicitly. Landing pads should not do this since the landing-pad table
801 // points to this block.
802 if (MBB->empty() && !MBB->isLandingPad()) {
Chris Lattner386e2902006-10-21 05:08:28 +0000803 // Dead block? Leave for cleanup later.
Jim Laskey033c9712007-02-22 16:39:03 +0000804 if (MBB->pred_empty()) return;
Chris Lattner7821a8a2006-10-14 00:21:48 +0000805
Chris Lattnerc50ffcb2006-10-17 17:13:52 +0000806 if (FallThrough == MBB->getParent()->end()) {
807 // TODO: Simplify preds to not branch here if possible!
808 } else {
809 // Rewrite all predecessors of the old block to go to the fallthrough
810 // instead.
Jim Laskey033c9712007-02-22 16:39:03 +0000811 while (!MBB->pred_empty()) {
Chris Lattner7821a8a2006-10-14 00:21:48 +0000812 MachineBasicBlock *Pred = *(MBB->pred_end()-1);
Evan Cheng0370fad2007-06-04 06:44:01 +0000813 Pred->ReplaceUsesOfBlockWith(MBB, FallThrough);
Chris Lattner7821a8a2006-10-14 00:21:48 +0000814 }
Chris Lattnerc50ffcb2006-10-17 17:13:52 +0000815
816 // If MBB was the target of a jump table, update jump tables to go to the
817 // fallthrough instead.
Chris Lattner6acfe122006-10-28 18:34:47 +0000818 MBB->getParent()->getJumpTableInfo()->
819 ReplaceMBBInJumpTables(MBB, FallThrough);
Chris Lattner7821a8a2006-10-14 00:21:48 +0000820 MadeChange = true;
Chris Lattner21ab22e2004-07-31 10:01:27 +0000821 }
Chris Lattner7821a8a2006-10-14 00:21:48 +0000822 return;
Chris Lattner21ab22e2004-07-31 10:01:27 +0000823 }
824
Chris Lattner7821a8a2006-10-14 00:21:48 +0000825 // Check to see if we can simplify the terminator of the block before this
826 // one.
Chris Lattner7d097842006-10-24 01:12:32 +0000827 MachineBasicBlock &PrevBB = *prior(MachineFunction::iterator(MBB));
Chris Lattnerffddf6b2006-10-17 18:16:40 +0000828
Chris Lattner7821a8a2006-10-14 00:21:48 +0000829 MachineBasicBlock *PriorTBB = 0, *PriorFBB = 0;
830 std::vector<MachineOperand> PriorCond;
Chris Lattner6b0e3f82006-10-29 21:05:41 +0000831 bool PriorUnAnalyzable =
832 TII->AnalyzeBranch(PrevBB, PriorTBB, PriorFBB, PriorCond);
Chris Lattner386e2902006-10-21 05:08:28 +0000833 if (!PriorUnAnalyzable) {
834 // If the CFG for the prior block has extra edges, remove them.
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000835 MadeChange |= PrevBB.CorrectExtraCFGEdges(PriorTBB, PriorFBB,
836 !PriorCond.empty());
Chris Lattner386e2902006-10-21 05:08:28 +0000837
Chris Lattner7821a8a2006-10-14 00:21:48 +0000838 // If the previous branch is conditional and both conditions go to the same
Chris Lattner2d47bd92006-10-21 05:43:30 +0000839 // destination, remove the branch, replacing it with an unconditional one or
840 // a fall-through.
Chris Lattner7821a8a2006-10-14 00:21:48 +0000841 if (PriorTBB && PriorTBB == PriorFBB) {
Chris Lattner386e2902006-10-21 05:08:28 +0000842 TII->RemoveBranch(PrevBB);
Chris Lattner7821a8a2006-10-14 00:21:48 +0000843 PriorCond.clear();
Chris Lattner7d097842006-10-24 01:12:32 +0000844 if (PriorTBB != MBB)
Chris Lattner386e2902006-10-21 05:08:28 +0000845 TII->InsertBranch(PrevBB, PriorTBB, 0, PriorCond);
Chris Lattner7821a8a2006-10-14 00:21:48 +0000846 MadeChange = true;
Chris Lattner12143052006-10-21 00:47:49 +0000847 ++NumBranchOpts;
Chris Lattner7821a8a2006-10-14 00:21:48 +0000848 return OptimizeBlock(MBB);
849 }
850
851 // If the previous branch *only* branches to *this* block (conditional or
852 // not) remove the branch.
Chris Lattner7d097842006-10-24 01:12:32 +0000853 if (PriorTBB == MBB && PriorFBB == 0) {
Chris Lattner386e2902006-10-21 05:08:28 +0000854 TII->RemoveBranch(PrevBB);
Chris Lattner7821a8a2006-10-14 00:21:48 +0000855 MadeChange = true;
Chris Lattner12143052006-10-21 00:47:49 +0000856 ++NumBranchOpts;
Chris Lattner7821a8a2006-10-14 00:21:48 +0000857 return OptimizeBlock(MBB);
858 }
Chris Lattner2d47bd92006-10-21 05:43:30 +0000859
860 // If the prior block branches somewhere else on the condition and here if
861 // the condition is false, remove the uncond second branch.
Chris Lattner7d097842006-10-24 01:12:32 +0000862 if (PriorFBB == MBB) {
Chris Lattner2d47bd92006-10-21 05:43:30 +0000863 TII->RemoveBranch(PrevBB);
864 TII->InsertBranch(PrevBB, PriorTBB, 0, PriorCond);
865 MadeChange = true;
866 ++NumBranchOpts;
867 return OptimizeBlock(MBB);
868 }
Chris Lattnera2d79952006-10-21 05:54:00 +0000869
870 // If the prior block branches here on true and somewhere else on false, and
871 // if the branch condition is reversible, reverse the branch to create a
872 // fall-through.
Chris Lattner7d097842006-10-24 01:12:32 +0000873 if (PriorTBB == MBB) {
Chris Lattnera2d79952006-10-21 05:54:00 +0000874 std::vector<MachineOperand> NewPriorCond(PriorCond);
875 if (!TII->ReverseBranchCondition(NewPriorCond)) {
876 TII->RemoveBranch(PrevBB);
877 TII->InsertBranch(PrevBB, PriorFBB, 0, NewPriorCond);
878 MadeChange = true;
879 ++NumBranchOpts;
880 return OptimizeBlock(MBB);
881 }
882 }
Chris Lattnera7bef4a2006-11-18 20:47:54 +0000883
Chris Lattner154e1042006-11-18 21:30:35 +0000884 // If this block doesn't fall through (e.g. it ends with an uncond branch or
885 // has no successors) and if the pred falls through into this block, and if
886 // it would otherwise fall through into the block after this, move this
887 // block to the end of the function.
888 //
Chris Lattnera7bef4a2006-11-18 20:47:54 +0000889 // We consider it more likely that execution will stay in the function (e.g.
890 // due to loops) than it is to exit it. This asserts in loops etc, moving
891 // the assert condition out of the loop body.
Chris Lattner154e1042006-11-18 21:30:35 +0000892 if (!PriorCond.empty() && PriorFBB == 0 &&
893 MachineFunction::iterator(PriorTBB) == FallThrough &&
894 !CanFallThrough(MBB)) {
Chris Lattnerf10a56a2006-11-18 21:56:39 +0000895 bool DoTransform = true;
896
Chris Lattnera7bef4a2006-11-18 20:47:54 +0000897 // We have to be careful that the succs of PredBB aren't both no-successor
898 // blocks. If neither have successors and if PredBB is the second from
899 // last block in the function, we'd just keep swapping the two blocks for
900 // last. Only do the swap if one is clearly better to fall through than
901 // the other.
Chris Lattnerf10a56a2006-11-18 21:56:39 +0000902 if (FallThrough == --MBB->getParent()->end() &&
Chris Lattner69244302008-01-07 01:56:04 +0000903 !IsBetterFallthrough(PriorTBB, MBB))
Chris Lattnerf10a56a2006-11-18 21:56:39 +0000904 DoTransform = false;
905
906 // We don't want to do this transformation if we have control flow like:
907 // br cond BB2
908 // BB1:
909 // ..
910 // jmp BBX
911 // BB2:
912 // ..
913 // ret
914 //
915 // In this case, we could actually be moving the return block *into* a
916 // loop!
Chris Lattner4b105912006-11-18 22:25:39 +0000917 if (DoTransform && !MBB->succ_empty() &&
918 (!CanFallThrough(PriorTBB) || PriorTBB->empty()))
Chris Lattnerf10a56a2006-11-18 21:56:39 +0000919 DoTransform = false;
Chris Lattnera7bef4a2006-11-18 20:47:54 +0000920
Chris Lattnerf10a56a2006-11-18 21:56:39 +0000921
922 if (DoTransform) {
Chris Lattnera7bef4a2006-11-18 20:47:54 +0000923 // Reverse the branch so we will fall through on the previous true cond.
924 std::vector<MachineOperand> NewPriorCond(PriorCond);
925 if (!TII->ReverseBranchCondition(NewPriorCond)) {
Chris Lattnerf10a56a2006-11-18 21:56:39 +0000926 DOUT << "\nMoving MBB: " << *MBB;
927 DOUT << "To make fallthrough to: " << *PriorTBB << "\n";
928
Chris Lattnera7bef4a2006-11-18 20:47:54 +0000929 TII->RemoveBranch(PrevBB);
930 TII->InsertBranch(PrevBB, MBB, 0, NewPriorCond);
931
932 // Move this block to the end of the function.
933 MBB->moveAfter(--MBB->getParent()->end());
934 MadeChange = true;
935 ++NumBranchOpts;
936 return;
937 }
938 }
939 }
Chris Lattner7821a8a2006-10-14 00:21:48 +0000940 }
Chris Lattner7821a8a2006-10-14 00:21:48 +0000941
Chris Lattner386e2902006-10-21 05:08:28 +0000942 // Analyze the branch in the current block.
943 MachineBasicBlock *CurTBB = 0, *CurFBB = 0;
944 std::vector<MachineOperand> CurCond;
Chris Lattner6b0e3f82006-10-29 21:05:41 +0000945 bool CurUnAnalyzable = TII->AnalyzeBranch(*MBB, CurTBB, CurFBB, CurCond);
946 if (!CurUnAnalyzable) {
Chris Lattner386e2902006-10-21 05:08:28 +0000947 // If the CFG for the prior block has extra edges, remove them.
Evan Cheng2bdb7d02007-06-18 22:43:58 +0000948 MadeChange |= MBB->CorrectExtraCFGEdges(CurTBB, CurFBB, !CurCond.empty());
Chris Lattnereb15eee2006-10-13 20:43:10 +0000949
Chris Lattner5d056952006-11-08 01:03:21 +0000950 // If this is a two-way branch, and the FBB branches to this block, reverse
951 // the condition so the single-basic-block loop is faster. Instead of:
952 // Loop: xxx; jcc Out; jmp Loop
953 // we want:
954 // Loop: xxx; jncc Loop; jmp Out
955 if (CurTBB && CurFBB && CurFBB == MBB && CurTBB != MBB) {
956 std::vector<MachineOperand> NewCond(CurCond);
957 if (!TII->ReverseBranchCondition(NewCond)) {
958 TII->RemoveBranch(*MBB);
959 TII->InsertBranch(*MBB, CurFBB, CurTBB, NewCond);
960 MadeChange = true;
961 ++NumBranchOpts;
962 return OptimizeBlock(MBB);
963 }
964 }
965
966
Chris Lattner386e2902006-10-21 05:08:28 +0000967 // If this branch is the only thing in its block, see if we can forward
968 // other blocks across it.
969 if (CurTBB && CurCond.empty() && CurFBB == 0 &&
Chris Lattner749c6f62008-01-07 07:27:27 +0000970 MBB->begin()->getDesc().isBranch() && CurTBB != MBB) {
Chris Lattner386e2902006-10-21 05:08:28 +0000971 // This block may contain just an unconditional branch. Because there can
972 // be 'non-branch terminators' in the block, try removing the branch and
973 // then seeing if the block is empty.
974 TII->RemoveBranch(*MBB);
975
976 // If this block is just an unconditional branch to CurTBB, we can
977 // usually completely eliminate the block. The only case we cannot
978 // completely eliminate the block is when the block before this one
979 // falls through into MBB and we can't understand the prior block's branch
980 // condition.
Chris Lattnercf420cc2006-10-28 17:32:47 +0000981 if (MBB->empty()) {
982 bool PredHasNoFallThrough = TII->BlockHasNoFallThrough(PrevBB);
983 if (PredHasNoFallThrough || !PriorUnAnalyzable ||
984 !PrevBB.isSuccessor(MBB)) {
985 // If the prior block falls through into us, turn it into an
986 // explicit branch to us to make updates simpler.
987 if (!PredHasNoFallThrough && PrevBB.isSuccessor(MBB) &&
988 PriorTBB != MBB && PriorFBB != MBB) {
989 if (PriorTBB == 0) {
Chris Lattner6acfe122006-10-28 18:34:47 +0000990 assert(PriorCond.empty() && PriorFBB == 0 &&
991 "Bad branch analysis");
Chris Lattnercf420cc2006-10-28 17:32:47 +0000992 PriorTBB = MBB;
993 } else {
994 assert(PriorFBB == 0 && "Machine CFG out of date!");
995 PriorFBB = MBB;
996 }
997 TII->RemoveBranch(PrevBB);
998 TII->InsertBranch(PrevBB, PriorTBB, PriorFBB, PriorCond);
Chris Lattner386e2902006-10-21 05:08:28 +0000999 }
Chris Lattner386e2902006-10-21 05:08:28 +00001000
Chris Lattnercf420cc2006-10-28 17:32:47 +00001001 // Iterate through all the predecessors, revectoring each in-turn.
David Greene8a46d342007-06-29 02:45:24 +00001002 size_t PI = 0;
Chris Lattnercf420cc2006-10-28 17:32:47 +00001003 bool DidChange = false;
1004 bool HasBranchToSelf = false;
David Greene8a46d342007-06-29 02:45:24 +00001005 while(PI != MBB->pred_size()) {
1006 MachineBasicBlock *PMBB = *(MBB->pred_begin() + PI);
1007 if (PMBB == MBB) {
Chris Lattnercf420cc2006-10-28 17:32:47 +00001008 // If this block has an uncond branch to itself, leave it.
1009 ++PI;
1010 HasBranchToSelf = true;
1011 } else {
1012 DidChange = true;
David Greene8a46d342007-06-29 02:45:24 +00001013 PMBB->ReplaceUsesOfBlockWith(MBB, CurTBB);
Chris Lattnercf420cc2006-10-28 17:32:47 +00001014 }
Chris Lattner4bc135e2006-10-21 06:11:43 +00001015 }
Chris Lattner386e2902006-10-21 05:08:28 +00001016
Chris Lattnercf420cc2006-10-28 17:32:47 +00001017 // Change any jumptables to go to the new MBB.
Chris Lattner6acfe122006-10-28 18:34:47 +00001018 MBB->getParent()->getJumpTableInfo()->
1019 ReplaceMBBInJumpTables(MBB, CurTBB);
Chris Lattnercf420cc2006-10-28 17:32:47 +00001020 if (DidChange) {
1021 ++NumBranchOpts;
1022 MadeChange = true;
1023 if (!HasBranchToSelf) return;
1024 }
Chris Lattner4bc135e2006-10-21 06:11:43 +00001025 }
Chris Lattnereb15eee2006-10-13 20:43:10 +00001026 }
Chris Lattnereb15eee2006-10-13 20:43:10 +00001027
Chris Lattner386e2902006-10-21 05:08:28 +00001028 // Add the branch back if the block is more than just an uncond branch.
1029 TII->InsertBranch(*MBB, CurTBB, 0, CurCond);
Chris Lattner21ab22e2004-07-31 10:01:27 +00001030 }
Chris Lattner6b0e3f82006-10-29 21:05:41 +00001031 }
1032
1033 // If the prior block doesn't fall through into this block, and if this
1034 // block doesn't fall through into some other block, see if we can find a
1035 // place to move this block where a fall-through will happen.
1036 if (!CanFallThrough(&PrevBB, PriorUnAnalyzable,
1037 PriorTBB, PriorFBB, PriorCond)) {
1038 // Now we know that there was no fall-through into this block, check to
1039 // see if it has a fall-through into its successor.
Dale Johannesen6b896ce2007-02-17 00:44:34 +00001040 bool CurFallsThru = CanFallThrough(MBB, CurUnAnalyzable, CurTBB, CurFBB,
Chris Lattner77edc4b2007-04-30 23:35:00 +00001041 CurCond);
Dale Johannesen6b896ce2007-02-17 00:44:34 +00001042
Jim Laskey02b3f5e2007-02-21 22:42:20 +00001043 if (!MBB->isLandingPad()) {
1044 // Check all the predecessors of this block. If one of them has no fall
1045 // throughs, move this block right after it.
1046 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
1047 E = MBB->pred_end(); PI != E; ++PI) {
1048 // Analyze the branch at the end of the pred.
1049 MachineBasicBlock *PredBB = *PI;
1050 MachineFunction::iterator PredFallthrough = PredBB; ++PredFallthrough;
1051 if (PredBB != MBB && !CanFallThrough(PredBB)
Dale Johannesen76b38fc2007-05-10 01:01:49 +00001052 && (!CurFallsThru || !CurTBB || !CurFBB)
Jim Laskey02b3f5e2007-02-21 22:42:20 +00001053 && (!CurFallsThru || MBB->getNumber() >= PredBB->getNumber())) {
1054 // If the current block doesn't fall through, just move it.
1055 // If the current block can fall through and does not end with a
1056 // conditional branch, we need to append an unconditional jump to
1057 // the (current) next block. To avoid a possible compile-time
1058 // infinite loop, move blocks only backward in this case.
Dale Johannesen76b38fc2007-05-10 01:01:49 +00001059 // Also, if there are already 2 branches here, we cannot add a third;
1060 // this means we have the case
1061 // Bcc next
1062 // B elsewhere
1063 // next:
Jim Laskey02b3f5e2007-02-21 22:42:20 +00001064 if (CurFallsThru) {
1065 MachineBasicBlock *NextBB = next(MachineFunction::iterator(MBB));
1066 CurCond.clear();
1067 TII->InsertBranch(*MBB, NextBB, 0, CurCond);
1068 }
1069 MBB->moveAfter(PredBB);
1070 MadeChange = true;
1071 return OptimizeBlock(MBB);
Chris Lattner7d097842006-10-24 01:12:32 +00001072 }
1073 }
Dale Johannesen6b896ce2007-02-17 00:44:34 +00001074 }
Chris Lattner6b0e3f82006-10-29 21:05:41 +00001075
Dale Johannesen6b896ce2007-02-17 00:44:34 +00001076 if (!CurFallsThru) {
Chris Lattner6b0e3f82006-10-29 21:05:41 +00001077 // Check all successors to see if we can move this block before it.
1078 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
1079 E = MBB->succ_end(); SI != E; ++SI) {
1080 // Analyze the branch at the end of the block before the succ.
1081 MachineBasicBlock *SuccBB = *SI;
1082 MachineFunction::iterator SuccPrev = SuccBB; --SuccPrev;
Chris Lattner6b0e3f82006-10-29 21:05:41 +00001083 std::vector<MachineOperand> SuccPrevCond;
Chris Lattner77edc4b2007-04-30 23:35:00 +00001084
1085 // If this block doesn't already fall-through to that successor, and if
1086 // the succ doesn't already have a block that can fall through into it,
1087 // and if the successor isn't an EH destination, we can arrange for the
1088 // fallthrough to happen.
1089 if (SuccBB != MBB && !CanFallThrough(SuccPrev) &&
1090 !SuccBB->isLandingPad()) {
Chris Lattner6b0e3f82006-10-29 21:05:41 +00001091 MBB->moveBefore(SuccBB);
1092 MadeChange = true;
1093 return OptimizeBlock(MBB);
1094 }
1095 }
1096
1097 // Okay, there is no really great place to put this block. If, however,
1098 // the block before this one would be a fall-through if this block were
1099 // removed, move this block to the end of the function.
1100 if (FallThrough != MBB->getParent()->end() &&
1101 PrevBB.isSuccessor(FallThrough)) {
1102 MBB->moveAfter(--MBB->getParent()->end());
1103 MadeChange = true;
1104 return;
1105 }
Chris Lattner7d097842006-10-24 01:12:32 +00001106 }
Chris Lattner21ab22e2004-07-31 10:01:27 +00001107 }
Chris Lattner21ab22e2004-07-31 10:01:27 +00001108}