xref: /freebsd/contrib/llvm-project/llvm/lib/CodeGen/BranchRelaxation.cpp (revision 7ef62cebc2f965b0f640263e179276928885e33d)
1 //===- BranchRelaxation.cpp -----------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "llvm/ADT/SmallVector.h"
10 #include "llvm/ADT/Statistic.h"
11 #include "llvm/CodeGen/LivePhysRegs.h"
12 #include "llvm/CodeGen/MachineBasicBlock.h"
13 #include "llvm/CodeGen/MachineFunction.h"
14 #include "llvm/CodeGen/MachineFunctionPass.h"
15 #include "llvm/CodeGen/MachineInstr.h"
16 #include "llvm/CodeGen/RegisterScavenging.h"
17 #include "llvm/CodeGen/TargetInstrInfo.h"
18 #include "llvm/CodeGen/TargetRegisterInfo.h"
19 #include "llvm/CodeGen/TargetSubtargetInfo.h"
20 #include "llvm/Config/llvm-config.h"
21 #include "llvm/IR/DebugLoc.h"
22 #include "llvm/InitializePasses.h"
23 #include "llvm/Pass.h"
24 #include "llvm/Support/Compiler.h"
25 #include "llvm/Support/Debug.h"
26 #include "llvm/Support/ErrorHandling.h"
27 #include "llvm/Support/Format.h"
28 #include "llvm/Support/raw_ostream.h"
29 #include <cassert>
30 #include <cstdint>
31 #include <iterator>
32 #include <memory>
33 
34 using namespace llvm;
35 
36 #define DEBUG_TYPE "branch-relaxation"
37 
38 STATISTIC(NumSplit, "Number of basic blocks split");
39 STATISTIC(NumConditionalRelaxed, "Number of conditional branches relaxed");
40 STATISTIC(NumUnconditionalRelaxed, "Number of unconditional branches relaxed");
41 
42 #define BRANCH_RELAX_NAME "Branch relaxation pass"
43 
44 namespace {
45 
46 class BranchRelaxation : public MachineFunctionPass {
47   /// BasicBlockInfo - Information about the offset and size of a single
48   /// basic block.
49   struct BasicBlockInfo {
50     /// Offset - Distance from the beginning of the function to the beginning
51     /// of this basic block.
52     ///
53     /// The offset is always aligned as required by the basic block.
54     unsigned Offset = 0;
55 
56     /// Size - Size of the basic block in bytes.  If the block contains
57     /// inline assembly, this is a worst case estimate.
58     ///
59     /// The size does not include any alignment padding whether from the
60     /// beginning of the block, or from an aligned jump table at the end.
61     unsigned Size = 0;
62 
63     BasicBlockInfo() = default;
64 
65     /// Compute the offset immediately following this block. \p MBB is the next
66     /// block.
67     unsigned postOffset(const MachineBasicBlock &MBB) const {
68       const unsigned PO = Offset + Size;
69       const Align Alignment = MBB.getAlignment();
70       const Align ParentAlign = MBB.getParent()->getAlignment();
71       if (Alignment <= ParentAlign)
72         return alignTo(PO, Alignment);
73 
74       // The alignment of this MBB is larger than the function's alignment, so we
75       // can't tell whether or not it will insert nops. Assume that it will.
76       return alignTo(PO, Alignment) + Alignment.value() - ParentAlign.value();
77     }
78   };
79 
80   SmallVector<BasicBlockInfo, 16> BlockInfo;
81   std::unique_ptr<RegScavenger> RS;
82   LivePhysRegs LiveRegs;
83 
84   MachineFunction *MF;
85   const TargetRegisterInfo *TRI;
86   const TargetInstrInfo *TII;
87 
88   bool relaxBranchInstructions();
89   void scanFunction();
90 
91   MachineBasicBlock *createNewBlockAfter(MachineBasicBlock &OrigMBB);
92   MachineBasicBlock *createNewBlockAfter(MachineBasicBlock &OrigMBB,
93                                          const BasicBlock *BB);
94 
95   MachineBasicBlock *splitBlockBeforeInstr(MachineInstr &MI,
96                                            MachineBasicBlock *DestBB);
97   void adjustBlockOffsets(MachineBasicBlock &Start);
98   bool isBlockInRange(const MachineInstr &MI, const MachineBasicBlock &BB) const;
99 
100   bool fixupConditionalBranch(MachineInstr &MI);
101   bool fixupUnconditionalBranch(MachineInstr &MI);
102   uint64_t computeBlockSize(const MachineBasicBlock &MBB) const;
103   unsigned getInstrOffset(const MachineInstr &MI) const;
104   void dumpBBs();
105   void verify();
106 
107 public:
108   static char ID;
109 
110   BranchRelaxation() : MachineFunctionPass(ID) {}
111 
112   bool runOnMachineFunction(MachineFunction &MF) override;
113 
114   StringRef getPassName() const override { return BRANCH_RELAX_NAME; }
115 };
116 
117 } // end anonymous namespace
118 
119 char BranchRelaxation::ID = 0;
120 
121 char &llvm::BranchRelaxationPassID = BranchRelaxation::ID;
122 
123 INITIALIZE_PASS(BranchRelaxation, DEBUG_TYPE, BRANCH_RELAX_NAME, false, false)
124 
125 /// verify - check BBOffsets, BBSizes, alignment of islands
126 void BranchRelaxation::verify() {
127 #ifndef NDEBUG
128   unsigned PrevNum = MF->begin()->getNumber();
129   for (MachineBasicBlock &MBB : *MF) {
130     const unsigned Num = MBB.getNumber();
131     assert(!Num || BlockInfo[PrevNum].postOffset(MBB) <= BlockInfo[Num].Offset);
132     assert(BlockInfo[Num].Size == computeBlockSize(MBB));
133     PrevNum = Num;
134   }
135 #endif
136 }
137 
138 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
139 /// print block size and offset information - debugging
140 LLVM_DUMP_METHOD void BranchRelaxation::dumpBBs() {
141   for (auto &MBB : *MF) {
142     const BasicBlockInfo &BBI = BlockInfo[MBB.getNumber()];
143     dbgs() << format("%%bb.%u\toffset=%08x\t", MBB.getNumber(), BBI.Offset)
144            << format("size=%#x\n", BBI.Size);
145   }
146 }
147 #endif
148 
149 /// scanFunction - Do the initial scan of the function, building up
150 /// information about each block.
151 void BranchRelaxation::scanFunction() {
152   BlockInfo.clear();
153   BlockInfo.resize(MF->getNumBlockIDs());
154 
155   // First thing, compute the size of all basic blocks, and see if the function
156   // has any inline assembly in it. If so, we have to be conservative about
157   // alignment assumptions, as we don't know for sure the size of any
158   // instructions in the inline assembly.
159   for (MachineBasicBlock &MBB : *MF)
160     BlockInfo[MBB.getNumber()].Size = computeBlockSize(MBB);
161 
162   // Compute block offsets and known bits.
163   adjustBlockOffsets(*MF->begin());
164 }
165 
166 /// computeBlockSize - Compute the size for MBB.
167 uint64_t BranchRelaxation::computeBlockSize(const MachineBasicBlock &MBB) const {
168   uint64_t Size = 0;
169   for (const MachineInstr &MI : MBB)
170     Size += TII->getInstSizeInBytes(MI);
171   return Size;
172 }
173 
174 /// getInstrOffset - Return the current offset of the specified machine
175 /// instruction from the start of the function.  This offset changes as stuff is
176 /// moved around inside the function.
177 unsigned BranchRelaxation::getInstrOffset(const MachineInstr &MI) const {
178   const MachineBasicBlock *MBB = MI.getParent();
179 
180   // The offset is composed of two things: the sum of the sizes of all MBB's
181   // before this instruction's block, and the offset from the start of the block
182   // it is in.
183   unsigned Offset = BlockInfo[MBB->getNumber()].Offset;
184 
185   // Sum instructions before MI in MBB.
186   for (MachineBasicBlock::const_iterator I = MBB->begin(); &*I != &MI; ++I) {
187     assert(I != MBB->end() && "Didn't find MI in its own basic block?");
188     Offset += TII->getInstSizeInBytes(*I);
189   }
190 
191   return Offset;
192 }
193 
194 void BranchRelaxation::adjustBlockOffsets(MachineBasicBlock &Start) {
195   unsigned PrevNum = Start.getNumber();
196   for (auto &MBB :
197        make_range(std::next(MachineFunction::iterator(Start)), MF->end())) {
198     unsigned Num = MBB.getNumber();
199     // Get the offset and known bits at the end of the layout predecessor.
200     // Include the alignment of the current block.
201     BlockInfo[Num].Offset = BlockInfo[PrevNum].postOffset(MBB);
202 
203     PrevNum = Num;
204   }
205 }
206 
207 /// Insert a new empty MachineBasicBlock and insert it after \p OrigMBB
208 MachineBasicBlock *
209 BranchRelaxation::createNewBlockAfter(MachineBasicBlock &OrigBB) {
210   return createNewBlockAfter(OrigBB, OrigBB.getBasicBlock());
211 }
212 
213 /// Insert a new empty MachineBasicBlock with \p BB as its BasicBlock
214 /// and insert it after \p OrigMBB
215 MachineBasicBlock *
216 BranchRelaxation::createNewBlockAfter(MachineBasicBlock &OrigMBB,
217                                       const BasicBlock *BB) {
218   // Create a new MBB for the code after the OrigBB.
219   MachineBasicBlock *NewBB = MF->CreateMachineBasicBlock(BB);
220   MF->insert(++OrigMBB.getIterator(), NewBB);
221 
222   // Insert an entry into BlockInfo to align it properly with the block numbers.
223   BlockInfo.insert(BlockInfo.begin() + NewBB->getNumber(), BasicBlockInfo());
224 
225   return NewBB;
226 }
227 
228 /// Split the basic block containing MI into two blocks, which are joined by
229 /// an unconditional branch.  Update data structures and renumber blocks to
230 /// account for this change and returns the newly created block.
231 MachineBasicBlock *BranchRelaxation::splitBlockBeforeInstr(MachineInstr &MI,
232                                                            MachineBasicBlock *DestBB) {
233   MachineBasicBlock *OrigBB = MI.getParent();
234 
235   // Create a new MBB for the code after the OrigBB.
236   MachineBasicBlock *NewBB =
237       MF->CreateMachineBasicBlock(OrigBB->getBasicBlock());
238   MF->insert(++OrigBB->getIterator(), NewBB);
239 
240   // Splice the instructions starting with MI over to NewBB.
241   NewBB->splice(NewBB->end(), OrigBB, MI.getIterator(), OrigBB->end());
242 
243   // Add an unconditional branch from OrigBB to NewBB.
244   // Note the new unconditional branch is not being recorded.
245   // There doesn't seem to be meaningful DebugInfo available; this doesn't
246   // correspond to anything in the source.
247   TII->insertUnconditionalBranch(*OrigBB, NewBB, DebugLoc());
248 
249   // Insert an entry into BlockInfo to align it properly with the block numbers.
250   BlockInfo.insert(BlockInfo.begin() + NewBB->getNumber(), BasicBlockInfo());
251 
252   NewBB->transferSuccessors(OrigBB);
253   OrigBB->addSuccessor(NewBB);
254   OrigBB->addSuccessor(DestBB);
255 
256   // Cleanup potential unconditional branch to successor block.
257   // Note that updateTerminator may change the size of the blocks.
258   OrigBB->updateTerminator(NewBB);
259 
260   // Figure out how large the OrigBB is.  As the first half of the original
261   // block, it cannot contain a tablejump.  The size includes
262   // the new jump we added.  (It should be possible to do this without
263   // recounting everything, but it's very confusing, and this is rarely
264   // executed.)
265   BlockInfo[OrigBB->getNumber()].Size = computeBlockSize(*OrigBB);
266 
267   // Figure out how large the NewMBB is. As the second half of the original
268   // block, it may contain a tablejump.
269   BlockInfo[NewBB->getNumber()].Size = computeBlockSize(*NewBB);
270 
271   // All BBOffsets following these blocks must be modified.
272   adjustBlockOffsets(*OrigBB);
273 
274   // Need to fix live-in lists if we track liveness.
275   if (TRI->trackLivenessAfterRegAlloc(*MF))
276     computeAndAddLiveIns(LiveRegs, *NewBB);
277 
278   ++NumSplit;
279 
280   return NewBB;
281 }
282 
283 /// isBlockInRange - Returns true if the distance between specific MI and
284 /// specific BB can fit in MI's displacement field.
285 bool BranchRelaxation::isBlockInRange(
286   const MachineInstr &MI, const MachineBasicBlock &DestBB) const {
287   int64_t BrOffset = getInstrOffset(MI);
288   int64_t DestOffset = BlockInfo[DestBB.getNumber()].Offset;
289 
290   if (TII->isBranchOffsetInRange(MI.getOpcode(), DestOffset - BrOffset))
291     return true;
292 
293   LLVM_DEBUG(dbgs() << "Out of range branch to destination "
294                     << printMBBReference(DestBB) << " from "
295                     << printMBBReference(*MI.getParent()) << " to "
296                     << DestOffset << " offset " << DestOffset - BrOffset << '\t'
297                     << MI);
298 
299   return false;
300 }
301 
302 /// fixupConditionalBranch - Fix up a conditional branch whose destination is
303 /// too far away to fit in its displacement field. It is converted to an inverse
304 /// conditional branch + an unconditional branch to the destination.
305 bool BranchRelaxation::fixupConditionalBranch(MachineInstr &MI) {
306   DebugLoc DL = MI.getDebugLoc();
307   MachineBasicBlock *MBB = MI.getParent();
308   MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
309   MachineBasicBlock *NewBB = nullptr;
310   SmallVector<MachineOperand, 4> Cond;
311 
312   auto insertUncondBranch = [&](MachineBasicBlock *MBB,
313                                 MachineBasicBlock *DestBB) {
314     unsigned &BBSize = BlockInfo[MBB->getNumber()].Size;
315     int NewBrSize = 0;
316     TII->insertUnconditionalBranch(*MBB, DestBB, DL, &NewBrSize);
317     BBSize += NewBrSize;
318   };
319   auto insertBranch = [&](MachineBasicBlock *MBB, MachineBasicBlock *TBB,
320                           MachineBasicBlock *FBB,
321                           SmallVectorImpl<MachineOperand>& Cond) {
322     unsigned &BBSize = BlockInfo[MBB->getNumber()].Size;
323     int NewBrSize = 0;
324     TII->insertBranch(*MBB, TBB, FBB, Cond, DL, &NewBrSize);
325     BBSize += NewBrSize;
326   };
327   auto removeBranch = [&](MachineBasicBlock *MBB) {
328     unsigned &BBSize = BlockInfo[MBB->getNumber()].Size;
329     int RemovedSize = 0;
330     TII->removeBranch(*MBB, &RemovedSize);
331     BBSize -= RemovedSize;
332   };
333 
334   auto finalizeBlockChanges = [&](MachineBasicBlock *MBB,
335                                   MachineBasicBlock *NewBB) {
336     // Keep the block offsets up to date.
337     adjustBlockOffsets(*MBB);
338 
339     // Need to fix live-in lists if we track liveness.
340     if (NewBB && TRI->trackLivenessAfterRegAlloc(*MF))
341       computeAndAddLiveIns(LiveRegs, *NewBB);
342   };
343 
344   bool Fail = TII->analyzeBranch(*MBB, TBB, FBB, Cond);
345   assert(!Fail && "branches to be relaxed must be analyzable");
346   (void)Fail;
347 
348   // Add an unconditional branch to the destination and invert the branch
349   // condition to jump over it:
350   // tbz L1
351   // =>
352   // tbnz L2
353   // b   L1
354   // L2:
355 
356   bool ReversedCond = !TII->reverseBranchCondition(Cond);
357   if (ReversedCond) {
358     if (FBB && isBlockInRange(MI, *FBB)) {
359       // Last MI in the BB is an unconditional branch. We can simply invert the
360       // condition and swap destinations:
361       // beq L1
362       // b   L2
363       // =>
364       // bne L2
365       // b   L1
366       LLVM_DEBUG(dbgs() << "  Invert condition and swap "
367                            "its destination with "
368                         << MBB->back());
369 
370       removeBranch(MBB);
371       insertBranch(MBB, FBB, TBB, Cond);
372       finalizeBlockChanges(MBB, nullptr);
373       return true;
374     }
375     if (FBB) {
376       // We need to split the basic block here to obtain two long-range
377       // unconditional branches.
378       NewBB = createNewBlockAfter(*MBB);
379 
380       insertUncondBranch(NewBB, FBB);
381       // Update the succesor lists according to the transformation to follow.
382       // Do it here since if there's no split, no update is needed.
383       MBB->replaceSuccessor(FBB, NewBB);
384       NewBB->addSuccessor(FBB);
385     }
386 
387     // We now have an appropriate fall-through block in place (either naturally or
388     // just created), so we can use the inverted the condition.
389     MachineBasicBlock &NextBB = *std::next(MachineFunction::iterator(MBB));
390 
391     LLVM_DEBUG(dbgs() << "  Insert B to " << printMBBReference(*TBB)
392                       << ", invert condition and change dest. to "
393                       << printMBBReference(NextBB) << '\n');
394 
395     removeBranch(MBB);
396     // Insert a new conditional branch and a new unconditional branch.
397     insertBranch(MBB, &NextBB, TBB, Cond);
398 
399     finalizeBlockChanges(MBB, NewBB);
400     return true;
401   }
402   // Branch cond can't be inverted.
403   // In this case we always add a block after the MBB.
404   LLVM_DEBUG(dbgs() << "  The branch condition can't be inverted. "
405                     << "  Insert a new BB after " << MBB->back());
406 
407   if (!FBB)
408     FBB = &(*std::next(MachineFunction::iterator(MBB)));
409 
410   // This is the block with cond. branch and the distance to TBB is too long.
411   //    beq L1
412   // L2:
413 
414   // We do the following transformation:
415   //    beq NewBB
416   //    b L2
417   // NewBB:
418   //    b L1
419   // L2:
420 
421   NewBB = createNewBlockAfter(*MBB);
422   insertUncondBranch(NewBB, TBB);
423 
424   LLVM_DEBUG(dbgs() << "  Insert cond B to the new BB "
425                     << printMBBReference(*NewBB)
426                     << "  Keep the exiting condition.\n"
427                     << "  Insert B to " << printMBBReference(*FBB) << ".\n"
428                     << "  In the new BB: Insert B to "
429                     << printMBBReference(*TBB) << ".\n");
430 
431   // Update the successor lists according to the transformation to follow.
432   MBB->replaceSuccessor(TBB, NewBB);
433   NewBB->addSuccessor(TBB);
434 
435   // Replace branch in the current (MBB) block.
436   removeBranch(MBB);
437   insertBranch(MBB, NewBB, FBB, Cond);
438 
439   finalizeBlockChanges(MBB, NewBB);
440   return true;
441 }
442 
443 bool BranchRelaxation::fixupUnconditionalBranch(MachineInstr &MI) {
444   MachineBasicBlock *MBB = MI.getParent();
445   SmallVector<MachineOperand, 4> Cond;
446   unsigned OldBrSize = TII->getInstSizeInBytes(MI);
447   MachineBasicBlock *DestBB = TII->getBranchDestBlock(MI);
448 
449   int64_t DestOffset = BlockInfo[DestBB->getNumber()].Offset;
450   int64_t SrcOffset = getInstrOffset(MI);
451 
452   assert(!TII->isBranchOffsetInRange(MI.getOpcode(), DestOffset - SrcOffset));
453 
454   BlockInfo[MBB->getNumber()].Size -= OldBrSize;
455 
456   MachineBasicBlock *BranchBB = MBB;
457 
458   // If this was an expanded conditional branch, there is already a single
459   // unconditional branch in a block.
460   if (!MBB->empty()) {
461     BranchBB = createNewBlockAfter(*MBB);
462 
463     // Add live outs.
464     for (const MachineBasicBlock *Succ : MBB->successors()) {
465       for (const MachineBasicBlock::RegisterMaskPair &LiveIn : Succ->liveins())
466         BranchBB->addLiveIn(LiveIn);
467     }
468 
469     BranchBB->sortUniqueLiveIns();
470     BranchBB->addSuccessor(DestBB);
471     MBB->replaceSuccessor(DestBB, BranchBB);
472   }
473 
474   DebugLoc DL = MI.getDebugLoc();
475   MI.eraseFromParent();
476 
477   // Create the optional restore block and, initially, place it at the end of
478   // function. That block will be placed later if it's used; otherwise, it will
479   // be erased.
480   MachineBasicBlock *RestoreBB = createNewBlockAfter(MF->back(),
481                                                      DestBB->getBasicBlock());
482 
483   TII->insertIndirectBranch(*BranchBB, *DestBB, *RestoreBB, DL,
484                             DestOffset - SrcOffset, RS.get());
485 
486   BlockInfo[BranchBB->getNumber()].Size = computeBlockSize(*BranchBB);
487   adjustBlockOffsets(*MBB);
488 
489   // If RestoreBB is required, try to place just before DestBB.
490   if (!RestoreBB->empty()) {
491     // TODO: For multiple far branches to the same destination, there are
492     // chances that some restore blocks could be shared if they clobber the
493     // same registers and share the same restore sequence. So far, those
494     // restore blocks are just duplicated for each far branch.
495     assert(!DestBB->isEntryBlock());
496     MachineBasicBlock *PrevBB = &*std::prev(DestBB->getIterator());
497     // Fall through only if PrevBB has no unconditional branch as one of its
498     // terminators.
499     if (auto *FT = PrevBB->getLogicalFallThrough()) {
500       assert(FT == DestBB);
501       TII->insertUnconditionalBranch(*PrevBB, FT, DebugLoc());
502       BlockInfo[PrevBB->getNumber()].Size = computeBlockSize(*PrevBB);
503     }
504     // Now, RestoreBB could be placed directly before DestBB.
505     MF->splice(DestBB->getIterator(), RestoreBB->getIterator());
506     // Update successors and predecessors.
507     RestoreBB->addSuccessor(DestBB);
508     BranchBB->replaceSuccessor(DestBB, RestoreBB);
509     if (TRI->trackLivenessAfterRegAlloc(*MF))
510       computeAndAddLiveIns(LiveRegs, *RestoreBB);
511     // Compute the restore block size.
512     BlockInfo[RestoreBB->getNumber()].Size = computeBlockSize(*RestoreBB);
513     // Update the offset starting from the previous block.
514     adjustBlockOffsets(*PrevBB);
515   } else {
516     // Remove restore block if it's not required.
517     MF->erase(RestoreBB);
518   }
519 
520   return true;
521 }
522 
523 bool BranchRelaxation::relaxBranchInstructions() {
524   bool Changed = false;
525 
526   // Relaxing branches involves creating new basic blocks, so re-eval
527   // end() for termination.
528   for (MachineBasicBlock &MBB : *MF) {
529     // Empty block?
530     MachineBasicBlock::iterator Last = MBB.getLastNonDebugInstr();
531     if (Last == MBB.end())
532       continue;
533 
534     // Expand the unconditional branch first if necessary. If there is a
535     // conditional branch, this will end up changing the branch destination of
536     // it to be over the newly inserted indirect branch block, which may avoid
537     // the need to try expanding the conditional branch first, saving an extra
538     // jump.
539     if (Last->isUnconditionalBranch()) {
540       // Unconditional branch destination might be unanalyzable, assume these
541       // are OK.
542       if (MachineBasicBlock *DestBB = TII->getBranchDestBlock(*Last)) {
543         if (!isBlockInRange(*Last, *DestBB)) {
544           fixupUnconditionalBranch(*Last);
545           ++NumUnconditionalRelaxed;
546           Changed = true;
547         }
548       }
549     }
550 
551     // Loop over the conditional branches.
552     MachineBasicBlock::iterator Next;
553     for (MachineBasicBlock::iterator J = MBB.getFirstTerminator();
554          J != MBB.end(); J = Next) {
555       Next = std::next(J);
556       MachineInstr &MI = *J;
557 
558       if (!MI.isConditionalBranch())
559         continue;
560 
561       if (MI.getOpcode() == TargetOpcode::FAULTING_OP)
562         // FAULTING_OP's destination is not encoded in the instruction stream
563         // and thus never needs relaxed.
564         continue;
565 
566       MachineBasicBlock *DestBB = TII->getBranchDestBlock(MI);
567       if (!isBlockInRange(MI, *DestBB)) {
568         if (Next != MBB.end() && Next->isConditionalBranch()) {
569           // If there are multiple conditional branches, this isn't an
570           // analyzable block. Split later terminators into a new block so
571           // each one will be analyzable.
572 
573           splitBlockBeforeInstr(*Next, DestBB);
574         } else {
575           fixupConditionalBranch(MI);
576           ++NumConditionalRelaxed;
577         }
578 
579         Changed = true;
580 
581         // This may have modified all of the terminators, so start over.
582         Next = MBB.getFirstTerminator();
583       }
584     }
585   }
586 
587   return Changed;
588 }
589 
590 bool BranchRelaxation::runOnMachineFunction(MachineFunction &mf) {
591   MF = &mf;
592 
593   LLVM_DEBUG(dbgs() << "***** BranchRelaxation *****\n");
594 
595   const TargetSubtargetInfo &ST = MF->getSubtarget();
596   TII = ST.getInstrInfo();
597 
598   TRI = ST.getRegisterInfo();
599   if (TRI->trackLivenessAfterRegAlloc(*MF))
600     RS.reset(new RegScavenger());
601 
602   // Renumber all of the machine basic blocks in the function, guaranteeing that
603   // the numbers agree with the position of the block in the function.
604   MF->RenumberBlocks();
605 
606   // Do the initial scan of the function, building up information about the
607   // sizes of each block.
608   scanFunction();
609 
610   LLVM_DEBUG(dbgs() << "  Basic blocks before relaxation\n"; dumpBBs(););
611 
612   bool MadeChange = false;
613   while (relaxBranchInstructions())
614     MadeChange = true;
615 
616   // After a while, this might be made debug-only, but it is not expensive.
617   verify();
618 
619   LLVM_DEBUG(dbgs() << "  Basic blocks after relaxation\n\n"; dumpBBs());
620 
621   BlockInfo.clear();
622 
623   return MadeChange;
624 }
625