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" |
| 20 | #include "llvm/CodeGen/SelectionDAGNodes.h" |
Chris Lattner | 1049164 | 2002-10-30 00:48:05 +0000 | [diff] [blame] | 21 | #include "llvm/Target/TargetMachine.h" |
Evan Cheng | bb81d97 | 2008-01-31 09:59:15 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetInstrInfo.h" |
Chris Lattner | f14cf85 | 2008-01-07 07:42:25 +0000 | [diff] [blame] | 23 | #include "llvm/Target/TargetInstrDesc.h" |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 24 | #include "llvm/Target/TargetRegisterInfo.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 25 | #include "llvm/Support/LeakDetector.h" |
Bill Wendling | a09362e | 2006-11-28 22:48:48 +0000 | [diff] [blame] | 26 | #include "llvm/Support/Streams.h" |
Jeff Cohen | c21c5ee | 2006-12-15 22:57:14 +0000 | [diff] [blame] | 27 | #include <ostream> |
Chris Lattner | 0742b59 | 2004-02-23 18:38:20 +0000 | [diff] [blame] | 28 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 29 | |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 30 | //===----------------------------------------------------------------------===// |
| 31 | // MachineOperand Implementation |
| 32 | //===----------------------------------------------------------------------===// |
| 33 | |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 34 | /// AddRegOperandToRegInfo - Add this register operand to the specified |
| 35 | /// MachineRegisterInfo. If it is null, then the next/prev fields should be |
| 36 | /// explicitly nulled out. |
| 37 | void MachineOperand::AddRegOperandToRegInfo(MachineRegisterInfo *RegInfo) { |
| 38 | assert(isReg() && "Can only add reg operand to use lists"); |
| 39 | |
| 40 | // If the reginfo pointer is null, just explicitly null out or next/prev |
| 41 | // pointers, to ensure they are not garbage. |
| 42 | if (RegInfo == 0) { |
| 43 | Contents.Reg.Prev = 0; |
| 44 | Contents.Reg.Next = 0; |
| 45 | return; |
| 46 | } |
| 47 | |
| 48 | // 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] | 49 | MachineOperand **Head = &RegInfo->getRegUseDefListHead(getReg()); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 50 | |
Chris Lattner | 80fe531 | 2008-01-01 21:08:22 +0000 | [diff] [blame] | 51 | // For SSA values, we prefer to keep the definition at the start of the list. |
| 52 | // we do this by skipping over the definition if it is at the head of the |
| 53 | // list. |
| 54 | if (*Head && (*Head)->isDef()) |
| 55 | Head = &(*Head)->Contents.Reg.Next; |
| 56 | |
| 57 | Contents.Reg.Next = *Head; |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 58 | if (Contents.Reg.Next) { |
| 59 | assert(getReg() == Contents.Reg.Next->getReg() && |
| 60 | "Different regs on the same list!"); |
| 61 | Contents.Reg.Next->Contents.Reg.Prev = &Contents.Reg.Next; |
| 62 | } |
| 63 | |
Chris Lattner | 80fe531 | 2008-01-01 21:08:22 +0000 | [diff] [blame] | 64 | Contents.Reg.Prev = Head; |
| 65 | *Head = this; |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | void MachineOperand::setReg(unsigned Reg) { |
| 69 | if (getReg() == Reg) return; // No change. |
| 70 | |
| 71 | // Otherwise, we have to change the register. If this operand is embedded |
| 72 | // into a machine function, we need to update the old and new register's |
| 73 | // use/def lists. |
| 74 | if (MachineInstr *MI = getParent()) |
| 75 | if (MachineBasicBlock *MBB = MI->getParent()) |
| 76 | if (MachineFunction *MF = MBB->getParent()) { |
| 77 | RemoveRegOperandFromRegInfo(); |
| 78 | Contents.Reg.RegNo = Reg; |
| 79 | AddRegOperandToRegInfo(&MF->getRegInfo()); |
| 80 | return; |
| 81 | } |
| 82 | |
| 83 | // Otherwise, just change the register, no problem. :) |
| 84 | Contents.Reg.RegNo = Reg; |
| 85 | } |
| 86 | |
| 87 | /// ChangeToImmediate - Replace this operand with a new immediate operand of |
| 88 | /// the specified value. If an operand is known to be an immediate already, |
| 89 | /// the setImm method should be used. |
| 90 | void MachineOperand::ChangeToImmediate(int64_t ImmVal) { |
| 91 | // If this operand is currently a register operand, and if this is in a |
| 92 | // function, deregister the operand from the register's use/def list. |
| 93 | if (isReg() && getParent() && getParent()->getParent() && |
| 94 | getParent()->getParent()->getParent()) |
| 95 | RemoveRegOperandFromRegInfo(); |
| 96 | |
| 97 | OpKind = MO_Immediate; |
| 98 | Contents.ImmVal = ImmVal; |
| 99 | } |
| 100 | |
| 101 | /// ChangeToRegister - Replace this operand with a new register operand of |
| 102 | /// the specified value. If an operand is known to be an register already, |
| 103 | /// the setReg method should be used. |
| 104 | void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp, |
| 105 | bool isKill, bool isDead) { |
| 106 | // If this operand is already a register operand, use setReg to update the |
| 107 | // register's use/def lists. |
| 108 | if (isReg()) { |
| 109 | setReg(Reg); |
| 110 | } else { |
| 111 | // Otherwise, change this to a register and set the reg#. |
| 112 | OpKind = MO_Register; |
| 113 | Contents.Reg.RegNo = Reg; |
| 114 | |
| 115 | // If this operand is embedded in a function, add the operand to the |
| 116 | // register's use/def list. |
| 117 | if (MachineInstr *MI = getParent()) |
| 118 | if (MachineBasicBlock *MBB = MI->getParent()) |
| 119 | if (MachineFunction *MF = MBB->getParent()) |
| 120 | AddRegOperandToRegInfo(&MF->getRegInfo()); |
| 121 | } |
| 122 | |
| 123 | IsDef = isDef; |
| 124 | IsImp = isImp; |
| 125 | IsKill = isKill; |
| 126 | IsDead = isDead; |
| 127 | SubReg = 0; |
| 128 | } |
| 129 | |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 130 | /// isIdenticalTo - Return true if this operand is identical to the specified |
| 131 | /// operand. |
| 132 | bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const { |
| 133 | if (getType() != Other.getType()) return false; |
| 134 | |
| 135 | switch (getType()) { |
| 136 | default: assert(0 && "Unrecognized operand type"); |
| 137 | case MachineOperand::MO_Register: |
| 138 | return getReg() == Other.getReg() && isDef() == Other.isDef() && |
| 139 | getSubReg() == Other.getSubReg(); |
| 140 | case MachineOperand::MO_Immediate: |
| 141 | return getImm() == Other.getImm(); |
Nate Begeman | e8b7ccf | 2008-02-14 07:39:30 +0000 | [diff] [blame] | 142 | case MachineOperand::MO_FPImmediate: |
| 143 | return getFPImm() == Other.getFPImm(); |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 144 | case MachineOperand::MO_MachineBasicBlock: |
| 145 | return getMBB() == Other.getMBB(); |
| 146 | case MachineOperand::MO_FrameIndex: |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 147 | return getIndex() == Other.getIndex(); |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 148 | case MachineOperand::MO_ConstantPoolIndex: |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 149 | return getIndex() == Other.getIndex() && getOffset() == Other.getOffset(); |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 150 | case MachineOperand::MO_JumpTableIndex: |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 151 | return getIndex() == Other.getIndex(); |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 152 | case MachineOperand::MO_GlobalAddress: |
| 153 | return getGlobal() == Other.getGlobal() && getOffset() == Other.getOffset(); |
| 154 | case MachineOperand::MO_ExternalSymbol: |
| 155 | return !strcmp(getSymbolName(), Other.getSymbolName()) && |
| 156 | getOffset() == Other.getOffset(); |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | /// print - Print the specified machine operand. |
| 161 | /// |
| 162 | void MachineOperand::print(std::ostream &OS, const TargetMachine *TM) const { |
| 163 | switch (getType()) { |
| 164 | case MachineOperand::MO_Register: |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 165 | if (getReg() == 0 || TargetRegisterInfo::isVirtualRegister(getReg())) { |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 166 | OS << "%reg" << getReg(); |
| 167 | } else { |
| 168 | // 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] | 169 | // target info for the instruction. |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 170 | if (TM == 0) |
| 171 | if (const MachineInstr *MI = getParent()) |
| 172 | if (const MachineBasicBlock *MBB = MI->getParent()) |
| 173 | if (const MachineFunction *MF = MBB->getParent()) |
| 174 | TM = &MF->getTarget(); |
| 175 | |
| 176 | if (TM) |
Bill Wendling | e6d088a | 2008-02-26 21:47:57 +0000 | [diff] [blame^] | 177 | OS << "%" << TM->getRegisterInfo()->get(getReg()).Name; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 178 | else |
| 179 | OS << "%mreg" << getReg(); |
| 180 | } |
| 181 | |
| 182 | if (isDef() || isKill() || isDead() || isImplicit()) { |
| 183 | OS << "<"; |
| 184 | bool NeedComma = false; |
| 185 | if (isImplicit()) { |
| 186 | OS << (isDef() ? "imp-def" : "imp-use"); |
| 187 | NeedComma = true; |
| 188 | } else if (isDef()) { |
| 189 | OS << "def"; |
| 190 | NeedComma = true; |
| 191 | } |
| 192 | if (isKill() || isDead()) { |
Bill Wendling | 181eb73 | 2008-02-24 00:56:13 +0000 | [diff] [blame] | 193 | if (NeedComma) OS << ","; |
| 194 | if (isKill()) OS << "kill"; |
| 195 | if (isDead()) OS << "dead"; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 196 | } |
| 197 | OS << ">"; |
| 198 | } |
| 199 | break; |
| 200 | case MachineOperand::MO_Immediate: |
| 201 | OS << getImm(); |
| 202 | break; |
Nate Begeman | e8b7ccf | 2008-02-14 07:39:30 +0000 | [diff] [blame] | 203 | case MachineOperand::MO_FPImmediate: |
| 204 | if (getFPImm()->getType() == Type::FloatTy) { |
| 205 | OS << getFPImm()->getValueAPF().convertToFloat(); |
| 206 | } else { |
| 207 | OS << getFPImm()->getValueAPF().convertToDouble(); |
| 208 | } |
| 209 | break; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 210 | case MachineOperand::MO_MachineBasicBlock: |
| 211 | OS << "mbb<" |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 212 | << ((Value*)getMBB()->getBasicBlock())->getName() |
| 213 | << "," << (void*)getMBB() << ">"; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 214 | break; |
| 215 | case MachineOperand::MO_FrameIndex: |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 216 | OS << "<fi#" << getIndex() << ">"; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 217 | break; |
| 218 | case MachineOperand::MO_ConstantPoolIndex: |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 219 | OS << "<cp#" << getIndex(); |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 220 | if (getOffset()) OS << "+" << getOffset(); |
| 221 | OS << ">"; |
| 222 | break; |
| 223 | case MachineOperand::MO_JumpTableIndex: |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 224 | OS << "<jt#" << getIndex() << ">"; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 225 | break; |
| 226 | case MachineOperand::MO_GlobalAddress: |
| 227 | OS << "<ga:" << ((Value*)getGlobal())->getName(); |
| 228 | if (getOffset()) OS << "+" << getOffset(); |
| 229 | OS << ">"; |
| 230 | break; |
| 231 | case MachineOperand::MO_ExternalSymbol: |
| 232 | OS << "<es:" << getSymbolName(); |
| 233 | if (getOffset()) OS << "+" << getOffset(); |
| 234 | OS << ">"; |
| 235 | break; |
| 236 | default: |
| 237 | assert(0 && "Unrecognized operand type"); |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | //===----------------------------------------------------------------------===// |
| 242 | // MachineInstr Implementation |
| 243 | //===----------------------------------------------------------------------===// |
| 244 | |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 245 | /// MachineInstr ctor - This constructor creates a dummy MachineInstr with |
Evan Cheng | 67f660c | 2006-11-30 07:08:44 +0000 | [diff] [blame] | 246 | /// TID NULL and no operands. |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 247 | MachineInstr::MachineInstr() |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 248 | : TID(0), NumImplicitOps(0), Parent(0) { |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 249 | // Make sure that we get added to a machine basicblock |
| 250 | LeakDetector::addGarbageObject(this); |
Chris Lattner | 7279122 | 2002-10-28 20:59:49 +0000 | [diff] [blame] | 251 | } |
| 252 | |
Evan Cheng | 67f660c | 2006-11-30 07:08:44 +0000 | [diff] [blame] | 253 | void MachineInstr::addImplicitDefUseOperands() { |
| 254 | if (TID->ImplicitDefs) |
Chris Lattner | a4161ee | 2007-12-30 00:12:25 +0000 | [diff] [blame] | 255 | for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs) |
Chris Lattner | 8019f41 | 2007-12-30 00:41:17 +0000 | [diff] [blame] | 256 | addOperand(MachineOperand::CreateReg(*ImpDefs, true, true)); |
Evan Cheng | 67f660c | 2006-11-30 07:08:44 +0000 | [diff] [blame] | 257 | if (TID->ImplicitUses) |
Chris Lattner | a4161ee | 2007-12-30 00:12:25 +0000 | [diff] [blame] | 258 | for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses) |
Chris Lattner | 8019f41 | 2007-12-30 00:41:17 +0000 | [diff] [blame] | 259 | addOperand(MachineOperand::CreateReg(*ImpUses, false, true)); |
Evan Cheng | d7de496 | 2006-11-13 23:34:06 +0000 | [diff] [blame] | 260 | } |
| 261 | |
| 262 | /// MachineInstr ctor - This constructor create a MachineInstr and add the |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 263 | /// implicit operands. It reserves space for number of operands specified by |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 264 | /// TargetInstrDesc or the numOperands if it is not zero. (for |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 265 | /// instructions with variable number of operands). |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 266 | MachineInstr::MachineInstr(const TargetInstrDesc &tid, bool NoImp) |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 267 | : TID(&tid), NumImplicitOps(0), Parent(0) { |
Chris Lattner | 349c495 | 2008-01-07 03:13:06 +0000 | [diff] [blame] | 268 | if (!NoImp && TID->getImplicitDefs()) |
| 269 | for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs) |
Evan Cheng | d7de496 | 2006-11-13 23:34:06 +0000 | [diff] [blame] | 270 | NumImplicitOps++; |
Chris Lattner | 349c495 | 2008-01-07 03:13:06 +0000 | [diff] [blame] | 271 | if (!NoImp && TID->getImplicitUses()) |
| 272 | for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses) |
Evan Cheng | d7de496 | 2006-11-13 23:34:06 +0000 | [diff] [blame] | 273 | NumImplicitOps++; |
Chris Lattner | 349c495 | 2008-01-07 03:13:06 +0000 | [diff] [blame] | 274 | Operands.reserve(NumImplicitOps + TID->getNumOperands()); |
Evan Cheng | fa94572 | 2007-10-13 02:23:01 +0000 | [diff] [blame] | 275 | if (!NoImp) |
| 276 | addImplicitDefUseOperands(); |
Evan Cheng | d7de496 | 2006-11-13 23:34:06 +0000 | [diff] [blame] | 277 | // Make sure that we get added to a machine basicblock |
| 278 | LeakDetector::addGarbageObject(this); |
| 279 | } |
| 280 | |
Chris Lattner | ddd7fcb | 2002-10-29 23:19:00 +0000 | [diff] [blame] | 281 | /// MachineInstr ctor - Work exactly the same as the ctor above, except that the |
| 282 | /// MachineInstr is created and added to the end of the specified basic block. |
| 283 | /// |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 284 | MachineInstr::MachineInstr(MachineBasicBlock *MBB, |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 285 | const TargetInstrDesc &tid) |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 286 | : TID(&tid), NumImplicitOps(0), Parent(0) { |
Chris Lattner | ddd7fcb | 2002-10-29 23:19:00 +0000 | [diff] [blame] | 287 | assert(MBB && "Cannot use inserting ctor with null basic block!"); |
Evan Cheng | 67f660c | 2006-11-30 07:08:44 +0000 | [diff] [blame] | 288 | if (TID->ImplicitDefs) |
Chris Lattner | 349c495 | 2008-01-07 03:13:06 +0000 | [diff] [blame] | 289 | for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs) |
Evan Cheng | d7de496 | 2006-11-13 23:34:06 +0000 | [diff] [blame] | 290 | NumImplicitOps++; |
Evan Cheng | 67f660c | 2006-11-30 07:08:44 +0000 | [diff] [blame] | 291 | if (TID->ImplicitUses) |
Chris Lattner | 349c495 | 2008-01-07 03:13:06 +0000 | [diff] [blame] | 292 | for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses) |
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 | Operands.reserve(NumImplicitOps + TID->getNumOperands()); |
Evan Cheng | 67f660c | 2006-11-30 07:08:44 +0000 | [diff] [blame] | 295 | addImplicitDefUseOperands(); |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 296 | // Make sure that we get added to a machine basicblock |
| 297 | LeakDetector::addGarbageObject(this); |
Chris Lattner | ddd7fcb | 2002-10-29 23:19:00 +0000 | [diff] [blame] | 298 | MBB->push_back(this); // Add instruction to end of basic block! |
| 299 | } |
| 300 | |
Misha Brukman | ce22e76 | 2004-07-09 14:45:17 +0000 | [diff] [blame] | 301 | /// MachineInstr ctor - Copies MachineInstr arg exactly |
| 302 | /// |
Tanya Lattner | 466b534 | 2004-05-23 19:35:12 +0000 | [diff] [blame] | 303 | MachineInstr::MachineInstr(const MachineInstr &MI) { |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 304 | TID = &MI.getDesc(); |
Evan Cheng | 6b2c05f | 2006-11-15 20:54:29 +0000 | [diff] [blame] | 305 | NumImplicitOps = MI.NumImplicitOps; |
Chris Lattner | 943b5e1 | 2006-05-04 19:14:44 +0000 | [diff] [blame] | 306 | Operands.reserve(MI.getNumOperands()); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 307 | MemOperands = MI.MemOperands; |
Tanya Lattner | b5159ed | 2004-05-23 20:58:02 +0000 | [diff] [blame] | 308 | |
Misha Brukman | ce22e76 | 2004-07-09 14:45:17 +0000 | [diff] [blame] | 309 | // Add operands |
Chris Lattner | e12d6ab | 2007-12-30 06:11:04 +0000 | [diff] [blame] | 310 | for (unsigned i = 0; i != MI.getNumOperands(); ++i) { |
Chris Lattner | 943b5e1 | 2006-05-04 19:14:44 +0000 | [diff] [blame] | 311 | Operands.push_back(MI.getOperand(i)); |
Chris Lattner | e12d6ab | 2007-12-30 06:11:04 +0000 | [diff] [blame] | 312 | Operands.back().ParentMI = this; |
| 313 | } |
Tanya Lattner | 0c63e03 | 2004-05-24 03:14:18 +0000 | [diff] [blame] | 314 | |
Misha Brukman | ce22e76 | 2004-07-09 14:45:17 +0000 | [diff] [blame] | 315 | // Set parent, next, and prev to null |
Chris Lattner | f20c1a4 | 2007-12-31 04:56:33 +0000 | [diff] [blame] | 316 | Parent = 0; |
| 317 | Prev = 0; |
| 318 | Next = 0; |
Tanya Lattner | 466b534 | 2004-05-23 19:35:12 +0000 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | |
Misha Brukman | ce22e76 | 2004-07-09 14:45:17 +0000 | [diff] [blame] | 322 | MachineInstr::~MachineInstr() { |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 323 | LeakDetector::removeGarbageObject(this); |
Chris Lattner | e12d6ab | 2007-12-30 06:11:04 +0000 | [diff] [blame] | 324 | #ifndef NDEBUG |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 325 | for (unsigned i = 0, e = Operands.size(); i != e; ++i) { |
Chris Lattner | e12d6ab | 2007-12-30 06:11:04 +0000 | [diff] [blame] | 326 | assert(Operands[i].ParentMI == this && "ParentMI mismatch!"); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 327 | assert((!Operands[i].isReg() || !Operands[i].isOnRegUseList()) && |
| 328 | "Reg operand def/use list corrupted"); |
| 329 | } |
Chris Lattner | e12d6ab | 2007-12-30 06:11:04 +0000 | [diff] [blame] | 330 | #endif |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 331 | } |
| 332 | |
Evan Cheng | 67f660c | 2006-11-30 07:08:44 +0000 | [diff] [blame] | 333 | /// getOpcode - Returns the opcode of this MachineInstr. |
| 334 | /// |
Dan Gohman | cb648f9 | 2007-09-14 20:08:19 +0000 | [diff] [blame] | 335 | int MachineInstr::getOpcode() const { |
Evan Cheng | 67f660c | 2006-11-30 07:08:44 +0000 | [diff] [blame] | 336 | return TID->Opcode; |
| 337 | } |
| 338 | |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 339 | /// getRegInfo - If this instruction is embedded into a MachineFunction, |
| 340 | /// return the MachineRegisterInfo object for the current function, otherwise |
| 341 | /// return null. |
| 342 | MachineRegisterInfo *MachineInstr::getRegInfo() { |
| 343 | if (MachineBasicBlock *MBB = getParent()) |
| 344 | if (MachineFunction *MF = MBB->getParent()) |
| 345 | return &MF->getRegInfo(); |
| 346 | return 0; |
| 347 | } |
| 348 | |
| 349 | /// RemoveRegOperandsFromUseLists - Unlink all of the register operands in |
| 350 | /// this instruction from their respective use lists. This requires that the |
| 351 | /// operands already be on their use lists. |
| 352 | void MachineInstr::RemoveRegOperandsFromUseLists() { |
| 353 | for (unsigned i = 0, e = Operands.size(); i != e; ++i) { |
| 354 | if (Operands[i].isReg()) |
| 355 | Operands[i].RemoveRegOperandFromRegInfo(); |
| 356 | } |
| 357 | } |
| 358 | |
| 359 | /// AddRegOperandsToUseLists - Add all of the register operands in |
| 360 | /// this instruction from their respective use lists. This requires that the |
| 361 | /// operands not be on their use lists yet. |
| 362 | void MachineInstr::AddRegOperandsToUseLists(MachineRegisterInfo &RegInfo) { |
| 363 | for (unsigned i = 0, e = Operands.size(); i != e; ++i) { |
| 364 | if (Operands[i].isReg()) |
| 365 | Operands[i].AddRegOperandToRegInfo(&RegInfo); |
| 366 | } |
| 367 | } |
| 368 | |
| 369 | |
| 370 | /// addOperand - Add the specified operand to the instruction. If it is an |
| 371 | /// implicit operand, it is added to the end of the operand list. If it is |
| 372 | /// an explicit operand it is added at the end of the explicit operand list |
| 373 | /// (before the first implicit operand). |
| 374 | void MachineInstr::addOperand(const MachineOperand &Op) { |
| 375 | bool isImpReg = Op.isReg() && Op.isImplicit(); |
| 376 | assert((isImpReg || !OperandsComplete()) && |
| 377 | "Trying to add an operand to a machine instr that is already done!"); |
| 378 | |
| 379 | // If we are adding the operand to the end of the list, our job is simpler. |
| 380 | // This is true most of the time, so this is a reasonable optimization. |
| 381 | if (isImpReg || NumImplicitOps == 0) { |
| 382 | // We can only do this optimization if we know that the operand list won't |
| 383 | // reallocate. |
| 384 | if (Operands.empty() || Operands.size()+1 <= Operands.capacity()) { |
| 385 | Operands.push_back(Op); |
| 386 | |
| 387 | // Set the parent of the operand. |
| 388 | Operands.back().ParentMI = this; |
| 389 | |
| 390 | // If the operand is a register, update the operand's use list. |
| 391 | if (Op.isReg()) |
| 392 | Operands.back().AddRegOperandToRegInfo(getRegInfo()); |
| 393 | return; |
| 394 | } |
| 395 | } |
| 396 | |
| 397 | // Otherwise, we have to insert a real operand before any implicit ones. |
| 398 | unsigned OpNo = Operands.size()-NumImplicitOps; |
| 399 | |
| 400 | MachineRegisterInfo *RegInfo = getRegInfo(); |
| 401 | |
| 402 | // If this instruction isn't embedded into a function, then we don't need to |
| 403 | // update any operand lists. |
| 404 | if (RegInfo == 0) { |
| 405 | // Simple insertion, no reginfo update needed for other register operands. |
| 406 | Operands.insert(Operands.begin()+OpNo, Op); |
| 407 | Operands[OpNo].ParentMI = this; |
| 408 | |
| 409 | // Do explicitly set the reginfo for this operand though, to ensure the |
| 410 | // next/prev fields are properly nulled out. |
| 411 | if (Operands[OpNo].isReg()) |
| 412 | Operands[OpNo].AddRegOperandToRegInfo(0); |
| 413 | |
| 414 | } else if (Operands.size()+1 <= Operands.capacity()) { |
| 415 | // Otherwise, we have to remove register operands from their register use |
| 416 | // list, add the operand, then add the register operands back to their use |
| 417 | // list. This also must handle the case when the operand list reallocates |
| 418 | // to somewhere else. |
| 419 | |
| 420 | // If insertion of this operand won't cause reallocation of the operand |
| 421 | // list, just remove the implicit operands, add the operand, then re-add all |
| 422 | // the rest of the operands. |
| 423 | for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) { |
| 424 | assert(Operands[i].isReg() && "Should only be an implicit reg!"); |
| 425 | Operands[i].RemoveRegOperandFromRegInfo(); |
| 426 | } |
| 427 | |
| 428 | // Add the operand. If it is a register, add it to the reg list. |
| 429 | Operands.insert(Operands.begin()+OpNo, Op); |
| 430 | Operands[OpNo].ParentMI = this; |
| 431 | |
| 432 | if (Operands[OpNo].isReg()) |
| 433 | Operands[OpNo].AddRegOperandToRegInfo(RegInfo); |
| 434 | |
| 435 | // Re-add all the implicit ops. |
| 436 | for (unsigned i = OpNo+1, e = Operands.size(); i != e; ++i) { |
| 437 | assert(Operands[i].isReg() && "Should only be an implicit reg!"); |
| 438 | Operands[i].AddRegOperandToRegInfo(RegInfo); |
| 439 | } |
| 440 | } else { |
| 441 | // Otherwise, we will be reallocating the operand list. Remove all reg |
| 442 | // operands from their list, then readd them after the operand list is |
| 443 | // reallocated. |
| 444 | RemoveRegOperandsFromUseLists(); |
| 445 | |
| 446 | Operands.insert(Operands.begin()+OpNo, Op); |
| 447 | Operands[OpNo].ParentMI = this; |
| 448 | |
| 449 | // Re-add all the operands. |
| 450 | AddRegOperandsToUseLists(*RegInfo); |
| 451 | } |
| 452 | } |
| 453 | |
| 454 | /// RemoveOperand - Erase an operand from an instruction, leaving it with one |
| 455 | /// fewer operand than it started with. |
| 456 | /// |
| 457 | void MachineInstr::RemoveOperand(unsigned OpNo) { |
| 458 | assert(OpNo < Operands.size() && "Invalid operand number"); |
| 459 | |
| 460 | // Special case removing the last one. |
| 461 | if (OpNo == Operands.size()-1) { |
| 462 | // If needed, remove from the reg def/use list. |
| 463 | if (Operands.back().isReg() && Operands.back().isOnRegUseList()) |
| 464 | Operands.back().RemoveRegOperandFromRegInfo(); |
| 465 | |
| 466 | Operands.pop_back(); |
| 467 | return; |
| 468 | } |
| 469 | |
| 470 | // Otherwise, we are removing an interior operand. If we have reginfo to |
| 471 | // update, remove all operands that will be shifted down from their reg lists, |
| 472 | // move everything down, then re-add them. |
| 473 | MachineRegisterInfo *RegInfo = getRegInfo(); |
| 474 | if (RegInfo) { |
| 475 | for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) { |
| 476 | if (Operands[i].isReg()) |
| 477 | Operands[i].RemoveRegOperandFromRegInfo(); |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | Operands.erase(Operands.begin()+OpNo); |
| 482 | |
| 483 | if (RegInfo) { |
| 484 | for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) { |
| 485 | if (Operands[i].isReg()) |
| 486 | Operands[i].AddRegOperandToRegInfo(RegInfo); |
| 487 | } |
| 488 | } |
| 489 | } |
| 490 | |
| 491 | |
Chris Lattner | 48d7c06 | 2006-04-17 21:35:41 +0000 | [diff] [blame] | 492 | /// removeFromParent - This method unlinks 'this' from the containing basic |
| 493 | /// block, and returns it, but does not delete it. |
| 494 | MachineInstr *MachineInstr::removeFromParent() { |
| 495 | assert(getParent() && "Not embedded in a basic block!"); |
| 496 | getParent()->remove(this); |
| 497 | return this; |
| 498 | } |
| 499 | |
| 500 | |
Brian Gaeke | 21326fc | 2004-02-13 04:39:32 +0000 | [diff] [blame] | 501 | /// OperandComplete - Return true if it's illegal to add a new operand |
| 502 | /// |
Chris Lattner | 2a90ba6 | 2004-02-12 16:09:53 +0000 | [diff] [blame] | 503 | bool MachineInstr::OperandsComplete() const { |
Chris Lattner | 349c495 | 2008-01-07 03:13:06 +0000 | [diff] [blame] | 504 | unsigned short NumOperands = TID->getNumOperands(); |
Chris Lattner | 8f707e1 | 2008-01-07 05:19:29 +0000 | [diff] [blame] | 505 | if (!TID->isVariadic() && getNumOperands()-NumImplicitOps >= NumOperands) |
Vikram S. Adve | 3497782 | 2003-05-31 07:39:06 +0000 | [diff] [blame] | 506 | return true; // Broken: we have all the operands of this instruction! |
Chris Lattner | 413746e | 2002-10-28 20:48:39 +0000 | [diff] [blame] | 507 | return false; |
| 508 | } |
| 509 | |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 510 | /// getNumExplicitOperands - Returns the number of non-implicit operands. |
| 511 | /// |
| 512 | unsigned MachineInstr::getNumExplicitOperands() const { |
Chris Lattner | 349c495 | 2008-01-07 03:13:06 +0000 | [diff] [blame] | 513 | unsigned NumOperands = TID->getNumOperands(); |
Chris Lattner | 8f707e1 | 2008-01-07 05:19:29 +0000 | [diff] [blame] | 514 | if (!TID->isVariadic()) |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 515 | return NumOperands; |
| 516 | |
| 517 | for (unsigned e = getNumOperands(); NumOperands != e; ++NumOperands) { |
| 518 | const MachineOperand &MO = getOperand(NumOperands); |
| 519 | if (!MO.isRegister() || !MO.isImplicit()) |
| 520 | NumOperands++; |
| 521 | } |
| 522 | return NumOperands; |
| 523 | } |
| 524 | |
Chris Lattner | 8ace2cd | 2006-10-20 22:39:59 +0000 | [diff] [blame] | 525 | |
Evan Cheng | bb81d97 | 2008-01-31 09:59:15 +0000 | [diff] [blame] | 526 | /// isDebugLabel - Returns true if the MachineInstr represents a debug label. |
| 527 | /// |
| 528 | bool MachineInstr::isDebugLabel() const { |
| 529 | return getOpcode() == TargetInstrInfo::LABEL && getOperand(1).getImm() == 0; |
| 530 | } |
| 531 | |
Evan Cheng | faa5107 | 2007-04-26 19:00:32 +0000 | [diff] [blame] | 532 | /// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of |
Evan Cheng | 32eb1f1 | 2007-03-26 22:37:45 +0000 | [diff] [blame] | 533 | /// 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] | 534 | /// the search criteria to a use that kills the register if isKill is true. |
Evan Cheng | f277ee4 | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 535 | int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill) const { |
Evan Cheng | 576d123 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 536 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
Evan Cheng | f277ee4 | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 537 | const MachineOperand &MO = getOperand(i); |
Dan Gohman | 92dfe20 | 2007-09-14 20:33:02 +0000 | [diff] [blame] | 538 | if (MO.isRegister() && MO.isUse() && MO.getReg() == Reg) |
Evan Cheng | 76d7e76 | 2007-02-23 01:04:26 +0000 | [diff] [blame] | 539 | if (!isKill || MO.isKill()) |
Evan Cheng | 32eb1f1 | 2007-03-26 22:37:45 +0000 | [diff] [blame] | 540 | return i; |
Evan Cheng | 576d123 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 541 | } |
Evan Cheng | 32eb1f1 | 2007-03-26 22:37:45 +0000 | [diff] [blame] | 542 | return -1; |
Evan Cheng | 576d123 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 543 | } |
| 544 | |
Evan Cheng | b371f45 | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 545 | /// findRegisterDefOperand() - Returns the MachineOperand that is a def of |
| 546 | /// the specific register or NULL if it is not found. |
| 547 | MachineOperand *MachineInstr::findRegisterDefOperand(unsigned Reg) { |
| 548 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 549 | MachineOperand &MO = getOperand(i); |
Dan Gohman | 92dfe20 | 2007-09-14 20:33:02 +0000 | [diff] [blame] | 550 | if (MO.isRegister() && MO.isDef() && MO.getReg() == Reg) |
Evan Cheng | b371f45 | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 551 | return &MO; |
| 552 | } |
| 553 | return NULL; |
| 554 | } |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 555 | |
Evan Cheng | f277ee4 | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 556 | /// findFirstPredOperandIdx() - Find the index of the first operand in the |
| 557 | /// operand list that is used to represent the predicate. It returns -1 if |
| 558 | /// none is found. |
| 559 | int MachineInstr::findFirstPredOperandIdx() const { |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 560 | const TargetInstrDesc &TID = getDesc(); |
| 561 | if (TID.isPredicable()) { |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 562 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 563 | if (TID.OpInfo[i].isPredicate()) |
Evan Cheng | f277ee4 | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 564 | return i; |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 565 | } |
| 566 | |
Evan Cheng | f277ee4 | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 567 | return -1; |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 568 | } |
Evan Cheng | b371f45 | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 569 | |
Evan Cheng | 32dfbea | 2007-10-12 08:50:34 +0000 | [diff] [blame] | 570 | /// isRegReDefinedByTwoAddr - Returns true if the Reg re-definition is due |
| 571 | /// to two addr elimination. |
| 572 | bool MachineInstr::isRegReDefinedByTwoAddr(unsigned Reg) const { |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 573 | const TargetInstrDesc &TID = getDesc(); |
Evan Cheng | 32dfbea | 2007-10-12 08:50:34 +0000 | [diff] [blame] | 574 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 575 | const MachineOperand &MO1 = getOperand(i); |
| 576 | if (MO1.isRegister() && MO1.isDef() && MO1.getReg() == Reg) { |
| 577 | for (unsigned j = i+1; j < e; ++j) { |
| 578 | const MachineOperand &MO2 = getOperand(j); |
| 579 | if (MO2.isRegister() && MO2.isUse() && MO2.getReg() == Reg && |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 580 | TID.getOperandConstraint(j, TOI::TIED_TO) == (int)i) |
Evan Cheng | 32dfbea | 2007-10-12 08:50:34 +0000 | [diff] [blame] | 581 | return true; |
| 582 | } |
| 583 | } |
| 584 | } |
| 585 | return false; |
| 586 | } |
| 587 | |
Evan Cheng | 576d123 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 588 | /// copyKillDeadInfo - Copies kill / dead operand properties from MI. |
| 589 | /// |
| 590 | void MachineInstr::copyKillDeadInfo(const MachineInstr *MI) { |
| 591 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 592 | const MachineOperand &MO = MI->getOperand(i); |
Dan Gohman | 92dfe20 | 2007-09-14 20:33:02 +0000 | [diff] [blame] | 593 | if (!MO.isRegister() || (!MO.isKill() && !MO.isDead())) |
Evan Cheng | 576d123 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 594 | continue; |
| 595 | for (unsigned j = 0, ee = getNumOperands(); j != ee; ++j) { |
| 596 | MachineOperand &MOp = getOperand(j); |
| 597 | if (!MOp.isIdenticalTo(MO)) |
| 598 | continue; |
| 599 | if (MO.isKill()) |
| 600 | MOp.setIsKill(); |
| 601 | else |
| 602 | MOp.setIsDead(); |
| 603 | break; |
| 604 | } |
| 605 | } |
| 606 | } |
| 607 | |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 608 | /// copyPredicates - Copies predicate operand(s) from MI. |
| 609 | void MachineInstr::copyPredicates(const MachineInstr *MI) { |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 610 | const TargetInstrDesc &TID = MI->getDesc(); |
| 611 | if (TID.isPredicable()) { |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 612 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 613 | if (TID.OpInfo[i].isPredicate()) { |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 614 | // Predicated operands must be last operands. |
Chris Lattner | 8019f41 | 2007-12-30 00:41:17 +0000 | [diff] [blame] | 615 | addOperand(MI->getOperand(i)); |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 616 | } |
| 617 | } |
| 618 | } |
| 619 | } |
| 620 | |
Brian Gaeke | 21326fc | 2004-02-13 04:39:32 +0000 | [diff] [blame] | 621 | void MachineInstr::dump() const { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 622 | cerr << " " << *this; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 623 | } |
| 624 | |
Tanya Lattner | b140762 | 2004-06-25 00:13:11 +0000 | [diff] [blame] | 625 | void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const { |
Chris Lattner | e308789 | 2007-12-30 21:31:53 +0000 | [diff] [blame] | 626 | // Specialize printing if op#0 is definition |
Chris Lattner | 6a59227 | 2002-10-30 01:55:38 +0000 | [diff] [blame] | 627 | unsigned StartOp = 0; |
Dan Gohman | 92dfe20 | 2007-09-14 20:33:02 +0000 | [diff] [blame] | 628 | if (getNumOperands() && getOperand(0).isRegister() && getOperand(0).isDef()) { |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 629 | getOperand(0).print(OS, TM); |
Chris Lattner | 6a59227 | 2002-10-30 01:55:38 +0000 | [diff] [blame] | 630 | OS << " = "; |
| 631 | ++StartOp; // Don't print this operand again! |
| 632 | } |
Tanya Lattner | b140762 | 2004-06-25 00:13:11 +0000 | [diff] [blame] | 633 | |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 634 | OS << getDesc().getName(); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 635 | |
Chris Lattner | 6a59227 | 2002-10-30 01:55:38 +0000 | [diff] [blame] | 636 | for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) { |
| 637 | if (i != StartOp) |
| 638 | OS << ","; |
| 639 | OS << " "; |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 640 | getOperand(i).print(OS, TM); |
Chris Lattner | 1049164 | 2002-10-30 00:48:05 +0000 | [diff] [blame] | 641 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 642 | |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 643 | if (getNumMemOperands() > 0) { |
Dan Gohman | 2bfe6ff | 2008-02-07 16:18:00 +0000 | [diff] [blame] | 644 | OS << ", Mem:"; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 645 | for (unsigned i = 0; i < getNumMemOperands(); i++) { |
| 646 | const MemOperand &MRO = getMemOperand(i); |
| 647 | const Value *V = MRO.getValue(); |
| 648 | |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 649 | assert((MRO.isLoad() || MRO.isStore()) && |
| 650 | "SV has to be a load, store or both."); |
| 651 | |
| 652 | if (MRO.isVolatile()) |
| 653 | OS << "Volatile "; |
Dan Gohman | 2bfe6ff | 2008-02-07 16:18:00 +0000 | [diff] [blame] | 654 | |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 655 | if (MRO.isLoad()) |
Dan Gohman | 2bfe6ff | 2008-02-07 16:18:00 +0000 | [diff] [blame] | 656 | OS << "LD"; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 657 | if (MRO.isStore()) |
Dan Gohman | 2bfe6ff | 2008-02-07 16:18:00 +0000 | [diff] [blame] | 658 | OS << "ST"; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 659 | |
Evan Cheng | bbd8322 | 2008-02-08 22:05:07 +0000 | [diff] [blame] | 660 | OS << "(" << MRO.getSize() << "," << MRO.getAlignment() << ") ["; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 661 | |
Dan Gohman | 2bfe6ff | 2008-02-07 16:18:00 +0000 | [diff] [blame] | 662 | if (!V) |
| 663 | OS << "<unknown>"; |
| 664 | else if (!V->getName().empty()) |
| 665 | OS << V->getName(); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 666 | else if (isa<PseudoSourceValue>(V)) |
Dan Gohman | 2bfe6ff | 2008-02-07 16:18:00 +0000 | [diff] [blame] | 667 | OS << *V; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 668 | else |
Dan Gohman | 2bfe6ff | 2008-02-07 16:18:00 +0000 | [diff] [blame] | 669 | OS << V; |
| 670 | |
| 671 | OS << " + " << MRO.getOffset() << "]"; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 672 | } |
| 673 | } |
| 674 | |
Chris Lattner | 1049164 | 2002-10-30 00:48:05 +0000 | [diff] [blame] | 675 | OS << "\n"; |
| 676 | } |
| 677 | |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 678 | bool MachineInstr::addRegisterKilled(unsigned IncomingReg, |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 679 | const TargetRegisterInfo *RegInfo, |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 680 | bool AddIfNotFound) { |
| 681 | bool Found = false; |
| 682 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 683 | MachineOperand &MO = getOperand(i); |
| 684 | if (MO.isRegister() && MO.isUse()) { |
| 685 | unsigned Reg = MO.getReg(); |
| 686 | if (!Reg) |
| 687 | continue; |
| 688 | if (Reg == IncomingReg) { |
| 689 | MO.setIsKill(); |
| 690 | Found = true; |
| 691 | break; |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 692 | } else if (TargetRegisterInfo::isPhysicalRegister(Reg) && |
| 693 | TargetRegisterInfo::isPhysicalRegister(IncomingReg) && |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 694 | RegInfo->isSuperRegister(IncomingReg, Reg) && |
| 695 | MO.isKill()) |
| 696 | // A super-register kill already exists. |
| 697 | Found = true; |
| 698 | } |
| 699 | } |
| 700 | |
| 701 | // If not found, this means an alias of one of the operand is killed. Add a |
| 702 | // new implicit operand if required. |
| 703 | if (!Found && AddIfNotFound) { |
| 704 | addOperand(MachineOperand::CreateReg(IncomingReg, false/*IsDef*/, |
| 705 | true/*IsImp*/,true/*IsKill*/)); |
| 706 | return true; |
| 707 | } |
| 708 | return Found; |
| 709 | } |
| 710 | |
| 711 | bool MachineInstr::addRegisterDead(unsigned IncomingReg, |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 712 | const TargetRegisterInfo *RegInfo, |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 713 | bool AddIfNotFound) { |
| 714 | bool Found = false; |
| 715 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 716 | MachineOperand &MO = getOperand(i); |
| 717 | if (MO.isRegister() && MO.isDef()) { |
| 718 | unsigned Reg = MO.getReg(); |
| 719 | if (!Reg) |
| 720 | continue; |
| 721 | if (Reg == IncomingReg) { |
| 722 | MO.setIsDead(); |
| 723 | Found = true; |
| 724 | break; |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 725 | } else if (TargetRegisterInfo::isPhysicalRegister(Reg) && |
| 726 | TargetRegisterInfo::isPhysicalRegister(IncomingReg) && |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 727 | RegInfo->isSuperRegister(IncomingReg, Reg) && |
| 728 | MO.isDead()) |
| 729 | // There exists a super-register that's marked dead. |
| 730 | return true; |
| 731 | } |
| 732 | } |
| 733 | |
| 734 | // If not found, this means an alias of one of the operand is dead. Add a |
| 735 | // new implicit operand. |
| 736 | if (!Found && AddIfNotFound) { |
| 737 | addOperand(MachineOperand::CreateReg(IncomingReg, true/*IsDef*/, |
| 738 | true/*IsImp*/,false/*IsKill*/, |
| 739 | true/*IsDead*/)); |
| 740 | return true; |
| 741 | } |
| 742 | return Found; |
| 743 | } |
| 744 | |
| 745 | /// copyKillDeadInfo - copies killed/dead information from one instr to another |
| 746 | void MachineInstr::copyKillDeadInfo(MachineInstr *OldMI, |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 747 | const TargetRegisterInfo *RegInfo) { |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 748 | // If the instruction defines any virtual registers, update the VarInfo, |
| 749 | // kill and dead information for the instruction. |
| 750 | for (unsigned i = 0, e = OldMI->getNumOperands(); i != e; ++i) { |
| 751 | MachineOperand &MO = OldMI->getOperand(i); |
| 752 | if (MO.isRegister() && MO.getReg() && |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 753 | TargetRegisterInfo::isVirtualRegister(MO.getReg())) { |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 754 | unsigned Reg = MO.getReg(); |
| 755 | if (MO.isDef()) { |
| 756 | if (MO.isDead()) { |
| 757 | MO.setIsDead(false); |
| 758 | addRegisterDead(Reg, RegInfo); |
| 759 | } |
| 760 | } |
| 761 | if (MO.isKill()) { |
| 762 | MO.setIsKill(false); |
| 763 | addRegisterKilled(Reg, RegInfo); |
| 764 | } |
| 765 | } |
| 766 | } |
| 767 | } |