blob: c4dca2cd151d048710e8f6f240da2c4e18a6f073 [file] [log] [blame]
Chandler Carruthdb350872011-10-21 06:46:38 +00001//===-- 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//
Chandler Carruth30713632011-10-23 09:18:45 +000010// This file implements basic block placement transformations using the CFG
11// structure and branch probability estimates.
Chandler Carruthdb350872011-10-21 06:46:38 +000012//
Chandler Carruth30713632011-10-23 09:18:45 +000013// The pass strives to preserve the structure of the CFG (that is, retain
Benjamin Kramerd9b0b022012-06-02 10:20:22 +000014// a topological ordering of basic blocks) in the absence of a *strong* signal
Chandler Carruth30713632011-10-23 09:18:45 +000015// 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.
Chandler Carruthdb350872011-10-21 06:46:38 +000025//
26//===----------------------------------------------------------------------===//
27
28#define DEBUG_TYPE "block-placement2"
Chandler Carruth4a85cc92011-10-21 08:57:37 +000029#include "llvm/CodeGen/MachineBasicBlock.h"
Chandler Carruthdb350872011-10-21 06:46:38 +000030#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
31#include "llvm/CodeGen/MachineBranchProbabilityInfo.h"
32#include "llvm/CodeGen/MachineFunction.h"
Chandler Carruthdb350872011-10-21 06:46:38 +000033#include "llvm/CodeGen/MachineFunctionPass.h"
Chandler Carruth4a85cc92011-10-21 08:57:37 +000034#include "llvm/CodeGen/MachineLoopInfo.h"
35#include "llvm/CodeGen/MachineModuleInfo.h"
36#include "llvm/CodeGen/Passes.h"
Chandler Carruthdb350872011-10-21 06:46:38 +000037#include "llvm/Support/Allocator.h"
Chandler Carruth30713632011-10-23 09:18:45 +000038#include "llvm/Support/Debug.h"
Chandler Carruthdb350872011-10-21 06:46:38 +000039#include "llvm/ADT/DenseMap.h"
Chandler Carruthdb350872011-10-21 06:46:38 +000040#include "llvm/ADT/SmallPtrSet.h"
41#include "llvm/ADT/SmallVector.h"
42#include "llvm/ADT/Statistic.h"
43#include "llvm/Target/TargetInstrInfo.h"
Chandler Carruth4a85cc92011-10-21 08:57:37 +000044#include "llvm/Target/TargetLowering.h"
Chandler Carruthdb350872011-10-21 06:46:38 +000045#include <algorithm>
46using namespace llvm;
47
Chandler Carruth37efc9f2011-11-02 07:17:12 +000048STATISTIC(NumCondBranches, "Number of conditional branches");
49STATISTIC(NumUncondBranches, "Number of uncondittional branches");
50STATISTIC(CondBranchTakenFreq,
51 "Potential frequency of taking conditional branches");
52STATISTIC(UncondBranchTakenFreq,
53 "Potential frequency of taking unconditional branches");
54
Chandler Carruthdb350872011-10-21 06:46:38 +000055namespace {
Chandler Carruth30713632011-10-23 09:18:45 +000056class BlockChain;
Chandler Carruthdb350872011-10-21 06:46:38 +000057/// \brief Type for our function-wide basic block -> block chain mapping.
58typedef DenseMap<MachineBasicBlock *, BlockChain *> BlockToChainMapType;
59}
60
61namespace {
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
Chandler Carruthc04f8162012-06-26 05:16:37 +000066/// probabilities and code locality. We also can use a block chain to represent
67/// a sequence of basic blocks which have some external (correctness)
68/// requirement for sequential layout.
Chandler Carruthdb350872011-10-21 06:46:38 +000069///
Chandler Carruthc04f8162012-06-26 05:16:37 +000070/// Chains can be built around a single basic block and can be merged to grow
71/// them. They participate in a block-to-chain mapping, which is updated
72/// automatically as chains are merged together.
Chandler Carruth30713632011-10-23 09:18:45 +000073class BlockChain {
74 /// \brief The sequence of blocks belonging to this chain.
Chandler Carruthdb350872011-10-21 06:46:38 +000075 ///
Chandler Carruth30713632011-10-23 09:18:45 +000076 /// This is the sequence of blocks for a particular chain. These will be laid
77 /// out in-order within the function.
78 SmallVector<MachineBasicBlock *, 4> Blocks;
Chandler Carruthdb350872011-10-21 06:46:38 +000079
80 /// \brief A handle to the function-wide basic block to block chain mapping.
81 ///
82 /// This is retained in each block chain to simplify the computation of child
83 /// block chains for SCC-formation and iteration. We store the edges to child
84 /// basic blocks, and map them back to their associated chains using this
85 /// structure.
86 BlockToChainMapType &BlockToChain;
87
Chandler Carruth30713632011-10-23 09:18:45 +000088public:
Chandler Carruthdb350872011-10-21 06:46:38 +000089 /// \brief Construct a new BlockChain.
90 ///
91 /// This builds a new block chain representing a single basic block in the
92 /// function. It also registers itself as the chain that block participates
93 /// in with the BlockToChain mapping.
94 BlockChain(BlockToChainMapType &BlockToChain, MachineBasicBlock *BB)
Chandler Carruthdf234352011-11-13 11:20:44 +000095 : Blocks(1, BB), BlockToChain(BlockToChain), LoopPredecessors(0) {
Chandler Carruthdb350872011-10-21 06:46:38 +000096 assert(BB && "Cannot create a chain with a null basic block");
97 BlockToChain[BB] = this;
98 }
99
Chandler Carruth30713632011-10-23 09:18:45 +0000100 /// \brief Iterator over blocks within the chain.
Chandler Carruth70daea92012-04-16 01:12:56 +0000101 typedef SmallVectorImpl<MachineBasicBlock *>::iterator iterator;
Chandler Carruth30713632011-10-23 09:18:45 +0000102
103 /// \brief Beginning of blocks within the chain.
Chandler Carruth70daea92012-04-16 01:12:56 +0000104 iterator begin() { return Blocks.begin(); }
Chandler Carruth30713632011-10-23 09:18:45 +0000105
106 /// \brief End of blocks within the chain.
Chandler Carruth70daea92012-04-16 01:12:56 +0000107 iterator end() { return Blocks.end(); }
Chandler Carruth30713632011-10-23 09:18:45 +0000108
109 /// \brief Merge a block chain into this one.
Chandler Carruthdb350872011-10-21 06:46:38 +0000110 ///
111 /// This routine merges a block chain into this one. It takes care of forming
112 /// a contiguous sequence of basic blocks, updating the edge list, and
113 /// updating the block -> chain mapping. It does not free or tear down the
114 /// old chain, but the old chain's block list is no longer valid.
Jakub Staszakd4895de2011-12-21 23:02:08 +0000115 void merge(MachineBasicBlock *BB, BlockChain *Chain) {
Chandler Carruth30713632011-10-23 09:18:45 +0000116 assert(BB);
117 assert(!Blocks.empty());
Chandler Carruthdb350872011-10-21 06:46:38 +0000118
Chandler Carruth30713632011-10-23 09:18:45 +0000119 // Fast path in case we don't have a chain already.
120 if (!Chain) {
121 assert(!BlockToChain[BB]);
122 Blocks.push_back(BB);
123 BlockToChain[BB] = this;
124 return;
Chandler Carruthdb350872011-10-21 06:46:38 +0000125 }
126
Chandler Carruth30713632011-10-23 09:18:45 +0000127 assert(BB == *Chain->begin());
128 assert(Chain->begin() != Chain->end());
Chandler Carruthdb350872011-10-21 06:46:38 +0000129
Chandler Carruth30713632011-10-23 09:18:45 +0000130 // Update the incoming blocks to point to this chain, and add them to the
131 // chain structure.
132 for (BlockChain::iterator BI = Chain->begin(), BE = Chain->end();
133 BI != BE; ++BI) {
134 Blocks.push_back(*BI);
135 assert(BlockToChain[*BI] == Chain && "Incoming blocks not in chain");
136 BlockToChain[*BI] = this;
137 }
Chandler Carruthdb350872011-10-21 06:46:38 +0000138 }
Chandler Carruthdf234352011-11-13 11:20:44 +0000139
Chandler Carruth6313d942012-04-08 14:37:01 +0000140#ifndef NDEBUG
141 /// \brief Dump the blocks in this chain.
142 void dump() LLVM_ATTRIBUTE_USED {
143 for (iterator I = begin(), E = end(); I != E; ++I)
144 (*I)->dump();
145 }
146#endif // NDEBUG
147
Chandler Carruthdf234352011-11-13 11:20:44 +0000148 /// \brief Count of predecessors within the loop currently being processed.
149 ///
150 /// This count is updated at each loop we process to represent the number of
151 /// in-loop predecessors of this chain.
152 unsigned LoopPredecessors;
Chandler Carruthdb350872011-10-21 06:46:38 +0000153};
154}
155
156namespace {
157class MachineBlockPlacement : public MachineFunctionPass {
Chandler Carruth30713632011-10-23 09:18:45 +0000158 /// \brief A typedef for a block filter set.
159 typedef SmallPtrSet<MachineBasicBlock *, 16> BlockFilterSet;
160
Chandler Carruthdb350872011-10-21 06:46:38 +0000161 /// \brief A handle to the branch probability pass.
162 const MachineBranchProbabilityInfo *MBPI;
163
164 /// \brief A handle to the function-wide block frequency pass.
165 const MachineBlockFrequencyInfo *MBFI;
166
Chandler Carruth4a85cc92011-10-21 08:57:37 +0000167 /// \brief A handle to the loop info.
168 const MachineLoopInfo *MLI;
169
Chandler Carruthdb350872011-10-21 06:46:38 +0000170 /// \brief A handle to the target's instruction info.
171 const TargetInstrInfo *TII;
172
Chandler Carruth4a85cc92011-10-21 08:57:37 +0000173 /// \brief A handle to the target's lowering info.
174 const TargetLowering *TLI;
175
Chandler Carruthdb350872011-10-21 06:46:38 +0000176 /// \brief Allocator and owner of BlockChain structures.
177 ///
Chandler Carruthc04f8162012-06-26 05:16:37 +0000178 /// We build BlockChains lazily while processing the loop structure of
179 /// a function. To reduce malloc traffic, we allocate them using this
180 /// slab-like allocator, and destroy them after the pass completes. An
181 /// important guarantee is that this allocator produces stable pointers to
182 /// the chains.
Chandler Carruthdb350872011-10-21 06:46:38 +0000183 SpecificBumpPtrAllocator<BlockChain> ChainAllocator;
184
185 /// \brief Function wide BasicBlock to BlockChain mapping.
186 ///
187 /// This mapping allows efficiently moving from any given basic block to the
188 /// BlockChain it participates in, if any. We use it to, among other things,
189 /// allow implicitly defining edges between chains as the existing edges
190 /// between basic blocks.
191 DenseMap<MachineBasicBlock *, BlockChain *> BlockToChain;
192
Jakub Staszakd4895de2011-12-21 23:02:08 +0000193 void markChainSuccessors(BlockChain &Chain,
194 MachineBasicBlock *LoopHeaderBB,
Chandler Carruthb5856c82011-11-14 00:00:35 +0000195 SmallVectorImpl<MachineBasicBlock *> &BlockWorkList,
Jakub Staszakd4895de2011-12-21 23:02:08 +0000196 const BlockFilterSet *BlockFilter = 0);
197 MachineBasicBlock *selectBestSuccessor(MachineBasicBlock *BB,
198 BlockChain &Chain,
199 const BlockFilterSet *BlockFilter);
Chandler Carruthf3fc0052011-11-13 11:42:26 +0000200 MachineBasicBlock *selectBestCandidateBlock(
Jakub Staszakd4895de2011-12-21 23:02:08 +0000201 BlockChain &Chain, SmallVectorImpl<MachineBasicBlock *> &WorkList,
202 const BlockFilterSet *BlockFilter);
Chandler Carruth3273c892011-11-15 06:26:43 +0000203 MachineBasicBlock *getFirstUnplacedBlock(
204 MachineFunction &F,
205 const BlockChain &PlacedChain,
206 MachineFunction::iterator &PrevUnplacedBlockIt,
Jakub Staszakd4895de2011-12-21 23:02:08 +0000207 const BlockFilterSet *BlockFilter);
Chandler Carruthdf234352011-11-13 11:20:44 +0000208 void buildChain(MachineBasicBlock *BB, BlockChain &Chain,
Chandler Carruthb5856c82011-11-14 00:00:35 +0000209 SmallVectorImpl<MachineBasicBlock *> &BlockWorkList,
Jakub Staszakd4895de2011-12-21 23:02:08 +0000210 const BlockFilterSet *BlockFilter = 0);
Chandler Carruthe773e8c2012-04-16 13:33:36 +0000211 MachineBasicBlock *findBestLoopTop(MachineLoop &L,
212 const BlockFilterSet &LoopBlockSet);
Chandler Carruth70daea92012-04-16 01:12:56 +0000213 MachineBasicBlock *findBestLoopExit(MachineFunction &F,
214 MachineLoop &L,
215 const BlockFilterSet &LoopBlockSet);
Jakub Staszakd4895de2011-12-21 23:02:08 +0000216 void buildLoopChains(MachineFunction &F, MachineLoop &L);
Chandler Carruth16295fc2012-04-16 09:31:23 +0000217 void rotateLoop(BlockChain &LoopChain, MachineBasicBlock *ExitingBB,
218 const BlockFilterSet &LoopBlockSet);
Chandler Carruth30713632011-10-23 09:18:45 +0000219 void buildCFGChains(MachineFunction &F);
Chandler Carruthdb350872011-10-21 06:46:38 +0000220
221public:
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>();
Chandler Carruth4a85cc92011-10-21 08:57:37 +0000232 AU.addRequired<MachineLoopInfo>();
Chandler Carruthdb350872011-10-21 06:46:38 +0000233 MachineFunctionPass::getAnalysisUsage(AU);
234 }
Chandler Carruthdb350872011-10-21 06:46:38 +0000235};
236}
237
238char MachineBlockPlacement::ID = 0;
Andrew Trick1dd8c852012-02-08 21:23:13 +0000239char &llvm::MachineBlockPlacementID = MachineBlockPlacement::ID;
Chandler Carruthdb350872011-10-21 06:46:38 +0000240INITIALIZE_PASS_BEGIN(MachineBlockPlacement, "block-placement2",
241 "Branch Probability Basic Block Placement", false, false)
242INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo)
243INITIALIZE_PASS_DEPENDENCY(MachineBlockFrequencyInfo)
Chandler Carruth4a85cc92011-10-21 08:57:37 +0000244INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
Chandler Carruthdb350872011-10-21 06:46:38 +0000245INITIALIZE_PASS_END(MachineBlockPlacement, "block-placement2",
246 "Branch Probability Basic Block Placement", false, false)
247
Chandler Carruth30713632011-10-23 09:18:45 +0000248#ifndef NDEBUG
249/// \brief Helper to print the name of a MBB.
250///
251/// Only used by debug logging.
Jakub Staszakd4895de2011-12-21 23:02:08 +0000252static std::string getBlockName(MachineBasicBlock *BB) {
Chandler Carruth30713632011-10-23 09:18:45 +0000253 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;
Chandler Carruthdb350872011-10-21 06:46:38 +0000259}
260
Chandler Carruth30713632011-10-23 09:18:45 +0000261/// \brief Helper to print the number of a MBB.
262///
263/// Only used by debug logging.
Jakub Staszakd4895de2011-12-21 23:02:08 +0000264static std::string getBlockNum(MachineBasicBlock *BB) {
Chandler Carruth30713632011-10-23 09:18:45 +0000265 std::string Result;
266 raw_string_ostream OS(Result);
267 OS << "BB#" << BB->getNumber();
268 OS.flush();
269 return Result;
270}
271#endif
272
Chandler Carruth729bec82011-11-13 11:34:55 +0000273/// \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.
Chandler Carruthdf234352011-11-13 11:20:44 +0000279void MachineBlockPlacement::markChainSuccessors(
Jakub Staszakd4895de2011-12-21 23:02:08 +0000280 BlockChain &Chain,
281 MachineBasicBlock *LoopHeaderBB,
Chandler Carruthdf234352011-11-13 11:20:44 +0000282 SmallVectorImpl<MachineBasicBlock *> &BlockWorkList,
Jakub Staszakd4895de2011-12-21 23:02:08 +0000283 const BlockFilterSet *BlockFilter) {
Chandler Carruthdf234352011-11-13 11:20:44 +0000284 // 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;
Jakub Staszakd4895de2011-12-21 23:02:08 +0000297 BlockChain &SuccChain = *BlockToChain[*SI];
Chandler Carruthdf234352011-11-13 11:20:44 +0000298 // Disregard edges within a fixed chain, or edges to the loop header.
299 if (&Chain == &SuccChain || *SI == LoopHeaderBB)
300 continue;
Chandler Carruthdb350872011-10-21 06:46:38 +0000301
Chandler Carruthdf234352011-11-13 11:20:44 +0000302 // 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)
Chandler Carrutha2deea12011-11-24 08:46:04 +0000305 BlockWorkList.push_back(*SuccChain.begin());
Chandler Carruthdb350872011-10-21 06:46:38 +0000306 }
307 }
Chandler Carruthdf234352011-11-13 11:20:44 +0000308}
Chandler Carruth30713632011-10-23 09:18:45 +0000309
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000310/// \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.
319MachineBasicBlock *MachineBlockPlacement::selectBestSuccessor(
Jakub Staszakd4895de2011-12-21 23:02:08 +0000320 MachineBasicBlock *BB, BlockChain &Chain,
321 const BlockFilterSet *BlockFilter) {
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000322 const BranchProbability HotProb(4, 5); // 80%
323
324 MachineBasicBlock *BestSucc = 0;
Chandler Carruth340d5962011-11-14 09:12:57 +0000325 // 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
Benjamin Kramerd9b0b022012-06-02 10:20:22 +0000329 // improve the MBPI interface to efficiently support query patterns such as
Chandler Carruth340d5962011-11-14 09:12:57 +0000330 // this.
331 uint32_t BestWeight = 0;
332 uint32_t WeightScale = 0;
333 uint32_t SumWeight = MBPI->getSumForBlock(BB, WeightScale);
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000334 DEBUG(dbgs() << "Attempting merge from: " << getBlockName(BB) << "\n");
Jakub Staszakd4895de2011-12-21 23:02:08 +0000335 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
336 SE = BB->succ_end();
337 SI != SE; ++SI) {
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000338 if (BlockFilter && !BlockFilter->count(*SI))
339 continue;
Jakub Staszakd4895de2011-12-21 23:02:08 +0000340 BlockChain &SuccChain = *BlockToChain[*SI];
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000341 if (&SuccChain == &Chain) {
342 DEBUG(dbgs() << " " << getBlockName(*SI) << " -> Already merged!\n");
343 continue;
344 }
Chandler Carruth03300ec2011-11-19 10:26:02 +0000345 if (*SI != *SuccChain.begin()) {
346 DEBUG(dbgs() << " " << getBlockName(*SI) << " -> Mid chain!\n");
347 continue;
348 }
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000349
Chandler Carruth340d5962011-11-14 09:12:57 +0000350 uint32_t SuccWeight = MBPI->getEdgeWeight(BB, *SI);
351 BranchProbability SuccProb(SuccWeight / WeightScale, SumWeight);
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000352
353 // Only consider successors which are either "hot", or wouldn't violate
354 // any CFG constraints.
Chandler Carruthb0dadb92011-11-20 11:22:06 +0000355 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)) ||
Jakub Staszakd4895de2011-12-21 23:02:08 +0000370 BlockToChain[*PI] == &Chain)
Chandler Carruthb0dadb92011-11-20 11:22:06 +0000371 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 }
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000384 }
385
386 DEBUG(dbgs() << " " << getBlockName(*SI) << " -> " << SuccProb
387 << " (prob)"
388 << (SuccChain.LoopPredecessors != 0 ? " (CFG break)" : "")
389 << "\n");
Chandler Carruth340d5962011-11-14 09:12:57 +0000390 if (BestSucc && BestWeight >= SuccWeight)
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000391 continue;
392 BestSucc = *SI;
Chandler Carruth340d5962011-11-14 09:12:57 +0000393 BestWeight = SuccWeight;
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000394 }
395 return BestSucc;
396}
397
Chandler Carruthfa976582011-11-14 09:46:33 +0000398namespace {
399/// \brief Predicate struct to detect blocks already placed.
400class IsBlockPlaced {
401 const BlockChain &PlacedChain;
402 const BlockToChainMapType &BlockToChain;
403
404public:
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
Chandler Carruthf3fc0052011-11-13 11:42:26 +0000415/// \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.
425MachineBasicBlock *MachineBlockPlacement::selectBestCandidateBlock(
Jakub Staszakd4895de2011-12-21 23:02:08 +0000426 BlockChain &Chain, SmallVectorImpl<MachineBasicBlock *> &WorkList,
427 const BlockFilterSet *BlockFilter) {
Chandler Carruthfa976582011-11-14 09:46:33 +0000428 // 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
Chandler Carruthf3fc0052011-11-13 11:42:26 +0000436 MachineBasicBlock *BestBlock = 0;
437 BlockFrequency BestFreq;
438 for (SmallVectorImpl<MachineBasicBlock *>::iterator WBI = WorkList.begin(),
439 WBE = WorkList.end();
440 WBI != WBE; ++WBI) {
Jakub Staszakd4895de2011-12-21 23:02:08 +0000441 BlockChain &SuccChain = *BlockToChain[*WBI];
Chandler Carruthf3fc0052011-11-13 11:42:26 +0000442 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
Chandler Carruthb5856c82011-11-14 00:00:35 +0000460/// \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.
Chandler Carruth3273c892011-11-15 06:26:43 +0000464/// 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.
Chandler Carruthb5856c82011-11-14 00:00:35 +0000467MachineBasicBlock *MachineBlockPlacement::getFirstUnplacedBlock(
Chandler Carruth3273c892011-11-15 06:26:43 +0000468 MachineFunction &F, const BlockChain &PlacedChain,
469 MachineFunction::iterator &PrevUnplacedBlockIt,
Jakub Staszakd4895de2011-12-21 23:02:08 +0000470 const BlockFilterSet *BlockFilter) {
Chandler Carruth3273c892011-11-15 06:26:43 +0000471 for (MachineFunction::iterator I = PrevUnplacedBlockIt, E = F.end(); I != E;
472 ++I) {
473 if (BlockFilter && !BlockFilter->count(I))
474 continue;
Jakub Staszakd4895de2011-12-21 23:02:08 +0000475 if (BlockToChain[I] != &PlacedChain) {
Chandler Carruth3273c892011-11-15 06:26:43 +0000476 PrevUnplacedBlockIt = I;
Chandler Carruth47fb9542011-11-23 03:03:21 +0000477 // 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.
Jakub Staszakd4895de2011-12-21 23:02:08 +0000480 return *BlockToChain[I]->begin();
Chandler Carruthb5856c82011-11-14 00:00:35 +0000481 }
482 }
483 return 0;
484}
485
Chandler Carruthdf234352011-11-13 11:20:44 +0000486void MachineBlockPlacement::buildChain(
487 MachineBasicBlock *BB,
488 BlockChain &Chain,
489 SmallVectorImpl<MachineBasicBlock *> &BlockWorkList,
Jakub Staszakd4895de2011-12-21 23:02:08 +0000490 const BlockFilterSet *BlockFilter) {
Chandler Carruthdf234352011-11-13 11:20:44 +0000491 assert(BB);
Jakub Staszakd4895de2011-12-21 23:02:08 +0000492 assert(BlockToChain[BB] == &Chain);
Chandler Carruth3273c892011-11-15 06:26:43 +0000493 MachineFunction &F = *BB->getParent();
494 MachineFunction::iterator PrevUnplacedBlockIt = F.begin();
Chandler Carruthb5856c82011-11-14 00:00:35 +0000495
Chandler Carruthdf234352011-11-13 11:20:44 +0000496 MachineBasicBlock *LoopHeaderBB = BB;
497 markChainSuccessors(Chain, LoopHeaderBB, BlockWorkList, BlockFilter);
498 BB = *llvm::prior(Chain.end());
499 for (;;) {
500 assert(BB);
Jakub Staszakd4895de2011-12-21 23:02:08 +0000501 assert(BlockToChain[BB] == &Chain);
Chandler Carruthdf234352011-11-13 11:20:44 +0000502 assert(*llvm::prior(Chain.end()) == BB);
Chandler Carruth6527ecc2011-11-13 12:17:28 +0000503 MachineBasicBlock *BestSucc = 0;
Chandler Carruth30713632011-10-23 09:18:45 +0000504
Chandler Carruth03300ec2011-11-19 10:26:02 +0000505 // Look for the best viable successor if there is one to place immediately
506 // after this block.
507 BestSucc = selectBestSuccessor(BB, Chain, BlockFilter);
Chandler Carruthdf234352011-11-13 11:20:44 +0000508
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.
Chandler Carruthf3fc0052011-11-13 11:42:26 +0000512 if (!BestSucc)
513 BestSucc = selectBestCandidateBlock(Chain, BlockWorkList, BlockFilter);
Chandler Carruthdf234352011-11-13 11:20:44 +0000514
Chandler Carruthdf234352011-11-13 11:20:44 +0000515 if (!BestSucc) {
Chandler Carruth3273c892011-11-15 06:26:43 +0000516 BestSucc = getFirstUnplacedBlock(F, Chain, PrevUnplacedBlockIt,
517 BlockFilter);
Chandler Carruthb5856c82011-11-14 00:00:35 +0000518 if (!BestSucc)
519 break;
520
521 DEBUG(dbgs() << "Unnatural loop CFG detected, forcibly merging the "
522 "layout successor until the CFG reduces\n");
Chandler Carruthdf234352011-11-13 11:20:44 +0000523 }
Chandler Carruth30713632011-10-23 09:18:45 +0000524
Chandler Carruthdf234352011-11-13 11:20:44 +0000525 // Place this block, updating the datastructures to reflect its placement.
Jakub Staszakd4895de2011-12-21 23:02:08 +0000526 BlockChain &SuccChain = *BlockToChain[BestSucc];
Chandler Carruthb5856c82011-11-14 00:00:35 +0000527 // 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;
Chandler Carruthdf234352011-11-13 11:20:44 +0000530 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());
Jakub Staszakfeb468a2011-12-07 19:46:10 +0000535 }
Chandler Carruthb5856c82011-11-14 00:00:35 +0000536
537 DEBUG(dbgs() << "Finished forming chain for header block "
538 << getBlockNum(*Chain.begin()) << "\n");
Chandler Carruthdb350872011-10-21 06:46:38 +0000539}
540
Chandler Carruthfac13052011-11-27 13:34:33 +0000541/// \brief Find the best loop top block for layout.
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000542///
Chandler Carruthe773e8c2012-04-16 13:33:36 +0000543/// Look for a block which is strictly better than the loop header for laying
544/// out at the top of the loop. This looks for one and only one pattern:
545/// a latch block with no conditional exit. This block will cause a conditional
546/// jump around it or will be the bottom of the loop if we lay it out in place,
547/// but if it it doesn't end up at the bottom of the loop for any reason,
548/// rotation alone won't fix it. Because such a block will always result in an
549/// unconditional jump (for the backedge) rotating it in front of the loop
550/// header is always profitable.
551MachineBasicBlock *
552MachineBlockPlacement::findBestLoopTop(MachineLoop &L,
553 const BlockFilterSet &LoopBlockSet) {
554 // Check that the header hasn't been fused with a preheader block due to
555 // crazy branches. If it has, we need to start with the header at the top to
556 // prevent pulling the preheader into the loop body.
557 BlockChain &HeaderChain = *BlockToChain[L.getHeader()];
558 if (!LoopBlockSet.count(*HeaderChain.begin()))
559 return L.getHeader();
560
561 DEBUG(dbgs() << "Finding best loop top for: "
562 << getBlockName(L.getHeader()) << "\n");
563
564 BlockFrequency BestPredFreq;
565 MachineBasicBlock *BestPred = 0;
566 for (MachineBasicBlock::pred_iterator PI = L.getHeader()->pred_begin(),
567 PE = L.getHeader()->pred_end();
568 PI != PE; ++PI) {
569 MachineBasicBlock *Pred = *PI;
570 if (!LoopBlockSet.count(Pred))
571 continue;
572 DEBUG(dbgs() << " header pred: " << getBlockName(Pred) << ", "
573 << Pred->succ_size() << " successors, "
574 << MBFI->getBlockFreq(Pred) << " freq\n");
575 if (Pred->succ_size() > 1)
576 continue;
577
578 BlockFrequency PredFreq = MBFI->getBlockFreq(Pred);
579 if (!BestPred || PredFreq > BestPredFreq ||
580 (!(PredFreq < BestPredFreq) &&
581 Pred->isLayoutSuccessor(L.getHeader()))) {
582 BestPred = Pred;
583 BestPredFreq = PredFreq;
584 }
585 }
586
587 // If no direct predecessor is fine, just use the loop header.
588 if (!BestPred)
589 return L.getHeader();
590
591 // Walk backwards through any straight line of predecessors.
592 while (BestPred->pred_size() == 1 &&
593 (*BestPred->pred_begin())->succ_size() == 1 &&
594 *BestPred->pred_begin() != L.getHeader())
595 BestPred = *BestPred->pred_begin();
596
597 DEBUG(dbgs() << " final top: " << getBlockName(BestPred) << "\n");
598 return BestPred;
599}
600
601
602/// \brief Find the best loop exiting block for layout.
603///
Chandler Carruthfac13052011-11-27 13:34:33 +0000604/// This routine implements the logic to analyze the loop looking for the best
605/// block to layout at the top of the loop. Typically this is done to maximize
606/// fallthrough opportunities.
607MachineBasicBlock *
Chandler Carruth70daea92012-04-16 01:12:56 +0000608MachineBlockPlacement::findBestLoopExit(MachineFunction &F,
609 MachineLoop &L,
610 const BlockFilterSet &LoopBlockSet) {
Chandler Carruth45fb79b2012-04-10 13:35:57 +0000611 // We don't want to layout the loop linearly in all cases. If the loop header
612 // is just a normal basic block in the loop, we want to look for what block
613 // within the loop is the best one to layout at the top. However, if the loop
614 // header has be pre-merged into a chain due to predecessors not having
615 // analyzable branches, *and* the predecessor it is merged with is *not* part
616 // of the loop, rotating the header into the middle of the loop will create
617 // a non-contiguous range of blocks which is Very Bad. So start with the
618 // header and only rotate if safe.
619 BlockChain &HeaderChain = *BlockToChain[L.getHeader()];
620 if (!LoopBlockSet.count(*HeaderChain.begin()))
Chandler Carruth70daea92012-04-16 01:12:56 +0000621 return 0;
Chandler Carruth45fb79b2012-04-10 13:35:57 +0000622
Chandler Carruthfac13052011-11-27 13:34:33 +0000623 BlockFrequency BestExitEdgeFreq;
Chandler Carruth70daea92012-04-16 01:12:56 +0000624 unsigned BestExitLoopDepth = 0;
Chandler Carruthfac13052011-11-27 13:34:33 +0000625 MachineBasicBlock *ExitingBB = 0;
Chandler Carruth51901d82011-11-27 20:18:00 +0000626 // If there are exits to outer loops, loop rotation can severely limit
627 // fallthrough opportunites unless it selects such an exit. Keep a set of
628 // blocks where rotating to exit with that block will reach an outer loop.
629 SmallPtrSet<MachineBasicBlock *, 4> BlocksExitingToOuterLoop;
630
Chandler Carruthfac13052011-11-27 13:34:33 +0000631 DEBUG(dbgs() << "Finding best loop exit for: "
632 << getBlockName(L.getHeader()) << "\n");
633 for (MachineLoop::block_iterator I = L.block_begin(),
634 E = L.block_end();
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000635 I != E; ++I) {
Jakub Staszakd4895de2011-12-21 23:02:08 +0000636 BlockChain &Chain = *BlockToChain[*I];
Chandler Carruthfac13052011-11-27 13:34:33 +0000637 // Ensure that this block is at the end of a chain; otherwise it could be
638 // mid-way through an inner loop or a successor of an analyzable branch.
639 if (*I != *llvm::prior(Chain.end()))
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000640 continue;
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000641
Chandler Carruthfac13052011-11-27 13:34:33 +0000642 // Now walk the successors. We need to establish whether this has a viable
643 // exiting successor and whether it has a viable non-exiting successor.
644 // We store the old exiting state and restore it if a viable looping
645 // successor isn't found.
646 MachineBasicBlock *OldExitingBB = ExitingBB;
647 BlockFrequency OldBestExitEdgeFreq = BestExitEdgeFreq;
Chandler Carruth70daea92012-04-16 01:12:56 +0000648 bool HasLoopingSucc = false;
Chandler Carruthfac13052011-11-27 13:34:33 +0000649 // FIXME: Due to the performance of the probability and weight routines in
Chandler Carruth70daea92012-04-16 01:12:56 +0000650 // the MBPI analysis, we use the internal weights and manually compute the
651 // probabilities to avoid quadratic behavior.
Chandler Carruthfac13052011-11-27 13:34:33 +0000652 uint32_t WeightScale = 0;
653 uint32_t SumWeight = MBPI->getSumForBlock(*I, WeightScale);
654 for (MachineBasicBlock::succ_iterator SI = (*I)->succ_begin(),
655 SE = (*I)->succ_end();
Chandler Carruth2eb5a742011-11-27 09:22:53 +0000656 SI != SE; ++SI) {
Chandler Carruthfac13052011-11-27 13:34:33 +0000657 if ((*SI)->isLandingPad())
658 continue;
659 if (*SI == *I)
660 continue;
Jakub Staszakd4895de2011-12-21 23:02:08 +0000661 BlockChain &SuccChain = *BlockToChain[*SI];
Chandler Carruthfac13052011-11-27 13:34:33 +0000662 // Don't split chains, either this chain or the successor's chain.
Chandler Carruth70daea92012-04-16 01:12:56 +0000663 if (&Chain == &SuccChain) {
664 DEBUG(dbgs() << " exiting: " << getBlockName(*I) << " -> "
Chandler Carruthfac13052011-11-27 13:34:33 +0000665 << getBlockName(*SI) << " (chain conflict)\n");
666 continue;
667 }
668
669 uint32_t SuccWeight = MBPI->getEdgeWeight(*I, *SI);
670 if (LoopBlockSet.count(*SI)) {
671 DEBUG(dbgs() << " looping: " << getBlockName(*I) << " -> "
672 << getBlockName(*SI) << " (" << SuccWeight << ")\n");
Chandler Carruth70daea92012-04-16 01:12:56 +0000673 HasLoopingSucc = true;
Chandler Carruthfac13052011-11-27 13:34:33 +0000674 continue;
675 }
676
Chandler Carruth70daea92012-04-16 01:12:56 +0000677 unsigned SuccLoopDepth = 0;
678 if (MachineLoop *ExitLoop = MLI->getLoopFor(*SI)) {
679 SuccLoopDepth = ExitLoop->getLoopDepth();
680 if (ExitLoop->contains(&L))
681 BlocksExitingToOuterLoop.insert(*I);
682 }
683
Chandler Carruthfac13052011-11-27 13:34:33 +0000684 BranchProbability SuccProb(SuccWeight / WeightScale, SumWeight);
685 BlockFrequency ExitEdgeFreq = MBFI->getBlockFreq(*I) * SuccProb;
686 DEBUG(dbgs() << " exiting: " << getBlockName(*I) << " -> "
Chandler Carruth70daea92012-04-16 01:12:56 +0000687 << getBlockName(*SI) << " [L:" << SuccLoopDepth
688 << "] (" << ExitEdgeFreq << ")\n");
Chandler Carruthfac13052011-11-27 13:34:33 +0000689 // Note that we slightly bias this toward an existing layout successor to
690 // retain incoming order in the absence of better information.
691 // FIXME: Should we bias this more strongly? It's pretty weak.
Chandler Carruth70daea92012-04-16 01:12:56 +0000692 if (!ExitingBB || BestExitLoopDepth < SuccLoopDepth ||
693 ExitEdgeFreq > BestExitEdgeFreq ||
Chandler Carruthfac13052011-11-27 13:34:33 +0000694 ((*I)->isLayoutSuccessor(*SI) &&
695 !(ExitEdgeFreq < BestExitEdgeFreq))) {
696 BestExitEdgeFreq = ExitEdgeFreq;
697 ExitingBB = *I;
Chandler Carruth2eb5a742011-11-27 09:22:53 +0000698 }
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000699 }
Chandler Carruthfac13052011-11-27 13:34:33 +0000700
701 // Restore the old exiting state, no viable looping successor was found.
Chandler Carruth70daea92012-04-16 01:12:56 +0000702 if (!HasLoopingSucc) {
Chandler Carruthfac13052011-11-27 13:34:33 +0000703 ExitingBB = OldExitingBB;
704 BestExitEdgeFreq = OldBestExitEdgeFreq;
Chandler Carruth2eb5a742011-11-27 09:22:53 +0000705 continue;
Chandler Carruthfac13052011-11-27 13:34:33 +0000706 }
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000707 }
Chandler Carruth70daea92012-04-16 01:12:56 +0000708 // Without a candidate exiting block or with only a single block in the
Chandler Carruthfac13052011-11-27 13:34:33 +0000709 // loop, just use the loop header to layout the loop.
710 if (!ExitingBB || L.getNumBlocks() == 1)
Chandler Carruth70daea92012-04-16 01:12:56 +0000711 return 0;
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000712
Chandler Carruth51901d82011-11-27 20:18:00 +0000713 // Also, if we have exit blocks which lead to outer loops but didn't select
714 // one of them as the exiting block we are rotating toward, disable loop
715 // rotation altogether.
716 if (!BlocksExitingToOuterLoop.empty() &&
717 !BlocksExitingToOuterLoop.count(ExitingBB))
Chandler Carruth70daea92012-04-16 01:12:56 +0000718 return 0;
Chandler Carruth51901d82011-11-27 20:18:00 +0000719
Chandler Carruthfac13052011-11-27 13:34:33 +0000720 DEBUG(dbgs() << " Best exiting block: " << getBlockName(ExitingBB) << "\n");
Chandler Carruth70daea92012-04-16 01:12:56 +0000721 return ExitingBB;
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000722}
723
Chandler Carruth16295fc2012-04-16 09:31:23 +0000724/// \brief Attempt to rotate an exiting block to the bottom of the loop.
725///
726/// Once we have built a chain, try to rotate it to line up the hot exit block
727/// with fallthrough out of the loop if doing so doesn't introduce unnecessary
728/// branches. For example, if the loop has fallthrough into its header and out
729/// of its bottom already, don't rotate it.
730void MachineBlockPlacement::rotateLoop(BlockChain &LoopChain,
731 MachineBasicBlock *ExitingBB,
732 const BlockFilterSet &LoopBlockSet) {
733 if (!ExitingBB)
734 return;
735
736 MachineBasicBlock *Top = *LoopChain.begin();
737 bool ViableTopFallthrough = false;
738 for (MachineBasicBlock::pred_iterator PI = Top->pred_begin(),
739 PE = Top->pred_end();
740 PI != PE; ++PI) {
741 BlockChain *PredChain = BlockToChain[*PI];
742 if (!LoopBlockSet.count(*PI) &&
743 (!PredChain || *PI == *llvm::prior(PredChain->end()))) {
744 ViableTopFallthrough = true;
745 break;
746 }
747 }
748
749 // If the header has viable fallthrough, check whether the current loop
750 // bottom is a viable exiting block. If so, bail out as rotating will
751 // introduce an unnecessary branch.
752 if (ViableTopFallthrough) {
753 MachineBasicBlock *Bottom = *llvm::prior(LoopChain.end());
754 for (MachineBasicBlock::succ_iterator SI = Bottom->succ_begin(),
755 SE = Bottom->succ_end();
756 SI != SE; ++SI) {
757 BlockChain *SuccChain = BlockToChain[*SI];
758 if (!LoopBlockSet.count(*SI) &&
759 (!SuccChain || *SI == *SuccChain->begin()))
760 return;
761 }
762 }
763
764 BlockChain::iterator ExitIt = std::find(LoopChain.begin(), LoopChain.end(),
765 ExitingBB);
766 if (ExitIt == LoopChain.end())
767 return;
768
769 std::rotate(LoopChain.begin(), llvm::next(ExitIt), LoopChain.end());
770}
771
Chandler Carruth30713632011-10-23 09:18:45 +0000772/// \brief Forms basic block chains from the natural loop structures.
Chandler Carruthdb350872011-10-21 06:46:38 +0000773///
Chandler Carruth30713632011-10-23 09:18:45 +0000774/// These chains are designed to preserve the existing *structure* of the code
775/// as much as possible. We can then stitch the chains together in a way which
776/// both preserves the topological structure and minimizes taken conditional
777/// branches.
Chandler Carruthdf234352011-11-13 11:20:44 +0000778void MachineBlockPlacement::buildLoopChains(MachineFunction &F,
Jakub Staszakd4895de2011-12-21 23:02:08 +0000779 MachineLoop &L) {
Chandler Carruth30713632011-10-23 09:18:45 +0000780 // First recurse through any nested loops, building chains for those inner
781 // loops.
782 for (MachineLoop::iterator LI = L.begin(), LE = L.end(); LI != LE; ++LI)
783 buildLoopChains(F, **LI);
Chandler Carruthdb350872011-10-21 06:46:38 +0000784
Chandler Carruthdf234352011-11-13 11:20:44 +0000785 SmallVector<MachineBasicBlock *, 16> BlockWorkList;
786 BlockFilterSet LoopBlockSet(L.block_begin(), L.block_end());
Chandler Carruthfac13052011-11-27 13:34:33 +0000787
Chandler Carruthe773e8c2012-04-16 13:33:36 +0000788 // First check to see if there is an obviously preferable top block for the
789 // loop. This will default to the header, but may end up as one of the
790 // predecessors to the header if there is one which will result in strictly
791 // fewer branches in the loop body.
792 MachineBasicBlock *LoopTop = findBestLoopTop(L, LoopBlockSet);
793
794 // If we selected just the header for the loop top, look for a potentially
795 // profitable exit block in the event that rotating the loop can eliminate
796 // branches by placing an exit edge at the bottom.
797 MachineBasicBlock *ExitingBB = 0;
798 if (LoopTop == L.getHeader())
799 ExitingBB = findBestLoopExit(F, L, LoopBlockSet);
800
801 BlockChain &LoopChain = *BlockToChain[LoopTop];
Chandler Carruthdb350872011-10-21 06:46:38 +0000802
Chandler Carruthdf234352011-11-13 11:20:44 +0000803 // FIXME: This is a really lame way of walking the chains in the loop: we
804 // walk the blocks, and use a set to prevent visiting a particular chain
805 // twice.
Jakub Staszakd4895de2011-12-21 23:02:08 +0000806 SmallPtrSet<BlockChain *, 4> UpdatedPreds;
Jakub Staszakfeb468a2011-12-07 19:46:10 +0000807 assert(LoopChain.LoopPredecessors == 0);
808 UpdatedPreds.insert(&LoopChain);
Chandler Carruthdf234352011-11-13 11:20:44 +0000809 for (MachineLoop::block_iterator BI = L.block_begin(),
810 BE = L.block_end();
Chandler Carruth30713632011-10-23 09:18:45 +0000811 BI != BE; ++BI) {
Jakub Staszakd4895de2011-12-21 23:02:08 +0000812 BlockChain &Chain = *BlockToChain[*BI];
Chandler Carruthfac13052011-11-27 13:34:33 +0000813 if (!UpdatedPreds.insert(&Chain))
Chandler Carruthdf234352011-11-13 11:20:44 +0000814 continue;
815
816 assert(Chain.LoopPredecessors == 0);
817 for (BlockChain::iterator BCI = Chain.begin(), BCE = Chain.end();
818 BCI != BCE; ++BCI) {
Jakub Staszakd4895de2011-12-21 23:02:08 +0000819 assert(BlockToChain[*BCI] == &Chain);
Chandler Carruthdf234352011-11-13 11:20:44 +0000820 for (MachineBasicBlock::pred_iterator PI = (*BCI)->pred_begin(),
821 PE = (*BCI)->pred_end();
822 PI != PE; ++PI) {
Jakub Staszakd4895de2011-12-21 23:02:08 +0000823 if (BlockToChain[*PI] == &Chain || !LoopBlockSet.count(*PI))
Chandler Carruthdf234352011-11-13 11:20:44 +0000824 continue;
825 ++Chain.LoopPredecessors;
826 }
827 }
828
829 if (Chain.LoopPredecessors == 0)
Chandler Carrutha2deea12011-11-24 08:46:04 +0000830 BlockWorkList.push_back(*Chain.begin());
Chandler Carruthdb350872011-10-21 06:46:38 +0000831 }
Chandler Carruthdf234352011-11-13 11:20:44 +0000832
Chandler Carruthe773e8c2012-04-16 13:33:36 +0000833 buildChain(LoopTop, LoopChain, BlockWorkList, &LoopBlockSet);
Chandler Carruth16295fc2012-04-16 09:31:23 +0000834 rotateLoop(LoopChain, ExitingBB, LoopBlockSet);
Chandler Carruthdf234352011-11-13 11:20:44 +0000835
836 DEBUG({
Chandler Carruth10252db2011-11-13 21:39:51 +0000837 // Crash at the end so we get all of the debugging output first.
838 bool BadLoop = false;
839 if (LoopChain.LoopPredecessors) {
840 BadLoop = true;
Chandler Carruthdf234352011-11-13 11:20:44 +0000841 dbgs() << "Loop chain contains a block without its preds placed!\n"
842 << " Loop header: " << getBlockName(*L.block_begin()) << "\n"
843 << " Chain header: " << getBlockName(*LoopChain.begin()) << "\n";
Chandler Carruth10252db2011-11-13 21:39:51 +0000844 }
Chandler Carruthdf234352011-11-13 11:20:44 +0000845 for (BlockChain::iterator BCI = LoopChain.begin(), BCE = LoopChain.end();
Chandler Carruth70daea92012-04-16 01:12:56 +0000846 BCI != BCE; ++BCI) {
847 dbgs() << " ... " << getBlockName(*BCI) << "\n";
Chandler Carruth10252db2011-11-13 21:39:51 +0000848 if (!LoopBlockSet.erase(*BCI)) {
Chandler Carruthbc83fcd2011-11-14 10:55:53 +0000849 // We don't mark the loop as bad here because there are real situations
850 // where this can occur. For example, with an unanalyzable fallthrough
Chandler Carruth598894f2011-11-23 10:35:36 +0000851 // from a loop block to a non-loop block or vice versa.
Chandler Carruthdf234352011-11-13 11:20:44 +0000852 dbgs() << "Loop chain contains a block not contained by the loop!\n"
853 << " Loop header: " << getBlockName(*L.block_begin()) << "\n"
854 << " Chain header: " << getBlockName(*LoopChain.begin()) << "\n"
855 << " Bad block: " << getBlockName(*BCI) << "\n";
Chandler Carruth10252db2011-11-13 21:39:51 +0000856 }
Chandler Carruth70daea92012-04-16 01:12:56 +0000857 }
Chandler Carruthdf234352011-11-13 11:20:44 +0000858
Chandler Carruth10252db2011-11-13 21:39:51 +0000859 if (!LoopBlockSet.empty()) {
860 BadLoop = true;
Chandler Carruthc0f05b32011-11-13 22:50:09 +0000861 for (BlockFilterSet::iterator LBI = LoopBlockSet.begin(),
862 LBE = LoopBlockSet.end();
Chandler Carruthdf234352011-11-13 11:20:44 +0000863 LBI != LBE; ++LBI)
864 dbgs() << "Loop contains blocks never placed into a chain!\n"
865 << " Loop header: " << getBlockName(*L.block_begin()) << "\n"
866 << " Chain header: " << getBlockName(*LoopChain.begin()) << "\n"
867 << " Bad block: " << getBlockName(*LBI) << "\n";
Chandler Carruth10252db2011-11-13 21:39:51 +0000868 }
869 assert(!BadLoop && "Detected problems with the placement of this loop.");
Chandler Carruthdf234352011-11-13 11:20:44 +0000870 });
Chandler Carruthdb350872011-10-21 06:46:38 +0000871}
872
Chandler Carruth30713632011-10-23 09:18:45 +0000873void MachineBlockPlacement::buildCFGChains(MachineFunction &F) {
Chandler Carruthdf234352011-11-13 11:20:44 +0000874 // Ensure that every BB in the function has an associated chain to simplify
875 // the assumptions of the remaining algorithm.
Chandler Carruth03300ec2011-11-19 10:26:02 +0000876 SmallVector<MachineOperand, 4> Cond; // For AnalyzeBranch.
877 for (MachineFunction::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI) {
878 MachineBasicBlock *BB = FI;
Chandler Carruth4aae4f92011-11-24 11:23:15 +0000879 BlockChain *Chain
880 = new (ChainAllocator.Allocate()) BlockChain(BlockToChain, BB);
Chandler Carruth03300ec2011-11-19 10:26:02 +0000881 // Also, merge any blocks which we cannot reason about and must preserve
882 // the exact fallthrough behavior for.
883 for (;;) {
884 Cond.clear();
885 MachineBasicBlock *TBB = 0, *FBB = 0; // For AnalyzeBranch.
886 if (!TII->AnalyzeBranch(*BB, TBB, FBB, Cond) || !FI->canFallThrough())
887 break;
888
889 MachineFunction::iterator NextFI(llvm::next(FI));
890 MachineBasicBlock *NextBB = NextFI;
891 // Ensure that the layout successor is a viable block, as we know that
892 // fallthrough is a possibility.
893 assert(NextFI != FE && "Can't fallthrough past the last block.");
894 DEBUG(dbgs() << "Pre-merging due to unanalyzable fallthrough: "
895 << getBlockName(BB) << " -> " << getBlockName(NextBB)
896 << "\n");
897 Chain->merge(NextBB, 0);
898 FI = NextFI;
899 BB = NextBB;
900 }
901 }
Chandler Carruthdf234352011-11-13 11:20:44 +0000902
903 // Build any loop-based chains.
Chandler Carruth30713632011-10-23 09:18:45 +0000904 for (MachineLoopInfo::iterator LI = MLI->begin(), LE = MLI->end(); LI != LE;
905 ++LI)
906 buildLoopChains(F, **LI);
907
Chandler Carruthdf234352011-11-13 11:20:44 +0000908 SmallVector<MachineBasicBlock *, 16> BlockWorkList;
Chandler Carruth30713632011-10-23 09:18:45 +0000909
Chandler Carruthdf234352011-11-13 11:20:44 +0000910 SmallPtrSet<BlockChain *, 4> UpdatedPreds;
Chandler Carruthdb350872011-10-21 06:46:38 +0000911 for (MachineFunction::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI) {
Chandler Carruthdf234352011-11-13 11:20:44 +0000912 MachineBasicBlock *BB = &*FI;
913 BlockChain &Chain = *BlockToChain[BB];
914 if (!UpdatedPreds.insert(&Chain))
915 continue;
916
917 assert(Chain.LoopPredecessors == 0);
918 for (BlockChain::iterator BCI = Chain.begin(), BCE = Chain.end();
919 BCI != BCE; ++BCI) {
920 assert(BlockToChain[*BCI] == &Chain);
921 for (MachineBasicBlock::pred_iterator PI = (*BCI)->pred_begin(),
922 PE = (*BCI)->pred_end();
923 PI != PE; ++PI) {
924 if (BlockToChain[*PI] == &Chain)
925 continue;
926 ++Chain.LoopPredecessors;
927 }
928 }
929
930 if (Chain.LoopPredecessors == 0)
Chandler Carrutha2deea12011-11-24 08:46:04 +0000931 BlockWorkList.push_back(*Chain.begin());
Chandler Carruthdf234352011-11-13 11:20:44 +0000932 }
933
934 BlockChain &FunctionChain = *BlockToChain[&F.front()];
Chandler Carruth3273c892011-11-15 06:26:43 +0000935 buildChain(&F.front(), FunctionChain, BlockWorkList);
Chandler Carruthdf234352011-11-13 11:20:44 +0000936
937 typedef SmallPtrSet<MachineBasicBlock *, 16> FunctionBlockSetType;
938 DEBUG({
Chandler Carruth10252db2011-11-13 21:39:51 +0000939 // Crash at the end so we get all of the debugging output first.
940 bool BadFunc = false;
Chandler Carruthdf234352011-11-13 11:20:44 +0000941 FunctionBlockSetType FunctionBlockSet;
942 for (MachineFunction::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI)
943 FunctionBlockSet.insert(FI);
944
Chandler Carruthc0f05b32011-11-13 22:50:09 +0000945 for (BlockChain::iterator BCI = FunctionChain.begin(),
946 BCE = FunctionChain.end();
Chandler Carruthdf234352011-11-13 11:20:44 +0000947 BCI != BCE; ++BCI)
Chandler Carruth10252db2011-11-13 21:39:51 +0000948 if (!FunctionBlockSet.erase(*BCI)) {
949 BadFunc = true;
Chandler Carruthdf234352011-11-13 11:20:44 +0000950 dbgs() << "Function chain contains a block not in the function!\n"
951 << " Bad block: " << getBlockName(*BCI) << "\n";
Chandler Carruth10252db2011-11-13 21:39:51 +0000952 }
Chandler Carruthdf234352011-11-13 11:20:44 +0000953
Chandler Carruth10252db2011-11-13 21:39:51 +0000954 if (!FunctionBlockSet.empty()) {
955 BadFunc = true;
Chandler Carruthc0f05b32011-11-13 22:50:09 +0000956 for (FunctionBlockSetType::iterator FBI = FunctionBlockSet.begin(),
957 FBE = FunctionBlockSet.end();
958 FBI != FBE; ++FBI)
Chandler Carruthdf234352011-11-13 11:20:44 +0000959 dbgs() << "Function contains blocks never placed into a chain!\n"
960 << " Bad block: " << getBlockName(*FBI) << "\n";
Chandler Carruth10252db2011-11-13 21:39:51 +0000961 }
962 assert(!BadFunc && "Detected problems with the block placement.");
Chandler Carruthdf234352011-11-13 11:20:44 +0000963 });
964
965 // Splice the blocks into place.
966 MachineFunction::iterator InsertPos = F.begin();
Chandler Carruthc0f05b32011-11-13 22:50:09 +0000967 for (BlockChain::iterator BI = FunctionChain.begin(),
968 BE = FunctionChain.end();
Chandler Carruthdf234352011-11-13 11:20:44 +0000969 BI != BE; ++BI) {
970 DEBUG(dbgs() << (BI == FunctionChain.begin() ? "Placing chain "
971 : " ... ")
972 << getBlockName(*BI) << "\n");
973 if (InsertPos != MachineFunction::iterator(*BI))
974 F.splice(InsertPos, *BI);
975 else
976 ++InsertPos;
977
978 // Update the terminator of the previous block.
979 if (BI == FunctionChain.begin())
980 continue;
981 MachineBasicBlock *PrevBB = llvm::prior(MachineFunction::iterator(*BI));
982
Chandler Carruthdb350872011-10-21 06:46:38 +0000983 // FIXME: It would be awesome of updateTerminator would just return rather
984 // than assert when the branch cannot be analyzed in order to remove this
985 // boiler plate.
986 Cond.clear();
987 MachineBasicBlock *TBB = 0, *FBB = 0; // For AnalyzeBranch.
Manman Ren11236142012-07-31 01:11:07 +0000988 if (!TII->AnalyzeBranch(*PrevBB, TBB, FBB, Cond)) {
989 // If PrevBB has a two-way branch, try to re-order the branches
990 // such that we branch to the successor with higher weight first.
991 if (TBB && !Cond.empty() && FBB &&
992 MBPI->getEdgeWeight(PrevBB, FBB) > MBPI->getEdgeWeight(PrevBB, TBB) &&
993 !TII->ReverseBranchCondition(Cond)) {
994 DEBUG(dbgs() << "Reverse order of the two branches: "
995 << getBlockName(PrevBB) << "\n");
996 DEBUG(dbgs() << " Edge weight: " << MBPI->getEdgeWeight(PrevBB, FBB)
997 << " vs " << MBPI->getEdgeWeight(PrevBB, TBB) << "\n");
998 DebugLoc dl; // FIXME: this is nowhere
999 TII->RemoveBranch(*PrevBB);
1000 TII->InsertBranch(*PrevBB, FBB, TBB, Cond, dl);
1001 }
Chandler Carruthdf234352011-11-13 11:20:44 +00001002 PrevBB->updateTerminator();
Manman Ren11236142012-07-31 01:11:07 +00001003 }
Chandler Carruthdb350872011-10-21 06:46:38 +00001004 }
Chandler Carruthdf234352011-11-13 11:20:44 +00001005
1006 // Fixup the last block.
1007 Cond.clear();
1008 MachineBasicBlock *TBB = 0, *FBB = 0; // For AnalyzeBranch.
1009 if (!TII->AnalyzeBranch(F.back(), TBB, FBB, Cond))
1010 F.back().updateTerminator();
Chandler Carruthdb350872011-10-21 06:46:38 +00001011
Chandler Carruth70daea92012-04-16 01:12:56 +00001012 // Walk through the backedges of the function now that we have fully laid out
1013 // the basic blocks and align the destination of each backedge. We don't rely
Chandler Carruthe6450dc2012-08-07 09:45:24 +00001014 // exclusively on the loop info here so that we can align backedges in
1015 // unnatural CFGs and backedges that were introduced purely because of the
1016 // loop rotations done during this layout pass.
Chandler Carruth4a85cc92011-10-21 08:57:37 +00001017 if (F.getFunction()->hasFnAttr(Attribute::OptimizeForSize))
1018 return;
Chandler Carruth4a85cc92011-10-21 08:57:37 +00001019 unsigned Align = TLI->getPrefLoopAlignment();
1020 if (!Align)
1021 return; // Don't care about loop alignment.
Chandler Carruthe6450dc2012-08-07 09:45:24 +00001022 if (FunctionChain.begin() == FunctionChain.end())
1023 return; // Empty chain.
Chandler Carruth4a85cc92011-10-21 08:57:37 +00001024
Chandler Carruthe6450dc2012-08-07 09:45:24 +00001025 const BranchProbability ColdProb(1, 5); // 20%
1026 BlockFrequency EntryFreq = MBFI->getBlockFreq(F.begin());
1027 BlockFrequency WeightedEntryFreq = EntryFreq * ColdProb;
1028 for (BlockChain::iterator BI = llvm::next(FunctionChain.begin()),
Chandler Carruth70daea92012-04-16 01:12:56 +00001029 BE = FunctionChain.end();
1030 BI != BE; ++BI) {
Chandler Carruthe6450dc2012-08-07 09:45:24 +00001031 // Don't align non-looping basic blocks. These are unlikely to execute
1032 // enough times to matter in practice. Note that we'll still handle
1033 // unnatural CFGs inside of a natural outer loop (the common case) and
1034 // rotated loops.
1035 MachineLoop *L = MLI->getLoopFor(*BI);
1036 if (!L)
1037 continue;
1038
1039 // If the block is cold relative to the function entry don't waste space
1040 // aligning it.
1041 BlockFrequency Freq = MBFI->getBlockFreq(*BI);
1042 if (Freq < WeightedEntryFreq)
1043 continue;
1044
1045 // If the block is cold relative to its loop header, don't align it
1046 // regardless of what edges into the block exist.
1047 MachineBasicBlock *LoopHeader = L->getHeader();
1048 BlockFrequency LoopHeaderFreq = MBFI->getBlockFreq(LoopHeader);
1049 if (Freq < (LoopHeaderFreq * ColdProb))
1050 continue;
1051
1052 // Check for the existence of a non-layout predecessor which would benefit
1053 // from aligning this block.
1054 MachineBasicBlock *LayoutPred = *llvm::prior(BI);
1055
1056 // Force alignment if all the predecessors are jumps. We already checked
1057 // that the block isn't cold above.
1058 if (!LayoutPred->isSuccessor(*BI)) {
1059 (*BI)->setAlignment(Align);
1060 continue;
1061 }
1062
1063 // Align this block if the layout predecessor's edge into this block is
1064 // cold relative to the block. When this is true, othe predecessors make up
1065 // all of the hot entries into the block and thus alignment is likely to be
1066 // important.
1067 BranchProbability LayoutProb = MBPI->getEdgeProbability(LayoutPred, *BI);
1068 BlockFrequency LayoutEdgeFreq = MBFI->getBlockFreq(LayoutPred) * LayoutProb;
1069 if (LayoutEdgeFreq <= (Freq * ColdProb))
1070 (*BI)->setAlignment(Align);
Chandler Carruth70daea92012-04-16 01:12:56 +00001071 }
Chandler Carruth4a85cc92011-10-21 08:57:37 +00001072}
1073
Chandler Carruthdb350872011-10-21 06:46:38 +00001074bool MachineBlockPlacement::runOnMachineFunction(MachineFunction &F) {
1075 // Check for single-block functions and skip them.
1076 if (llvm::next(F.begin()) == F.end())
1077 return false;
1078
1079 MBPI = &getAnalysis<MachineBranchProbabilityInfo>();
1080 MBFI = &getAnalysis<MachineBlockFrequencyInfo>();
Chandler Carruth4a85cc92011-10-21 08:57:37 +00001081 MLI = &getAnalysis<MachineLoopInfo>();
Chandler Carruthdb350872011-10-21 06:46:38 +00001082 TII = F.getTarget().getInstrInfo();
Chandler Carruth4a85cc92011-10-21 08:57:37 +00001083 TLI = F.getTarget().getTargetLowering();
Chandler Carruthdb350872011-10-21 06:46:38 +00001084 assert(BlockToChain.empty());
Chandler Carruthdb350872011-10-21 06:46:38 +00001085
Chandler Carruth30713632011-10-23 09:18:45 +00001086 buildCFGChains(F);
Chandler Carruthdb350872011-10-21 06:46:38 +00001087
Chandler Carruthdb350872011-10-21 06:46:38 +00001088 BlockToChain.clear();
Chandler Carruthf5e47ac2011-11-14 10:57:23 +00001089 ChainAllocator.DestroyAll();
Chandler Carruthdb350872011-10-21 06:46:38 +00001090
1091 // We always return true as we have no way to track whether the final order
1092 // differs from the original order.
1093 return true;
1094}
Chandler Carruth37efc9f2011-11-02 07:17:12 +00001095
1096namespace {
1097/// \brief A pass to compute block placement statistics.
1098///
1099/// A separate pass to compute interesting statistics for evaluating block
1100/// placement. This is separate from the actual placement pass so that they can
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00001101/// be computed in the absence of any placement transformations or when using
Chandler Carruth37efc9f2011-11-02 07:17:12 +00001102/// alternative placement strategies.
1103class MachineBlockPlacementStats : public MachineFunctionPass {
1104 /// \brief A handle to the branch probability pass.
1105 const MachineBranchProbabilityInfo *MBPI;
1106
1107 /// \brief A handle to the function-wide block frequency pass.
1108 const MachineBlockFrequencyInfo *MBFI;
1109
1110public:
1111 static char ID; // Pass identification, replacement for typeid
1112 MachineBlockPlacementStats() : MachineFunctionPass(ID) {
1113 initializeMachineBlockPlacementStatsPass(*PassRegistry::getPassRegistry());
1114 }
1115
1116 bool runOnMachineFunction(MachineFunction &F);
1117
1118 void getAnalysisUsage(AnalysisUsage &AU) const {
1119 AU.addRequired<MachineBranchProbabilityInfo>();
1120 AU.addRequired<MachineBlockFrequencyInfo>();
1121 AU.setPreservesAll();
1122 MachineFunctionPass::getAnalysisUsage(AU);
1123 }
Chandler Carruth37efc9f2011-11-02 07:17:12 +00001124};
1125}
1126
1127char MachineBlockPlacementStats::ID = 0;
Andrew Trick1dd8c852012-02-08 21:23:13 +00001128char &llvm::MachineBlockPlacementStatsID = MachineBlockPlacementStats::ID;
Chandler Carruth37efc9f2011-11-02 07:17:12 +00001129INITIALIZE_PASS_BEGIN(MachineBlockPlacementStats, "block-placement-stats",
1130 "Basic Block Placement Stats", false, false)
1131INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo)
1132INITIALIZE_PASS_DEPENDENCY(MachineBlockFrequencyInfo)
1133INITIALIZE_PASS_END(MachineBlockPlacementStats, "block-placement-stats",
1134 "Basic Block Placement Stats", false, false)
1135
Chandler Carruth37efc9f2011-11-02 07:17:12 +00001136bool MachineBlockPlacementStats::runOnMachineFunction(MachineFunction &F) {
1137 // Check for single-block functions and skip them.
1138 if (llvm::next(F.begin()) == F.end())
1139 return false;
1140
1141 MBPI = &getAnalysis<MachineBranchProbabilityInfo>();
1142 MBFI = &getAnalysis<MachineBlockFrequencyInfo>();
1143
1144 for (MachineFunction::iterator I = F.begin(), E = F.end(); I != E; ++I) {
1145 BlockFrequency BlockFreq = MBFI->getBlockFreq(I);
1146 Statistic &NumBranches = (I->succ_size() > 1) ? NumCondBranches
1147 : NumUncondBranches;
1148 Statistic &BranchTakenFreq = (I->succ_size() > 1) ? CondBranchTakenFreq
1149 : UncondBranchTakenFreq;
1150 for (MachineBasicBlock::succ_iterator SI = I->succ_begin(),
1151 SE = I->succ_end();
1152 SI != SE; ++SI) {
1153 // Skip if this successor is a fallthrough.
1154 if (I->isLayoutSuccessor(*SI))
1155 continue;
1156
1157 BlockFrequency EdgeFreq = BlockFreq * MBPI->getEdgeProbability(I, *SI);
1158 ++NumBranches;
1159 BranchTakenFreq += EdgeFreq.getFrequency();
1160 }
1161 }
1162
1163 return false;
1164}
1165