blob: c97750847f2641c7efd99e5f3c2c72c01493ac56 [file] [log] [blame]
Chris Lattnere138b3d2008-01-01 20:36:19 +00001//===-- lib/CodeGen/MachineInstr.cpp --------------------------------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Brian Gaeke21326fc2004-02-13 04:39:32 +00009//
10// Methods common to all machine instructions.
11//
Chris Lattner035dfbe2002-08-09 20:08:06 +000012//===----------------------------------------------------------------------===//
Vikram S. Adve70bc4b52001-07-21 12:41:50 +000013
Chris Lattner822b4fb2001-09-07 17:18:30 +000014#include "llvm/CodeGen/MachineInstr.h"
Evan Chengfb112882009-03-23 08:01:15 +000015#include "llvm/Constants.h"
16#include "llvm/InlineAsm.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000017#include "llvm/Value.h"
Chris Lattner8517e1f2004-02-19 16:17:08 +000018#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner62ed6b92008-01-01 01:12:31 +000019#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000020#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner10491642002-10-30 00:48:05 +000021#include "llvm/Target/TargetMachine.h"
Evan Chengbb81d972008-01-31 09:59:15 +000022#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnerf14cf852008-01-07 07:42:25 +000023#include "llvm/Target/TargetInstrDesc.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000024#include "llvm/Target/TargetRegisterInfo.h"
Argyrios Kyrtzidisa26eae62009-04-30 23:22:31 +000025#include "llvm/Analysis/DebugInfo.h"
Dan Gohman2c3f7ae2008-07-17 23:49:46 +000026#include "llvm/Support/LeakDetector.h"
Dan Gohmance42e402008-07-07 20:32:02 +000027#include "llvm/Support/MathExtras.h"
Bill Wendlinga09362e2006-11-28 22:48:48 +000028#include "llvm/Support/Streams.h"
Chris Lattneredfb72c2008-08-24 20:37:32 +000029#include "llvm/Support/raw_ostream.h"
Dan Gohmanb8d2f552008-08-20 15:58:01 +000030#include "llvm/ADT/FoldingSet.h"
Chris Lattner0742b592004-02-23 18:38:20 +000031using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000032
Chris Lattnerf7382302007-12-30 21:56:09 +000033//===----------------------------------------------------------------------===//
34// MachineOperand Implementation
35//===----------------------------------------------------------------------===//
36
Chris Lattner62ed6b92008-01-01 01:12:31 +000037/// AddRegOperandToRegInfo - Add this register operand to the specified
38/// MachineRegisterInfo. If it is null, then the next/prev fields should be
39/// explicitly nulled out.
40void MachineOperand::AddRegOperandToRegInfo(MachineRegisterInfo *RegInfo) {
Dan Gohmand735b802008-10-03 15:45:36 +000041 assert(isReg() && "Can only add reg operand to use lists");
Chris Lattner62ed6b92008-01-01 01:12:31 +000042
43 // If the reginfo pointer is null, just explicitly null out or next/prev
44 // pointers, to ensure they are not garbage.
45 if (RegInfo == 0) {
46 Contents.Reg.Prev = 0;
47 Contents.Reg.Next = 0;
48 return;
49 }
50
51 // Otherwise, add this operand to the head of the registers use/def list.
Chris Lattner80fe5312008-01-01 21:08:22 +000052 MachineOperand **Head = &RegInfo->getRegUseDefListHead(getReg());
Chris Lattner62ed6b92008-01-01 01:12:31 +000053
Chris Lattner80fe5312008-01-01 21:08:22 +000054 // For SSA values, we prefer to keep the definition at the start of the list.
55 // we do this by skipping over the definition if it is at the head of the
56 // list.
57 if (*Head && (*Head)->isDef())
58 Head = &(*Head)->Contents.Reg.Next;
59
60 Contents.Reg.Next = *Head;
Chris Lattner62ed6b92008-01-01 01:12:31 +000061 if (Contents.Reg.Next) {
62 assert(getReg() == Contents.Reg.Next->getReg() &&
63 "Different regs on the same list!");
64 Contents.Reg.Next->Contents.Reg.Prev = &Contents.Reg.Next;
65 }
66
Chris Lattner80fe5312008-01-01 21:08:22 +000067 Contents.Reg.Prev = Head;
68 *Head = this;
Chris Lattner62ed6b92008-01-01 01:12:31 +000069}
70
Dan Gohman3bc1a372009-04-15 01:17:37 +000071/// RemoveRegOperandFromRegInfo - Remove this register operand from the
72/// MachineRegisterInfo it is linked with.
73void MachineOperand::RemoveRegOperandFromRegInfo() {
74 assert(isOnRegUseList() && "Reg operand is not on a use list");
75 // Unlink this from the doubly linked list of operands.
76 MachineOperand *NextOp = Contents.Reg.Next;
77 *Contents.Reg.Prev = NextOp;
78 if (NextOp) {
79 assert(NextOp->getReg() == getReg() && "Corrupt reg use/def chain!");
80 NextOp->Contents.Reg.Prev = Contents.Reg.Prev;
81 }
82 Contents.Reg.Prev = 0;
83 Contents.Reg.Next = 0;
84}
85
Chris Lattner62ed6b92008-01-01 01:12:31 +000086void MachineOperand::setReg(unsigned Reg) {
87 if (getReg() == Reg) return; // No change.
88
89 // Otherwise, we have to change the register. If this operand is embedded
90 // into a machine function, we need to update the old and new register's
91 // use/def lists.
92 if (MachineInstr *MI = getParent())
93 if (MachineBasicBlock *MBB = MI->getParent())
94 if (MachineFunction *MF = MBB->getParent()) {
95 RemoveRegOperandFromRegInfo();
96 Contents.Reg.RegNo = Reg;
97 AddRegOperandToRegInfo(&MF->getRegInfo());
98 return;
99 }
100
101 // Otherwise, just change the register, no problem. :)
102 Contents.Reg.RegNo = Reg;
103}
104
105/// ChangeToImmediate - Replace this operand with a new immediate operand of
106/// the specified value. If an operand is known to be an immediate already,
107/// the setImm method should be used.
108void MachineOperand::ChangeToImmediate(int64_t ImmVal) {
109 // If this operand is currently a register operand, and if this is in a
110 // function, deregister the operand from the register's use/def list.
Dan Gohmand735b802008-10-03 15:45:36 +0000111 if (isReg() && getParent() && getParent()->getParent() &&
Chris Lattner62ed6b92008-01-01 01:12:31 +0000112 getParent()->getParent()->getParent())
113 RemoveRegOperandFromRegInfo();
114
115 OpKind = MO_Immediate;
116 Contents.ImmVal = ImmVal;
117}
118
119/// ChangeToRegister - Replace this operand with a new register operand of
120/// the specified value. If an operand is known to be an register already,
121/// the setReg method should be used.
122void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp,
Dale Johannesene0091802008-09-14 01:44:36 +0000123 bool isKill, bool isDead) {
Chris Lattner62ed6b92008-01-01 01:12:31 +0000124 // If this operand is already a register operand, use setReg to update the
125 // register's use/def lists.
Dan Gohmand735b802008-10-03 15:45:36 +0000126 if (isReg()) {
Dale Johannesene0091802008-09-14 01:44:36 +0000127 assert(!isEarlyClobber());
Chris Lattner62ed6b92008-01-01 01:12:31 +0000128 setReg(Reg);
129 } else {
130 // Otherwise, change this to a register and set the reg#.
131 OpKind = MO_Register;
132 Contents.Reg.RegNo = Reg;
133
134 // If this operand is embedded in a function, add the operand to the
135 // register's use/def list.
136 if (MachineInstr *MI = getParent())
137 if (MachineBasicBlock *MBB = MI->getParent())
138 if (MachineFunction *MF = MBB->getParent())
139 AddRegOperandToRegInfo(&MF->getRegInfo());
140 }
141
142 IsDef = isDef;
143 IsImp = isImp;
144 IsKill = isKill;
145 IsDead = isDead;
Dale Johannesene0091802008-09-14 01:44:36 +0000146 IsEarlyClobber = false;
Chris Lattner62ed6b92008-01-01 01:12:31 +0000147 SubReg = 0;
148}
149
Chris Lattnerf7382302007-12-30 21:56:09 +0000150/// isIdenticalTo - Return true if this operand is identical to the specified
151/// operand.
152bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const {
Chris Lattner31530612009-06-24 17:54:48 +0000153 if (getType() != Other.getType() ||
154 getTargetFlags() != Other.getTargetFlags())
155 return false;
Chris Lattnerf7382302007-12-30 21:56:09 +0000156
157 switch (getType()) {
158 default: assert(0 && "Unrecognized operand type");
159 case MachineOperand::MO_Register:
160 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
161 getSubReg() == Other.getSubReg();
162 case MachineOperand::MO_Immediate:
163 return getImm() == Other.getImm();
Nate Begemane8b7ccf2008-02-14 07:39:30 +0000164 case MachineOperand::MO_FPImmediate:
165 return getFPImm() == Other.getFPImm();
Chris Lattnerf7382302007-12-30 21:56:09 +0000166 case MachineOperand::MO_MachineBasicBlock:
167 return getMBB() == Other.getMBB();
168 case MachineOperand::MO_FrameIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000169 return getIndex() == Other.getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +0000170 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000171 return getIndex() == Other.getIndex() && getOffset() == Other.getOffset();
Chris Lattnerf7382302007-12-30 21:56:09 +0000172 case MachineOperand::MO_JumpTableIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000173 return getIndex() == Other.getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +0000174 case MachineOperand::MO_GlobalAddress:
175 return getGlobal() == Other.getGlobal() && getOffset() == Other.getOffset();
176 case MachineOperand::MO_ExternalSymbol:
177 return !strcmp(getSymbolName(), Other.getSymbolName()) &&
178 getOffset() == Other.getOffset();
179 }
180}
181
182/// print - Print the specified machine operand.
183///
184void MachineOperand::print(std::ostream &OS, const TargetMachine *TM) const {
Mon P Wang5ca6bd12008-10-10 01:43:55 +0000185 raw_os_ostream RawOS(OS);
186 print(RawOS, TM);
187}
188
189void MachineOperand::print(raw_ostream &OS, const TargetMachine *TM) const {
Chris Lattnerf7382302007-12-30 21:56:09 +0000190 switch (getType()) {
191 case MachineOperand::MO_Register:
Dan Gohman6f0d0242008-02-10 18:45:23 +0000192 if (getReg() == 0 || TargetRegisterInfo::isVirtualRegister(getReg())) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000193 OS << "%reg" << getReg();
194 } else {
195 // If the instruction is embedded into a basic block, we can find the
Chris Lattner62ed6b92008-01-01 01:12:31 +0000196 // target info for the instruction.
Chris Lattnerf7382302007-12-30 21:56:09 +0000197 if (TM == 0)
198 if (const MachineInstr *MI = getParent())
199 if (const MachineBasicBlock *MBB = MI->getParent())
200 if (const MachineFunction *MF = MBB->getParent())
201 TM = &MF->getTarget();
202
203 if (TM)
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000204 OS << "%" << TM->getRegisterInfo()->get(getReg()).Name;
Chris Lattnerf7382302007-12-30 21:56:09 +0000205 else
206 OS << "%mreg" << getReg();
207 }
Dan Gohman2ccc8392008-12-18 21:51:27 +0000208
209 if (getSubReg() != 0) {
Chris Lattner31530612009-06-24 17:54:48 +0000210 OS << ':' << getSubReg();
Dan Gohman2ccc8392008-12-18 21:51:27 +0000211 }
212
Dale Johannesen86b49f82008-09-24 01:07:17 +0000213 if (isDef() || isKill() || isDead() || isImplicit() || isEarlyClobber()) {
Chris Lattner31530612009-06-24 17:54:48 +0000214 OS << '<';
Chris Lattnerf7382302007-12-30 21:56:09 +0000215 bool NeedComma = false;
216 if (isImplicit()) {
Chris Lattner31530612009-06-24 17:54:48 +0000217 if (NeedComma) OS << ',';
Chris Lattnerf7382302007-12-30 21:56:09 +0000218 OS << (isDef() ? "imp-def" : "imp-use");
219 NeedComma = true;
220 } else if (isDef()) {
Chris Lattner31530612009-06-24 17:54:48 +0000221 if (NeedComma) OS << ',';
Dale Johannesen913d3df2008-09-12 17:49:03 +0000222 if (isEarlyClobber())
223 OS << "earlyclobber,";
Chris Lattnerf7382302007-12-30 21:56:09 +0000224 OS << "def";
225 NeedComma = true;
226 }
227 if (isKill() || isDead()) {
Chris Lattner31530612009-06-24 17:54:48 +0000228 if (NeedComma) OS << ',';
Bill Wendling181eb732008-02-24 00:56:13 +0000229 if (isKill()) OS << "kill";
230 if (isDead()) OS << "dead";
Chris Lattnerf7382302007-12-30 21:56:09 +0000231 }
Chris Lattner31530612009-06-24 17:54:48 +0000232 OS << '>';
Chris Lattnerf7382302007-12-30 21:56:09 +0000233 }
234 break;
235 case MachineOperand::MO_Immediate:
236 OS << getImm();
237 break;
Nate Begemane8b7ccf2008-02-14 07:39:30 +0000238 case MachineOperand::MO_FPImmediate:
Chris Lattner31530612009-06-24 17:54:48 +0000239 if (getFPImm()->getType() == Type::FloatTy)
Nate Begemane8b7ccf2008-02-14 07:39:30 +0000240 OS << getFPImm()->getValueAPF().convertToFloat();
Chris Lattner31530612009-06-24 17:54:48 +0000241 else
Nate Begemane8b7ccf2008-02-14 07:39:30 +0000242 OS << getFPImm()->getValueAPF().convertToDouble();
Nate Begemane8b7ccf2008-02-14 07:39:30 +0000243 break;
Chris Lattnerf7382302007-12-30 21:56:09 +0000244 case MachineOperand::MO_MachineBasicBlock:
245 OS << "mbb<"
Chris Lattner8aa797a2007-12-30 23:10:15 +0000246 << ((Value*)getMBB()->getBasicBlock())->getName()
Chris Lattner31530612009-06-24 17:54:48 +0000247 << "," << (void*)getMBB() << '>';
Chris Lattnerf7382302007-12-30 21:56:09 +0000248 break;
249 case MachineOperand::MO_FrameIndex:
Chris Lattner31530612009-06-24 17:54:48 +0000250 OS << "<fi#" << getIndex() << '>';
Chris Lattnerf7382302007-12-30 21:56:09 +0000251 break;
252 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000253 OS << "<cp#" << getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +0000254 if (getOffset()) OS << "+" << getOffset();
Chris Lattner31530612009-06-24 17:54:48 +0000255 OS << '>';
Chris Lattnerf7382302007-12-30 21:56:09 +0000256 break;
257 case MachineOperand::MO_JumpTableIndex:
Chris Lattner31530612009-06-24 17:54:48 +0000258 OS << "<jt#" << getIndex() << '>';
Chris Lattnerf7382302007-12-30 21:56:09 +0000259 break;
260 case MachineOperand::MO_GlobalAddress:
261 OS << "<ga:" << ((Value*)getGlobal())->getName();
262 if (getOffset()) OS << "+" << getOffset();
Chris Lattner31530612009-06-24 17:54:48 +0000263 OS << '>';
Chris Lattnerf7382302007-12-30 21:56:09 +0000264 break;
265 case MachineOperand::MO_ExternalSymbol:
266 OS << "<es:" << getSymbolName();
267 if (getOffset()) OS << "+" << getOffset();
Chris Lattner31530612009-06-24 17:54:48 +0000268 OS << '>';
Chris Lattnerf7382302007-12-30 21:56:09 +0000269 break;
270 default:
271 assert(0 && "Unrecognized operand type");
272 }
Chris Lattner31530612009-06-24 17:54:48 +0000273
274 if (unsigned TF = getTargetFlags())
275 OS << "[TF=" << TF << ']';
Chris Lattnerf7382302007-12-30 21:56:09 +0000276}
277
278//===----------------------------------------------------------------------===//
Dan Gohmance42e402008-07-07 20:32:02 +0000279// MachineMemOperand Implementation
280//===----------------------------------------------------------------------===//
281
282MachineMemOperand::MachineMemOperand(const Value *v, unsigned int f,
283 int64_t o, uint64_t s, unsigned int a)
284 : Offset(o), Size(s), V(v),
285 Flags((f & 7) | ((Log2_32(a) + 1) << 3)) {
Dan Gohmanf1bf29e2008-07-08 23:47:04 +0000286 assert(isPowerOf2_32(a) && "Alignment is not a power of 2!");
Dan Gohmanc5e1f982008-07-16 15:56:42 +0000287 assert((isLoad() || isStore()) && "Not a load/store!");
Dan Gohmance42e402008-07-07 20:32:02 +0000288}
289
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000290/// Profile - Gather unique data for the object.
291///
292void MachineMemOperand::Profile(FoldingSetNodeID &ID) const {
293 ID.AddInteger(Offset);
294 ID.AddInteger(Size);
295 ID.AddPointer(V);
296 ID.AddInteger(Flags);
297}
298
Dan Gohmance42e402008-07-07 20:32:02 +0000299//===----------------------------------------------------------------------===//
Chris Lattnerf7382302007-12-30 21:56:09 +0000300// MachineInstr Implementation
301//===----------------------------------------------------------------------===//
302
Evan Chengc0f64ff2006-11-27 23:37:22 +0000303/// MachineInstr ctor - This constructor creates a dummy MachineInstr with
Evan Cheng67f660c2006-11-30 07:08:44 +0000304/// TID NULL and no operands.
Evan Chengc0f64ff2006-11-27 23:37:22 +0000305MachineInstr::MachineInstr()
Dale Johannesen06efc022009-01-27 23:20:29 +0000306 : TID(0), NumImplicitOps(0), Parent(0), debugLoc(DebugLoc::getUnknownLoc()) {
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000307 // Make sure that we get added to a machine basicblock
308 LeakDetector::addGarbageObject(this);
Chris Lattner72791222002-10-28 20:59:49 +0000309}
310
Evan Cheng67f660c2006-11-30 07:08:44 +0000311void MachineInstr::addImplicitDefUseOperands() {
312 if (TID->ImplicitDefs)
Chris Lattnera4161ee2007-12-30 00:12:25 +0000313 for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
Chris Lattner8019f412007-12-30 00:41:17 +0000314 addOperand(MachineOperand::CreateReg(*ImpDefs, true, true));
Evan Cheng67f660c2006-11-30 07:08:44 +0000315 if (TID->ImplicitUses)
Chris Lattnera4161ee2007-12-30 00:12:25 +0000316 for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
Chris Lattner8019f412007-12-30 00:41:17 +0000317 addOperand(MachineOperand::CreateReg(*ImpUses, false, true));
Evan Chengd7de4962006-11-13 23:34:06 +0000318}
319
320/// MachineInstr ctor - This constructor create a MachineInstr and add the
Evan Chengc0f64ff2006-11-27 23:37:22 +0000321/// implicit operands. It reserves space for number of operands specified by
Chris Lattner749c6f62008-01-07 07:27:27 +0000322/// TargetInstrDesc or the numOperands if it is not zero. (for
Evan Chengc0f64ff2006-11-27 23:37:22 +0000323/// instructions with variable number of operands).
Chris Lattner749c6f62008-01-07 07:27:27 +0000324MachineInstr::MachineInstr(const TargetInstrDesc &tid, bool NoImp)
Dale Johannesen06efc022009-01-27 23:20:29 +0000325 : TID(&tid), NumImplicitOps(0), Parent(0),
326 debugLoc(DebugLoc::getUnknownLoc()) {
Chris Lattner349c4952008-01-07 03:13:06 +0000327 if (!NoImp && TID->getImplicitDefs())
328 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
Evan Chengd7de4962006-11-13 23:34:06 +0000329 NumImplicitOps++;
Chris Lattner349c4952008-01-07 03:13:06 +0000330 if (!NoImp && TID->getImplicitUses())
331 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
Evan Chengd7de4962006-11-13 23:34:06 +0000332 NumImplicitOps++;
Chris Lattner349c4952008-01-07 03:13:06 +0000333 Operands.reserve(NumImplicitOps + TID->getNumOperands());
Evan Chengfa945722007-10-13 02:23:01 +0000334 if (!NoImp)
335 addImplicitDefUseOperands();
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000336 // Make sure that we get added to a machine basicblock
337 LeakDetector::addGarbageObject(this);
Evan Chengd7de4962006-11-13 23:34:06 +0000338}
339
Dale Johannesen06efc022009-01-27 23:20:29 +0000340/// MachineInstr ctor - As above, but with a DebugLoc.
341MachineInstr::MachineInstr(const TargetInstrDesc &tid, const DebugLoc dl,
342 bool NoImp)
343 : TID(&tid), NumImplicitOps(0), Parent(0), debugLoc(dl) {
344 if (!NoImp && TID->getImplicitDefs())
345 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
346 NumImplicitOps++;
347 if (!NoImp && TID->getImplicitUses())
348 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
349 NumImplicitOps++;
350 Operands.reserve(NumImplicitOps + TID->getNumOperands());
351 if (!NoImp)
352 addImplicitDefUseOperands();
353 // Make sure that we get added to a machine basicblock
354 LeakDetector::addGarbageObject(this);
355}
356
357/// MachineInstr ctor - Work exactly the same as the ctor two above, except
358/// that the MachineInstr is created and added to the end of the specified
359/// basic block.
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000360///
Dale Johannesen06efc022009-01-27 23:20:29 +0000361MachineInstr::MachineInstr(MachineBasicBlock *MBB, const TargetInstrDesc &tid)
362 : TID(&tid), NumImplicitOps(0), Parent(0),
363 debugLoc(DebugLoc::getUnknownLoc()) {
364 assert(MBB && "Cannot use inserting ctor with null basic block!");
365 if (TID->ImplicitDefs)
366 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
367 NumImplicitOps++;
368 if (TID->ImplicitUses)
369 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
370 NumImplicitOps++;
371 Operands.reserve(NumImplicitOps + TID->getNumOperands());
372 addImplicitDefUseOperands();
373 // Make sure that we get added to a machine basicblock
374 LeakDetector::addGarbageObject(this);
375 MBB->push_back(this); // Add instruction to end of basic block!
376}
377
378/// MachineInstr ctor - As above, but with a DebugLoc.
379///
380MachineInstr::MachineInstr(MachineBasicBlock *MBB, const DebugLoc dl,
Chris Lattner749c6f62008-01-07 07:27:27 +0000381 const TargetInstrDesc &tid)
Dale Johannesen06efc022009-01-27 23:20:29 +0000382 : TID(&tid), NumImplicitOps(0), Parent(0), debugLoc(dl) {
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000383 assert(MBB && "Cannot use inserting ctor with null basic block!");
Evan Cheng67f660c2006-11-30 07:08:44 +0000384 if (TID->ImplicitDefs)
Chris Lattner349c4952008-01-07 03:13:06 +0000385 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
Evan Chengd7de4962006-11-13 23:34:06 +0000386 NumImplicitOps++;
Evan Cheng67f660c2006-11-30 07:08:44 +0000387 if (TID->ImplicitUses)
Chris Lattner349c4952008-01-07 03:13:06 +0000388 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
Evan Chengd7de4962006-11-13 23:34:06 +0000389 NumImplicitOps++;
Chris Lattner349c4952008-01-07 03:13:06 +0000390 Operands.reserve(NumImplicitOps + TID->getNumOperands());
Evan Cheng67f660c2006-11-30 07:08:44 +0000391 addImplicitDefUseOperands();
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000392 // Make sure that we get added to a machine basicblock
393 LeakDetector::addGarbageObject(this);
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000394 MBB->push_back(this); // Add instruction to end of basic block!
395}
396
Misha Brukmance22e762004-07-09 14:45:17 +0000397/// MachineInstr ctor - Copies MachineInstr arg exactly
398///
Evan Cheng1ed99222008-07-19 00:37:25 +0000399MachineInstr::MachineInstr(MachineFunction &MF, const MachineInstr &MI)
Dale Johannesen06efc022009-01-27 23:20:29 +0000400 : TID(&MI.getDesc()), NumImplicitOps(0), Parent(0),
401 debugLoc(MI.getDebugLoc()) {
Chris Lattner943b5e12006-05-04 19:14:44 +0000402 Operands.reserve(MI.getNumOperands());
Tanya Lattnerb5159ed2004-05-23 20:58:02 +0000403
Misha Brukmance22e762004-07-09 14:45:17 +0000404 // Add operands
Evan Cheng1ed99222008-07-19 00:37:25 +0000405 for (unsigned i = 0; i != MI.getNumOperands(); ++i)
406 addOperand(MI.getOperand(i));
407 NumImplicitOps = MI.NumImplicitOps;
Tanya Lattner0c63e032004-05-24 03:14:18 +0000408
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000409 // Add memory operands.
Dan Gohmanfed90b62008-07-28 21:51:04 +0000410 for (std::list<MachineMemOperand>::const_iterator i = MI.memoperands_begin(),
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000411 j = MI.memoperands_end(); i != j; ++i)
412 addMemOperand(MF, *i);
413
414 // Set parent to null.
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000415 Parent = 0;
Dan Gohman6116a732008-07-21 18:47:29 +0000416
417 LeakDetector::addGarbageObject(this);
Tanya Lattner466b5342004-05-23 19:35:12 +0000418}
419
Misha Brukmance22e762004-07-09 14:45:17 +0000420MachineInstr::~MachineInstr() {
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000421 LeakDetector::removeGarbageObject(this);
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000422 assert(MemOperands.empty() &&
423 "MachineInstr being deleted with live memoperands!");
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000424#ifndef NDEBUG
Chris Lattner62ed6b92008-01-01 01:12:31 +0000425 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000426 assert(Operands[i].ParentMI == this && "ParentMI mismatch!");
Dan Gohmand735b802008-10-03 15:45:36 +0000427 assert((!Operands[i].isReg() || !Operands[i].isOnRegUseList()) &&
Chris Lattner62ed6b92008-01-01 01:12:31 +0000428 "Reg operand def/use list corrupted");
429 }
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000430#endif
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000431}
432
Chris Lattner62ed6b92008-01-01 01:12:31 +0000433/// getRegInfo - If this instruction is embedded into a MachineFunction,
434/// return the MachineRegisterInfo object for the current function, otherwise
435/// return null.
436MachineRegisterInfo *MachineInstr::getRegInfo() {
437 if (MachineBasicBlock *MBB = getParent())
Dan Gohman4e526b92008-07-08 23:59:09 +0000438 return &MBB->getParent()->getRegInfo();
Chris Lattner62ed6b92008-01-01 01:12:31 +0000439 return 0;
440}
441
442/// RemoveRegOperandsFromUseLists - Unlink all of the register operands in
443/// this instruction from their respective use lists. This requires that the
444/// operands already be on their use lists.
445void MachineInstr::RemoveRegOperandsFromUseLists() {
446 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
Dan Gohmand735b802008-10-03 15:45:36 +0000447 if (Operands[i].isReg())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000448 Operands[i].RemoveRegOperandFromRegInfo();
449 }
450}
451
452/// AddRegOperandsToUseLists - Add all of the register operands in
453/// this instruction from their respective use lists. This requires that the
454/// operands not be on their use lists yet.
455void MachineInstr::AddRegOperandsToUseLists(MachineRegisterInfo &RegInfo) {
456 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
Dan Gohmand735b802008-10-03 15:45:36 +0000457 if (Operands[i].isReg())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000458 Operands[i].AddRegOperandToRegInfo(&RegInfo);
459 }
460}
461
462
463/// addOperand - Add the specified operand to the instruction. If it is an
464/// implicit operand, it is added to the end of the operand list. If it is
465/// an explicit operand it is added at the end of the explicit operand list
466/// (before the first implicit operand).
467void MachineInstr::addOperand(const MachineOperand &Op) {
Dan Gohmand735b802008-10-03 15:45:36 +0000468 bool isImpReg = Op.isReg() && Op.isImplicit();
Chris Lattner62ed6b92008-01-01 01:12:31 +0000469 assert((isImpReg || !OperandsComplete()) &&
470 "Trying to add an operand to a machine instr that is already done!");
471
Dan Gohmanbcf28c02008-12-09 22:45:08 +0000472 MachineRegisterInfo *RegInfo = getRegInfo();
473
Chris Lattner62ed6b92008-01-01 01:12:31 +0000474 // If we are adding the operand to the end of the list, our job is simpler.
475 // This is true most of the time, so this is a reasonable optimization.
476 if (isImpReg || NumImplicitOps == 0) {
477 // We can only do this optimization if we know that the operand list won't
478 // reallocate.
479 if (Operands.empty() || Operands.size()+1 <= Operands.capacity()) {
480 Operands.push_back(Op);
481
482 // Set the parent of the operand.
483 Operands.back().ParentMI = this;
484
485 // If the operand is a register, update the operand's use list.
Dan Gohmand735b802008-10-03 15:45:36 +0000486 if (Op.isReg())
Dan Gohmanbcf28c02008-12-09 22:45:08 +0000487 Operands.back().AddRegOperandToRegInfo(RegInfo);
Chris Lattner62ed6b92008-01-01 01:12:31 +0000488 return;
489 }
490 }
491
492 // Otherwise, we have to insert a real operand before any implicit ones.
493 unsigned OpNo = Operands.size()-NumImplicitOps;
494
Chris Lattner62ed6b92008-01-01 01:12:31 +0000495 // If this instruction isn't embedded into a function, then we don't need to
496 // update any operand lists.
497 if (RegInfo == 0) {
498 // Simple insertion, no reginfo update needed for other register operands.
499 Operands.insert(Operands.begin()+OpNo, Op);
500 Operands[OpNo].ParentMI = this;
501
502 // Do explicitly set the reginfo for this operand though, to ensure the
503 // next/prev fields are properly nulled out.
Dan Gohmand735b802008-10-03 15:45:36 +0000504 if (Operands[OpNo].isReg())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000505 Operands[OpNo].AddRegOperandToRegInfo(0);
506
507 } else if (Operands.size()+1 <= Operands.capacity()) {
508 // Otherwise, we have to remove register operands from their register use
509 // list, add the operand, then add the register operands back to their use
510 // list. This also must handle the case when the operand list reallocates
511 // to somewhere else.
512
513 // If insertion of this operand won't cause reallocation of the operand
514 // list, just remove the implicit operands, add the operand, then re-add all
515 // the rest of the operands.
516 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
Dan Gohmand735b802008-10-03 15:45:36 +0000517 assert(Operands[i].isReg() && "Should only be an implicit reg!");
Chris Lattner62ed6b92008-01-01 01:12:31 +0000518 Operands[i].RemoveRegOperandFromRegInfo();
519 }
520
521 // Add the operand. If it is a register, add it to the reg list.
522 Operands.insert(Operands.begin()+OpNo, Op);
523 Operands[OpNo].ParentMI = this;
524
Dan Gohmand735b802008-10-03 15:45:36 +0000525 if (Operands[OpNo].isReg())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000526 Operands[OpNo].AddRegOperandToRegInfo(RegInfo);
527
528 // Re-add all the implicit ops.
529 for (unsigned i = OpNo+1, e = Operands.size(); i != e; ++i) {
Dan Gohmand735b802008-10-03 15:45:36 +0000530 assert(Operands[i].isReg() && "Should only be an implicit reg!");
Chris Lattner62ed6b92008-01-01 01:12:31 +0000531 Operands[i].AddRegOperandToRegInfo(RegInfo);
532 }
533 } else {
534 // Otherwise, we will be reallocating the operand list. Remove all reg
535 // operands from their list, then readd them after the operand list is
536 // reallocated.
537 RemoveRegOperandsFromUseLists();
538
539 Operands.insert(Operands.begin()+OpNo, Op);
540 Operands[OpNo].ParentMI = this;
541
542 // Re-add all the operands.
543 AddRegOperandsToUseLists(*RegInfo);
544 }
545}
546
547/// RemoveOperand - Erase an operand from an instruction, leaving it with one
548/// fewer operand than it started with.
549///
550void MachineInstr::RemoveOperand(unsigned OpNo) {
551 assert(OpNo < Operands.size() && "Invalid operand number");
552
553 // Special case removing the last one.
554 if (OpNo == Operands.size()-1) {
555 // If needed, remove from the reg def/use list.
Dan Gohmand735b802008-10-03 15:45:36 +0000556 if (Operands.back().isReg() && Operands.back().isOnRegUseList())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000557 Operands.back().RemoveRegOperandFromRegInfo();
558
559 Operands.pop_back();
560 return;
561 }
562
563 // Otherwise, we are removing an interior operand. If we have reginfo to
564 // update, remove all operands that will be shifted down from their reg lists,
565 // move everything down, then re-add them.
566 MachineRegisterInfo *RegInfo = getRegInfo();
567 if (RegInfo) {
568 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
Dan Gohmand735b802008-10-03 15:45:36 +0000569 if (Operands[i].isReg())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000570 Operands[i].RemoveRegOperandFromRegInfo();
571 }
572 }
573
574 Operands.erase(Operands.begin()+OpNo);
575
576 if (RegInfo) {
577 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
Dan Gohmand735b802008-10-03 15:45:36 +0000578 if (Operands[i].isReg())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000579 Operands[i].AddRegOperandToRegInfo(RegInfo);
580 }
581 }
582}
583
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000584/// addMemOperand - Add a MachineMemOperand to the machine instruction,
585/// referencing arbitrary storage.
586void MachineInstr::addMemOperand(MachineFunction &MF,
587 const MachineMemOperand &MO) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000588 MemOperands.push_back(MO);
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000589}
590
591/// clearMemOperands - Erase all of this MachineInstr's MachineMemOperands.
592void MachineInstr::clearMemOperands(MachineFunction &MF) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000593 MemOperands.clear();
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000594}
595
Chris Lattner62ed6b92008-01-01 01:12:31 +0000596
Chris Lattner48d7c062006-04-17 21:35:41 +0000597/// removeFromParent - This method unlinks 'this' from the containing basic
598/// block, and returns it, but does not delete it.
599MachineInstr *MachineInstr::removeFromParent() {
600 assert(getParent() && "Not embedded in a basic block!");
601 getParent()->remove(this);
602 return this;
603}
604
605
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000606/// eraseFromParent - This method unlinks 'this' from the containing basic
607/// block, and deletes it.
608void MachineInstr::eraseFromParent() {
609 assert(getParent() && "Not embedded in a basic block!");
610 getParent()->erase(this);
611}
612
613
Brian Gaeke21326fc2004-02-13 04:39:32 +0000614/// OperandComplete - Return true if it's illegal to add a new operand
615///
Chris Lattner2a90ba62004-02-12 16:09:53 +0000616bool MachineInstr::OperandsComplete() const {
Chris Lattner349c4952008-01-07 03:13:06 +0000617 unsigned short NumOperands = TID->getNumOperands();
Chris Lattner8f707e12008-01-07 05:19:29 +0000618 if (!TID->isVariadic() && getNumOperands()-NumImplicitOps >= NumOperands)
Vikram S. Adve34977822003-05-31 07:39:06 +0000619 return true; // Broken: we have all the operands of this instruction!
Chris Lattner413746e2002-10-28 20:48:39 +0000620 return false;
621}
622
Evan Cheng19e3f312007-05-15 01:26:09 +0000623/// getNumExplicitOperands - Returns the number of non-implicit operands.
624///
625unsigned MachineInstr::getNumExplicitOperands() const {
Chris Lattner349c4952008-01-07 03:13:06 +0000626 unsigned NumOperands = TID->getNumOperands();
Chris Lattner8f707e12008-01-07 05:19:29 +0000627 if (!TID->isVariadic())
Evan Cheng19e3f312007-05-15 01:26:09 +0000628 return NumOperands;
629
Dan Gohman9407cd42009-04-15 17:59:11 +0000630 for (unsigned i = NumOperands, e = getNumOperands(); i != e; ++i) {
631 const MachineOperand &MO = getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000632 if (!MO.isReg() || !MO.isImplicit())
Evan Cheng19e3f312007-05-15 01:26:09 +0000633 NumOperands++;
634 }
635 return NumOperands;
636}
637
Chris Lattner8ace2cd2006-10-20 22:39:59 +0000638
Dan Gohman44066042008-07-01 00:05:16 +0000639/// isLabel - Returns true if the MachineInstr represents a label.
640///
641bool MachineInstr::isLabel() const {
642 return getOpcode() == TargetInstrInfo::DBG_LABEL ||
643 getOpcode() == TargetInstrInfo::EH_LABEL ||
644 getOpcode() == TargetInstrInfo::GC_LABEL;
645}
646
Evan Chengbb81d972008-01-31 09:59:15 +0000647/// isDebugLabel - Returns true if the MachineInstr represents a debug label.
648///
649bool MachineInstr::isDebugLabel() const {
Dan Gohman44066042008-07-01 00:05:16 +0000650 return getOpcode() == TargetInstrInfo::DBG_LABEL;
Evan Chengbb81d972008-01-31 09:59:15 +0000651}
652
Evan Chengfaa51072007-04-26 19:00:32 +0000653/// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of
Evan Cheng32eb1f12007-03-26 22:37:45 +0000654/// the specific register or -1 if it is not found. It further tightening
Evan Cheng76d7e762007-02-23 01:04:26 +0000655/// the search criteria to a use that kills the register if isKill is true.
Evan Cheng6130f662008-03-05 00:59:57 +0000656int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill,
657 const TargetRegisterInfo *TRI) const {
Evan Cheng576d1232006-12-06 08:27:42 +0000658 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Evan Chengf277ee42007-05-29 18:35:22 +0000659 const MachineOperand &MO = getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000660 if (!MO.isReg() || !MO.isUse())
Evan Cheng6130f662008-03-05 00:59:57 +0000661 continue;
662 unsigned MOReg = MO.getReg();
663 if (!MOReg)
664 continue;
665 if (MOReg == Reg ||
666 (TRI &&
667 TargetRegisterInfo::isPhysicalRegister(MOReg) &&
668 TargetRegisterInfo::isPhysicalRegister(Reg) &&
669 TRI->isSubRegister(MOReg, Reg)))
Evan Cheng76d7e762007-02-23 01:04:26 +0000670 if (!isKill || MO.isKill())
Evan Cheng32eb1f12007-03-26 22:37:45 +0000671 return i;
Evan Cheng576d1232006-12-06 08:27:42 +0000672 }
Evan Cheng32eb1f12007-03-26 22:37:45 +0000673 return -1;
Evan Cheng576d1232006-12-06 08:27:42 +0000674}
675
Evan Cheng6130f662008-03-05 00:59:57 +0000676/// findRegisterDefOperandIdx() - Returns the operand index that is a def of
Dan Gohman703bfe62008-05-06 00:20:10 +0000677/// the specified register or -1 if it is not found. If isDead is true, defs
678/// that are not dead are skipped. If TargetRegisterInfo is non-null, then it
679/// also checks if there is a def of a super-register.
Evan Cheng6130f662008-03-05 00:59:57 +0000680int MachineInstr::findRegisterDefOperandIdx(unsigned Reg, bool isDead,
681 const TargetRegisterInfo *TRI) const {
Evan Chengb371f452007-02-19 21:49:54 +0000682 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Evan Cheng6130f662008-03-05 00:59:57 +0000683 const MachineOperand &MO = getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000684 if (!MO.isReg() || !MO.isDef())
Evan Cheng6130f662008-03-05 00:59:57 +0000685 continue;
686 unsigned MOReg = MO.getReg();
687 if (MOReg == Reg ||
688 (TRI &&
689 TargetRegisterInfo::isPhysicalRegister(MOReg) &&
690 TargetRegisterInfo::isPhysicalRegister(Reg) &&
691 TRI->isSubRegister(MOReg, Reg)))
692 if (!isDead || MO.isDead())
693 return i;
Evan Chengb371f452007-02-19 21:49:54 +0000694 }
Evan Cheng6130f662008-03-05 00:59:57 +0000695 return -1;
Evan Chengb371f452007-02-19 21:49:54 +0000696}
Evan Cheng19e3f312007-05-15 01:26:09 +0000697
Evan Chengf277ee42007-05-29 18:35:22 +0000698/// findFirstPredOperandIdx() - Find the index of the first operand in the
699/// operand list that is used to represent the predicate. It returns -1 if
700/// none is found.
701int MachineInstr::findFirstPredOperandIdx() const {
Chris Lattner749c6f62008-01-07 07:27:27 +0000702 const TargetInstrDesc &TID = getDesc();
703 if (TID.isPredicable()) {
Evan Cheng19e3f312007-05-15 01:26:09 +0000704 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner749c6f62008-01-07 07:27:27 +0000705 if (TID.OpInfo[i].isPredicate())
Evan Chengf277ee42007-05-29 18:35:22 +0000706 return i;
Evan Cheng19e3f312007-05-15 01:26:09 +0000707 }
708
Evan Chengf277ee42007-05-29 18:35:22 +0000709 return -1;
Evan Cheng19e3f312007-05-15 01:26:09 +0000710}
Evan Chengb371f452007-02-19 21:49:54 +0000711
Bob Wilsond9df5012009-04-09 17:16:43 +0000712/// isRegTiedToUseOperand - Given the index of a register def operand,
713/// check if the register def is tied to a source operand, due to either
714/// two-address elimination or inline assembly constraints. Returns the
715/// first tied use operand index by reference is UseOpIdx is not null.
Jakob Stoklund Olesence9be2c2009-04-29 20:57:16 +0000716bool MachineInstr::
717isRegTiedToUseOperand(unsigned DefOpIdx, unsigned *UseOpIdx) const {
Evan Chengfb112882009-03-23 08:01:15 +0000718 if (getOpcode() == TargetInstrInfo::INLINEASM) {
Bob Wilsond9df5012009-04-09 17:16:43 +0000719 assert(DefOpIdx >= 2);
720 const MachineOperand &MO = getOperand(DefOpIdx);
Chris Lattnerc30aa7b2009-04-09 23:33:34 +0000721 if (!MO.isReg() || !MO.isDef() || MO.getReg() == 0)
Evan Chengfb112882009-03-23 08:01:15 +0000722 return false;
Evan Chengef5d0702009-06-24 02:05:51 +0000723 // Determine the actual operand index that corresponds to this index.
Evan Chengfb112882009-03-23 08:01:15 +0000724 unsigned DefNo = 0;
Evan Chengef5d0702009-06-24 02:05:51 +0000725 unsigned DefPart = 0;
Evan Chengfb112882009-03-23 08:01:15 +0000726 for (unsigned i = 1, e = getNumOperands(); i < e; ) {
727 const MachineOperand &FMO = getOperand(i);
728 assert(FMO.isImm());
729 // Skip over this def.
Evan Chengef5d0702009-06-24 02:05:51 +0000730 unsigned NumOps = InlineAsm::getNumOperandRegisters(FMO.getImm());
731 unsigned PrevDef = i + 1;
732 i = PrevDef + NumOps;
733 if (i > DefOpIdx) {
734 DefPart = DefOpIdx - PrevDef;
Evan Chengfb112882009-03-23 08:01:15 +0000735 break;
Evan Chengef5d0702009-06-24 02:05:51 +0000736 }
Evan Chengfb112882009-03-23 08:01:15 +0000737 ++DefNo;
738 }
Evan Chengef5d0702009-06-24 02:05:51 +0000739 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
Evan Chengfb112882009-03-23 08:01:15 +0000740 const MachineOperand &FMO = getOperand(i);
741 if (!FMO.isImm())
742 continue;
743 if (i+1 >= e || !getOperand(i+1).isReg() || !getOperand(i+1).isUse())
744 continue;
745 unsigned Idx;
Evan Chengef5d0702009-06-24 02:05:51 +0000746 if (InlineAsm::isUseOperandTiedToDef(FMO.getImm(), Idx) &&
Bob Wilsond9df5012009-04-09 17:16:43 +0000747 Idx == DefNo) {
748 if (UseOpIdx)
Evan Chengef5d0702009-06-24 02:05:51 +0000749 *UseOpIdx = (unsigned)i + 1 + DefPart;
Evan Chengfb112882009-03-23 08:01:15 +0000750 return true;
Bob Wilsond9df5012009-04-09 17:16:43 +0000751 }
Evan Chengfb112882009-03-23 08:01:15 +0000752 }
Evan Chengef5d0702009-06-24 02:05:51 +0000753 return false;
Evan Chengfb112882009-03-23 08:01:15 +0000754 }
755
Bob Wilsond9df5012009-04-09 17:16:43 +0000756 assert(getOperand(DefOpIdx).isDef() && "DefOpIdx is not a def!");
Chris Lattner749c6f62008-01-07 07:27:27 +0000757 const TargetInstrDesc &TID = getDesc();
Evan Chengef0732d2008-07-10 07:35:43 +0000758 for (unsigned i = 0, e = TID.getNumOperands(); i != e; ++i) {
759 const MachineOperand &MO = getOperand(i);
Dan Gohman2ce7f202008-12-05 05:45:42 +0000760 if (MO.isReg() && MO.isUse() &&
Bob Wilsond9df5012009-04-09 17:16:43 +0000761 TID.getOperandConstraint(i, TOI::TIED_TO) == (int)DefOpIdx) {
762 if (UseOpIdx)
763 *UseOpIdx = (unsigned)i;
Evan Chengef0732d2008-07-10 07:35:43 +0000764 return true;
Bob Wilsond9df5012009-04-09 17:16:43 +0000765 }
Evan Cheng32dfbea2007-10-12 08:50:34 +0000766 }
767 return false;
768}
769
Evan Chenga24752f2009-03-19 20:30:06 +0000770/// isRegTiedToDefOperand - Return true if the operand of the specified index
771/// is a register use and it is tied to an def operand. It also returns the def
772/// operand index by reference.
Jakob Stoklund Olesence9be2c2009-04-29 20:57:16 +0000773bool MachineInstr::
774isRegTiedToDefOperand(unsigned UseOpIdx, unsigned *DefOpIdx) const {
Evan Chengfb112882009-03-23 08:01:15 +0000775 if (getOpcode() == TargetInstrInfo::INLINEASM) {
776 const MachineOperand &MO = getOperand(UseOpIdx);
Chris Lattner0c8382c2009-04-09 16:50:43 +0000777 if (!MO.isReg() || !MO.isUse() || MO.getReg() == 0)
Evan Chengfb112882009-03-23 08:01:15 +0000778 return false;
Evan Chengef5d0702009-06-24 02:05:51 +0000779 int FlagIdx = UseOpIdx - 1;
780 if (FlagIdx < 1)
781 return false;
782 while (!getOperand(FlagIdx).isImm()) {
783 if (--FlagIdx == 0)
784 return false;
785 }
786 const MachineOperand &UFMO = getOperand(FlagIdx);
787 if (FlagIdx + InlineAsm::getNumOperandRegisters(UFMO.getImm()) < UseOpIdx)
788 return false;
Evan Chengfb112882009-03-23 08:01:15 +0000789 unsigned DefNo;
790 if (InlineAsm::isUseOperandTiedToDef(UFMO.getImm(), DefNo)) {
791 if (!DefOpIdx)
792 return true;
793
794 unsigned DefIdx = 1;
795 // Remember to adjust the index. First operand is asm string, then there
796 // is a flag for each.
797 while (DefNo) {
798 const MachineOperand &FMO = getOperand(DefIdx);
799 assert(FMO.isImm());
800 // Skip over this def.
801 DefIdx += InlineAsm::getNumOperandRegisters(FMO.getImm()) + 1;
802 --DefNo;
803 }
Evan Chengef5d0702009-06-24 02:05:51 +0000804 *DefOpIdx = DefIdx + UseOpIdx - FlagIdx;
Evan Chengfb112882009-03-23 08:01:15 +0000805 return true;
806 }
807 return false;
808 }
809
Evan Chenga24752f2009-03-19 20:30:06 +0000810 const TargetInstrDesc &TID = getDesc();
811 if (UseOpIdx >= TID.getNumOperands())
812 return false;
813 const MachineOperand &MO = getOperand(UseOpIdx);
814 if (!MO.isReg() || !MO.isUse())
815 return false;
816 int DefIdx = TID.getOperandConstraint(UseOpIdx, TOI::TIED_TO);
817 if (DefIdx == -1)
818 return false;
819 if (DefOpIdx)
820 *DefOpIdx = (unsigned)DefIdx;
821 return true;
822}
823
Evan Cheng576d1232006-12-06 08:27:42 +0000824/// copyKillDeadInfo - Copies kill / dead operand properties from MI.
825///
826void MachineInstr::copyKillDeadInfo(const MachineInstr *MI) {
827 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
828 const MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000829 if (!MO.isReg() || (!MO.isKill() && !MO.isDead()))
Evan Cheng576d1232006-12-06 08:27:42 +0000830 continue;
831 for (unsigned j = 0, ee = getNumOperands(); j != ee; ++j) {
832 MachineOperand &MOp = getOperand(j);
833 if (!MOp.isIdenticalTo(MO))
834 continue;
835 if (MO.isKill())
836 MOp.setIsKill();
837 else
838 MOp.setIsDead();
839 break;
840 }
841 }
842}
843
Evan Cheng19e3f312007-05-15 01:26:09 +0000844/// copyPredicates - Copies predicate operand(s) from MI.
845void MachineInstr::copyPredicates(const MachineInstr *MI) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000846 const TargetInstrDesc &TID = MI->getDesc();
Evan Chengb27087f2008-03-13 00:44:09 +0000847 if (!TID.isPredicable())
848 return;
849 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
850 if (TID.OpInfo[i].isPredicate()) {
851 // Predicated operands must be last operands.
852 addOperand(MI->getOperand(i));
Evan Cheng19e3f312007-05-15 01:26:09 +0000853 }
854 }
855}
856
Evan Cheng9f1c8312008-07-03 09:09:37 +0000857/// isSafeToMove - Return true if it is safe to move this instruction. If
858/// SawStore is set to true, it means that there is a store (or call) between
859/// the instruction's location and its intended destination.
Dan Gohmanb3b930a2008-11-18 19:04:29 +0000860bool MachineInstr::isSafeToMove(const TargetInstrInfo *TII,
861 bool &SawStore) const {
Evan Chengb27087f2008-03-13 00:44:09 +0000862 // Ignore stuff that we obviously can't move.
863 if (TID->mayStore() || TID->isCall()) {
864 SawStore = true;
865 return false;
866 }
Dan Gohman237dee12008-12-23 17:28:50 +0000867 if (TID->isTerminator() || TID->hasUnmodeledSideEffects())
Evan Chengb27087f2008-03-13 00:44:09 +0000868 return false;
869
870 // See if this instruction does a load. If so, we have to guarantee that the
871 // loaded value doesn't change between the load and the its intended
872 // destination. The check for isInvariantLoad gives the targe the chance to
873 // classify the load as always returning a constant, e.g. a constant pool
874 // load.
Dan Gohman3e4fb702008-09-24 00:06:15 +0000875 if (TID->mayLoad() && !TII->isInvariantLoad(this))
Evan Chengb27087f2008-03-13 00:44:09 +0000876 // Otherwise, this is a real load. If there is a store between the load and
Dan Gohman3e4fb702008-09-24 00:06:15 +0000877 // end of block, or if the laod is volatile, we can't move it.
Dan Gohmand790a5c2008-10-02 15:04:30 +0000878 return !SawStore && !hasVolatileMemoryRef();
Dan Gohman3e4fb702008-09-24 00:06:15 +0000879
Evan Chengb27087f2008-03-13 00:44:09 +0000880 return true;
881}
882
Evan Chengdf3b9932008-08-27 20:33:50 +0000883/// isSafeToReMat - Return true if it's safe to rematerialize the specified
884/// instruction which defined the specified register instead of copying it.
Dan Gohmanb3b930a2008-11-18 19:04:29 +0000885bool MachineInstr::isSafeToReMat(const TargetInstrInfo *TII,
886 unsigned DstReg) const {
Evan Chengdf3b9932008-08-27 20:33:50 +0000887 bool SawStore = false;
Evan Cheng3689ff42008-08-30 09:07:18 +0000888 if (!getDesc().isRematerializable() ||
889 !TII->isTriviallyReMaterializable(this) ||
890 !isSafeToMove(TII, SawStore))
Evan Chengdf3b9932008-08-27 20:33:50 +0000891 return false;
892 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Dan Gohmancbad42c2008-11-18 19:49:32 +0000893 const MachineOperand &MO = getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000894 if (!MO.isReg())
Evan Chengdf3b9932008-08-27 20:33:50 +0000895 continue;
896 // FIXME: For now, do not remat any instruction with register operands.
897 // Later on, we can loosen the restriction is the register operands have
898 // not been modified between the def and use. Note, this is different from
Evan Cheng8763c1c2008-08-27 20:58:54 +0000899 // MachineSink because the code is no longer in two-address form (at least
Evan Chengdf3b9932008-08-27 20:33:50 +0000900 // partially).
901 if (MO.isUse())
902 return false;
903 else if (!MO.isDead() && MO.getReg() != DstReg)
904 return false;
905 }
906 return true;
907}
908
Dan Gohman3e4fb702008-09-24 00:06:15 +0000909/// hasVolatileMemoryRef - Return true if this instruction may have a
910/// volatile memory reference, or if the information describing the
911/// memory reference is not available. Return false if it is known to
912/// have no volatile memory references.
913bool MachineInstr::hasVolatileMemoryRef() const {
914 // An instruction known never to access memory won't have a volatile access.
915 if (!TID->mayStore() &&
916 !TID->mayLoad() &&
917 !TID->isCall() &&
918 !TID->hasUnmodeledSideEffects())
919 return false;
920
921 // Otherwise, if the instruction has no memory reference information,
922 // conservatively assume it wasn't preserved.
923 if (memoperands_empty())
924 return true;
925
926 // Check the memory reference information for volatile references.
927 for (std::list<MachineMemOperand>::const_iterator I = memoperands_begin(),
928 E = memoperands_end(); I != E; ++I)
929 if (I->isVolatile())
930 return true;
931
932 return false;
933}
934
Brian Gaeke21326fc2004-02-13 04:39:32 +0000935void MachineInstr::dump() const {
Bill Wendlinge8156192006-12-07 01:30:32 +0000936 cerr << " " << *this;
Vikram S. Adve70bc4b52001-07-21 12:41:50 +0000937}
938
Tanya Lattnerb1407622004-06-25 00:13:11 +0000939void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const {
Mon P Wang5ca6bd12008-10-10 01:43:55 +0000940 raw_os_ostream RawOS(OS);
941 print(RawOS, TM);
942}
943
944void MachineInstr::print(raw_ostream &OS, const TargetMachine *TM) const {
Chris Lattnere3087892007-12-30 21:31:53 +0000945 // Specialize printing if op#0 is definition
Chris Lattner6a592272002-10-30 01:55:38 +0000946 unsigned StartOp = 0;
Dan Gohmand735b802008-10-03 15:45:36 +0000947 if (getNumOperands() && getOperand(0).isReg() && getOperand(0).isDef()) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000948 getOperand(0).print(OS, TM);
Chris Lattner6a592272002-10-30 01:55:38 +0000949 OS << " = ";
950 ++StartOp; // Don't print this operand again!
951 }
Tanya Lattnerb1407622004-06-25 00:13:11 +0000952
Chris Lattner749c6f62008-01-07 07:27:27 +0000953 OS << getDesc().getName();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000954
Chris Lattner6a592272002-10-30 01:55:38 +0000955 for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) {
956 if (i != StartOp)
957 OS << ",";
958 OS << " ";
Chris Lattnerf7382302007-12-30 21:56:09 +0000959 getOperand(i).print(OS, TM);
Chris Lattner10491642002-10-30 00:48:05 +0000960 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000961
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000962 if (!memoperands_empty()) {
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000963 OS << ", Mem:";
Dan Gohmanfed90b62008-07-28 21:51:04 +0000964 for (std::list<MachineMemOperand>::const_iterator i = memoperands_begin(),
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000965 e = memoperands_end(); i != e; ++i) {
966 const MachineMemOperand &MRO = *i;
Dan Gohman69de1932008-02-06 22:27:42 +0000967 const Value *V = MRO.getValue();
968
Dan Gohman69de1932008-02-06 22:27:42 +0000969 assert((MRO.isLoad() || MRO.isStore()) &&
970 "SV has to be a load, store or both.");
971
972 if (MRO.isVolatile())
973 OS << "Volatile ";
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000974
Dan Gohman69de1932008-02-06 22:27:42 +0000975 if (MRO.isLoad())
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000976 OS << "LD";
Dan Gohman69de1932008-02-06 22:27:42 +0000977 if (MRO.isStore())
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000978 OS << "ST";
Dan Gohman69de1932008-02-06 22:27:42 +0000979
Evan Chengbbd83222008-02-08 22:05:07 +0000980 OS << "(" << MRO.getSize() << "," << MRO.getAlignment() << ") [";
Dan Gohman69de1932008-02-06 22:27:42 +0000981
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000982 if (!V)
983 OS << "<unknown>";
984 else if (!V->getName().empty())
985 OS << V->getName();
Chris Lattneredfb72c2008-08-24 20:37:32 +0000986 else if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V)) {
Mon P Wang5ca6bd12008-10-10 01:43:55 +0000987 PSV->print(OS);
Chris Lattneredfb72c2008-08-24 20:37:32 +0000988 } else
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000989 OS << V;
990
991 OS << " + " << MRO.getOffset() << "]";
Dan Gohman69de1932008-02-06 22:27:42 +0000992 }
993 }
994
Bill Wendlingb5ef2732009-02-19 21:44:55 +0000995 if (!debugLoc.isUnknown()) {
996 const MachineFunction *MF = getParent()->getParent();
997 DebugLocTuple DLT = MF->getDebugLocTuple(debugLoc);
Argyrios Kyrtzidisa26eae62009-04-30 23:22:31 +0000998 DICompileUnit CU(DLT.CompileUnit);
999 std::string Dir, Fn;
Bill Wendlingb5ef2732009-02-19 21:44:55 +00001000 OS << " [dbg: "
Argyrios Kyrtzidisa26eae62009-04-30 23:22:31 +00001001 << CU.getDirectory(Dir) << '/' << CU.getFilename(Fn) << ","
Bill Wendlingb5ef2732009-02-19 21:44:55 +00001002 << DLT.Line << ","
1003 << DLT.Col << "]";
1004 }
1005
Chris Lattner10491642002-10-30 00:48:05 +00001006 OS << "\n";
1007}
1008
Owen Andersonb487e722008-01-24 01:10:07 +00001009bool MachineInstr::addRegisterKilled(unsigned IncomingReg,
Dan Gohman6f0d0242008-02-10 18:45:23 +00001010 const TargetRegisterInfo *RegInfo,
Owen Andersonb487e722008-01-24 01:10:07 +00001011 bool AddIfNotFound) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +00001012 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg);
Dan Gohman2ebc11a2008-07-03 01:18:51 +00001013 bool hasAliases = isPhysReg && RegInfo->getAliasSet(IncomingReg);
Dan Gohman3f629402008-09-03 15:56:16 +00001014 bool Found = false;
Evan Cheng9b6d7b92008-04-16 09:41:59 +00001015 SmallVector<unsigned,4> DeadOps;
Bill Wendling4a23d722008-03-03 22:14:33 +00001016 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
1017 MachineOperand &MO = getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001018 if (!MO.isReg() || !MO.isUse())
Evan Cheng9b6d7b92008-04-16 09:41:59 +00001019 continue;
1020 unsigned Reg = MO.getReg();
1021 if (!Reg)
1022 continue;
Bill Wendling4a23d722008-03-03 22:14:33 +00001023
Evan Cheng9b6d7b92008-04-16 09:41:59 +00001024 if (Reg == IncomingReg) {
Dan Gohman3f629402008-09-03 15:56:16 +00001025 if (!Found) {
1026 if (MO.isKill())
1027 // The register is already marked kill.
1028 return true;
1029 MO.setIsKill();
1030 Found = true;
1031 }
1032 } else if (hasAliases && MO.isKill() &&
1033 TargetRegisterInfo::isPhysicalRegister(Reg)) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +00001034 // A super-register kill already exists.
1035 if (RegInfo->isSuperRegister(IncomingReg, Reg))
Dan Gohman2ebc11a2008-07-03 01:18:51 +00001036 return true;
1037 if (RegInfo->isSubRegister(IncomingReg, Reg))
Evan Cheng9b6d7b92008-04-16 09:41:59 +00001038 DeadOps.push_back(i);
Bill Wendling4a23d722008-03-03 22:14:33 +00001039 }
1040 }
1041
Evan Cheng9b6d7b92008-04-16 09:41:59 +00001042 // Trim unneeded kill operands.
1043 while (!DeadOps.empty()) {
1044 unsigned OpIdx = DeadOps.back();
1045 if (getOperand(OpIdx).isImplicit())
1046 RemoveOperand(OpIdx);
1047 else
1048 getOperand(OpIdx).setIsKill(false);
1049 DeadOps.pop_back();
1050 }
1051
Bill Wendling4a23d722008-03-03 22:14:33 +00001052 // If not found, this means an alias of one of the operands is killed. Add a
Owen Andersonb487e722008-01-24 01:10:07 +00001053 // new implicit operand if required.
Dan Gohman3f629402008-09-03 15:56:16 +00001054 if (!Found && AddIfNotFound) {
Bill Wendling4a23d722008-03-03 22:14:33 +00001055 addOperand(MachineOperand::CreateReg(IncomingReg,
1056 false /*IsDef*/,
1057 true /*IsImp*/,
1058 true /*IsKill*/));
Owen Andersonb487e722008-01-24 01:10:07 +00001059 return true;
1060 }
Dan Gohman3f629402008-09-03 15:56:16 +00001061 return Found;
Owen Andersonb487e722008-01-24 01:10:07 +00001062}
1063
1064bool MachineInstr::addRegisterDead(unsigned IncomingReg,
Dan Gohman6f0d0242008-02-10 18:45:23 +00001065 const TargetRegisterInfo *RegInfo,
Owen Andersonb487e722008-01-24 01:10:07 +00001066 bool AddIfNotFound) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +00001067 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg);
Evan Cheng01b2e232008-06-27 22:11:49 +00001068 bool hasAliases = isPhysReg && RegInfo->getAliasSet(IncomingReg);
Dan Gohman3f629402008-09-03 15:56:16 +00001069 bool Found = false;
Evan Cheng9b6d7b92008-04-16 09:41:59 +00001070 SmallVector<unsigned,4> DeadOps;
Owen Andersonb487e722008-01-24 01:10:07 +00001071 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
1072 MachineOperand &MO = getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001073 if (!MO.isReg() || !MO.isDef())
Evan Cheng9b6d7b92008-04-16 09:41:59 +00001074 continue;
1075 unsigned Reg = MO.getReg();
Dan Gohman3f629402008-09-03 15:56:16 +00001076 if (!Reg)
1077 continue;
1078
Evan Cheng9b6d7b92008-04-16 09:41:59 +00001079 if (Reg == IncomingReg) {
Dan Gohman3f629402008-09-03 15:56:16 +00001080 if (!Found) {
1081 if (MO.isDead())
1082 // The register is already marked dead.
1083 return true;
1084 MO.setIsDead();
1085 Found = true;
1086 }
1087 } else if (hasAliases && MO.isDead() &&
1088 TargetRegisterInfo::isPhysicalRegister(Reg)) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +00001089 // There exists a super-register that's marked dead.
1090 if (RegInfo->isSuperRegister(IncomingReg, Reg))
Dan Gohman2ebc11a2008-07-03 01:18:51 +00001091 return true;
Owen Anderson22ae9992008-08-14 18:34:18 +00001092 if (RegInfo->getSubRegisters(IncomingReg) &&
1093 RegInfo->getSuperRegisters(Reg) &&
1094 RegInfo->isSubRegister(IncomingReg, Reg))
Evan Cheng9b6d7b92008-04-16 09:41:59 +00001095 DeadOps.push_back(i);
Owen Andersonb487e722008-01-24 01:10:07 +00001096 }
1097 }
1098
Evan Cheng9b6d7b92008-04-16 09:41:59 +00001099 // Trim unneeded dead operands.
1100 while (!DeadOps.empty()) {
1101 unsigned OpIdx = DeadOps.back();
1102 if (getOperand(OpIdx).isImplicit())
1103 RemoveOperand(OpIdx);
1104 else
1105 getOperand(OpIdx).setIsDead(false);
1106 DeadOps.pop_back();
1107 }
1108
Dan Gohman3f629402008-09-03 15:56:16 +00001109 // If not found, this means an alias of one of the operands is dead. Add a
1110 // new implicit operand if required.
Chris Lattner31530612009-06-24 17:54:48 +00001111 if (Found || !AddIfNotFound)
1112 return Found;
1113
1114 addOperand(MachineOperand::CreateReg(IncomingReg,
1115 true /*IsDef*/,
1116 true /*IsImp*/,
1117 false /*IsKill*/,
1118 true /*IsDead*/));
1119 return true;
Owen Andersonb487e722008-01-24 01:10:07 +00001120}