1 //===- llvm/BasicBlock.h - Represent a basic block in the VM ----*- C++ -*-===//
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 // This file contains the declaration of the BasicBlock class.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef LLVM_IR_BASICBLOCK_H
14 #define LLVM_IR_BASICBLOCK_H
15 
16 #include "llvm-c/Types.h"
17 #include "llvm/ADT/Twine.h"
18 #include "llvm/ADT/ilist.h"
19 #include "llvm/ADT/ilist_node.h"
20 #include "llvm/ADT/iterator.h"
21 #include "llvm/ADT/iterator_range.h"
22 #include "llvm/IR/Instruction.h"
23 #include "llvm/IR/SymbolTableListTraits.h"
24 #include "llvm/IR/Value.h"
25 #include "llvm/Support/CBindingWrapping.h"
26 #include "llvm/Support/Casting.h"
27 #include "llvm/Support/Compiler.h"
28 #include <cassert>
29 #include <cstddef>
30 #include <iterator>
31 
32 namespace llvm {
33 
34 class CallInst;
35 class Function;
36 class LandingPadInst;
37 class LLVMContext;
38 class Module;
39 class PHINode;
40 class ValueSymbolTable;
41 
42 /// LLVM Basic Block Representation
43 ///
44 /// This represents a single basic block in LLVM. A basic block is simply a
45 /// container of instructions that execute sequentially. Basic blocks are Values
46 /// because they are referenced by instructions such as branches and switch
47 /// tables. The type of a BasicBlock is "Type::LabelTy" because the basic block
48 /// represents a label to which a branch can jump.
49 ///
50 /// A well formed basic block is formed of a list of non-terminating
51 /// instructions followed by a single terminator instruction. Terminator
52 /// instructions may not occur in the middle of basic blocks, and must terminate
53 /// the blocks. The BasicBlock class allows malformed basic blocks to occur
54 /// because it may be useful in the intermediate stage of constructing or
55 /// modifying a program. However, the verifier will ensure that basic blocks are
56 /// "well formed".
57 class BasicBlock final : public Value, // Basic blocks are data objects also
58                          public ilist_node_with_parent<BasicBlock, Function> {
59 public:
60   using InstListType = SymbolTableList<Instruction>;
61 
62 private:
63   friend class BlockAddress;
64   friend class SymbolTableListTraits<BasicBlock>;
65 
66   InstListType InstList;
67   Function *Parent;
68 
69   void setParent(Function *parent);
70 
71   /// Constructor.
72   ///
73   /// If the function parameter is specified, the basic block is automatically
74   /// inserted at either the end of the function (if InsertBefore is null), or
75   /// before the specified basic block.
76   explicit BasicBlock(LLVMContext &C, const Twine &Name = "",
77                       Function *Parent = nullptr,
78                       BasicBlock *InsertBefore = nullptr);
79 
80 public:
81   BasicBlock(const BasicBlock &) = delete;
82   BasicBlock &operator=(const BasicBlock &) = delete;
83   ~BasicBlock();
84 
85   /// Get the context in which this basic block lives.
86   LLVMContext &getContext() const;
87 
88   /// Instruction iterators...
89   using iterator = InstListType::iterator;
90   using const_iterator = InstListType::const_iterator;
91   using reverse_iterator = InstListType::reverse_iterator;
92   using const_reverse_iterator = InstListType::const_reverse_iterator;
93 
94   /// Creates a new BasicBlock.
95   ///
96   /// If the Parent parameter is specified, the basic block is automatically
97   /// inserted at either the end of the function (if InsertBefore is 0), or
98   /// before the specified basic block.
99   static BasicBlock *Create(LLVMContext &Context, const Twine &Name = "",
100                             Function *Parent = nullptr,
101                             BasicBlock *InsertBefore = nullptr) {
102     return new BasicBlock(Context, Name, Parent, InsertBefore);
103   }
104 
105   /// Return the enclosing method, or null if none.
106   const Function *getParent() const { return Parent; }
107         Function *getParent()       { return Parent; }
108 
109   /// Return the module owning the function this basic block belongs to, or
110   /// nullptr if the function does not have a module.
111   ///
112   /// Note: this is undefined behavior if the block does not have a parent.
113   const Module *getModule() const;
114   Module *getModule() {
115     return const_cast<Module *>(
116                             static_cast<const BasicBlock *>(this)->getModule());
117   }
118 
119   /// Returns the terminator instruction if the block is well formed or null
120   /// if the block is not well formed.
121   const Instruction *getTerminator() const LLVM_READONLY;
122   Instruction *getTerminator() {
123     return const_cast<Instruction *>(
124         static_cast<const BasicBlock *>(this)->getTerminator());
125   }
126 
127   /// Returns the call instruction calling \@llvm.experimental.deoptimize
128   /// prior to the terminating return instruction of this basic block, if such
129   /// a call is present.  Otherwise, returns null.
130   const CallInst *getTerminatingDeoptimizeCall() const;
131   CallInst *getTerminatingDeoptimizeCall() {
132     return const_cast<CallInst *>(
133          static_cast<const BasicBlock *>(this)->getTerminatingDeoptimizeCall());
134   }
135 
136   /// Returns the call instruction marked 'musttail' prior to the terminating
137   /// return instruction of this basic block, if such a call is present.
138   /// Otherwise, returns null.
139   const CallInst *getTerminatingMustTailCall() const;
140   CallInst *getTerminatingMustTailCall() {
141     return const_cast<CallInst *>(
142            static_cast<const BasicBlock *>(this)->getTerminatingMustTailCall());
143   }
144 
145   /// Returns a pointer to the first instruction in this block that is not a
146   /// PHINode instruction.
147   ///
148   /// When adding instructions to the beginning of the basic block, they should
149   /// be added before the returned value, not before the first instruction,
150   /// which might be PHI. Returns 0 is there's no non-PHI instruction.
151   const Instruction* getFirstNonPHI() const;
152   Instruction* getFirstNonPHI() {
153     return const_cast<Instruction *>(
154                        static_cast<const BasicBlock *>(this)->getFirstNonPHI());
155   }
156 
157   /// Returns a pointer to the first instruction in this block that is not a
158   /// PHINode or a debug intrinsic.
159   const Instruction* getFirstNonPHIOrDbg() const;
160   Instruction* getFirstNonPHIOrDbg() {
161     return const_cast<Instruction *>(
162                   static_cast<const BasicBlock *>(this)->getFirstNonPHIOrDbg());
163   }
164 
165   /// Returns a pointer to the first instruction in this block that is not a
166   /// PHINode, a debug intrinsic, or a lifetime intrinsic.
167   const Instruction* getFirstNonPHIOrDbgOrLifetime() const;
168   Instruction* getFirstNonPHIOrDbgOrLifetime() {
169     return const_cast<Instruction *>(
170         static_cast<const BasicBlock *>(this)->getFirstNonPHIOrDbgOrLifetime());
171   }
172 
173   /// Returns an iterator to the first instruction in this block that is
174   /// suitable for inserting a non-PHI instruction.
175   ///
176   /// In particular, it skips all PHIs and LandingPad instructions.
177   const_iterator getFirstInsertionPt() const;
178   iterator getFirstInsertionPt() {
179     return static_cast<const BasicBlock *>(this)
180                                           ->getFirstInsertionPt().getNonConst();
181   }
182 
183   /// Return a const iterator range over the instructions in the block, skipping
184   /// any debug instructions.
185   iterator_range<filter_iterator<BasicBlock::const_iterator,
186                                  std::function<bool(const Instruction &)>>>
187   instructionsWithoutDebug() const;
188 
189   /// Return an iterator range over the instructions in the block, skipping any
190   /// debug instructions.
191   iterator_range<filter_iterator<BasicBlock::iterator,
192                                  std::function<bool(Instruction &)>>>
193   instructionsWithoutDebug();
194 
195   /// Return the size of the basic block ignoring debug instructions
196   filter_iterator<BasicBlock::const_iterator,
197                   std::function<bool(const Instruction &)>>::difference_type
198   sizeWithoutDebug() const;
199 
200   /// Unlink 'this' from the containing function, but do not delete it.
201   void removeFromParent();
202 
203   /// Unlink 'this' from the containing function and delete it.
204   ///
205   // \returns an iterator pointing to the element after the erased one.
206   SymbolTableList<BasicBlock>::iterator eraseFromParent();
207 
208   /// Unlink this basic block from its current function and insert it into
209   /// the function that \p MovePos lives in, right before \p MovePos.
210   void moveBefore(BasicBlock *MovePos);
211 
212   /// Unlink this basic block from its current function and insert it
213   /// right after \p MovePos in the function \p MovePos lives in.
214   void moveAfter(BasicBlock *MovePos);
215 
216   /// Insert unlinked basic block into a function.
217   ///
218   /// Inserts an unlinked basic block into \c Parent.  If \c InsertBefore is
219   /// provided, inserts before that basic block, otherwise inserts at the end.
220   ///
221   /// \pre \a getParent() is \c nullptr.
222   void insertInto(Function *Parent, BasicBlock *InsertBefore = nullptr);
223 
224   /// Return the predecessor of this block if it has a single predecessor
225   /// block. Otherwise return a null pointer.
226   const BasicBlock *getSinglePredecessor() const;
227   BasicBlock *getSinglePredecessor() {
228     return const_cast<BasicBlock *>(
229                  static_cast<const BasicBlock *>(this)->getSinglePredecessor());
230   }
231 
232   /// Return the predecessor of this block if it has a unique predecessor
233   /// block. Otherwise return a null pointer.
234   ///
235   /// Note that unique predecessor doesn't mean single edge, there can be
236   /// multiple edges from the unique predecessor to this block (for example a
237   /// switch statement with multiple cases having the same destination).
238   const BasicBlock *getUniquePredecessor() const;
239   BasicBlock *getUniquePredecessor() {
240     return const_cast<BasicBlock *>(
241                  static_cast<const BasicBlock *>(this)->getUniquePredecessor());
242   }
243 
244   /// Return true if this block has exactly N predecessors.
245   bool hasNPredecessors(unsigned N) const;
246 
247   /// Return true if this block has N predecessors or more.
248   bool hasNPredecessorsOrMore(unsigned N) const;
249 
250   /// Return the successor of this block if it has a single successor.
251   /// Otherwise return a null pointer.
252   ///
253   /// This method is analogous to getSinglePredecessor above.
254   const BasicBlock *getSingleSuccessor() const;
255   BasicBlock *getSingleSuccessor() {
256     return const_cast<BasicBlock *>(
257                    static_cast<const BasicBlock *>(this)->getSingleSuccessor());
258   }
259 
260   /// Return the successor of this block if it has a unique successor.
261   /// Otherwise return a null pointer.
262   ///
263   /// This method is analogous to getUniquePredecessor above.
264   const BasicBlock *getUniqueSuccessor() const;
265   BasicBlock *getUniqueSuccessor() {
266     return const_cast<BasicBlock *>(
267                    static_cast<const BasicBlock *>(this)->getUniqueSuccessor());
268   }
269 
270   //===--------------------------------------------------------------------===//
271   /// Instruction iterator methods
272   ///
273   inline iterator                begin()       { return InstList.begin(); }
274   inline const_iterator          begin() const { return InstList.begin(); }
275   inline iterator                end  ()       { return InstList.end();   }
276   inline const_iterator          end  () const { return InstList.end();   }
277 
278   inline reverse_iterator        rbegin()       { return InstList.rbegin(); }
279   inline const_reverse_iterator  rbegin() const { return InstList.rbegin(); }
280   inline reverse_iterator        rend  ()       { return InstList.rend();   }
281   inline const_reverse_iterator  rend  () const { return InstList.rend();   }
282 
283   inline size_t                   size() const { return InstList.size();  }
284   inline bool                    empty() const { return InstList.empty(); }
285   inline const Instruction      &front() const { return InstList.front(); }
286   inline       Instruction      &front()       { return InstList.front(); }
287   inline const Instruction       &back() const { return InstList.back();  }
288   inline       Instruction       &back()       { return InstList.back();  }
289 
290   /// Iterator to walk just the phi nodes in the basic block.
291   template <typename PHINodeT = PHINode, typename BBIteratorT = iterator>
292   class phi_iterator_impl
293       : public iterator_facade_base<phi_iterator_impl<PHINodeT, BBIteratorT>,
294                                     std::forward_iterator_tag, PHINodeT> {
295     friend BasicBlock;
296 
297     PHINodeT *PN;
298 
299     phi_iterator_impl(PHINodeT *PN) : PN(PN) {}
300 
301   public:
302     // Allow default construction to build variables, but this doesn't build
303     // a useful iterator.
304     phi_iterator_impl() = default;
305 
306     // Allow conversion between instantiations where valid.
307     template <typename PHINodeU, typename BBIteratorU>
308     phi_iterator_impl(const phi_iterator_impl<PHINodeU, BBIteratorU> &Arg)
309         : PN(Arg.PN) {}
310 
311     bool operator==(const phi_iterator_impl &Arg) const { return PN == Arg.PN; }
312 
313     PHINodeT &operator*() const { return *PN; }
314 
315     using phi_iterator_impl::iterator_facade_base::operator++;
316     phi_iterator_impl &operator++() {
317       assert(PN && "Cannot increment the end iterator!");
318       PN = dyn_cast<PHINodeT>(std::next(BBIteratorT(PN)));
319       return *this;
320     }
321   };
322   using phi_iterator = phi_iterator_impl<>;
323   using const_phi_iterator =
324       phi_iterator_impl<const PHINode, BasicBlock::const_iterator>;
325 
326   /// Returns a range that iterates over the phis in the basic block.
327   ///
328   /// Note that this cannot be used with basic blocks that have no terminator.
329   iterator_range<const_phi_iterator> phis() const {
330     return const_cast<BasicBlock *>(this)->phis();
331   }
332   iterator_range<phi_iterator> phis();
333 
334   /// Return the underlying instruction list container.
335   ///
336   /// Currently you need to access the underlying instruction list container
337   /// directly if you want to modify it.
338   const InstListType &getInstList() const { return InstList; }
339         InstListType &getInstList()       { return InstList; }
340 
341   /// Returns a pointer to a member of the instruction list.
342   static InstListType BasicBlock::*getSublistAccess(Instruction*) {
343     return &BasicBlock::InstList;
344   }
345 
346   /// Returns a pointer to the symbol table if one exists.
347   ValueSymbolTable *getValueSymbolTable();
348 
349   /// Methods for support type inquiry through isa, cast, and dyn_cast.
350   static bool classof(const Value *V) {
351     return V->getValueID() == Value::BasicBlockVal;
352   }
353 
354   /// Cause all subinstructions to "let go" of all the references that said
355   /// subinstructions are maintaining.
356   ///
357   /// This allows one to 'delete' a whole class at a time, even though there may
358   /// be circular references... first all references are dropped, and all use
359   /// counts go to zero.  Then everything is delete'd for real.  Note that no
360   /// operations are valid on an object that has "dropped all references",
361   /// except operator delete.
362   void dropAllReferences();
363 
364   /// Notify the BasicBlock that the predecessor \p Pred is no longer able to
365   /// reach it.
366   ///
367   /// This is actually not used to update the Predecessor list, but is actually
368   /// used to update the PHI nodes that reside in the block.  Note that this
369   /// should be called while the predecessor still refers to this block.
370   void removePredecessor(BasicBlock *Pred, bool KeepOneInputPHIs = false);
371 
372   bool canSplitPredecessors() const;
373 
374   /// Split the basic block into two basic blocks at the specified instruction.
375   ///
376   /// Note that all instructions BEFORE the specified iterator stay as part of
377   /// the original basic block, an unconditional branch is added to the original
378   /// BB, and the rest of the instructions in the BB are moved to the new BB,
379   /// including the old terminator.  The newly formed BasicBlock is returned.
380   /// This function invalidates the specified iterator.
381   ///
382   /// Note that this only works on well formed basic blocks (must have a
383   /// terminator), and 'I' must not be the end of instruction list (which would
384   /// cause a degenerate basic block to be formed, having a terminator inside of
385   /// the basic block).
386   ///
387   /// Also note that this doesn't preserve any passes. To split blocks while
388   /// keeping loop information consistent, use the SplitBlock utility function.
389   BasicBlock *splitBasicBlock(iterator I, const Twine &BBName = "");
390   BasicBlock *splitBasicBlock(Instruction *I, const Twine &BBName = "") {
391     return splitBasicBlock(I->getIterator(), BBName);
392   }
393 
394   /// Returns true if there are any uses of this basic block other than
395   /// direct branches, switches, etc. to it.
396   bool hasAddressTaken() const { return getSubclassDataFromValue() != 0; }
397 
398   /// Update all phi nodes in this basic block to refer to basic block \p New
399   /// instead of basic block \p Old.
400   void replacePhiUsesWith(BasicBlock *Old, BasicBlock *New);
401 
402   /// Update all phi nodes in this basic block's successors to refer to basic
403   /// block \p New instead of basic block \p Old.
404   void replaceSuccessorsPhiUsesWith(BasicBlock *Old, BasicBlock *New);
405 
406   /// Update all phi nodes in this basic block's successors to refer to basic
407   /// block \p New instead of to it.
408   void replaceSuccessorsPhiUsesWith(BasicBlock *New);
409 
410   /// Return true if this basic block is an exception handling block.
411   bool isEHPad() const { return getFirstNonPHI()->isEHPad(); }
412 
413   /// Return true if this basic block is a landing pad.
414   ///
415   /// Being a ``landing pad'' means that the basic block is the destination of
416   /// the 'unwind' edge of an invoke instruction.
417   bool isLandingPad() const;
418 
419   /// Return the landingpad instruction associated with the landing pad.
420   const LandingPadInst *getLandingPadInst() const;
421   LandingPadInst *getLandingPadInst() {
422     return const_cast<LandingPadInst *>(
423                     static_cast<const BasicBlock *>(this)->getLandingPadInst());
424   }
425 
426   /// Return true if it is legal to hoist instructions into this block.
427   bool isLegalToHoistInto() const;
428 
429   Optional<uint64_t> getIrrLoopHeaderWeight() const;
430 
431 private:
432   /// Increment the internal refcount of the number of BlockAddresses
433   /// referencing this BasicBlock by \p Amt.
434   ///
435   /// This is almost always 0, sometimes one possibly, but almost never 2, and
436   /// inconceivably 3 or more.
437   void AdjustBlockAddressRefCount(int Amt) {
438     setValueSubclassData(getSubclassDataFromValue()+Amt);
439     assert((int)(signed char)getSubclassDataFromValue() >= 0 &&
440            "Refcount wrap-around");
441   }
442 
443   /// Shadow Value::setValueSubclassData with a private forwarding method so
444   /// that any future subclasses cannot accidentally use it.
445   void setValueSubclassData(unsigned short D) {
446     Value::setValueSubclassData(D);
447   }
448 };
449 
450 // Create wrappers for C Binding types (see CBindingWrapping.h).
451 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(BasicBlock, LLVMBasicBlockRef)
452 
453 /// Advance \p It while it points to a debug instruction and return the result.
454 /// This assumes that \p It is not at the end of a block.
455 BasicBlock::iterator skipDebugIntrinsics(BasicBlock::iterator It);
456 
457 } // end namespace llvm
458 
459 #endif // LLVM_IR_BASICBLOCK_H
460