1 //===- Transform/Utils/BasicBlockUtils.h - BasicBlock Utils -----*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 // This family of functions perform manipulations on basic blocks, and
10 // instructions contained within basic blocks.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_TRANSFORMS_UTILS_BASICBLOCKUTILS_H
15 #define LLVM_TRANSFORMS_UTILS_BASICBLOCKUTILS_H
17 // FIXME: Move to this file: BasicBlock::removePredecessor, BB::splitBasicBlock
19 #include "llvm/ADT/ArrayRef.h"
20 #include "llvm/Analysis/DomTreeUpdater.h"
21 #include "llvm/IR/BasicBlock.h"
22 #include "llvm/IR/CFG.h"
23 #include "llvm/IR/InstrTypes.h"
28 class BlockFrequencyInfo
;
29 class BranchProbabilityInfo
;
36 class MemoryDependenceResults
;
37 class MemorySSAUpdater
;
38 class PostDominatorTree
;
40 class TargetLibraryInfo
;
43 /// Replace contents of every block in \p BBs with single unreachable
44 /// instruction. If \p Updates is specified, collect all necessary DT updates
45 /// into this vector. If \p KeepOneInputPHIs is true, one-input Phis in
46 /// successors of blocks being deleted will be preserved.
47 void DetatchDeadBlocks(ArrayRef
<BasicBlock
*> BBs
,
48 SmallVectorImpl
<DominatorTree::UpdateType
> *Updates
,
49 bool KeepOneInputPHIs
= false);
51 /// Delete the specified block, which must have no predecessors.
52 void DeleteDeadBlock(BasicBlock
*BB
, DomTreeUpdater
*DTU
= nullptr,
53 bool KeepOneInputPHIs
= false);
55 /// Delete the specified blocks from \p BB. The set of deleted blocks must have
56 /// no predecessors that are not being deleted themselves. \p BBs must have no
57 /// duplicating blocks. If there are loops among this set of blocks, all
58 /// relevant loop info updates should be done before this function is called.
59 /// If \p KeepOneInputPHIs is true, one-input Phis in successors of blocks
60 /// being deleted will be preserved.
61 void DeleteDeadBlocks(ArrayRef
<BasicBlock
*> BBs
,
62 DomTreeUpdater
*DTU
= nullptr,
63 bool KeepOneInputPHIs
= false);
65 /// Delete all basic blocks from \p F that are not reachable from its entry
66 /// node. If \p KeepOneInputPHIs is true, one-input Phis in successors of
67 /// blocks being deleted will be preserved.
68 bool EliminateUnreachableBlocks(Function
&F
, DomTreeUpdater
*DTU
= nullptr,
69 bool KeepOneInputPHIs
= false);
71 /// We know that BB has one predecessor. If there are any single-entry PHI nodes
72 /// in it, fold them away. This handles the case when all entries to the PHI
73 /// nodes in a block are guaranteed equal, such as when the block has exactly
75 void FoldSingleEntryPHINodes(BasicBlock
*BB
,
76 MemoryDependenceResults
*MemDep
= nullptr);
78 /// Examine each PHI in the given block and delete it if it is dead. Also
79 /// recursively delete any operands that become dead as a result. This includes
80 /// tracing the def-use list from the PHI to see if it is ultimately unused or
81 /// if it reaches an unused cycle. Return true if any PHIs were deleted.
82 bool DeleteDeadPHIs(BasicBlock
*BB
, const TargetLibraryInfo
*TLI
= nullptr);
84 /// Attempts to merge a block into its predecessor, if possible. The return
85 /// value indicates success or failure.
86 bool MergeBlockIntoPredecessor(BasicBlock
*BB
, DomTreeUpdater
*DTU
= nullptr,
87 LoopInfo
*LI
= nullptr,
88 MemorySSAUpdater
*MSSAU
= nullptr,
89 MemoryDependenceResults
*MemDep
= nullptr);
91 /// Replace all uses of an instruction (specified by BI) with a value, then
92 /// remove and delete the original instruction.
93 void ReplaceInstWithValue(BasicBlock::InstListType
&BIL
,
94 BasicBlock::iterator
&BI
, Value
*V
);
96 /// Replace the instruction specified by BI with the instruction specified by I.
97 /// Copies DebugLoc from BI to I, if I doesn't already have a DebugLoc. The
98 /// original instruction is deleted and BI is updated to point to the new
100 void ReplaceInstWithInst(BasicBlock::InstListType
&BIL
,
101 BasicBlock::iterator
&BI
, Instruction
*I
);
103 /// Replace the instruction specified by From with the instruction specified by
104 /// To. Copies DebugLoc from BI to I, if I doesn't already have a DebugLoc.
105 void ReplaceInstWithInst(Instruction
*From
, Instruction
*To
);
107 /// Option class for critical edge splitting.
109 /// This provides a builder interface for overriding the default options used
110 /// during critical edge splitting.
111 struct CriticalEdgeSplittingOptions
{
113 PostDominatorTree
*PDT
;
115 MemorySSAUpdater
*MSSAU
;
116 bool MergeIdenticalEdges
= false;
117 bool KeepOneInputPHIs
= false;
118 bool PreserveLCSSA
= false;
119 bool IgnoreUnreachableDests
= false;
121 CriticalEdgeSplittingOptions(DominatorTree
*DT
= nullptr,
122 LoopInfo
*LI
= nullptr,
123 MemorySSAUpdater
*MSSAU
= nullptr,
124 PostDominatorTree
*PDT
= nullptr)
125 : DT(DT
), PDT(PDT
), LI(LI
), MSSAU(MSSAU
) {}
127 CriticalEdgeSplittingOptions
&setMergeIdenticalEdges() {
128 MergeIdenticalEdges
= true;
132 CriticalEdgeSplittingOptions
&setKeepOneInputPHIs() {
133 KeepOneInputPHIs
= true;
137 CriticalEdgeSplittingOptions
&setPreserveLCSSA() {
138 PreserveLCSSA
= true;
142 CriticalEdgeSplittingOptions
&setIgnoreUnreachableDests() {
143 IgnoreUnreachableDests
= true;
148 /// If this edge is a critical edge, insert a new node to split the critical
149 /// edge. This will update the analyses passed in through the option struct.
150 /// This returns the new block if the edge was split, null otherwise.
152 /// If MergeIdenticalEdges in the options struct is true (not the default),
153 /// *all* edges from TI to the specified successor will be merged into the same
154 /// critical edge block. This is most commonly interesting with switch
155 /// instructions, which may have many edges to any one destination. This
156 /// ensures that all edges to that dest go to one block instead of each going
157 /// to a different block, but isn't the standard definition of a "critical
160 /// It is invalid to call this function on a critical edge that starts at an
161 /// IndirectBrInst. Splitting these edges will almost always create an invalid
162 /// program because the address of the new block won't be the one that is jumped
164 BasicBlock
*SplitCriticalEdge(Instruction
*TI
, unsigned SuccNum
,
165 const CriticalEdgeSplittingOptions
&Options
=
166 CriticalEdgeSplittingOptions());
169 SplitCriticalEdge(BasicBlock
*BB
, succ_iterator SI
,
170 const CriticalEdgeSplittingOptions
&Options
=
171 CriticalEdgeSplittingOptions()) {
172 return SplitCriticalEdge(BB
->getTerminator(), SI
.getSuccessorIndex(),
176 /// If the edge from *PI to BB is not critical, return false. Otherwise, split
177 /// all edges between the two blocks and return true. This updates all of the
178 /// same analyses as the other SplitCriticalEdge function. If P is specified, it
179 /// updates the analyses described above.
180 inline bool SplitCriticalEdge(BasicBlock
*Succ
, pred_iterator PI
,
181 const CriticalEdgeSplittingOptions
&Options
=
182 CriticalEdgeSplittingOptions()) {
183 bool MadeChange
= false;
184 Instruction
*TI
= (*PI
)->getTerminator();
185 for (unsigned i
= 0, e
= TI
->getNumSuccessors(); i
!= e
; ++i
)
186 if (TI
->getSuccessor(i
) == Succ
)
187 MadeChange
|= !!SplitCriticalEdge(TI
, i
, Options
);
191 /// If an edge from Src to Dst is critical, split the edge and return true,
192 /// otherwise return false. This method requires that there be an edge between
193 /// the two blocks. It updates the analyses passed in the options struct
195 SplitCriticalEdge(BasicBlock
*Src
, BasicBlock
*Dst
,
196 const CriticalEdgeSplittingOptions
&Options
=
197 CriticalEdgeSplittingOptions()) {
198 Instruction
*TI
= Src
->getTerminator();
201 assert(i
!= TI
->getNumSuccessors() && "Edge doesn't exist!");
202 if (TI
->getSuccessor(i
) == Dst
)
203 return SplitCriticalEdge(TI
, i
, Options
);
208 /// Loop over all of the edges in the CFG, breaking critical edges as they are
209 /// found. Returns the number of broken edges.
210 unsigned SplitAllCriticalEdges(Function
&F
,
211 const CriticalEdgeSplittingOptions
&Options
=
212 CriticalEdgeSplittingOptions());
214 /// Split the edge connecting specified block.
215 BasicBlock
*SplitEdge(BasicBlock
*From
, BasicBlock
*To
,
216 DominatorTree
*DT
= nullptr, LoopInfo
*LI
= nullptr,
217 MemorySSAUpdater
*MSSAU
= nullptr);
219 /// Split the specified block at the specified instruction - everything before
220 /// SplitPt stays in Old and everything starting with SplitPt moves to a new
221 /// block. The two blocks are joined by an unconditional branch and the loop
223 BasicBlock
*SplitBlock(BasicBlock
*Old
, Instruction
*SplitPt
,
224 DominatorTree
*DT
= nullptr, LoopInfo
*LI
= nullptr,
225 MemorySSAUpdater
*MSSAU
= nullptr,
226 const Twine
&BBName
= "");
228 /// This method introduces at least one new basic block into the function and
229 /// moves some of the predecessors of BB to be predecessors of the new block.
230 /// The new predecessors are indicated by the Preds array. The new block is
231 /// given a suffix of 'Suffix'. Returns new basic block to which predecessors
232 /// from Preds are now pointing.
234 /// If BB is a landingpad block then additional basicblock might be introduced.
235 /// It will have Suffix+".split_lp". See SplitLandingPadPredecessors for more
236 /// details on this case.
238 /// This currently updates the LLVM IR, DominatorTree, LoopInfo, and LCCSA but
239 /// no other analyses. In particular, it does not preserve LoopSimplify
240 /// (because it's complicated to handle the case where one of the edges being
241 /// split is an exit of a loop with other exits).
242 BasicBlock
*SplitBlockPredecessors(BasicBlock
*BB
, ArrayRef
<BasicBlock
*> Preds
,
244 DominatorTree
*DT
= nullptr,
245 LoopInfo
*LI
= nullptr,
246 MemorySSAUpdater
*MSSAU
= nullptr,
247 bool PreserveLCSSA
= false);
249 /// This method transforms the landing pad, OrigBB, by introducing two new basic
250 /// blocks into the function. One of those new basic blocks gets the
251 /// predecessors listed in Preds. The other basic block gets the remaining
252 /// predecessors of OrigBB. The landingpad instruction OrigBB is clone into both
253 /// of the new basic blocks. The new blocks are given the suffixes 'Suffix1' and
254 /// 'Suffix2', and are returned in the NewBBs vector.
256 /// This currently updates the LLVM IR, DominatorTree, LoopInfo, and LCCSA but
257 /// no other analyses. In particular, it does not preserve LoopSimplify
258 /// (because it's complicated to handle the case where one of the edges being
259 /// split is an exit of a loop with other exits).
260 void SplitLandingPadPredecessors(
261 BasicBlock
*OrigBB
, ArrayRef
<BasicBlock
*> Preds
, const char *Suffix
,
262 const char *Suffix2
, SmallVectorImpl
<BasicBlock
*> &NewBBs
,
263 DominatorTree
*DT
= nullptr, LoopInfo
*LI
= nullptr,
264 MemorySSAUpdater
*MSSAU
= nullptr, bool PreserveLCSSA
= false);
266 /// This method duplicates the specified return instruction into a predecessor
267 /// which ends in an unconditional branch. If the return instruction returns a
268 /// value defined by a PHI, propagate the right value into the return. It
269 /// returns the new return instruction in the predecessor.
270 ReturnInst
*FoldReturnIntoUncondBranch(ReturnInst
*RI
, BasicBlock
*BB
,
272 DomTreeUpdater
*DTU
= nullptr);
274 /// Split the containing block at the specified instruction - everything before
275 /// SplitBefore stays in the old basic block, and the rest of the instructions
276 /// in the BB are moved to a new block. The two blocks are connected by a
277 /// conditional branch (with value of Cmp being the condition).
289 /// If \p ThenBlock is not specified, a new block will be created for it.
290 /// If \p Unreachable is true, the newly created block will end with
291 /// UnreachableInst, otherwise it branches to Tail.
292 /// Returns the NewBasicBlock's terminator.
294 /// Updates DT and LI if given.
295 Instruction
*SplitBlockAndInsertIfThen(Value
*Cond
, Instruction
*SplitBefore
,
297 MDNode
*BranchWeights
= nullptr,
298 DominatorTree
*DT
= nullptr,
299 LoopInfo
*LI
= nullptr,
300 BasicBlock
*ThenBlock
= nullptr);
302 /// SplitBlockAndInsertIfThenElse is similar to SplitBlockAndInsertIfThen,
303 /// but also creates the ElseBlock.
316 void SplitBlockAndInsertIfThenElse(Value
*Cond
, Instruction
*SplitBefore
,
317 Instruction
**ThenTerm
,
318 Instruction
**ElseTerm
,
319 MDNode
*BranchWeights
= nullptr);
321 /// Check whether BB is the merge point of a if-region.
322 /// If so, return the boolean condition that determines which entry into
323 /// BB will be taken. Also, return by references the block that will be
324 /// entered from if the condition is true, and the block that will be
325 /// entered if the condition is false.
327 /// This does no checking to see if the true/false blocks have large or unsavory
328 /// instructions in them.
329 Value
*GetIfCondition(BasicBlock
*BB
, BasicBlock
*&IfTrue
,
330 BasicBlock
*&IfFalse
);
332 // Split critical edges where the source of the edge is an indirectbr
333 // instruction. This isn't always possible, but we can handle some easy cases.
334 // This is useful because MI is unable to split such critical edges,
335 // which means it will not be able to sink instructions along those edges.
336 // This is especially painful for indirect branches with many successors, where
337 // we end up having to prepare all outgoing values in the origin block.
339 // Our normal algorithm for splitting critical edges requires us to update
340 // the outgoing edges of the edge origin block, but for an indirectbr this
341 // is hard, since it would require finding and updating the block addresses
342 // the indirect branch uses. But if a block only has a single indirectbr
343 // predecessor, with the others being regular branches, we can do it in a
345 // Say we have A -> D, B -> D, I -> D where only I -> D is an indirectbr.
346 // We can split D into D0 and D1, where D0 contains only the PHIs from D,
347 // and D1 is the D block body. We can then duplicate D0 as D0A and D0B, and
348 // create the following structure:
349 // A -> D0A, B -> D0A, I -> D0B, D0A -> D1, D0B -> D1
350 // If BPI and BFI aren't non-null, BPI/BFI will be updated accordingly.
351 bool SplitIndirectBrCriticalEdges(Function
&F
,
352 BranchProbabilityInfo
*BPI
= nullptr,
353 BlockFrequencyInfo
*BFI
= nullptr);
355 } // end namespace llvm
357 #endif // LLVM_TRANSFORMS_UTILS_BASICBLOCKUTILS_H