Alkis Evlogimenos | 14f3fe8 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 1 | //===-- llvm/CodeGen/MachineBasicBlock.cpp ----------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Alkis Evlogimenos | 14f3fe8 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Collect the sequence of machine instructions for a basic block. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "llvm/CodeGen/MachineBasicBlock.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/SmallPtrSet.h" |
Matthias Braun | f842297 | 2017-12-13 02:51:04 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/LiveIntervals.h" |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/LiveVariables.h" |
| 18 | #include "llvm/CodeGen/MachineDominators.h" |
Alkis Evlogimenos | 14f3fe8 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/MachineFunction.h" |
Jakob Stoklund Olesen | 533c3bf | 2013-07-03 23:56:20 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/MachineLoopInfo.h" |
Cameron Zwarich | b47fb38 | 2013-02-11 09:24:47 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Jakob Stoklund Olesen | b705023 | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/SlotIndexes.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/TargetInstrInfo.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 26 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Nico Weber | 432a388 | 2018-04-30 14:59:11 +0000 | [diff] [blame] | 27 | #include "llvm/Config/llvm-config.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 28 | #include "llvm/IR/BasicBlock.h" |
| 29 | #include "llvm/IR/DataLayout.h" |
Taewook Oh | 06a2128 | 2017-02-13 18:15:31 +0000 | [diff] [blame] | 30 | #include "llvm/IR/DebugInfoMetadata.h" |
Duncan P. N. Exon Smith | 32692154 | 2015-06-26 22:04:20 +0000 | [diff] [blame] | 31 | #include "llvm/IR/ModuleSlotTracker.h" |
Chris Lattner | d051af7 | 2010-01-26 04:55:51 +0000 | [diff] [blame] | 32 | #include "llvm/MC/MCAsmInfo.h" |
| 33 | #include "llvm/MC/MCContext.h" |
Cong Hou | 663dd01 | 2015-12-13 09:52:14 +0000 | [diff] [blame] | 34 | #include "llvm/Support/DataTypes.h" |
David Greene | 6c56cef | 2010-01-04 23:22:07 +0000 | [diff] [blame] | 35 | #include "llvm/Support/Debug.h" |
Daniel Dunbar | 796e43e | 2009-07-24 10:36:58 +0000 | [diff] [blame] | 36 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 37 | #include "llvm/Target/TargetMachine.h" |
Chris Lattner | 4336b87 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 38 | #include <algorithm> |
Alkis Evlogimenos | 14f3fe8 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 39 | using namespace llvm; |
| 40 | |
Chandler Carruth | e96dd89 | 2014-04-21 22:55:11 +0000 | [diff] [blame] | 41 | #define DEBUG_TYPE "codegen" |
| 42 | |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 43 | MachineBasicBlock::MachineBasicBlock(MachineFunction &MF, const BasicBlock *B) |
| 44 | : BB(B), Number(-1), xParent(&MF) { |
Dan Gohman | 804c95d | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 45 | Insts.Parent = this; |
Hiroshi Yamauchi | dce9def | 2017-11-02 22:26:51 +0000 | [diff] [blame] | 46 | if (B) |
| 47 | IrrLoopHeaderWeight = B->getIrrLoopHeaderWeight(); |
Tanya Lattner | 91fa3a9 | 2004-05-24 07:14:35 +0000 | [diff] [blame] | 48 | } |
Tanya Lattner | 91fa3a9 | 2004-05-24 07:14:35 +0000 | [diff] [blame] | 49 | |
Dan Gohman | 0ece943 | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 50 | MachineBasicBlock::~MachineBasicBlock() { |
Dan Gohman | 0ece943 | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Cong Hou | 2a02c1c | 2015-08-12 21:18:54 +0000 | [diff] [blame] | 53 | /// Return the MCSymbol for this basic block. |
Chris Lattner | 29bdac4 | 2010-03-13 21:04:28 +0000 | [diff] [blame] | 54 | MCSymbol *MachineBasicBlock::getSymbol() const { |
Eli Bendersky | 58b04b7 | 2013-04-22 21:21:08 +0000 | [diff] [blame] | 55 | if (!CachedMCSymbol) { |
| 56 | const MachineFunction *MF = getParent(); |
| 57 | MCContext &Ctx = MF->getContext(); |
Mehdi Amini | 36d33fc | 2016-10-01 06:46:33 +0000 | [diff] [blame] | 58 | auto Prefix = Ctx.getAsmInfo()->getPrivateLabelPrefix(); |
Reid Kleckner | b9204a5 | 2015-11-11 23:09:31 +0000 | [diff] [blame] | 59 | assert(getNumber() >= 0 && "cannot get label for unreachable MBB"); |
Jim Grosbach | 6f48200 | 2015-05-18 18:43:14 +0000 | [diff] [blame] | 60 | CachedMCSymbol = Ctx.getOrCreateSymbol(Twine(Prefix) + "BB" + |
Eli Bendersky | 58b04b7 | 2013-04-22 21:21:08 +0000 | [diff] [blame] | 61 | Twine(MF->getFunctionNumber()) + |
| 62 | "_" + Twine(getNumber())); |
| 63 | } |
| 64 | |
| 65 | return CachedMCSymbol; |
Chris Lattner | d051af7 | 2010-01-26 04:55:51 +0000 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | |
Chris Lattner | af119ca | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 69 | raw_ostream &llvm::operator<<(raw_ostream &OS, const MachineBasicBlock &MBB) { |
Daniel Dunbar | 796e43e | 2009-07-24 10:36:58 +0000 | [diff] [blame] | 70 | MBB.print(OS); |
| 71 | return OS; |
| 72 | } |
Tanya Lattner | 91fa3a9 | 2004-05-24 07:14:35 +0000 | [diff] [blame] | 73 | |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 74 | Printable llvm::printMBBReference(const MachineBasicBlock &MBB) { |
| 75 | return Printable([&MBB](raw_ostream &OS) { return MBB.printAsOperand(OS); }); |
| 76 | } |
| 77 | |
Cong Hou | 2a02c1c | 2015-08-12 21:18:54 +0000 | [diff] [blame] | 78 | /// When an MBB is added to an MF, we need to update the parent pointer of the |
| 79 | /// MBB, the MBB numbering, and any instructions in the MBB to be on the right |
| 80 | /// operand list for registers. |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 81 | /// |
| 82 | /// MBBs start out as #-1. When a MBB is added to a MachineFunction, it |
| 83 | /// gets the next available unique MBB number. If it is removed from a |
| 84 | /// MachineFunction, it goes back to being #-1. |
Duncan P. N. Exon Smith | f947c3a | 2016-08-30 18:40:47 +0000 | [diff] [blame] | 85 | void ilist_callback_traits<MachineBasicBlock>::addNodeToList( |
| 86 | MachineBasicBlock *N) { |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 87 | MachineFunction &MF = *N->getParent(); |
| 88 | N->Number = MF.addToMBBNumbering(N); |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 89 | |
| 90 | // Make sure the instructions have their operands in the reginfo lists. |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 91 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 92 | for (MachineBasicBlock::instr_iterator |
| 93 | I = N->instr_begin(), E = N->instr_end(); I != E; ++I) |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 94 | I->AddRegOperandsToUseLists(RegInfo); |
Brian Gaeke | cb5d22a | 2004-05-12 21:35:22 +0000 | [diff] [blame] | 95 | } |
| 96 | |
Duncan P. N. Exon Smith | f947c3a | 2016-08-30 18:40:47 +0000 | [diff] [blame] | 97 | void ilist_callback_traits<MachineBasicBlock>::removeNodeFromList( |
| 98 | MachineBasicBlock *N) { |
Chris Lattner | 574e716 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 99 | N->getParent()->removeFromMBBNumbering(N->Number); |
Brian Gaeke | cb5d22a | 2004-05-12 21:35:22 +0000 | [diff] [blame] | 100 | N->Number = -1; |
| 101 | } |
| 102 | |
Cong Hou | 2a02c1c | 2015-08-12 21:18:54 +0000 | [diff] [blame] | 103 | /// When we add an instruction to a basic block list, we update its parent |
| 104 | /// pointer and add its operands from reg use/def lists if appropriate. |
Chris Lattner | af119ca | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 105 | void ilist_traits<MachineInstr>::addNodeToList(MachineInstr *N) { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 106 | assert(!N->getParent() && "machine instruction already in a basic block"); |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 107 | N->setParent(Parent); |
Jakub Staszak | feadd43 | 2011-06-16 18:01:17 +0000 | [diff] [blame] | 108 | |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 109 | // Add the instruction's register operands to their corresponding |
| 110 | // use/def lists. |
| 111 | MachineFunction *MF = Parent->getParent(); |
| 112 | N->AddRegOperandsToUseLists(MF->getRegInfo()); |
Alkis Evlogimenos | 14f3fe8 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 113 | } |
| 114 | |
Cong Hou | 2a02c1c | 2015-08-12 21:18:54 +0000 | [diff] [blame] | 115 | /// When we remove an instruction from a basic block list, we update its parent |
| 116 | /// pointer and remove its operands from reg use/def lists if appropriate. |
Chris Lattner | af119ca | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 117 | void ilist_traits<MachineInstr>::removeNodeFromList(MachineInstr *N) { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 118 | assert(N->getParent() && "machine instruction not in a basic block"); |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 119 | |
| 120 | // Remove from the use/def lists. |
Justin Bogner | fdf9bf4 | 2017-10-10 23:50:49 +0000 | [diff] [blame] | 121 | if (MachineFunction *MF = N->getMF()) |
Jakob Stoklund Olesen | c4102d4 | 2012-08-09 22:49:37 +0000 | [diff] [blame] | 122 | N->RemoveRegOperandsFromUseLists(MF->getRegInfo()); |
Jakub Staszak | feadd43 | 2011-06-16 18:01:17 +0000 | [diff] [blame] | 123 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 124 | N->setParent(nullptr); |
Alkis Evlogimenos | 14f3fe8 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 125 | } |
| 126 | |
Cong Hou | 2a02c1c | 2015-08-12 21:18:54 +0000 | [diff] [blame] | 127 | /// When moving a range of instructions from one MBB list to another, we need to |
| 128 | /// update the parent pointers and the use/def lists. |
Duncan P. N. Exon Smith | cc9edac | 2016-09-11 16:38:18 +0000 | [diff] [blame] | 129 | void ilist_traits<MachineInstr>::transferNodesFromList(ilist_traits &FromList, |
| 130 | instr_iterator First, |
| 131 | instr_iterator Last) { |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 132 | assert(Parent->getParent() == FromList.Parent->getParent() && |
Dan Gohman | 804c95d | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 133 | "MachineInstr parent mismatch!"); |
Duncan P. N. Exon Smith | b7668d5 | 2016-08-30 18:00:45 +0000 | [diff] [blame] | 134 | assert(this != &FromList && "Called without a real transfer..."); |
| 135 | assert(Parent != FromList.Parent && "Two lists have the same parent?"); |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 136 | |
| 137 | // If splicing between two blocks within the same function, just update the |
| 138 | // parent pointers. |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 139 | for (; First != Last; ++First) |
| 140 | First->setParent(Parent); |
Alkis Evlogimenos | 14f3fe8 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 141 | } |
| 142 | |
Duncan P. N. Exon Smith | f947c3a | 2016-08-30 18:40:47 +0000 | [diff] [blame] | 143 | void ilist_traits<MachineInstr>::deleteNode(MachineInstr *MI) { |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 144 | assert(!MI->getParent() && "MI is still in a block!"); |
| 145 | Parent->getParent()->DeleteMachineInstr(MI); |
| 146 | } |
| 147 | |
Dan Gohman | 88c547e | 2010-07-07 14:33:51 +0000 | [diff] [blame] | 148 | MachineBasicBlock::iterator MachineBasicBlock::getFirstNonPHI() { |
Benjamin Kramer | baa41d4 | 2012-02-10 00:28:31 +0000 | [diff] [blame] | 149 | instr_iterator I = instr_begin(), E = instr_end(); |
| 150 | while (I != E && I->isPHI()) |
Dan Gohman | 88c547e | 2010-07-07 14:33:51 +0000 | [diff] [blame] | 151 | ++I; |
Akira Hatanaka | 6fe7aca | 2012-10-26 17:11:42 +0000 | [diff] [blame] | 152 | assert((I == E || !I->isInsideBundle()) && |
| 153 | "First non-phi MI cannot be inside a bundle!"); |
Dan Gohman | 88c547e | 2010-07-07 14:33:51 +0000 | [diff] [blame] | 154 | return I; |
| 155 | } |
| 156 | |
Jakob Stoklund Olesen | ef54185 | 2010-10-30 01:26:14 +0000 | [diff] [blame] | 157 | MachineBasicBlock::iterator |
| 158 | MachineBasicBlock::SkipPHIsAndLabels(MachineBasicBlock::iterator I) { |
Stanislav Mekhanoshin | 6ec3e3a | 2017-01-20 00:44:31 +0000 | [diff] [blame] | 159 | const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo(); |
| 160 | |
Benjamin Kramer | baa41d4 | 2012-02-10 00:28:31 +0000 | [diff] [blame] | 161 | iterator E = end(); |
Stanislav Mekhanoshin | 6ec3e3a | 2017-01-20 00:44:31 +0000 | [diff] [blame] | 162 | while (I != E && (I->isPHI() || I->isPosition() || |
| 163 | TII->isBasicBlockPrologue(*I))) |
Keith Walker | 830a8c1 | 2016-09-16 14:07:29 +0000 | [diff] [blame] | 164 | ++I; |
| 165 | // FIXME: This needs to change if we wish to bundle labels |
| 166 | // inside the bundle. |
| 167 | assert((I == E || !I->isInsideBundle()) && |
| 168 | "First non-phi / non-label instruction is inside a bundle!"); |
| 169 | return I; |
| 170 | } |
| 171 | |
| 172 | MachineBasicBlock::iterator |
| 173 | MachineBasicBlock::SkipPHIsLabelsAndDebug(MachineBasicBlock::iterator I) { |
Stanislav Mekhanoshin | 6ec3e3a | 2017-01-20 00:44:31 +0000 | [diff] [blame] | 174 | const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo(); |
| 175 | |
Keith Walker | 830a8c1 | 2016-09-16 14:07:29 +0000 | [diff] [blame] | 176 | iterator E = end(); |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 177 | while (I != E && (I->isPHI() || I->isPosition() || I->isDebugInstr() || |
Stanislav Mekhanoshin | 6ec3e3a | 2017-01-20 00:44:31 +0000 | [diff] [blame] | 178 | TII->isBasicBlockPrologue(*I))) |
Jakob Stoklund Olesen | ef54185 | 2010-10-30 01:26:14 +0000 | [diff] [blame] | 179 | ++I; |
Evan Cheng | 2a81dd4 | 2011-12-06 22:12:01 +0000 | [diff] [blame] | 180 | // FIXME: This needs to change if we wish to bundle labels / dbg_values |
| 181 | // inside the bundle. |
Akira Hatanaka | 6fe7aca | 2012-10-26 17:11:42 +0000 | [diff] [blame] | 182 | assert((I == E || !I->isInsideBundle()) && |
Keith Walker | 830a8c1 | 2016-09-16 14:07:29 +0000 | [diff] [blame] | 183 | "First non-phi / non-label / non-debug " |
| 184 | "instruction is inside a bundle!"); |
Jakob Stoklund Olesen | ef54185 | 2010-10-30 01:26:14 +0000 | [diff] [blame] | 185 | return I; |
| 186 | } |
| 187 | |
Chris Lattner | 4336b87 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 188 | MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() { |
Benjamin Kramer | baa41d4 | 2012-02-10 00:28:31 +0000 | [diff] [blame] | 189 | iterator B = begin(), E = end(), I = E; |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 190 | while (I != B && ((--I)->isTerminator() || I->isDebugInstr())) |
Jakob Stoklund Olesen | c381028 | 2011-01-14 02:12:54 +0000 | [diff] [blame] | 191 | ; /*noop */ |
Benjamin Kramer | baa41d4 | 2012-02-10 00:28:31 +0000 | [diff] [blame] | 192 | while (I != E && !I->isTerminator()) |
Evan Cheng | 2a81dd4 | 2011-12-06 22:12:01 +0000 | [diff] [blame] | 193 | ++I; |
| 194 | return I; |
| 195 | } |
| 196 | |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 197 | MachineBasicBlock::instr_iterator MachineBasicBlock::getFirstInstrTerminator() { |
Benjamin Kramer | baa41d4 | 2012-02-10 00:28:31 +0000 | [diff] [blame] | 198 | instr_iterator B = instr_begin(), E = instr_end(), I = E; |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 199 | while (I != B && ((--I)->isTerminator() || I->isDebugInstr())) |
Evan Cheng | 2a81dd4 | 2011-12-06 22:12:01 +0000 | [diff] [blame] | 200 | ; /*noop */ |
Benjamin Kramer | baa41d4 | 2012-02-10 00:28:31 +0000 | [diff] [blame] | 201 | while (I != E && !I->isTerminator()) |
Jakob Stoklund Olesen | ab3d6ec | 2011-01-14 06:33:45 +0000 | [diff] [blame] | 202 | ++I; |
Jakob Stoklund Olesen | c381028 | 2011-01-14 02:12:54 +0000 | [diff] [blame] | 203 | return I; |
Alkis Evlogimenos | af2de48 | 2004-02-23 18:14:48 +0000 | [diff] [blame] | 204 | } |
| 205 | |
Benjamin Kramer | 6b56896 | 2015-06-23 14:47:29 +0000 | [diff] [blame] | 206 | MachineBasicBlock::iterator MachineBasicBlock::getFirstNonDebugInstr() { |
| 207 | // Skip over begin-of-block dbg_value instructions. |
Florian Hahn | 3c8b8c9 | 2016-12-16 11:10:26 +0000 | [diff] [blame] | 208 | return skipDebugInstructionsForward(begin(), end()); |
Benjamin Kramer | 6b56896 | 2015-06-23 14:47:29 +0000 | [diff] [blame] | 209 | } |
| 210 | |
Jakob Stoklund Olesen | 4bc5e38 | 2011-01-13 21:28:52 +0000 | [diff] [blame] | 211 | MachineBasicBlock::iterator MachineBasicBlock::getLastNonDebugInstr() { |
Evan Cheng | 2a81dd4 | 2011-12-06 22:12:01 +0000 | [diff] [blame] | 212 | // Skip over end-of-block dbg_value instructions. |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 213 | instr_iterator B = instr_begin(), I = instr_end(); |
Jakob Stoklund Olesen | 4bc5e38 | 2011-01-13 21:28:52 +0000 | [diff] [blame] | 214 | while (I != B) { |
| 215 | --I; |
Evan Cheng | 2a81dd4 | 2011-12-06 22:12:01 +0000 | [diff] [blame] | 216 | // Return instruction that starts a bundle. |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 217 | if (I->isDebugInstr() || I->isInsideBundle()) |
Evan Cheng | 2a81dd4 | 2011-12-06 22:12:01 +0000 | [diff] [blame] | 218 | continue; |
| 219 | return I; |
| 220 | } |
| 221 | // The block is all debug values. |
| 222 | return end(); |
| 223 | } |
| 224 | |
Reid Kleckner | ed17079 | 2015-09-17 17:19:40 +0000 | [diff] [blame] | 225 | bool MachineBasicBlock::hasEHPadSuccessor() const { |
| 226 | for (const_succ_iterator I = succ_begin(), E = succ_end(); I != E; ++I) |
| 227 | if ((*I)->isEHPad()) |
| 228 | return true; |
| 229 | return false; |
| 230 | } |
| 231 | |
Aaron Ballman | 615eb47 | 2017-10-15 14:32:27 +0000 | [diff] [blame] | 232 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Yaron Keren | eb2a254 | 2016-01-29 20:50:44 +0000 | [diff] [blame] | 233 | LLVM_DUMP_METHOD void MachineBasicBlock::dump() const { |
David Greene | 6c56cef | 2010-01-04 23:22:07 +0000 | [diff] [blame] | 234 | print(dbgs()); |
Alkis Evlogimenos | 14f3fe8 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 235 | } |
Manman Ren | 742534c | 2012-09-06 19:06:06 +0000 | [diff] [blame] | 236 | #endif |
Alkis Evlogimenos | 14f3fe8 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 237 | |
Andrew Kaylor | d497119 | 2017-06-22 23:27:16 +0000 | [diff] [blame] | 238 | bool MachineBasicBlock::isLegalToHoistInto() const { |
| 239 | if (isReturnBlock() || hasEHPadSuccessor()) |
| 240 | return false; |
| 241 | return true; |
| 242 | } |
| 243 | |
Jakob Stoklund Olesen | 2bbeaa8 | 2009-11-20 01:17:03 +0000 | [diff] [blame] | 244 | StringRef MachineBasicBlock::getName() const { |
| 245 | if (const BasicBlock *LBB = getBasicBlock()) |
| 246 | return LBB->getName(); |
| 247 | else |
Matthias Braun | 4313059 | 2017-02-18 00:41:16 +0000 | [diff] [blame] | 248 | return StringRef("", 0); |
Jakob Stoklund Olesen | 2bbeaa8 | 2009-11-20 01:17:03 +0000 | [diff] [blame] | 249 | } |
| 250 | |
Andrew Trick | 320c703 | 2012-03-07 00:18:18 +0000 | [diff] [blame] | 251 | /// Return a hopefully unique identifier for this block. |
| 252 | std::string MachineBasicBlock::getFullName() const { |
| 253 | std::string Name; |
| 254 | if (getParent()) |
Craig Topper | a538d83 | 2012-08-22 06:07:19 +0000 | [diff] [blame] | 255 | Name = (getParent()->getName() + ":").str(); |
Andrew Trick | 320c703 | 2012-03-07 00:18:18 +0000 | [diff] [blame] | 256 | if (getBasicBlock()) |
| 257 | Name += getBasicBlock()->getName(); |
| 258 | else |
Yaron Keren | 75e0c4b | 2015-03-27 17:51:30 +0000 | [diff] [blame] | 259 | Name += ("BB" + Twine(getNumber())).str(); |
Andrew Trick | 320c703 | 2012-03-07 00:18:18 +0000 | [diff] [blame] | 260 | return Name; |
| 261 | } |
| 262 | |
Francis Visoiu Mistrih | 378b5f3 | 2018-01-18 17:59:06 +0000 | [diff] [blame] | 263 | void MachineBasicBlock::print(raw_ostream &OS, const SlotIndexes *Indexes, |
Francis Visoiu Mistrih | eb3f76f | 2018-01-18 18:05:15 +0000 | [diff] [blame] | 264 | bool IsStandalone) const { |
Evan Cheng | bcf1d7f | 2007-02-10 02:38:19 +0000 | [diff] [blame] | 265 | const MachineFunction *MF = getParent(); |
Chris Lattner | af119ca | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 266 | if (!MF) { |
Chris Lattner | 4336b87 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 267 | OS << "Can't print out MachineBasicBlock because parent MachineFunction" |
| 268 | << " is null\n"; |
Tanya Lattner | a578cb7 | 2004-05-24 06:11:51 +0000 | [diff] [blame] | 269 | return; |
| 270 | } |
Matthias Braun | f1caa28 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 271 | const Function &F = MF->getFunction(); |
| 272 | const Module *M = F.getParent(); |
Duncan P. N. Exon Smith | 32692154 | 2015-06-26 22:04:20 +0000 | [diff] [blame] | 273 | ModuleSlotTracker MST(M); |
Francis Visoiu Mistrih | da89d18 | 2018-02-08 05:02:00 +0000 | [diff] [blame] | 274 | MST.incorporateFunction(F); |
Francis Visoiu Mistrih | eb3f76f | 2018-01-18 18:05:15 +0000 | [diff] [blame] | 275 | print(OS, MST, Indexes, IsStandalone); |
Duncan P. N. Exon Smith | 32692154 | 2015-06-26 22:04:20 +0000 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | void MachineBasicBlock::print(raw_ostream &OS, ModuleSlotTracker &MST, |
Francis Visoiu Mistrih | 378b5f3 | 2018-01-18 17:59:06 +0000 | [diff] [blame] | 279 | const SlotIndexes *Indexes, |
Francis Visoiu Mistrih | eb3f76f | 2018-01-18 18:05:15 +0000 | [diff] [blame] | 280 | bool IsStandalone) const { |
Duncan P. N. Exon Smith | 32692154 | 2015-06-26 22:04:20 +0000 | [diff] [blame] | 281 | const MachineFunction *MF = getParent(); |
| 282 | if (!MF) { |
| 283 | OS << "Can't print out MachineBasicBlock because parent MachineFunction" |
| 284 | << " is null\n"; |
| 285 | return; |
| 286 | } |
Alkis Evlogimenos | fcb3f51 | 2004-09-05 18:39:20 +0000 | [diff] [blame] | 287 | |
Jakob Stoklund Olesen | b705023 | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 288 | if (Indexes) |
| 289 | OS << Indexes->getMBBStartIdx(this) << '\t'; |
| 290 | |
Francis Visoiu Mistrih | da89d18 | 2018-02-08 05:02:00 +0000 | [diff] [blame] | 291 | OS << "bb." << getNumber(); |
| 292 | bool HasAttributes = false; |
| 293 | if (const auto *BB = getBasicBlock()) { |
| 294 | if (BB->hasName()) { |
| 295 | OS << "." << BB->getName(); |
| 296 | } else { |
| 297 | HasAttributes = true; |
| 298 | OS << " ("; |
| 299 | int Slot = MST.getLocalSlot(BB); |
| 300 | if (Slot == -1) |
| 301 | OS << "<ir-block badref>"; |
| 302 | else |
| 303 | OS << (Twine("%ir-block.") + Twine(Slot)).str(); |
| 304 | } |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 305 | } |
Jakob Stoklund Olesen | 2a2b37e | 2011-12-06 21:08:39 +0000 | [diff] [blame] | 306 | |
Francis Visoiu Mistrih | da89d18 | 2018-02-08 05:02:00 +0000 | [diff] [blame] | 307 | if (hasAddressTaken()) { |
| 308 | OS << (HasAttributes ? ", " : " ("); |
| 309 | OS << "address-taken"; |
| 310 | HasAttributes = true; |
| 311 | } |
| 312 | if (isEHPad()) { |
| 313 | OS << (HasAttributes ? ", " : " ("); |
| 314 | OS << "landing-pad"; |
| 315 | HasAttributes = true; |
| 316 | } |
| 317 | if (getAlignment()) { |
| 318 | OS << (HasAttributes ? ", " : " ("); |
| 319 | OS << "align " << getAlignment(); |
| 320 | HasAttributes = true; |
| 321 | } |
| 322 | if (HasAttributes) |
| 323 | OS << ")"; |
| 324 | OS << ":\n"; |
Evan Cheng | bcf1d7f | 2007-02-10 02:38:19 +0000 | [diff] [blame] | 325 | |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 326 | const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo(); |
Francis Visoiu Mistrih | fb7b14f7 | 2018-02-09 01:14:44 +0000 | [diff] [blame] | 327 | const MachineRegisterInfo &MRI = MF->getRegInfo(); |
Francis Visoiu Mistrih | f6ed795 | 2018-02-13 18:08:26 +0000 | [diff] [blame] | 328 | const TargetInstrInfo &TII = *getParent()->getSubtarget().getInstrInfo(); |
Francis Visoiu Mistrih | 3fbbdf3 | 2018-02-15 16:23:59 +0000 | [diff] [blame] | 329 | bool HasLineAttributes = false; |
Francis Visoiu Mistrih | fb7b14f7 | 2018-02-09 01:14:44 +0000 | [diff] [blame] | 330 | |
Francis Visoiu Mistrih | afad84e | 2018-02-14 20:23:05 +0000 | [diff] [blame] | 331 | // Print the preds of this block according to the CFG. |
Francis Visoiu Mistrih | e4fae4d5 | 2018-02-26 15:23:42 +0000 | [diff] [blame] | 332 | if (!pred_empty() && IsStandalone) { |
Francis Visoiu Mistrih | afad84e | 2018-02-14 20:23:05 +0000 | [diff] [blame] | 333 | if (Indexes) OS << '\t'; |
| 334 | // Don't indent(2), align with previous line attributes. |
| 335 | OS << "; predecessors: "; |
| 336 | for (auto I = pred_begin(), E = pred_end(); I != E; ++I) { |
| 337 | if (I != pred_begin()) |
Francis Visoiu Mistrih | fb7b14f7 | 2018-02-09 01:14:44 +0000 | [diff] [blame] | 338 | OS << ", "; |
Francis Visoiu Mistrih | afad84e | 2018-02-14 20:23:05 +0000 | [diff] [blame] | 339 | OS << printMBBReference(**I); |
Matthias Braun | b2b7ef1 | 2015-08-24 22:59:52 +0000 | [diff] [blame] | 340 | } |
Chris Lattner | af119ca | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 341 | OS << '\n'; |
Francis Visoiu Mistrih | 3fbbdf3 | 2018-02-15 16:23:59 +0000 | [diff] [blame] | 342 | HasLineAttributes = true; |
Evan Cheng | bcf1d7f | 2007-02-10 02:38:19 +0000 | [diff] [blame] | 343 | } |
Francis Visoiu Mistrih | 39ec2e9 | 2018-02-09 00:10:31 +0000 | [diff] [blame] | 344 | |
Francis Visoiu Mistrih | a37e009 | 2018-02-09 00:12:53 +0000 | [diff] [blame] | 345 | if (!succ_empty()) { |
Francis Visoiu Mistrih | fb7b14f7 | 2018-02-09 01:14:44 +0000 | [diff] [blame] | 346 | if (Indexes) OS << '\t'; |
Francis Visoiu Mistrih | a37e009 | 2018-02-09 00:12:53 +0000 | [diff] [blame] | 347 | // Print the successors |
| 348 | OS.indent(2) << "successors: "; |
| 349 | for (auto I = succ_begin(), E = succ_end(); I != E; ++I) { |
| 350 | if (I != succ_begin()) |
| 351 | OS << ", "; |
| 352 | OS << printMBBReference(**I); |
Francis Visoiu Mistrih | 7d3dde3 | 2018-02-09 00:40:57 +0000 | [diff] [blame] | 353 | if (!Probs.empty()) |
| 354 | OS << '(' |
| 355 | << format("0x%08" PRIx32, getSuccProbability(I).getNumerator()) |
| 356 | << ')'; |
Francis Visoiu Mistrih | a37e009 | 2018-02-09 00:12:53 +0000 | [diff] [blame] | 357 | } |
Francis Visoiu Mistrih | e4fae4d5 | 2018-02-26 15:23:42 +0000 | [diff] [blame] | 358 | if (!Probs.empty() && IsStandalone) { |
Francis Visoiu Mistrih | 7d3dde3 | 2018-02-09 00:40:57 +0000 | [diff] [blame] | 359 | // Print human readable probabilities as comments. |
| 360 | OS << "; "; |
| 361 | for (auto I = succ_begin(), E = succ_end(); I != E; ++I) { |
| 362 | const BranchProbability &BP = *getProbabilityIterator(I); |
| 363 | if (I != succ_begin()) |
| 364 | OS << ", "; |
| 365 | OS << printMBBReference(**I) << '(' |
| 366 | << format("%.2f%%", |
| 367 | rint(((double)BP.getNumerator() / BP.getDenominator()) * |
| 368 | 100.0 * 100.0) / |
| 369 | 100.0) |
| 370 | << ')'; |
| 371 | } |
Francis Visoiu Mistrih | a37e009 | 2018-02-09 00:12:53 +0000 | [diff] [blame] | 372 | } |
Francis Visoiu Mistrih | 3fbbdf3 | 2018-02-15 16:23:59 +0000 | [diff] [blame] | 373 | |
| 374 | OS << '\n'; |
| 375 | HasLineAttributes = true; |
Francis Visoiu Mistrih | 39ec2e9 | 2018-02-09 00:10:31 +0000 | [diff] [blame] | 376 | } |
| 377 | |
Francis Visoiu Mistrih | afad84e | 2018-02-14 20:23:05 +0000 | [diff] [blame] | 378 | if (!livein_empty() && MRI.tracksLiveness()) { |
Jakob Stoklund Olesen | b705023 | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 379 | if (Indexes) OS << '\t'; |
Francis Visoiu Mistrih | afad84e | 2018-02-14 20:23:05 +0000 | [diff] [blame] | 380 | OS.indent(2) << "liveins: "; |
| 381 | |
| 382 | bool First = true; |
| 383 | for (const auto &LI : liveins()) { |
| 384 | if (!First) |
Francis Visoiu Mistrih | 33979ce | 2018-02-09 19:46:02 +0000 | [diff] [blame] | 385 | OS << ", "; |
Francis Visoiu Mistrih | afad84e | 2018-02-14 20:23:05 +0000 | [diff] [blame] | 386 | First = false; |
| 387 | OS << printReg(LI.PhysReg, TRI); |
| 388 | if (!LI.LaneMask.all()) |
| 389 | OS << ":0x" << PrintLaneMask(LI.LaneMask); |
Francis Visoiu Mistrih | 33979ce | 2018-02-09 19:46:02 +0000 | [diff] [blame] | 390 | } |
Francis Visoiu Mistrih | 3fbbdf3 | 2018-02-15 16:23:59 +0000 | [diff] [blame] | 391 | HasLineAttributes = true; |
Chris Lattner | 9a1e91b | 2006-09-26 03:41:59 +0000 | [diff] [blame] | 392 | } |
Jakob Stoklund Olesen | b705023 | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 393 | |
Francis Visoiu Mistrih | 3fbbdf3 | 2018-02-15 16:23:59 +0000 | [diff] [blame] | 394 | if (HasLineAttributes) |
| 395 | OS << '\n'; |
| 396 | |
Francis Visoiu Mistrih | f6ed795 | 2018-02-13 18:08:26 +0000 | [diff] [blame] | 397 | bool IsInBundle = false; |
| 398 | for (const MachineInstr &MI : instrs()) { |
Jakob Stoklund Olesen | b705023 | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 399 | if (Indexes) { |
Francis Visoiu Mistrih | f6ed795 | 2018-02-13 18:08:26 +0000 | [diff] [blame] | 400 | if (Indexes->hasIndex(MI)) |
| 401 | OS << Indexes->getInstructionIndex(MI); |
Jakob Stoklund Olesen | b705023 | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 402 | OS << '\t'; |
| 403 | } |
Francis Visoiu Mistrih | f6ed795 | 2018-02-13 18:08:26 +0000 | [diff] [blame] | 404 | |
| 405 | if (IsInBundle && !MI.isInsideBundle()) { |
| 406 | OS.indent(2) << "}\n"; |
| 407 | IsInBundle = false; |
| 408 | } |
| 409 | |
| 410 | OS.indent(IsInBundle ? 4 : 2); |
| 411 | MI.print(OS, MST, IsStandalone, /*SkipOpers=*/false, /*SkipDebugLoc=*/false, |
Krzysztof Parzyszek | 71a4c0c | 2018-04-10 16:46:13 +0000 | [diff] [blame] | 412 | /*AddNewLine=*/false, &TII); |
Francis Visoiu Mistrih | f6ed795 | 2018-02-13 18:08:26 +0000 | [diff] [blame] | 413 | |
| 414 | if (!IsInBundle && MI.getFlag(MachineInstr::BundledSucc)) { |
| 415 | OS << " {"; |
| 416 | IsInBundle = true; |
| 417 | } |
Krzysztof Parzyszek | 71a4c0c | 2018-04-10 16:46:13 +0000 | [diff] [blame] | 418 | OS << '\n'; |
Alkis Evlogimenos | fcb3f51 | 2004-09-05 18:39:20 +0000 | [diff] [blame] | 419 | } |
Chris Lattner | 329c14a | 2005-04-01 06:48:38 +0000 | [diff] [blame] | 420 | |
Francis Visoiu Mistrih | f6ed795 | 2018-02-13 18:08:26 +0000 | [diff] [blame] | 421 | if (IsInBundle) |
| 422 | OS.indent(2) << "}\n"; |
| 423 | |
Francis Visoiu Mistrih | e4fae4d5 | 2018-02-26 15:23:42 +0000 | [diff] [blame] | 424 | if (IrrLoopHeaderWeight && IsStandalone) { |
Hiroshi Yamauchi | dce9def | 2017-11-02 22:26:51 +0000 | [diff] [blame] | 425 | if (Indexes) OS << '\t'; |
Francis Visoiu Mistrih | 1e002a2 | 2018-02-15 15:27:34 +0000 | [diff] [blame] | 426 | OS.indent(2) << "; Irreducible loop header weight: " |
| 427 | << IrrLoopHeaderWeight.getValue() << '\n'; |
Hiroshi Yamauchi | dce9def | 2017-11-02 22:26:51 +0000 | [diff] [blame] | 428 | } |
Alkis Evlogimenos | 14f3fe8 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 429 | } |
Chris Lattner | 4336b87 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 430 | |
Cong Hou | 2793e72 | 2015-08-10 22:27:10 +0000 | [diff] [blame] | 431 | void MachineBasicBlock::printAsOperand(raw_ostream &OS, |
| 432 | bool /*PrintType*/) const { |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 433 | OS << "%bb." << getNumber(); |
Chandler Carruth | d48cdbf | 2014-01-09 02:29:41 +0000 | [diff] [blame] | 434 | } |
| 435 | |
Matthias Braun | e6a2485 | 2015-09-25 21:51:14 +0000 | [diff] [blame] | 436 | void MachineBasicBlock::removeLiveIn(MCPhysReg Reg, LaneBitmask LaneMask) { |
David Majnemer | 4253126 | 2016-08-12 03:55:06 +0000 | [diff] [blame] | 437 | LiveInVector::iterator I = find_if( |
| 438 | LiveIns, [Reg](const RegisterMaskPair &LI) { return LI.PhysReg == Reg; }); |
Matthias Braun | d9da162 | 2015-09-09 18:08:03 +0000 | [diff] [blame] | 439 | if (I == LiveIns.end()) |
| 440 | return; |
| 441 | |
| 442 | I->LaneMask &= ~LaneMask; |
Krzysztof Parzyszek | 91b5cf8 | 2016-12-15 14:36:06 +0000 | [diff] [blame] | 443 | if (I->LaneMask.none()) |
Jakob Stoklund Olesen | 8e58c90 | 2012-03-28 20:11:42 +0000 | [diff] [blame] | 444 | LiveIns.erase(I); |
Evan Cheng | f7ed82d | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 445 | } |
| 446 | |
Matthias Braun | ac4becc | 2017-05-31 20:30:22 +0000 | [diff] [blame] | 447 | MachineBasicBlock::livein_iterator |
| 448 | MachineBasicBlock::removeLiveIn(MachineBasicBlock::livein_iterator I) { |
Matthias Braun | e2e6591 | 2017-05-31 21:25:03 +0000 | [diff] [blame] | 449 | // Get non-const version of iterator. |
| 450 | LiveInVector::iterator LI = LiveIns.begin() + (I - LiveIns.begin()); |
| 451 | return LiveIns.erase(LI); |
Matthias Braun | ac4becc | 2017-05-31 20:30:22 +0000 | [diff] [blame] | 452 | } |
| 453 | |
Matthias Braun | e6a2485 | 2015-09-25 21:51:14 +0000 | [diff] [blame] | 454 | bool MachineBasicBlock::isLiveIn(MCPhysReg Reg, LaneBitmask LaneMask) const { |
David Majnemer | 4253126 | 2016-08-12 03:55:06 +0000 | [diff] [blame] | 455 | livein_iterator I = find_if( |
| 456 | LiveIns, [Reg](const RegisterMaskPair &LI) { return LI.PhysReg == Reg; }); |
Krzysztof Parzyszek | ea9f8ce | 2016-12-16 19:11:56 +0000 | [diff] [blame] | 457 | return I != livein_end() && (I->LaneMask & LaneMask).any(); |
Matthias Braun | d9da162 | 2015-09-09 18:08:03 +0000 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | void MachineBasicBlock::sortUniqueLiveIns() { |
Mandeep Singh Grang | e92f0cf | 2018-04-06 18:08:42 +0000 | [diff] [blame] | 461 | llvm::sort(LiveIns.begin(), LiveIns.end(), |
| 462 | [](const RegisterMaskPair &LI0, const RegisterMaskPair &LI1) { |
| 463 | return LI0.PhysReg < LI1.PhysReg; |
| 464 | }); |
Matthias Braun | d9da162 | 2015-09-09 18:08:03 +0000 | [diff] [blame] | 465 | // Liveins are sorted by physreg now we can merge their lanemasks. |
| 466 | LiveInVector::const_iterator I = LiveIns.begin(); |
| 467 | LiveInVector::const_iterator J; |
| 468 | LiveInVector::iterator Out = LiveIns.begin(); |
| 469 | for (; I != LiveIns.end(); ++Out, I = J) { |
| 470 | unsigned PhysReg = I->PhysReg; |
Matthias Braun | e6a2485 | 2015-09-25 21:51:14 +0000 | [diff] [blame] | 471 | LaneBitmask LaneMask = I->LaneMask; |
Matthias Braun | d9da162 | 2015-09-09 18:08:03 +0000 | [diff] [blame] | 472 | for (J = std::next(I); J != LiveIns.end() && J->PhysReg == PhysReg; ++J) |
| 473 | LaneMask |= J->LaneMask; |
| 474 | Out->PhysReg = PhysReg; |
| 475 | Out->LaneMask = LaneMask; |
| 476 | } |
| 477 | LiveIns.erase(Out, LiveIns.end()); |
Aaron Ballman | 9f154f6 | 2015-07-29 15:57:49 +0000 | [diff] [blame] | 478 | } |
| 479 | |
Jakob Stoklund Olesen | 533c3bf | 2013-07-03 23:56:20 +0000 | [diff] [blame] | 480 | unsigned |
Matthias Braun | 130bd90 | 2015-08-25 22:05:55 +0000 | [diff] [blame] | 481 | MachineBasicBlock::addLiveIn(MCPhysReg PhysReg, const TargetRegisterClass *RC) { |
Jakob Stoklund Olesen | 533c3bf | 2013-07-03 23:56:20 +0000 | [diff] [blame] | 482 | assert(getParent() && "MBB must be inserted in function"); |
| 483 | assert(TargetRegisterInfo::isPhysicalRegister(PhysReg) && "Expected physreg"); |
| 484 | assert(RC && "Register class is required"); |
Reid Kleckner | 0e28823 | 2015-08-27 23:27:47 +0000 | [diff] [blame] | 485 | assert((isEHPad() || this == &getParent()->front()) && |
Jakob Stoklund Olesen | 533c3bf | 2013-07-03 23:56:20 +0000 | [diff] [blame] | 486 | "Only the entry block and landing pads can have physreg live ins"); |
| 487 | |
| 488 | bool LiveIn = isLiveIn(PhysReg); |
Jakob Stoklund Olesen | bbbb532 | 2013-07-04 04:32:35 +0000 | [diff] [blame] | 489 | iterator I = SkipPHIsAndLabels(begin()), E = end(); |
Jakob Stoklund Olesen | 533c3bf | 2013-07-03 23:56:20 +0000 | [diff] [blame] | 490 | MachineRegisterInfo &MRI = getParent()->getRegInfo(); |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 491 | const TargetInstrInfo &TII = *getParent()->getSubtarget().getInstrInfo(); |
Jakob Stoklund Olesen | 533c3bf | 2013-07-03 23:56:20 +0000 | [diff] [blame] | 492 | |
| 493 | // Look for an existing copy. |
| 494 | if (LiveIn) |
| 495 | for (;I != E && I->isCopy(); ++I) |
| 496 | if (I->getOperand(1).getReg() == PhysReg) { |
| 497 | unsigned VirtReg = I->getOperand(0).getReg(); |
| 498 | if (!MRI.constrainRegClass(VirtReg, RC)) |
| 499 | llvm_unreachable("Incompatible live-in register class."); |
| 500 | return VirtReg; |
| 501 | } |
| 502 | |
| 503 | // No luck, create a virtual register. |
| 504 | unsigned VirtReg = MRI.createVirtualRegister(RC); |
| 505 | BuildMI(*this, I, DebugLoc(), TII.get(TargetOpcode::COPY), VirtReg) |
| 506 | .addReg(PhysReg, RegState::Kill); |
| 507 | if (!LiveIn) |
| 508 | addLiveIn(PhysReg); |
| 509 | return VirtReg; |
| 510 | } |
| 511 | |
Chris Lattner | 94866be | 2006-10-24 00:02:26 +0000 | [diff] [blame] | 512 | void MachineBasicBlock::moveBefore(MachineBasicBlock *NewAfter) { |
Duncan P. N. Exon Smith | 0ac8eb9 | 2015-10-09 19:23:20 +0000 | [diff] [blame] | 513 | getParent()->splice(NewAfter->getIterator(), getIterator()); |
Chris Lattner | 94866be | 2006-10-24 00:02:26 +0000 | [diff] [blame] | 514 | } |
| 515 | |
| 516 | void MachineBasicBlock::moveAfter(MachineBasicBlock *NewBefore) { |
Duncan P. N. Exon Smith | 0ac8eb9 | 2015-10-09 19:23:20 +0000 | [diff] [blame] | 517 | getParent()->splice(++NewBefore->getIterator(), getIterator()); |
Chris Lattner | 94866be | 2006-10-24 00:02:26 +0000 | [diff] [blame] | 518 | } |
| 519 | |
Jim Grosbach | 801b33b | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 520 | void MachineBasicBlock::updateTerminator() { |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 521 | const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo(); |
Jim Grosbach | 801b33b | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 522 | // A block with no successors has no concerns with fall-through edges. |
Chad Rosier | dca7651 | 2016-05-25 21:53:46 +0000 | [diff] [blame] | 523 | if (this->succ_empty()) |
| 524 | return; |
Jim Grosbach | 801b33b | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 525 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 526 | MachineBasicBlock *TBB = nullptr, *FBB = nullptr; |
Jim Grosbach | 801b33b | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 527 | SmallVector<MachineOperand, 4> Cond; |
Taewook Oh | 06a2128 | 2017-02-13 18:15:31 +0000 | [diff] [blame] | 528 | DebugLoc DL = findBranchDebugLoc(); |
Jacques Pienaar | 71c30a1 | 2016-07-15 14:41:04 +0000 | [diff] [blame] | 529 | bool B = TII->analyzeBranch(*this, TBB, FBB, Cond); |
Jim Grosbach | 801b33b | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 530 | (void) B; |
| 531 | assert(!B && "UpdateTerminators requires analyzable predecessors!"); |
| 532 | if (Cond.empty()) { |
| 533 | if (TBB) { |
Chad Rosier | dca7651 | 2016-05-25 21:53:46 +0000 | [diff] [blame] | 534 | // The block has an unconditional branch. If its successor is now its |
| 535 | // layout successor, delete the branch. |
Jim Grosbach | 801b33b | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 536 | if (isLayoutSuccessor(TBB)) |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 537 | TII->removeBranch(*this); |
Jim Grosbach | 801b33b | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 538 | } else { |
Chad Rosier | dca7651 | 2016-05-25 21:53:46 +0000 | [diff] [blame] | 539 | // The block has an unconditional fallthrough. If its successor is not its |
| 540 | // layout successor, insert a branch. First we have to locate the only |
| 541 | // non-landing-pad successor, as that is the fallthrough block. |
Chandler Carruth | ee54feb | 2011-11-22 13:13:16 +0000 | [diff] [blame] | 542 | for (succ_iterator SI = succ_begin(), SE = succ_end(); SI != SE; ++SI) { |
Reid Kleckner | 0e28823 | 2015-08-27 23:27:47 +0000 | [diff] [blame] | 543 | if ((*SI)->isEHPad()) |
Chandler Carruth | ee54feb | 2011-11-22 13:13:16 +0000 | [diff] [blame] | 544 | continue; |
| 545 | assert(!TBB && "Found more than one non-landing-pad successor!"); |
| 546 | TBB = *SI; |
| 547 | } |
Chandler Carruth | 8c68f1f | 2011-11-23 08:23:54 +0000 | [diff] [blame] | 548 | |
Chad Rosier | dca7651 | 2016-05-25 21:53:46 +0000 | [diff] [blame] | 549 | // If there is no non-landing-pad successor, the block has no fall-through |
| 550 | // edges to be concerned with. |
Chandler Carruth | 8c68f1f | 2011-11-23 08:23:54 +0000 | [diff] [blame] | 551 | if (!TBB) |
| 552 | return; |
| 553 | |
| 554 | // Finally update the unconditional successor to be reached via a branch |
| 555 | // if it would not be reached by fallthrough. |
Jim Grosbach | 801b33b | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 556 | if (!isLayoutSuccessor(TBB)) |
Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 557 | TII->insertBranch(*this, TBB, nullptr, Cond, DL); |
Jim Grosbach | 801b33b | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 558 | } |
Chad Rosier | dca7651 | 2016-05-25 21:53:46 +0000 | [diff] [blame] | 559 | return; |
| 560 | } |
Chandler Carruth | 1f5580b | 2012-04-16 22:03:00 +0000 | [diff] [blame] | 561 | |
Chad Rosier | dca7651 | 2016-05-25 21:53:46 +0000 | [diff] [blame] | 562 | if (FBB) { |
| 563 | // The block has a non-fallthrough conditional branch. If one of its |
| 564 | // successors is its layout successor, rewrite it to a fallthrough |
| 565 | // conditional branch. |
| 566 | if (isLayoutSuccessor(TBB)) { |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 567 | if (TII->reverseBranchCondition(Cond)) |
Chandler Carruth | 1f5580b | 2012-04-16 22:03:00 +0000 | [diff] [blame] | 568 | return; |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 569 | TII->removeBranch(*this); |
Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 570 | TII->insertBranch(*this, FBB, nullptr, Cond, DL); |
Chad Rosier | dca7651 | 2016-05-25 21:53:46 +0000 | [diff] [blame] | 571 | } else if (isLayoutSuccessor(FBB)) { |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 572 | TII->removeBranch(*this); |
Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 573 | TII->insertBranch(*this, TBB, nullptr, Cond, DL); |
Jim Grosbach | 801b33b | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 574 | } |
Chad Rosier | dca7651 | 2016-05-25 21:53:46 +0000 | [diff] [blame] | 575 | return; |
| 576 | } |
| 577 | |
| 578 | // Walk through the successors and find the successor which is not a landing |
| 579 | // pad and is not the conditional branch destination (in TBB) as the |
| 580 | // fallthrough successor. |
| 581 | MachineBasicBlock *FallthroughBB = nullptr; |
| 582 | for (succ_iterator SI = succ_begin(), SE = succ_end(); SI != SE; ++SI) { |
| 583 | if ((*SI)->isEHPad() || *SI == TBB) |
| 584 | continue; |
| 585 | assert(!FallthroughBB && "Found more than one fallthrough successor."); |
| 586 | FallthroughBB = *SI; |
| 587 | } |
| 588 | |
Haicheng Wu | b71b2f6 | 2016-07-03 19:14:17 +0000 | [diff] [blame] | 589 | if (!FallthroughBB) { |
| 590 | if (canFallThrough()) { |
| 591 | // We fallthrough to the same basic block as the conditional jump targets. |
| 592 | // Remove the conditional jump, leaving unconditional fallthrough. |
| 593 | // FIXME: This does not seem like a reasonable pattern to support, but it |
| 594 | // has been seen in the wild coming out of degenerate ARM test cases. |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 595 | TII->removeBranch(*this); |
Taewook Oh | 06a2128 | 2017-02-13 18:15:31 +0000 | [diff] [blame] | 596 | |
Haicheng Wu | b71b2f6 | 2016-07-03 19:14:17 +0000 | [diff] [blame] | 597 | // Finally update the unconditional successor to be reached via a branch if |
| 598 | // it would not be reached by fallthrough. |
| 599 | if (!isLayoutSuccessor(TBB)) |
Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 600 | TII->insertBranch(*this, TBB, nullptr, Cond, DL); |
Haicheng Wu | b71b2f6 | 2016-07-03 19:14:17 +0000 | [diff] [blame] | 601 | return; |
| 602 | } |
Chad Rosier | dca7651 | 2016-05-25 21:53:46 +0000 | [diff] [blame] | 603 | |
Haicheng Wu | b71b2f6 | 2016-07-03 19:14:17 +0000 | [diff] [blame] | 604 | // We enter here iff exactly one successor is TBB which cannot fallthrough |
| 605 | // and the rest successors if any are EHPads. In this case, we need to |
| 606 | // change the conditional branch into unconditional branch. |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 607 | TII->removeBranch(*this); |
Haicheng Wu | b71b2f6 | 2016-07-03 19:14:17 +0000 | [diff] [blame] | 608 | Cond.clear(); |
Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 609 | TII->insertBranch(*this, TBB, nullptr, Cond, DL); |
Chad Rosier | dca7651 | 2016-05-25 21:53:46 +0000 | [diff] [blame] | 610 | return; |
| 611 | } |
| 612 | |
| 613 | // The block has a fallthrough conditional branch. |
| 614 | if (isLayoutSuccessor(TBB)) { |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 615 | if (TII->reverseBranchCondition(Cond)) { |
Chad Rosier | dca7651 | 2016-05-25 21:53:46 +0000 | [diff] [blame] | 616 | // We can't reverse the condition, add an unconditional branch. |
| 617 | Cond.clear(); |
Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 618 | TII->insertBranch(*this, FallthroughBB, nullptr, Cond, DL); |
Chad Rosier | dca7651 | 2016-05-25 21:53:46 +0000 | [diff] [blame] | 619 | return; |
| 620 | } |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 621 | TII->removeBranch(*this); |
Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 622 | TII->insertBranch(*this, FallthroughBB, nullptr, Cond, DL); |
Chad Rosier | dca7651 | 2016-05-25 21:53:46 +0000 | [diff] [blame] | 623 | } else if (!isLayoutSuccessor(FallthroughBB)) { |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 624 | TII->removeBranch(*this); |
Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 625 | TII->insertBranch(*this, TBB, FallthroughBB, Cond, DL); |
Jim Grosbach | 801b33b | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 626 | } |
| 627 | } |
Chris Lattner | 94866be | 2006-10-24 00:02:26 +0000 | [diff] [blame] | 628 | |
Cong Hou | c106989 | 2015-12-13 09:26:17 +0000 | [diff] [blame] | 629 | void MachineBasicBlock::validateSuccProbs() const { |
| 630 | #ifndef NDEBUG |
| 631 | int64_t Sum = 0; |
| 632 | for (auto Prob : Probs) |
| 633 | Sum += Prob.getNumerator(); |
| 634 | // Due to precision issue, we assume that the sum of probabilities is one if |
| 635 | // the difference between the sum of their numerators and the denominator is |
| 636 | // no greater than the number of successors. |
Cong Hou | c00e65a | 2015-12-13 17:00:25 +0000 | [diff] [blame] | 637 | assert((uint64_t)std::abs(Sum - BranchProbability::getDenominator()) <= |
Cong Hou | c106989 | 2015-12-13 09:26:17 +0000 | [diff] [blame] | 638 | Probs.size() && |
| 639 | "The sum of successors's probabilities exceeds one."); |
| 640 | #endif // NDEBUG |
| 641 | } |
| 642 | |
Cong Hou | 23a3bf0 | 2015-11-04 21:37:58 +0000 | [diff] [blame] | 643 | void MachineBasicBlock::addSuccessor(MachineBasicBlock *Succ, |
| 644 | BranchProbability Prob) { |
| 645 | // Probability list is either empty (if successor list isn't empty, this means |
| 646 | // disabled optimization) or has the same size as successor list. |
Cong Hou | 4aef7ef | 2015-12-01 11:05:39 +0000 | [diff] [blame] | 647 | if (!(Probs.empty() && !Successors.empty())) |
Cong Hou | 23a3bf0 | 2015-11-04 21:37:58 +0000 | [diff] [blame] | 648 | Probs.push_back(Prob); |
| 649 | Successors.push_back(Succ); |
| 650 | Succ->addPredecessor(this); |
| 651 | } |
| 652 | |
| 653 | void MachineBasicBlock::addSuccessorWithoutProb(MachineBasicBlock *Succ) { |
| 654 | // We need to make sure probability list is either empty or has the same size |
| 655 | // of successor list. When this function is called, we can safely delete all |
| 656 | // probability in the list. |
| 657 | Probs.clear(); |
| 658 | Successors.push_back(Succ); |
| 659 | Succ->addPredecessor(this); |
| 660 | } |
| 661 | |
Chandler Carruth | 90358e1 | 2018-07-13 11:13:58 +0000 | [diff] [blame] | 662 | void MachineBasicBlock::splitSuccessor(MachineBasicBlock *Old, |
| 663 | MachineBasicBlock *New, |
| 664 | bool NormalizeSuccProbs) { |
| 665 | succ_iterator OldI = llvm::find(successors(), Old); |
| 666 | assert(OldI != succ_end() && "Old is not a successor of this block!"); |
| 667 | assert(llvm::find(successors(), New) == succ_end() && |
| 668 | "New is already a successor of this block!"); |
| 669 | |
| 670 | // Add a new successor with equal probability as the original one. Note |
| 671 | // that we directly copy the probability using the iterator rather than |
| 672 | // getting a potentially synthetic probability computed when unknown. This |
| 673 | // preserves the probabilities as-is and then we can renormalize them and |
| 674 | // query them effectively afterward. |
| 675 | addSuccessor(New, Probs.empty() ? BranchProbability::getUnknown() |
| 676 | : *getProbabilityIterator(OldI)); |
| 677 | if (NormalizeSuccProbs) |
| 678 | normalizeSuccProbs(); |
| 679 | } |
| 680 | |
Cong Hou | c106989 | 2015-12-13 09:26:17 +0000 | [diff] [blame] | 681 | void MachineBasicBlock::removeSuccessor(MachineBasicBlock *Succ, |
| 682 | bool NormalizeSuccProbs) { |
David Majnemer | 0d955d0 | 2016-08-11 22:21:41 +0000 | [diff] [blame] | 683 | succ_iterator I = find(Successors, Succ); |
Cong Hou | c106989 | 2015-12-13 09:26:17 +0000 | [diff] [blame] | 684 | removeSuccessor(I, NormalizeSuccProbs); |
Chris Lattner | 4336b87 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 685 | } |
| 686 | |
Jakub Staszak | feadd43 | 2011-06-16 18:01:17 +0000 | [diff] [blame] | 687 | MachineBasicBlock::succ_iterator |
Cong Hou | c106989 | 2015-12-13 09:26:17 +0000 | [diff] [blame] | 688 | MachineBasicBlock::removeSuccessor(succ_iterator I, bool NormalizeSuccProbs) { |
Chris Lattner | 4336b87 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 689 | assert(I != Successors.end() && "Not a current successor!"); |
Jakub Staszak | 12a43bd | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 690 | |
Cong Hou | 23a3bf0 | 2015-11-04 21:37:58 +0000 | [diff] [blame] | 691 | // If probability list is empty it means we don't use it (disabled |
| 692 | // optimization). |
| 693 | if (!Probs.empty()) { |
| 694 | probability_iterator WI = getProbabilityIterator(I); |
| 695 | Probs.erase(WI); |
Cong Hou | c106989 | 2015-12-13 09:26:17 +0000 | [diff] [blame] | 696 | if (NormalizeSuccProbs) |
| 697 | normalizeSuccProbs(); |
Cong Hou | 23a3bf0 | 2015-11-04 21:37:58 +0000 | [diff] [blame] | 698 | } |
| 699 | |
Chris Lattner | 4336b87 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 700 | (*I)->removePredecessor(this); |
Dan Gohman | f87dc92 | 2009-01-08 22:19:34 +0000 | [diff] [blame] | 701 | return Successors.erase(I); |
Chris Lattner | 4336b87 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 702 | } |
| 703 | |
Jakub Staszak | 12a43bd | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 704 | void MachineBasicBlock::replaceSuccessor(MachineBasicBlock *Old, |
| 705 | MachineBasicBlock *New) { |
Jakob Stoklund Olesen | 8c28ac9 | 2012-08-10 03:23:27 +0000 | [diff] [blame] | 706 | if (Old == New) |
| 707 | return; |
Jakub Staszak | 12a43bd | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 708 | |
Jakob Stoklund Olesen | 8c28ac9 | 2012-08-10 03:23:27 +0000 | [diff] [blame] | 709 | succ_iterator E = succ_end(); |
| 710 | succ_iterator NewI = E; |
| 711 | succ_iterator OldI = E; |
| 712 | for (succ_iterator I = succ_begin(); I != E; ++I) { |
| 713 | if (*I == Old) { |
| 714 | OldI = I; |
| 715 | if (NewI != E) |
| 716 | break; |
| 717 | } |
| 718 | if (*I == New) { |
| 719 | NewI = I; |
| 720 | if (OldI != E) |
| 721 | break; |
| 722 | } |
| 723 | } |
| 724 | assert(OldI != E && "Old is not a successor of this block"); |
Jakob Stoklund Olesen | 8c28ac9 | 2012-08-10 03:23:27 +0000 | [diff] [blame] | 725 | |
| 726 | // If New isn't already a successor, let it take Old's place. |
| 727 | if (NewI == E) { |
Cong Hou | 11c1420 | 2015-11-18 01:45:10 +0000 | [diff] [blame] | 728 | Old->removePredecessor(this); |
Jakob Stoklund Olesen | 8c28ac9 | 2012-08-10 03:23:27 +0000 | [diff] [blame] | 729 | New->addPredecessor(this); |
| 730 | *OldI = New; |
| 731 | return; |
Jakub Staszak | 12a43bd | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 732 | } |
| 733 | |
Jakob Stoklund Olesen | 8c28ac9 | 2012-08-10 03:23:27 +0000 | [diff] [blame] | 734 | // New is already a successor. |
Cong Hou | 23a3bf0 | 2015-11-04 21:37:58 +0000 | [diff] [blame] | 735 | // Update its probability instead of adding a duplicate edge. |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 736 | if (!Probs.empty()) { |
| 737 | auto ProbIter = getProbabilityIterator(NewI); |
| 738 | if (!ProbIter->isUnknown()) |
| 739 | *ProbIter += *getProbabilityIterator(OldI); |
| 740 | } |
Cong Hou | 11c1420 | 2015-11-18 01:45:10 +0000 | [diff] [blame] | 741 | removeSuccessor(OldI); |
Jakub Staszak | 12a43bd | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 742 | } |
| 743 | |
Chandler Carruth | 19618fc | 2018-04-10 01:41:17 +0000 | [diff] [blame] | 744 | void MachineBasicBlock::copySuccessor(MachineBasicBlock *Orig, |
| 745 | succ_iterator I) { |
| 746 | if (Orig->Probs.empty()) |
| 747 | addSuccessor(*I, Orig->getSuccProbability(I)); |
| 748 | else |
| 749 | addSuccessorWithoutProb(*I); |
| 750 | } |
| 751 | |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 752 | void MachineBasicBlock::addPredecessor(MachineBasicBlock *Pred) { |
| 753 | Predecessors.push_back(Pred); |
Chris Lattner | 4336b87 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 754 | } |
| 755 | |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 756 | void MachineBasicBlock::removePredecessor(MachineBasicBlock *Pred) { |
David Majnemer | 0d955d0 | 2016-08-11 22:21:41 +0000 | [diff] [blame] | 757 | pred_iterator I = find(Predecessors, Pred); |
Chris Lattner | 4336b87 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 758 | assert(I != Predecessors.end() && "Pred is not a predecessor of this block!"); |
| 759 | Predecessors.erase(I); |
| 760 | } |
Evan Cheng | a92b2b3 | 2007-05-17 23:58:53 +0000 | [diff] [blame] | 761 | |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 762 | void MachineBasicBlock::transferSuccessors(MachineBasicBlock *FromMBB) { |
| 763 | if (this == FromMBB) |
Mon P Wang | 3e58393 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 764 | return; |
Jakub Staszak | feadd43 | 2011-06-16 18:01:17 +0000 | [diff] [blame] | 765 | |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 766 | while (!FromMBB->succ_empty()) { |
| 767 | MachineBasicBlock *Succ = *FromMBB->succ_begin(); |
Jakub Staszak | 12a43bd | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 768 | |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 769 | // If probability list is empty it means we don't use it (disabled optimization). |
| 770 | if (!FromMBB->Probs.empty()) { |
| 771 | auto Prob = *FromMBB->Probs.begin(); |
| 772 | addSuccessor(Succ, Prob); |
| 773 | } else |
| 774 | addSuccessorWithoutProb(Succ); |
Jakub Staszak | 12a43bd | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 775 | |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 776 | FromMBB->removeSuccessor(Succ); |
Dan Gohman | 3439629 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 777 | } |
| 778 | } |
| 779 | |
| 780 | void |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 781 | MachineBasicBlock::transferSuccessorsAndUpdatePHIs(MachineBasicBlock *FromMBB) { |
| 782 | if (this == FromMBB) |
Dan Gohman | 3439629 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 783 | return; |
Jakub Staszak | feadd43 | 2011-06-16 18:01:17 +0000 | [diff] [blame] | 784 | |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 785 | while (!FromMBB->succ_empty()) { |
| 786 | MachineBasicBlock *Succ = *FromMBB->succ_begin(); |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 787 | if (!FromMBB->Probs.empty()) { |
| 788 | auto Prob = *FromMBB->Probs.begin(); |
| 789 | addSuccessor(Succ, Prob); |
| 790 | } else |
| 791 | addSuccessorWithoutProb(Succ); |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 792 | FromMBB->removeSuccessor(Succ); |
Dan Gohman | 3439629 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 793 | |
| 794 | // Fix up any PHI nodes in the successor. |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 795 | for (MachineBasicBlock::instr_iterator MI = Succ->instr_begin(), |
| 796 | ME = Succ->instr_end(); MI != ME && MI->isPHI(); ++MI) |
Dan Gohman | 3439629 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 797 | for (unsigned i = 2, e = MI->getNumOperands()+1; i != e; i += 2) { |
| 798 | MachineOperand &MO = MI->getOperand(i); |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 799 | if (MO.getMBB() == FromMBB) |
Dan Gohman | 3439629 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 800 | MO.setMBB(this); |
| 801 | } |
| 802 | } |
Cong Hou | c106989 | 2015-12-13 09:26:17 +0000 | [diff] [blame] | 803 | normalizeSuccProbs(); |
Mon P Wang | 3e58393 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 804 | } |
| 805 | |
Jakob Stoklund Olesen | fee94ca | 2012-07-30 17:36:47 +0000 | [diff] [blame] | 806 | bool MachineBasicBlock::isPredecessor(const MachineBasicBlock *MBB) const { |
David Majnemer | 4253126 | 2016-08-12 03:55:06 +0000 | [diff] [blame] | 807 | return is_contained(predecessors(), MBB); |
Jakob Stoklund Olesen | fee94ca | 2012-07-30 17:36:47 +0000 | [diff] [blame] | 808 | } |
| 809 | |
Dan Gohman | ff62c62 | 2009-03-30 20:06:29 +0000 | [diff] [blame] | 810 | bool MachineBasicBlock::isSuccessor(const MachineBasicBlock *MBB) const { |
David Majnemer | 4253126 | 2016-08-12 03:55:06 +0000 | [diff] [blame] | 811 | return is_contained(successors(), MBB); |
Evan Cheng | a92b2b3 | 2007-05-17 23:58:53 +0000 | [diff] [blame] | 812 | } |
Evan Cheng | df75785 | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 813 | |
Dan Gohman | ff62c62 | 2009-03-30 20:06:29 +0000 | [diff] [blame] | 814 | bool MachineBasicBlock::isLayoutSuccessor(const MachineBasicBlock *MBB) const { |
Dan Gohman | a78bae3 | 2008-10-02 22:09:09 +0000 | [diff] [blame] | 815 | MachineFunction::const_iterator I(this); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 816 | return std::next(I) == MachineFunction::const_iterator(MBB); |
Dan Gohman | a78bae3 | 2008-10-02 22:09:09 +0000 | [diff] [blame] | 817 | } |
| 818 | |
Jan Sjodin | f1a30f1 | 2017-03-31 15:55:37 +0000 | [diff] [blame] | 819 | MachineBasicBlock *MachineBasicBlock::getFallThrough() { |
Duncan P. N. Exon Smith | 0ac8eb9 | 2015-10-09 19:23:20 +0000 | [diff] [blame] | 820 | MachineFunction::iterator Fallthrough = getIterator(); |
Bob Wilson | 2d4ff12 | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 821 | ++Fallthrough; |
| 822 | // If FallthroughBlock is off the end of the function, it can't fall through. |
| 823 | if (Fallthrough == getParent()->end()) |
Jan Sjodin | f1a30f1 | 2017-03-31 15:55:37 +0000 | [diff] [blame] | 824 | return nullptr; |
Bob Wilson | 2d4ff12 | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 825 | |
| 826 | // If FallthroughBlock isn't a successor, no fallthrough is possible. |
Duncan P. N. Exon Smith | 0ac8eb9 | 2015-10-09 19:23:20 +0000 | [diff] [blame] | 827 | if (!isSuccessor(&*Fallthrough)) |
Jan Sjodin | f1a30f1 | 2017-03-31 15:55:37 +0000 | [diff] [blame] | 828 | return nullptr; |
Bob Wilson | 2d4ff12 | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 829 | |
Dan Gohman | 0b44cb0 | 2009-12-05 00:32:59 +0000 | [diff] [blame] | 830 | // Analyze the branches, if any, at the end of the block. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 831 | MachineBasicBlock *TBB = nullptr, *FBB = nullptr; |
Dan Gohman | 0b44cb0 | 2009-12-05 00:32:59 +0000 | [diff] [blame] | 832 | SmallVector<MachineOperand, 4> Cond; |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 833 | const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo(); |
Jacques Pienaar | 71c30a1 | 2016-07-15 14:41:04 +0000 | [diff] [blame] | 834 | if (TII->analyzeBranch(*this, TBB, FBB, Cond)) { |
Dan Gohman | 0b44cb0 | 2009-12-05 00:32:59 +0000 | [diff] [blame] | 835 | // If we couldn't analyze the branch, examine the last instruction. |
| 836 | // If the block doesn't end in a known control barrier, assume fallthrough |
Chad Rosier | 1a1531d | 2012-01-26 18:24:25 +0000 | [diff] [blame] | 837 | // is possible. The isPredicated check is needed because this code can be |
Dan Gohman | 0b44cb0 | 2009-12-05 00:32:59 +0000 | [diff] [blame] | 838 | // called during IfConversion, where an instruction which is normally a |
Chad Rosier | 9b61cf3 | 2012-01-26 20:19:05 +0000 | [diff] [blame] | 839 | // Barrier is predicated and thus no longer an actual control barrier. |
Jan Sjodin | f1a30f1 | 2017-03-31 15:55:37 +0000 | [diff] [blame] | 840 | return (empty() || !back().isBarrier() || TII->isPredicated(back())) |
| 841 | ? &*Fallthrough |
| 842 | : nullptr; |
Dan Gohman | 0b44cb0 | 2009-12-05 00:32:59 +0000 | [diff] [blame] | 843 | } |
Bob Wilson | 2d4ff12 | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 844 | |
| 845 | // If there is no branch, control always falls through. |
Jan Sjodin | f1a30f1 | 2017-03-31 15:55:37 +0000 | [diff] [blame] | 846 | if (!TBB) return &*Fallthrough; |
Bob Wilson | 2d4ff12 | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 847 | |
| 848 | // If there is some explicit branch to the fallthrough block, it can obviously |
| 849 | // reach, even though the branch should get folded to fall through implicitly. |
| 850 | if (MachineFunction::iterator(TBB) == Fallthrough || |
| 851 | MachineFunction::iterator(FBB) == Fallthrough) |
Jan Sjodin | f1a30f1 | 2017-03-31 15:55:37 +0000 | [diff] [blame] | 852 | return &*Fallthrough; |
Bob Wilson | 2d4ff12 | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 853 | |
| 854 | // If it's an unconditional branch to some block not the fall through, it |
| 855 | // doesn't fall through. |
Jan Sjodin | f1a30f1 | 2017-03-31 15:55:37 +0000 | [diff] [blame] | 856 | if (Cond.empty()) return nullptr; |
Bob Wilson | 2d4ff12 | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 857 | |
| 858 | // Otherwise, if it is conditional and has no explicit false block, it falls |
| 859 | // through. |
Jan Sjodin | f1a30f1 | 2017-03-31 15:55:37 +0000 | [diff] [blame] | 860 | return (FBB == nullptr) ? &*Fallthrough : nullptr; |
| 861 | } |
| 862 | |
| 863 | bool MachineBasicBlock::canFallThrough() { |
| 864 | return getFallThrough() != nullptr; |
Bob Wilson | 2d4ff12 | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 865 | } |
| 866 | |
Quentin Colombet | 23341a8 | 2016-04-21 21:01:13 +0000 | [diff] [blame] | 867 | MachineBasicBlock *MachineBasicBlock::SplitCriticalEdge(MachineBasicBlock *Succ, |
| 868 | Pass &P) { |
Quentin Colombet | 77e1878 | 2016-04-21 20:46:27 +0000 | [diff] [blame] | 869 | if (!canSplitCriticalEdge(Succ)) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 870 | return nullptr; |
Evan Cheng | 2d14d8a | 2012-04-24 19:06:55 +0000 | [diff] [blame] | 871 | |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 872 | MachineFunction *MF = getParent(); |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 873 | DebugLoc DL; // FIXME: this is nowhere |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 874 | |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 875 | MachineBasicBlock *NMBB = MF->CreateMachineBasicBlock(); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 876 | MF->insert(std::next(MachineFunction::iterator(this)), NMBB); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 877 | LLVM_DEBUG(dbgs() << "Splitting critical edge: " << printMBBReference(*this) |
| 878 | << " -- " << printMBBReference(*NMBB) << " -- " |
| 879 | << printMBBReference(*Succ) << '\n'); |
Cameron Zwarich | cdcab38 | 2013-02-12 03:49:20 +0000 | [diff] [blame] | 880 | |
Quentin Colombet | 23341a8 | 2016-04-21 21:01:13 +0000 | [diff] [blame] | 881 | LiveIntervals *LIS = P.getAnalysisIfAvailable<LiveIntervals>(); |
| 882 | SlotIndexes *Indexes = P.getAnalysisIfAvailable<SlotIndexes>(); |
Cameron Zwarich | cdcab38 | 2013-02-12 03:49:20 +0000 | [diff] [blame] | 883 | if (LIS) |
| 884 | LIS->insertMBBInMaps(NMBB); |
| 885 | else if (Indexes) |
Cameron Zwarich | 21beaf6 | 2013-02-10 23:29:54 +0000 | [diff] [blame] | 886 | Indexes->insertMBBInMaps(NMBB); |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 887 | |
Jakob Stoklund Olesen | dd6fcc4 | 2011-05-29 20:10:28 +0000 | [diff] [blame] | 888 | // On some targets like Mips, branches may kill virtual registers. Make sure |
| 889 | // that LiveVariables is properly updated after updateTerminator replaces the |
| 890 | // terminators. |
Quentin Colombet | 23341a8 | 2016-04-21 21:01:13 +0000 | [diff] [blame] | 891 | LiveVariables *LV = P.getAnalysisIfAvailable<LiveVariables>(); |
Jakob Stoklund Olesen | dd6fcc4 | 2011-05-29 20:10:28 +0000 | [diff] [blame] | 892 | |
| 893 | // Collect a list of virtual registers killed by the terminators. |
| 894 | SmallVector<unsigned, 4> KilledRegs; |
| 895 | if (LV) |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 896 | for (instr_iterator I = getFirstInstrTerminator(), E = instr_end(); |
Evan Cheng | 2a81dd4 | 2011-12-06 22:12:01 +0000 | [diff] [blame] | 897 | I != E; ++I) { |
Duncan P. N. Exon Smith | 0ac8eb9 | 2015-10-09 19:23:20 +0000 | [diff] [blame] | 898 | MachineInstr *MI = &*I; |
Jakob Stoklund Olesen | dd6fcc4 | 2011-05-29 20:10:28 +0000 | [diff] [blame] | 899 | for (MachineInstr::mop_iterator OI = MI->operands_begin(), |
| 900 | OE = MI->operands_end(); OI != OE; ++OI) { |
Lang Hames | edeea17 | 2012-02-09 05:59:36 +0000 | [diff] [blame] | 901 | if (!OI->isReg() || OI->getReg() == 0 || |
| 902 | !OI->isUse() || !OI->isKill() || OI->isUndef()) |
Jakob Stoklund Olesen | dd6fcc4 | 2011-05-29 20:10:28 +0000 | [diff] [blame] | 903 | continue; |
| 904 | unsigned Reg = OI->getReg(); |
Lang Hames | edeea17 | 2012-02-09 05:59:36 +0000 | [diff] [blame] | 905 | if (TargetRegisterInfo::isPhysicalRegister(Reg) || |
Duncan P. N. Exon Smith | d26fdc8 | 2016-07-01 01:51:32 +0000 | [diff] [blame] | 906 | LV->getVarInfo(Reg).removeKill(*MI)) { |
Jakob Stoklund Olesen | dd6fcc4 | 2011-05-29 20:10:28 +0000 | [diff] [blame] | 907 | KilledRegs.push_back(Reg); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 908 | LLVM_DEBUG(dbgs() << "Removing terminator kill: " << *MI); |
Jakob Stoklund Olesen | dd6fcc4 | 2011-05-29 20:10:28 +0000 | [diff] [blame] | 909 | OI->setIsKill(false); |
| 910 | } |
| 911 | } |
| 912 | } |
| 913 | |
Cameron Zwarich | bfebb41 | 2013-02-17 00:10:44 +0000 | [diff] [blame] | 914 | SmallVector<unsigned, 4> UsedRegs; |
| 915 | if (LIS) { |
| 916 | for (instr_iterator I = getFirstInstrTerminator(), E = instr_end(); |
| 917 | I != E; ++I) { |
Duncan P. N. Exon Smith | 0ac8eb9 | 2015-10-09 19:23:20 +0000 | [diff] [blame] | 918 | MachineInstr *MI = &*I; |
Cameron Zwarich | bfebb41 | 2013-02-17 00:10:44 +0000 | [diff] [blame] | 919 | |
| 920 | for (MachineInstr::mop_iterator OI = MI->operands_begin(), |
| 921 | OE = MI->operands_end(); OI != OE; ++OI) { |
| 922 | if (!OI->isReg() || OI->getReg() == 0) |
| 923 | continue; |
| 924 | |
| 925 | unsigned Reg = OI->getReg(); |
David Majnemer | 0d955d0 | 2016-08-11 22:21:41 +0000 | [diff] [blame] | 926 | if (!is_contained(UsedRegs, Reg)) |
Cameron Zwarich | bfebb41 | 2013-02-17 00:10:44 +0000 | [diff] [blame] | 927 | UsedRegs.push_back(Reg); |
| 928 | } |
| 929 | } |
| 930 | } |
| 931 | |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 932 | ReplaceUsesOfBlockWith(Succ, NMBB); |
Cameron Zwarich | ba378ce | 2013-02-11 09:24:45 +0000 | [diff] [blame] | 933 | |
| 934 | // If updateTerminator() removes instructions, we need to remove them from |
| 935 | // SlotIndexes. |
| 936 | SmallVector<MachineInstr*, 4> Terminators; |
| 937 | if (Indexes) { |
| 938 | for (instr_iterator I = getFirstInstrTerminator(), E = instr_end(); |
| 939 | I != E; ++I) |
Duncan P. N. Exon Smith | 0ac8eb9 | 2015-10-09 19:23:20 +0000 | [diff] [blame] | 940 | Terminators.push_back(&*I); |
Cameron Zwarich | ba378ce | 2013-02-11 09:24:45 +0000 | [diff] [blame] | 941 | } |
| 942 | |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 943 | updateTerminator(); |
| 944 | |
Cameron Zwarich | ba378ce | 2013-02-11 09:24:45 +0000 | [diff] [blame] | 945 | if (Indexes) { |
| 946 | SmallVector<MachineInstr*, 4> NewTerminators; |
| 947 | for (instr_iterator I = getFirstInstrTerminator(), E = instr_end(); |
| 948 | I != E; ++I) |
Duncan P. N. Exon Smith | 0ac8eb9 | 2015-10-09 19:23:20 +0000 | [diff] [blame] | 949 | NewTerminators.push_back(&*I); |
Cameron Zwarich | ba378ce | 2013-02-11 09:24:45 +0000 | [diff] [blame] | 950 | |
| 951 | for (SmallVectorImpl<MachineInstr*>::iterator I = Terminators.begin(), |
| 952 | E = Terminators.end(); I != E; ++I) { |
David Majnemer | 0d955d0 | 2016-08-11 22:21:41 +0000 | [diff] [blame] | 953 | if (!is_contained(NewTerminators, *I)) |
| 954 | Indexes->removeMachineInstrFromMaps(**I); |
Cameron Zwarich | ba378ce | 2013-02-11 09:24:45 +0000 | [diff] [blame] | 955 | } |
| 956 | } |
| 957 | |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 958 | // Insert unconditional "jump Succ" instruction in NMBB if necessary. |
| 959 | NMBB->addSuccessor(Succ); |
| 960 | if (!NMBB->isLayoutSuccessor(Succ)) { |
Quentin Colombet | 77e1878 | 2016-04-21 20:46:27 +0000 | [diff] [blame] | 961 | SmallVector<MachineOperand, 4> Cond; |
| 962 | const TargetInstrInfo *TII = getParent()->getSubtarget().getInstrInfo(); |
Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 963 | TII->insertBranch(*NMBB, Succ, nullptr, Cond, DL); |
Cameron Zwarich | 21beaf6 | 2013-02-10 23:29:54 +0000 | [diff] [blame] | 964 | |
| 965 | if (Indexes) { |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 966 | for (MachineInstr &MI : NMBB->instrs()) { |
Cameron Zwarich | 21beaf6 | 2013-02-10 23:29:54 +0000 | [diff] [blame] | 967 | // Some instructions may have been moved to NMBB by updateTerminator(), |
| 968 | // so we first remove any instruction that already has an index. |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 969 | if (Indexes->hasIndex(MI)) |
| 970 | Indexes->removeMachineInstrFromMaps(MI); |
| 971 | Indexes->insertMachineInstrInMaps(MI); |
Cameron Zwarich | 21beaf6 | 2013-02-10 23:29:54 +0000 | [diff] [blame] | 972 | } |
| 973 | } |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 974 | } |
| 975 | |
| 976 | // Fix PHI nodes in Succ so they refer to NMBB instead of this |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 977 | for (MachineBasicBlock::instr_iterator |
| 978 | i = Succ->instr_begin(),e = Succ->instr_end(); |
| 979 | i != e && i->isPHI(); ++i) |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 980 | for (unsigned ni = 1, ne = i->getNumOperands(); ni != ne; ni += 2) |
| 981 | if (i->getOperand(ni+1).getMBB() == this) |
| 982 | i->getOperand(ni+1).setMBB(NMBB); |
| 983 | |
Jakob Stoklund Olesen | 06b6ccf | 2011-10-14 17:25:46 +0000 | [diff] [blame] | 984 | // Inherit live-ins from the successor |
Matthias Braun | d9da162 | 2015-09-09 18:08:03 +0000 | [diff] [blame] | 985 | for (const auto &LI : Succ->liveins()) |
Matthias Braun | b2b7ef1 | 2015-08-24 22:59:52 +0000 | [diff] [blame] | 986 | NMBB->addLiveIn(LI); |
Jakob Stoklund Olesen | 06b6ccf | 2011-10-14 17:25:46 +0000 | [diff] [blame] | 987 | |
Jakob Stoklund Olesen | dd6fcc4 | 2011-05-29 20:10:28 +0000 | [diff] [blame] | 988 | // Update LiveVariables. |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 989 | const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo(); |
Jakob Stoklund Olesen | dd6fcc4 | 2011-05-29 20:10:28 +0000 | [diff] [blame] | 990 | if (LV) { |
| 991 | // Restore kills of virtual registers that were killed by the terminators. |
| 992 | while (!KilledRegs.empty()) { |
| 993 | unsigned Reg = KilledRegs.pop_back_val(); |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 994 | for (instr_iterator I = instr_end(), E = instr_begin(); I != E;) { |
Lang Hames | edeea17 | 2012-02-09 05:59:36 +0000 | [diff] [blame] | 995 | if (!(--I)->addRegisterKilled(Reg, TRI, /* addIfNotFound= */ false)) |
Jakob Stoklund Olesen | dd6fcc4 | 2011-05-29 20:10:28 +0000 | [diff] [blame] | 996 | continue; |
Lang Hames | edeea17 | 2012-02-09 05:59:36 +0000 | [diff] [blame] | 997 | if (TargetRegisterInfo::isVirtualRegister(Reg)) |
Duncan P. N. Exon Smith | 0ac8eb9 | 2015-10-09 19:23:20 +0000 | [diff] [blame] | 998 | LV->getVarInfo(Reg).Kills.push_back(&*I); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 999 | LLVM_DEBUG(dbgs() << "Restored terminator kill: " << *I); |
Jakob Stoklund Olesen | dd6fcc4 | 2011-05-29 20:10:28 +0000 | [diff] [blame] | 1000 | break; |
| 1001 | } |
| 1002 | } |
| 1003 | // Update relevant live-through information. |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 1004 | LV->addNewBlock(NMBB, this, Succ); |
Jakob Stoklund Olesen | dd6fcc4 | 2011-05-29 20:10:28 +0000 | [diff] [blame] | 1005 | } |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 1006 | |
Cameron Zwarich | cdcab38 | 2013-02-12 03:49:20 +0000 | [diff] [blame] | 1007 | if (LIS) { |
Cameron Zwarich | b47fb38 | 2013-02-11 09:24:47 +0000 | [diff] [blame] | 1008 | // After splitting the edge and updating SlotIndexes, live intervals may be |
| 1009 | // in one of two situations, depending on whether this block was the last in |
Cong Hou | 2793e72 | 2015-08-10 22:27:10 +0000 | [diff] [blame] | 1010 | // the function. If the original block was the last in the function, all |
| 1011 | // live intervals will end prior to the beginning of the new split block. If |
| 1012 | // the original block was not at the end of the function, all live intervals |
| 1013 | // will extend to the end of the new split block. |
Cameron Zwarich | b47fb38 | 2013-02-11 09:24:47 +0000 | [diff] [blame] | 1014 | |
| 1015 | bool isLastMBB = |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1016 | std::next(MachineFunction::iterator(NMBB)) == getParent()->end(); |
Cameron Zwarich | b47fb38 | 2013-02-11 09:24:47 +0000 | [diff] [blame] | 1017 | |
| 1018 | SlotIndex StartIndex = Indexes->getMBBEndIdx(this); |
| 1019 | SlotIndex PrevIndex = StartIndex.getPrevSlot(); |
| 1020 | SlotIndex EndIndex = Indexes->getMBBEndIdx(NMBB); |
| 1021 | |
| 1022 | // Find the registers used from NMBB in PHIs in Succ. |
| 1023 | SmallSet<unsigned, 8> PHISrcRegs; |
| 1024 | for (MachineBasicBlock::instr_iterator |
| 1025 | I = Succ->instr_begin(), E = Succ->instr_end(); |
| 1026 | I != E && I->isPHI(); ++I) { |
| 1027 | for (unsigned ni = 1, ne = I->getNumOperands(); ni != ne; ni += 2) { |
| 1028 | if (I->getOperand(ni+1).getMBB() == NMBB) { |
| 1029 | MachineOperand &MO = I->getOperand(ni); |
| 1030 | unsigned Reg = MO.getReg(); |
| 1031 | PHISrcRegs.insert(Reg); |
Cameron Zwarich | af34931 | 2013-02-12 03:49:17 +0000 | [diff] [blame] | 1032 | if (MO.isUndef()) |
| 1033 | continue; |
Cameron Zwarich | b47fb38 | 2013-02-11 09:24:47 +0000 | [diff] [blame] | 1034 | |
| 1035 | LiveInterval &LI = LIS->getInterval(Reg); |
| 1036 | VNInfo *VNI = LI.getVNInfoAt(PrevIndex); |
Cong Hou | 2793e72 | 2015-08-10 22:27:10 +0000 | [diff] [blame] | 1037 | assert(VNI && |
| 1038 | "PHI sources should be live out of their predecessors."); |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 1039 | LI.addSegment(LiveInterval::Segment(StartIndex, EndIndex, VNI)); |
Cameron Zwarich | b47fb38 | 2013-02-11 09:24:47 +0000 | [diff] [blame] | 1040 | } |
| 1041 | } |
| 1042 | } |
| 1043 | |
| 1044 | MachineRegisterInfo *MRI = &getParent()->getRegInfo(); |
| 1045 | for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) { |
| 1046 | unsigned Reg = TargetRegisterInfo::index2VirtReg(i); |
| 1047 | if (PHISrcRegs.count(Reg) || !LIS->hasInterval(Reg)) |
| 1048 | continue; |
| 1049 | |
| 1050 | LiveInterval &LI = LIS->getInterval(Reg); |
| 1051 | if (!LI.liveAt(PrevIndex)) |
| 1052 | continue; |
| 1053 | |
Cameron Zwarich | af34931 | 2013-02-12 03:49:17 +0000 | [diff] [blame] | 1054 | bool isLiveOut = LI.liveAt(LIS->getMBBStartIdx(Succ)); |
Cameron Zwarich | b47fb38 | 2013-02-11 09:24:47 +0000 | [diff] [blame] | 1055 | if (isLiveOut && isLastMBB) { |
| 1056 | VNInfo *VNI = LI.getVNInfoAt(PrevIndex); |
| 1057 | assert(VNI && "LiveInterval should have VNInfo where it is live."); |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 1058 | LI.addSegment(LiveInterval::Segment(StartIndex, EndIndex, VNI)); |
Cameron Zwarich | b47fb38 | 2013-02-11 09:24:47 +0000 | [diff] [blame] | 1059 | } else if (!isLiveOut && !isLastMBB) { |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 1060 | LI.removeSegment(StartIndex, EndIndex); |
Cameron Zwarich | b47fb38 | 2013-02-11 09:24:47 +0000 | [diff] [blame] | 1061 | } |
| 1062 | } |
Cameron Zwarich | bfebb41 | 2013-02-17 00:10:44 +0000 | [diff] [blame] | 1063 | |
| 1064 | // Update all intervals for registers whose uses may have been modified by |
| 1065 | // updateTerminator(). |
Cameron Zwarich | 2495596 | 2013-02-17 11:09:00 +0000 | [diff] [blame] | 1066 | LIS->repairIntervalsInRange(this, getFirstTerminator(), end(), UsedRegs); |
Cameron Zwarich | b47fb38 | 2013-02-11 09:24:47 +0000 | [diff] [blame] | 1067 | } |
| 1068 | |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 1069 | if (MachineDominatorTree *MDT = |
Quentin Colombet | 23341a8 | 2016-04-21 21:01:13 +0000 | [diff] [blame] | 1070 | P.getAnalysisIfAvailable<MachineDominatorTree>()) |
Quentin Colombet | abea99f | 2014-08-13 21:00:07 +0000 | [diff] [blame] | 1071 | MDT->recordSplitCriticalEdge(this, Succ, NMBB); |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 1072 | |
Quentin Colombet | 23341a8 | 2016-04-21 21:01:13 +0000 | [diff] [blame] | 1073 | if (MachineLoopInfo *MLI = P.getAnalysisIfAvailable<MachineLoopInfo>()) |
Dan Gohman | 3570f81 | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 1074 | if (MachineLoop *TIL = MLI->getLoopFor(this)) { |
| 1075 | // If one or the other blocks were not in a loop, the new block is not |
| 1076 | // either, and thus LI doesn't need to be updated. |
| 1077 | if (MachineLoop *DestLoop = MLI->getLoopFor(Succ)) { |
| 1078 | if (TIL == DestLoop) { |
| 1079 | // Both in the same loop, the NMBB joins loop. |
| 1080 | DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase()); |
| 1081 | } else if (TIL->contains(DestLoop)) { |
| 1082 | // Edge from an outer loop to an inner loop. Add to the outer loop. |
| 1083 | TIL->addBasicBlockToLoop(NMBB, MLI->getBase()); |
| 1084 | } else if (DestLoop->contains(TIL)) { |
| 1085 | // Edge from an inner loop to an outer loop. Add to the outer loop. |
| 1086 | DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase()); |
| 1087 | } else { |
| 1088 | // Edge from two loops with no containment relation. Because these |
| 1089 | // are natural loops, we know that the destination block must be the |
| 1090 | // header of its loop (adding a branch into a loop elsewhere would |
| 1091 | // create an irreducible loop). |
| 1092 | assert(DestLoop->getHeader() == Succ && |
| 1093 | "Should not create irreducible loops!"); |
| 1094 | if (MachineLoop *P = DestLoop->getParentLoop()) |
| 1095 | P->addBasicBlockToLoop(NMBB, MLI->getBase()); |
| 1096 | } |
| 1097 | } |
| 1098 | } |
| 1099 | |
| 1100 | return NMBB; |
| 1101 | } |
| 1102 | |
Quentin Colombet | 77e1878 | 2016-04-21 20:46:27 +0000 | [diff] [blame] | 1103 | bool MachineBasicBlock::canSplitCriticalEdge( |
| 1104 | const MachineBasicBlock *Succ) const { |
| 1105 | // Splitting the critical edge to a landing pad block is non-trivial. Don't do |
| 1106 | // it in this generic function. |
| 1107 | if (Succ->isEHPad()) |
| 1108 | return false; |
| 1109 | |
| 1110 | const MachineFunction *MF = getParent(); |
| 1111 | |
| 1112 | // Performance might be harmed on HW that implements branching using exec mask |
| 1113 | // where both sides of the branches are always executed. |
| 1114 | if (MF->getTarget().requiresStructuredCFG()) |
| 1115 | return false; |
| 1116 | |
| 1117 | // We may need to update this's terminator, but we can't do that if |
| 1118 | // AnalyzeBranch fails. If this uses a jump table, we won't touch it. |
| 1119 | const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo(); |
| 1120 | MachineBasicBlock *TBB = nullptr, *FBB = nullptr; |
| 1121 | SmallVector<MachineOperand, 4> Cond; |
| 1122 | // AnalyzeBanch should modify this, since we did not allow modification. |
Jacques Pienaar | 71c30a1 | 2016-07-15 14:41:04 +0000 | [diff] [blame] | 1123 | if (TII->analyzeBranch(*const_cast<MachineBasicBlock *>(this), TBB, FBB, Cond, |
Quentin Colombet | 77e1878 | 2016-04-21 20:46:27 +0000 | [diff] [blame] | 1124 | /*AllowModify*/ false)) |
| 1125 | return false; |
| 1126 | |
| 1127 | // Avoid bugpoint weirdness: A block may end with a conditional branch but |
| 1128 | // jumps to the same MBB is either case. We have duplicate CFG edges in that |
| 1129 | // case that we can't handle. Since this never happens in properly optimized |
| 1130 | // code, just skip those edges. |
| 1131 | if (TBB && TBB == FBB) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1132 | LLVM_DEBUG(dbgs() << "Won't split critical edge after degenerate " |
| 1133 | << printMBBReference(*this) << '\n'); |
Quentin Colombet | 77e1878 | 2016-04-21 20:46:27 +0000 | [diff] [blame] | 1134 | return false; |
| 1135 | } |
| 1136 | return true; |
| 1137 | } |
| 1138 | |
Jakob Stoklund Olesen | ccfb5fb | 2012-12-17 23:55:38 +0000 | [diff] [blame] | 1139 | /// Prepare MI to be removed from its bundle. This fixes bundle flags on MI's |
| 1140 | /// neighboring instructions so the bundle won't be broken by removing MI. |
| 1141 | static void unbundleSingleMI(MachineInstr *MI) { |
| 1142 | // Removing the first instruction in a bundle. |
| 1143 | if (MI->isBundledWithSucc() && !MI->isBundledWithPred()) |
| 1144 | MI->unbundleFromSucc(); |
| 1145 | // Removing the last instruction in a bundle. |
| 1146 | if (MI->isBundledWithPred() && !MI->isBundledWithSucc()) |
| 1147 | MI->unbundleFromPred(); |
| 1148 | // If MI is not bundled, or if it is internal to a bundle, the neighbor flags |
| 1149 | // are already fine. |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 1150 | } |
| 1151 | |
Jakob Stoklund Olesen | ccfb5fb | 2012-12-17 23:55:38 +0000 | [diff] [blame] | 1152 | MachineBasicBlock::instr_iterator |
| 1153 | MachineBasicBlock::erase(MachineBasicBlock::instr_iterator I) { |
Duncan P. N. Exon Smith | 0ac8eb9 | 2015-10-09 19:23:20 +0000 | [diff] [blame] | 1154 | unbundleSingleMI(&*I); |
Jakob Stoklund Olesen | ccfb5fb | 2012-12-17 23:55:38 +0000 | [diff] [blame] | 1155 | return Insts.erase(I); |
| 1156 | } |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 1157 | |
Jakob Stoklund Olesen | ccfb5fb | 2012-12-17 23:55:38 +0000 | [diff] [blame] | 1158 | MachineInstr *MachineBasicBlock::remove_instr(MachineInstr *MI) { |
| 1159 | unbundleSingleMI(MI); |
| 1160 | MI->clearFlag(MachineInstr::BundledPred); |
| 1161 | MI->clearFlag(MachineInstr::BundledSucc); |
| 1162 | return Insts.remove(MI); |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 1163 | } |
| 1164 | |
Jakob Stoklund Olesen | 422e07b | 2012-12-18 17:54:53 +0000 | [diff] [blame] | 1165 | MachineBasicBlock::instr_iterator |
| 1166 | MachineBasicBlock::insert(instr_iterator I, MachineInstr *MI) { |
| 1167 | assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() && |
| 1168 | "Cannot insert instruction with bundle flags"); |
| 1169 | // Set the bundle flags when inserting inside a bundle. |
| 1170 | if (I != instr_end() && I->isBundledWithPred()) { |
| 1171 | MI->setFlag(MachineInstr::BundledPred); |
| 1172 | MI->setFlag(MachineInstr::BundledSucc); |
| 1173 | } |
| 1174 | return Insts.insert(I, MI); |
| 1175 | } |
| 1176 | |
Cong Hou | 2a02c1c | 2015-08-12 21:18:54 +0000 | [diff] [blame] | 1177 | /// This method unlinks 'this' from the containing function, and returns it, but |
| 1178 | /// does not delete it. |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 1179 | MachineBasicBlock *MachineBasicBlock::removeFromParent() { |
| 1180 | assert(getParent() && "Not embedded in a function!"); |
| 1181 | getParent()->remove(this); |
| 1182 | return this; |
| 1183 | } |
| 1184 | |
Cong Hou | 2a02c1c | 2015-08-12 21:18:54 +0000 | [diff] [blame] | 1185 | /// This method unlinks 'this' from the containing function, and deletes it. |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 1186 | void MachineBasicBlock::eraseFromParent() { |
| 1187 | assert(getParent() && "Not embedded in a function!"); |
| 1188 | getParent()->erase(this); |
| 1189 | } |
| 1190 | |
Cong Hou | 2a02c1c | 2015-08-12 21:18:54 +0000 | [diff] [blame] | 1191 | /// Given a machine basic block that branched to 'Old', change the code and CFG |
| 1192 | /// so that it branches to 'New' instead. |
Evan Cheng | df75785 | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 1193 | void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old, |
| 1194 | MachineBasicBlock *New) { |
| 1195 | assert(Old != New && "Cannot replace self with self!"); |
| 1196 | |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 1197 | MachineBasicBlock::instr_iterator I = instr_end(); |
| 1198 | while (I != instr_begin()) { |
Evan Cheng | df75785 | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 1199 | --I; |
Evan Cheng | 7f8e563 | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 1200 | if (!I->isTerminator()) break; |
Evan Cheng | df75785 | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 1201 | |
| 1202 | // Scan the operands of this machine instruction, replacing any uses of Old |
| 1203 | // with New. |
| 1204 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) |
Dan Gohman | 0d1e9a8 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 1205 | if (I->getOperand(i).isMBB() && |
Dan Gohman | 38453ee | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 1206 | I->getOperand(i).getMBB() == Old) |
Chris Lattner | a5bb370 | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 1207 | I->getOperand(i).setMBB(New); |
Evan Cheng | df75785 | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 1208 | } |
| 1209 | |
Dan Gohman | bb2f107 | 2009-05-05 21:10:19 +0000 | [diff] [blame] | 1210 | // Update the successor information. |
Jakub Staszak | 12a43bd | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 1211 | replaceSuccessor(Old, New); |
Evan Cheng | df75785 | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 1212 | } |
| 1213 | |
Cong Hou | 2a02c1c | 2015-08-12 21:18:54 +0000 | [diff] [blame] | 1214 | /// Various pieces of code can cause excess edges in the CFG to be inserted. If |
| 1215 | /// we have proven that MBB can only branch to DestA and DestB, remove any other |
| 1216 | /// MBB successors from the CFG. DestA and DestB can be null. |
Jakub Staszak | feadd43 | 2011-06-16 18:01:17 +0000 | [diff] [blame] | 1217 | /// |
Chris Lattner | 574e716 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 1218 | /// Besides DestA and DestB, retain other edges leading to LandingPads |
| 1219 | /// (currently there can be only one; we don't check or require that here). |
Evan Cheng | 2afd702 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 1220 | /// Note it is possible that DestA and/or DestB are LandingPads. |
| 1221 | bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA, |
| 1222 | MachineBasicBlock *DestB, |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 1223 | bool IsCond) { |
Bill Wendling | 2d5967d | 2009-12-16 00:08:36 +0000 | [diff] [blame] | 1224 | // The values of DestA and DestB frequently come from a call to the |
| 1225 | // 'TargetInstrInfo::AnalyzeBranch' method. We take our meaning of the initial |
| 1226 | // values from there. |
| 1227 | // |
| 1228 | // 1. If both DestA and DestB are null, then the block ends with no branches |
| 1229 | // (it falls through to its successor). |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 1230 | // 2. If DestA is set, DestB is null, and IsCond is false, then the block ends |
Bill Wendling | 2d5967d | 2009-12-16 00:08:36 +0000 | [diff] [blame] | 1231 | // with only an unconditional branch. |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 1232 | // 3. If DestA is set, DestB is null, and IsCond is true, then the block ends |
Bill Wendling | 2d5967d | 2009-12-16 00:08:36 +0000 | [diff] [blame] | 1233 | // with a conditional branch that falls through to a successor (DestB). |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 1234 | // 4. If DestA and DestB is set and IsCond is true, then the block ends with a |
Bill Wendling | 2d5967d | 2009-12-16 00:08:36 +0000 | [diff] [blame] | 1235 | // conditional branch followed by an unconditional branch. DestA is the |
| 1236 | // 'true' destination and DestB is the 'false' destination. |
| 1237 | |
Bill Wendling | 9564340 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 1238 | bool Changed = false; |
Evan Cheng | 2afd702 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 1239 | |
Duncan P. N. Exon Smith | 41cf73c | 2016-08-16 21:46:03 +0000 | [diff] [blame] | 1240 | MachineBasicBlock *FallThru = getNextNode(); |
Bill Wendling | 9564340 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 1241 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1242 | if (!DestA && !DestB) { |
Bill Wendling | 9564340 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 1243 | // Block falls through to successor. |
Duncan P. N. Exon Smith | 41cf73c | 2016-08-16 21:46:03 +0000 | [diff] [blame] | 1244 | DestA = FallThru; |
| 1245 | DestB = FallThru; |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1246 | } else if (DestA && !DestB) { |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 1247 | if (IsCond) |
Bill Wendling | 9564340 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 1248 | // Block ends in conditional jump that falls through to successor. |
Duncan P. N. Exon Smith | 41cf73c | 2016-08-16 21:46:03 +0000 | [diff] [blame] | 1249 | DestB = FallThru; |
Evan Cheng | 2afd702 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 1250 | } else { |
Cong Hou | 166e085 | 2015-09-29 19:46:09 +0000 | [diff] [blame] | 1251 | assert(DestA && DestB && IsCond && |
Bill Wendling | 9564340 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 1252 | "CFG in a bad state. Cannot correct CFG edges"); |
Evan Cheng | 2afd702 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 1253 | } |
Bill Wendling | 9564340 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 1254 | |
| 1255 | // Remove superfluous edges. I.e., those which aren't destinations of this |
| 1256 | // basic block, duplicate edges, or landing pads. |
| 1257 | SmallPtrSet<const MachineBasicBlock*, 8> SeenMBBs; |
Evan Cheng | 2afd702 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 1258 | MachineBasicBlock::succ_iterator SI = succ_begin(); |
Evan Cheng | 2afd702 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 1259 | while (SI != succ_end()) { |
Bill Wendling | 2d5967d | 2009-12-16 00:08:36 +0000 | [diff] [blame] | 1260 | const MachineBasicBlock *MBB = *SI; |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 1261 | if (!SeenMBBs.insert(MBB).second || |
Reid Kleckner | 0e28823 | 2015-08-27 23:27:47 +0000 | [diff] [blame] | 1262 | (MBB != DestA && MBB != DestB && !MBB->isEHPad())) { |
Bill Wendling | 9564340 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 1263 | // This is a superfluous edge, remove it. |
Bill Wendling | fa9810d | 2010-03-31 23:26:26 +0000 | [diff] [blame] | 1264 | SI = removeSuccessor(SI); |
Bill Wendling | 9564340 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 1265 | Changed = true; |
| 1266 | } else { |
| 1267 | ++SI; |
Evan Cheng | 2afd702 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 1268 | } |
| 1269 | } |
Bill Wendling | 2d5967d | 2009-12-16 00:08:36 +0000 | [diff] [blame] | 1270 | |
Cong Hou | c106989 | 2015-12-13 09:26:17 +0000 | [diff] [blame] | 1271 | if (Changed) |
| 1272 | normalizeSuccProbs(); |
Bill Wendling | 9564340 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 1273 | return Changed; |
Evan Cheng | 2afd702 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 1274 | } |
Evan Cheng | 57be2f2 | 2009-11-17 19:19:59 +0000 | [diff] [blame] | 1275 | |
Cong Hou | 2a02c1c | 2015-08-12 21:18:54 +0000 | [diff] [blame] | 1276 | /// Find the next valid DebugLoc starting at MBBI, skipping any DBG_VALUE |
| 1277 | /// instructions. Return UnknownLoc if there is none. |
Dale Johannesen | c5db599 | 2010-01-20 21:36:02 +0000 | [diff] [blame] | 1278 | DebugLoc |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 1279 | MachineBasicBlock::findDebugLoc(instr_iterator MBBI) { |
Evan Cheng | 2a81dd4 | 2011-12-06 22:12:01 +0000 | [diff] [blame] | 1280 | // Skip debug declarations, we don't want a DebugLoc from them. |
Florian Hahn | 3c8b8c9 | 2016-12-16 11:10:26 +0000 | [diff] [blame] | 1281 | MBBI = skipDebugInstructionsForward(MBBI, instr_end()); |
| 1282 | if (MBBI != instr_end()) |
| 1283 | return MBBI->getDebugLoc(); |
| 1284 | return {}; |
Dale Johannesen | c5db599 | 2010-01-20 21:36:02 +0000 | [diff] [blame] | 1285 | } |
| 1286 | |
Derek Schuff | 10b3135 | 2018-03-15 22:06:51 +0000 | [diff] [blame] | 1287 | /// Find the previous valid DebugLoc preceding MBBI, skipping and DBG_VALUE |
| 1288 | /// instructions. Return UnknownLoc if there is none. |
| 1289 | DebugLoc MachineBasicBlock::findPrevDebugLoc(instr_iterator MBBI) { |
| 1290 | if (MBBI == instr_begin()) return {}; |
| 1291 | // Skip debug declarations, we don't want a DebugLoc from them. |
| 1292 | MBBI = skipDebugInstructionsBackward(std::prev(MBBI), instr_begin()); |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 1293 | if (!MBBI->isDebugInstr()) return MBBI->getDebugLoc(); |
Derek Schuff | 10b3135 | 2018-03-15 22:06:51 +0000 | [diff] [blame] | 1294 | return {}; |
| 1295 | } |
| 1296 | |
Taewook Oh | 06a2128 | 2017-02-13 18:15:31 +0000 | [diff] [blame] | 1297 | /// Find and return the merged DebugLoc of the branch instructions of the block. |
| 1298 | /// Return UnknownLoc if there is none. |
| 1299 | DebugLoc |
| 1300 | MachineBasicBlock::findBranchDebugLoc() { |
Taewook Oh | 4d35f9e | 2017-02-13 21:12:27 +0000 | [diff] [blame] | 1301 | DebugLoc DL; |
Taewook Oh | 06a2128 | 2017-02-13 18:15:31 +0000 | [diff] [blame] | 1302 | auto TI = getFirstTerminator(); |
| 1303 | while (TI != end() && !TI->isBranch()) |
| 1304 | ++TI; |
| 1305 | |
| 1306 | if (TI != end()) { |
| 1307 | DL = TI->getDebugLoc(); |
| 1308 | for (++TI ; TI != end() ; ++TI) |
| 1309 | if (TI->isBranch()) |
| 1310 | DL = DILocation::getMergedLocation(DL, TI->getDebugLoc()); |
| 1311 | } |
| 1312 | return DL; |
| 1313 | } |
| 1314 | |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 1315 | /// Return probability of the edge from this block to MBB. |
Cong Hou | 23a3bf0 | 2015-11-04 21:37:58 +0000 | [diff] [blame] | 1316 | BranchProbability |
| 1317 | MachineBasicBlock::getSuccProbability(const_succ_iterator Succ) const { |
Cong Hou | 4aef7ef | 2015-12-01 11:05:39 +0000 | [diff] [blame] | 1318 | if (Probs.empty()) |
Cong Hou | 23a3bf0 | 2015-11-04 21:37:58 +0000 | [diff] [blame] | 1319 | return BranchProbability(1, succ_size()); |
| 1320 | |
Cong Hou | 4aef7ef | 2015-12-01 11:05:39 +0000 | [diff] [blame] | 1321 | const auto &Prob = *getProbabilityIterator(Succ); |
| 1322 | if (Prob.isUnknown()) { |
| 1323 | // For unknown probabilities, collect the sum of all known ones, and evenly |
| 1324 | // ditribute the complemental of the sum to each unknown probability. |
| 1325 | unsigned KnownProbNum = 0; |
| 1326 | auto Sum = BranchProbability::getZero(); |
| 1327 | for (auto &P : Probs) { |
| 1328 | if (!P.isUnknown()) { |
| 1329 | Sum += P; |
| 1330 | KnownProbNum++; |
| 1331 | } |
| 1332 | } |
| 1333 | return Sum.getCompl() / (Probs.size() - KnownProbNum); |
| 1334 | } else |
| 1335 | return Prob; |
Manman Ren | b681918 | 2014-01-29 23:18:47 +0000 | [diff] [blame] | 1336 | } |
| 1337 | |
Cong Hou | 23a3bf0 | 2015-11-04 21:37:58 +0000 | [diff] [blame] | 1338 | /// Set successor probability of a given iterator. |
| 1339 | void MachineBasicBlock::setSuccProbability(succ_iterator I, |
| 1340 | BranchProbability Prob) { |
| 1341 | assert(!Prob.isUnknown()); |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 1342 | if (Probs.empty()) |
Cong Hou | 23a3bf0 | 2015-11-04 21:37:58 +0000 | [diff] [blame] | 1343 | return; |
| 1344 | *getProbabilityIterator(I) = Prob; |
Cong Hou | 23a3bf0 | 2015-11-04 21:37:58 +0000 | [diff] [blame] | 1345 | } |
| 1346 | |
Hans Wennborg | 1dbaf67 | 2015-12-01 03:49:42 +0000 | [diff] [blame] | 1347 | /// Return probability iterator corresonding to the I successor iterator |
| 1348 | MachineBasicBlock::const_probability_iterator |
| 1349 | MachineBasicBlock::getProbabilityIterator( |
| 1350 | MachineBasicBlock::const_succ_iterator I) const { |
Cong Hou | fa1917c | 2015-12-01 00:02:51 +0000 | [diff] [blame] | 1351 | assert(Probs.size() == Successors.size() && "Async probability list!"); |
| 1352 | const size_t index = std::distance(Successors.begin(), I); |
| 1353 | assert(index < Probs.size() && "Not a current successor!"); |
| 1354 | return Probs.begin() + index; |
| 1355 | } |
| 1356 | |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 1357 | /// Return probability iterator corresonding to the I successor iterator. |
| 1358 | MachineBasicBlock::probability_iterator |
| 1359 | MachineBasicBlock::getProbabilityIterator(MachineBasicBlock::succ_iterator I) { |
| 1360 | assert(Probs.size() == Successors.size() && "Async probability list!"); |
| 1361 | const size_t index = std::distance(Successors.begin(), I); |
| 1362 | assert(index < Probs.size() && "Not a current successor!"); |
| 1363 | return Probs.begin() + index; |
| 1364 | } |
| 1365 | |
James Molloy | c747cda | 2012-09-12 10:18:23 +0000 | [diff] [blame] | 1366 | /// Return whether (physical) register "Reg" has been <def>ined and not <kill>ed |
| 1367 | /// as of just before "MI". |
Junmo Park | 1238610 | 2016-01-07 10:26:32 +0000 | [diff] [blame] | 1368 | /// |
James Molloy | c747cda | 2012-09-12 10:18:23 +0000 | [diff] [blame] | 1369 | /// Search is localised to a neighborhood of |
| 1370 | /// Neighborhood instructions before (searching for defs or kills) and N |
| 1371 | /// instructions after (searching just for defs) MI. |
| 1372 | MachineBasicBlock::LivenessQueryResult |
| 1373 | MachineBasicBlock::computeRegisterLiveness(const TargetRegisterInfo *TRI, |
Matthias Braun | 07a07ba | 2015-05-27 05:12:39 +0000 | [diff] [blame] | 1374 | unsigned Reg, const_iterator Before, |
| 1375 | unsigned Neighborhood) const { |
James Molloy | c747cda | 2012-09-12 10:18:23 +0000 | [diff] [blame] | 1376 | unsigned N = Neighborhood; |
James Molloy | c747cda | 2012-09-12 10:18:23 +0000 | [diff] [blame] | 1377 | |
Matt Arsenault | 015a147 | 2018-08-30 07:18:10 +0000 | [diff] [blame] | 1378 | // Try searching forwards from Before, looking for reads or defs. |
Matthias Braun | 07a07ba | 2015-05-27 05:12:39 +0000 | [diff] [blame] | 1379 | const_iterator I(Before); |
Matt Arsenault | 015a147 | 2018-08-30 07:18:10 +0000 | [diff] [blame] | 1380 | // If this is the last insn in the block, don't search forwards. |
| 1381 | if (I != end()) { |
Matt Arsenault | f2edba8 | 2018-08-30 07:18:19 +0000 | [diff] [blame] | 1382 | for (++I; I != end() && N > 0; ++I) { |
| 1383 | if (I->isDebugInstr()) |
| 1384 | continue; |
| 1385 | |
| 1386 | --N; |
| 1387 | |
Matt Arsenault | 015a147 | 2018-08-30 07:18:10 +0000 | [diff] [blame] | 1388 | MachineOperandIteratorBase::PhysRegInfo Info = |
| 1389 | ConstMIOperands(*I).analyzePhysReg(Reg, TRI); |
| 1390 | |
| 1391 | // Register is live when we read it here. |
| 1392 | if (Info.Read) |
| 1393 | return LQR_Live; |
| 1394 | // Register is dead if we can fully overwrite or clobber it here. |
| 1395 | if (Info.FullyDefined || Info.Clobbered) |
| 1396 | return LQR_Dead; |
| 1397 | } |
| 1398 | } |
| 1399 | |
| 1400 | // If we reached the end, it is safe to clobber Reg at the end of a block of |
| 1401 | // no successor has it live in. |
| 1402 | if (I == end()) { |
| 1403 | for (MachineBasicBlock *S : successors()) { |
| 1404 | for (MCSubRegIterator SubReg(Reg, TRI, /*IncludeSelf*/true); |
| 1405 | SubReg.isValid(); ++SubReg) { |
| 1406 | if (S->isLiveIn(*SubReg)) |
| 1407 | return LQR_Live; |
| 1408 | } |
| 1409 | } |
| 1410 | |
| 1411 | return LQR_Dead; |
| 1412 | } |
| 1413 | |
| 1414 | |
| 1415 | N = Neighborhood; |
| 1416 | |
| 1417 | // Start by searching backwards from Before, looking for kills, reads or defs. |
| 1418 | I = const_iterator(Before); |
James Molloy | c747cda | 2012-09-12 10:18:23 +0000 | [diff] [blame] | 1419 | // If this is the first insn in the block, don't search backwards. |
Matthias Braun | 07a07ba | 2015-05-27 05:12:39 +0000 | [diff] [blame] | 1420 | if (I != begin()) { |
James Molloy | c747cda | 2012-09-12 10:18:23 +0000 | [diff] [blame] | 1421 | do { |
| 1422 | --I; |
| 1423 | |
Matt Arsenault | f2edba8 | 2018-08-30 07:18:19 +0000 | [diff] [blame] | 1424 | if (I->isDebugInstr()) |
| 1425 | continue; |
| 1426 | |
| 1427 | --N; |
| 1428 | |
Matthias Braun | 60d69e2 | 2015-12-11 19:42:09 +0000 | [diff] [blame] | 1429 | MachineOperandIteratorBase::PhysRegInfo Info = |
Duncan P. N. Exon Smith | f9ab416 | 2016-02-27 17:05:33 +0000 | [diff] [blame] | 1430 | ConstMIOperands(*I).analyzePhysReg(Reg, TRI); |
James Molloy | c747cda | 2012-09-12 10:18:23 +0000 | [diff] [blame] | 1431 | |
Matthias Braun | 60d69e2 | 2015-12-11 19:42:09 +0000 | [diff] [blame] | 1432 | // Defs happen after uses so they take precedence if both are present. |
Tim Northover | dd219d0 | 2012-11-20 09:56:11 +0000 | [diff] [blame] | 1433 | |
Matthias Braun | 60d69e2 | 2015-12-11 19:42:09 +0000 | [diff] [blame] | 1434 | // Register is dead after a dead def of the full register. |
| 1435 | if (Info.DeadDef) |
James Molloy | c747cda | 2012-09-12 10:18:23 +0000 | [diff] [blame] | 1436 | return LQR_Dead; |
Matthias Braun | 60d69e2 | 2015-12-11 19:42:09 +0000 | [diff] [blame] | 1437 | // Register is (at least partially) live after a def. |
Quentin Colombet | 08e7999 | 2016-04-26 23:14:29 +0000 | [diff] [blame] | 1438 | if (Info.Defined) { |
| 1439 | if (!Info.PartialDeadDef) |
| 1440 | return LQR_Live; |
| 1441 | // As soon as we saw a partial definition (dead or not), |
| 1442 | // we cannot tell if the value is partial live without |
| 1443 | // tracking the lanemasks. We are not going to do this, |
| 1444 | // so fall back on the remaining of the analysis. |
| 1445 | break; |
| 1446 | } |
Matthias Braun | 60d69e2 | 2015-12-11 19:42:09 +0000 | [diff] [blame] | 1447 | // Register is dead after a full kill or clobber and no def. |
| 1448 | if (Info.Killed || Info.Clobbered) |
| 1449 | return LQR_Dead; |
| 1450 | // Register must be live if we read it. |
| 1451 | if (Info.Read) |
| 1452 | return LQR_Live; |
Matt Arsenault | f2edba8 | 2018-08-30 07:18:19 +0000 | [diff] [blame] | 1453 | |
| 1454 | } while (I != begin() && N > 0); |
James Molloy | c747cda | 2012-09-12 10:18:23 +0000 | [diff] [blame] | 1455 | } |
| 1456 | |
| 1457 | // Did we get to the start of the block? |
Matthias Braun | 07a07ba | 2015-05-27 05:12:39 +0000 | [diff] [blame] | 1458 | if (I == begin()) { |
James Molloy | c747cda | 2012-09-12 10:18:23 +0000 | [diff] [blame] | 1459 | // If so, the register's state is definitely defined by the live-in state. |
Matthias Braun | 60d69e2 | 2015-12-11 19:42:09 +0000 | [diff] [blame] | 1460 | for (MCRegAliasIterator RAI(Reg, TRI, /*IncludeSelf=*/true); RAI.isValid(); |
| 1461 | ++RAI) |
Matthias Braun | 07a07ba | 2015-05-27 05:12:39 +0000 | [diff] [blame] | 1462 | if (isLiveIn(*RAI)) |
Matthias Braun | 60d69e2 | 2015-12-11 19:42:09 +0000 | [diff] [blame] | 1463 | return LQR_Live; |
James Molloy | c747cda | 2012-09-12 10:18:23 +0000 | [diff] [blame] | 1464 | |
| 1465 | return LQR_Dead; |
| 1466 | } |
| 1467 | |
James Molloy | c747cda | 2012-09-12 10:18:23 +0000 | [diff] [blame] | 1468 | // At this point we have no idea of the liveness of the register. |
| 1469 | return LQR_Unknown; |
| 1470 | } |
Reid Kleckner | b8fd162 | 2015-11-06 17:06:38 +0000 | [diff] [blame] | 1471 | |
| 1472 | const uint32_t * |
| 1473 | MachineBasicBlock::getBeginClobberMask(const TargetRegisterInfo *TRI) const { |
| 1474 | // EH funclet entry does not preserve any registers. |
| 1475 | return isEHFuncletEntry() ? TRI->getNoPreservedMask() : nullptr; |
| 1476 | } |
| 1477 | |
| 1478 | const uint32_t * |
| 1479 | MachineBasicBlock::getEndClobberMask(const TargetRegisterInfo *TRI) const { |
| 1480 | // If we see a return block with successors, this must be a funclet return, |
| 1481 | // which does not preserve any registers. If there are no successors, we don't |
| 1482 | // care what kind of return it is, putting a mask after it is a no-op. |
| 1483 | return isReturnBlock() && !succ_empty() ? TRI->getNoPreservedMask() : nullptr; |
| 1484 | } |
Matthias Braun | 1819830 | 2016-12-16 23:55:37 +0000 | [diff] [blame] | 1485 | |
| 1486 | void MachineBasicBlock::clearLiveIns() { |
| 1487 | LiveIns.clear(); |
| 1488 | } |
Matthias Braun | 1172332 | 2017-01-05 20:01:19 +0000 | [diff] [blame] | 1489 | |
| 1490 | MachineBasicBlock::livein_iterator MachineBasicBlock::livein_begin() const { |
| 1491 | assert(getParent()->getProperties().hasProperty( |
| 1492 | MachineFunctionProperties::Property::TracksLiveness) && |
| 1493 | "Liveness information is accurate"); |
| 1494 | return LiveIns.begin(); |
| 1495 | } |