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