Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 1 | //===-- llvm/CodeGen/MachineBasicBlock.cpp ----------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 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 | aad5c05 | 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" |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 15 | #include "llvm/BasicBlock.h" |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/LiveVariables.h" |
| 17 | #include "llvm/CodeGen/MachineDominators.h" |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineFunction.h" |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/MachineLoopInfo.h" |
Jakob Stoklund Olesen | f4a1e1a | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/SlotIndexes.h" |
Chris Lattner | f71cb01 | 2010-01-26 04:55:51 +0000 | [diff] [blame] | 21 | #include "llvm/MC/MCAsmInfo.h" |
| 22 | #include "llvm/MC/MCContext.h" |
Bill Wendling | 43cf6c3 | 2009-12-15 00:39:24 +0000 | [diff] [blame] | 23 | #include "llvm/Target/TargetRegisterInfo.h" |
Owen Anderson | 07000c6 | 2006-05-12 06:33:49 +0000 | [diff] [blame] | 24 | #include "llvm/Target/TargetData.h" |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 25 | #include "llvm/Target/TargetInstrInfo.h" |
Alkis Evlogimenos | 743d0a1 | 2004-02-23 18:14:48 +0000 | [diff] [blame] | 26 | #include "llvm/Target/TargetMachine.h" |
Chris Lattner | f71cb01 | 2010-01-26 04:55:51 +0000 | [diff] [blame] | 27 | #include "llvm/Assembly/Writer.h" |
| 28 | #include "llvm/ADT/SmallString.h" |
Bill Wendling | e543d16 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/SmallPtrSet.h" |
David Greene | dbdbbd9 | 2010-01-04 23:22:07 +0000 | [diff] [blame] | 30 | #include "llvm/Support/Debug.h" |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 31 | #include "llvm/Support/LeakDetector.h" |
Daniel Dunbar | 1cd1d98 | 2009-07-24 10:36:58 +0000 | [diff] [blame] | 32 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 33 | #include <algorithm> |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 34 | using namespace llvm; |
| 35 | |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 36 | MachineBasicBlock::MachineBasicBlock(MachineFunction &mf, const BasicBlock *bb) |
Dan Gohman | 8c2b525 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 37 | : BB(bb), Number(-1), xParent(&mf), Alignment(0), IsLandingPad(false), |
| 38 | AddressTaken(false) { |
Dan Gohman | fed90b6 | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 39 | Insts.Parent = this; |
Tanya Lattner | 17fb34b | 2004-05-24 07:14:35 +0000 | [diff] [blame] | 40 | } |
Tanya Lattner | 17fb34b | 2004-05-24 07:14:35 +0000 | [diff] [blame] | 41 | |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 42 | MachineBasicBlock::~MachineBasicBlock() { |
| 43 | LeakDetector::removeGarbageObject(this); |
| 44 | } |
| 45 | |
Chris Lattner | f71cb01 | 2010-01-26 04:55:51 +0000 | [diff] [blame] | 46 | /// getSymbol - Return the MCSymbol for this basic block. |
| 47 | /// |
Chris Lattner | 1b2eb0e | 2010-03-13 21:04:28 +0000 | [diff] [blame] | 48 | MCSymbol *MachineBasicBlock::getSymbol() const { |
Chris Lattner | f71cb01 | 2010-01-26 04:55:51 +0000 | [diff] [blame] | 49 | const MachineFunction *MF = getParent(); |
Chris Lattner | 1b2eb0e | 2010-03-13 21:04:28 +0000 | [diff] [blame] | 50 | MCContext &Ctx = MF->getContext(); |
| 51 | const char *Prefix = Ctx.getAsmInfo().getPrivateGlobalPrefix(); |
Chris Lattner | 9b97a73 | 2010-03-30 18:10:53 +0000 | [diff] [blame] | 52 | return Ctx.GetOrCreateSymbol(Twine(Prefix) + "BB" + |
| 53 | Twine(MF->getFunctionNumber()) + "_" + |
| 54 | Twine(getNumber())); |
Chris Lattner | f71cb01 | 2010-01-26 04:55:51 +0000 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 58 | raw_ostream &llvm::operator<<(raw_ostream &OS, const MachineBasicBlock &MBB) { |
Daniel Dunbar | 1cd1d98 | 2009-07-24 10:36:58 +0000 | [diff] [blame] | 59 | MBB.print(OS); |
| 60 | return OS; |
| 61 | } |
Tanya Lattner | 17fb34b | 2004-05-24 07:14:35 +0000 | [diff] [blame] | 62 | |
Jakub Staszak | 12af5ff | 2011-06-16 18:01:17 +0000 | [diff] [blame] | 63 | /// addNodeToList (MBB) - When an MBB is added to an MF, we need to update the |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 64 | /// parent pointer of the MBB, the MBB numbering, and any instructions in the |
| 65 | /// MBB to be on the right operand list for registers. |
| 66 | /// |
| 67 | /// MBBs start out as #-1. When a MBB is added to a MachineFunction, it |
| 68 | /// gets the next available unique MBB number. If it is removed from a |
| 69 | /// MachineFunction, it goes back to being #-1. |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 70 | void ilist_traits<MachineBasicBlock>::addNodeToList(MachineBasicBlock *N) { |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 71 | MachineFunction &MF = *N->getParent(); |
| 72 | N->Number = MF.addToMBBNumbering(N); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 73 | |
| 74 | // Make sure the instructions have their operands in the reginfo lists. |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 75 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 76 | for (MachineBasicBlock::iterator I = N->begin(), E = N->end(); I != E; ++I) |
| 77 | I->AddRegOperandsToUseLists(RegInfo); |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 78 | |
| 79 | LeakDetector::removeGarbageObject(N); |
Brian Gaeke | 0bcb1ad | 2004-05-12 21:35:22 +0000 | [diff] [blame] | 80 | } |
| 81 | |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 82 | void ilist_traits<MachineBasicBlock>::removeNodeFromList(MachineBasicBlock *N) { |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 83 | N->getParent()->removeFromMBBNumbering(N->Number); |
Brian Gaeke | 0bcb1ad | 2004-05-12 21:35:22 +0000 | [diff] [blame] | 84 | N->Number = -1; |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 85 | LeakDetector::addGarbageObject(N); |
Brian Gaeke | 0bcb1ad | 2004-05-12 21:35:22 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Chris Lattner | 5e61fa9 | 2004-02-19 16:13:54 +0000 | [diff] [blame] | 88 | |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 89 | /// addNodeToList (MI) - When we add an instruction to a basic block |
| 90 | /// list, we update its parent pointer and add its operands from reg use/def |
| 91 | /// lists if appropriate. |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 92 | void ilist_traits<MachineInstr>::addNodeToList(MachineInstr *N) { |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 93 | assert(N->getParent() == 0 && "machine instruction already in a basic block"); |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 94 | N->setParent(Parent); |
Jakub Staszak | 12af5ff | 2011-06-16 18:01:17 +0000 | [diff] [blame] | 95 | |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 96 | // Add the instruction's register operands to their corresponding |
| 97 | // use/def lists. |
| 98 | MachineFunction *MF = Parent->getParent(); |
| 99 | N->AddRegOperandsToUseLists(MF->getRegInfo()); |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 100 | |
| 101 | LeakDetector::removeGarbageObject(N); |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 102 | } |
| 103 | |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 104 | /// removeNodeFromList (MI) - When we remove an instruction from a basic block |
| 105 | /// list, we update its parent pointer and remove its operands from reg use/def |
| 106 | /// lists if appropriate. |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 107 | void ilist_traits<MachineInstr>::removeNodeFromList(MachineInstr *N) { |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 108 | assert(N->getParent() != 0 && "machine instruction not in a basic block"); |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 109 | |
| 110 | // Remove from the use/def lists. |
| 111 | N->RemoveRegOperandsFromUseLists(); |
Jakub Staszak | 12af5ff | 2011-06-16 18:01:17 +0000 | [diff] [blame] | 112 | |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 113 | N->setParent(0); |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 114 | |
| 115 | LeakDetector::addGarbageObject(N); |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 116 | } |
| 117 | |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 118 | /// transferNodesFromList (MI) - When moving a range of instructions from one |
| 119 | /// MBB list to another, we need to update the parent pointers and the use/def |
| 120 | /// lists. |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 121 | void ilist_traits<MachineInstr>:: |
| 122 | transferNodesFromList(ilist_traits<MachineInstr> &fromList, |
| 123 | MachineBasicBlock::iterator first, |
| 124 | MachineBasicBlock::iterator last) { |
Dan Gohman | fed90b6 | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 125 | assert(Parent->getParent() == fromList.Parent->getParent() && |
| 126 | "MachineInstr parent mismatch!"); |
| 127 | |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 128 | // Splice within the same MBB -> no change. |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 129 | if (Parent == fromList.Parent) return; |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 130 | |
| 131 | // If splicing between two blocks within the same function, just update the |
| 132 | // parent pointers. |
Dan Gohman | fed90b6 | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 133 | for (; first != last; ++first) |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 134 | first->setParent(Parent); |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 135 | } |
| 136 | |
Dan Gohman | fed90b6 | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 137 | void ilist_traits<MachineInstr>::deleteNode(MachineInstr* MI) { |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 138 | assert(!MI->getParent() && "MI is still in a block!"); |
| 139 | Parent->getParent()->DeleteMachineInstr(MI); |
| 140 | } |
| 141 | |
Dan Gohman | d463a74 | 2010-07-07 14:33:51 +0000 | [diff] [blame] | 142 | MachineBasicBlock::iterator MachineBasicBlock::getFirstNonPHI() { |
| 143 | iterator I = begin(); |
| 144 | while (I != end() && I->isPHI()) |
| 145 | ++I; |
| 146 | return I; |
| 147 | } |
| 148 | |
Jakob Stoklund Olesen | 92095e7 | 2010-10-30 01:26:14 +0000 | [diff] [blame] | 149 | MachineBasicBlock::iterator |
| 150 | MachineBasicBlock::SkipPHIsAndLabels(MachineBasicBlock::iterator I) { |
| 151 | while (I != end() && (I->isPHI() || I->isLabel() || I->isDebugValue())) |
| 152 | ++I; |
| 153 | return I; |
| 154 | } |
| 155 | |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 156 | MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() { |
Jakob Stoklund Olesen | b6436e5 | 2011-01-14 02:12:54 +0000 | [diff] [blame] | 157 | iterator I = end(); |
Jakob Stoklund Olesen | 0422390 | 2011-01-14 06:33:45 +0000 | [diff] [blame] | 158 | while (I != begin() && ((--I)->getDesc().isTerminator() || I->isDebugValue())) |
Jakob Stoklund Olesen | b6436e5 | 2011-01-14 02:12:54 +0000 | [diff] [blame] | 159 | ; /*noop */ |
Jakob Stoklund Olesen | 0422390 | 2011-01-14 06:33:45 +0000 | [diff] [blame] | 160 | while (I != end() && !I->getDesc().isTerminator()) |
| 161 | ++I; |
Jakob Stoklund Olesen | b6436e5 | 2011-01-14 02:12:54 +0000 | [diff] [blame] | 162 | return I; |
Alkis Evlogimenos | 743d0a1 | 2004-02-23 18:14:48 +0000 | [diff] [blame] | 163 | } |
| 164 | |
Jakob Stoklund Olesen | 4f28c1c | 2011-01-13 21:28:52 +0000 | [diff] [blame] | 165 | MachineBasicBlock::iterator MachineBasicBlock::getLastNonDebugInstr() { |
| 166 | iterator B = begin(), I = end(); |
| 167 | while (I != B) { |
| 168 | --I; |
| 169 | if (I->isDebugValue()) |
| 170 | continue; |
| 171 | return I; |
| 172 | } |
| 173 | // The block is all debug values. |
| 174 | return end(); |
| 175 | } |
| 176 | |
Jakob Stoklund Olesen | cb64047 | 2011-02-04 19:33:11 +0000 | [diff] [blame] | 177 | const MachineBasicBlock *MachineBasicBlock::getLandingPadSuccessor() const { |
| 178 | // A block with a landing pad successor only has one other successor. |
| 179 | if (succ_size() > 2) |
| 180 | return 0; |
| 181 | for (const_succ_iterator I = succ_begin(), E = succ_end(); I != E; ++I) |
| 182 | if ((*I)->isLandingPad()) |
| 183 | return *I; |
| 184 | return 0; |
| 185 | } |
| 186 | |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 187 | void MachineBasicBlock::dump() const { |
David Greene | dbdbbd9 | 2010-01-04 23:22:07 +0000 | [diff] [blame] | 188 | print(dbgs()); |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 189 | } |
| 190 | |
Jakob Stoklund Olesen | 324da76 | 2009-11-20 01:17:03 +0000 | [diff] [blame] | 191 | StringRef MachineBasicBlock::getName() const { |
| 192 | if (const BasicBlock *LBB = getBasicBlock()) |
| 193 | return LBB->getName(); |
| 194 | else |
| 195 | return "(null)"; |
| 196 | } |
| 197 | |
Jakob Stoklund Olesen | f4a1e1a | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 198 | void MachineBasicBlock::print(raw_ostream &OS, SlotIndexes *Indexes) const { |
Evan Cheng | 13d8285 | 2007-02-10 02:38:19 +0000 | [diff] [blame] | 199 | const MachineFunction *MF = getParent(); |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 200 | if (!MF) { |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 201 | OS << "Can't print out MachineBasicBlock because parent MachineFunction" |
| 202 | << " is null\n"; |
Tanya Lattner | 792699c | 2004-05-24 06:11:51 +0000 | [diff] [blame] | 203 | return; |
| 204 | } |
Alkis Evlogimenos | a638286 | 2004-09-05 18:39:20 +0000 | [diff] [blame] | 205 | |
Dan Gohman | 0ba90f3 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 206 | if (Alignment) { OS << "Alignment " << Alignment << "\n"; } |
| 207 | |
Jakob Stoklund Olesen | f4a1e1a | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 208 | if (Indexes) |
| 209 | OS << Indexes->getMBBStartIdx(this) << '\t'; |
| 210 | |
Dan Gohman | 0ba90f3 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 211 | OS << "BB#" << getNumber() << ": "; |
| 212 | |
| 213 | const char *Comma = ""; |
| 214 | if (const BasicBlock *LBB = getBasicBlock()) { |
| 215 | OS << Comma << "derived from LLVM BB "; |
| 216 | WriteAsOperand(OS, LBB, /*PrintType=*/false); |
| 217 | Comma = ", "; |
| 218 | } |
| 219 | if (isLandingPad()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; } |
| 220 | if (hasAddressTaken()) { OS << Comma << "ADDRESS TAKEN"; Comma = ", "; } |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 221 | OS << '\n'; |
Evan Cheng | 13d8285 | 2007-02-10 02:38:19 +0000 | [diff] [blame] | 222 | |
Jakob Stoklund Olesen | f4a1e1a | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 223 | const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo(); |
Dan Gohman | cb406c2 | 2007-10-03 19:26:29 +0000 | [diff] [blame] | 224 | if (!livein_empty()) { |
Jakob Stoklund Olesen | f4a1e1a | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 225 | if (Indexes) OS << '\t'; |
Dan Gohman | 0ba90f3 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 226 | OS << " Live Ins:"; |
Dan Gohman | 81bf03e | 2010-04-13 16:57:55 +0000 | [diff] [blame] | 227 | for (livein_iterator I = livein_begin(),E = livein_end(); I != E; ++I) |
Jakob Stoklund Olesen | 668c9e3 | 2011-01-13 00:57:35 +0000 | [diff] [blame] | 228 | OS << ' ' << PrintReg(*I, TRI); |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 229 | OS << '\n'; |
Evan Cheng | 13d8285 | 2007-02-10 02:38:19 +0000 | [diff] [blame] | 230 | } |
Chris Lattner | 681764b | 2006-09-26 03:41:59 +0000 | [diff] [blame] | 231 | // Print the preds of this block according to the CFG. |
| 232 | if (!pred_empty()) { |
Jakob Stoklund Olesen | f4a1e1a | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 233 | if (Indexes) OS << '\t'; |
Chris Lattner | 681764b | 2006-09-26 03:41:59 +0000 | [diff] [blame] | 234 | OS << " Predecessors according to CFG:"; |
| 235 | for (const_pred_iterator PI = pred_begin(), E = pred_end(); PI != E; ++PI) |
Dan Gohman | 0ba90f3 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 236 | OS << " BB#" << (*PI)->getNumber(); |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 237 | OS << '\n'; |
Chris Lattner | 681764b | 2006-09-26 03:41:59 +0000 | [diff] [blame] | 238 | } |
Jakob Stoklund Olesen | f4a1e1a | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 239 | |
Alkis Evlogimenos | a638286 | 2004-09-05 18:39:20 +0000 | [diff] [blame] | 240 | for (const_iterator I = begin(); I != end(); ++I) { |
Jakob Stoklund Olesen | f4a1e1a | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 241 | if (Indexes) { |
| 242 | if (Indexes->hasIndex(I)) |
| 243 | OS << Indexes->getInstructionIndex(I); |
| 244 | OS << '\t'; |
| 245 | } |
Chris Lattner | 2d8e3d2 | 2009-08-23 00:47:04 +0000 | [diff] [blame] | 246 | OS << '\t'; |
Alkis Evlogimenos | a638286 | 2004-09-05 18:39:20 +0000 | [diff] [blame] | 247 | I->print(OS, &getParent()->getTarget()); |
| 248 | } |
Chris Lattner | 380ae49 | 2005-04-01 06:48:38 +0000 | [diff] [blame] | 249 | |
| 250 | // Print the successors of this block according to the CFG. |
| 251 | if (!succ_empty()) { |
Jakob Stoklund Olesen | f4a1e1a | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 252 | if (Indexes) OS << '\t'; |
Chris Lattner | 380ae49 | 2005-04-01 06:48:38 +0000 | [diff] [blame] | 253 | OS << " Successors according to CFG:"; |
| 254 | for (const_succ_iterator SI = succ_begin(), E = succ_end(); SI != E; ++SI) |
Dan Gohman | 0ba90f3 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 255 | OS << " BB#" << (*SI)->getNumber(); |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 256 | OS << '\n'; |
Chris Lattner | 380ae49 | 2005-04-01 06:48:38 +0000 | [diff] [blame] | 257 | } |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 258 | } |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 259 | |
Evan Cheng | b371f45 | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 260 | void MachineBasicBlock::removeLiveIn(unsigned Reg) { |
Dan Gohman | 81bf03e | 2010-04-13 16:57:55 +0000 | [diff] [blame] | 261 | std::vector<unsigned>::iterator I = |
| 262 | std::find(LiveIns.begin(), LiveIns.end(), Reg); |
| 263 | assert(I != LiveIns.end() && "Not a live in!"); |
Evan Cheng | b371f45 | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 264 | LiveIns.erase(I); |
| 265 | } |
| 266 | |
Evan Cheng | a971dbd | 2008-04-24 09:06:33 +0000 | [diff] [blame] | 267 | bool MachineBasicBlock::isLiveIn(unsigned Reg) const { |
Dan Gohman | 81bf03e | 2010-04-13 16:57:55 +0000 | [diff] [blame] | 268 | livein_iterator I = std::find(livein_begin(), livein_end(), Reg); |
Evan Cheng | a971dbd | 2008-04-24 09:06:33 +0000 | [diff] [blame] | 269 | return I != livein_end(); |
| 270 | } |
| 271 | |
Chris Lattner | c585a3f | 2006-10-24 00:02:26 +0000 | [diff] [blame] | 272 | void MachineBasicBlock::moveBefore(MachineBasicBlock *NewAfter) { |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 273 | getParent()->splice(NewAfter, this); |
Chris Lattner | c585a3f | 2006-10-24 00:02:26 +0000 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | void MachineBasicBlock::moveAfter(MachineBasicBlock *NewBefore) { |
Chris Lattner | c585a3f | 2006-10-24 00:02:26 +0000 | [diff] [blame] | 277 | MachineFunction::iterator BBI = NewBefore; |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 278 | getParent()->splice(++BBI, this); |
Chris Lattner | c585a3f | 2006-10-24 00:02:26 +0000 | [diff] [blame] | 279 | } |
| 280 | |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 281 | void MachineBasicBlock::updateTerminator() { |
| 282 | const TargetInstrInfo *TII = getParent()->getTarget().getInstrInfo(); |
| 283 | // A block with no successors has no concerns with fall-through edges. |
| 284 | if (this->succ_empty()) return; |
| 285 | |
| 286 | MachineBasicBlock *TBB = 0, *FBB = 0; |
| 287 | SmallVector<MachineOperand, 4> Cond; |
Stuart Hastings | 3bf9125 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 288 | DebugLoc dl; // FIXME: this is nowhere |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 289 | bool B = TII->AnalyzeBranch(*this, TBB, FBB, Cond); |
| 290 | (void) B; |
| 291 | assert(!B && "UpdateTerminators requires analyzable predecessors!"); |
| 292 | if (Cond.empty()) { |
| 293 | if (TBB) { |
| 294 | // The block has an unconditional branch. If its successor is now |
| 295 | // its layout successor, delete the branch. |
| 296 | if (isLayoutSuccessor(TBB)) |
| 297 | TII->RemoveBranch(*this); |
| 298 | } else { |
| 299 | // The block has an unconditional fallthrough. If its successor is not |
| 300 | // its layout successor, insert a branch. |
| 301 | TBB = *succ_begin(); |
| 302 | if (!isLayoutSuccessor(TBB)) |
Stuart Hastings | 3bf9125 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 303 | TII->InsertBranch(*this, TBB, 0, Cond, dl); |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 304 | } |
| 305 | } else { |
| 306 | if (FBB) { |
| 307 | // The block has a non-fallthrough conditional branch. If one of its |
| 308 | // successors is its layout successor, rewrite it to a fallthrough |
| 309 | // conditional branch. |
| 310 | if (isLayoutSuccessor(TBB)) { |
Jakob Stoklund Olesen | e023993 | 2009-11-22 18:28:04 +0000 | [diff] [blame] | 311 | if (TII->ReverseBranchCondition(Cond)) |
| 312 | return; |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 313 | TII->RemoveBranch(*this); |
Stuart Hastings | 3bf9125 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 314 | TII->InsertBranch(*this, FBB, 0, Cond, dl); |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 315 | } else if (isLayoutSuccessor(FBB)) { |
| 316 | TII->RemoveBranch(*this); |
Stuart Hastings | 3bf9125 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 317 | TII->InsertBranch(*this, TBB, 0, Cond, dl); |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 318 | } |
| 319 | } else { |
| 320 | // The block has a fallthrough conditional branch. |
| 321 | MachineBasicBlock *MBBA = *succ_begin(); |
Chris Lattner | 7896c9f | 2009-12-03 00:50:42 +0000 | [diff] [blame] | 322 | MachineBasicBlock *MBBB = *llvm::next(succ_begin()); |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 323 | if (MBBA == TBB) std::swap(MBBB, MBBA); |
| 324 | if (isLayoutSuccessor(TBB)) { |
Jakob Stoklund Olesen | e023993 | 2009-11-22 18:28:04 +0000 | [diff] [blame] | 325 | if (TII->ReverseBranchCondition(Cond)) { |
| 326 | // We can't reverse the condition, add an unconditional branch. |
| 327 | Cond.clear(); |
Stuart Hastings | 3bf9125 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 328 | TII->InsertBranch(*this, MBBA, 0, Cond, dl); |
Jakob Stoklund Olesen | e023993 | 2009-11-22 18:28:04 +0000 | [diff] [blame] | 329 | return; |
| 330 | } |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 331 | TII->RemoveBranch(*this); |
Stuart Hastings | 3bf9125 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 332 | TII->InsertBranch(*this, MBBA, 0, Cond, dl); |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 333 | } else if (!isLayoutSuccessor(MBBA)) { |
| 334 | TII->RemoveBranch(*this); |
Stuart Hastings | 3bf9125 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 335 | TII->InsertBranch(*this, TBB, MBBA, Cond, dl); |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 336 | } |
| 337 | } |
| 338 | } |
| 339 | } |
Chris Lattner | c585a3f | 2006-10-24 00:02:26 +0000 | [diff] [blame] | 340 | |
Jakub Staszak | 7cc2b07 | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 341 | void MachineBasicBlock::addSuccessor(MachineBasicBlock *succ, uint32_t weight) { |
| 342 | |
| 343 | // If we see non-zero value for the first time it means we actually use Weight |
| 344 | // list, so we fill all Weights with 0's. |
| 345 | if (weight != 0 && Weights.empty()) |
| 346 | Weights.resize(Successors.size()); |
| 347 | |
| 348 | if (weight != 0 || !Weights.empty()) |
| 349 | Weights.push_back(weight); |
| 350 | |
| 351 | Successors.push_back(succ); |
| 352 | succ->addPredecessor(this); |
| 353 | } |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 354 | |
| 355 | void MachineBasicBlock::removeSuccessor(MachineBasicBlock *succ) { |
| 356 | succ->removePredecessor(this); |
| 357 | succ_iterator I = std::find(Successors.begin(), Successors.end(), succ); |
| 358 | assert(I != Successors.end() && "Not a current successor!"); |
Jakub Staszak | 7cc2b07 | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 359 | |
| 360 | // If Weight list is empty it means we don't use it (disabled optimization). |
| 361 | if (!Weights.empty()) { |
| 362 | weight_iterator WI = getWeightIterator(I); |
| 363 | Weights.erase(WI); |
| 364 | } |
| 365 | |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 366 | Successors.erase(I); |
| 367 | } |
| 368 | |
Jakub Staszak | 12af5ff | 2011-06-16 18:01:17 +0000 | [diff] [blame] | 369 | MachineBasicBlock::succ_iterator |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 370 | MachineBasicBlock::removeSuccessor(succ_iterator I) { |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 371 | assert(I != Successors.end() && "Not a current successor!"); |
Jakub Staszak | 7cc2b07 | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 372 | |
| 373 | // If Weight list is empty it means we don't use it (disabled optimization). |
| 374 | if (!Weights.empty()) { |
| 375 | weight_iterator WI = getWeightIterator(I); |
| 376 | Weights.erase(WI); |
| 377 | } |
| 378 | |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 379 | (*I)->removePredecessor(this); |
Dan Gohman | 5d5ee80 | 2009-01-08 22:19:34 +0000 | [diff] [blame] | 380 | return Successors.erase(I); |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 381 | } |
| 382 | |
Jakub Staszak | 7cc2b07 | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 383 | void MachineBasicBlock::replaceSuccessor(MachineBasicBlock *Old, |
| 384 | MachineBasicBlock *New) { |
| 385 | uint32_t weight = 0; |
| 386 | succ_iterator SI = std::find(Successors.begin(), Successors.end(), Old); |
| 387 | |
| 388 | // If Weight list is empty it means we don't use it (disabled optimization). |
| 389 | if (!Weights.empty()) { |
| 390 | weight_iterator WI = getWeightIterator(SI); |
| 391 | weight = *WI; |
| 392 | } |
| 393 | |
| 394 | // Update the successor information. |
| 395 | removeSuccessor(SI); |
| 396 | addSuccessor(New, weight); |
| 397 | } |
| 398 | |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 399 | void MachineBasicBlock::addPredecessor(MachineBasicBlock *pred) { |
| 400 | Predecessors.push_back(pred); |
| 401 | } |
| 402 | |
| 403 | void MachineBasicBlock::removePredecessor(MachineBasicBlock *pred) { |
Eli Friedman | 6dda916 | 2011-04-18 21:21:37 +0000 | [diff] [blame] | 404 | pred_iterator I = std::find(Predecessors.begin(), Predecessors.end(), pred); |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 405 | assert(I != Predecessors.end() && "Pred is not a predecessor of this block!"); |
| 406 | Predecessors.erase(I); |
| 407 | } |
Evan Cheng | 4f09878 | 2007-05-17 23:58:53 +0000 | [diff] [blame] | 408 | |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 409 | void MachineBasicBlock::transferSuccessors(MachineBasicBlock *fromMBB) { |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 410 | if (this == fromMBB) |
| 411 | return; |
Jakub Staszak | 12af5ff | 2011-06-16 18:01:17 +0000 | [diff] [blame] | 412 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 413 | while (!fromMBB->succ_empty()) { |
| 414 | MachineBasicBlock *Succ = *fromMBB->succ_begin(); |
Jakub Staszak | 7cc2b07 | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 415 | uint32_t weight = 0; |
| 416 | |
| 417 | |
| 418 | // If Weight list is empty it means we don't use it (disabled optimization). |
| 419 | if (!fromMBB->Weights.empty()) |
| 420 | weight = *fromMBB->Weights.begin(); |
| 421 | |
| 422 | addSuccessor(Succ, weight); |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 423 | fromMBB->removeSuccessor(Succ); |
| 424 | } |
| 425 | } |
| 426 | |
| 427 | void |
| 428 | MachineBasicBlock::transferSuccessorsAndUpdatePHIs(MachineBasicBlock *fromMBB) { |
| 429 | if (this == fromMBB) |
| 430 | return; |
Jakub Staszak | 12af5ff | 2011-06-16 18:01:17 +0000 | [diff] [blame] | 431 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 432 | while (!fromMBB->succ_empty()) { |
| 433 | MachineBasicBlock *Succ = *fromMBB->succ_begin(); |
| 434 | addSuccessor(Succ); |
| 435 | fromMBB->removeSuccessor(Succ); |
| 436 | |
| 437 | // Fix up any PHI nodes in the successor. |
| 438 | for (MachineBasicBlock::iterator MI = Succ->begin(), ME = Succ->end(); |
| 439 | MI != ME && MI->isPHI(); ++MI) |
| 440 | for (unsigned i = 2, e = MI->getNumOperands()+1; i != e; i += 2) { |
| 441 | MachineOperand &MO = MI->getOperand(i); |
| 442 | if (MO.getMBB() == fromMBB) |
| 443 | MO.setMBB(this); |
| 444 | } |
| 445 | } |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 446 | } |
| 447 | |
Dan Gohman | 6d1b89e | 2009-03-30 20:06:29 +0000 | [diff] [blame] | 448 | bool MachineBasicBlock::isSuccessor(const MachineBasicBlock *MBB) const { |
Eli Friedman | 6dda916 | 2011-04-18 21:21:37 +0000 | [diff] [blame] | 449 | const_succ_iterator I = std::find(Successors.begin(), Successors.end(), MBB); |
Evan Cheng | 4f09878 | 2007-05-17 23:58:53 +0000 | [diff] [blame] | 450 | return I != Successors.end(); |
| 451 | } |
Evan Cheng | 0370fad | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 452 | |
Dan Gohman | 6d1b89e | 2009-03-30 20:06:29 +0000 | [diff] [blame] | 453 | bool MachineBasicBlock::isLayoutSuccessor(const MachineBasicBlock *MBB) const { |
Dan Gohman | 6ade6f5 | 2008-10-02 22:09:09 +0000 | [diff] [blame] | 454 | MachineFunction::const_iterator I(this); |
Chris Lattner | 7896c9f | 2009-12-03 00:50:42 +0000 | [diff] [blame] | 455 | return llvm::next(I) == MachineFunction::const_iterator(MBB); |
Dan Gohman | 6ade6f5 | 2008-10-02 22:09:09 +0000 | [diff] [blame] | 456 | } |
| 457 | |
Bob Wilson | 15acadd | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 458 | bool MachineBasicBlock::canFallThrough() { |
Bob Wilson | 15acadd | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 459 | MachineFunction::iterator Fallthrough = this; |
| 460 | ++Fallthrough; |
| 461 | // If FallthroughBlock is off the end of the function, it can't fall through. |
| 462 | if (Fallthrough == getParent()->end()) |
| 463 | return false; |
| 464 | |
| 465 | // If FallthroughBlock isn't a successor, no fallthrough is possible. |
| 466 | if (!isSuccessor(Fallthrough)) |
| 467 | return false; |
| 468 | |
Dan Gohman | 735985f | 2009-12-05 00:32:59 +0000 | [diff] [blame] | 469 | // Analyze the branches, if any, at the end of the block. |
| 470 | MachineBasicBlock *TBB = 0, *FBB = 0; |
| 471 | SmallVector<MachineOperand, 4> Cond; |
| 472 | const TargetInstrInfo *TII = getParent()->getTarget().getInstrInfo(); |
Jakob Stoklund Olesen | 33cc8d6 | 2010-01-15 20:00:12 +0000 | [diff] [blame] | 473 | if (TII->AnalyzeBranch(*this, TBB, FBB, Cond)) { |
Dan Gohman | 735985f | 2009-12-05 00:32:59 +0000 | [diff] [blame] | 474 | // If we couldn't analyze the branch, examine the last instruction. |
| 475 | // If the block doesn't end in a known control barrier, assume fallthrough |
| 476 | // is possible. The isPredicable check is needed because this code can be |
| 477 | // called during IfConversion, where an instruction which is normally a |
| 478 | // Barrier is predicated and thus no longer an actual control barrier. This |
| 479 | // is over-conservative though, because if an instruction isn't actually |
| 480 | // predicated we could still treat it like a barrier. |
Bob Wilson | 15acadd | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 481 | return empty() || !back().getDesc().isBarrier() || |
| 482 | back().getDesc().isPredicable(); |
Dan Gohman | 735985f | 2009-12-05 00:32:59 +0000 | [diff] [blame] | 483 | } |
Bob Wilson | 15acadd | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 484 | |
| 485 | // If there is no branch, control always falls through. |
| 486 | if (TBB == 0) return true; |
| 487 | |
| 488 | // If there is some explicit branch to the fallthrough block, it can obviously |
| 489 | // reach, even though the branch should get folded to fall through implicitly. |
| 490 | if (MachineFunction::iterator(TBB) == Fallthrough || |
| 491 | MachineFunction::iterator(FBB) == Fallthrough) |
| 492 | return true; |
| 493 | |
| 494 | // If it's an unconditional branch to some block not the fall through, it |
| 495 | // doesn't fall through. |
| 496 | if (Cond.empty()) return false; |
| 497 | |
| 498 | // Otherwise, if it is conditional and has no explicit false block, it falls |
| 499 | // through. |
| 500 | return FBB == 0; |
| 501 | } |
| 502 | |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 503 | MachineBasicBlock * |
| 504 | MachineBasicBlock::SplitCriticalEdge(MachineBasicBlock *Succ, Pass *P) { |
| 505 | MachineFunction *MF = getParent(); |
| 506 | DebugLoc dl; // FIXME: this is nowhere |
| 507 | |
Jakob Stoklund Olesen | 371e82b | 2010-11-02 00:58:37 +0000 | [diff] [blame] | 508 | // We may need to update this's terminator, but we can't do that if |
| 509 | // AnalyzeBranch fails. If this uses a jump table, we won't touch it. |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 510 | const TargetInstrInfo *TII = MF->getTarget().getInstrInfo(); |
| 511 | MachineBasicBlock *TBB = 0, *FBB = 0; |
| 512 | SmallVector<MachineOperand, 4> Cond; |
| 513 | if (TII->AnalyzeBranch(*this, TBB, FBB, Cond)) |
| 514 | return NULL; |
| 515 | |
Jakob Stoklund Olesen | 371e82b | 2010-11-02 00:58:37 +0000 | [diff] [blame] | 516 | // Avoid bugpoint weirdness: A block may end with a conditional branch but |
| 517 | // jumps to the same MBB is either case. We have duplicate CFG edges in that |
| 518 | // case that we can't handle. Since this never happens in properly optimized |
| 519 | // code, just skip those edges. |
| 520 | if (TBB && TBB == FBB) { |
| 521 | DEBUG(dbgs() << "Won't split critical edge after degenerate BB#" |
| 522 | << getNumber() << '\n'); |
| 523 | return NULL; |
| 524 | } |
| 525 | |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 526 | MachineBasicBlock *NMBB = MF->CreateMachineBasicBlock(); |
| 527 | MF->insert(llvm::next(MachineFunction::iterator(this)), NMBB); |
Evan Cheng | 087fbeb | 2010-08-17 17:15:14 +0000 | [diff] [blame] | 528 | DEBUG(dbgs() << "Splitting critical edge:" |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 529 | " BB#" << getNumber() |
| 530 | << " -- BB#" << NMBB->getNumber() |
| 531 | << " -- BB#" << Succ->getNumber() << '\n'); |
| 532 | |
Jakob Stoklund Olesen | 5790335 | 2011-05-29 20:10:28 +0000 | [diff] [blame] | 533 | // On some targets like Mips, branches may kill virtual registers. Make sure |
| 534 | // that LiveVariables is properly updated after updateTerminator replaces the |
| 535 | // terminators. |
| 536 | LiveVariables *LV = P->getAnalysisIfAvailable<LiveVariables>(); |
| 537 | |
| 538 | // Collect a list of virtual registers killed by the terminators. |
| 539 | SmallVector<unsigned, 4> KilledRegs; |
| 540 | if (LV) |
| 541 | for (iterator I = getFirstTerminator(), E = end(); I != E; ++I) { |
| 542 | MachineInstr *MI = I; |
| 543 | for (MachineInstr::mop_iterator OI = MI->operands_begin(), |
| 544 | OE = MI->operands_end(); OI != OE; ++OI) { |
| 545 | if (!OI->isReg() || !OI->isUse() || !OI->isKill() || OI->isUndef()) |
| 546 | continue; |
| 547 | unsigned Reg = OI->getReg(); |
| 548 | if (TargetRegisterInfo::isVirtualRegister(Reg) && |
| 549 | LV->getVarInfo(Reg).removeKill(MI)) { |
| 550 | KilledRegs.push_back(Reg); |
| 551 | DEBUG(dbgs() << "Removing terminator kill: " << *MI); |
| 552 | OI->setIsKill(false); |
| 553 | } |
| 554 | } |
| 555 | } |
| 556 | |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 557 | ReplaceUsesOfBlockWith(Succ, NMBB); |
| 558 | updateTerminator(); |
| 559 | |
| 560 | // Insert unconditional "jump Succ" instruction in NMBB if necessary. |
| 561 | NMBB->addSuccessor(Succ); |
| 562 | if (!NMBB->isLayoutSuccessor(Succ)) { |
| 563 | Cond.clear(); |
| 564 | MF->getTarget().getInstrInfo()->InsertBranch(*NMBB, Succ, NULL, Cond, dl); |
| 565 | } |
| 566 | |
| 567 | // Fix PHI nodes in Succ so they refer to NMBB instead of this |
| 568 | for (MachineBasicBlock::iterator i = Succ->begin(), e = Succ->end(); |
| 569 | i != e && i->isPHI(); ++i) |
| 570 | for (unsigned ni = 1, ne = i->getNumOperands(); ni != ne; ni += 2) |
| 571 | if (i->getOperand(ni+1).getMBB() == this) |
| 572 | i->getOperand(ni+1).setMBB(NMBB); |
| 573 | |
Jakob Stoklund Olesen | 5790335 | 2011-05-29 20:10:28 +0000 | [diff] [blame] | 574 | // Update LiveVariables. |
| 575 | if (LV) { |
| 576 | // Restore kills of virtual registers that were killed by the terminators. |
| 577 | while (!KilledRegs.empty()) { |
| 578 | unsigned Reg = KilledRegs.pop_back_val(); |
| 579 | for (iterator I = end(), E = begin(); I != E;) { |
| 580 | if (!(--I)->addRegisterKilled(Reg, NULL, /* addIfNotFound= */ false)) |
| 581 | continue; |
| 582 | LV->getVarInfo(Reg).Kills.push_back(I); |
| 583 | DEBUG(dbgs() << "Restored terminator kill: " << *I); |
| 584 | break; |
| 585 | } |
| 586 | } |
| 587 | // Update relevant live-through information. |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 588 | LV->addNewBlock(NMBB, this, Succ); |
Jakob Stoklund Olesen | 5790335 | 2011-05-29 20:10:28 +0000 | [diff] [blame] | 589 | } |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 590 | |
| 591 | if (MachineDominatorTree *MDT = |
Evan Cheng | 1970892 | 2010-08-19 23:32:47 +0000 | [diff] [blame] | 592 | P->getAnalysisIfAvailable<MachineDominatorTree>()) { |
| 593 | // Update dominator information. |
| 594 | MachineDomTreeNode *SucccDTNode = MDT->getNode(Succ); |
| 595 | |
| 596 | bool IsNewIDom = true; |
| 597 | for (const_pred_iterator PI = Succ->pred_begin(), E = Succ->pred_end(); |
| 598 | PI != E; ++PI) { |
| 599 | MachineBasicBlock *PredBB = *PI; |
| 600 | if (PredBB == NMBB) |
| 601 | continue; |
| 602 | if (!MDT->dominates(SucccDTNode, MDT->getNode(PredBB))) { |
| 603 | IsNewIDom = false; |
| 604 | break; |
| 605 | } |
| 606 | } |
| 607 | |
| 608 | // We know "this" dominates the newly created basic block. |
| 609 | MachineDomTreeNode *NewDTNode = MDT->addNewBlock(NMBB, this); |
| 610 | |
| 611 | // If all the other predecessors of "Succ" are dominated by "Succ" itself |
| 612 | // then the new block is the new immediate dominator of "Succ". Otherwise, |
| 613 | // the new block doesn't dominate anything. |
| 614 | if (IsNewIDom) |
| 615 | MDT->changeImmediateDominator(SucccDTNode, NewDTNode); |
| 616 | } |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 617 | |
Evan Cheng | e008384 | 2010-08-17 17:43:50 +0000 | [diff] [blame] | 618 | if (MachineLoopInfo *MLI = P->getAnalysisIfAvailable<MachineLoopInfo>()) |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 619 | if (MachineLoop *TIL = MLI->getLoopFor(this)) { |
| 620 | // If one or the other blocks were not in a loop, the new block is not |
| 621 | // either, and thus LI doesn't need to be updated. |
| 622 | if (MachineLoop *DestLoop = MLI->getLoopFor(Succ)) { |
| 623 | if (TIL == DestLoop) { |
| 624 | // Both in the same loop, the NMBB joins loop. |
| 625 | DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase()); |
| 626 | } else if (TIL->contains(DestLoop)) { |
| 627 | // Edge from an outer loop to an inner loop. Add to the outer loop. |
| 628 | TIL->addBasicBlockToLoop(NMBB, MLI->getBase()); |
| 629 | } else if (DestLoop->contains(TIL)) { |
| 630 | // Edge from an inner loop to an outer loop. Add to the outer loop. |
| 631 | DestLoop->addBasicBlockToLoop(NMBB, MLI->getBase()); |
| 632 | } else { |
| 633 | // Edge from two loops with no containment relation. Because these |
| 634 | // are natural loops, we know that the destination block must be the |
| 635 | // header of its loop (adding a branch into a loop elsewhere would |
| 636 | // create an irreducible loop). |
| 637 | assert(DestLoop->getHeader() == Succ && |
| 638 | "Should not create irreducible loops!"); |
| 639 | if (MachineLoop *P = DestLoop->getParentLoop()) |
| 640 | P->addBasicBlockToLoop(NMBB, MLI->getBase()); |
| 641 | } |
| 642 | } |
| 643 | } |
| 644 | |
| 645 | return NMBB; |
| 646 | } |
| 647 | |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 648 | /// removeFromParent - This method unlinks 'this' from the containing function, |
| 649 | /// and returns it, but does not delete it. |
| 650 | MachineBasicBlock *MachineBasicBlock::removeFromParent() { |
| 651 | assert(getParent() && "Not embedded in a function!"); |
| 652 | getParent()->remove(this); |
| 653 | return this; |
| 654 | } |
| 655 | |
| 656 | |
| 657 | /// eraseFromParent - This method unlinks 'this' from the containing function, |
| 658 | /// and deletes it. |
| 659 | void MachineBasicBlock::eraseFromParent() { |
| 660 | assert(getParent() && "Not embedded in a function!"); |
| 661 | getParent()->erase(this); |
| 662 | } |
| 663 | |
| 664 | |
Evan Cheng | 0370fad | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 665 | /// ReplaceUsesOfBlockWith - Given a machine basic block that branched to |
| 666 | /// 'Old', change the code and CFG so that it branches to 'New' instead. |
| 667 | void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old, |
| 668 | MachineBasicBlock *New) { |
| 669 | assert(Old != New && "Cannot replace self with self!"); |
| 670 | |
| 671 | MachineBasicBlock::iterator I = end(); |
| 672 | while (I != begin()) { |
| 673 | --I; |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 674 | if (!I->getDesc().isTerminator()) break; |
Evan Cheng | 0370fad | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 675 | |
| 676 | // Scan the operands of this machine instruction, replacing any uses of Old |
| 677 | // with New. |
| 678 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 679 | if (I->getOperand(i).isMBB() && |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 680 | I->getOperand(i).getMBB() == Old) |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 681 | I->getOperand(i).setMBB(New); |
Evan Cheng | 0370fad | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 682 | } |
| 683 | |
Dan Gohman | 5412d06 | 2009-05-05 21:10:19 +0000 | [diff] [blame] | 684 | // Update the successor information. |
Jakub Staszak | 7cc2b07 | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 685 | replaceSuccessor(Old, New); |
Evan Cheng | 0370fad | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 686 | } |
| 687 | |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 688 | /// CorrectExtraCFGEdges - Various pieces of code can cause excess edges in the |
| 689 | /// CFG to be inserted. If we have proven that MBB can only branch to DestA and |
Bill Wendling | c70d3311 | 2009-12-16 00:08:36 +0000 | [diff] [blame] | 690 | /// DestB, remove any other MBB successors from the CFG. DestA and DestB can be |
| 691 | /// null. |
Jakub Staszak | 12af5ff | 2011-06-16 18:01:17 +0000 | [diff] [blame] | 692 | /// |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 693 | /// Besides DestA and DestB, retain other edges leading to LandingPads |
| 694 | /// (currently there can be only one; we don't check or require that here). |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 695 | /// Note it is possible that DestA and/or DestB are LandingPads. |
| 696 | bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA, |
| 697 | MachineBasicBlock *DestB, |
| 698 | bool isCond) { |
Bill Wendling | c70d3311 | 2009-12-16 00:08:36 +0000 | [diff] [blame] | 699 | // The values of DestA and DestB frequently come from a call to the |
| 700 | // 'TargetInstrInfo::AnalyzeBranch' method. We take our meaning of the initial |
| 701 | // values from there. |
| 702 | // |
| 703 | // 1. If both DestA and DestB are null, then the block ends with no branches |
| 704 | // (it falls through to its successor). |
| 705 | // 2. If DestA is set, DestB is null, and isCond is false, then the block ends |
| 706 | // with only an unconditional branch. |
| 707 | // 3. If DestA is set, DestB is null, and isCond is true, then the block ends |
| 708 | // with a conditional branch that falls through to a successor (DestB). |
| 709 | // 4. If DestA and DestB is set and isCond is true, then the block ends with a |
| 710 | // conditional branch followed by an unconditional branch. DestA is the |
| 711 | // 'true' destination and DestB is the 'false' destination. |
| 712 | |
Bill Wendling | e543d16 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 713 | bool Changed = false; |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 714 | |
Chris Lattner | 7896c9f | 2009-12-03 00:50:42 +0000 | [diff] [blame] | 715 | MachineFunction::iterator FallThru = |
| 716 | llvm::next(MachineFunction::iterator(this)); |
Bill Wendling | e543d16 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 717 | |
| 718 | if (DestA == 0 && DestB == 0) { |
| 719 | // Block falls through to successor. |
| 720 | DestA = FallThru; |
| 721 | DestB = FallThru; |
| 722 | } else if (DestA != 0 && DestB == 0) { |
| 723 | if (isCond) |
| 724 | // Block ends in conditional jump that falls through to successor. |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 725 | DestB = FallThru; |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 726 | } else { |
Bill Wendling | e543d16 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 727 | assert(DestA && DestB && isCond && |
| 728 | "CFG in a bad state. Cannot correct CFG edges"); |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 729 | } |
Bill Wendling | e543d16 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 730 | |
| 731 | // Remove superfluous edges. I.e., those which aren't destinations of this |
| 732 | // basic block, duplicate edges, or landing pads. |
| 733 | SmallPtrSet<const MachineBasicBlock*, 8> SeenMBBs; |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 734 | MachineBasicBlock::succ_iterator SI = succ_begin(); |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 735 | while (SI != succ_end()) { |
Bill Wendling | c70d3311 | 2009-12-16 00:08:36 +0000 | [diff] [blame] | 736 | const MachineBasicBlock *MBB = *SI; |
Bill Wendling | e543d16 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 737 | if (!SeenMBBs.insert(MBB) || |
| 738 | (MBB != DestA && MBB != DestB && !MBB->isLandingPad())) { |
| 739 | // This is a superfluous edge, remove it. |
Bill Wendling | 9e9cca4 | 2010-03-31 23:26:26 +0000 | [diff] [blame] | 740 | SI = removeSuccessor(SI); |
Bill Wendling | e543d16 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 741 | Changed = true; |
| 742 | } else { |
| 743 | ++SI; |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 744 | } |
| 745 | } |
Bill Wendling | c70d3311 | 2009-12-16 00:08:36 +0000 | [diff] [blame] | 746 | |
Bill Wendling | e543d16 | 2010-04-01 00:00:43 +0000 | [diff] [blame] | 747 | return Changed; |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 748 | } |
Evan Cheng | 2a085c3 | 2009-11-17 19:19:59 +0000 | [diff] [blame] | 749 | |
Dale Johannesen | 73e884b | 2010-01-20 21:36:02 +0000 | [diff] [blame] | 750 | /// findDebugLoc - find the next valid DebugLoc starting at MBBI, skipping |
Dale Johannesen | 10fedd2 | 2010-02-10 00:11:11 +0000 | [diff] [blame] | 751 | /// any DBG_VALUE instructions. Return UnknownLoc if there is none. |
Dale Johannesen | 73e884b | 2010-01-20 21:36:02 +0000 | [diff] [blame] | 752 | DebugLoc |
| 753 | MachineBasicBlock::findDebugLoc(MachineBasicBlock::iterator &MBBI) { |
| 754 | DebugLoc DL; |
| 755 | MachineBasicBlock::iterator E = end(); |
| 756 | if (MBBI != E) { |
| 757 | // Skip debug declarations, we don't want a DebugLoc from them. |
| 758 | MachineBasicBlock::iterator MBBI2 = MBBI; |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 759 | while (MBBI2 != E && MBBI2->isDebugValue()) |
Dale Johannesen | 73e884b | 2010-01-20 21:36:02 +0000 | [diff] [blame] | 760 | MBBI2++; |
| 761 | if (MBBI2 != E) |
| 762 | DL = MBBI2->getDebugLoc(); |
| 763 | } |
| 764 | return DL; |
| 765 | } |
| 766 | |
Jakub Staszak | 7cc2b07 | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 767 | /// getSuccWeight - Return weight of the edge from this block to MBB. |
| 768 | /// |
| 769 | uint32_t MachineBasicBlock::getSuccWeight(MachineBasicBlock *succ) { |
Jakub Staszak | 981d826 | 2011-06-17 18:00:21 +0000 | [diff] [blame] | 770 | if (Weights.empty()) |
| 771 | return 0; |
| 772 | |
Jakub Staszak | 7cc2b07 | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 773 | succ_iterator I = std::find(Successors.begin(), Successors.end(), succ); |
| 774 | return *getWeightIterator(I); |
| 775 | } |
| 776 | |
| 777 | /// getWeightIterator - Return wight iterator corresonding to the I successor |
| 778 | /// iterator |
| 779 | MachineBasicBlock::weight_iterator MachineBasicBlock:: |
| 780 | getWeightIterator(MachineBasicBlock::succ_iterator I) { |
Jakub Staszak | 981d826 | 2011-06-17 18:00:21 +0000 | [diff] [blame] | 781 | assert(Weights.size() == Successors.size() && "Async weight list!"); |
Jakub Staszak | 7cc2b07 | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 782 | size_t index = std::distance(Successors.begin(), I); |
| 783 | assert(index < Weights.size() && "Not a current successor!"); |
| 784 | return Weights.begin() + index; |
| 785 | } |
| 786 | |
Evan Cheng | 2a085c3 | 2009-11-17 19:19:59 +0000 | [diff] [blame] | 787 | void llvm::WriteAsOperand(raw_ostream &OS, const MachineBasicBlock *MBB, |
| 788 | bool t) { |
| 789 | OS << "BB#" << MBB->getNumber(); |
| 790 | } |
Dale Johannesen | 918f0f0 | 2010-01-20 00:19:24 +0000 | [diff] [blame] | 791 | |