blob: 69555af50e1fe3543d90ac8bcb7c12c59e64c69d [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- llvm/BasicBlock.h - Represent a basic block in the VM ----*- C++ -*-===//
2//
Andrew Walbran16937d02019-10-22 13:54:20 +01003// 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
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01006//
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
32namespace llvm {
33
34class CallInst;
35class Function;
36class LandingPadInst;
37class LLVMContext;
38class Module;
39class PHINode;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010040class ValueSymbolTable;
41
Andrew Scullcdfcccc2018-10-05 20:58:37 +010042/// LLVM Basic Block Representation
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010043///
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
Andrew Walbran16937d02019-10-22 13:54:20 +010051/// 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".
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010057class BasicBlock final : public Value, // Basic blocks are data objects also
58 public ilist_node_with_parent<BasicBlock, Function> {
59public:
60 using InstListType = SymbolTableList<Instruction>;
61
62private:
63 friend class BlockAddress;
64 friend class SymbolTableListTraits<BasicBlock>;
65
66 InstListType InstList;
67 Function *Parent;
68
69 void setParent(Function *parent);
70
Andrew Scullcdfcccc2018-10-05 20:58:37 +010071 /// Constructor.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010072 ///
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
80public:
81 BasicBlock(const BasicBlock &) = delete;
82 BasicBlock &operator=(const BasicBlock &) = delete;
83 ~BasicBlock();
84
Andrew Scullcdfcccc2018-10-05 20:58:37 +010085 /// Get the context in which this basic block lives.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010086 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
Andrew Scullcdfcccc2018-10-05 20:58:37 +010094 /// Creates a new BasicBlock.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010095 ///
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
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100105 /// Return the enclosing method, or null if none.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100106 const Function *getParent() const { return Parent; }
107 Function *getParent() { return Parent; }
108
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100109 /// Return the module owning the function this basic block belongs to, or
110 /// nullptr if the function does not have a module.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100111 ///
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
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100119 /// Returns the terminator instruction if the block is well formed or null
120 /// if the block is not well formed.
Andrew Walbran16937d02019-10-22 13:54:20 +0100121 const Instruction *getTerminator() const LLVM_READONLY;
122 Instruction *getTerminator() {
123 return const_cast<Instruction *>(
124 static_cast<const BasicBlock *>(this)->getTerminator());
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100125 }
126
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100127 /// 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.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100130 const CallInst *getTerminatingDeoptimizeCall() const;
131 CallInst *getTerminatingDeoptimizeCall() {
132 return const_cast<CallInst *>(
133 static_cast<const BasicBlock *>(this)->getTerminatingDeoptimizeCall());
134 }
135
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100136 /// 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.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100139 const CallInst *getTerminatingMustTailCall() const;
140 CallInst *getTerminatingMustTailCall() {
141 return const_cast<CallInst *>(
142 static_cast<const BasicBlock *>(this)->getTerminatingMustTailCall());
143 }
144
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100145 /// Returns a pointer to the first instruction in this block that is not a
146 /// PHINode instruction.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100147 ///
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
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100157 /// Returns a pointer to the first instruction in this block that is not a
158 /// PHINode or a debug intrinsic.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100159 const Instruction* getFirstNonPHIOrDbg() const;
160 Instruction* getFirstNonPHIOrDbg() {
161 return const_cast<Instruction *>(
162 static_cast<const BasicBlock *>(this)->getFirstNonPHIOrDbg());
163 }
164
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100165 /// Returns a pointer to the first instruction in this block that is not a
166 /// PHINode, a debug intrinsic, or a lifetime intrinsic.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100167 const Instruction* getFirstNonPHIOrDbgOrLifetime() const;
168 Instruction* getFirstNonPHIOrDbgOrLifetime() {
169 return const_cast<Instruction *>(
170 static_cast<const BasicBlock *>(this)->getFirstNonPHIOrDbgOrLifetime());
171 }
172
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100173 /// Returns an iterator to the first instruction in this block that is
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100174 /// 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
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100183 /// 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 /// Unlink 'this' from the containing function, but do not delete it.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100196 void removeFromParent();
197
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100198 /// Unlink 'this' from the containing function and delete it.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100199 ///
200 // \returns an iterator pointing to the element after the erased one.
201 SymbolTableList<BasicBlock>::iterator eraseFromParent();
202
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100203 /// Unlink this basic block from its current function and insert it into
204 /// the function that \p MovePos lives in, right before \p MovePos.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100205 void moveBefore(BasicBlock *MovePos);
206
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100207 /// Unlink this basic block from its current function and insert it
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100208 /// right after \p MovePos in the function \p MovePos lives in.
209 void moveAfter(BasicBlock *MovePos);
210
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100211 /// Insert unlinked basic block into a function.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100212 ///
213 /// Inserts an unlinked basic block into \c Parent. If \c InsertBefore is
214 /// provided, inserts before that basic block, otherwise inserts at the end.
215 ///
216 /// \pre \a getParent() is \c nullptr.
217 void insertInto(Function *Parent, BasicBlock *InsertBefore = nullptr);
218
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100219 /// Return the predecessor of this block if it has a single predecessor
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100220 /// block. Otherwise return a null pointer.
221 const BasicBlock *getSinglePredecessor() const;
222 BasicBlock *getSinglePredecessor() {
223 return const_cast<BasicBlock *>(
224 static_cast<const BasicBlock *>(this)->getSinglePredecessor());
225 }
226
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100227 /// Return the predecessor of this block if it has a unique predecessor
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100228 /// block. Otherwise return a null pointer.
229 ///
230 /// Note that unique predecessor doesn't mean single edge, there can be
231 /// multiple edges from the unique predecessor to this block (for example a
232 /// switch statement with multiple cases having the same destination).
233 const BasicBlock *getUniquePredecessor() const;
234 BasicBlock *getUniquePredecessor() {
235 return const_cast<BasicBlock *>(
236 static_cast<const BasicBlock *>(this)->getUniquePredecessor());
237 }
238
Andrew Walbran16937d02019-10-22 13:54:20 +0100239 /// Return true if this block has exactly N predecessors.
240 bool hasNPredecessors(unsigned N) const;
241
242 /// Return true if this block has N predecessors or more.
243 bool hasNPredecessorsOrMore(unsigned N) const;
244
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100245 /// Return the successor of this block if it has a single successor.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100246 /// Otherwise return a null pointer.
247 ///
248 /// This method is analogous to getSinglePredecessor above.
249 const BasicBlock *getSingleSuccessor() const;
250 BasicBlock *getSingleSuccessor() {
251 return const_cast<BasicBlock *>(
252 static_cast<const BasicBlock *>(this)->getSingleSuccessor());
253 }
254
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100255 /// Return the successor of this block if it has a unique successor.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100256 /// Otherwise return a null pointer.
257 ///
258 /// This method is analogous to getUniquePredecessor above.
259 const BasicBlock *getUniqueSuccessor() const;
260 BasicBlock *getUniqueSuccessor() {
261 return const_cast<BasicBlock *>(
262 static_cast<const BasicBlock *>(this)->getUniqueSuccessor());
263 }
264
265 //===--------------------------------------------------------------------===//
266 /// Instruction iterator methods
267 ///
268 inline iterator begin() { return InstList.begin(); }
269 inline const_iterator begin() const { return InstList.begin(); }
270 inline iterator end () { return InstList.end(); }
271 inline const_iterator end () const { return InstList.end(); }
272
273 inline reverse_iterator rbegin() { return InstList.rbegin(); }
274 inline const_reverse_iterator rbegin() const { return InstList.rbegin(); }
275 inline reverse_iterator rend () { return InstList.rend(); }
276 inline const_reverse_iterator rend () const { return InstList.rend(); }
277
278 inline size_t size() const { return InstList.size(); }
279 inline bool empty() const { return InstList.empty(); }
280 inline const Instruction &front() const { return InstList.front(); }
281 inline Instruction &front() { return InstList.front(); }
282 inline const Instruction &back() const { return InstList.back(); }
283 inline Instruction &back() { return InstList.back(); }
284
285 /// Iterator to walk just the phi nodes in the basic block.
286 template <typename PHINodeT = PHINode, typename BBIteratorT = iterator>
287 class phi_iterator_impl
288 : public iterator_facade_base<phi_iterator_impl<PHINodeT, BBIteratorT>,
289 std::forward_iterator_tag, PHINodeT> {
290 friend BasicBlock;
291
292 PHINodeT *PN;
293
294 phi_iterator_impl(PHINodeT *PN) : PN(PN) {}
295
296 public:
297 // Allow default construction to build variables, but this doesn't build
298 // a useful iterator.
299 phi_iterator_impl() = default;
300
301 // Allow conversion between instantiations where valid.
302 template <typename PHINodeU, typename BBIteratorU>
303 phi_iterator_impl(const phi_iterator_impl<PHINodeU, BBIteratorU> &Arg)
304 : PN(Arg.PN) {}
305
306 bool operator==(const phi_iterator_impl &Arg) const { return PN == Arg.PN; }
307
308 PHINodeT &operator*() const { return *PN; }
309
310 using phi_iterator_impl::iterator_facade_base::operator++;
311 phi_iterator_impl &operator++() {
312 assert(PN && "Cannot increment the end iterator!");
313 PN = dyn_cast<PHINodeT>(std::next(BBIteratorT(PN)));
314 return *this;
315 }
316 };
317 using phi_iterator = phi_iterator_impl<>;
318 using const_phi_iterator =
319 phi_iterator_impl<const PHINode, BasicBlock::const_iterator>;
320
321 /// Returns a range that iterates over the phis in the basic block.
322 ///
323 /// Note that this cannot be used with basic blocks that have no terminator.
324 iterator_range<const_phi_iterator> phis() const {
325 return const_cast<BasicBlock *>(this)->phis();
326 }
327 iterator_range<phi_iterator> phis();
328
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100329 /// Return the underlying instruction list container.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100330 ///
331 /// Currently you need to access the underlying instruction list container
332 /// directly if you want to modify it.
333 const InstListType &getInstList() const { return InstList; }
334 InstListType &getInstList() { return InstList; }
335
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100336 /// Returns a pointer to a member of the instruction list.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100337 static InstListType BasicBlock::*getSublistAccess(Instruction*) {
338 return &BasicBlock::InstList;
339 }
340
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100341 /// Returns a pointer to the symbol table if one exists.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100342 ValueSymbolTable *getValueSymbolTable();
343
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100344 /// Methods for support type inquiry through isa, cast, and dyn_cast.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100345 static bool classof(const Value *V) {
346 return V->getValueID() == Value::BasicBlockVal;
347 }
348
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100349 /// Cause all subinstructions to "let go" of all the references that said
350 /// subinstructions are maintaining.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100351 ///
352 /// This allows one to 'delete' a whole class at a time, even though there may
353 /// be circular references... first all references are dropped, and all use
354 /// counts go to zero. Then everything is delete'd for real. Note that no
355 /// operations are valid on an object that has "dropped all references",
356 /// except operator delete.
357 void dropAllReferences();
358
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100359 /// Notify the BasicBlock that the predecessor \p Pred is no longer able to
360 /// reach it.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100361 ///
362 /// This is actually not used to update the Predecessor list, but is actually
363 /// used to update the PHI nodes that reside in the block. Note that this
364 /// should be called while the predecessor still refers to this block.
Andrew Walbran16937d02019-10-22 13:54:20 +0100365 void removePredecessor(BasicBlock *Pred, bool KeepOneInputPHIs = false);
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100366
367 bool canSplitPredecessors() const;
368
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100369 /// Split the basic block into two basic blocks at the specified instruction.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100370 ///
371 /// Note that all instructions BEFORE the specified iterator stay as part of
372 /// the original basic block, an unconditional branch is added to the original
373 /// BB, and the rest of the instructions in the BB are moved to the new BB,
374 /// including the old terminator. The newly formed BasicBlock is returned.
375 /// This function invalidates the specified iterator.
376 ///
377 /// Note that this only works on well formed basic blocks (must have a
378 /// terminator), and 'I' must not be the end of instruction list (which would
379 /// cause a degenerate basic block to be formed, having a terminator inside of
380 /// the basic block).
381 ///
382 /// Also note that this doesn't preserve any passes. To split blocks while
383 /// keeping loop information consistent, use the SplitBlock utility function.
384 BasicBlock *splitBasicBlock(iterator I, const Twine &BBName = "");
385 BasicBlock *splitBasicBlock(Instruction *I, const Twine &BBName = "") {
386 return splitBasicBlock(I->getIterator(), BBName);
387 }
388
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100389 /// Returns true if there are any uses of this basic block other than
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100390 /// direct branches, switches, etc. to it.
391 bool hasAddressTaken() const { return getSubclassDataFromValue() != 0; }
392
Andrew Walbran3d2c1972020-04-07 12:24:26 +0100393 /// Update all phi nodes in this basic block to refer to basic block \p New
394 /// instead of basic block \p Old.
395 void replacePhiUsesWith(BasicBlock *Old, BasicBlock *New);
396
397 /// Update all phi nodes in this basic block's successors to refer to basic
398 /// block \p New instead of basic block \p Old.
399 void replaceSuccessorsPhiUsesWith(BasicBlock *Old, BasicBlock *New);
400
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100401 /// Update all phi nodes in this basic block's successors to refer to basic
402 /// block \p New instead of to it.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100403 void replaceSuccessorsPhiUsesWith(BasicBlock *New);
404
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100405 /// Return true if this basic block is an exception handling block.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100406 bool isEHPad() const { return getFirstNonPHI()->isEHPad(); }
407
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100408 /// Return true if this basic block is a landing pad.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100409 ///
410 /// Being a ``landing pad'' means that the basic block is the destination of
411 /// the 'unwind' edge of an invoke instruction.
412 bool isLandingPad() const;
413
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100414 /// Return the landingpad instruction associated with the landing pad.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100415 const LandingPadInst *getLandingPadInst() const;
416 LandingPadInst *getLandingPadInst() {
417 return const_cast<LandingPadInst *>(
418 static_cast<const BasicBlock *>(this)->getLandingPadInst());
419 }
420
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100421 /// Return true if it is legal to hoist instructions into this block.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100422 bool isLegalToHoistInto() const;
423
424 Optional<uint64_t> getIrrLoopHeaderWeight() const;
425
426private:
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100427 /// Increment the internal refcount of the number of BlockAddresses
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100428 /// referencing this BasicBlock by \p Amt.
429 ///
430 /// This is almost always 0, sometimes one possibly, but almost never 2, and
431 /// inconceivably 3 or more.
432 void AdjustBlockAddressRefCount(int Amt) {
433 setValueSubclassData(getSubclassDataFromValue()+Amt);
434 assert((int)(signed char)getSubclassDataFromValue() >= 0 &&
435 "Refcount wrap-around");
436 }
437
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100438 /// Shadow Value::setValueSubclassData with a private forwarding method so
439 /// that any future subclasses cannot accidentally use it.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100440 void setValueSubclassData(unsigned short D) {
441 Value::setValueSubclassData(D);
442 }
443};
444
445// Create wrappers for C Binding types (see CBindingWrapping.h).
446DEFINE_SIMPLE_CONVERSION_FUNCTIONS(BasicBlock, LLVMBasicBlockRef)
447
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100448/// Advance \p It while it points to a debug instruction and return the result.
449/// This assumes that \p It is not at the end of a block.
450BasicBlock::iterator skipDebugIntrinsics(BasicBlock::iterator It);
451
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100452} // end namespace llvm
453
454#endif // LLVM_IR_BASICBLOCK_H