blob: 1b5c1f1f8815bab2d62ad8208b7a45984e9c3193 [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
Chandler Carruthd04a8d42012-12-03 16:50:05 +000028#include "llvm/CodeGen/Passes.h"
29#include "llvm/ADT/DenseMap.h"
30#include "llvm/ADT/SmallPtrSet.h"
31#include "llvm/ADT/SmallVector.h"
32#include "llvm/ADT/Statistic.h"
Chandler Carruth4a85cc92011-10-21 08:57:37 +000033#include "llvm/CodeGen/MachineBasicBlock.h"
Chandler Carruthdb350872011-10-21 06:46:38 +000034#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
35#include "llvm/CodeGen/MachineBranchProbabilityInfo.h"
36#include "llvm/CodeGen/MachineFunction.h"
Chandler Carruthdb350872011-10-21 06:46:38 +000037#include "llvm/CodeGen/MachineFunctionPass.h"
Chandler Carruth4a85cc92011-10-21 08:57:37 +000038#include "llvm/CodeGen/MachineLoopInfo.h"
39#include "llvm/CodeGen/MachineModuleInfo.h"
Chandler Carruthdb350872011-10-21 06:46:38 +000040#include "llvm/Support/Allocator.h"
Nadav Rotem07706e52013-04-12 00:48:32 +000041#include "llvm/Support/CommandLine.h"
Chandler Carruth30713632011-10-23 09:18:45 +000042#include "llvm/Support/Debug.h"
Chandler Carruthdb350872011-10-21 06:46:38 +000043#include "llvm/Target/TargetInstrInfo.h"
Chandler Carruth4a85cc92011-10-21 08:57:37 +000044#include "llvm/Target/TargetLowering.h"
Stephen Hines37ed9c12014-12-01 14:51:49 -080045#include "llvm/Target/TargetSubtargetInfo.h"
Chandler Carruthdb350872011-10-21 06:46:38 +000046#include <algorithm>
47using namespace llvm;
48
Stephen Hinesdce4a402014-05-29 02:49:00 -070049#define DEBUG_TYPE "block-placement2"
50
Chandler Carruth37efc9f2011-11-02 07:17:12 +000051STATISTIC(NumCondBranches, "Number of conditional branches");
52STATISTIC(NumUncondBranches, "Number of uncondittional branches");
53STATISTIC(CondBranchTakenFreq,
54 "Potential frequency of taking conditional branches");
55STATISTIC(UncondBranchTakenFreq,
56 "Potential frequency of taking unconditional branches");
57
Nadav Rotem07706e52013-04-12 00:48:32 +000058static cl::opt<unsigned> AlignAllBlock("align-all-blocks",
59 cl::desc("Force the alignment of all "
60 "blocks in the function."),
61 cl::init(0), cl::Hidden);
62
Stephen Hines36b56882014-04-23 16:57:46 -070063// FIXME: Find a good default for this flag and remove the flag.
64static cl::opt<unsigned>
65ExitBlockBias("block-placement-exit-block-bias",
66 cl::desc("Block frequency percentage a loop exit block needs "
67 "over the original exit to be considered the new exit."),
68 cl::init(0), cl::Hidden);
69
Chandler Carruthdb350872011-10-21 06:46:38 +000070namespace {
Chandler Carruth30713632011-10-23 09:18:45 +000071class BlockChain;
Chandler Carruthdb350872011-10-21 06:46:38 +000072/// \brief Type for our function-wide basic block -> block chain mapping.
73typedef DenseMap<MachineBasicBlock *, BlockChain *> BlockToChainMapType;
74}
75
76namespace {
77/// \brief A chain of blocks which will be laid out contiguously.
78///
79/// This is the datastructure representing a chain of consecutive blocks that
80/// are profitable to layout together in order to maximize fallthrough
Chandler Carruthc04f8162012-06-26 05:16:37 +000081/// probabilities and code locality. We also can use a block chain to represent
82/// a sequence of basic blocks which have some external (correctness)
83/// requirement for sequential layout.
Chandler Carruthdb350872011-10-21 06:46:38 +000084///
Chandler Carruthc04f8162012-06-26 05:16:37 +000085/// Chains can be built around a single basic block and can be merged to grow
86/// them. They participate in a block-to-chain mapping, which is updated
87/// automatically as chains are merged together.
Chandler Carruth30713632011-10-23 09:18:45 +000088class BlockChain {
89 /// \brief The sequence of blocks belonging to this chain.
Chandler Carruthdb350872011-10-21 06:46:38 +000090 ///
Chandler Carruth30713632011-10-23 09:18:45 +000091 /// This is the sequence of blocks for a particular chain. These will be laid
92 /// out in-order within the function.
93 SmallVector<MachineBasicBlock *, 4> Blocks;
Chandler Carruthdb350872011-10-21 06:46:38 +000094
95 /// \brief A handle to the function-wide basic block to block chain mapping.
96 ///
97 /// This is retained in each block chain to simplify the computation of child
98 /// block chains for SCC-formation and iteration. We store the edges to child
99 /// basic blocks, and map them back to their associated chains using this
100 /// structure.
101 BlockToChainMapType &BlockToChain;
102
Chandler Carruth30713632011-10-23 09:18:45 +0000103public:
Chandler Carruthdb350872011-10-21 06:46:38 +0000104 /// \brief Construct a new BlockChain.
105 ///
106 /// This builds a new block chain representing a single basic block in the
107 /// function. It also registers itself as the chain that block participates
108 /// in with the BlockToChain mapping.
109 BlockChain(BlockToChainMapType &BlockToChain, MachineBasicBlock *BB)
Chandler Carruthdf234352011-11-13 11:20:44 +0000110 : Blocks(1, BB), BlockToChain(BlockToChain), LoopPredecessors(0) {
Chandler Carruthdb350872011-10-21 06:46:38 +0000111 assert(BB && "Cannot create a chain with a null basic block");
112 BlockToChain[BB] = this;
113 }
114
Chandler Carruth30713632011-10-23 09:18:45 +0000115 /// \brief Iterator over blocks within the chain.
Chandler Carruth70daea92012-04-16 01:12:56 +0000116 typedef SmallVectorImpl<MachineBasicBlock *>::iterator iterator;
Chandler Carruth30713632011-10-23 09:18:45 +0000117
118 /// \brief Beginning of blocks within the chain.
Chandler Carruth70daea92012-04-16 01:12:56 +0000119 iterator begin() { return Blocks.begin(); }
Chandler Carruth30713632011-10-23 09:18:45 +0000120
121 /// \brief End of blocks within the chain.
Chandler Carruth70daea92012-04-16 01:12:56 +0000122 iterator end() { return Blocks.end(); }
Chandler Carruth30713632011-10-23 09:18:45 +0000123
124 /// \brief Merge a block chain into this one.
Chandler Carruthdb350872011-10-21 06:46:38 +0000125 ///
126 /// This routine merges a block chain into this one. It takes care of forming
127 /// a contiguous sequence of basic blocks, updating the edge list, and
128 /// updating the block -> chain mapping. It does not free or tear down the
129 /// old chain, but the old chain's block list is no longer valid.
Jakub Staszakd4895de2011-12-21 23:02:08 +0000130 void merge(MachineBasicBlock *BB, BlockChain *Chain) {
Chandler Carruth30713632011-10-23 09:18:45 +0000131 assert(BB);
132 assert(!Blocks.empty());
Chandler Carruthdb350872011-10-21 06:46:38 +0000133
Chandler Carruth30713632011-10-23 09:18:45 +0000134 // Fast path in case we don't have a chain already.
135 if (!Chain) {
136 assert(!BlockToChain[BB]);
137 Blocks.push_back(BB);
138 BlockToChain[BB] = this;
139 return;
Chandler Carruthdb350872011-10-21 06:46:38 +0000140 }
141
Chandler Carruth30713632011-10-23 09:18:45 +0000142 assert(BB == *Chain->begin());
143 assert(Chain->begin() != Chain->end());
Chandler Carruthdb350872011-10-21 06:46:38 +0000144
Chandler Carruth30713632011-10-23 09:18:45 +0000145 // Update the incoming blocks to point to this chain, and add them to the
146 // chain structure.
147 for (BlockChain::iterator BI = Chain->begin(), BE = Chain->end();
148 BI != BE; ++BI) {
149 Blocks.push_back(*BI);
150 assert(BlockToChain[*BI] == Chain && "Incoming blocks not in chain");
151 BlockToChain[*BI] = this;
152 }
Chandler Carruthdb350872011-10-21 06:46:38 +0000153 }
Chandler Carruthdf234352011-11-13 11:20:44 +0000154
Chandler Carruth6313d942012-04-08 14:37:01 +0000155#ifndef NDEBUG
156 /// \brief Dump the blocks in this chain.
Stephen Hines36b56882014-04-23 16:57:46 -0700157 LLVM_DUMP_METHOD void dump() {
Chandler Carruth6313d942012-04-08 14:37:01 +0000158 for (iterator I = begin(), E = end(); I != E; ++I)
159 (*I)->dump();
160 }
161#endif // NDEBUG
162
Chandler Carruthdf234352011-11-13 11:20:44 +0000163 /// \brief Count of predecessors within the loop currently being processed.
164 ///
165 /// This count is updated at each loop we process to represent the number of
166 /// in-loop predecessors of this chain.
167 unsigned LoopPredecessors;
Chandler Carruthdb350872011-10-21 06:46:38 +0000168};
169}
170
171namespace {
172class MachineBlockPlacement : public MachineFunctionPass {
Chandler Carruth30713632011-10-23 09:18:45 +0000173 /// \brief A typedef for a block filter set.
174 typedef SmallPtrSet<MachineBasicBlock *, 16> BlockFilterSet;
175
Chandler Carruthdb350872011-10-21 06:46:38 +0000176 /// \brief A handle to the branch probability pass.
177 const MachineBranchProbabilityInfo *MBPI;
178
179 /// \brief A handle to the function-wide block frequency pass.
180 const MachineBlockFrequencyInfo *MBFI;
181
Chandler Carruth4a85cc92011-10-21 08:57:37 +0000182 /// \brief A handle to the loop info.
183 const MachineLoopInfo *MLI;
184
Chandler Carruthdb350872011-10-21 06:46:38 +0000185 /// \brief A handle to the target's instruction info.
186 const TargetInstrInfo *TII;
187
Chandler Carruth4a85cc92011-10-21 08:57:37 +0000188 /// \brief A handle to the target's lowering info.
Benjamin Kramer69e42db2013-01-11 20:05:37 +0000189 const TargetLoweringBase *TLI;
Chandler Carruth4a85cc92011-10-21 08:57:37 +0000190
Chandler Carruthdb350872011-10-21 06:46:38 +0000191 /// \brief Allocator and owner of BlockChain structures.
192 ///
Chandler Carruthc04f8162012-06-26 05:16:37 +0000193 /// We build BlockChains lazily while processing the loop structure of
194 /// a function. To reduce malloc traffic, we allocate them using this
195 /// slab-like allocator, and destroy them after the pass completes. An
196 /// important guarantee is that this allocator produces stable pointers to
197 /// the chains.
Chandler Carruthdb350872011-10-21 06:46:38 +0000198 SpecificBumpPtrAllocator<BlockChain> ChainAllocator;
199
200 /// \brief Function wide BasicBlock to BlockChain mapping.
201 ///
202 /// This mapping allows efficiently moving from any given basic block to the
203 /// BlockChain it participates in, if any. We use it to, among other things,
204 /// allow implicitly defining edges between chains as the existing edges
205 /// between basic blocks.
206 DenseMap<MachineBasicBlock *, BlockChain *> BlockToChain;
207
Jakub Staszakd4895de2011-12-21 23:02:08 +0000208 void markChainSuccessors(BlockChain &Chain,
209 MachineBasicBlock *LoopHeaderBB,
Chandler Carruthb5856c82011-11-14 00:00:35 +0000210 SmallVectorImpl<MachineBasicBlock *> &BlockWorkList,
Stephen Hinesdce4a402014-05-29 02:49:00 -0700211 const BlockFilterSet *BlockFilter = nullptr);
Jakub Staszakd4895de2011-12-21 23:02:08 +0000212 MachineBasicBlock *selectBestSuccessor(MachineBasicBlock *BB,
213 BlockChain &Chain,
214 const BlockFilterSet *BlockFilter);
Chandler Carruthf3fc0052011-11-13 11:42:26 +0000215 MachineBasicBlock *selectBestCandidateBlock(
Jakub Staszakd4895de2011-12-21 23:02:08 +0000216 BlockChain &Chain, SmallVectorImpl<MachineBasicBlock *> &WorkList,
217 const BlockFilterSet *BlockFilter);
Chandler Carruth3273c892011-11-15 06:26:43 +0000218 MachineBasicBlock *getFirstUnplacedBlock(
219 MachineFunction &F,
220 const BlockChain &PlacedChain,
221 MachineFunction::iterator &PrevUnplacedBlockIt,
Jakub Staszakd4895de2011-12-21 23:02:08 +0000222 const BlockFilterSet *BlockFilter);
Chandler Carruthdf234352011-11-13 11:20:44 +0000223 void buildChain(MachineBasicBlock *BB, BlockChain &Chain,
Chandler Carruthb5856c82011-11-14 00:00:35 +0000224 SmallVectorImpl<MachineBasicBlock *> &BlockWorkList,
Stephen Hinesdce4a402014-05-29 02:49:00 -0700225 const BlockFilterSet *BlockFilter = nullptr);
Chandler Carruthe773e8c2012-04-16 13:33:36 +0000226 MachineBasicBlock *findBestLoopTop(MachineLoop &L,
227 const BlockFilterSet &LoopBlockSet);
Chandler Carruth70daea92012-04-16 01:12:56 +0000228 MachineBasicBlock *findBestLoopExit(MachineFunction &F,
229 MachineLoop &L,
230 const BlockFilterSet &LoopBlockSet);
Jakub Staszakd4895de2011-12-21 23:02:08 +0000231 void buildLoopChains(MachineFunction &F, MachineLoop &L);
Chandler Carruth16295fc2012-04-16 09:31:23 +0000232 void rotateLoop(BlockChain &LoopChain, MachineBasicBlock *ExitingBB,
233 const BlockFilterSet &LoopBlockSet);
Chandler Carruth30713632011-10-23 09:18:45 +0000234 void buildCFGChains(MachineFunction &F);
Chandler Carruthdb350872011-10-21 06:46:38 +0000235
236public:
237 static char ID; // Pass identification, replacement for typeid
238 MachineBlockPlacement() : MachineFunctionPass(ID) {
239 initializeMachineBlockPlacementPass(*PassRegistry::getPassRegistry());
240 }
241
Stephen Hines36b56882014-04-23 16:57:46 -0700242 bool runOnMachineFunction(MachineFunction &F) override;
Chandler Carruthdb350872011-10-21 06:46:38 +0000243
Stephen Hines36b56882014-04-23 16:57:46 -0700244 void getAnalysisUsage(AnalysisUsage &AU) const override {
Chandler Carruthdb350872011-10-21 06:46:38 +0000245 AU.addRequired<MachineBranchProbabilityInfo>();
246 AU.addRequired<MachineBlockFrequencyInfo>();
Chandler Carruth4a85cc92011-10-21 08:57:37 +0000247 AU.addRequired<MachineLoopInfo>();
Chandler Carruthdb350872011-10-21 06:46:38 +0000248 MachineFunctionPass::getAnalysisUsage(AU);
249 }
Chandler Carruthdb350872011-10-21 06:46:38 +0000250};
251}
252
253char MachineBlockPlacement::ID = 0;
Andrew Trick1dd8c852012-02-08 21:23:13 +0000254char &llvm::MachineBlockPlacementID = MachineBlockPlacement::ID;
Chandler Carruthdb350872011-10-21 06:46:38 +0000255INITIALIZE_PASS_BEGIN(MachineBlockPlacement, "block-placement2",
256 "Branch Probability Basic Block Placement", false, false)
257INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo)
258INITIALIZE_PASS_DEPENDENCY(MachineBlockFrequencyInfo)
Chandler Carruth4a85cc92011-10-21 08:57:37 +0000259INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
Chandler Carruthdb350872011-10-21 06:46:38 +0000260INITIALIZE_PASS_END(MachineBlockPlacement, "block-placement2",
261 "Branch Probability Basic Block Placement", false, false)
262
Chandler Carruth30713632011-10-23 09:18:45 +0000263#ifndef NDEBUG
264/// \brief Helper to print the name of a MBB.
265///
266/// Only used by debug logging.
Jakub Staszakd4895de2011-12-21 23:02:08 +0000267static std::string getBlockName(MachineBasicBlock *BB) {
Chandler Carruth30713632011-10-23 09:18:45 +0000268 std::string Result;
269 raw_string_ostream OS(Result);
270 OS << "BB#" << BB->getNumber()
271 << " (derived from LLVM BB '" << BB->getName() << "')";
272 OS.flush();
273 return Result;
Chandler Carruthdb350872011-10-21 06:46:38 +0000274}
275
Chandler Carruth30713632011-10-23 09:18:45 +0000276/// \brief Helper to print the number of a MBB.
277///
278/// Only used by debug logging.
Jakub Staszakd4895de2011-12-21 23:02:08 +0000279static std::string getBlockNum(MachineBasicBlock *BB) {
Chandler Carruth30713632011-10-23 09:18:45 +0000280 std::string Result;
281 raw_string_ostream OS(Result);
282 OS << "BB#" << BB->getNumber();
283 OS.flush();
284 return Result;
285}
286#endif
287
Chandler Carruth729bec82011-11-13 11:34:55 +0000288/// \brief Mark a chain's successors as having one fewer preds.
289///
290/// When a chain is being merged into the "placed" chain, this routine will
291/// quickly walk the successors of each block in the chain and mark them as
292/// having one fewer active predecessor. It also adds any successors of this
293/// chain which reach the zero-predecessor state to the worklist passed in.
Chandler Carruthdf234352011-11-13 11:20:44 +0000294void MachineBlockPlacement::markChainSuccessors(
Jakub Staszakd4895de2011-12-21 23:02:08 +0000295 BlockChain &Chain,
296 MachineBasicBlock *LoopHeaderBB,
Chandler Carruthdf234352011-11-13 11:20:44 +0000297 SmallVectorImpl<MachineBasicBlock *> &BlockWorkList,
Jakub Staszakd4895de2011-12-21 23:02:08 +0000298 const BlockFilterSet *BlockFilter) {
Chandler Carruthdf234352011-11-13 11:20:44 +0000299 // Walk all the blocks in this chain, marking their successors as having
300 // a predecessor placed.
301 for (BlockChain::iterator CBI = Chain.begin(), CBE = Chain.end();
302 CBI != CBE; ++CBI) {
303 // Add any successors for which this is the only un-placed in-loop
304 // predecessor to the worklist as a viable candidate for CFG-neutral
305 // placement. No subsequent placement of this block will violate the CFG
306 // shape, so we get to use heuristics to choose a favorable placement.
307 for (MachineBasicBlock::succ_iterator SI = (*CBI)->succ_begin(),
308 SE = (*CBI)->succ_end();
309 SI != SE; ++SI) {
310 if (BlockFilter && !BlockFilter->count(*SI))
311 continue;
Jakub Staszakd4895de2011-12-21 23:02:08 +0000312 BlockChain &SuccChain = *BlockToChain[*SI];
Chandler Carruthdf234352011-11-13 11:20:44 +0000313 // Disregard edges within a fixed chain, or edges to the loop header.
314 if (&Chain == &SuccChain || *SI == LoopHeaderBB)
315 continue;
Chandler Carruthdb350872011-10-21 06:46:38 +0000316
Chandler Carruthdf234352011-11-13 11:20:44 +0000317 // This is a cross-chain edge that is within the loop, so decrement the
318 // loop predecessor count of the destination chain.
319 if (SuccChain.LoopPredecessors > 0 && --SuccChain.LoopPredecessors == 0)
Chandler Carrutha2deea12011-11-24 08:46:04 +0000320 BlockWorkList.push_back(*SuccChain.begin());
Chandler Carruthdb350872011-10-21 06:46:38 +0000321 }
322 }
Chandler Carruthdf234352011-11-13 11:20:44 +0000323}
Chandler Carruth30713632011-10-23 09:18:45 +0000324
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000325/// \brief Select the best successor for a block.
326///
327/// This looks across all successors of a particular block and attempts to
328/// select the "best" one to be the layout successor. It only considers direct
329/// successors which also pass the block filter. It will attempt to avoid
330/// breaking CFG structure, but cave and break such structures in the case of
331/// very hot successor edges.
332///
333/// \returns The best successor block found, or null if none are viable.
334MachineBasicBlock *MachineBlockPlacement::selectBestSuccessor(
Jakub Staszakd4895de2011-12-21 23:02:08 +0000335 MachineBasicBlock *BB, BlockChain &Chain,
336 const BlockFilterSet *BlockFilter) {
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000337 const BranchProbability HotProb(4, 5); // 80%
338
Stephen Hinesdce4a402014-05-29 02:49:00 -0700339 MachineBasicBlock *BestSucc = nullptr;
Chandler Carruth340d5962011-11-14 09:12:57 +0000340 // FIXME: Due to the performance of the probability and weight routines in
341 // the MBPI analysis, we manually compute probabilities using the edge
342 // weights. This is suboptimal as it means that the somewhat subtle
343 // definition of edge weight semantics is encoded here as well. We should
Benjamin Kramerd9b0b022012-06-02 10:20:22 +0000344 // improve the MBPI interface to efficiently support query patterns such as
Chandler Carruth340d5962011-11-14 09:12:57 +0000345 // this.
346 uint32_t BestWeight = 0;
347 uint32_t WeightScale = 0;
348 uint32_t SumWeight = MBPI->getSumForBlock(BB, WeightScale);
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000349 DEBUG(dbgs() << "Attempting merge from: " << getBlockName(BB) << "\n");
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700350 for (MachineBasicBlock *Succ : BB->successors()) {
351 if (BlockFilter && !BlockFilter->count(Succ))
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000352 continue;
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700353 BlockChain &SuccChain = *BlockToChain[Succ];
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000354 if (&SuccChain == &Chain) {
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700355 DEBUG(dbgs() << " " << getBlockName(Succ) << " -> Already merged!\n");
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000356 continue;
357 }
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700358 if (Succ != *SuccChain.begin()) {
359 DEBUG(dbgs() << " " << getBlockName(Succ) << " -> Mid chain!\n");
Chandler Carruth03300ec2011-11-19 10:26:02 +0000360 continue;
361 }
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000362
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700363 uint32_t SuccWeight = MBPI->getEdgeWeight(BB, Succ);
Chandler Carruth340d5962011-11-14 09:12:57 +0000364 BranchProbability SuccProb(SuccWeight / WeightScale, SumWeight);
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000365
366 // Only consider successors which are either "hot", or wouldn't violate
367 // any CFG constraints.
Chandler Carruthb0dadb92011-11-20 11:22:06 +0000368 if (SuccChain.LoopPredecessors != 0) {
369 if (SuccProb < HotProb) {
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700370 DEBUG(dbgs() << " " << getBlockName(Succ) << " -> " << SuccProb
Stephen Hines36b56882014-04-23 16:57:46 -0700371 << " (prob) (CFG conflict)\n");
Chandler Carruthb0dadb92011-11-20 11:22:06 +0000372 continue;
373 }
374
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700375 // Make sure that a hot successor doesn't have a globally more
376 // important predecessor.
377 BlockFrequency CandidateEdgeFreq =
378 MBFI->getBlockFreq(BB) * SuccProb * HotProb.getCompl();
Chandler Carruthb0dadb92011-11-20 11:22:06 +0000379 bool BadCFGConflict = false;
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700380 for (MachineBasicBlock *Pred : Succ->predecessors()) {
381 if (Pred == Succ || (BlockFilter && !BlockFilter->count(Pred)) ||
382 BlockToChain[Pred] == &Chain)
Chandler Carruthb0dadb92011-11-20 11:22:06 +0000383 continue;
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700384 BlockFrequency PredEdgeFreq =
385 MBFI->getBlockFreq(Pred) * MBPI->getEdgeProbability(Pred, Succ);
Chandler Carruthb0dadb92011-11-20 11:22:06 +0000386 if (PredEdgeFreq >= CandidateEdgeFreq) {
387 BadCFGConflict = true;
388 break;
389 }
390 }
391 if (BadCFGConflict) {
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700392 DEBUG(dbgs() << " " << getBlockName(Succ) << " -> " << SuccProb
Stephen Hines36b56882014-04-23 16:57:46 -0700393 << " (prob) (non-cold CFG conflict)\n");
Chandler Carruthb0dadb92011-11-20 11:22:06 +0000394 continue;
395 }
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000396 }
397
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700398 DEBUG(dbgs() << " " << getBlockName(Succ) << " -> " << SuccProb
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000399 << " (prob)"
400 << (SuccChain.LoopPredecessors != 0 ? " (CFG break)" : "")
401 << "\n");
Chandler Carruth340d5962011-11-14 09:12:57 +0000402 if (BestSucc && BestWeight >= SuccWeight)
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000403 continue;
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700404 BestSucc = Succ;
Chandler Carruth340d5962011-11-14 09:12:57 +0000405 BestWeight = SuccWeight;
Chandler Carruth9fd4e052011-11-13 11:34:53 +0000406 }
407 return BestSucc;
408}
409
Chandler Carruthf3fc0052011-11-13 11:42:26 +0000410/// \brief Select the best block from a worklist.
411///
412/// This looks through the provided worklist as a list of candidate basic
413/// blocks and select the most profitable one to place. The definition of
414/// profitable only really makes sense in the context of a loop. This returns
415/// the most frequently visited block in the worklist, which in the case of
416/// a loop, is the one most desirable to be physically close to the rest of the
417/// loop body in order to improve icache behavior.
418///
419/// \returns The best block found, or null if none are viable.
420MachineBasicBlock *MachineBlockPlacement::selectBestCandidateBlock(
Jakub Staszakd4895de2011-12-21 23:02:08 +0000421 BlockChain &Chain, SmallVectorImpl<MachineBasicBlock *> &WorkList,
422 const BlockFilterSet *BlockFilter) {
Chandler Carruthfa976582011-11-14 09:46:33 +0000423 // Once we need to walk the worklist looking for a candidate, cleanup the
424 // worklist of already placed entries.
425 // FIXME: If this shows up on profiles, it could be folded (at the cost of
426 // some code complexity) into the loop below.
427 WorkList.erase(std::remove_if(WorkList.begin(), WorkList.end(),
Stephen Hines36b56882014-04-23 16:57:46 -0700428 [&](MachineBasicBlock *BB) {
429 return BlockToChain.lookup(BB) == &Chain;
430 }),
Chandler Carruthfa976582011-11-14 09:46:33 +0000431 WorkList.end());
432
Stephen Hinesdce4a402014-05-29 02:49:00 -0700433 MachineBasicBlock *BestBlock = nullptr;
Chandler Carruthf3fc0052011-11-13 11:42:26 +0000434 BlockFrequency BestFreq;
435 for (SmallVectorImpl<MachineBasicBlock *>::iterator WBI = WorkList.begin(),
436 WBE = WorkList.end();
437 WBI != WBE; ++WBI) {
Jakub Staszakd4895de2011-12-21 23:02:08 +0000438 BlockChain &SuccChain = *BlockToChain[*WBI];
Chandler Carruthf3fc0052011-11-13 11:42:26 +0000439 if (&SuccChain == &Chain) {
440 DEBUG(dbgs() << " " << getBlockName(*WBI)
441 << " -> Already merged!\n");
442 continue;
443 }
444 assert(SuccChain.LoopPredecessors == 0 && "Found CFG-violating block");
445
446 BlockFrequency CandidateFreq = MBFI->getBlockFreq(*WBI);
Stephen Hines36b56882014-04-23 16:57:46 -0700447 DEBUG(dbgs() << " " << getBlockName(*WBI) << " -> ";
448 MBFI->printBlockFreq(dbgs(), CandidateFreq) << " (freq)\n");
Chandler Carruthf3fc0052011-11-13 11:42:26 +0000449 if (BestBlock && BestFreq >= CandidateFreq)
450 continue;
451 BestBlock = *WBI;
452 BestFreq = CandidateFreq;
453 }
454 return BestBlock;
455}
456
Chandler Carruthb5856c82011-11-14 00:00:35 +0000457/// \brief Retrieve the first unplaced basic block.
458///
459/// This routine is called when we are unable to use the CFG to walk through
460/// all of the basic blocks and form a chain due to unnatural loops in the CFG.
Chandler Carruth3273c892011-11-15 06:26:43 +0000461/// We walk through the function's blocks in order, starting from the
462/// LastUnplacedBlockIt. We update this iterator on each call to avoid
463/// re-scanning the entire sequence on repeated calls to this routine.
Chandler Carruthb5856c82011-11-14 00:00:35 +0000464MachineBasicBlock *MachineBlockPlacement::getFirstUnplacedBlock(
Chandler Carruth3273c892011-11-15 06:26:43 +0000465 MachineFunction &F, const BlockChain &PlacedChain,
466 MachineFunction::iterator &PrevUnplacedBlockIt,
Jakub Staszakd4895de2011-12-21 23:02:08 +0000467 const BlockFilterSet *BlockFilter) {
Chandler Carruth3273c892011-11-15 06:26:43 +0000468 for (MachineFunction::iterator I = PrevUnplacedBlockIt, E = F.end(); I != E;
469 ++I) {
470 if (BlockFilter && !BlockFilter->count(I))
471 continue;
Jakub Staszakd4895de2011-12-21 23:02:08 +0000472 if (BlockToChain[I] != &PlacedChain) {
Chandler Carruth3273c892011-11-15 06:26:43 +0000473 PrevUnplacedBlockIt = I;
Chandler Carruth47fb9542011-11-23 03:03:21 +0000474 // Now select the head of the chain to which the unplaced block belongs
475 // as the block to place. This will force the entire chain to be placed,
476 // and satisfies the requirements of merging chains.
Jakub Staszakd4895de2011-12-21 23:02:08 +0000477 return *BlockToChain[I]->begin();
Chandler Carruthb5856c82011-11-14 00:00:35 +0000478 }
479 }
Stephen Hinesdce4a402014-05-29 02:49:00 -0700480 return nullptr;
Chandler Carruthb5856c82011-11-14 00:00:35 +0000481}
482
Chandler Carruthdf234352011-11-13 11:20:44 +0000483void MachineBlockPlacement::buildChain(
484 MachineBasicBlock *BB,
485 BlockChain &Chain,
486 SmallVectorImpl<MachineBasicBlock *> &BlockWorkList,
Jakub Staszakd4895de2011-12-21 23:02:08 +0000487 const BlockFilterSet *BlockFilter) {
Chandler Carruthdf234352011-11-13 11:20:44 +0000488 assert(BB);
Jakub Staszakd4895de2011-12-21 23:02:08 +0000489 assert(BlockToChain[BB] == &Chain);
Chandler Carruth3273c892011-11-15 06:26:43 +0000490 MachineFunction &F = *BB->getParent();
491 MachineFunction::iterator PrevUnplacedBlockIt = F.begin();
Chandler Carruthb5856c82011-11-14 00:00:35 +0000492
Chandler Carruthdf234352011-11-13 11:20:44 +0000493 MachineBasicBlock *LoopHeaderBB = BB;
494 markChainSuccessors(Chain, LoopHeaderBB, BlockWorkList, BlockFilter);
Stephen Hines36b56882014-04-23 16:57:46 -0700495 BB = *std::prev(Chain.end());
Chandler Carruthdf234352011-11-13 11:20:44 +0000496 for (;;) {
497 assert(BB);
Jakub Staszakd4895de2011-12-21 23:02:08 +0000498 assert(BlockToChain[BB] == &Chain);
Stephen Hines36b56882014-04-23 16:57:46 -0700499 assert(*std::prev(Chain.end()) == BB);
Chandler Carruth30713632011-10-23 09:18:45 +0000500
Chandler Carruth03300ec2011-11-19 10:26:02 +0000501 // Look for the best viable successor if there is one to place immediately
502 // after this block.
Duncan Sands74b47622012-09-14 09:00:11 +0000503 MachineBasicBlock *BestSucc = selectBestSuccessor(BB, Chain, BlockFilter);
Chandler Carruthdf234352011-11-13 11:20:44 +0000504
505 // If an immediate successor isn't available, look for the best viable
506 // block among those we've identified as not violating the loop's CFG at
507 // this point. This won't be a fallthrough, but it will increase locality.
Chandler Carruthf3fc0052011-11-13 11:42:26 +0000508 if (!BestSucc)
509 BestSucc = selectBestCandidateBlock(Chain, BlockWorkList, BlockFilter);
Chandler Carruthdf234352011-11-13 11:20:44 +0000510
Chandler Carruthdf234352011-11-13 11:20:44 +0000511 if (!BestSucc) {
Chandler Carruth3273c892011-11-15 06:26:43 +0000512 BestSucc = getFirstUnplacedBlock(F, Chain, PrevUnplacedBlockIt,
513 BlockFilter);
Chandler Carruthb5856c82011-11-14 00:00:35 +0000514 if (!BestSucc)
515 break;
516
517 DEBUG(dbgs() << "Unnatural loop CFG detected, forcibly merging the "
518 "layout successor until the CFG reduces\n");
Chandler Carruthdf234352011-11-13 11:20:44 +0000519 }
Chandler Carruth30713632011-10-23 09:18:45 +0000520
Chandler Carruthdf234352011-11-13 11:20:44 +0000521 // Place this block, updating the datastructures to reflect its placement.
Jakub Staszakd4895de2011-12-21 23:02:08 +0000522 BlockChain &SuccChain = *BlockToChain[BestSucc];
Chandler Carruthb5856c82011-11-14 00:00:35 +0000523 // Zero out LoopPredecessors for the successor we're about to merge in case
524 // we selected a successor that didn't fit naturally into the CFG.
525 SuccChain.LoopPredecessors = 0;
Chandler Carruthdf234352011-11-13 11:20:44 +0000526 DEBUG(dbgs() << "Merging from " << getBlockNum(BB)
527 << " to " << getBlockNum(BestSucc) << "\n");
528 markChainSuccessors(SuccChain, LoopHeaderBB, BlockWorkList, BlockFilter);
529 Chain.merge(BestSucc, &SuccChain);
Stephen Hines36b56882014-04-23 16:57:46 -0700530 BB = *std::prev(Chain.end());
Jakub Staszakfeb468a2011-12-07 19:46:10 +0000531 }
Chandler Carruthb5856c82011-11-14 00:00:35 +0000532
533 DEBUG(dbgs() << "Finished forming chain for header block "
534 << getBlockNum(*Chain.begin()) << "\n");
Chandler Carruthdb350872011-10-21 06:46:38 +0000535}
536
Chandler Carruthfac13052011-11-27 13:34:33 +0000537/// \brief Find the best loop top block for layout.
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000538///
Chandler Carruthe773e8c2012-04-16 13:33:36 +0000539/// Look for a block which is strictly better than the loop header for laying
540/// out at the top of the loop. This looks for one and only one pattern:
541/// a latch block with no conditional exit. This block will cause a conditional
542/// jump around it or will be the bottom of the loop if we lay it out in place,
543/// but if it it doesn't end up at the bottom of the loop for any reason,
544/// rotation alone won't fix it. Because such a block will always result in an
545/// unconditional jump (for the backedge) rotating it in front of the loop
546/// header is always profitable.
547MachineBasicBlock *
548MachineBlockPlacement::findBestLoopTop(MachineLoop &L,
549 const BlockFilterSet &LoopBlockSet) {
550 // Check that the header hasn't been fused with a preheader block due to
551 // crazy branches. If it has, we need to start with the header at the top to
552 // prevent pulling the preheader into the loop body.
553 BlockChain &HeaderChain = *BlockToChain[L.getHeader()];
554 if (!LoopBlockSet.count(*HeaderChain.begin()))
555 return L.getHeader();
556
557 DEBUG(dbgs() << "Finding best loop top for: "
558 << getBlockName(L.getHeader()) << "\n");
559
560 BlockFrequency BestPredFreq;
Stephen Hinesdce4a402014-05-29 02:49:00 -0700561 MachineBasicBlock *BestPred = nullptr;
Chandler Carruthe773e8c2012-04-16 13:33:36 +0000562 for (MachineBasicBlock::pred_iterator PI = L.getHeader()->pred_begin(),
563 PE = L.getHeader()->pred_end();
564 PI != PE; ++PI) {
565 MachineBasicBlock *Pred = *PI;
566 if (!LoopBlockSet.count(Pred))
567 continue;
568 DEBUG(dbgs() << " header pred: " << getBlockName(Pred) << ", "
Stephen Hines36b56882014-04-23 16:57:46 -0700569 << Pred->succ_size() << " successors, ";
570 MBFI->printBlockFreq(dbgs(), Pred) << " freq\n");
Chandler Carruthe773e8c2012-04-16 13:33:36 +0000571 if (Pred->succ_size() > 1)
572 continue;
573
574 BlockFrequency PredFreq = MBFI->getBlockFreq(Pred);
575 if (!BestPred || PredFreq > BestPredFreq ||
576 (!(PredFreq < BestPredFreq) &&
577 Pred->isLayoutSuccessor(L.getHeader()))) {
578 BestPred = Pred;
579 BestPredFreq = PredFreq;
580 }
581 }
582
583 // If no direct predecessor is fine, just use the loop header.
584 if (!BestPred)
585 return L.getHeader();
586
587 // Walk backwards through any straight line of predecessors.
588 while (BestPred->pred_size() == 1 &&
589 (*BestPred->pred_begin())->succ_size() == 1 &&
590 *BestPred->pred_begin() != L.getHeader())
591 BestPred = *BestPred->pred_begin();
592
593 DEBUG(dbgs() << " final top: " << getBlockName(BestPred) << "\n");
594 return BestPred;
595}
596
597
598/// \brief Find the best loop exiting block for layout.
599///
Chandler Carruthfac13052011-11-27 13:34:33 +0000600/// This routine implements the logic to analyze the loop looking for the best
601/// block to layout at the top of the loop. Typically this is done to maximize
602/// fallthrough opportunities.
603MachineBasicBlock *
Chandler Carruth70daea92012-04-16 01:12:56 +0000604MachineBlockPlacement::findBestLoopExit(MachineFunction &F,
605 MachineLoop &L,
606 const BlockFilterSet &LoopBlockSet) {
Chandler Carruth45fb79b2012-04-10 13:35:57 +0000607 // We don't want to layout the loop linearly in all cases. If the loop header
608 // is just a normal basic block in the loop, we want to look for what block
609 // within the loop is the best one to layout at the top. However, if the loop
610 // header has be pre-merged into a chain due to predecessors not having
611 // analyzable branches, *and* the predecessor it is merged with is *not* part
612 // of the loop, rotating the header into the middle of the loop will create
613 // a non-contiguous range of blocks which is Very Bad. So start with the
614 // header and only rotate if safe.
615 BlockChain &HeaderChain = *BlockToChain[L.getHeader()];
616 if (!LoopBlockSet.count(*HeaderChain.begin()))
Stephen Hinesdce4a402014-05-29 02:49:00 -0700617 return nullptr;
Chandler Carruth45fb79b2012-04-10 13:35:57 +0000618
Chandler Carruthfac13052011-11-27 13:34:33 +0000619 BlockFrequency BestExitEdgeFreq;
Chandler Carruth70daea92012-04-16 01:12:56 +0000620 unsigned BestExitLoopDepth = 0;
Stephen Hinesdce4a402014-05-29 02:49:00 -0700621 MachineBasicBlock *ExitingBB = nullptr;
Chandler Carruth51901d82011-11-27 20:18:00 +0000622 // If there are exits to outer loops, loop rotation can severely limit
623 // fallthrough opportunites unless it selects such an exit. Keep a set of
624 // blocks where rotating to exit with that block will reach an outer loop.
625 SmallPtrSet<MachineBasicBlock *, 4> BlocksExitingToOuterLoop;
626
Chandler Carruthfac13052011-11-27 13:34:33 +0000627 DEBUG(dbgs() << "Finding best loop exit for: "
628 << getBlockName(L.getHeader()) << "\n");
629 for (MachineLoop::block_iterator I = L.block_begin(),
630 E = L.block_end();
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000631 I != E; ++I) {
Jakub Staszakd4895de2011-12-21 23:02:08 +0000632 BlockChain &Chain = *BlockToChain[*I];
Chandler Carruthfac13052011-11-27 13:34:33 +0000633 // Ensure that this block is at the end of a chain; otherwise it could be
634 // mid-way through an inner loop or a successor of an analyzable branch.
Stephen Hines36b56882014-04-23 16:57:46 -0700635 if (*I != *std::prev(Chain.end()))
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000636 continue;
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000637
Chandler Carruthfac13052011-11-27 13:34:33 +0000638 // Now walk the successors. We need to establish whether this has a viable
639 // exiting successor and whether it has a viable non-exiting successor.
640 // We store the old exiting state and restore it if a viable looping
641 // successor isn't found.
642 MachineBasicBlock *OldExitingBB = ExitingBB;
643 BlockFrequency OldBestExitEdgeFreq = BestExitEdgeFreq;
Chandler Carruth70daea92012-04-16 01:12:56 +0000644 bool HasLoopingSucc = false;
Chandler Carruthfac13052011-11-27 13:34:33 +0000645 // FIXME: Due to the performance of the probability and weight routines in
Chandler Carruth70daea92012-04-16 01:12:56 +0000646 // the MBPI analysis, we use the internal weights and manually compute the
647 // probabilities to avoid quadratic behavior.
Chandler Carruthfac13052011-11-27 13:34:33 +0000648 uint32_t WeightScale = 0;
649 uint32_t SumWeight = MBPI->getSumForBlock(*I, WeightScale);
650 for (MachineBasicBlock::succ_iterator SI = (*I)->succ_begin(),
651 SE = (*I)->succ_end();
Chandler Carruth2eb5a742011-11-27 09:22:53 +0000652 SI != SE; ++SI) {
Chandler Carruthfac13052011-11-27 13:34:33 +0000653 if ((*SI)->isLandingPad())
654 continue;
655 if (*SI == *I)
656 continue;
Jakub Staszakd4895de2011-12-21 23:02:08 +0000657 BlockChain &SuccChain = *BlockToChain[*SI];
Chandler Carruthfac13052011-11-27 13:34:33 +0000658 // Don't split chains, either this chain or the successor's chain.
Chandler Carruth70daea92012-04-16 01:12:56 +0000659 if (&Chain == &SuccChain) {
660 DEBUG(dbgs() << " exiting: " << getBlockName(*I) << " -> "
Chandler Carruthfac13052011-11-27 13:34:33 +0000661 << getBlockName(*SI) << " (chain conflict)\n");
662 continue;
663 }
664
665 uint32_t SuccWeight = MBPI->getEdgeWeight(*I, *SI);
666 if (LoopBlockSet.count(*SI)) {
667 DEBUG(dbgs() << " looping: " << getBlockName(*I) << " -> "
668 << getBlockName(*SI) << " (" << SuccWeight << ")\n");
Chandler Carruth70daea92012-04-16 01:12:56 +0000669 HasLoopingSucc = true;
Chandler Carruthfac13052011-11-27 13:34:33 +0000670 continue;
671 }
672
Chandler Carruth70daea92012-04-16 01:12:56 +0000673 unsigned SuccLoopDepth = 0;
674 if (MachineLoop *ExitLoop = MLI->getLoopFor(*SI)) {
675 SuccLoopDepth = ExitLoop->getLoopDepth();
676 if (ExitLoop->contains(&L))
677 BlocksExitingToOuterLoop.insert(*I);
678 }
679
Chandler Carruthfac13052011-11-27 13:34:33 +0000680 BranchProbability SuccProb(SuccWeight / WeightScale, SumWeight);
681 BlockFrequency ExitEdgeFreq = MBFI->getBlockFreq(*I) * SuccProb;
682 DEBUG(dbgs() << " exiting: " << getBlockName(*I) << " -> "
Chandler Carruth70daea92012-04-16 01:12:56 +0000683 << getBlockName(*SI) << " [L:" << SuccLoopDepth
Stephen Hines36b56882014-04-23 16:57:46 -0700684 << "] (";
685 MBFI->printBlockFreq(dbgs(), ExitEdgeFreq) << ")\n");
686 // Note that we bias this toward an existing layout successor to retain
687 // incoming order in the absence of better information. The exit must have
688 // a frequency higher than the current exit before we consider breaking
689 // the layout.
690 BranchProbability Bias(100 - ExitBlockBias, 100);
Chandler Carruth70daea92012-04-16 01:12:56 +0000691 if (!ExitingBB || BestExitLoopDepth < SuccLoopDepth ||
692 ExitEdgeFreq > BestExitEdgeFreq ||
Chandler Carruthfac13052011-11-27 13:34:33 +0000693 ((*I)->isLayoutSuccessor(*SI) &&
Stephen Hines36b56882014-04-23 16:57:46 -0700694 !(ExitEdgeFreq < BestExitEdgeFreq * Bias))) {
Chandler Carruthfac13052011-11-27 13:34:33 +0000695 BestExitEdgeFreq = ExitEdgeFreq;
696 ExitingBB = *I;
Chandler Carruth2eb5a742011-11-27 09:22:53 +0000697 }
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000698 }
Chandler Carruthfac13052011-11-27 13:34:33 +0000699
700 // Restore the old exiting state, no viable looping successor was found.
Chandler Carruth70daea92012-04-16 01:12:56 +0000701 if (!HasLoopingSucc) {
Chandler Carruthfac13052011-11-27 13:34:33 +0000702 ExitingBB = OldExitingBB;
703 BestExitEdgeFreq = OldBestExitEdgeFreq;
Chandler Carruth2eb5a742011-11-27 09:22:53 +0000704 continue;
Chandler Carruthfac13052011-11-27 13:34:33 +0000705 }
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000706 }
Chandler Carruth70daea92012-04-16 01:12:56 +0000707 // Without a candidate exiting block or with only a single block in the
Chandler Carruthfac13052011-11-27 13:34:33 +0000708 // loop, just use the loop header to layout the loop.
709 if (!ExitingBB || L.getNumBlocks() == 1)
Stephen Hinesdce4a402014-05-29 02:49:00 -0700710 return nullptr;
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000711
Chandler Carruth51901d82011-11-27 20:18:00 +0000712 // Also, if we have exit blocks which lead to outer loops but didn't select
713 // one of them as the exiting block we are rotating toward, disable loop
714 // rotation altogether.
715 if (!BlocksExitingToOuterLoop.empty() &&
716 !BlocksExitingToOuterLoop.count(ExitingBB))
Stephen Hinesdce4a402014-05-29 02:49:00 -0700717 return nullptr;
Chandler Carruth51901d82011-11-27 20:18:00 +0000718
Chandler Carruthfac13052011-11-27 13:34:33 +0000719 DEBUG(dbgs() << " Best exiting block: " << getBlockName(ExitingBB) << "\n");
Chandler Carruth70daea92012-04-16 01:12:56 +0000720 return ExitingBB;
Chandler Carruth2e38cf92011-11-27 00:38:03 +0000721}
722
Chandler Carruth16295fc2012-04-16 09:31:23 +0000723/// \brief Attempt to rotate an exiting block to the bottom of the loop.
724///
725/// Once we have built a chain, try to rotate it to line up the hot exit block
726/// with fallthrough out of the loop if doing so doesn't introduce unnecessary
727/// branches. For example, if the loop has fallthrough into its header and out
728/// of its bottom already, don't rotate it.
729void MachineBlockPlacement::rotateLoop(BlockChain &LoopChain,
730 MachineBasicBlock *ExitingBB,
731 const BlockFilterSet &LoopBlockSet) {
732 if (!ExitingBB)
733 return;
734
735 MachineBasicBlock *Top = *LoopChain.begin();
736 bool ViableTopFallthrough = false;
737 for (MachineBasicBlock::pred_iterator PI = Top->pred_begin(),
738 PE = Top->pred_end();
739 PI != PE; ++PI) {
740 BlockChain *PredChain = BlockToChain[*PI];
741 if (!LoopBlockSet.count(*PI) &&
Stephen Hines36b56882014-04-23 16:57:46 -0700742 (!PredChain || *PI == *std::prev(PredChain->end()))) {
Chandler Carruth16295fc2012-04-16 09:31:23 +0000743 ViableTopFallthrough = true;
744 break;
745 }
746 }
747
748 // If the header has viable fallthrough, check whether the current loop
749 // bottom is a viable exiting block. If so, bail out as rotating will
750 // introduce an unnecessary branch.
751 if (ViableTopFallthrough) {
Stephen Hines36b56882014-04-23 16:57:46 -0700752 MachineBasicBlock *Bottom = *std::prev(LoopChain.end());
Chandler Carruth16295fc2012-04-16 09:31:23 +0000753 for (MachineBasicBlock::succ_iterator SI = Bottom->succ_begin(),
754 SE = Bottom->succ_end();
755 SI != SE; ++SI) {
756 BlockChain *SuccChain = BlockToChain[*SI];
757 if (!LoopBlockSet.count(*SI) &&
758 (!SuccChain || *SI == *SuccChain->begin()))
759 return;
760 }
761 }
762
763 BlockChain::iterator ExitIt = std::find(LoopChain.begin(), LoopChain.end(),
764 ExitingBB);
765 if (ExitIt == LoopChain.end())
766 return;
767
Stephen Hines36b56882014-04-23 16:57:46 -0700768 std::rotate(LoopChain.begin(), std::next(ExitIt), LoopChain.end());
Chandler Carruth16295fc2012-04-16 09:31:23 +0000769}
770
Chandler Carruth30713632011-10-23 09:18:45 +0000771/// \brief Forms basic block chains from the natural loop structures.
Chandler Carruthdb350872011-10-21 06:46:38 +0000772///
Chandler Carruth30713632011-10-23 09:18:45 +0000773/// These chains are designed to preserve the existing *structure* of the code
774/// as much as possible. We can then stitch the chains together in a way which
775/// both preserves the topological structure and minimizes taken conditional
776/// branches.
Chandler Carruthdf234352011-11-13 11:20:44 +0000777void MachineBlockPlacement::buildLoopChains(MachineFunction &F,
Jakub Staszakd4895de2011-12-21 23:02:08 +0000778 MachineLoop &L) {
Chandler Carruth30713632011-10-23 09:18:45 +0000779 // First recurse through any nested loops, building chains for those inner
780 // loops.
781 for (MachineLoop::iterator LI = L.begin(), LE = L.end(); LI != LE; ++LI)
782 buildLoopChains(F, **LI);
Chandler Carruthdb350872011-10-21 06:46:38 +0000783
Chandler Carruthdf234352011-11-13 11:20:44 +0000784 SmallVector<MachineBasicBlock *, 16> BlockWorkList;
785 BlockFilterSet LoopBlockSet(L.block_begin(), L.block_end());
Chandler Carruthfac13052011-11-27 13:34:33 +0000786
Chandler Carruthe773e8c2012-04-16 13:33:36 +0000787 // First check to see if there is an obviously preferable top block for the
788 // loop. This will default to the header, but may end up as one of the
789 // predecessors to the header if there is one which will result in strictly
790 // fewer branches in the loop body.
791 MachineBasicBlock *LoopTop = findBestLoopTop(L, LoopBlockSet);
792
793 // If we selected just the header for the loop top, look for a potentially
794 // profitable exit block in the event that rotating the loop can eliminate
795 // branches by placing an exit edge at the bottom.
Stephen Hinesdce4a402014-05-29 02:49:00 -0700796 MachineBasicBlock *ExitingBB = nullptr;
Chandler Carruthe773e8c2012-04-16 13:33:36 +0000797 if (LoopTop == L.getHeader())
798 ExitingBB = findBestLoopExit(F, L, LoopBlockSet);
799
800 BlockChain &LoopChain = *BlockToChain[LoopTop];
Chandler Carruthdb350872011-10-21 06:46:38 +0000801
Chandler Carruthdf234352011-11-13 11:20:44 +0000802 // FIXME: This is a really lame way of walking the chains in the loop: we
803 // walk the blocks, and use a set to prevent visiting a particular chain
804 // twice.
Jakub Staszakd4895de2011-12-21 23:02:08 +0000805 SmallPtrSet<BlockChain *, 4> UpdatedPreds;
Jakub Staszakfeb468a2011-12-07 19:46:10 +0000806 assert(LoopChain.LoopPredecessors == 0);
807 UpdatedPreds.insert(&LoopChain);
Chandler Carruthdf234352011-11-13 11:20:44 +0000808 for (MachineLoop::block_iterator BI = L.block_begin(),
809 BE = L.block_end();
Chandler Carruth30713632011-10-23 09:18:45 +0000810 BI != BE; ++BI) {
Jakub Staszakd4895de2011-12-21 23:02:08 +0000811 BlockChain &Chain = *BlockToChain[*BI];
Stephen Hines37ed9c12014-12-01 14:51:49 -0800812 if (!UpdatedPreds.insert(&Chain).second)
Chandler Carruthdf234352011-11-13 11:20:44 +0000813 continue;
814
815 assert(Chain.LoopPredecessors == 0);
816 for (BlockChain::iterator BCI = Chain.begin(), BCE = Chain.end();
817 BCI != BCE; ++BCI) {
Jakub Staszakd4895de2011-12-21 23:02:08 +0000818 assert(BlockToChain[*BCI] == &Chain);
Chandler Carruthdf234352011-11-13 11:20:44 +0000819 for (MachineBasicBlock::pred_iterator PI = (*BCI)->pred_begin(),
820 PE = (*BCI)->pred_end();
821 PI != PE; ++PI) {
Jakub Staszakd4895de2011-12-21 23:02:08 +0000822 if (BlockToChain[*PI] == &Chain || !LoopBlockSet.count(*PI))
Chandler Carruthdf234352011-11-13 11:20:44 +0000823 continue;
824 ++Chain.LoopPredecessors;
825 }
826 }
827
828 if (Chain.LoopPredecessors == 0)
Chandler Carrutha2deea12011-11-24 08:46:04 +0000829 BlockWorkList.push_back(*Chain.begin());
Chandler Carruthdb350872011-10-21 06:46:38 +0000830 }
Chandler Carruthdf234352011-11-13 11:20:44 +0000831
Chandler Carruthe773e8c2012-04-16 13:33:36 +0000832 buildChain(LoopTop, LoopChain, BlockWorkList, &LoopBlockSet);
Chandler Carruth16295fc2012-04-16 09:31:23 +0000833 rotateLoop(LoopChain, ExitingBB, LoopBlockSet);
Chandler Carruthdf234352011-11-13 11:20:44 +0000834
835 DEBUG({
Chandler Carruth10252db2011-11-13 21:39:51 +0000836 // Crash at the end so we get all of the debugging output first.
837 bool BadLoop = false;
838 if (LoopChain.LoopPredecessors) {
839 BadLoop = true;
Chandler Carruthdf234352011-11-13 11:20:44 +0000840 dbgs() << "Loop chain contains a block without its preds placed!\n"
841 << " Loop header: " << getBlockName(*L.block_begin()) << "\n"
842 << " Chain header: " << getBlockName(*LoopChain.begin()) << "\n";
Chandler Carruth10252db2011-11-13 21:39:51 +0000843 }
Chandler Carruthdf234352011-11-13 11:20:44 +0000844 for (BlockChain::iterator BCI = LoopChain.begin(), BCE = LoopChain.end();
Chandler Carruth70daea92012-04-16 01:12:56 +0000845 BCI != BCE; ++BCI) {
846 dbgs() << " ... " << getBlockName(*BCI) << "\n";
Chandler Carruth10252db2011-11-13 21:39:51 +0000847 if (!LoopBlockSet.erase(*BCI)) {
Chandler Carruthbc83fcd2011-11-14 10:55:53 +0000848 // We don't mark the loop as bad here because there are real situations
849 // where this can occur. For example, with an unanalyzable fallthrough
Chandler Carruth598894f2011-11-23 10:35:36 +0000850 // from a loop block to a non-loop block or vice versa.
Chandler Carruthdf234352011-11-13 11:20:44 +0000851 dbgs() << "Loop chain contains a block not contained by the loop!\n"
852 << " Loop header: " << getBlockName(*L.block_begin()) << "\n"
853 << " Chain header: " << getBlockName(*LoopChain.begin()) << "\n"
854 << " Bad block: " << getBlockName(*BCI) << "\n";
Chandler Carruth10252db2011-11-13 21:39:51 +0000855 }
Chandler Carruth70daea92012-04-16 01:12:56 +0000856 }
Chandler Carruthdf234352011-11-13 11:20:44 +0000857
Chandler Carruth10252db2011-11-13 21:39:51 +0000858 if (!LoopBlockSet.empty()) {
859 BadLoop = true;
Chandler Carruthc0f05b32011-11-13 22:50:09 +0000860 for (BlockFilterSet::iterator LBI = LoopBlockSet.begin(),
861 LBE = LoopBlockSet.end();
Chandler Carruthdf234352011-11-13 11:20:44 +0000862 LBI != LBE; ++LBI)
863 dbgs() << "Loop contains blocks never placed into a chain!\n"
864 << " Loop header: " << getBlockName(*L.block_begin()) << "\n"
865 << " Chain header: " << getBlockName(*LoopChain.begin()) << "\n"
866 << " Bad block: " << getBlockName(*LBI) << "\n";
Chandler Carruth10252db2011-11-13 21:39:51 +0000867 }
868 assert(!BadLoop && "Detected problems with the placement of this loop.");
Chandler Carruthdf234352011-11-13 11:20:44 +0000869 });
Chandler Carruthdb350872011-10-21 06:46:38 +0000870}
871
Chandler Carruth30713632011-10-23 09:18:45 +0000872void MachineBlockPlacement::buildCFGChains(MachineFunction &F) {
Chandler Carruthdf234352011-11-13 11:20:44 +0000873 // Ensure that every BB in the function has an associated chain to simplify
874 // the assumptions of the remaining algorithm.
Chandler Carruth03300ec2011-11-19 10:26:02 +0000875 SmallVector<MachineOperand, 4> Cond; // For AnalyzeBranch.
876 for (MachineFunction::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI) {
877 MachineBasicBlock *BB = FI;
Chandler Carruth4aae4f92011-11-24 11:23:15 +0000878 BlockChain *Chain
879 = new (ChainAllocator.Allocate()) BlockChain(BlockToChain, BB);
Chandler Carruth03300ec2011-11-19 10:26:02 +0000880 // Also, merge any blocks which we cannot reason about and must preserve
881 // the exact fallthrough behavior for.
882 for (;;) {
883 Cond.clear();
Stephen Hinesdce4a402014-05-29 02:49:00 -0700884 MachineBasicBlock *TBB = nullptr, *FBB = nullptr; // For AnalyzeBranch.
Chandler Carruth03300ec2011-11-19 10:26:02 +0000885 if (!TII->AnalyzeBranch(*BB, TBB, FBB, Cond) || !FI->canFallThrough())
886 break;
887
Stephen Hines36b56882014-04-23 16:57:46 -0700888 MachineFunction::iterator NextFI(std::next(FI));
Chandler Carruth03300ec2011-11-19 10:26:02 +0000889 MachineBasicBlock *NextBB = NextFI;
890 // Ensure that the layout successor is a viable block, as we know that
891 // fallthrough is a possibility.
892 assert(NextFI != FE && "Can't fallthrough past the last block.");
893 DEBUG(dbgs() << "Pre-merging due to unanalyzable fallthrough: "
894 << getBlockName(BB) << " -> " << getBlockName(NextBB)
895 << "\n");
Stephen Hinesdce4a402014-05-29 02:49:00 -0700896 Chain->merge(NextBB, nullptr);
Chandler Carruth03300ec2011-11-19 10:26:02 +0000897 FI = NextFI;
898 BB = NextBB;
899 }
900 }
Chandler Carruthdf234352011-11-13 11:20:44 +0000901
902 // Build any loop-based chains.
Chandler Carruth30713632011-10-23 09:18:45 +0000903 for (MachineLoopInfo::iterator LI = MLI->begin(), LE = MLI->end(); LI != LE;
904 ++LI)
905 buildLoopChains(F, **LI);
906
Chandler Carruthdf234352011-11-13 11:20:44 +0000907 SmallVector<MachineBasicBlock *, 16> BlockWorkList;
Chandler Carruth30713632011-10-23 09:18:45 +0000908
Chandler Carruthdf234352011-11-13 11:20:44 +0000909 SmallPtrSet<BlockChain *, 4> UpdatedPreds;
Chandler Carruthdb350872011-10-21 06:46:38 +0000910 for (MachineFunction::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI) {
Chandler Carruthdf234352011-11-13 11:20:44 +0000911 MachineBasicBlock *BB = &*FI;
912 BlockChain &Chain = *BlockToChain[BB];
Stephen Hines37ed9c12014-12-01 14:51:49 -0800913 if (!UpdatedPreds.insert(&Chain).second)
Chandler Carruthdf234352011-11-13 11:20:44 +0000914 continue;
915
916 assert(Chain.LoopPredecessors == 0);
917 for (BlockChain::iterator BCI = Chain.begin(), BCE = Chain.end();
918 BCI != BCE; ++BCI) {
919 assert(BlockToChain[*BCI] == &Chain);
920 for (MachineBasicBlock::pred_iterator PI = (*BCI)->pred_begin(),
921 PE = (*BCI)->pred_end();
922 PI != PE; ++PI) {
923 if (BlockToChain[*PI] == &Chain)
924 continue;
925 ++Chain.LoopPredecessors;
926 }
927 }
928
929 if (Chain.LoopPredecessors == 0)
Chandler Carrutha2deea12011-11-24 08:46:04 +0000930 BlockWorkList.push_back(*Chain.begin());
Chandler Carruthdf234352011-11-13 11:20:44 +0000931 }
932
933 BlockChain &FunctionChain = *BlockToChain[&F.front()];
Chandler Carruth3273c892011-11-15 06:26:43 +0000934 buildChain(&F.front(), FunctionChain, BlockWorkList);
Chandler Carruthdf234352011-11-13 11:20:44 +0000935
Stephen Hines36b56882014-04-23 16:57:46 -0700936#ifndef NDEBUG
Chandler Carruthdf234352011-11-13 11:20:44 +0000937 typedef SmallPtrSet<MachineBasicBlock *, 16> FunctionBlockSetType;
Stephen Hines36b56882014-04-23 16:57:46 -0700938#endif
Chandler Carruthdf234352011-11-13 11:20:44 +0000939 DEBUG({
Chandler Carruth10252db2011-11-13 21:39:51 +0000940 // Crash at the end so we get all of the debugging output first.
941 bool BadFunc = false;
Chandler Carruthdf234352011-11-13 11:20:44 +0000942 FunctionBlockSetType FunctionBlockSet;
943 for (MachineFunction::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI)
944 FunctionBlockSet.insert(FI);
945
Chandler Carruthc0f05b32011-11-13 22:50:09 +0000946 for (BlockChain::iterator BCI = FunctionChain.begin(),
947 BCE = FunctionChain.end();
Chandler Carruthdf234352011-11-13 11:20:44 +0000948 BCI != BCE; ++BCI)
Chandler Carruth10252db2011-11-13 21:39:51 +0000949 if (!FunctionBlockSet.erase(*BCI)) {
950 BadFunc = true;
Chandler Carruthdf234352011-11-13 11:20:44 +0000951 dbgs() << "Function chain contains a block not in the function!\n"
952 << " Bad block: " << getBlockName(*BCI) << "\n";
Chandler Carruth10252db2011-11-13 21:39:51 +0000953 }
Chandler Carruthdf234352011-11-13 11:20:44 +0000954
Chandler Carruth10252db2011-11-13 21:39:51 +0000955 if (!FunctionBlockSet.empty()) {
956 BadFunc = true;
Chandler Carruthc0f05b32011-11-13 22:50:09 +0000957 for (FunctionBlockSetType::iterator FBI = FunctionBlockSet.begin(),
958 FBE = FunctionBlockSet.end();
959 FBI != FBE; ++FBI)
Chandler Carruthdf234352011-11-13 11:20:44 +0000960 dbgs() << "Function contains blocks never placed into a chain!\n"
961 << " Bad block: " << getBlockName(*FBI) << "\n";
Chandler Carruth10252db2011-11-13 21:39:51 +0000962 }
963 assert(!BadFunc && "Detected problems with the block placement.");
Chandler Carruthdf234352011-11-13 11:20:44 +0000964 });
965
966 // Splice the blocks into place.
967 MachineFunction::iterator InsertPos = F.begin();
Chandler Carruthc0f05b32011-11-13 22:50:09 +0000968 for (BlockChain::iterator BI = FunctionChain.begin(),
969 BE = FunctionChain.end();
Chandler Carruthdf234352011-11-13 11:20:44 +0000970 BI != BE; ++BI) {
971 DEBUG(dbgs() << (BI == FunctionChain.begin() ? "Placing chain "
972 : " ... ")
973 << getBlockName(*BI) << "\n");
974 if (InsertPos != MachineFunction::iterator(*BI))
975 F.splice(InsertPos, *BI);
976 else
977 ++InsertPos;
978
979 // Update the terminator of the previous block.
980 if (BI == FunctionChain.begin())
981 continue;
Stephen Hines36b56882014-04-23 16:57:46 -0700982 MachineBasicBlock *PrevBB = std::prev(MachineFunction::iterator(*BI));
Chandler Carruthdf234352011-11-13 11:20:44 +0000983
Chandler Carruthdb350872011-10-21 06:46:38 +0000984 // FIXME: It would be awesome of updateTerminator would just return rather
985 // than assert when the branch cannot be analyzed in order to remove this
986 // boiler plate.
987 Cond.clear();
Stephen Hinesdce4a402014-05-29 02:49:00 -0700988 MachineBasicBlock *TBB = nullptr, *FBB = nullptr; // For AnalyzeBranch.
Manman Ren11236142012-07-31 01:11:07 +0000989 if (!TII->AnalyzeBranch(*PrevBB, TBB, FBB, Cond)) {
Shuxin Yang45c75442013-06-04 01:00:57 +0000990 // The "PrevBB" is not yet updated to reflect current code layout, so,
991 // o. it may fall-through to a block without explict "goto" instruction
992 // before layout, and no longer fall-through it after layout; or
993 // o. just opposite.
994 //
995 // AnalyzeBranch() may return erroneous value for FBB when these two
996 // situations take place. For the first scenario FBB is mistakenly set
997 // NULL; for the 2nd scenario, the FBB, which is expected to be NULL,
998 // is mistakenly pointing to "*BI".
999 //
1000 bool needUpdateBr = true;
1001 if (!Cond.empty() && (!FBB || FBB == *BI)) {
1002 PrevBB->updateTerminator();
1003 needUpdateBr = false;
1004 Cond.clear();
Stephen Hinesdce4a402014-05-29 02:49:00 -07001005 TBB = FBB = nullptr;
Shuxin Yang45c75442013-06-04 01:00:57 +00001006 if (TII->AnalyzeBranch(*PrevBB, TBB, FBB, Cond)) {
1007 // FIXME: This should never take place.
Stephen Hinesdce4a402014-05-29 02:49:00 -07001008 TBB = FBB = nullptr;
Shuxin Yang45c75442013-06-04 01:00:57 +00001009 }
1010 }
1011
Manman Ren11236142012-07-31 01:11:07 +00001012 // If PrevBB has a two-way branch, try to re-order the branches
1013 // such that we branch to the successor with higher weight first.
1014 if (TBB && !Cond.empty() && FBB &&
1015 MBPI->getEdgeWeight(PrevBB, FBB) > MBPI->getEdgeWeight(PrevBB, TBB) &&
1016 !TII->ReverseBranchCondition(Cond)) {
1017 DEBUG(dbgs() << "Reverse order of the two branches: "
1018 << getBlockName(PrevBB) << "\n");
1019 DEBUG(dbgs() << " Edge weight: " << MBPI->getEdgeWeight(PrevBB, FBB)
1020 << " vs " << MBPI->getEdgeWeight(PrevBB, TBB) << "\n");
1021 DebugLoc dl; // FIXME: this is nowhere
1022 TII->RemoveBranch(*PrevBB);
1023 TII->InsertBranch(*PrevBB, FBB, TBB, Cond, dl);
Shuxin Yang45c75442013-06-04 01:00:57 +00001024 needUpdateBr = true;
Manman Ren11236142012-07-31 01:11:07 +00001025 }
Shuxin Yang45c75442013-06-04 01:00:57 +00001026 if (needUpdateBr)
1027 PrevBB->updateTerminator();
Manman Ren11236142012-07-31 01:11:07 +00001028 }
Chandler Carruthdb350872011-10-21 06:46:38 +00001029 }
Chandler Carruthdf234352011-11-13 11:20:44 +00001030
1031 // Fixup the last block.
1032 Cond.clear();
Stephen Hinesdce4a402014-05-29 02:49:00 -07001033 MachineBasicBlock *TBB = nullptr, *FBB = nullptr; // For AnalyzeBranch.
Chandler Carruthdf234352011-11-13 11:20:44 +00001034 if (!TII->AnalyzeBranch(F.back(), TBB, FBB, Cond))
1035 F.back().updateTerminator();
Chandler Carruthdb350872011-10-21 06:46:38 +00001036
Chandler Carruth70daea92012-04-16 01:12:56 +00001037 // Walk through the backedges of the function now that we have fully laid out
1038 // the basic blocks and align the destination of each backedge. We don't rely
Chandler Carruthe6450dc2012-08-07 09:45:24 +00001039 // exclusively on the loop info here so that we can align backedges in
1040 // unnatural CFGs and backedges that were introduced purely because of the
1041 // loop rotations done during this layout pass.
Stephen Hinesebe69fe2015-03-23 12:10:34 -07001042 if (F.getFunction()->hasFnAttribute(Attribute::OptimizeForSize))
Chandler Carruth4a85cc92011-10-21 08:57:37 +00001043 return;
Chandler Carruthe6450dc2012-08-07 09:45:24 +00001044 if (FunctionChain.begin() == FunctionChain.end())
1045 return; // Empty chain.
Chandler Carruth4a85cc92011-10-21 08:57:37 +00001046
Chandler Carruthe6450dc2012-08-07 09:45:24 +00001047 const BranchProbability ColdProb(1, 5); // 20%
1048 BlockFrequency EntryFreq = MBFI->getBlockFreq(F.begin());
1049 BlockFrequency WeightedEntryFreq = EntryFreq * ColdProb;
Stephen Hines36b56882014-04-23 16:57:46 -07001050 for (BlockChain::iterator BI = std::next(FunctionChain.begin()),
Chandler Carruth70daea92012-04-16 01:12:56 +00001051 BE = FunctionChain.end();
1052 BI != BE; ++BI) {
Chandler Carruthe6450dc2012-08-07 09:45:24 +00001053 // Don't align non-looping basic blocks. These are unlikely to execute
1054 // enough times to matter in practice. Note that we'll still handle
1055 // unnatural CFGs inside of a natural outer loop (the common case) and
1056 // rotated loops.
1057 MachineLoop *L = MLI->getLoopFor(*BI);
1058 if (!L)
1059 continue;
1060
Stephen Hinesebe69fe2015-03-23 12:10:34 -07001061 unsigned Align = TLI->getPrefLoopAlignment(L);
1062 if (!Align)
1063 continue; // Don't care about loop alignment.
1064
Chandler Carruthe6450dc2012-08-07 09:45:24 +00001065 // If the block is cold relative to the function entry don't waste space
1066 // aligning it.
1067 BlockFrequency Freq = MBFI->getBlockFreq(*BI);
1068 if (Freq < WeightedEntryFreq)
1069 continue;
1070
1071 // If the block is cold relative to its loop header, don't align it
1072 // regardless of what edges into the block exist.
1073 MachineBasicBlock *LoopHeader = L->getHeader();
1074 BlockFrequency LoopHeaderFreq = MBFI->getBlockFreq(LoopHeader);
1075 if (Freq < (LoopHeaderFreq * ColdProb))
1076 continue;
1077
1078 // Check for the existence of a non-layout predecessor which would benefit
1079 // from aligning this block.
Stephen Hines36b56882014-04-23 16:57:46 -07001080 MachineBasicBlock *LayoutPred = *std::prev(BI);
Chandler Carruthe6450dc2012-08-07 09:45:24 +00001081
1082 // Force alignment if all the predecessors are jumps. We already checked
1083 // that the block isn't cold above.
1084 if (!LayoutPred->isSuccessor(*BI)) {
1085 (*BI)->setAlignment(Align);
1086 continue;
1087 }
1088
1089 // Align this block if the layout predecessor's edge into this block is
Nadav Rotem975ee542013-03-29 16:34:23 +00001090 // cold relative to the block. When this is true, other predecessors make up
Chandler Carruthe6450dc2012-08-07 09:45:24 +00001091 // all of the hot entries into the block and thus alignment is likely to be
1092 // important.
1093 BranchProbability LayoutProb = MBPI->getEdgeProbability(LayoutPred, *BI);
1094 BlockFrequency LayoutEdgeFreq = MBFI->getBlockFreq(LayoutPred) * LayoutProb;
1095 if (LayoutEdgeFreq <= (Freq * ColdProb))
1096 (*BI)->setAlignment(Align);
Chandler Carruth70daea92012-04-16 01:12:56 +00001097 }
Chandler Carruth4a85cc92011-10-21 08:57:37 +00001098}
1099
Chandler Carruthdb350872011-10-21 06:46:38 +00001100bool MachineBlockPlacement::runOnMachineFunction(MachineFunction &F) {
1101 // Check for single-block functions and skip them.
Stephen Hines36b56882014-04-23 16:57:46 -07001102 if (std::next(F.begin()) == F.end())
1103 return false;
1104
1105 if (skipOptnoneFunction(*F.getFunction()))
Chandler Carruthdb350872011-10-21 06:46:38 +00001106 return false;
1107
1108 MBPI = &getAnalysis<MachineBranchProbabilityInfo>();
1109 MBFI = &getAnalysis<MachineBlockFrequencyInfo>();
Chandler Carruth4a85cc92011-10-21 08:57:37 +00001110 MLI = &getAnalysis<MachineLoopInfo>();
Stephen Hines37ed9c12014-12-01 14:51:49 -08001111 TII = F.getSubtarget().getInstrInfo();
1112 TLI = F.getSubtarget().getTargetLowering();
Chandler Carruthdb350872011-10-21 06:46:38 +00001113 assert(BlockToChain.empty());
Chandler Carruthdb350872011-10-21 06:46:38 +00001114
Chandler Carruth30713632011-10-23 09:18:45 +00001115 buildCFGChains(F);
Chandler Carruthdb350872011-10-21 06:46:38 +00001116
Chandler Carruthdb350872011-10-21 06:46:38 +00001117 BlockToChain.clear();
Chandler Carruthf5e47ac2011-11-14 10:57:23 +00001118 ChainAllocator.DestroyAll();
Chandler Carruthdb350872011-10-21 06:46:38 +00001119
Nadav Rotem33a47d62013-04-12 01:24:16 +00001120 if (AlignAllBlock)
1121 // Align all of the blocks in the function to a specific alignment.
1122 for (MachineFunction::iterator FI = F.begin(), FE = F.end();
1123 FI != FE; ++FI)
1124 FI->setAlignment(AlignAllBlock);
1125
Chandler Carruthdb350872011-10-21 06:46:38 +00001126 // We always return true as we have no way to track whether the final order
1127 // differs from the original order.
1128 return true;
1129}
Chandler Carruth37efc9f2011-11-02 07:17:12 +00001130
1131namespace {
1132/// \brief A pass to compute block placement statistics.
1133///
1134/// A separate pass to compute interesting statistics for evaluating block
1135/// placement. This is separate from the actual placement pass so that they can
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00001136/// be computed in the absence of any placement transformations or when using
Chandler Carruth37efc9f2011-11-02 07:17:12 +00001137/// alternative placement strategies.
1138class MachineBlockPlacementStats : public MachineFunctionPass {
1139 /// \brief A handle to the branch probability pass.
1140 const MachineBranchProbabilityInfo *MBPI;
1141
1142 /// \brief A handle to the function-wide block frequency pass.
1143 const MachineBlockFrequencyInfo *MBFI;
1144
1145public:
1146 static char ID; // Pass identification, replacement for typeid
1147 MachineBlockPlacementStats() : MachineFunctionPass(ID) {
1148 initializeMachineBlockPlacementStatsPass(*PassRegistry::getPassRegistry());
1149 }
1150
Stephen Hines36b56882014-04-23 16:57:46 -07001151 bool runOnMachineFunction(MachineFunction &F) override;
Chandler Carruth37efc9f2011-11-02 07:17:12 +00001152
Stephen Hines36b56882014-04-23 16:57:46 -07001153 void getAnalysisUsage(AnalysisUsage &AU) const override {
Chandler Carruth37efc9f2011-11-02 07:17:12 +00001154 AU.addRequired<MachineBranchProbabilityInfo>();
1155 AU.addRequired<MachineBlockFrequencyInfo>();
1156 AU.setPreservesAll();
1157 MachineFunctionPass::getAnalysisUsage(AU);
1158 }
Chandler Carruth37efc9f2011-11-02 07:17:12 +00001159};
1160}
1161
1162char MachineBlockPlacementStats::ID = 0;
Andrew Trick1dd8c852012-02-08 21:23:13 +00001163char &llvm::MachineBlockPlacementStatsID = MachineBlockPlacementStats::ID;
Chandler Carruth37efc9f2011-11-02 07:17:12 +00001164INITIALIZE_PASS_BEGIN(MachineBlockPlacementStats, "block-placement-stats",
1165 "Basic Block Placement Stats", false, false)
1166INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo)
1167INITIALIZE_PASS_DEPENDENCY(MachineBlockFrequencyInfo)
1168INITIALIZE_PASS_END(MachineBlockPlacementStats, "block-placement-stats",
1169 "Basic Block Placement Stats", false, false)
1170
Chandler Carruth37efc9f2011-11-02 07:17:12 +00001171bool MachineBlockPlacementStats::runOnMachineFunction(MachineFunction &F) {
1172 // Check for single-block functions and skip them.
Stephen Hines36b56882014-04-23 16:57:46 -07001173 if (std::next(F.begin()) == F.end())
Chandler Carruth37efc9f2011-11-02 07:17:12 +00001174 return false;
1175
1176 MBPI = &getAnalysis<MachineBranchProbabilityInfo>();
1177 MBFI = &getAnalysis<MachineBlockFrequencyInfo>();
1178
1179 for (MachineFunction::iterator I = F.begin(), E = F.end(); I != E; ++I) {
1180 BlockFrequency BlockFreq = MBFI->getBlockFreq(I);
1181 Statistic &NumBranches = (I->succ_size() > 1) ? NumCondBranches
1182 : NumUncondBranches;
1183 Statistic &BranchTakenFreq = (I->succ_size() > 1) ? CondBranchTakenFreq
1184 : UncondBranchTakenFreq;
1185 for (MachineBasicBlock::succ_iterator SI = I->succ_begin(),
1186 SE = I->succ_end();
1187 SI != SE; ++SI) {
1188 // Skip if this successor is a fallthrough.
1189 if (I->isLayoutSuccessor(*SI))
1190 continue;
1191
1192 BlockFrequency EdgeFreq = BlockFreq * MBPI->getEdgeProbability(I, *SI);
1193 ++NumBranches;
1194 BranchTakenFreq += EdgeFreq.getFrequency();
1195 }
1196 }
1197
1198 return false;
1199}
1200