Chris Lattner | e138b3d | 2008-01-01 20:36:19 +0000 | [diff] [blame] | 1 | //===-- lib/CodeGen/MachineInstr.cpp --------------------------------------===// |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 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. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Brian Gaeke | 21326fc | 2004-02-13 04:39:32 +0000 | [diff] [blame] | 9 | // |
| 10 | // Methods common to all machine instructions. |
| 11 | // |
Chris Lattner | 035dfbe | 2002-08-09 20:08:06 +0000 | [diff] [blame] | 12 | //===----------------------------------------------------------------------===// |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 13 | |
Nate Begeman | e8b7ccf | 2008-02-14 07:39:30 +0000 | [diff] [blame] | 14 | #include "llvm/Constants.h" |
Chris Lattner | 822b4fb | 2001-09-07 17:18:30 +0000 | [diff] [blame] | 15 | #include "llvm/CodeGen/MachineInstr.h" |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 16 | #include "llvm/Value.h" |
Chris Lattner | 8517e1f | 2004-02-19 16:17:08 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/MachineFunction.h" |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/PseudoSourceValue.h" |
Chris Lattner | 1049164 | 2002-10-30 00:48:05 +0000 | [diff] [blame] | 20 | #include "llvm/Target/TargetMachine.h" |
Evan Cheng | bb81d97 | 2008-01-31 09:59:15 +0000 | [diff] [blame] | 21 | #include "llvm/Target/TargetInstrInfo.h" |
Chris Lattner | f14cf85 | 2008-01-07 07:42:25 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetInstrDesc.h" |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +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" |
Dan Gohman | ce42e40 | 2008-07-07 20:32:02 +0000 | [diff] [blame] | 25 | #include "llvm/Support/MathExtras.h" |
Bill Wendling | a09362e | 2006-11-28 22:48:48 +0000 | [diff] [blame] | 26 | #include "llvm/Support/Streams.h" |
Chris Lattner | edfb72c | 2008-08-24 20:37:32 +0000 | [diff] [blame] | 27 | #include "llvm/Support/raw_ostream.h" |
Dan Gohman | b8d2f55 | 2008-08-20 15:58:01 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/FoldingSet.h" |
Jeff Cohen | c21c5ee | 2006-12-15 22:57:14 +0000 | [diff] [blame] | 29 | #include <ostream> |
Chris Lattner | 0742b59 | 2004-02-23 18:38:20 +0000 | [diff] [blame] | 30 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 31 | |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 32 | //===----------------------------------------------------------------------===// |
| 33 | // MachineOperand Implementation |
| 34 | //===----------------------------------------------------------------------===// |
| 35 | |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 36 | /// AddRegOperandToRegInfo - Add this register operand to the specified |
| 37 | /// MachineRegisterInfo. If it is null, then the next/prev fields should be |
| 38 | /// explicitly nulled out. |
| 39 | void MachineOperand::AddRegOperandToRegInfo(MachineRegisterInfo *RegInfo) { |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 40 | assert(isRegister() && "Can only add reg operand to use lists"); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 41 | |
| 42 | // If the reginfo pointer is null, just explicitly null out or next/prev |
| 43 | // pointers, to ensure they are not garbage. |
| 44 | if (RegInfo == 0) { |
| 45 | Contents.Reg.Prev = 0; |
| 46 | Contents.Reg.Next = 0; |
| 47 | return; |
| 48 | } |
| 49 | |
| 50 | // Otherwise, add this operand to the head of the registers use/def list. |
Chris Lattner | 80fe531 | 2008-01-01 21:08:22 +0000 | [diff] [blame] | 51 | MachineOperand **Head = &RegInfo->getRegUseDefListHead(getReg()); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 52 | |
Chris Lattner | 80fe531 | 2008-01-01 21:08:22 +0000 | [diff] [blame] | 53 | // For SSA values, we prefer to keep the definition at the start of the list. |
| 54 | // we do this by skipping over the definition if it is at the head of the |
| 55 | // list. |
| 56 | if (*Head && (*Head)->isDef()) |
| 57 | Head = &(*Head)->Contents.Reg.Next; |
| 58 | |
| 59 | Contents.Reg.Next = *Head; |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 60 | if (Contents.Reg.Next) { |
| 61 | assert(getReg() == Contents.Reg.Next->getReg() && |
| 62 | "Different regs on the same list!"); |
| 63 | Contents.Reg.Next->Contents.Reg.Prev = &Contents.Reg.Next; |
| 64 | } |
| 65 | |
Chris Lattner | 80fe531 | 2008-01-01 21:08:22 +0000 | [diff] [blame] | 66 | Contents.Reg.Prev = Head; |
| 67 | *Head = this; |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | void MachineOperand::setReg(unsigned Reg) { |
| 71 | if (getReg() == Reg) return; // No change. |
| 72 | |
| 73 | // Otherwise, we have to change the register. If this operand is embedded |
| 74 | // into a machine function, we need to update the old and new register's |
| 75 | // use/def lists. |
| 76 | if (MachineInstr *MI = getParent()) |
| 77 | if (MachineBasicBlock *MBB = MI->getParent()) |
| 78 | if (MachineFunction *MF = MBB->getParent()) { |
| 79 | RemoveRegOperandFromRegInfo(); |
| 80 | Contents.Reg.RegNo = Reg; |
| 81 | AddRegOperandToRegInfo(&MF->getRegInfo()); |
| 82 | return; |
| 83 | } |
| 84 | |
| 85 | // Otherwise, just change the register, no problem. :) |
| 86 | Contents.Reg.RegNo = Reg; |
| 87 | } |
| 88 | |
| 89 | /// ChangeToImmediate - Replace this operand with a new immediate operand of |
| 90 | /// the specified value. If an operand is known to be an immediate already, |
| 91 | /// the setImm method should be used. |
| 92 | void MachineOperand::ChangeToImmediate(int64_t ImmVal) { |
| 93 | // If this operand is currently a register operand, and if this is in a |
| 94 | // function, deregister the operand from the register's use/def list. |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 95 | if (isRegister() && getParent() && getParent()->getParent() && |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 96 | getParent()->getParent()->getParent()) |
| 97 | RemoveRegOperandFromRegInfo(); |
| 98 | |
| 99 | OpKind = MO_Immediate; |
| 100 | Contents.ImmVal = ImmVal; |
| 101 | } |
| 102 | |
| 103 | /// ChangeToRegister - Replace this operand with a new register operand of |
| 104 | /// the specified value. If an operand is known to be an register already, |
| 105 | /// the setReg method should be used. |
| 106 | void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp, |
Dale Johannesen | e009180 | 2008-09-14 01:44:36 +0000 | [diff] [blame] | 107 | bool isKill, bool isDead) { |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 108 | // If this operand is already a register operand, use setReg to update the |
| 109 | // register's use/def lists. |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 110 | if (isRegister()) { |
Dale Johannesen | e009180 | 2008-09-14 01:44:36 +0000 | [diff] [blame] | 111 | assert(!isEarlyClobber()); |
Dale Johannesen | 91aac10 | 2008-09-17 21:13:11 +0000 | [diff] [blame] | 112 | assert(!isEarlyClobber() && !overlapsEarlyClobber()); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 113 | setReg(Reg); |
| 114 | } else { |
| 115 | // Otherwise, change this to a register and set the reg#. |
| 116 | OpKind = MO_Register; |
| 117 | Contents.Reg.RegNo = Reg; |
| 118 | |
| 119 | // If this operand is embedded in a function, add the operand to the |
| 120 | // register's use/def list. |
| 121 | if (MachineInstr *MI = getParent()) |
| 122 | if (MachineBasicBlock *MBB = MI->getParent()) |
| 123 | if (MachineFunction *MF = MBB->getParent()) |
| 124 | AddRegOperandToRegInfo(&MF->getRegInfo()); |
| 125 | } |
| 126 | |
| 127 | IsDef = isDef; |
| 128 | IsImp = isImp; |
| 129 | IsKill = isKill; |
| 130 | IsDead = isDead; |
Dale Johannesen | e009180 | 2008-09-14 01:44:36 +0000 | [diff] [blame] | 131 | IsEarlyClobber = false; |
Dale Johannesen | 91aac10 | 2008-09-17 21:13:11 +0000 | [diff] [blame] | 132 | OverlapsEarlyClobber = false; |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 133 | SubReg = 0; |
| 134 | } |
| 135 | |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 136 | /// isIdenticalTo - Return true if this operand is identical to the specified |
| 137 | /// operand. |
| 138 | bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const { |
| 139 | if (getType() != Other.getType()) return false; |
| 140 | |
| 141 | switch (getType()) { |
| 142 | default: assert(0 && "Unrecognized operand type"); |
| 143 | case MachineOperand::MO_Register: |
| 144 | return getReg() == Other.getReg() && isDef() == Other.isDef() && |
| 145 | getSubReg() == Other.getSubReg(); |
| 146 | case MachineOperand::MO_Immediate: |
| 147 | return getImm() == Other.getImm(); |
Nate Begeman | e8b7ccf | 2008-02-14 07:39:30 +0000 | [diff] [blame] | 148 | case MachineOperand::MO_FPImmediate: |
| 149 | return getFPImm() == Other.getFPImm(); |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 150 | case MachineOperand::MO_MachineBasicBlock: |
| 151 | return getMBB() == Other.getMBB(); |
| 152 | case MachineOperand::MO_FrameIndex: |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 153 | return getIndex() == Other.getIndex(); |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 154 | case MachineOperand::MO_ConstantPoolIndex: |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 155 | return getIndex() == Other.getIndex() && getOffset() == Other.getOffset(); |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 156 | case MachineOperand::MO_JumpTableIndex: |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 157 | return getIndex() == Other.getIndex(); |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 158 | case MachineOperand::MO_GlobalAddress: |
| 159 | return getGlobal() == Other.getGlobal() && getOffset() == Other.getOffset(); |
| 160 | case MachineOperand::MO_ExternalSymbol: |
| 161 | return !strcmp(getSymbolName(), Other.getSymbolName()) && |
| 162 | getOffset() == Other.getOffset(); |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | /// print - Print the specified machine operand. |
| 167 | /// |
| 168 | void MachineOperand::print(std::ostream &OS, const TargetMachine *TM) const { |
| 169 | switch (getType()) { |
| 170 | case MachineOperand::MO_Register: |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 171 | if (getReg() == 0 || TargetRegisterInfo::isVirtualRegister(getReg())) { |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 172 | OS << "%reg" << getReg(); |
| 173 | } else { |
| 174 | // If the instruction is embedded into a basic block, we can find the |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 175 | // target info for the instruction. |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 176 | if (TM == 0) |
| 177 | if (const MachineInstr *MI = getParent()) |
| 178 | if (const MachineBasicBlock *MBB = MI->getParent()) |
| 179 | if (const MachineFunction *MF = MBB->getParent()) |
| 180 | TM = &MF->getTarget(); |
| 181 | |
| 182 | if (TM) |
Bill Wendling | e6d088a | 2008-02-26 21:47:57 +0000 | [diff] [blame] | 183 | OS << "%" << TM->getRegisterInfo()->get(getReg()).Name; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 184 | else |
| 185 | OS << "%mreg" << getReg(); |
| 186 | } |
| 187 | |
Dale Johannesen | 91aac10 | 2008-09-17 21:13:11 +0000 | [diff] [blame] | 188 | if (isDef() || isKill() || isDead() || isImplicit() || isEarlyClobber() || |
| 189 | overlapsEarlyClobber()) { |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 190 | OS << "<"; |
| 191 | bool NeedComma = false; |
Dale Johannesen | 91aac10 | 2008-09-17 21:13:11 +0000 | [diff] [blame] | 192 | if (overlapsEarlyClobber()) { |
| 193 | NeedComma = true; |
| 194 | OS << "overlapsearly"; |
| 195 | } |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 196 | if (isImplicit()) { |
Dale Johannesen | 91aac10 | 2008-09-17 21:13:11 +0000 | [diff] [blame] | 197 | if (NeedComma) OS << ","; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 198 | OS << (isDef() ? "imp-def" : "imp-use"); |
| 199 | NeedComma = true; |
| 200 | } else if (isDef()) { |
Dale Johannesen | 91aac10 | 2008-09-17 21:13:11 +0000 | [diff] [blame] | 201 | if (NeedComma) OS << ","; |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 202 | if (isEarlyClobber()) |
| 203 | OS << "earlyclobber,"; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 204 | OS << "def"; |
| 205 | NeedComma = true; |
| 206 | } |
| 207 | if (isKill() || isDead()) { |
Bill Wendling | 181eb73 | 2008-02-24 00:56:13 +0000 | [diff] [blame] | 208 | if (NeedComma) OS << ","; |
| 209 | if (isKill()) OS << "kill"; |
| 210 | if (isDead()) OS << "dead"; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 211 | } |
| 212 | OS << ">"; |
| 213 | } |
| 214 | break; |
| 215 | case MachineOperand::MO_Immediate: |
| 216 | OS << getImm(); |
| 217 | break; |
Nate Begeman | e8b7ccf | 2008-02-14 07:39:30 +0000 | [diff] [blame] | 218 | case MachineOperand::MO_FPImmediate: |
| 219 | if (getFPImm()->getType() == Type::FloatTy) { |
| 220 | OS << getFPImm()->getValueAPF().convertToFloat(); |
| 221 | } else { |
| 222 | OS << getFPImm()->getValueAPF().convertToDouble(); |
| 223 | } |
| 224 | break; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 225 | case MachineOperand::MO_MachineBasicBlock: |
| 226 | OS << "mbb<" |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 227 | << ((Value*)getMBB()->getBasicBlock())->getName() |
| 228 | << "," << (void*)getMBB() << ">"; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 229 | break; |
| 230 | case MachineOperand::MO_FrameIndex: |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 231 | OS << "<fi#" << getIndex() << ">"; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 232 | break; |
| 233 | case MachineOperand::MO_ConstantPoolIndex: |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 234 | OS << "<cp#" << getIndex(); |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 235 | if (getOffset()) OS << "+" << getOffset(); |
| 236 | OS << ">"; |
| 237 | break; |
| 238 | case MachineOperand::MO_JumpTableIndex: |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 239 | OS << "<jt#" << getIndex() << ">"; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 240 | break; |
| 241 | case MachineOperand::MO_GlobalAddress: |
| 242 | OS << "<ga:" << ((Value*)getGlobal())->getName(); |
| 243 | if (getOffset()) OS << "+" << getOffset(); |
| 244 | OS << ">"; |
| 245 | break; |
| 246 | case MachineOperand::MO_ExternalSymbol: |
| 247 | OS << "<es:" << getSymbolName(); |
| 248 | if (getOffset()) OS << "+" << getOffset(); |
| 249 | OS << ">"; |
| 250 | break; |
| 251 | default: |
| 252 | assert(0 && "Unrecognized operand type"); |
| 253 | } |
| 254 | } |
| 255 | |
| 256 | //===----------------------------------------------------------------------===// |
Dan Gohman | ce42e40 | 2008-07-07 20:32:02 +0000 | [diff] [blame] | 257 | // MachineMemOperand Implementation |
| 258 | //===----------------------------------------------------------------------===// |
| 259 | |
| 260 | MachineMemOperand::MachineMemOperand(const Value *v, unsigned int f, |
| 261 | int64_t o, uint64_t s, unsigned int a) |
| 262 | : Offset(o), Size(s), V(v), |
| 263 | Flags((f & 7) | ((Log2_32(a) + 1) << 3)) { |
Dan Gohman | f1bf29e | 2008-07-08 23:47:04 +0000 | [diff] [blame] | 264 | assert(isPowerOf2_32(a) && "Alignment is not a power of 2!"); |
Dan Gohman | c5e1f98 | 2008-07-16 15:56:42 +0000 | [diff] [blame] | 265 | assert((isLoad() || isStore()) && "Not a load/store!"); |
Dan Gohman | ce42e40 | 2008-07-07 20:32:02 +0000 | [diff] [blame] | 266 | } |
| 267 | |
Dan Gohman | b8d2f55 | 2008-08-20 15:58:01 +0000 | [diff] [blame] | 268 | /// Profile - Gather unique data for the object. |
| 269 | /// |
| 270 | void MachineMemOperand::Profile(FoldingSetNodeID &ID) const { |
| 271 | ID.AddInteger(Offset); |
| 272 | ID.AddInteger(Size); |
| 273 | ID.AddPointer(V); |
| 274 | ID.AddInteger(Flags); |
| 275 | } |
| 276 | |
Dan Gohman | ce42e40 | 2008-07-07 20:32:02 +0000 | [diff] [blame] | 277 | //===----------------------------------------------------------------------===// |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 278 | // MachineInstr Implementation |
| 279 | //===----------------------------------------------------------------------===// |
| 280 | |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 281 | /// MachineInstr ctor - This constructor creates a dummy MachineInstr with |
Evan Cheng | 67f660c | 2006-11-30 07:08:44 +0000 | [diff] [blame] | 282 | /// TID NULL and no operands. |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 283 | MachineInstr::MachineInstr() |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 284 | : TID(0), NumImplicitOps(0), Parent(0) { |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 285 | // Make sure that we get added to a machine basicblock |
| 286 | LeakDetector::addGarbageObject(this); |
Chris Lattner | 7279122 | 2002-10-28 20:59:49 +0000 | [diff] [blame] | 287 | } |
| 288 | |
Evan Cheng | 67f660c | 2006-11-30 07:08:44 +0000 | [diff] [blame] | 289 | void MachineInstr::addImplicitDefUseOperands() { |
| 290 | if (TID->ImplicitDefs) |
Chris Lattner | a4161ee | 2007-12-30 00:12:25 +0000 | [diff] [blame] | 291 | for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs) |
Chris Lattner | 8019f41 | 2007-12-30 00:41:17 +0000 | [diff] [blame] | 292 | addOperand(MachineOperand::CreateReg(*ImpDefs, true, true)); |
Evan Cheng | 67f660c | 2006-11-30 07:08:44 +0000 | [diff] [blame] | 293 | if (TID->ImplicitUses) |
Chris Lattner | a4161ee | 2007-12-30 00:12:25 +0000 | [diff] [blame] | 294 | for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses) |
Chris Lattner | 8019f41 | 2007-12-30 00:41:17 +0000 | [diff] [blame] | 295 | addOperand(MachineOperand::CreateReg(*ImpUses, false, true)); |
Evan Cheng | d7de496 | 2006-11-13 23:34:06 +0000 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | /// MachineInstr ctor - This constructor create a MachineInstr and add the |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 299 | /// implicit operands. It reserves space for number of operands specified by |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 300 | /// TargetInstrDesc or the numOperands if it is not zero. (for |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 301 | /// instructions with variable number of operands). |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 302 | MachineInstr::MachineInstr(const TargetInstrDesc &tid, bool NoImp) |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 303 | : TID(&tid), NumImplicitOps(0), Parent(0) { |
Chris Lattner | 349c495 | 2008-01-07 03:13:06 +0000 | [diff] [blame] | 304 | if (!NoImp && TID->getImplicitDefs()) |
| 305 | for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs) |
Evan Cheng | d7de496 | 2006-11-13 23:34:06 +0000 | [diff] [blame] | 306 | NumImplicitOps++; |
Chris Lattner | 349c495 | 2008-01-07 03:13:06 +0000 | [diff] [blame] | 307 | if (!NoImp && TID->getImplicitUses()) |
| 308 | for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses) |
Evan Cheng | d7de496 | 2006-11-13 23:34:06 +0000 | [diff] [blame] | 309 | NumImplicitOps++; |
Chris Lattner | 349c495 | 2008-01-07 03:13:06 +0000 | [diff] [blame] | 310 | Operands.reserve(NumImplicitOps + TID->getNumOperands()); |
Evan Cheng | fa94572 | 2007-10-13 02:23:01 +0000 | [diff] [blame] | 311 | if (!NoImp) |
| 312 | addImplicitDefUseOperands(); |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 313 | // Make sure that we get added to a machine basicblock |
| 314 | LeakDetector::addGarbageObject(this); |
Evan Cheng | d7de496 | 2006-11-13 23:34:06 +0000 | [diff] [blame] | 315 | } |
| 316 | |
Chris Lattner | ddd7fcb | 2002-10-29 23:19:00 +0000 | [diff] [blame] | 317 | /// MachineInstr ctor - Work exactly the same as the ctor above, except that the |
| 318 | /// MachineInstr is created and added to the end of the specified basic block. |
| 319 | /// |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 320 | MachineInstr::MachineInstr(MachineBasicBlock *MBB, |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 321 | const TargetInstrDesc &tid) |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 322 | : TID(&tid), NumImplicitOps(0), Parent(0) { |
Chris Lattner | ddd7fcb | 2002-10-29 23:19:00 +0000 | [diff] [blame] | 323 | assert(MBB && "Cannot use inserting ctor with null basic block!"); |
Evan Cheng | 67f660c | 2006-11-30 07:08:44 +0000 | [diff] [blame] | 324 | if (TID->ImplicitDefs) |
Chris Lattner | 349c495 | 2008-01-07 03:13:06 +0000 | [diff] [blame] | 325 | for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs) |
Evan Cheng | d7de496 | 2006-11-13 23:34:06 +0000 | [diff] [blame] | 326 | NumImplicitOps++; |
Evan Cheng | 67f660c | 2006-11-30 07:08:44 +0000 | [diff] [blame] | 327 | if (TID->ImplicitUses) |
Chris Lattner | 349c495 | 2008-01-07 03:13:06 +0000 | [diff] [blame] | 328 | for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses) |
Evan Cheng | d7de496 | 2006-11-13 23:34:06 +0000 | [diff] [blame] | 329 | NumImplicitOps++; |
Chris Lattner | 349c495 | 2008-01-07 03:13:06 +0000 | [diff] [blame] | 330 | Operands.reserve(NumImplicitOps + TID->getNumOperands()); |
Evan Cheng | 67f660c | 2006-11-30 07:08:44 +0000 | [diff] [blame] | 331 | addImplicitDefUseOperands(); |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 332 | // Make sure that we get added to a machine basicblock |
| 333 | LeakDetector::addGarbageObject(this); |
Chris Lattner | ddd7fcb | 2002-10-29 23:19:00 +0000 | [diff] [blame] | 334 | MBB->push_back(this); // Add instruction to end of basic block! |
| 335 | } |
| 336 | |
Misha Brukman | ce22e76 | 2004-07-09 14:45:17 +0000 | [diff] [blame] | 337 | /// MachineInstr ctor - Copies MachineInstr arg exactly |
| 338 | /// |
Evan Cheng | 1ed9922 | 2008-07-19 00:37:25 +0000 | [diff] [blame] | 339 | MachineInstr::MachineInstr(MachineFunction &MF, const MachineInstr &MI) |
| 340 | : TID(&MI.getDesc()), NumImplicitOps(0), Parent(0) { |
Chris Lattner | 943b5e1 | 2006-05-04 19:14:44 +0000 | [diff] [blame] | 341 | Operands.reserve(MI.getNumOperands()); |
Tanya Lattner | b5159ed | 2004-05-23 20:58:02 +0000 | [diff] [blame] | 342 | |
Misha Brukman | ce22e76 | 2004-07-09 14:45:17 +0000 | [diff] [blame] | 343 | // Add operands |
Evan Cheng | 1ed9922 | 2008-07-19 00:37:25 +0000 | [diff] [blame] | 344 | for (unsigned i = 0; i != MI.getNumOperands(); ++i) |
| 345 | addOperand(MI.getOperand(i)); |
| 346 | NumImplicitOps = MI.NumImplicitOps; |
Tanya Lattner | 0c63e03 | 2004-05-24 03:14:18 +0000 | [diff] [blame] | 347 | |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 348 | // Add memory operands. |
Dan Gohman | fed90b6 | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 349 | for (std::list<MachineMemOperand>::const_iterator i = MI.memoperands_begin(), |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 350 | j = MI.memoperands_end(); i != j; ++i) |
| 351 | addMemOperand(MF, *i); |
| 352 | |
| 353 | // Set parent to null. |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 354 | Parent = 0; |
Dan Gohman | 6116a73 | 2008-07-21 18:47:29 +0000 | [diff] [blame] | 355 | |
| 356 | LeakDetector::addGarbageObject(this); |
Tanya Lattner | 466b534 | 2004-05-23 19:35:12 +0000 | [diff] [blame] | 357 | } |
| 358 | |
Misha Brukman | ce22e76 | 2004-07-09 14:45:17 +0000 | [diff] [blame] | 359 | MachineInstr::~MachineInstr() { |
Dan Gohman | 2c3f7ae | 2008-07-17 23:49:46 +0000 | [diff] [blame] | 360 | LeakDetector::removeGarbageObject(this); |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 361 | assert(MemOperands.empty() && |
| 362 | "MachineInstr being deleted with live memoperands!"); |
Chris Lattner | e12d6ab | 2007-12-30 06:11:04 +0000 | [diff] [blame] | 363 | #ifndef NDEBUG |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 364 | for (unsigned i = 0, e = Operands.size(); i != e; ++i) { |
Chris Lattner | e12d6ab | 2007-12-30 06:11:04 +0000 | [diff] [blame] | 365 | assert(Operands[i].ParentMI == this && "ParentMI mismatch!"); |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 366 | assert((!Operands[i].isRegister() || !Operands[i].isOnRegUseList()) && |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 367 | "Reg operand def/use list corrupted"); |
| 368 | } |
Chris Lattner | e12d6ab | 2007-12-30 06:11:04 +0000 | [diff] [blame] | 369 | #endif |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 370 | } |
| 371 | |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 372 | /// getRegInfo - If this instruction is embedded into a MachineFunction, |
| 373 | /// return the MachineRegisterInfo object for the current function, otherwise |
| 374 | /// return null. |
| 375 | MachineRegisterInfo *MachineInstr::getRegInfo() { |
| 376 | if (MachineBasicBlock *MBB = getParent()) |
Dan Gohman | 4e526b9 | 2008-07-08 23:59:09 +0000 | [diff] [blame] | 377 | return &MBB->getParent()->getRegInfo(); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 378 | return 0; |
| 379 | } |
| 380 | |
| 381 | /// RemoveRegOperandsFromUseLists - Unlink all of the register operands in |
| 382 | /// this instruction from their respective use lists. This requires that the |
| 383 | /// operands already be on their use lists. |
| 384 | void MachineInstr::RemoveRegOperandsFromUseLists() { |
| 385 | for (unsigned i = 0, e = Operands.size(); i != e; ++i) { |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 386 | if (Operands[i].isRegister()) |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 387 | Operands[i].RemoveRegOperandFromRegInfo(); |
| 388 | } |
| 389 | } |
| 390 | |
| 391 | /// AddRegOperandsToUseLists - Add all of the register operands in |
| 392 | /// this instruction from their respective use lists. This requires that the |
| 393 | /// operands not be on their use lists yet. |
| 394 | void MachineInstr::AddRegOperandsToUseLists(MachineRegisterInfo &RegInfo) { |
| 395 | for (unsigned i = 0, e = Operands.size(); i != e; ++i) { |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 396 | if (Operands[i].isRegister()) |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 397 | Operands[i].AddRegOperandToRegInfo(&RegInfo); |
| 398 | } |
| 399 | } |
| 400 | |
| 401 | |
| 402 | /// addOperand - Add the specified operand to the instruction. If it is an |
| 403 | /// implicit operand, it is added to the end of the operand list. If it is |
| 404 | /// an explicit operand it is added at the end of the explicit operand list |
| 405 | /// (before the first implicit operand). |
| 406 | void MachineInstr::addOperand(const MachineOperand &Op) { |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 407 | bool isImpReg = Op.isRegister() && Op.isImplicit(); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 408 | assert((isImpReg || !OperandsComplete()) && |
| 409 | "Trying to add an operand to a machine instr that is already done!"); |
| 410 | |
| 411 | // If we are adding the operand to the end of the list, our job is simpler. |
| 412 | // This is true most of the time, so this is a reasonable optimization. |
| 413 | if (isImpReg || NumImplicitOps == 0) { |
| 414 | // We can only do this optimization if we know that the operand list won't |
| 415 | // reallocate. |
| 416 | if (Operands.empty() || Operands.size()+1 <= Operands.capacity()) { |
| 417 | Operands.push_back(Op); |
| 418 | |
| 419 | // Set the parent of the operand. |
| 420 | Operands.back().ParentMI = this; |
| 421 | |
| 422 | // If the operand is a register, update the operand's use list. |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 423 | if (Op.isRegister()) |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 424 | Operands.back().AddRegOperandToRegInfo(getRegInfo()); |
| 425 | return; |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | // Otherwise, we have to insert a real operand before any implicit ones. |
| 430 | unsigned OpNo = Operands.size()-NumImplicitOps; |
| 431 | |
| 432 | MachineRegisterInfo *RegInfo = getRegInfo(); |
| 433 | |
| 434 | // If this instruction isn't embedded into a function, then we don't need to |
| 435 | // update any operand lists. |
| 436 | if (RegInfo == 0) { |
| 437 | // Simple insertion, no reginfo update needed for other register operands. |
| 438 | Operands.insert(Operands.begin()+OpNo, Op); |
| 439 | Operands[OpNo].ParentMI = this; |
| 440 | |
| 441 | // Do explicitly set the reginfo for this operand though, to ensure the |
| 442 | // next/prev fields are properly nulled out. |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 443 | if (Operands[OpNo].isRegister()) |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 444 | Operands[OpNo].AddRegOperandToRegInfo(0); |
| 445 | |
| 446 | } else if (Operands.size()+1 <= Operands.capacity()) { |
| 447 | // Otherwise, we have to remove register operands from their register use |
| 448 | // list, add the operand, then add the register operands back to their use |
| 449 | // list. This also must handle the case when the operand list reallocates |
| 450 | // to somewhere else. |
| 451 | |
| 452 | // If insertion of this operand won't cause reallocation of the operand |
| 453 | // list, just remove the implicit operands, add the operand, then re-add all |
| 454 | // the rest of the operands. |
| 455 | for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) { |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 456 | assert(Operands[i].isRegister() && "Should only be an implicit reg!"); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 457 | Operands[i].RemoveRegOperandFromRegInfo(); |
| 458 | } |
| 459 | |
| 460 | // Add the operand. If it is a register, add it to the reg list. |
| 461 | Operands.insert(Operands.begin()+OpNo, Op); |
| 462 | Operands[OpNo].ParentMI = this; |
| 463 | |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 464 | if (Operands[OpNo].isRegister()) |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 465 | Operands[OpNo].AddRegOperandToRegInfo(RegInfo); |
| 466 | |
| 467 | // Re-add all the implicit ops. |
| 468 | for (unsigned i = OpNo+1, e = Operands.size(); i != e; ++i) { |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 469 | assert(Operands[i].isRegister() && "Should only be an implicit reg!"); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 470 | Operands[i].AddRegOperandToRegInfo(RegInfo); |
| 471 | } |
| 472 | } else { |
| 473 | // Otherwise, we will be reallocating the operand list. Remove all reg |
| 474 | // operands from their list, then readd them after the operand list is |
| 475 | // reallocated. |
| 476 | RemoveRegOperandsFromUseLists(); |
| 477 | |
| 478 | Operands.insert(Operands.begin()+OpNo, Op); |
| 479 | Operands[OpNo].ParentMI = this; |
| 480 | |
| 481 | // Re-add all the operands. |
| 482 | AddRegOperandsToUseLists(*RegInfo); |
| 483 | } |
| 484 | } |
| 485 | |
| 486 | /// RemoveOperand - Erase an operand from an instruction, leaving it with one |
| 487 | /// fewer operand than it started with. |
| 488 | /// |
| 489 | void MachineInstr::RemoveOperand(unsigned OpNo) { |
| 490 | assert(OpNo < Operands.size() && "Invalid operand number"); |
| 491 | |
| 492 | // Special case removing the last one. |
| 493 | if (OpNo == Operands.size()-1) { |
| 494 | // If needed, remove from the reg def/use list. |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 495 | if (Operands.back().isRegister() && Operands.back().isOnRegUseList()) |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 496 | Operands.back().RemoveRegOperandFromRegInfo(); |
| 497 | |
| 498 | Operands.pop_back(); |
| 499 | return; |
| 500 | } |
| 501 | |
| 502 | // Otherwise, we are removing an interior operand. If we have reginfo to |
| 503 | // update, remove all operands that will be shifted down from their reg lists, |
| 504 | // move everything down, then re-add them. |
| 505 | MachineRegisterInfo *RegInfo = getRegInfo(); |
| 506 | if (RegInfo) { |
| 507 | for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) { |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 508 | if (Operands[i].isRegister()) |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 509 | Operands[i].RemoveRegOperandFromRegInfo(); |
| 510 | } |
| 511 | } |
| 512 | |
| 513 | Operands.erase(Operands.begin()+OpNo); |
| 514 | |
| 515 | if (RegInfo) { |
| 516 | for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) { |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 517 | if (Operands[i].isRegister()) |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 518 | Operands[i].AddRegOperandToRegInfo(RegInfo); |
| 519 | } |
| 520 | } |
| 521 | } |
| 522 | |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 523 | /// addMemOperand - Add a MachineMemOperand to the machine instruction, |
| 524 | /// referencing arbitrary storage. |
| 525 | void MachineInstr::addMemOperand(MachineFunction &MF, |
| 526 | const MachineMemOperand &MO) { |
Dan Gohman | fed90b6 | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 527 | MemOperands.push_back(MO); |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | /// clearMemOperands - Erase all of this MachineInstr's MachineMemOperands. |
| 531 | void MachineInstr::clearMemOperands(MachineFunction &MF) { |
Dan Gohman | fed90b6 | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 532 | MemOperands.clear(); |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 533 | } |
| 534 | |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 535 | |
Chris Lattner | 48d7c06 | 2006-04-17 21:35:41 +0000 | [diff] [blame] | 536 | /// removeFromParent - This method unlinks 'this' from the containing basic |
| 537 | /// block, and returns it, but does not delete it. |
| 538 | MachineInstr *MachineInstr::removeFromParent() { |
| 539 | assert(getParent() && "Not embedded in a basic block!"); |
| 540 | getParent()->remove(this); |
| 541 | return this; |
| 542 | } |
| 543 | |
| 544 | |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 545 | /// eraseFromParent - This method unlinks 'this' from the containing basic |
| 546 | /// block, and deletes it. |
| 547 | void MachineInstr::eraseFromParent() { |
| 548 | assert(getParent() && "Not embedded in a basic block!"); |
| 549 | getParent()->erase(this); |
| 550 | } |
| 551 | |
| 552 | |
Brian Gaeke | 21326fc | 2004-02-13 04:39:32 +0000 | [diff] [blame] | 553 | /// OperandComplete - Return true if it's illegal to add a new operand |
| 554 | /// |
Chris Lattner | 2a90ba6 | 2004-02-12 16:09:53 +0000 | [diff] [blame] | 555 | bool MachineInstr::OperandsComplete() const { |
Chris Lattner | 349c495 | 2008-01-07 03:13:06 +0000 | [diff] [blame] | 556 | unsigned short NumOperands = TID->getNumOperands(); |
Chris Lattner | 8f707e1 | 2008-01-07 05:19:29 +0000 | [diff] [blame] | 557 | if (!TID->isVariadic() && getNumOperands()-NumImplicitOps >= NumOperands) |
Vikram S. Adve | 3497782 | 2003-05-31 07:39:06 +0000 | [diff] [blame] | 558 | return true; // Broken: we have all the operands of this instruction! |
Chris Lattner | 413746e | 2002-10-28 20:48:39 +0000 | [diff] [blame] | 559 | return false; |
| 560 | } |
| 561 | |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 562 | /// getNumExplicitOperands - Returns the number of non-implicit operands. |
| 563 | /// |
| 564 | unsigned MachineInstr::getNumExplicitOperands() const { |
Chris Lattner | 349c495 | 2008-01-07 03:13:06 +0000 | [diff] [blame] | 565 | unsigned NumOperands = TID->getNumOperands(); |
Chris Lattner | 8f707e1 | 2008-01-07 05:19:29 +0000 | [diff] [blame] | 566 | if (!TID->isVariadic()) |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 567 | return NumOperands; |
| 568 | |
| 569 | for (unsigned e = getNumOperands(); NumOperands != e; ++NumOperands) { |
| 570 | const MachineOperand &MO = getOperand(NumOperands); |
| 571 | if (!MO.isRegister() || !MO.isImplicit()) |
| 572 | NumOperands++; |
| 573 | } |
| 574 | return NumOperands; |
| 575 | } |
| 576 | |
Chris Lattner | 8ace2cd | 2006-10-20 22:39:59 +0000 | [diff] [blame] | 577 | |
Dan Gohman | 4406604 | 2008-07-01 00:05:16 +0000 | [diff] [blame] | 578 | /// isLabel - Returns true if the MachineInstr represents a label. |
| 579 | /// |
| 580 | bool MachineInstr::isLabel() const { |
| 581 | return getOpcode() == TargetInstrInfo::DBG_LABEL || |
| 582 | getOpcode() == TargetInstrInfo::EH_LABEL || |
| 583 | getOpcode() == TargetInstrInfo::GC_LABEL; |
| 584 | } |
| 585 | |
Evan Cheng | bb81d97 | 2008-01-31 09:59:15 +0000 | [diff] [blame] | 586 | /// isDebugLabel - Returns true if the MachineInstr represents a debug label. |
| 587 | /// |
| 588 | bool MachineInstr::isDebugLabel() const { |
Dan Gohman | 4406604 | 2008-07-01 00:05:16 +0000 | [diff] [blame] | 589 | return getOpcode() == TargetInstrInfo::DBG_LABEL; |
Evan Cheng | bb81d97 | 2008-01-31 09:59:15 +0000 | [diff] [blame] | 590 | } |
| 591 | |
Evan Cheng | faa5107 | 2007-04-26 19:00:32 +0000 | [diff] [blame] | 592 | /// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of |
Evan Cheng | 32eb1f1 | 2007-03-26 22:37:45 +0000 | [diff] [blame] | 593 | /// the specific register or -1 if it is not found. It further tightening |
Evan Cheng | 76d7e76 | 2007-02-23 01:04:26 +0000 | [diff] [blame] | 594 | /// the search criteria to a use that kills the register if isKill is true. |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 595 | int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill, |
| 596 | const TargetRegisterInfo *TRI) const { |
Evan Cheng | 576d123 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 597 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
Evan Cheng | f277ee4 | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 598 | const MachineOperand &MO = getOperand(i); |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 599 | if (!MO.isRegister() || !MO.isUse()) |
| 600 | continue; |
| 601 | unsigned MOReg = MO.getReg(); |
| 602 | if (!MOReg) |
| 603 | continue; |
| 604 | if (MOReg == Reg || |
| 605 | (TRI && |
| 606 | TargetRegisterInfo::isPhysicalRegister(MOReg) && |
| 607 | TargetRegisterInfo::isPhysicalRegister(Reg) && |
| 608 | TRI->isSubRegister(MOReg, Reg))) |
Evan Cheng | 76d7e76 | 2007-02-23 01:04:26 +0000 | [diff] [blame] | 609 | if (!isKill || MO.isKill()) |
Evan Cheng | 32eb1f1 | 2007-03-26 22:37:45 +0000 | [diff] [blame] | 610 | return i; |
Evan Cheng | 576d123 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 611 | } |
Evan Cheng | 32eb1f1 | 2007-03-26 22:37:45 +0000 | [diff] [blame] | 612 | return -1; |
Evan Cheng | 576d123 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 613 | } |
| 614 | |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 615 | /// findRegisterDefOperandIdx() - Returns the operand index that is a def of |
Dan Gohman | 703bfe6 | 2008-05-06 00:20:10 +0000 | [diff] [blame] | 616 | /// the specified register or -1 if it is not found. If isDead is true, defs |
| 617 | /// that are not dead are skipped. If TargetRegisterInfo is non-null, then it |
| 618 | /// also checks if there is a def of a super-register. |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 619 | int MachineInstr::findRegisterDefOperandIdx(unsigned Reg, bool isDead, |
| 620 | const TargetRegisterInfo *TRI) const { |
Evan Cheng | b371f45 | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 621 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 622 | const MachineOperand &MO = getOperand(i); |
| 623 | if (!MO.isRegister() || !MO.isDef()) |
| 624 | continue; |
| 625 | unsigned MOReg = MO.getReg(); |
| 626 | if (MOReg == Reg || |
| 627 | (TRI && |
| 628 | TargetRegisterInfo::isPhysicalRegister(MOReg) && |
| 629 | TargetRegisterInfo::isPhysicalRegister(Reg) && |
| 630 | TRI->isSubRegister(MOReg, Reg))) |
| 631 | if (!isDead || MO.isDead()) |
| 632 | return i; |
Evan Cheng | b371f45 | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 633 | } |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 634 | return -1; |
Evan Cheng | b371f45 | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 635 | } |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 636 | |
Evan Cheng | f277ee4 | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 637 | /// findFirstPredOperandIdx() - Find the index of the first operand in the |
| 638 | /// operand list that is used to represent the predicate. It returns -1 if |
| 639 | /// none is found. |
| 640 | int MachineInstr::findFirstPredOperandIdx() const { |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 641 | const TargetInstrDesc &TID = getDesc(); |
| 642 | if (TID.isPredicable()) { |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 643 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 644 | if (TID.OpInfo[i].isPredicate()) |
Evan Cheng | f277ee4 | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 645 | return i; |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 646 | } |
| 647 | |
Evan Cheng | f277ee4 | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 648 | return -1; |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 649 | } |
Evan Cheng | b371f45 | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 650 | |
Evan Cheng | ef0732d | 2008-07-10 07:35:43 +0000 | [diff] [blame] | 651 | /// isRegReDefinedByTwoAddr - Given the defined register and the operand index, |
| 652 | /// check if the register def is a re-definition due to two addr elimination. |
| 653 | bool MachineInstr::isRegReDefinedByTwoAddr(unsigned Reg, unsigned DefIdx) const{ |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 654 | const TargetInstrDesc &TID = getDesc(); |
Evan Cheng | ef0732d | 2008-07-10 07:35:43 +0000 | [diff] [blame] | 655 | for (unsigned i = 0, e = TID.getNumOperands(); i != e; ++i) { |
| 656 | const MachineOperand &MO = getOperand(i); |
| 657 | if (MO.isRegister() && MO.isUse() && MO.getReg() == Reg && |
| 658 | TID.getOperandConstraint(i, TOI::TIED_TO) == (int)DefIdx) |
| 659 | return true; |
Evan Cheng | 32dfbea | 2007-10-12 08:50:34 +0000 | [diff] [blame] | 660 | } |
| 661 | return false; |
| 662 | } |
| 663 | |
Evan Cheng | 576d123 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 664 | /// copyKillDeadInfo - Copies kill / dead operand properties from MI. |
| 665 | /// |
| 666 | void MachineInstr::copyKillDeadInfo(const MachineInstr *MI) { |
| 667 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 668 | const MachineOperand &MO = MI->getOperand(i); |
Dan Gohman | 92dfe20 | 2007-09-14 20:33:02 +0000 | [diff] [blame] | 669 | if (!MO.isRegister() || (!MO.isKill() && !MO.isDead())) |
Evan Cheng | 576d123 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 670 | continue; |
| 671 | for (unsigned j = 0, ee = getNumOperands(); j != ee; ++j) { |
| 672 | MachineOperand &MOp = getOperand(j); |
| 673 | if (!MOp.isIdenticalTo(MO)) |
| 674 | continue; |
| 675 | if (MO.isKill()) |
| 676 | MOp.setIsKill(); |
| 677 | else |
| 678 | MOp.setIsDead(); |
| 679 | break; |
| 680 | } |
| 681 | } |
| 682 | } |
| 683 | |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 684 | /// copyPredicates - Copies predicate operand(s) from MI. |
| 685 | void MachineInstr::copyPredicates(const MachineInstr *MI) { |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 686 | const TargetInstrDesc &TID = MI->getDesc(); |
Evan Cheng | b27087f | 2008-03-13 00:44:09 +0000 | [diff] [blame] | 687 | if (!TID.isPredicable()) |
| 688 | return; |
| 689 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 690 | if (TID.OpInfo[i].isPredicate()) { |
| 691 | // Predicated operands must be last operands. |
| 692 | addOperand(MI->getOperand(i)); |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 693 | } |
| 694 | } |
| 695 | } |
| 696 | |
Evan Cheng | 9f1c831 | 2008-07-03 09:09:37 +0000 | [diff] [blame] | 697 | /// isSafeToMove - Return true if it is safe to move this instruction. If |
| 698 | /// SawStore is set to true, it means that there is a store (or call) between |
| 699 | /// the instruction's location and its intended destination. |
Evan Cheng | b27087f | 2008-03-13 00:44:09 +0000 | [diff] [blame] | 700 | bool MachineInstr::isSafeToMove(const TargetInstrInfo *TII, bool &SawStore) { |
| 701 | // Ignore stuff that we obviously can't move. |
| 702 | if (TID->mayStore() || TID->isCall()) { |
| 703 | SawStore = true; |
| 704 | return false; |
| 705 | } |
| 706 | if (TID->isReturn() || TID->isBranch() || TID->hasUnmodeledSideEffects()) |
| 707 | return false; |
| 708 | |
| 709 | // See if this instruction does a load. If so, we have to guarantee that the |
| 710 | // loaded value doesn't change between the load and the its intended |
| 711 | // destination. The check for isInvariantLoad gives the targe the chance to |
| 712 | // classify the load as always returning a constant, e.g. a constant pool |
| 713 | // load. |
Dan Gohman | 3e4fb70 | 2008-09-24 00:06:15 +0000 | [diff] [blame^] | 714 | if (TID->mayLoad() && !TII->isInvariantLoad(this)) |
Evan Cheng | b27087f | 2008-03-13 00:44:09 +0000 | [diff] [blame] | 715 | // Otherwise, this is a real load. If there is a store between the load and |
Dan Gohman | 3e4fb70 | 2008-09-24 00:06:15 +0000 | [diff] [blame^] | 716 | // end of block, or if the laod is volatile, we can't move it. |
| 717 | return SawStore || hasVolatileMemoryRef(); |
| 718 | |
Evan Cheng | b27087f | 2008-03-13 00:44:09 +0000 | [diff] [blame] | 719 | return true; |
| 720 | } |
| 721 | |
Evan Cheng | df3b993 | 2008-08-27 20:33:50 +0000 | [diff] [blame] | 722 | /// isSafeToReMat - Return true if it's safe to rematerialize the specified |
| 723 | /// instruction which defined the specified register instead of copying it. |
| 724 | bool MachineInstr::isSafeToReMat(const TargetInstrInfo *TII, unsigned DstReg) { |
Evan Cheng | df3b993 | 2008-08-27 20:33:50 +0000 | [diff] [blame] | 725 | bool SawStore = false; |
Evan Cheng | 3689ff4 | 2008-08-30 09:07:18 +0000 | [diff] [blame] | 726 | if (!getDesc().isRematerializable() || |
| 727 | !TII->isTriviallyReMaterializable(this) || |
| 728 | !isSafeToMove(TII, SawStore)) |
Evan Cheng | df3b993 | 2008-08-27 20:33:50 +0000 | [diff] [blame] | 729 | return false; |
| 730 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 731 | MachineOperand &MO = getOperand(i); |
| 732 | if (!MO.isRegister()) |
| 733 | continue; |
| 734 | // FIXME: For now, do not remat any instruction with register operands. |
| 735 | // Later on, we can loosen the restriction is the register operands have |
| 736 | // not been modified between the def and use. Note, this is different from |
Evan Cheng | 8763c1c | 2008-08-27 20:58:54 +0000 | [diff] [blame] | 737 | // MachineSink because the code is no longer in two-address form (at least |
Evan Cheng | df3b993 | 2008-08-27 20:33:50 +0000 | [diff] [blame] | 738 | // partially). |
| 739 | if (MO.isUse()) |
| 740 | return false; |
| 741 | else if (!MO.isDead() && MO.getReg() != DstReg) |
| 742 | return false; |
| 743 | } |
| 744 | return true; |
| 745 | } |
| 746 | |
Dan Gohman | 3e4fb70 | 2008-09-24 00:06:15 +0000 | [diff] [blame^] | 747 | /// hasVolatileMemoryRef - Return true if this instruction may have a |
| 748 | /// volatile memory reference, or if the information describing the |
| 749 | /// memory reference is not available. Return false if it is known to |
| 750 | /// have no volatile memory references. |
| 751 | bool MachineInstr::hasVolatileMemoryRef() const { |
| 752 | // An instruction known never to access memory won't have a volatile access. |
| 753 | if (!TID->mayStore() && |
| 754 | !TID->mayLoad() && |
| 755 | !TID->isCall() && |
| 756 | !TID->hasUnmodeledSideEffects()) |
| 757 | return false; |
| 758 | |
| 759 | // Otherwise, if the instruction has no memory reference information, |
| 760 | // conservatively assume it wasn't preserved. |
| 761 | if (memoperands_empty()) |
| 762 | return true; |
| 763 | |
| 764 | // Check the memory reference information for volatile references. |
| 765 | for (std::list<MachineMemOperand>::const_iterator I = memoperands_begin(), |
| 766 | E = memoperands_end(); I != E; ++I) |
| 767 | if (I->isVolatile()) |
| 768 | return true; |
| 769 | |
| 770 | return false; |
| 771 | } |
| 772 | |
Brian Gaeke | 21326fc | 2004-02-13 04:39:32 +0000 | [diff] [blame] | 773 | void MachineInstr::dump() const { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 774 | cerr << " " << *this; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 775 | } |
| 776 | |
Tanya Lattner | b140762 | 2004-06-25 00:13:11 +0000 | [diff] [blame] | 777 | void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const { |
Chris Lattner | e308789 | 2007-12-30 21:31:53 +0000 | [diff] [blame] | 778 | // Specialize printing if op#0 is definition |
Chris Lattner | 6a59227 | 2002-10-30 01:55:38 +0000 | [diff] [blame] | 779 | unsigned StartOp = 0; |
Dan Gohman | 92dfe20 | 2007-09-14 20:33:02 +0000 | [diff] [blame] | 780 | if (getNumOperands() && getOperand(0).isRegister() && getOperand(0).isDef()) { |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 781 | getOperand(0).print(OS, TM); |
Chris Lattner | 6a59227 | 2002-10-30 01:55:38 +0000 | [diff] [blame] | 782 | OS << " = "; |
| 783 | ++StartOp; // Don't print this operand again! |
| 784 | } |
Tanya Lattner | b140762 | 2004-06-25 00:13:11 +0000 | [diff] [blame] | 785 | |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 786 | OS << getDesc().getName(); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 787 | |
Chris Lattner | 6a59227 | 2002-10-30 01:55:38 +0000 | [diff] [blame] | 788 | for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) { |
| 789 | if (i != StartOp) |
| 790 | OS << ","; |
| 791 | OS << " "; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 792 | getOperand(i).print(OS, TM); |
Chris Lattner | 1049164 | 2002-10-30 00:48:05 +0000 | [diff] [blame] | 793 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 794 | |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 795 | if (!memoperands_empty()) { |
Dan Gohman | 2bfe6ff | 2008-02-07 16:18:00 +0000 | [diff] [blame] | 796 | OS << ", Mem:"; |
Dan Gohman | fed90b6 | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 797 | for (std::list<MachineMemOperand>::const_iterator i = memoperands_begin(), |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 798 | e = memoperands_end(); i != e; ++i) { |
| 799 | const MachineMemOperand &MRO = *i; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 800 | const Value *V = MRO.getValue(); |
| 801 | |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 802 | assert((MRO.isLoad() || MRO.isStore()) && |
| 803 | "SV has to be a load, store or both."); |
| 804 | |
| 805 | if (MRO.isVolatile()) |
| 806 | OS << "Volatile "; |
Dan Gohman | 2bfe6ff | 2008-02-07 16:18:00 +0000 | [diff] [blame] | 807 | |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 808 | if (MRO.isLoad()) |
Dan Gohman | 2bfe6ff | 2008-02-07 16:18:00 +0000 | [diff] [blame] | 809 | OS << "LD"; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 810 | if (MRO.isStore()) |
Dan Gohman | 2bfe6ff | 2008-02-07 16:18:00 +0000 | [diff] [blame] | 811 | OS << "ST"; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 812 | |
Evan Cheng | bbd8322 | 2008-02-08 22:05:07 +0000 | [diff] [blame] | 813 | OS << "(" << MRO.getSize() << "," << MRO.getAlignment() << ") ["; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 814 | |
Dan Gohman | 2bfe6ff | 2008-02-07 16:18:00 +0000 | [diff] [blame] | 815 | if (!V) |
| 816 | OS << "<unknown>"; |
| 817 | else if (!V->getName().empty()) |
| 818 | OS << V->getName(); |
Chris Lattner | edfb72c | 2008-08-24 20:37:32 +0000 | [diff] [blame] | 819 | else if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V)) { |
| 820 | raw_os_ostream OSS(OS); |
| 821 | PSV->print(OSS); |
| 822 | } else |
Dan Gohman | 2bfe6ff | 2008-02-07 16:18:00 +0000 | [diff] [blame] | 823 | OS << V; |
| 824 | |
| 825 | OS << " + " << MRO.getOffset() << "]"; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 826 | } |
| 827 | } |
| 828 | |
Chris Lattner | 1049164 | 2002-10-30 00:48:05 +0000 | [diff] [blame] | 829 | OS << "\n"; |
| 830 | } |
| 831 | |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 832 | bool MachineInstr::addRegisterKilled(unsigned IncomingReg, |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 833 | const TargetRegisterInfo *RegInfo, |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 834 | bool AddIfNotFound) { |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 835 | bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg); |
Dan Gohman | 2ebc11a | 2008-07-03 01:18:51 +0000 | [diff] [blame] | 836 | bool hasAliases = isPhysReg && RegInfo->getAliasSet(IncomingReg); |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 837 | bool Found = false; |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 838 | SmallVector<unsigned,4> DeadOps; |
Bill Wendling | 4a23d72 | 2008-03-03 22:14:33 +0000 | [diff] [blame] | 839 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 840 | MachineOperand &MO = getOperand(i); |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 841 | if (!MO.isRegister() || !MO.isUse()) |
| 842 | continue; |
| 843 | unsigned Reg = MO.getReg(); |
| 844 | if (!Reg) |
| 845 | continue; |
Bill Wendling | 4a23d72 | 2008-03-03 22:14:33 +0000 | [diff] [blame] | 846 | |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 847 | if (Reg == IncomingReg) { |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 848 | if (!Found) { |
| 849 | if (MO.isKill()) |
| 850 | // The register is already marked kill. |
| 851 | return true; |
| 852 | MO.setIsKill(); |
| 853 | Found = true; |
| 854 | } |
| 855 | } else if (hasAliases && MO.isKill() && |
| 856 | TargetRegisterInfo::isPhysicalRegister(Reg)) { |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 857 | // A super-register kill already exists. |
| 858 | if (RegInfo->isSuperRegister(IncomingReg, Reg)) |
Dan Gohman | 2ebc11a | 2008-07-03 01:18:51 +0000 | [diff] [blame] | 859 | return true; |
| 860 | if (RegInfo->isSubRegister(IncomingReg, Reg)) |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 861 | DeadOps.push_back(i); |
Bill Wendling | 4a23d72 | 2008-03-03 22:14:33 +0000 | [diff] [blame] | 862 | } |
| 863 | } |
| 864 | |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 865 | // Trim unneeded kill operands. |
| 866 | while (!DeadOps.empty()) { |
| 867 | unsigned OpIdx = DeadOps.back(); |
| 868 | if (getOperand(OpIdx).isImplicit()) |
| 869 | RemoveOperand(OpIdx); |
| 870 | else |
| 871 | getOperand(OpIdx).setIsKill(false); |
| 872 | DeadOps.pop_back(); |
| 873 | } |
| 874 | |
Bill Wendling | 4a23d72 | 2008-03-03 22:14:33 +0000 | [diff] [blame] | 875 | // If not found, this means an alias of one of the operands is killed. Add a |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 876 | // new implicit operand if required. |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 877 | if (!Found && AddIfNotFound) { |
Bill Wendling | 4a23d72 | 2008-03-03 22:14:33 +0000 | [diff] [blame] | 878 | addOperand(MachineOperand::CreateReg(IncomingReg, |
| 879 | false /*IsDef*/, |
| 880 | true /*IsImp*/, |
| 881 | true /*IsKill*/)); |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 882 | return true; |
| 883 | } |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 884 | return Found; |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 885 | } |
| 886 | |
| 887 | bool MachineInstr::addRegisterDead(unsigned IncomingReg, |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 888 | const TargetRegisterInfo *RegInfo, |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 889 | bool AddIfNotFound) { |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 890 | bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg); |
Evan Cheng | 01b2e23 | 2008-06-27 22:11:49 +0000 | [diff] [blame] | 891 | bool hasAliases = isPhysReg && RegInfo->getAliasSet(IncomingReg); |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 892 | bool Found = false; |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 893 | SmallVector<unsigned,4> DeadOps; |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 894 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 895 | MachineOperand &MO = getOperand(i); |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 896 | if (!MO.isRegister() || !MO.isDef()) |
| 897 | continue; |
| 898 | unsigned Reg = MO.getReg(); |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 899 | if (!Reg) |
| 900 | continue; |
| 901 | |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 902 | if (Reg == IncomingReg) { |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 903 | if (!Found) { |
| 904 | if (MO.isDead()) |
| 905 | // The register is already marked dead. |
| 906 | return true; |
| 907 | MO.setIsDead(); |
| 908 | Found = true; |
| 909 | } |
| 910 | } else if (hasAliases && MO.isDead() && |
| 911 | TargetRegisterInfo::isPhysicalRegister(Reg)) { |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 912 | // There exists a super-register that's marked dead. |
| 913 | if (RegInfo->isSuperRegister(IncomingReg, Reg)) |
Dan Gohman | 2ebc11a | 2008-07-03 01:18:51 +0000 | [diff] [blame] | 914 | return true; |
Owen Anderson | 22ae999 | 2008-08-14 18:34:18 +0000 | [diff] [blame] | 915 | if (RegInfo->getSubRegisters(IncomingReg) && |
| 916 | RegInfo->getSuperRegisters(Reg) && |
| 917 | RegInfo->isSubRegister(IncomingReg, Reg)) |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 918 | DeadOps.push_back(i); |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 919 | } |
| 920 | } |
| 921 | |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 922 | // Trim unneeded dead operands. |
| 923 | while (!DeadOps.empty()) { |
| 924 | unsigned OpIdx = DeadOps.back(); |
| 925 | if (getOperand(OpIdx).isImplicit()) |
| 926 | RemoveOperand(OpIdx); |
| 927 | else |
| 928 | getOperand(OpIdx).setIsDead(false); |
| 929 | DeadOps.pop_back(); |
| 930 | } |
| 931 | |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 932 | // If not found, this means an alias of one of the operands is dead. Add a |
| 933 | // new implicit operand if required. |
| 934 | if (!Found && AddIfNotFound) { |
| 935 | addOperand(MachineOperand::CreateReg(IncomingReg, |
| 936 | true /*IsDef*/, |
| 937 | true /*IsImp*/, |
| 938 | false /*IsKill*/, |
| 939 | true /*IsDead*/)); |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 940 | return true; |
| 941 | } |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 942 | return Found; |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 943 | } |