[Alignment][NFC] Use Align with TargetLowering::setMinFunctionAlignment
[llvm-core.git] / include / llvm / CodeGen / MachineBasicBlock.h
blobe3947f4a8f158983617e9fa4162921f589f0f3cc
1 //===- llvm/CodeGen/MachineBasicBlock.h -------------------------*- 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 // Collect the sequence of machine instructions for a basic block.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_CODEGEN_MACHINEBASICBLOCK_H
14 #define LLVM_CODEGEN_MACHINEBASICBLOCK_H
16 #include "llvm/ADT/GraphTraits.h"
17 #include "llvm/ADT/ilist.h"
18 #include "llvm/ADT/ilist_node.h"
19 #include "llvm/ADT/iterator_range.h"
20 #include "llvm/ADT/simple_ilist.h"
21 #include "llvm/CodeGen/MachineInstr.h"
22 #include "llvm/CodeGen/MachineInstrBundleIterator.h"
23 #include "llvm/IR/DebugLoc.h"
24 #include "llvm/MC/LaneBitmask.h"
25 #include "llvm/MC/MCRegisterInfo.h"
26 #include "llvm/Support/BranchProbability.h"
27 #include "llvm/Support/Printable.h"
28 #include <cassert>
29 #include <cstdint>
30 #include <functional>
31 #include <iterator>
32 #include <string>
33 #include <vector>
35 namespace llvm {
37 class BasicBlock;
38 class MachineFunction;
39 class MCSymbol;
40 class ModuleSlotTracker;
41 class Pass;
42 class SlotIndexes;
43 class StringRef;
44 class raw_ostream;
45 class TargetRegisterClass;
46 class TargetRegisterInfo;
48 template <> struct ilist_traits<MachineInstr> {
49 private:
50 friend class MachineBasicBlock; // Set by the owning MachineBasicBlock.
52 MachineBasicBlock *Parent;
54 using instr_iterator =
55 simple_ilist<MachineInstr, ilist_sentinel_tracking<true>>::iterator;
57 public:
58 void addNodeToList(MachineInstr *N);
59 void removeNodeFromList(MachineInstr *N);
60 void transferNodesFromList(ilist_traits &FromList, instr_iterator First,
61 instr_iterator Last);
62 void deleteNode(MachineInstr *MI);
65 class MachineBasicBlock
66 : public ilist_node_with_parent<MachineBasicBlock, MachineFunction> {
67 public:
68 /// Pair of physical register and lane mask.
69 /// This is not simply a std::pair typedef because the members should be named
70 /// clearly as they both have an integer type.
71 struct RegisterMaskPair {
72 public:
73 MCPhysReg PhysReg;
74 LaneBitmask LaneMask;
76 RegisterMaskPair(MCPhysReg PhysReg, LaneBitmask LaneMask)
77 : PhysReg(PhysReg), LaneMask(LaneMask) {}
80 private:
81 using Instructions = ilist<MachineInstr, ilist_sentinel_tracking<true>>;
83 Instructions Insts;
84 const BasicBlock *BB;
85 int Number;
86 MachineFunction *xParent;
88 /// Keep track of the predecessor / successor basic blocks.
89 std::vector<MachineBasicBlock *> Predecessors;
90 std::vector<MachineBasicBlock *> Successors;
92 /// Keep track of the probabilities to the successors. This vector has the
93 /// same order as Successors, or it is empty if we don't use it (disable
94 /// optimization).
95 std::vector<BranchProbability> Probs;
96 using probability_iterator = std::vector<BranchProbability>::iterator;
97 using const_probability_iterator =
98 std::vector<BranchProbability>::const_iterator;
100 Optional<uint64_t> IrrLoopHeaderWeight;
102 /// Keep track of the physical registers that are livein of the basicblock.
103 using LiveInVector = std::vector<RegisterMaskPair>;
104 LiveInVector LiveIns;
106 /// Alignment of the basic block. Zero if the basic block does not need to be
107 /// aligned. The alignment is specified as log2(bytes).
108 unsigned LogAlignment = 0;
110 /// Indicate that this basic block is entered via an exception handler.
111 bool IsEHPad = false;
113 /// Indicate that this basic block is potentially the target of an indirect
114 /// branch.
115 bool AddressTaken = false;
117 /// Indicate that this basic block needs its symbol be emitted regardless of
118 /// whether the flow just falls-through to it.
119 bool LabelMustBeEmitted = false;
121 /// Indicate that this basic block is the entry block of an EH scope, i.e.,
122 /// the block that used to have a catchpad or cleanuppad instruction in the
123 /// LLVM IR.
124 bool IsEHScopeEntry = false;
126 /// Indicate that this basic block is the entry block of an EH funclet.
127 bool IsEHFuncletEntry = false;
129 /// Indicate that this basic block is the entry block of a cleanup funclet.
130 bool IsCleanupFuncletEntry = false;
132 /// since getSymbol is a relatively heavy-weight operation, the symbol
133 /// is only computed once and is cached.
134 mutable MCSymbol *CachedMCSymbol = nullptr;
136 // Intrusive list support
137 MachineBasicBlock() = default;
139 explicit MachineBasicBlock(MachineFunction &MF, const BasicBlock *BB);
141 ~MachineBasicBlock();
143 // MachineBasicBlocks are allocated and owned by MachineFunction.
144 friend class MachineFunction;
146 public:
147 /// Return the LLVM basic block that this instance corresponded to originally.
148 /// Note that this may be NULL if this instance does not correspond directly
149 /// to an LLVM basic block.
150 const BasicBlock *getBasicBlock() const { return BB; }
152 /// Return the name of the corresponding LLVM basic block, or an empty string.
153 StringRef getName() const;
155 /// Return a formatted string to identify this block and its parent function.
156 std::string getFullName() const;
158 /// Test whether this block is potentially the target of an indirect branch.
159 bool hasAddressTaken() const { return AddressTaken; }
161 /// Set this block to reflect that it potentially is the target of an indirect
162 /// branch.
163 void setHasAddressTaken() { AddressTaken = true; }
165 /// Test whether this block must have its label emitted.
166 bool hasLabelMustBeEmitted() const { return LabelMustBeEmitted; }
168 /// Set this block to reflect that, regardless how we flow to it, we need
169 /// its label be emitted.
170 void setLabelMustBeEmitted() { LabelMustBeEmitted = true; }
172 /// Return the MachineFunction containing this basic block.
173 const MachineFunction *getParent() const { return xParent; }
174 MachineFunction *getParent() { return xParent; }
176 using instr_iterator = Instructions::iterator;
177 using const_instr_iterator = Instructions::const_iterator;
178 using reverse_instr_iterator = Instructions::reverse_iterator;
179 using const_reverse_instr_iterator = Instructions::const_reverse_iterator;
181 using iterator = MachineInstrBundleIterator<MachineInstr>;
182 using const_iterator = MachineInstrBundleIterator<const MachineInstr>;
183 using reverse_iterator = MachineInstrBundleIterator<MachineInstr, true>;
184 using const_reverse_iterator =
185 MachineInstrBundleIterator<const MachineInstr, true>;
187 unsigned size() const { return (unsigned)Insts.size(); }
188 bool empty() const { return Insts.empty(); }
190 MachineInstr &instr_front() { return Insts.front(); }
191 MachineInstr &instr_back() { return Insts.back(); }
192 const MachineInstr &instr_front() const { return Insts.front(); }
193 const MachineInstr &instr_back() const { return Insts.back(); }
195 MachineInstr &front() { return Insts.front(); }
196 MachineInstr &back() { return *--end(); }
197 const MachineInstr &front() const { return Insts.front(); }
198 const MachineInstr &back() const { return *--end(); }
200 instr_iterator instr_begin() { return Insts.begin(); }
201 const_instr_iterator instr_begin() const { return Insts.begin(); }
202 instr_iterator instr_end() { return Insts.end(); }
203 const_instr_iterator instr_end() const { return Insts.end(); }
204 reverse_instr_iterator instr_rbegin() { return Insts.rbegin(); }
205 const_reverse_instr_iterator instr_rbegin() const { return Insts.rbegin(); }
206 reverse_instr_iterator instr_rend () { return Insts.rend(); }
207 const_reverse_instr_iterator instr_rend () const { return Insts.rend(); }
209 using instr_range = iterator_range<instr_iterator>;
210 using const_instr_range = iterator_range<const_instr_iterator>;
211 instr_range instrs() { return instr_range(instr_begin(), instr_end()); }
212 const_instr_range instrs() const {
213 return const_instr_range(instr_begin(), instr_end());
216 iterator begin() { return instr_begin(); }
217 const_iterator begin() const { return instr_begin(); }
218 iterator end () { return instr_end(); }
219 const_iterator end () const { return instr_end(); }
220 reverse_iterator rbegin() {
221 return reverse_iterator::getAtBundleBegin(instr_rbegin());
223 const_reverse_iterator rbegin() const {
224 return const_reverse_iterator::getAtBundleBegin(instr_rbegin());
226 reverse_iterator rend() { return reverse_iterator(instr_rend()); }
227 const_reverse_iterator rend() const {
228 return const_reverse_iterator(instr_rend());
231 /// Support for MachineInstr::getNextNode().
232 static Instructions MachineBasicBlock::*getSublistAccess(MachineInstr *) {
233 return &MachineBasicBlock::Insts;
236 inline iterator_range<iterator> terminators() {
237 return make_range(getFirstTerminator(), end());
239 inline iterator_range<const_iterator> terminators() const {
240 return make_range(getFirstTerminator(), end());
243 /// Returns a range that iterates over the phis in the basic block.
244 inline iterator_range<iterator> phis() {
245 return make_range(begin(), getFirstNonPHI());
247 inline iterator_range<const_iterator> phis() const {
248 return const_cast<MachineBasicBlock *>(this)->phis();
251 // Machine-CFG iterators
252 using pred_iterator = std::vector<MachineBasicBlock *>::iterator;
253 using const_pred_iterator = std::vector<MachineBasicBlock *>::const_iterator;
254 using succ_iterator = std::vector<MachineBasicBlock *>::iterator;
255 using const_succ_iterator = std::vector<MachineBasicBlock *>::const_iterator;
256 using pred_reverse_iterator =
257 std::vector<MachineBasicBlock *>::reverse_iterator;
258 using const_pred_reverse_iterator =
259 std::vector<MachineBasicBlock *>::const_reverse_iterator;
260 using succ_reverse_iterator =
261 std::vector<MachineBasicBlock *>::reverse_iterator;
262 using const_succ_reverse_iterator =
263 std::vector<MachineBasicBlock *>::const_reverse_iterator;
264 pred_iterator pred_begin() { return Predecessors.begin(); }
265 const_pred_iterator pred_begin() const { return Predecessors.begin(); }
266 pred_iterator pred_end() { return Predecessors.end(); }
267 const_pred_iterator pred_end() const { return Predecessors.end(); }
268 pred_reverse_iterator pred_rbegin()
269 { return Predecessors.rbegin();}
270 const_pred_reverse_iterator pred_rbegin() const
271 { return Predecessors.rbegin();}
272 pred_reverse_iterator pred_rend()
273 { return Predecessors.rend(); }
274 const_pred_reverse_iterator pred_rend() const
275 { return Predecessors.rend(); }
276 unsigned pred_size() const {
277 return (unsigned)Predecessors.size();
279 bool pred_empty() const { return Predecessors.empty(); }
280 succ_iterator succ_begin() { return Successors.begin(); }
281 const_succ_iterator succ_begin() const { return Successors.begin(); }
282 succ_iterator succ_end() { return Successors.end(); }
283 const_succ_iterator succ_end() const { return Successors.end(); }
284 succ_reverse_iterator succ_rbegin()
285 { return Successors.rbegin(); }
286 const_succ_reverse_iterator succ_rbegin() const
287 { return Successors.rbegin(); }
288 succ_reverse_iterator succ_rend()
289 { return Successors.rend(); }
290 const_succ_reverse_iterator succ_rend() const
291 { return Successors.rend(); }
292 unsigned succ_size() const {
293 return (unsigned)Successors.size();
295 bool succ_empty() const { return Successors.empty(); }
297 inline iterator_range<pred_iterator> predecessors() {
298 return make_range(pred_begin(), pred_end());
300 inline iterator_range<const_pred_iterator> predecessors() const {
301 return make_range(pred_begin(), pred_end());
303 inline iterator_range<succ_iterator> successors() {
304 return make_range(succ_begin(), succ_end());
306 inline iterator_range<const_succ_iterator> successors() const {
307 return make_range(succ_begin(), succ_end());
310 // LiveIn management methods.
312 /// Adds the specified register as a live in. Note that it is an error to add
313 /// the same register to the same set more than once unless the intention is
314 /// to call sortUniqueLiveIns after all registers are added.
315 void addLiveIn(MCRegister PhysReg,
316 LaneBitmask LaneMask = LaneBitmask::getAll()) {
317 LiveIns.push_back(RegisterMaskPair(PhysReg, LaneMask));
319 void addLiveIn(const RegisterMaskPair &RegMaskPair) {
320 LiveIns.push_back(RegMaskPair);
323 /// Sorts and uniques the LiveIns vector. It can be significantly faster to do
324 /// this than repeatedly calling isLiveIn before calling addLiveIn for every
325 /// LiveIn insertion.
326 void sortUniqueLiveIns();
328 /// Clear live in list.
329 void clearLiveIns();
331 /// Add PhysReg as live in to this block, and ensure that there is a copy of
332 /// PhysReg to a virtual register of class RC. Return the virtual register
333 /// that is a copy of the live in PhysReg.
334 unsigned addLiveIn(MCRegister PhysReg, const TargetRegisterClass *RC);
336 /// Remove the specified register from the live in set.
337 void removeLiveIn(MCPhysReg Reg,
338 LaneBitmask LaneMask = LaneBitmask::getAll());
340 /// Return true if the specified register is in the live in set.
341 bool isLiveIn(MCPhysReg Reg,
342 LaneBitmask LaneMask = LaneBitmask::getAll()) const;
344 // Iteration support for live in sets. These sets are kept in sorted
345 // order by their register number.
346 using livein_iterator = LiveInVector::const_iterator;
347 #ifndef NDEBUG
348 /// Unlike livein_begin, this method does not check that the liveness
349 /// information is accurate. Still for debug purposes it may be useful
350 /// to have iterators that won't assert if the liveness information
351 /// is not current.
352 livein_iterator livein_begin_dbg() const { return LiveIns.begin(); }
353 iterator_range<livein_iterator> liveins_dbg() const {
354 return make_range(livein_begin_dbg(), livein_end());
356 #endif
357 livein_iterator livein_begin() const;
358 livein_iterator livein_end() const { return LiveIns.end(); }
359 bool livein_empty() const { return LiveIns.empty(); }
360 iterator_range<livein_iterator> liveins() const {
361 return make_range(livein_begin(), livein_end());
364 /// Remove entry from the livein set and return iterator to the next.
365 livein_iterator removeLiveIn(livein_iterator I);
367 /// Get the clobber mask for the start of this basic block. Funclets use this
368 /// to prevent register allocation across funclet transitions.
369 const uint32_t *getBeginClobberMask(const TargetRegisterInfo *TRI) const;
371 /// Get the clobber mask for the end of the basic block.
372 /// \see getBeginClobberMask()
373 const uint32_t *getEndClobberMask(const TargetRegisterInfo *TRI) const;
375 /// Return alignment of the basic block. The alignment is specified as
376 /// log2(bytes).
377 unsigned getLogAlignment() const { return LogAlignment; }
379 /// Set alignment of the basic block. The alignment is specified as
380 /// log2(bytes).
381 void setLogAlignment(unsigned A) { LogAlignment = A; }
383 /// Returns true if the block is a landing pad. That is this basic block is
384 /// entered via an exception handler.
385 bool isEHPad() const { return IsEHPad; }
387 /// Indicates the block is a landing pad. That is this basic block is entered
388 /// via an exception handler.
389 void setIsEHPad(bool V = true) { IsEHPad = V; }
391 bool hasEHPadSuccessor() const;
393 /// Returns true if this is the entry block of an EH scope, i.e., the block
394 /// that used to have a catchpad or cleanuppad instruction in the LLVM IR.
395 bool isEHScopeEntry() const { return IsEHScopeEntry; }
397 /// Indicates if this is the entry block of an EH scope, i.e., the block that
398 /// that used to have a catchpad or cleanuppad instruction in the LLVM IR.
399 void setIsEHScopeEntry(bool V = true) { IsEHScopeEntry = V; }
401 /// Returns true if this is the entry block of an EH funclet.
402 bool isEHFuncletEntry() const { return IsEHFuncletEntry; }
404 /// Indicates if this is the entry block of an EH funclet.
405 void setIsEHFuncletEntry(bool V = true) { IsEHFuncletEntry = V; }
407 /// Returns true if this is the entry block of a cleanup funclet.
408 bool isCleanupFuncletEntry() const { return IsCleanupFuncletEntry; }
410 /// Indicates if this is the entry block of a cleanup funclet.
411 void setIsCleanupFuncletEntry(bool V = true) { IsCleanupFuncletEntry = V; }
413 /// Returns true if it is legal to hoist instructions into this block.
414 bool isLegalToHoistInto() const;
416 // Code Layout methods.
418 /// Move 'this' block before or after the specified block. This only moves
419 /// the block, it does not modify the CFG or adjust potential fall-throughs at
420 /// the end of the block.
421 void moveBefore(MachineBasicBlock *NewAfter);
422 void moveAfter(MachineBasicBlock *NewBefore);
424 /// Update the terminator instructions in block to account for changes to the
425 /// layout. If the block previously used a fallthrough, it may now need a
426 /// branch, and if it previously used branching it may now be able to use a
427 /// fallthrough.
428 void updateTerminator();
430 // Machine-CFG mutators
432 /// Add Succ as a successor of this MachineBasicBlock. The Predecessors list
433 /// of Succ is automatically updated. PROB parameter is stored in
434 /// Probabilities list. The default probability is set as unknown. Mixing
435 /// known and unknown probabilities in successor list is not allowed. When all
436 /// successors have unknown probabilities, 1 / N is returned as the
437 /// probability for each successor, where N is the number of successors.
439 /// Note that duplicate Machine CFG edges are not allowed.
440 void addSuccessor(MachineBasicBlock *Succ,
441 BranchProbability Prob = BranchProbability::getUnknown());
443 /// Add Succ as a successor of this MachineBasicBlock. The Predecessors list
444 /// of Succ is automatically updated. The probability is not provided because
445 /// BPI is not available (e.g. -O0 is used), in which case edge probabilities
446 /// won't be used. Using this interface can save some space.
447 void addSuccessorWithoutProb(MachineBasicBlock *Succ);
449 /// Set successor probability of a given iterator.
450 void setSuccProbability(succ_iterator I, BranchProbability Prob);
452 /// Normalize probabilities of all successors so that the sum of them becomes
453 /// one. This is usually done when the current update on this MBB is done, and
454 /// the sum of its successors' probabilities is not guaranteed to be one. The
455 /// user is responsible for the correct use of this function.
456 /// MBB::removeSuccessor() has an option to do this automatically.
457 void normalizeSuccProbs() {
458 BranchProbability::normalizeProbabilities(Probs.begin(), Probs.end());
461 /// Validate successors' probabilities and check if the sum of them is
462 /// approximate one. This only works in DEBUG mode.
463 void validateSuccProbs() const;
465 /// Remove successor from the successors list of this MachineBasicBlock. The
466 /// Predecessors list of Succ is automatically updated.
467 /// If NormalizeSuccProbs is true, then normalize successors' probabilities
468 /// after the successor is removed.
469 void removeSuccessor(MachineBasicBlock *Succ,
470 bool NormalizeSuccProbs = false);
472 /// Remove specified successor from the successors list of this
473 /// MachineBasicBlock. The Predecessors list of Succ is automatically updated.
474 /// If NormalizeSuccProbs is true, then normalize successors' probabilities
475 /// after the successor is removed.
476 /// Return the iterator to the element after the one removed.
477 succ_iterator removeSuccessor(succ_iterator I,
478 bool NormalizeSuccProbs = false);
480 /// Replace successor OLD with NEW and update probability info.
481 void replaceSuccessor(MachineBasicBlock *Old, MachineBasicBlock *New);
483 /// Copy a successor (and any probability info) from original block to this
484 /// block's. Uses an iterator into the original blocks successors.
486 /// This is useful when doing a partial clone of successors. Afterward, the
487 /// probabilities may need to be normalized.
488 void copySuccessor(MachineBasicBlock *Orig, succ_iterator I);
490 /// Split the old successor into old plus new and updates the probability
491 /// info.
492 void splitSuccessor(MachineBasicBlock *Old, MachineBasicBlock *New,
493 bool NormalizeSuccProbs = false);
495 /// Transfers all the successors from MBB to this machine basic block (i.e.,
496 /// copies all the successors FromMBB and remove all the successors from
497 /// FromMBB).
498 void transferSuccessors(MachineBasicBlock *FromMBB);
500 /// Transfers all the successors, as in transferSuccessors, and update PHI
501 /// operands in the successor blocks which refer to FromMBB to refer to this.
502 void transferSuccessorsAndUpdatePHIs(MachineBasicBlock *FromMBB);
504 /// Return true if any of the successors have probabilities attached to them.
505 bool hasSuccessorProbabilities() const { return !Probs.empty(); }
507 /// Return true if the specified MBB is a predecessor of this block.
508 bool isPredecessor(const MachineBasicBlock *MBB) const;
510 /// Return true if the specified MBB is a successor of this block.
511 bool isSuccessor(const MachineBasicBlock *MBB) const;
513 /// Return true if the specified MBB will be emitted immediately after this
514 /// block, such that if this block exits by falling through, control will
515 /// transfer to the specified MBB. Note that MBB need not be a successor at
516 /// all, for example if this block ends with an unconditional branch to some
517 /// other block.
518 bool isLayoutSuccessor(const MachineBasicBlock *MBB) const;
520 /// Return the fallthrough block if the block can implicitly
521 /// transfer control to the block after it by falling off the end of
522 /// it. This should return null if it can reach the block after
523 /// it, but it uses an explicit branch to do so (e.g., a table
524 /// jump). Non-null return is a conservative answer.
525 MachineBasicBlock *getFallThrough();
527 /// Return true if the block can implicitly transfer control to the
528 /// block after it by falling off the end of it. This should return
529 /// false if it can reach the block after it, but it uses an
530 /// explicit branch to do so (e.g., a table jump). True is a
531 /// conservative answer.
532 bool canFallThrough();
534 /// Returns a pointer to the first instruction in this block that is not a
535 /// PHINode instruction. When adding instructions to the beginning of the
536 /// basic block, they should be added before the returned value, not before
537 /// the first instruction, which might be PHI.
538 /// Returns end() is there's no non-PHI instruction.
539 iterator getFirstNonPHI();
541 /// Return the first instruction in MBB after I that is not a PHI or a label.
542 /// This is the correct point to insert lowered copies at the beginning of a
543 /// basic block that must be before any debugging information.
544 iterator SkipPHIsAndLabels(iterator I);
546 /// Return the first instruction in MBB after I that is not a PHI, label or
547 /// debug. This is the correct point to insert copies at the beginning of a
548 /// basic block.
549 iterator SkipPHIsLabelsAndDebug(iterator I);
551 /// Returns an iterator to the first terminator instruction of this basic
552 /// block. If a terminator does not exist, it returns end().
553 iterator getFirstTerminator();
554 const_iterator getFirstTerminator() const {
555 return const_cast<MachineBasicBlock *>(this)->getFirstTerminator();
558 /// Same getFirstTerminator but it ignores bundles and return an
559 /// instr_iterator instead.
560 instr_iterator getFirstInstrTerminator();
562 /// Returns an iterator to the first non-debug instruction in the basic block,
563 /// or end().
564 iterator getFirstNonDebugInstr();
565 const_iterator getFirstNonDebugInstr() const {
566 return const_cast<MachineBasicBlock *>(this)->getFirstNonDebugInstr();
569 /// Returns an iterator to the last non-debug instruction in the basic block,
570 /// or end().
571 iterator getLastNonDebugInstr();
572 const_iterator getLastNonDebugInstr() const {
573 return const_cast<MachineBasicBlock *>(this)->getLastNonDebugInstr();
576 /// Convenience function that returns true if the block ends in a return
577 /// instruction.
578 bool isReturnBlock() const {
579 return !empty() && back().isReturn();
582 /// Convenience function that returns true if the bock ends in a EH scope
583 /// return instruction.
584 bool isEHScopeReturnBlock() const {
585 return !empty() && back().isEHScopeReturn();
588 /// Split the critical edge from this block to the given successor block, and
589 /// return the newly created block, or null if splitting is not possible.
591 /// This function updates LiveVariables, MachineDominatorTree, and
592 /// MachineLoopInfo, as applicable.
593 MachineBasicBlock *SplitCriticalEdge(MachineBasicBlock *Succ, Pass &P);
595 /// Check if the edge between this block and the given successor \p
596 /// Succ, can be split. If this returns true a subsequent call to
597 /// SplitCriticalEdge is guaranteed to return a valid basic block if
598 /// no changes occurred in the meantime.
599 bool canSplitCriticalEdge(const MachineBasicBlock *Succ) const;
601 void pop_front() { Insts.pop_front(); }
602 void pop_back() { Insts.pop_back(); }
603 void push_back(MachineInstr *MI) { Insts.push_back(MI); }
605 /// Insert MI into the instruction list before I, possibly inside a bundle.
607 /// If the insertion point is inside a bundle, MI will be added to the bundle,
608 /// otherwise MI will not be added to any bundle. That means this function
609 /// alone can't be used to prepend or append instructions to bundles. See
610 /// MIBundleBuilder::insert() for a more reliable way of doing that.
611 instr_iterator insert(instr_iterator I, MachineInstr *M);
613 /// Insert a range of instructions into the instruction list before I.
614 template<typename IT>
615 void insert(iterator I, IT S, IT E) {
616 assert((I == end() || I->getParent() == this) &&
617 "iterator points outside of basic block");
618 Insts.insert(I.getInstrIterator(), S, E);
621 /// Insert MI into the instruction list before I.
622 iterator insert(iterator I, MachineInstr *MI) {
623 assert((I == end() || I->getParent() == this) &&
624 "iterator points outside of basic block");
625 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
626 "Cannot insert instruction with bundle flags");
627 return Insts.insert(I.getInstrIterator(), MI);
630 /// Insert MI into the instruction list after I.
631 iterator insertAfter(iterator I, MachineInstr *MI) {
632 assert((I == end() || I->getParent() == this) &&
633 "iterator points outside of basic block");
634 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
635 "Cannot insert instruction with bundle flags");
636 return Insts.insertAfter(I.getInstrIterator(), MI);
639 /// If I is bundled then insert MI into the instruction list after the end of
640 /// the bundle, otherwise insert MI immediately after I.
641 instr_iterator insertAfterBundle(instr_iterator I, MachineInstr *MI) {
642 assert((I == instr_end() || I->getParent() == this) &&
643 "iterator points outside of basic block");
644 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
645 "Cannot insert instruction with bundle flags");
646 while (I->isBundledWithSucc())
647 ++I;
648 return Insts.insertAfter(I, MI);
651 /// Remove an instruction from the instruction list and delete it.
653 /// If the instruction is part of a bundle, the other instructions in the
654 /// bundle will still be bundled after removing the single instruction.
655 instr_iterator erase(instr_iterator I);
657 /// Remove an instruction from the instruction list and delete it.
659 /// If the instruction is part of a bundle, the other instructions in the
660 /// bundle will still be bundled after removing the single instruction.
661 instr_iterator erase_instr(MachineInstr *I) {
662 return erase(instr_iterator(I));
665 /// Remove a range of instructions from the instruction list and delete them.
666 iterator erase(iterator I, iterator E) {
667 return Insts.erase(I.getInstrIterator(), E.getInstrIterator());
670 /// Remove an instruction or bundle from the instruction list and delete it.
672 /// If I points to a bundle of instructions, they are all erased.
673 iterator erase(iterator I) {
674 return erase(I, std::next(I));
677 /// Remove an instruction from the instruction list and delete it.
679 /// If I is the head of a bundle of instructions, the whole bundle will be
680 /// erased.
681 iterator erase(MachineInstr *I) {
682 return erase(iterator(I));
685 /// Remove the unbundled instruction from the instruction list without
686 /// deleting it.
688 /// This function can not be used to remove bundled instructions, use
689 /// remove_instr to remove individual instructions from a bundle.
690 MachineInstr *remove(MachineInstr *I) {
691 assert(!I->isBundled() && "Cannot remove bundled instructions");
692 return Insts.remove(instr_iterator(I));
695 /// Remove the possibly bundled instruction from the instruction list
696 /// without deleting it.
698 /// If the instruction is part of a bundle, the other instructions in the
699 /// bundle will still be bundled after removing the single instruction.
700 MachineInstr *remove_instr(MachineInstr *I);
702 void clear() {
703 Insts.clear();
706 /// Take an instruction from MBB 'Other' at the position From, and insert it
707 /// into this MBB right before 'Where'.
709 /// If From points to a bundle of instructions, the whole bundle is moved.
710 void splice(iterator Where, MachineBasicBlock *Other, iterator From) {
711 // The range splice() doesn't allow noop moves, but this one does.
712 if (Where != From)
713 splice(Where, Other, From, std::next(From));
716 /// Take a block of instructions from MBB 'Other' in the range [From, To),
717 /// and insert them into this MBB right before 'Where'.
719 /// The instruction at 'Where' must not be included in the range of
720 /// instructions to move.
721 void splice(iterator Where, MachineBasicBlock *Other,
722 iterator From, iterator To) {
723 Insts.splice(Where.getInstrIterator(), Other->Insts,
724 From.getInstrIterator(), To.getInstrIterator());
727 /// This method unlinks 'this' from the containing function, and returns it,
728 /// but does not delete it.
729 MachineBasicBlock *removeFromParent();
731 /// This method unlinks 'this' from the containing function and deletes it.
732 void eraseFromParent();
734 /// Given a machine basic block that branched to 'Old', change the code and
735 /// CFG so that it branches to 'New' instead.
736 void ReplaceUsesOfBlockWith(MachineBasicBlock *Old, MachineBasicBlock *New);
738 /// Update all phi nodes in this basic block to refer to basic block \p New
739 /// instead of basic block \p Old.
740 void replacePhiUsesWith(MachineBasicBlock *Old, MachineBasicBlock *New);
742 /// Various pieces of code can cause excess edges in the CFG to be inserted.
743 /// If we have proven that MBB can only branch to DestA and DestB, remove any
744 /// other MBB successors from the CFG. DestA and DestB can be null. Besides
745 /// DestA and DestB, retain other edges leading to LandingPads (currently
746 /// there can be only one; we don't check or require that here). Note it is
747 /// possible that DestA and/or DestB are LandingPads.
748 bool CorrectExtraCFGEdges(MachineBasicBlock *DestA,
749 MachineBasicBlock *DestB,
750 bool IsCond);
752 /// Find the next valid DebugLoc starting at MBBI, skipping any DBG_VALUE
753 /// and DBG_LABEL instructions. Return UnknownLoc if there is none.
754 DebugLoc findDebugLoc(instr_iterator MBBI);
755 DebugLoc findDebugLoc(iterator MBBI) {
756 return findDebugLoc(MBBI.getInstrIterator());
759 /// Find the previous valid DebugLoc preceding MBBI, skipping and DBG_VALUE
760 /// instructions. Return UnknownLoc if there is none.
761 DebugLoc findPrevDebugLoc(instr_iterator MBBI);
762 DebugLoc findPrevDebugLoc(iterator MBBI) {
763 return findPrevDebugLoc(MBBI.getInstrIterator());
766 /// Find and return the merged DebugLoc of the branch instructions of the
767 /// block. Return UnknownLoc if there is none.
768 DebugLoc findBranchDebugLoc();
770 /// Possible outcome of a register liveness query to computeRegisterLiveness()
771 enum LivenessQueryResult {
772 LQR_Live, ///< Register is known to be (at least partially) live.
773 LQR_Dead, ///< Register is known to be fully dead.
774 LQR_Unknown ///< Register liveness not decidable from local neighborhood.
777 /// Return whether (physical) register \p Reg has been defined and not
778 /// killed as of just before \p Before.
780 /// Search is localised to a neighborhood of \p Neighborhood instructions
781 /// before (searching for defs or kills) and \p Neighborhood instructions
782 /// after (searching just for defs) \p Before.
784 /// \p Reg must be a physical register.
785 LivenessQueryResult computeRegisterLiveness(const TargetRegisterInfo *TRI,
786 unsigned Reg,
787 const_iterator Before,
788 unsigned Neighborhood = 10) const;
790 // Debugging methods.
791 void dump() const;
792 void print(raw_ostream &OS, const SlotIndexes * = nullptr,
793 bool IsStandalone = true) const;
794 void print(raw_ostream &OS, ModuleSlotTracker &MST,
795 const SlotIndexes * = nullptr, bool IsStandalone = true) const;
797 // Printing method used by LoopInfo.
798 void printAsOperand(raw_ostream &OS, bool PrintType = true) const;
800 /// MachineBasicBlocks are uniquely numbered at the function level, unless
801 /// they're not in a MachineFunction yet, in which case this will return -1.
802 int getNumber() const { return Number; }
803 void setNumber(int N) { Number = N; }
805 /// Return the MCSymbol for this basic block.
806 MCSymbol *getSymbol() const;
808 Optional<uint64_t> getIrrLoopHeaderWeight() const {
809 return IrrLoopHeaderWeight;
812 void setIrrLoopHeaderWeight(uint64_t Weight) {
813 IrrLoopHeaderWeight = Weight;
816 private:
817 /// Return probability iterator corresponding to the I successor iterator.
818 probability_iterator getProbabilityIterator(succ_iterator I);
819 const_probability_iterator
820 getProbabilityIterator(const_succ_iterator I) const;
822 friend class MachineBranchProbabilityInfo;
823 friend class MIPrinter;
825 /// Return probability of the edge from this block to MBB. This method should
826 /// NOT be called directly, but by using getEdgeProbability method from
827 /// MachineBranchProbabilityInfo class.
828 BranchProbability getSuccProbability(const_succ_iterator Succ) const;
830 // Methods used to maintain doubly linked list of blocks...
831 friend struct ilist_callback_traits<MachineBasicBlock>;
833 // Machine-CFG mutators
835 /// Add Pred as a predecessor of this MachineBasicBlock. Don't do this
836 /// unless you know what you're doing, because it doesn't update Pred's
837 /// successors list. Use Pred->addSuccessor instead.
838 void addPredecessor(MachineBasicBlock *Pred);
840 /// Remove Pred as a predecessor of this MachineBasicBlock. Don't do this
841 /// unless you know what you're doing, because it doesn't update Pred's
842 /// successors list. Use Pred->removeSuccessor instead.
843 void removePredecessor(MachineBasicBlock *Pred);
846 raw_ostream& operator<<(raw_ostream &OS, const MachineBasicBlock &MBB);
848 /// Prints a machine basic block reference.
850 /// The format is:
851 /// %bb.5 - a machine basic block with MBB.getNumber() == 5.
853 /// Usage: OS << printMBBReference(MBB) << '\n';
854 Printable printMBBReference(const MachineBasicBlock &MBB);
856 // This is useful when building IndexedMaps keyed on basic block pointers.
857 struct MBB2NumberFunctor {
858 using argument_type = const MachineBasicBlock *;
859 unsigned operator()(const MachineBasicBlock *MBB) const {
860 return MBB->getNumber();
864 //===--------------------------------------------------------------------===//
865 // GraphTraits specializations for machine basic block graphs (machine-CFGs)
866 //===--------------------------------------------------------------------===//
868 // Provide specializations of GraphTraits to be able to treat a
869 // MachineFunction as a graph of MachineBasicBlocks.
872 template <> struct GraphTraits<MachineBasicBlock *> {
873 using NodeRef = MachineBasicBlock *;
874 using ChildIteratorType = MachineBasicBlock::succ_iterator;
876 static NodeRef getEntryNode(MachineBasicBlock *BB) { return BB; }
877 static ChildIteratorType child_begin(NodeRef N) { return N->succ_begin(); }
878 static ChildIteratorType child_end(NodeRef N) { return N->succ_end(); }
881 template <> struct GraphTraits<const MachineBasicBlock *> {
882 using NodeRef = const MachineBasicBlock *;
883 using ChildIteratorType = MachineBasicBlock::const_succ_iterator;
885 static NodeRef getEntryNode(const MachineBasicBlock *BB) { return BB; }
886 static ChildIteratorType child_begin(NodeRef N) { return N->succ_begin(); }
887 static ChildIteratorType child_end(NodeRef N) { return N->succ_end(); }
890 // Provide specializations of GraphTraits to be able to treat a
891 // MachineFunction as a graph of MachineBasicBlocks and to walk it
892 // in inverse order. Inverse order for a function is considered
893 // to be when traversing the predecessor edges of a MBB
894 // instead of the successor edges.
896 template <> struct GraphTraits<Inverse<MachineBasicBlock*>> {
897 using NodeRef = MachineBasicBlock *;
898 using ChildIteratorType = MachineBasicBlock::pred_iterator;
900 static NodeRef getEntryNode(Inverse<MachineBasicBlock *> G) {
901 return G.Graph;
904 static ChildIteratorType child_begin(NodeRef N) { return N->pred_begin(); }
905 static ChildIteratorType child_end(NodeRef N) { return N->pred_end(); }
908 template <> struct GraphTraits<Inverse<const MachineBasicBlock*>> {
909 using NodeRef = const MachineBasicBlock *;
910 using ChildIteratorType = MachineBasicBlock::const_pred_iterator;
912 static NodeRef getEntryNode(Inverse<const MachineBasicBlock *> G) {
913 return G.Graph;
916 static ChildIteratorType child_begin(NodeRef N) { return N->pred_begin(); }
917 static ChildIteratorType child_end(NodeRef N) { return N->pred_end(); }
920 /// MachineInstrSpan provides an interface to get an iteration range
921 /// containing the instruction it was initialized with, along with all
922 /// those instructions inserted prior to or following that instruction
923 /// at some point after the MachineInstrSpan is constructed.
924 class MachineInstrSpan {
925 MachineBasicBlock &MBB;
926 MachineBasicBlock::iterator I, B, E;
928 public:
929 MachineInstrSpan(MachineBasicBlock::iterator I, MachineBasicBlock *BB)
930 : MBB(*BB), I(I), B(I == MBB.begin() ? MBB.end() : std::prev(I)),
931 E(std::next(I)) {
932 assert(I == BB->end() || I->getParent() == BB);
935 MachineBasicBlock::iterator begin() {
936 return B == MBB.end() ? MBB.begin() : std::next(B);
938 MachineBasicBlock::iterator end() { return E; }
939 bool empty() { return begin() == end(); }
941 MachineBasicBlock::iterator getInitial() { return I; }
944 /// Increment \p It until it points to a non-debug instruction or to \p End
945 /// and return the resulting iterator. This function should only be used
946 /// MachineBasicBlock::{iterator, const_iterator, instr_iterator,
947 /// const_instr_iterator} and the respective reverse iterators.
948 template<typename IterT>
949 inline IterT skipDebugInstructionsForward(IterT It, IterT End) {
950 while (It != End && It->isDebugInstr())
951 It++;
952 return It;
955 /// Decrement \p It until it points to a non-debug instruction or to \p Begin
956 /// and return the resulting iterator. This function should only be used
957 /// MachineBasicBlock::{iterator, const_iterator, instr_iterator,
958 /// const_instr_iterator} and the respective reverse iterators.
959 template<class IterT>
960 inline IterT skipDebugInstructionsBackward(IterT It, IterT Begin) {
961 while (It != Begin && It->isDebugInstr())
962 It--;
963 return It;
966 } // end namespace llvm
968 #endif // LLVM_CODEGEN_MACHINEBASICBLOCK_H