52fde7f44b9fa04ac5949ae79919bfe39d998390
[oota-llvm.git] / lib / CodeGen / MachineBlockPlacement.cpp
1 //===-- MachineBlockPlacement.cpp - Basic Block Code Layout optimization --===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements basic block placement transformations using the CFG
11 // structure and branch probability estimates.
12 //
13 // The pass strives to preserve the structure of the CFG (that is, retain
14 // a topological ordering of basic blocks) in the absense of a *strong* signal
15 // to the contrary from probabilities. However, within the CFG structure, it
16 // attempts to choose an ordering which favors placing more likely sequences of
17 // blocks adjacent to each other.
18 //
19 // The algorithm works from the inner-most loop within a function outward, and
20 // at each stage walks through the basic blocks, trying to coalesce them into
21 // sequential chains where allowed by the CFG (or demanded by heavy
22 // probabilities). Finally, it walks the blocks in topological order, and the
23 // first time it reaches a chain of basic blocks, it schedules them in the
24 // function in-order.
25 //
26 //===----------------------------------------------------------------------===//
27
28 #define DEBUG_TYPE "block-placement2"
29 #include "llvm/CodeGen/MachineBasicBlock.h"
30 #include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
31 #include "llvm/CodeGen/MachineBranchProbabilityInfo.h"
32 #include "llvm/CodeGen/MachineFunction.h"
33 #include "llvm/CodeGen/MachineFunctionPass.h"
34 #include "llvm/CodeGen/MachineLoopInfo.h"
35 #include "llvm/CodeGen/MachineModuleInfo.h"
36 #include "llvm/CodeGen/Passes.h"
37 #include "llvm/Support/Allocator.h"
38 #include "llvm/Support/Debug.h"
39 #include "llvm/ADT/DenseMap.h"
40 #include "llvm/ADT/SmallPtrSet.h"
41 #include "llvm/ADT/SmallVector.h"
42 #include "llvm/ADT/Statistic.h"
43 #include "llvm/Target/TargetInstrInfo.h"
44 #include "llvm/Target/TargetLowering.h"
45 #include <algorithm>
46 using namespace llvm;
47
48 STATISTIC(NumCondBranches, "Number of conditional branches");
49 STATISTIC(NumUncondBranches, "Number of uncondittional branches");
50 STATISTIC(CondBranchTakenFreq,
51           "Potential frequency of taking conditional branches");
52 STATISTIC(UncondBranchTakenFreq,
53           "Potential frequency of taking unconditional branches");
54
55 namespace {
56 class BlockChain;
57 /// \brief Type for our function-wide basic block -> block chain mapping.
58 typedef DenseMap<MachineBasicBlock *, BlockChain *> BlockToChainMapType;
59 }
60
61 namespace {
62 /// \brief A chain of blocks which will be laid out contiguously.
63 ///
64 /// This is the datastructure representing a chain of consecutive blocks that
65 /// are profitable to layout together in order to maximize fallthrough
66 /// probabilities. We also can use a block chain to represent a sequence of
67 /// basic blocks which have some external (correctness) requirement for
68 /// sequential layout.
69 ///
70 /// Eventually, the block chains will form a directed graph over the function.
71 /// We provide an SCC-supporting-iterator in order to quicky build and walk the
72 /// SCCs of block chains within a function.
73 ///
74 /// The block chains also have support for calculating and caching probability
75 /// information related to the chain itself versus other chains. This is used
76 /// for ranking during the final layout of block chains.
77 class BlockChain {
78   /// \brief The sequence of blocks belonging to this chain.
79   ///
80   /// This is the sequence of blocks for a particular chain. These will be laid
81   /// out in-order within the function.
82   SmallVector<MachineBasicBlock *, 4> Blocks;
83
84   /// \brief A handle to the function-wide basic block to block chain mapping.
85   ///
86   /// This is retained in each block chain to simplify the computation of child
87   /// block chains for SCC-formation and iteration. We store the edges to child
88   /// basic blocks, and map them back to their associated chains using this
89   /// structure.
90   BlockToChainMapType &BlockToChain;
91
92 public:
93   /// \brief Construct a new BlockChain.
94   ///
95   /// This builds a new block chain representing a single basic block in the
96   /// function. It also registers itself as the chain that block participates
97   /// in with the BlockToChain mapping.
98   BlockChain(BlockToChainMapType &BlockToChain, MachineBasicBlock *BB)
99     : Blocks(1, BB), BlockToChain(BlockToChain), LoopPredecessors(0) {
100     assert(BB && "Cannot create a chain with a null basic block");
101     BlockToChain[BB] = this;
102   }
103
104   /// \brief Iterator over blocks within the chain.
105   typedef SmallVectorImpl<MachineBasicBlock *>::const_iterator iterator;
106
107   /// \brief Beginning of blocks within the chain.
108   iterator begin() const { return Blocks.begin(); }
109
110   /// \brief End of blocks within the chain.
111   iterator end() const { return Blocks.end(); }
112
113   /// \brief Merge a block chain into this one.
114   ///
115   /// This routine merges a block chain into this one. It takes care of forming
116   /// a contiguous sequence of basic blocks, updating the edge list, and
117   /// updating the block -> chain mapping. It does not free or tear down the
118   /// old chain, but the old chain's block list is no longer valid.
119   void merge(MachineBasicBlock *BB, BlockChain *Chain) {
120     assert(BB);
121     assert(!Blocks.empty());
122
123     // Fast path in case we don't have a chain already.
124     if (!Chain) {
125       assert(!BlockToChain[BB]);
126       Blocks.push_back(BB);
127       BlockToChain[BB] = this;
128       return;
129     }
130
131     assert(BB == *Chain->begin());
132     assert(Chain->begin() != Chain->end());
133
134     // Update the incoming blocks to point to this chain, and add them to the
135     // chain structure.
136     for (BlockChain::iterator BI = Chain->begin(), BE = Chain->end();
137          BI != BE; ++BI) {
138       Blocks.push_back(*BI);
139       assert(BlockToChain[*BI] == Chain && "Incoming blocks not in chain");
140       BlockToChain[*BI] = this;
141     }
142   }
143
144 #ifndef NDEBUG
145   /// \brief Dump the blocks in this chain.
146   void dump() LLVM_ATTRIBUTE_USED {
147     for (iterator I = begin(), E = end(); I != E; ++I)
148       (*I)->dump();
149   }
150 #endif // NDEBUG
151
152   /// \brief Count of predecessors within the loop currently being processed.
153   ///
154   /// This count is updated at each loop we process to represent the number of
155   /// in-loop predecessors of this chain.
156   unsigned LoopPredecessors;
157 };
158 }
159
160 namespace {
161 class MachineBlockPlacement : public MachineFunctionPass {
162   /// \brief A typedef for a block filter set.
163   typedef SmallPtrSet<MachineBasicBlock *, 16> BlockFilterSet;
164
165   /// \brief A handle to the branch probability pass.
166   const MachineBranchProbabilityInfo *MBPI;
167
168   /// \brief A handle to the function-wide block frequency pass.
169   const MachineBlockFrequencyInfo *MBFI;
170
171   /// \brief A handle to the loop info.
172   const MachineLoopInfo *MLI;
173
174   /// \brief A handle to the target's instruction info.
175   const TargetInstrInfo *TII;
176
177   /// \brief A handle to the target's lowering info.
178   const TargetLowering *TLI;
179
180   /// \brief Allocator and owner of BlockChain structures.
181   ///
182   /// We build BlockChains lazily by merging together high probability BB
183   /// sequences acording to the "Algo2" in the paper mentioned at the top of
184   /// the file. To reduce malloc traffic, we allocate them using this slab-like
185   /// allocator, and destroy them after the pass completes.
186   SpecificBumpPtrAllocator<BlockChain> ChainAllocator;
187
188   /// \brief Function wide BasicBlock to BlockChain mapping.
189   ///
190   /// This mapping allows efficiently moving from any given basic block to the
191   /// BlockChain it participates in, if any. We use it to, among other things,
192   /// allow implicitly defining edges between chains as the existing edges
193   /// between basic blocks.
194   DenseMap<MachineBasicBlock *, BlockChain *> BlockToChain;
195
196   void markChainSuccessors(BlockChain &Chain,
197                            MachineBasicBlock *LoopHeaderBB,
198                            SmallVectorImpl<MachineBasicBlock *> &BlockWorkList,
199                            const BlockFilterSet *BlockFilter = 0);
200   MachineBasicBlock *selectBestSuccessor(MachineBasicBlock *BB,
201                                          BlockChain &Chain,
202                                          const BlockFilterSet *BlockFilter);
203   MachineBasicBlock *selectBestCandidateBlock(
204       BlockChain &Chain, SmallVectorImpl<MachineBasicBlock *> &WorkList,
205       const BlockFilterSet *BlockFilter);
206   MachineBasicBlock *getFirstUnplacedBlock(
207       MachineFunction &F,
208       const BlockChain &PlacedChain,
209       MachineFunction::iterator &PrevUnplacedBlockIt,
210       const BlockFilterSet *BlockFilter);
211   void buildChain(MachineBasicBlock *BB, BlockChain &Chain,
212                   SmallVectorImpl<MachineBasicBlock *> &BlockWorkList,
213                   const BlockFilterSet *BlockFilter = 0);
214   MachineBasicBlock *findBestLoopTop(MachineFunction &F,
215                                      MachineLoop &L,
216                                      const BlockFilterSet &LoopBlockSet);
217   void buildLoopChains(MachineFunction &F, MachineLoop &L);
218   void buildCFGChains(MachineFunction &F);
219   void AlignLoops(MachineFunction &F);
220
221 public:
222   static char ID; // Pass identification, replacement for typeid
223   MachineBlockPlacement() : MachineFunctionPass(ID) {
224     initializeMachineBlockPlacementPass(*PassRegistry::getPassRegistry());
225   }
226
227   bool runOnMachineFunction(MachineFunction &F);
228
229   void getAnalysisUsage(AnalysisUsage &AU) const {
230     AU.addRequired<MachineBranchProbabilityInfo>();
231     AU.addRequired<MachineBlockFrequencyInfo>();
232     AU.addRequired<MachineLoopInfo>();
233     MachineFunctionPass::getAnalysisUsage(AU);
234   }
235 };
236 }
237
238 char MachineBlockPlacement::ID = 0;
239 char &llvm::MachineBlockPlacementID = MachineBlockPlacement::ID;
240 INITIALIZE_PASS_BEGIN(MachineBlockPlacement, "block-placement2",
241                       "Branch Probability Basic Block Placement", false, false)
242 INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo)
243 INITIALIZE_PASS_DEPENDENCY(MachineBlockFrequencyInfo)
244 INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
245 INITIALIZE_PASS_END(MachineBlockPlacement, "block-placement2",
246                     "Branch Probability Basic Block Placement", false, false)
247
248 #ifndef NDEBUG
249 /// \brief Helper to print the name of a MBB.
250 ///
251 /// Only used by debug logging.
252 static std::string getBlockName(MachineBasicBlock *BB) {
253   std::string Result;
254   raw_string_ostream OS(Result);
255   OS << "BB#" << BB->getNumber()
256      << " (derived from LLVM BB '" << BB->getName() << "')";
257   OS.flush();
258   return Result;
259 }
260
261 /// \brief Helper to print the number of a MBB.
262 ///
263 /// Only used by debug logging.
264 static std::string getBlockNum(MachineBasicBlock *BB) {
265   std::string Result;
266   raw_string_ostream OS(Result);
267   OS << "BB#" << BB->getNumber();
268   OS.flush();
269   return Result;
270 }
271 #endif
272
273 /// \brief Mark a chain's successors as having one fewer preds.
274 ///
275 /// When a chain is being merged into the "placed" chain, this routine will
276 /// quickly walk the successors of each block in the chain and mark them as
277 /// having one fewer active predecessor. It also adds any successors of this
278 /// chain which reach the zero-predecessor state to the worklist passed in.
279 void MachineBlockPlacement::markChainSuccessors(
280     BlockChain &Chain,
281     MachineBasicBlock *LoopHeaderBB,
282     SmallVectorImpl<MachineBasicBlock *> &BlockWorkList,
283     const BlockFilterSet *BlockFilter) {
284   // Walk all the blocks in this chain, marking their successors as having
285   // a predecessor placed.
286   for (BlockChain::iterator CBI = Chain.begin(), CBE = Chain.end();
287        CBI != CBE; ++CBI) {
288     // Add any successors for which this is the only un-placed in-loop
289     // predecessor to the worklist as a viable candidate for CFG-neutral
290     // placement. No subsequent placement of this block will violate the CFG
291     // shape, so we get to use heuristics to choose a favorable placement.
292     for (MachineBasicBlock::succ_iterator SI = (*CBI)->succ_begin(),
293                                           SE = (*CBI)->succ_end();
294          SI != SE; ++SI) {
295       if (BlockFilter && !BlockFilter->count(*SI))
296         continue;
297       BlockChain &SuccChain = *BlockToChain[*SI];
298       // Disregard edges within a fixed chain, or edges to the loop header.
299       if (&Chain == &SuccChain || *SI == LoopHeaderBB)
300         continue;
301
302       // This is a cross-chain edge that is within the loop, so decrement the
303       // loop predecessor count of the destination chain.
304       if (SuccChain.LoopPredecessors > 0 && --SuccChain.LoopPredecessors == 0)
305         BlockWorkList.push_back(*SuccChain.begin());
306     }
307   }
308 }
309
310 /// \brief Select the best successor for a block.
311 ///
312 /// This looks across all successors of a particular block and attempts to
313 /// select the "best" one to be the layout successor. It only considers direct
314 /// successors which also pass the block filter. It will attempt to avoid
315 /// breaking CFG structure, but cave and break such structures in the case of
316 /// very hot successor edges.
317 ///
318 /// \returns The best successor block found, or null if none are viable.
319 MachineBasicBlock *MachineBlockPlacement::selectBestSuccessor(
320     MachineBasicBlock *BB, BlockChain &Chain,
321     const BlockFilterSet *BlockFilter) {
322   const BranchProbability HotProb(4, 5); // 80%
323
324   MachineBasicBlock *BestSucc = 0;
325   // FIXME: Due to the performance of the probability and weight routines in
326   // the MBPI analysis, we manually compute probabilities using the edge
327   // weights. This is suboptimal as it means that the somewhat subtle
328   // definition of edge weight semantics is encoded here as well. We should
329   // improve the MBPI interface to effeciently support query patterns such as
330   // this.
331   uint32_t BestWeight = 0;
332   uint32_t WeightScale = 0;
333   uint32_t SumWeight = MBPI->getSumForBlock(BB, WeightScale);
334   DEBUG(dbgs() << "Attempting merge from: " << getBlockName(BB) << "\n");
335   for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
336                                         SE = BB->succ_end();
337        SI != SE; ++SI) {
338     if (BlockFilter && !BlockFilter->count(*SI))
339       continue;
340     BlockChain &SuccChain = *BlockToChain[*SI];
341     if (&SuccChain == &Chain) {
342       DEBUG(dbgs() << "    " << getBlockName(*SI) << " -> Already merged!\n");
343       continue;
344     }
345     if (*SI != *SuccChain.begin()) {
346       DEBUG(dbgs() << "    " << getBlockName(*SI) << " -> Mid chain!\n");
347       continue;
348     }
349
350     uint32_t SuccWeight = MBPI->getEdgeWeight(BB, *SI);
351     BranchProbability SuccProb(SuccWeight / WeightScale, SumWeight);
352
353     // Only consider successors which are either "hot", or wouldn't violate
354     // any CFG constraints.
355     if (SuccChain.LoopPredecessors != 0) {
356       if (SuccProb < HotProb) {
357         DEBUG(dbgs() << "    " << getBlockName(*SI) << " -> CFG conflict\n");
358         continue;
359       }
360
361       // Make sure that a hot successor doesn't have a globally more important
362       // predecessor.
363       BlockFrequency CandidateEdgeFreq
364         = MBFI->getBlockFreq(BB) * SuccProb * HotProb.getCompl();
365       bool BadCFGConflict = false;
366       for (MachineBasicBlock::pred_iterator PI = (*SI)->pred_begin(),
367                                             PE = (*SI)->pred_end();
368            PI != PE; ++PI) {
369         if (*PI == *SI || (BlockFilter && !BlockFilter->count(*PI)) ||
370             BlockToChain[*PI] == &Chain)
371           continue;
372         BlockFrequency PredEdgeFreq
373           = MBFI->getBlockFreq(*PI) * MBPI->getEdgeProbability(*PI, *SI);
374         if (PredEdgeFreq >= CandidateEdgeFreq) {
375           BadCFGConflict = true;
376           break;
377         }
378       }
379       if (BadCFGConflict) {
380         DEBUG(dbgs() << "    " << getBlockName(*SI)
381                                << " -> non-cold CFG conflict\n");
382         continue;
383       }
384     }
385
386     DEBUG(dbgs() << "    " << getBlockName(*SI) << " -> " << SuccProb
387                  << " (prob)"
388                  << (SuccChain.LoopPredecessors != 0 ? " (CFG break)" : "")
389                  << "\n");
390     if (BestSucc && BestWeight >= SuccWeight)
391       continue;
392     BestSucc = *SI;
393     BestWeight = SuccWeight;
394   }
395   return BestSucc;
396 }
397
398 namespace {
399 /// \brief Predicate struct to detect blocks already placed.
400 class IsBlockPlaced {
401   const BlockChain &PlacedChain;
402   const BlockToChainMapType &BlockToChain;
403
404 public:
405   IsBlockPlaced(const BlockChain &PlacedChain,
406                 const BlockToChainMapType &BlockToChain)
407       : PlacedChain(PlacedChain), BlockToChain(BlockToChain) {}
408
409   bool operator()(MachineBasicBlock *BB) const {
410     return BlockToChain.lookup(BB) == &PlacedChain;
411   }
412 };
413 }
414
415 /// \brief Select the best block from a worklist.
416 ///
417 /// This looks through the provided worklist as a list of candidate basic
418 /// blocks and select the most profitable one to place. The definition of
419 /// profitable only really makes sense in the context of a loop. This returns
420 /// the most frequently visited block in the worklist, which in the case of
421 /// a loop, is the one most desirable to be physically close to the rest of the
422 /// loop body in order to improve icache behavior.
423 ///
424 /// \returns The best block found, or null if none are viable.
425 MachineBasicBlock *MachineBlockPlacement::selectBestCandidateBlock(
426     BlockChain &Chain, SmallVectorImpl<MachineBasicBlock *> &WorkList,
427     const BlockFilterSet *BlockFilter) {
428   // Once we need to walk the worklist looking for a candidate, cleanup the
429   // worklist of already placed entries.
430   // FIXME: If this shows up on profiles, it could be folded (at the cost of
431   // some code complexity) into the loop below.
432   WorkList.erase(std::remove_if(WorkList.begin(), WorkList.end(),
433                                 IsBlockPlaced(Chain, BlockToChain)),
434                  WorkList.end());
435
436   MachineBasicBlock *BestBlock = 0;
437   BlockFrequency BestFreq;
438   for (SmallVectorImpl<MachineBasicBlock *>::iterator WBI = WorkList.begin(),
439                                                       WBE = WorkList.end();
440        WBI != WBE; ++WBI) {
441     BlockChain &SuccChain = *BlockToChain[*WBI];
442     if (&SuccChain == &Chain) {
443       DEBUG(dbgs() << "    " << getBlockName(*WBI)
444                    << " -> Already merged!\n");
445       continue;
446     }
447     assert(SuccChain.LoopPredecessors == 0 && "Found CFG-violating block");
448
449     BlockFrequency CandidateFreq = MBFI->getBlockFreq(*WBI);
450     DEBUG(dbgs() << "    " << getBlockName(*WBI) << " -> " << CandidateFreq
451                  << " (freq)\n");
452     if (BestBlock && BestFreq >= CandidateFreq)
453       continue;
454     BestBlock = *WBI;
455     BestFreq = CandidateFreq;
456   }
457   return BestBlock;
458 }
459
460 /// \brief Retrieve the first unplaced basic block.
461 ///
462 /// This routine is called when we are unable to use the CFG to walk through
463 /// all of the basic blocks and form a chain due to unnatural loops in the CFG.
464 /// We walk through the function's blocks in order, starting from the
465 /// LastUnplacedBlockIt. We update this iterator on each call to avoid
466 /// re-scanning the entire sequence on repeated calls to this routine.
467 MachineBasicBlock *MachineBlockPlacement::getFirstUnplacedBlock(
468     MachineFunction &F, const BlockChain &PlacedChain,
469     MachineFunction::iterator &PrevUnplacedBlockIt,
470     const BlockFilterSet *BlockFilter) {
471   for (MachineFunction::iterator I = PrevUnplacedBlockIt, E = F.end(); I != E;
472        ++I) {
473     if (BlockFilter && !BlockFilter->count(I))
474       continue;
475     if (BlockToChain[I] != &PlacedChain) {
476       PrevUnplacedBlockIt = I;
477       // Now select the head of the chain to which the unplaced block belongs
478       // as the block to place. This will force the entire chain to be placed,
479       // and satisfies the requirements of merging chains.
480       return *BlockToChain[I]->begin();
481     }
482   }
483   return 0;
484 }
485
486 void MachineBlockPlacement::buildChain(
487     MachineBasicBlock *BB,
488     BlockChain &Chain,
489     SmallVectorImpl<MachineBasicBlock *> &BlockWorkList,
490     const BlockFilterSet *BlockFilter) {
491   assert(BB);
492   assert(BlockToChain[BB] == &Chain);
493   MachineFunction &F = *BB->getParent();
494   MachineFunction::iterator PrevUnplacedBlockIt = F.begin();
495
496   MachineBasicBlock *LoopHeaderBB = BB;
497   markChainSuccessors(Chain, LoopHeaderBB, BlockWorkList, BlockFilter);
498   BB = *llvm::prior(Chain.end());
499   for (;;) {
500     assert(BB);
501     assert(BlockToChain[BB] == &Chain);
502     assert(*llvm::prior(Chain.end()) == BB);
503     MachineBasicBlock *BestSucc = 0;
504
505     // Look for the best viable successor if there is one to place immediately
506     // after this block.
507     BestSucc = selectBestSuccessor(BB, Chain, BlockFilter);
508
509     // If an immediate successor isn't available, look for the best viable
510     // block among those we've identified as not violating the loop's CFG at
511     // this point. This won't be a fallthrough, but it will increase locality.
512     if (!BestSucc)
513       BestSucc = selectBestCandidateBlock(Chain, BlockWorkList, BlockFilter);
514
515     if (!BestSucc) {
516       BestSucc = getFirstUnplacedBlock(F, Chain, PrevUnplacedBlockIt,
517                                        BlockFilter);
518       if (!BestSucc)
519         break;
520
521       DEBUG(dbgs() << "Unnatural loop CFG detected, forcibly merging the "
522                       "layout successor until the CFG reduces\n");
523     }
524
525     // Place this block, updating the datastructures to reflect its placement.
526     BlockChain &SuccChain = *BlockToChain[BestSucc];
527     // Zero out LoopPredecessors for the successor we're about to merge in case
528     // we selected a successor that didn't fit naturally into the CFG.
529     SuccChain.LoopPredecessors = 0;
530     DEBUG(dbgs() << "Merging from " << getBlockNum(BB)
531                  << " to " << getBlockNum(BestSucc) << "\n");
532     markChainSuccessors(SuccChain, LoopHeaderBB, BlockWorkList, BlockFilter);
533     Chain.merge(BestSucc, &SuccChain);
534     BB = *llvm::prior(Chain.end());
535   }
536
537   DEBUG(dbgs() << "Finished forming chain for header block "
538                << getBlockNum(*Chain.begin()) << "\n");
539 }
540
541 /// \brief Find the best loop top block for layout.
542 ///
543 /// This routine implements the logic to analyze the loop looking for the best
544 /// block to layout at the top of the loop. Typically this is done to maximize
545 /// fallthrough opportunities.
546 MachineBasicBlock *
547 MachineBlockPlacement::findBestLoopTop(MachineFunction &F,
548                                        MachineLoop &L,
549                                        const BlockFilterSet &LoopBlockSet) {
550   BlockFrequency BestExitEdgeFreq;
551   MachineBasicBlock *ExitingBB = 0;
552   MachineBasicBlock *LoopingBB = 0;
553   // If there are exits to outer loops, loop rotation can severely limit
554   // fallthrough opportunites unless it selects such an exit. Keep a set of
555   // blocks where rotating to exit with that block will reach an outer loop.
556   SmallPtrSet<MachineBasicBlock *, 4> BlocksExitingToOuterLoop;
557
558   DEBUG(dbgs() << "Finding best loop exit for: "
559                << getBlockName(L.getHeader()) << "\n");
560   for (MachineLoop::block_iterator I = L.block_begin(),
561                                    E = L.block_end();
562        I != E; ++I) {
563     BlockChain &Chain = *BlockToChain[*I];
564     // Ensure that this block is at the end of a chain; otherwise it could be
565     // mid-way through an inner loop or a successor of an analyzable branch.
566     if (*I != *llvm::prior(Chain.end()))
567       continue;
568
569     // Now walk the successors. We need to establish whether this has a viable
570     // exiting successor and whether it has a viable non-exiting successor.
571     // We store the old exiting state and restore it if a viable looping
572     // successor isn't found.
573     MachineBasicBlock *OldExitingBB = ExitingBB;
574     BlockFrequency OldBestExitEdgeFreq = BestExitEdgeFreq;
575     // We also compute and store the best looping successor for use in layout.
576     MachineBasicBlock *BestLoopSucc = 0;
577     // FIXME: Due to the performance of the probability and weight routines in
578     // the MBPI analysis, we use the internal weights. This is only valid
579     // because it is purely a ranking function, we don't care about anything
580     // but the relative values.
581     uint32_t BestLoopSuccWeight = 0;
582     // FIXME: We also manually compute the probabilities to avoid quadratic
583     // behavior.
584     uint32_t WeightScale = 0;
585     uint32_t SumWeight = MBPI->getSumForBlock(*I, WeightScale);
586     for (MachineBasicBlock::succ_iterator SI = (*I)->succ_begin(),
587                                           SE = (*I)->succ_end();
588          SI != SE; ++SI) {
589       if ((*SI)->isLandingPad())
590         continue;
591       if (*SI == *I)
592         continue;
593       BlockChain &SuccChain = *BlockToChain[*SI];
594       // Don't split chains, either this chain or the successor's chain.
595       if (&Chain == &SuccChain || *SI != *SuccChain.begin()) {
596         DEBUG(dbgs() << "    " << (LoopBlockSet.count(*SI) ? "looping: "
597                                                            : "exiting: ")
598                      << getBlockName(*I) << " -> "
599                      << getBlockName(*SI) << " (chain conflict)\n");
600         continue;
601       }
602
603       uint32_t SuccWeight = MBPI->getEdgeWeight(*I, *SI);
604       if (LoopBlockSet.count(*SI)) {
605         DEBUG(dbgs() << "    looping: " << getBlockName(*I) << " -> "
606                      << getBlockName(*SI) << " (" << SuccWeight << ")\n");
607         if (BestLoopSucc && BestLoopSuccWeight >= SuccWeight)
608           continue;
609
610         BestLoopSucc = *SI;
611         BestLoopSuccWeight = SuccWeight;
612         continue;
613       }
614
615       BranchProbability SuccProb(SuccWeight / WeightScale, SumWeight);
616       BlockFrequency ExitEdgeFreq = MBFI->getBlockFreq(*I) * SuccProb;
617       DEBUG(dbgs() << "    exiting: " << getBlockName(*I) << " -> "
618                    << getBlockName(*SI) << " (" << ExitEdgeFreq << ")\n");
619       // Note that we slightly bias this toward an existing layout successor to
620       // retain incoming order in the absence of better information.
621       // FIXME: Should we bias this more strongly? It's pretty weak.
622       if (!ExitingBB || ExitEdgeFreq > BestExitEdgeFreq ||
623           ((*I)->isLayoutSuccessor(*SI) &&
624            !(ExitEdgeFreq < BestExitEdgeFreq))) {
625         BestExitEdgeFreq = ExitEdgeFreq;
626         ExitingBB = *I;
627       }
628
629       if (MachineLoop *ExitLoop = MLI->getLoopFor(*SI))
630         if (ExitLoop->contains(&L))
631           BlocksExitingToOuterLoop.insert(*I);
632     }
633
634     // Restore the old exiting state, no viable looping successor was found.
635     if (!BestLoopSucc) {
636       ExitingBB = OldExitingBB;
637       BestExitEdgeFreq = OldBestExitEdgeFreq;
638       continue;
639     }
640
641     // If this was best exiting block thus far, also record the looping block.
642     if (ExitingBB == *I)
643       LoopingBB = BestLoopSucc;
644   }
645   // Without a candidate exitting block or with only a single block in the
646   // loop, just use the loop header to layout the loop.
647   if (!ExitingBB || L.getNumBlocks() == 1)
648     return L.getHeader();
649
650   // Also, if we have exit blocks which lead to outer loops but didn't select
651   // one of them as the exiting block we are rotating toward, disable loop
652   // rotation altogether.
653   if (!BlocksExitingToOuterLoop.empty() &&
654       !BlocksExitingToOuterLoop.count(ExitingBB))
655     return L.getHeader();
656
657   assert(LoopingBB && "All successors of a loop block are exit blocks!");
658   DEBUG(dbgs() << "  Best exiting block: " << getBlockName(ExitingBB) << "\n");
659   DEBUG(dbgs() << "  Best top block: " << getBlockName(LoopingBB) << "\n");
660   return LoopingBB;
661 }
662
663 /// \brief Forms basic block chains from the natural loop structures.
664 ///
665 /// These chains are designed to preserve the existing *structure* of the code
666 /// as much as possible. We can then stitch the chains together in a way which
667 /// both preserves the topological structure and minimizes taken conditional
668 /// branches.
669 void MachineBlockPlacement::buildLoopChains(MachineFunction &F,
670                                             MachineLoop &L) {
671   // First recurse through any nested loops, building chains for those inner
672   // loops.
673   for (MachineLoop::iterator LI = L.begin(), LE = L.end(); LI != LE; ++LI)
674     buildLoopChains(F, **LI);
675
676   SmallVector<MachineBasicBlock *, 16> BlockWorkList;
677   BlockFilterSet LoopBlockSet(L.block_begin(), L.block_end());
678
679   MachineBasicBlock *LayoutTop = findBestLoopTop(F, L, LoopBlockSet);
680   BlockChain &LoopChain = *BlockToChain[LayoutTop];
681
682   // FIXME: This is a really lame way of walking the chains in the loop: we
683   // walk the blocks, and use a set to prevent visiting a particular chain
684   // twice.
685   SmallPtrSet<BlockChain *, 4> UpdatedPreds;
686   assert(LoopChain.LoopPredecessors == 0);
687   UpdatedPreds.insert(&LoopChain);
688   for (MachineLoop::block_iterator BI = L.block_begin(),
689                                    BE = L.block_end();
690        BI != BE; ++BI) {
691     BlockChain &Chain = *BlockToChain[*BI];
692     if (!UpdatedPreds.insert(&Chain))
693       continue;
694
695     assert(Chain.LoopPredecessors == 0);
696     for (BlockChain::iterator BCI = Chain.begin(), BCE = Chain.end();
697          BCI != BCE; ++BCI) {
698       assert(BlockToChain[*BCI] == &Chain);
699       for (MachineBasicBlock::pred_iterator PI = (*BCI)->pred_begin(),
700                                             PE = (*BCI)->pred_end();
701            PI != PE; ++PI) {
702         if (BlockToChain[*PI] == &Chain || !LoopBlockSet.count(*PI))
703           continue;
704         ++Chain.LoopPredecessors;
705       }
706     }
707
708     if (Chain.LoopPredecessors == 0)
709       BlockWorkList.push_back(*Chain.begin());
710   }
711
712   buildChain(LayoutTop, LoopChain, BlockWorkList, &LoopBlockSet);
713
714   DEBUG({
715     // Crash at the end so we get all of the debugging output first.
716     bool BadLoop = false;
717     if (LoopChain.LoopPredecessors) {
718       BadLoop = true;
719       dbgs() << "Loop chain contains a block without its preds placed!\n"
720              << "  Loop header:  " << getBlockName(*L.block_begin()) << "\n"
721              << "  Chain header: " << getBlockName(*LoopChain.begin()) << "\n";
722     }
723     for (BlockChain::iterator BCI = LoopChain.begin(), BCE = LoopChain.end();
724          BCI != BCE; ++BCI)
725       if (!LoopBlockSet.erase(*BCI)) {
726         // We don't mark the loop as bad here because there are real situations
727         // where this can occur. For example, with an unanalyzable fallthrough
728         // from a loop block to a non-loop block or vice versa.
729         dbgs() << "Loop chain contains a block not contained by the loop!\n"
730                << "  Loop header:  " << getBlockName(*L.block_begin()) << "\n"
731                << "  Chain header: " << getBlockName(*LoopChain.begin()) << "\n"
732                << "  Bad block:    " << getBlockName(*BCI) << "\n";
733       }
734
735     if (!LoopBlockSet.empty()) {
736       BadLoop = true;
737       for (BlockFilterSet::iterator LBI = LoopBlockSet.begin(),
738                                     LBE = LoopBlockSet.end();
739            LBI != LBE; ++LBI)
740         dbgs() << "Loop contains blocks never placed into a chain!\n"
741                << "  Loop header:  " << getBlockName(*L.block_begin()) << "\n"
742                << "  Chain header: " << getBlockName(*LoopChain.begin()) << "\n"
743                << "  Bad block:    " << getBlockName(*LBI) << "\n";
744     }
745     assert(!BadLoop && "Detected problems with the placement of this loop.");
746   });
747 }
748
749 void MachineBlockPlacement::buildCFGChains(MachineFunction &F) {
750   // Ensure that every BB in the function has an associated chain to simplify
751   // the assumptions of the remaining algorithm.
752   SmallVector<MachineOperand, 4> Cond; // For AnalyzeBranch.
753   for (MachineFunction::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI) {
754     MachineBasicBlock *BB = FI;
755     BlockChain *Chain
756       = new (ChainAllocator.Allocate()) BlockChain(BlockToChain, BB);
757     // Also, merge any blocks which we cannot reason about and must preserve
758     // the exact fallthrough behavior for.
759     for (;;) {
760       Cond.clear();
761       MachineBasicBlock *TBB = 0, *FBB = 0; // For AnalyzeBranch.
762       if (!TII->AnalyzeBranch(*BB, TBB, FBB, Cond) || !FI->canFallThrough())
763         break;
764
765       MachineFunction::iterator NextFI(llvm::next(FI));
766       MachineBasicBlock *NextBB = NextFI;
767       // Ensure that the layout successor is a viable block, as we know that
768       // fallthrough is a possibility.
769       assert(NextFI != FE && "Can't fallthrough past the last block.");
770       DEBUG(dbgs() << "Pre-merging due to unanalyzable fallthrough: "
771                    << getBlockName(BB) << " -> " << getBlockName(NextBB)
772                    << "\n");
773       Chain->merge(NextBB, 0);
774       FI = NextFI;
775       BB = NextBB;
776     }
777   }
778
779   // Build any loop-based chains.
780   for (MachineLoopInfo::iterator LI = MLI->begin(), LE = MLI->end(); LI != LE;
781        ++LI)
782     buildLoopChains(F, **LI);
783
784   SmallVector<MachineBasicBlock *, 16> BlockWorkList;
785
786   SmallPtrSet<BlockChain *, 4> UpdatedPreds;
787   for (MachineFunction::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI) {
788     MachineBasicBlock *BB = &*FI;
789     BlockChain &Chain = *BlockToChain[BB];
790     if (!UpdatedPreds.insert(&Chain))
791       continue;
792
793     assert(Chain.LoopPredecessors == 0);
794     for (BlockChain::iterator BCI = Chain.begin(), BCE = Chain.end();
795          BCI != BCE; ++BCI) {
796       assert(BlockToChain[*BCI] == &Chain);
797       for (MachineBasicBlock::pred_iterator PI = (*BCI)->pred_begin(),
798                                             PE = (*BCI)->pred_end();
799            PI != PE; ++PI) {
800         if (BlockToChain[*PI] == &Chain)
801           continue;
802         ++Chain.LoopPredecessors;
803       }
804     }
805
806     if (Chain.LoopPredecessors == 0)
807       BlockWorkList.push_back(*Chain.begin());
808   }
809
810   BlockChain &FunctionChain = *BlockToChain[&F.front()];
811   buildChain(&F.front(), FunctionChain, BlockWorkList);
812
813   typedef SmallPtrSet<MachineBasicBlock *, 16> FunctionBlockSetType;
814   DEBUG({
815     // Crash at the end so we get all of the debugging output first.
816     bool BadFunc = false;
817     FunctionBlockSetType FunctionBlockSet;
818     for (MachineFunction::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI)
819       FunctionBlockSet.insert(FI);
820
821     for (BlockChain::iterator BCI = FunctionChain.begin(),
822                               BCE = FunctionChain.end();
823          BCI != BCE; ++BCI)
824       if (!FunctionBlockSet.erase(*BCI)) {
825         BadFunc = true;
826         dbgs() << "Function chain contains a block not in the function!\n"
827                << "  Bad block:    " << getBlockName(*BCI) << "\n";
828       }
829
830     if (!FunctionBlockSet.empty()) {
831       BadFunc = true;
832       for (FunctionBlockSetType::iterator FBI = FunctionBlockSet.begin(),
833                                           FBE = FunctionBlockSet.end();
834            FBI != FBE; ++FBI)
835         dbgs() << "Function contains blocks never placed into a chain!\n"
836                << "  Bad block:    " << getBlockName(*FBI) << "\n";
837     }
838     assert(!BadFunc && "Detected problems with the block placement.");
839   });
840
841   // Splice the blocks into place.
842   MachineFunction::iterator InsertPos = F.begin();
843   for (BlockChain::iterator BI = FunctionChain.begin(),
844                             BE = FunctionChain.end();
845        BI != BE; ++BI) {
846     DEBUG(dbgs() << (BI == FunctionChain.begin() ? "Placing chain "
847                                                   : "          ... ")
848           << getBlockName(*BI) << "\n");
849     if (InsertPos != MachineFunction::iterator(*BI))
850       F.splice(InsertPos, *BI);
851     else
852       ++InsertPos;
853
854     // Update the terminator of the previous block.
855     if (BI == FunctionChain.begin())
856       continue;
857     MachineBasicBlock *PrevBB = llvm::prior(MachineFunction::iterator(*BI));
858
859     // FIXME: It would be awesome of updateTerminator would just return rather
860     // than assert when the branch cannot be analyzed in order to remove this
861     // boiler plate.
862     Cond.clear();
863     MachineBasicBlock *TBB = 0, *FBB = 0; // For AnalyzeBranch.
864     if (!TII->AnalyzeBranch(*PrevBB, TBB, FBB, Cond))
865       PrevBB->updateTerminator();
866   }
867
868   // Fixup the last block.
869   Cond.clear();
870   MachineBasicBlock *TBB = 0, *FBB = 0; // For AnalyzeBranch.
871   if (!TII->AnalyzeBranch(F.back(), TBB, FBB, Cond))
872     F.back().updateTerminator();
873 }
874
875 /// \brief Recursive helper to align a loop and any nested loops.
876 static void AlignLoop(MachineFunction &F, MachineLoop *L, unsigned Align) {
877   // Recurse through nested loops.
878   for (MachineLoop::iterator I = L->begin(), E = L->end(); I != E; ++I)
879     AlignLoop(F, *I, Align);
880
881   L->getTopBlock()->setAlignment(Align);
882 }
883
884 /// \brief Align loop headers to target preferred alignments.
885 void MachineBlockPlacement::AlignLoops(MachineFunction &F) {
886   if (F.getFunction()->hasFnAttr(Attribute::OptimizeForSize))
887     return;
888
889   unsigned Align = TLI->getPrefLoopAlignment();
890   if (!Align)
891     return;  // Don't care about loop alignment.
892
893   for (MachineLoopInfo::iterator I = MLI->begin(), E = MLI->end(); I != E; ++I)
894     AlignLoop(F, *I, Align);
895 }
896
897 bool MachineBlockPlacement::runOnMachineFunction(MachineFunction &F) {
898   // Check for single-block functions and skip them.
899   if (llvm::next(F.begin()) == F.end())
900     return false;
901
902   MBPI = &getAnalysis<MachineBranchProbabilityInfo>();
903   MBFI = &getAnalysis<MachineBlockFrequencyInfo>();
904   MLI = &getAnalysis<MachineLoopInfo>();
905   TII = F.getTarget().getInstrInfo();
906   TLI = F.getTarget().getTargetLowering();
907   assert(BlockToChain.empty());
908
909   buildCFGChains(F);
910   AlignLoops(F);
911
912   BlockToChain.clear();
913   ChainAllocator.DestroyAll();
914
915   // We always return true as we have no way to track whether the final order
916   // differs from the original order.
917   return true;
918 }
919
920 namespace {
921 /// \brief A pass to compute block placement statistics.
922 ///
923 /// A separate pass to compute interesting statistics for evaluating block
924 /// placement. This is separate from the actual placement pass so that they can
925 /// be computed in the absense of any placement transformations or when using
926 /// alternative placement strategies.
927 class MachineBlockPlacementStats : public MachineFunctionPass {
928   /// \brief A handle to the branch probability pass.
929   const MachineBranchProbabilityInfo *MBPI;
930
931   /// \brief A handle to the function-wide block frequency pass.
932   const MachineBlockFrequencyInfo *MBFI;
933
934 public:
935   static char ID; // Pass identification, replacement for typeid
936   MachineBlockPlacementStats() : MachineFunctionPass(ID) {
937     initializeMachineBlockPlacementStatsPass(*PassRegistry::getPassRegistry());
938   }
939
940   bool runOnMachineFunction(MachineFunction &F);
941
942   void getAnalysisUsage(AnalysisUsage &AU) const {
943     AU.addRequired<MachineBranchProbabilityInfo>();
944     AU.addRequired<MachineBlockFrequencyInfo>();
945     AU.setPreservesAll();
946     MachineFunctionPass::getAnalysisUsage(AU);
947   }
948 };
949 }
950
951 char MachineBlockPlacementStats::ID = 0;
952 char &llvm::MachineBlockPlacementStatsID = MachineBlockPlacementStats::ID;
953 INITIALIZE_PASS_BEGIN(MachineBlockPlacementStats, "block-placement-stats",
954                       "Basic Block Placement Stats", false, false)
955 INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo)
956 INITIALIZE_PASS_DEPENDENCY(MachineBlockFrequencyInfo)
957 INITIALIZE_PASS_END(MachineBlockPlacementStats, "block-placement-stats",
958                     "Basic Block Placement Stats", false, false)
959
960 bool MachineBlockPlacementStats::runOnMachineFunction(MachineFunction &F) {
961   // Check for single-block functions and skip them.
962   if (llvm::next(F.begin()) == F.end())
963     return false;
964
965   MBPI = &getAnalysis<MachineBranchProbabilityInfo>();
966   MBFI = &getAnalysis<MachineBlockFrequencyInfo>();
967
968   for (MachineFunction::iterator I = F.begin(), E = F.end(); I != E; ++I) {
969     BlockFrequency BlockFreq = MBFI->getBlockFreq(I);
970     Statistic &NumBranches = (I->succ_size() > 1) ? NumCondBranches
971                                                   : NumUncondBranches;
972     Statistic &BranchTakenFreq = (I->succ_size() > 1) ? CondBranchTakenFreq
973                                                       : UncondBranchTakenFreq;
974     for (MachineBasicBlock::succ_iterator SI = I->succ_begin(),
975                                           SE = I->succ_end();
976          SI != SE; ++SI) {
977       // Skip if this successor is a fallthrough.
978       if (I->isLayoutSuccessor(*SI))
979         continue;
980
981       BlockFrequency EdgeFreq = BlockFreq * MBPI->getEdgeProbability(I, *SI);
982       ++NumBranches;
983       BranchTakenFreq += EdgeFreq.getFrequency();
984     }
985   }
986
987   return false;
988 }
989