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" |
Bill Wendling | 4bde1ab | 2009-12-11 01:49:14 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/SmallSet.h" |
| 17 | #include "llvm/Assembly/Writer.h" |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineFunction.h" |
Owen Anderson | 07000c6 | 2006-05-12 06:33:49 +0000 | [diff] [blame] | 19 | #include "llvm/Target/TargetData.h" |
Chris Lattner | f14cf85 | 2008-01-07 07:42:25 +0000 | [diff] [blame] | 20 | #include "llvm/Target/TargetInstrDesc.h" |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 21 | #include "llvm/Target/TargetInstrInfo.h" |
Alkis Evlogimenos | 743d0a1 | 2004-02-23 18:14:48 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetMachine.h" |
Bill Wendling | 4bde1ab | 2009-12-11 01:49:14 +0000 | [diff] [blame] | 23 | #include "llvm/Target/TargetRegisterInfo.h" |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 24 | #include "llvm/Support/LeakDetector.h" |
Daniel Dunbar | 1cd1d98 | 2009-07-24 10:36:58 +0000 | [diff] [blame] | 25 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 26 | #include <algorithm> |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 27 | using namespace llvm; |
| 28 | |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 29 | MachineBasicBlock::MachineBasicBlock(MachineFunction &mf, const BasicBlock *bb) |
Dan Gohman | 8c2b525 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 30 | : BB(bb), Number(-1), xParent(&mf), Alignment(0), IsLandingPad(false), |
| 31 | AddressTaken(false) { |
Dan Gohman | fed90b6 | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 32 | Insts.Parent = this; |
Tanya Lattner | 17fb34b | 2004-05-24 07:14:35 +0000 | [diff] [blame] | 33 | } |
Tanya Lattner | 17fb34b | 2004-05-24 07:14:35 +0000 | [diff] [blame] | 34 | |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 35 | MachineBasicBlock::~MachineBasicBlock() { |
| 36 | LeakDetector::removeGarbageObject(this); |
| 37 | } |
| 38 | |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 39 | raw_ostream &llvm::operator<<(raw_ostream &OS, const MachineBasicBlock &MBB) { |
Daniel Dunbar | 1cd1d98 | 2009-07-24 10:36:58 +0000 | [diff] [blame] | 40 | MBB.print(OS); |
| 41 | return OS; |
| 42 | } |
Tanya Lattner | 17fb34b | 2004-05-24 07:14:35 +0000 | [diff] [blame] | 43 | |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 44 | /// addNodeToList (MBB) - When an MBB is added to an MF, we need to update the |
| 45 | /// parent pointer of the MBB, the MBB numbering, and any instructions in the |
| 46 | /// MBB to be on the right operand list for registers. |
| 47 | /// |
| 48 | /// MBBs start out as #-1. When a MBB is added to a MachineFunction, it |
| 49 | /// gets the next available unique MBB number. If it is removed from a |
| 50 | /// MachineFunction, it goes back to being #-1. |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 51 | void ilist_traits<MachineBasicBlock>::addNodeToList(MachineBasicBlock *N) { |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 52 | MachineFunction &MF = *N->getParent(); |
| 53 | N->Number = MF.addToMBBNumbering(N); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 54 | |
| 55 | // Make sure the instructions have their operands in the reginfo lists. |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 56 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 57 | for (MachineBasicBlock::iterator I = N->begin(), E = N->end(); I != E; ++I) |
| 58 | I->AddRegOperandsToUseLists(RegInfo); |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 59 | |
| 60 | LeakDetector::removeGarbageObject(N); |
Brian Gaeke | 0bcb1ad | 2004-05-12 21:35:22 +0000 | [diff] [blame] | 61 | } |
| 62 | |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 63 | void ilist_traits<MachineBasicBlock>::removeNodeFromList(MachineBasicBlock *N) { |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 64 | N->getParent()->removeFromMBBNumbering(N->Number); |
Brian Gaeke | 0bcb1ad | 2004-05-12 21:35:22 +0000 | [diff] [blame] | 65 | N->Number = -1; |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 66 | LeakDetector::addGarbageObject(N); |
Brian Gaeke | 0bcb1ad | 2004-05-12 21:35:22 +0000 | [diff] [blame] | 67 | } |
| 68 | |
Chris Lattner | 5e61fa9 | 2004-02-19 16:13:54 +0000 | [diff] [blame] | 69 | |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 70 | /// addNodeToList (MI) - When we add an instruction to a basic block |
| 71 | /// list, we update its parent pointer and add its operands from reg use/def |
| 72 | /// lists if appropriate. |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 73 | void ilist_traits<MachineInstr>::addNodeToList(MachineInstr *N) { |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 74 | assert(N->getParent() == 0 && "machine instruction already in a basic block"); |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 75 | N->setParent(Parent); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 76 | |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 77 | // Add the instruction's register operands to their corresponding |
| 78 | // use/def lists. |
| 79 | MachineFunction *MF = Parent->getParent(); |
| 80 | N->AddRegOperandsToUseLists(MF->getRegInfo()); |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 81 | |
| 82 | LeakDetector::removeGarbageObject(N); |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 83 | } |
| 84 | |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 85 | /// removeNodeFromList (MI) - When we remove an instruction from a basic block |
| 86 | /// list, we update its parent pointer and remove its operands from reg use/def |
| 87 | /// lists if appropriate. |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 88 | void ilist_traits<MachineInstr>::removeNodeFromList(MachineInstr *N) { |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 89 | assert(N->getParent() != 0 && "machine instruction not in a basic block"); |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 90 | |
| 91 | // Remove from the use/def lists. |
| 92 | N->RemoveRegOperandsFromUseLists(); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 93 | |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 94 | N->setParent(0); |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 95 | |
| 96 | LeakDetector::addGarbageObject(N); |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 97 | } |
| 98 | |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 99 | /// transferNodesFromList (MI) - When moving a range of instructions from one |
| 100 | /// MBB list to another, we need to update the parent pointers and the use/def |
| 101 | /// lists. |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 102 | void ilist_traits<MachineInstr>:: |
| 103 | transferNodesFromList(ilist_traits<MachineInstr> &fromList, |
| 104 | MachineBasicBlock::iterator first, |
| 105 | MachineBasicBlock::iterator last) { |
Dan Gohman | fed90b6 | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 106 | assert(Parent->getParent() == fromList.Parent->getParent() && |
| 107 | "MachineInstr parent mismatch!"); |
| 108 | |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 109 | // Splice within the same MBB -> no change. |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 110 | if (Parent == fromList.Parent) return; |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 111 | |
| 112 | // If splicing between two blocks within the same function, just update the |
| 113 | // parent pointers. |
Dan Gohman | fed90b6 | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 114 | for (; first != last; ++first) |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 115 | first->setParent(Parent); |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 116 | } |
| 117 | |
Dan Gohman | fed90b6 | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 118 | void ilist_traits<MachineInstr>::deleteNode(MachineInstr* MI) { |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 119 | assert(!MI->getParent() && "MI is still in a block!"); |
| 120 | Parent->getParent()->DeleteMachineInstr(MI); |
| 121 | } |
| 122 | |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 123 | MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() { |
Alkis Evlogimenos | 743d0a1 | 2004-02-23 18:14:48 +0000 | [diff] [blame] | 124 | iterator I = end(); |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 125 | while (I != begin() && (--I)->getDesc().isTerminator()) |
Anton Korobeynikov | 406452d | 2007-09-02 22:11:14 +0000 | [diff] [blame] | 126 | ; /*noop */ |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 127 | if (I != end() && !I->getDesc().isTerminator()) ++I; |
Alkis Evlogimenos | 743d0a1 | 2004-02-23 18:14:48 +0000 | [diff] [blame] | 128 | return I; |
| 129 | } |
| 130 | |
Chris Lattner | b49a30c | 2009-08-18 04:33:15 +0000 | [diff] [blame] | 131 | /// isOnlyReachableViaFallthough - Return true if this basic block has |
| 132 | /// exactly one predecessor and the control transfer mechanism between |
| 133 | /// the predecessor and this block is a fall-through. |
Chris Lattner | a006d4e | 2009-08-18 04:30:35 +0000 | [diff] [blame] | 134 | bool MachineBasicBlock::isOnlyReachableByFallthrough() const { |
| 135 | // If this is a landing pad, it isn't a fall through. If it has no preds, |
| 136 | // then nothing falls through to it. |
| 137 | if (isLandingPad() || pred_empty()) |
| 138 | return false; |
| 139 | |
| 140 | // If there isn't exactly one predecessor, it can't be a fall through. |
| 141 | const_pred_iterator PI = pred_begin(), PI2 = PI; |
Chris Lattner | 1f50fc7 | 2009-08-18 04:34:36 +0000 | [diff] [blame] | 142 | ++PI2; |
| 143 | if (PI2 != pred_end()) |
Chris Lattner | a006d4e | 2009-08-18 04:30:35 +0000 | [diff] [blame] | 144 | return false; |
| 145 | |
| 146 | // The predecessor has to be immediately before this block. |
| 147 | const MachineBasicBlock *Pred = *PI; |
| 148 | |
| 149 | if (!Pred->isLayoutSuccessor(this)) |
| 150 | return false; |
| 151 | |
| 152 | // If the block is completely empty, then it definitely does fall through. |
| 153 | if (Pred->empty()) |
| 154 | return true; |
| 155 | |
| 156 | // Otherwise, check the last instruction. |
| 157 | const MachineInstr &LastInst = Pred->back(); |
Chris Lattner | b49a30c | 2009-08-18 04:33:15 +0000 | [diff] [blame] | 158 | return !LastInst.getDesc().isBarrier(); |
Dan Gohman | 968dc7a | 2009-03-31 18:39:13 +0000 | [diff] [blame] | 159 | } |
| 160 | |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 161 | void MachineBasicBlock::dump() const { |
Chris Lattner | cf143a4 | 2009-08-23 03:13:20 +0000 | [diff] [blame] | 162 | print(errs()); |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 163 | } |
| 164 | |
Daniel Dunbar | 1cd1d98 | 2009-07-24 10:36:58 +0000 | [diff] [blame] | 165 | static inline void OutputReg(raw_ostream &os, unsigned RegNo, |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 166 | const TargetRegisterInfo *TRI = 0) { |
Dan Gohman | 0ba90f3 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 167 | if (RegNo != 0 && TargetRegisterInfo::isPhysicalRegister(RegNo)) { |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 168 | if (TRI) |
Bill Wendling | e6d088a | 2008-02-26 21:47:57 +0000 | [diff] [blame] | 169 | os << " %" << TRI->get(RegNo).Name; |
Evan Cheng | 13d8285 | 2007-02-10 02:38:19 +0000 | [diff] [blame] | 170 | else |
Dan Gohman | 0ba90f3 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 171 | os << " %physreg" << RegNo; |
Evan Cheng | 13d8285 | 2007-02-10 02:38:19 +0000 | [diff] [blame] | 172 | } else |
| 173 | os << " %reg" << RegNo; |
| 174 | } |
| 175 | |
Jakob Stoklund Olesen | 324da76 | 2009-11-20 01:17:03 +0000 | [diff] [blame] | 176 | StringRef MachineBasicBlock::getName() const { |
| 177 | if (const BasicBlock *LBB = getBasicBlock()) |
| 178 | return LBB->getName(); |
| 179 | else |
| 180 | return "(null)"; |
| 181 | } |
| 182 | |
Chris Lattner | 2d8e3d2 | 2009-08-23 00:47:04 +0000 | [diff] [blame] | 183 | void MachineBasicBlock::print(raw_ostream &OS) const { |
Evan Cheng | 13d8285 | 2007-02-10 02:38:19 +0000 | [diff] [blame] | 184 | const MachineFunction *MF = getParent(); |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 185 | if (!MF) { |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 186 | OS << "Can't print out MachineBasicBlock because parent MachineFunction" |
| 187 | << " is null\n"; |
Tanya Lattner | 792699c | 2004-05-24 06:11:51 +0000 | [diff] [blame] | 188 | return; |
| 189 | } |
Alkis Evlogimenos | a638286 | 2004-09-05 18:39:20 +0000 | [diff] [blame] | 190 | |
Dan Gohman | 0ba90f3 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 191 | if (Alignment) { OS << "Alignment " << Alignment << "\n"; } |
| 192 | |
| 193 | OS << "BB#" << getNumber() << ": "; |
| 194 | |
| 195 | const char *Comma = ""; |
| 196 | if (const BasicBlock *LBB = getBasicBlock()) { |
| 197 | OS << Comma << "derived from LLVM BB "; |
| 198 | WriteAsOperand(OS, LBB, /*PrintType=*/false); |
| 199 | Comma = ", "; |
| 200 | } |
| 201 | if (isLandingPad()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; } |
| 202 | if (hasAddressTaken()) { OS << Comma << "ADDRESS TAKEN"; Comma = ", "; } |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 203 | OS << '\n'; |
Evan Cheng | 13d8285 | 2007-02-10 02:38:19 +0000 | [diff] [blame] | 204 | |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 205 | const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo(); |
Dan Gohman | cb406c2 | 2007-10-03 19:26:29 +0000 | [diff] [blame] | 206 | if (!livein_empty()) { |
Dan Gohman | 0ba90f3 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 207 | OS << " Live Ins:"; |
Evan Cheng | b371f45 | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 208 | for (const_livein_iterator I = livein_begin(),E = livein_end(); I != E; ++I) |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 209 | OutputReg(OS, *I, TRI); |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 210 | OS << '\n'; |
Evan Cheng | 13d8285 | 2007-02-10 02:38:19 +0000 | [diff] [blame] | 211 | } |
Chris Lattner | 681764b | 2006-09-26 03:41:59 +0000 | [diff] [blame] | 212 | // Print the preds of this block according to the CFG. |
| 213 | if (!pred_empty()) { |
| 214 | OS << " Predecessors according to CFG:"; |
| 215 | 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] | 216 | OS << " BB#" << (*PI)->getNumber(); |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 217 | OS << '\n'; |
Chris Lattner | 681764b | 2006-09-26 03:41:59 +0000 | [diff] [blame] | 218 | } |
| 219 | |
Alkis Evlogimenos | a638286 | 2004-09-05 18:39:20 +0000 | [diff] [blame] | 220 | for (const_iterator I = begin(); I != end(); ++I) { |
Chris Lattner | 2d8e3d2 | 2009-08-23 00:47:04 +0000 | [diff] [blame] | 221 | OS << '\t'; |
Alkis Evlogimenos | a638286 | 2004-09-05 18:39:20 +0000 | [diff] [blame] | 222 | I->print(OS, &getParent()->getTarget()); |
| 223 | } |
Chris Lattner | 380ae49 | 2005-04-01 06:48:38 +0000 | [diff] [blame] | 224 | |
| 225 | // Print the successors of this block according to the CFG. |
| 226 | if (!succ_empty()) { |
| 227 | OS << " Successors according to CFG:"; |
| 228 | 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] | 229 | OS << " BB#" << (*SI)->getNumber(); |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 230 | OS << '\n'; |
Chris Lattner | 380ae49 | 2005-04-01 06:48:38 +0000 | [diff] [blame] | 231 | } |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 232 | } |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 233 | |
Evan Cheng | b371f45 | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 234 | void MachineBasicBlock::removeLiveIn(unsigned Reg) { |
| 235 | livein_iterator I = std::find(livein_begin(), livein_end(), Reg); |
| 236 | assert(I != livein_end() && "Not a live in!"); |
| 237 | LiveIns.erase(I); |
| 238 | } |
| 239 | |
Evan Cheng | a971dbd | 2008-04-24 09:06:33 +0000 | [diff] [blame] | 240 | bool MachineBasicBlock::isLiveIn(unsigned Reg) const { |
| 241 | const_livein_iterator I = std::find(livein_begin(), livein_end(), Reg); |
| 242 | return I != livein_end(); |
| 243 | } |
| 244 | |
Chris Lattner | c585a3f | 2006-10-24 00:02:26 +0000 | [diff] [blame] | 245 | void MachineBasicBlock::moveBefore(MachineBasicBlock *NewAfter) { |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 246 | getParent()->splice(NewAfter, this); |
Chris Lattner | c585a3f | 2006-10-24 00:02:26 +0000 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | void MachineBasicBlock::moveAfter(MachineBasicBlock *NewBefore) { |
Chris Lattner | c585a3f | 2006-10-24 00:02:26 +0000 | [diff] [blame] | 250 | MachineFunction::iterator BBI = NewBefore; |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 251 | getParent()->splice(++BBI, this); |
Chris Lattner | c585a3f | 2006-10-24 00:02:26 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 254 | void MachineBasicBlock::updateTerminator() { |
| 255 | const TargetInstrInfo *TII = getParent()->getTarget().getInstrInfo(); |
| 256 | // A block with no successors has no concerns with fall-through edges. |
| 257 | if (this->succ_empty()) return; |
| 258 | |
| 259 | MachineBasicBlock *TBB = 0, *FBB = 0; |
| 260 | SmallVector<MachineOperand, 4> Cond; |
| 261 | bool B = TII->AnalyzeBranch(*this, TBB, FBB, Cond); |
| 262 | (void) B; |
| 263 | assert(!B && "UpdateTerminators requires analyzable predecessors!"); |
| 264 | if (Cond.empty()) { |
| 265 | if (TBB) { |
| 266 | // The block has an unconditional branch. If its successor is now |
| 267 | // its layout successor, delete the branch. |
| 268 | if (isLayoutSuccessor(TBB)) |
| 269 | TII->RemoveBranch(*this); |
| 270 | } else { |
| 271 | // The block has an unconditional fallthrough. If its successor is not |
| 272 | // its layout successor, insert a branch. |
| 273 | TBB = *succ_begin(); |
| 274 | if (!isLayoutSuccessor(TBB)) |
| 275 | TII->InsertBranch(*this, TBB, 0, Cond); |
| 276 | } |
| 277 | } else { |
| 278 | if (FBB) { |
| 279 | // The block has a non-fallthrough conditional branch. If one of its |
| 280 | // successors is its layout successor, rewrite it to a fallthrough |
| 281 | // conditional branch. |
| 282 | if (isLayoutSuccessor(TBB)) { |
Jakob Stoklund Olesen | e023993 | 2009-11-22 18:28:04 +0000 | [diff] [blame] | 283 | if (TII->ReverseBranchCondition(Cond)) |
| 284 | return; |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 285 | TII->RemoveBranch(*this); |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 286 | TII->InsertBranch(*this, FBB, 0, Cond); |
| 287 | } else if (isLayoutSuccessor(FBB)) { |
| 288 | TII->RemoveBranch(*this); |
| 289 | TII->InsertBranch(*this, TBB, 0, Cond); |
| 290 | } |
| 291 | } else { |
| 292 | // The block has a fallthrough conditional branch. |
| 293 | MachineBasicBlock *MBBA = *succ_begin(); |
Chris Lattner | 7896c9f | 2009-12-03 00:50:42 +0000 | [diff] [blame] | 294 | MachineBasicBlock *MBBB = *llvm::next(succ_begin()); |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 295 | if (MBBA == TBB) std::swap(MBBB, MBBA); |
| 296 | if (isLayoutSuccessor(TBB)) { |
Jakob Stoklund Olesen | e023993 | 2009-11-22 18:28:04 +0000 | [diff] [blame] | 297 | if (TII->ReverseBranchCondition(Cond)) { |
| 298 | // We can't reverse the condition, add an unconditional branch. |
| 299 | Cond.clear(); |
| 300 | TII->InsertBranch(*this, MBBA, 0, Cond); |
| 301 | return; |
| 302 | } |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 303 | TII->RemoveBranch(*this); |
Jim Grosbach | 7707a0d | 2009-11-12 03:55:33 +0000 | [diff] [blame] | 304 | TII->InsertBranch(*this, MBBA, 0, Cond); |
| 305 | } else if (!isLayoutSuccessor(MBBA)) { |
| 306 | TII->RemoveBranch(*this); |
| 307 | TII->InsertBranch(*this, TBB, MBBA, Cond); |
| 308 | } |
| 309 | } |
| 310 | } |
| 311 | } |
Chris Lattner | c585a3f | 2006-10-24 00:02:26 +0000 | [diff] [blame] | 312 | |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 313 | void MachineBasicBlock::addSuccessor(MachineBasicBlock *succ) { |
| 314 | Successors.push_back(succ); |
| 315 | succ->addPredecessor(this); |
| 316 | } |
| 317 | |
| 318 | void MachineBasicBlock::removeSuccessor(MachineBasicBlock *succ) { |
| 319 | succ->removePredecessor(this); |
| 320 | succ_iterator I = std::find(Successors.begin(), Successors.end(), succ); |
| 321 | assert(I != Successors.end() && "Not a current successor!"); |
| 322 | Successors.erase(I); |
| 323 | } |
| 324 | |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 325 | MachineBasicBlock::succ_iterator |
| 326 | MachineBasicBlock::removeSuccessor(succ_iterator I) { |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 327 | assert(I != Successors.end() && "Not a current successor!"); |
| 328 | (*I)->removePredecessor(this); |
Dan Gohman | 5d5ee80 | 2009-01-08 22:19:34 +0000 | [diff] [blame] | 329 | return Successors.erase(I); |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 330 | } |
| 331 | |
| 332 | void MachineBasicBlock::addPredecessor(MachineBasicBlock *pred) { |
| 333 | Predecessors.push_back(pred); |
| 334 | } |
| 335 | |
| 336 | void MachineBasicBlock::removePredecessor(MachineBasicBlock *pred) { |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 337 | std::vector<MachineBasicBlock *>::iterator I = |
Chris Lattner | 52c09d7 | 2004-10-26 15:43:42 +0000 | [diff] [blame] | 338 | std::find(Predecessors.begin(), Predecessors.end(), pred); |
| 339 | assert(I != Predecessors.end() && "Pred is not a predecessor of this block!"); |
| 340 | Predecessors.erase(I); |
| 341 | } |
Evan Cheng | 4f09878 | 2007-05-17 23:58:53 +0000 | [diff] [blame] | 342 | |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 343 | void MachineBasicBlock::transferSuccessors(MachineBasicBlock *fromMBB) { |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 344 | if (this == fromMBB) |
| 345 | return; |
| 346 | |
Chris Lattner | 6371ed5 | 2009-08-23 00:35:30 +0000 | [diff] [blame] | 347 | for (MachineBasicBlock::succ_iterator I = fromMBB->succ_begin(), |
| 348 | E = fromMBB->succ_end(); I != E; ++I) |
| 349 | addSuccessor(*I); |
| 350 | |
| 351 | while (!fromMBB->succ_empty()) |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 352 | fromMBB->removeSuccessor(fromMBB->succ_begin()); |
| 353 | } |
| 354 | |
Dan Gohman | 6d1b89e | 2009-03-30 20:06:29 +0000 | [diff] [blame] | 355 | bool MachineBasicBlock::isSuccessor(const MachineBasicBlock *MBB) const { |
Evan Cheng | 4f09878 | 2007-05-17 23:58:53 +0000 | [diff] [blame] | 356 | std::vector<MachineBasicBlock *>::const_iterator I = |
| 357 | std::find(Successors.begin(), Successors.end(), MBB); |
| 358 | return I != Successors.end(); |
| 359 | } |
Evan Cheng | 0370fad | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 360 | |
Dan Gohman | 6d1b89e | 2009-03-30 20:06:29 +0000 | [diff] [blame] | 361 | bool MachineBasicBlock::isLayoutSuccessor(const MachineBasicBlock *MBB) const { |
Dan Gohman | 6ade6f5 | 2008-10-02 22:09:09 +0000 | [diff] [blame] | 362 | MachineFunction::const_iterator I(this); |
Chris Lattner | 7896c9f | 2009-12-03 00:50:42 +0000 | [diff] [blame] | 363 | return llvm::next(I) == MachineFunction::const_iterator(MBB); |
Dan Gohman | 6ade6f5 | 2008-10-02 22:09:09 +0000 | [diff] [blame] | 364 | } |
| 365 | |
Bob Wilson | 15acadd | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 366 | bool MachineBasicBlock::canFallThrough() { |
Bob Wilson | 15acadd | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 367 | MachineFunction::iterator Fallthrough = this; |
| 368 | ++Fallthrough; |
| 369 | // If FallthroughBlock is off the end of the function, it can't fall through. |
| 370 | if (Fallthrough == getParent()->end()) |
| 371 | return false; |
| 372 | |
| 373 | // If FallthroughBlock isn't a successor, no fallthrough is possible. |
| 374 | if (!isSuccessor(Fallthrough)) |
| 375 | return false; |
| 376 | |
Dan Gohman | 735985f | 2009-12-05 00:32:59 +0000 | [diff] [blame] | 377 | // Analyze the branches, if any, at the end of the block. |
| 378 | MachineBasicBlock *TBB = 0, *FBB = 0; |
| 379 | SmallVector<MachineOperand, 4> Cond; |
| 380 | const TargetInstrInfo *TII = getParent()->getTarget().getInstrInfo(); |
| 381 | if (TII->AnalyzeBranch(*this, TBB, FBB, Cond, true)) { |
| 382 | // If we couldn't analyze the branch, examine the last instruction. |
| 383 | // If the block doesn't end in a known control barrier, assume fallthrough |
| 384 | // is possible. The isPredicable check is needed because this code can be |
| 385 | // called during IfConversion, where an instruction which is normally a |
| 386 | // Barrier is predicated and thus no longer an actual control barrier. This |
| 387 | // is over-conservative though, because if an instruction isn't actually |
| 388 | // predicated we could still treat it like a barrier. |
Bob Wilson | 15acadd | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 389 | return empty() || !back().getDesc().isBarrier() || |
| 390 | back().getDesc().isPredicable(); |
Dan Gohman | 735985f | 2009-12-05 00:32:59 +0000 | [diff] [blame] | 391 | } |
Bob Wilson | 15acadd | 2009-11-26 00:32:21 +0000 | [diff] [blame] | 392 | |
| 393 | // If there is no branch, control always falls through. |
| 394 | if (TBB == 0) return true; |
| 395 | |
| 396 | // If there is some explicit branch to the fallthrough block, it can obviously |
| 397 | // reach, even though the branch should get folded to fall through implicitly. |
| 398 | if (MachineFunction::iterator(TBB) == Fallthrough || |
| 399 | MachineFunction::iterator(FBB) == Fallthrough) |
| 400 | return true; |
| 401 | |
| 402 | // If it's an unconditional branch to some block not the fall through, it |
| 403 | // doesn't fall through. |
| 404 | if (Cond.empty()) return false; |
| 405 | |
| 406 | // Otherwise, if it is conditional and has no explicit false block, it falls |
| 407 | // through. |
| 408 | return FBB == 0; |
| 409 | } |
| 410 | |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 411 | /// removeFromParent - This method unlinks 'this' from the containing function, |
| 412 | /// and returns it, but does not delete it. |
| 413 | MachineBasicBlock *MachineBasicBlock::removeFromParent() { |
| 414 | assert(getParent() && "Not embedded in a function!"); |
| 415 | getParent()->remove(this); |
| 416 | return this; |
| 417 | } |
| 418 | |
| 419 | |
| 420 | /// eraseFromParent - This method unlinks 'this' from the containing function, |
| 421 | /// and deletes it. |
| 422 | void MachineBasicBlock::eraseFromParent() { |
| 423 | assert(getParent() && "Not embedded in a function!"); |
| 424 | getParent()->erase(this); |
| 425 | } |
| 426 | |
| 427 | |
Evan Cheng | 0370fad | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 428 | /// ReplaceUsesOfBlockWith - Given a machine basic block that branched to |
| 429 | /// 'Old', change the code and CFG so that it branches to 'New' instead. |
| 430 | void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old, |
| 431 | MachineBasicBlock *New) { |
| 432 | assert(Old != New && "Cannot replace self with self!"); |
| 433 | |
| 434 | MachineBasicBlock::iterator I = end(); |
| 435 | while (I != begin()) { |
| 436 | --I; |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 437 | if (!I->getDesc().isTerminator()) break; |
Evan Cheng | 0370fad | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 438 | |
| 439 | // Scan the operands of this machine instruction, replacing any uses of Old |
| 440 | // with New. |
| 441 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 442 | if (I->getOperand(i).isMBB() && |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 443 | I->getOperand(i).getMBB() == Old) |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 444 | I->getOperand(i).setMBB(New); |
Evan Cheng | 0370fad | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 445 | } |
| 446 | |
Dan Gohman | 5412d06 | 2009-05-05 21:10:19 +0000 | [diff] [blame] | 447 | // Update the successor information. |
Evan Cheng | 0370fad | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 448 | removeSuccessor(Old); |
Dan Gohman | 5412d06 | 2009-05-05 21:10:19 +0000 | [diff] [blame] | 449 | addSuccessor(New); |
Evan Cheng | 0370fad | 2007-06-04 06:44:01 +0000 | [diff] [blame] | 450 | } |
| 451 | |
Bill Wendling | 64bdde2 | 2009-12-11 03:14:18 +0000 | [diff] [blame^] | 452 | /// BranchesToLandingPad - The basic block is a landing pad or branches only to |
| 453 | /// a landing pad. No other instructions are present other than the |
| 454 | /// unconditional branch. |
Bill Wendling | 4bde1ab | 2009-12-11 01:49:14 +0000 | [diff] [blame] | 455 | bool |
| 456 | MachineBasicBlock::BranchesToLandingPad(const MachineBasicBlock *MBB) const { |
| 457 | SmallSet<const MachineBasicBlock*, 32> Visited; |
| 458 | const MachineBasicBlock *CurMBB = MBB; |
| 459 | |
Bill Wendling | 64bdde2 | 2009-12-11 03:14:18 +0000 | [diff] [blame^] | 460 | while (!CurMBB->isLandingPad()) { |
| 461 | if (CurMBB->succ_size() != 1) |
Bill Wendling | 4bde1ab | 2009-12-11 01:49:14 +0000 | [diff] [blame] | 462 | break; |
| 463 | |
Bill Wendling | 64bdde2 | 2009-12-11 03:14:18 +0000 | [diff] [blame^] | 464 | if (!Visited.insert(CurMBB)) break; |
Bill Wendling | 4bde1ab | 2009-12-11 01:49:14 +0000 | [diff] [blame] | 465 | CurMBB = *CurMBB->succ_begin(); |
| 466 | } |
| 467 | |
| 468 | return CurMBB->isLandingPad(); |
| 469 | } |
| 470 | |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 471 | /// CorrectExtraCFGEdges - Various pieces of code can cause excess edges in the |
| 472 | /// CFG to be inserted. If we have proven that MBB can only branch to DestA and |
| 473 | /// DestB, remove any other MBB successors from the CFG. DestA and DestB can |
| 474 | /// be null. |
Bill Wendling | 4bde1ab | 2009-12-11 01:49:14 +0000 | [diff] [blame] | 475 | /// |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 476 | /// Besides DestA and DestB, retain other edges leading to LandingPads |
| 477 | /// (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] | 478 | /// Note it is possible that DestA and/or DestB are LandingPads. |
| 479 | bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA, |
| 480 | MachineBasicBlock *DestB, |
| 481 | bool isCond) { |
| 482 | bool MadeChange = false; |
| 483 | bool AddedFallThrough = false; |
| 484 | |
Chris Lattner | 7896c9f | 2009-12-03 00:50:42 +0000 | [diff] [blame] | 485 | MachineFunction::iterator FallThru = |
| 486 | llvm::next(MachineFunction::iterator(this)); |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 487 | |
| 488 | // If this block ends with a conditional branch that falls through to its |
| 489 | // successor, set DestB as the successor. |
| 490 | if (isCond) { |
| 491 | if (DestB == 0 && FallThru != getParent()->end()) { |
| 492 | DestB = FallThru; |
| 493 | AddedFallThrough = true; |
| 494 | } |
| 495 | } else { |
| 496 | // If this is an unconditional branch with no explicit dest, it must just be |
| 497 | // a fallthrough into DestB. |
| 498 | if (DestA == 0 && FallThru != getParent()->end()) { |
| 499 | DestA = FallThru; |
| 500 | AddedFallThrough = true; |
| 501 | } |
| 502 | } |
| 503 | |
| 504 | MachineBasicBlock::succ_iterator SI = succ_begin(); |
Bill Wendling | 4bde1ab | 2009-12-11 01:49:14 +0000 | [diff] [blame] | 505 | const MachineBasicBlock *OrigDestA = DestA, *OrigDestB = DestB; |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 506 | while (SI != succ_end()) { |
Bill Wendling | 4bde1ab | 2009-12-11 01:49:14 +0000 | [diff] [blame] | 507 | const MachineBasicBlock *MBB = *SI; |
| 508 | if (MBB == DestA) { |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 509 | DestA = 0; |
| 510 | ++SI; |
Bill Wendling | 4bde1ab | 2009-12-11 01:49:14 +0000 | [diff] [blame] | 511 | } else if (MBB == DestB) { |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 512 | DestB = 0; |
| 513 | ++SI; |
Bill Wendling | 64bdde2 | 2009-12-11 03:14:18 +0000 | [diff] [blame^] | 514 | } else if (MBB != OrigDestA && MBB != OrigDestB && |
| 515 | BranchesToLandingPad(MBB)) { |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 516 | ++SI; |
| 517 | } else { |
| 518 | // Otherwise, this is a superfluous edge, remove it. |
David Greene | 8a46d34 | 2007-06-29 02:45:24 +0000 | [diff] [blame] | 519 | SI = removeSuccessor(SI); |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 520 | MadeChange = true; |
| 521 | } |
| 522 | } |
Bill Wendling | 4bde1ab | 2009-12-11 01:49:14 +0000 | [diff] [blame] | 523 | |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 524 | if (!AddedFallThrough) { |
| 525 | assert(DestA == 0 && DestB == 0 && |
| 526 | "MachineCFG is missing edges!"); |
| 527 | } else if (isCond) { |
| 528 | assert(DestA == 0 && "MachineCFG is missing edges!"); |
| 529 | } |
Bill Wendling | 4bde1ab | 2009-12-11 01:49:14 +0000 | [diff] [blame] | 530 | |
Evan Cheng | 2bdb7d0 | 2007-06-18 22:43:58 +0000 | [diff] [blame] | 531 | return MadeChange; |
| 532 | } |
Evan Cheng | 2a085c3 | 2009-11-17 19:19:59 +0000 | [diff] [blame] | 533 | |
| 534 | void llvm::WriteAsOperand(raw_ostream &OS, const MachineBasicBlock *MBB, |
| 535 | bool t) { |
| 536 | OS << "BB#" << MBB->getNumber(); |
| 537 | } |