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