blob: d4a60bc6ae88281e72dccec253c3d6484824633b [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
Nate Begemane8b7ccf2008-02-14 07:39:30 +000014#include "llvm/Constants.h"
Chris Lattner822b4fb2001-09-07 17:18:30 +000015#include "llvm/CodeGen/MachineInstr.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000016#include "llvm/Value.h"
Chris Lattner8517e1f2004-02-19 16:17:08 +000017#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner62ed6b92008-01-01 01:12:31 +000018#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000019#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner10491642002-10-30 00:48:05 +000020#include "llvm/Target/TargetMachine.h"
Evan Chengbb81d972008-01-31 09:59:15 +000021#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnerf14cf852008-01-07 07:42:25 +000022#include "llvm/Target/TargetInstrDesc.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000023#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohman2c3f7ae2008-07-17 23:49:46 +000024#include "llvm/Support/LeakDetector.h"
Dan Gohmance42e402008-07-07 20:32:02 +000025#include "llvm/Support/MathExtras.h"
Bill Wendlinga09362e2006-11-28 22:48:48 +000026#include "llvm/Support/Streams.h"
Chris Lattneredfb72c2008-08-24 20:37:32 +000027#include "llvm/Support/raw_ostream.h"
Dan Gohmanb8d2f552008-08-20 15:58:01 +000028#include "llvm/ADT/FoldingSet.h"
Jeff Cohenc21c5ee2006-12-15 22:57:14 +000029#include <ostream>
Chris Lattner0742b592004-02-23 18:38:20 +000030using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000031
Chris Lattnerf7382302007-12-30 21:56:09 +000032//===----------------------------------------------------------------------===//
33// MachineOperand Implementation
34//===----------------------------------------------------------------------===//
35
Chris Lattner62ed6b92008-01-01 01:12:31 +000036/// AddRegOperandToRegInfo - Add this register operand to the specified
37/// MachineRegisterInfo. If it is null, then the next/prev fields should be
38/// explicitly nulled out.
39void MachineOperand::AddRegOperandToRegInfo(MachineRegisterInfo *RegInfo) {
Dan Gohmand735b802008-10-03 15:45:36 +000040 assert(isReg() && "Can only add reg operand to use lists");
Chris Lattner62ed6b92008-01-01 01:12:31 +000041
42 // If the reginfo pointer is null, just explicitly null out or next/prev
43 // pointers, to ensure they are not garbage.
44 if (RegInfo == 0) {
45 Contents.Reg.Prev = 0;
46 Contents.Reg.Next = 0;
47 return;
48 }
49
50 // Otherwise, add this operand to the head of the registers use/def list.
Chris Lattner80fe5312008-01-01 21:08:22 +000051 MachineOperand **Head = &RegInfo->getRegUseDefListHead(getReg());
Chris Lattner62ed6b92008-01-01 01:12:31 +000052
Chris Lattner80fe5312008-01-01 21:08:22 +000053 // For SSA values, we prefer to keep the definition at the start of the list.
54 // we do this by skipping over the definition if it is at the head of the
55 // list.
56 if (*Head && (*Head)->isDef())
57 Head = &(*Head)->Contents.Reg.Next;
58
59 Contents.Reg.Next = *Head;
Chris Lattner62ed6b92008-01-01 01:12:31 +000060 if (Contents.Reg.Next) {
61 assert(getReg() == Contents.Reg.Next->getReg() &&
62 "Different regs on the same list!");
63 Contents.Reg.Next->Contents.Reg.Prev = &Contents.Reg.Next;
64 }
65
Chris Lattner80fe5312008-01-01 21:08:22 +000066 Contents.Reg.Prev = Head;
67 *Head = this;
Chris Lattner62ed6b92008-01-01 01:12:31 +000068}
69
70void MachineOperand::setReg(unsigned Reg) {
71 if (getReg() == Reg) return; // No change.
72
73 // Otherwise, we have to change the register. If this operand is embedded
74 // into a machine function, we need to update the old and new register's
75 // use/def lists.
76 if (MachineInstr *MI = getParent())
77 if (MachineBasicBlock *MBB = MI->getParent())
78 if (MachineFunction *MF = MBB->getParent()) {
79 RemoveRegOperandFromRegInfo();
80 Contents.Reg.RegNo = Reg;
81 AddRegOperandToRegInfo(&MF->getRegInfo());
82 return;
83 }
84
85 // Otherwise, just change the register, no problem. :)
86 Contents.Reg.RegNo = Reg;
87}
88
89/// ChangeToImmediate - Replace this operand with a new immediate operand of
90/// the specified value. If an operand is known to be an immediate already,
91/// the setImm method should be used.
92void MachineOperand::ChangeToImmediate(int64_t ImmVal) {
93 // If this operand is currently a register operand, and if this is in a
94 // function, deregister the operand from the register's use/def list.
Dan Gohmand735b802008-10-03 15:45:36 +000095 if (isReg() && getParent() && getParent()->getParent() &&
Chris Lattner62ed6b92008-01-01 01:12:31 +000096 getParent()->getParent()->getParent())
97 RemoveRegOperandFromRegInfo();
98
99 OpKind = MO_Immediate;
100 Contents.ImmVal = ImmVal;
101}
102
103/// ChangeToRegister - Replace this operand with a new register operand of
104/// the specified value. If an operand is known to be an register already,
105/// the setReg method should be used.
106void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp,
Dale Johannesene0091802008-09-14 01:44:36 +0000107 bool isKill, bool isDead) {
Chris Lattner62ed6b92008-01-01 01:12:31 +0000108 // If this operand is already a register operand, use setReg to update the
109 // register's use/def lists.
Dan Gohmand735b802008-10-03 15:45:36 +0000110 if (isReg()) {
Dale Johannesene0091802008-09-14 01:44:36 +0000111 assert(!isEarlyClobber());
Chris Lattner62ed6b92008-01-01 01:12:31 +0000112 setReg(Reg);
113 } else {
114 // Otherwise, change this to a register and set the reg#.
115 OpKind = MO_Register;
116 Contents.Reg.RegNo = Reg;
117
118 // If this operand is embedded in a function, add the operand to the
119 // register's use/def list.
120 if (MachineInstr *MI = getParent())
121 if (MachineBasicBlock *MBB = MI->getParent())
122 if (MachineFunction *MF = MBB->getParent())
123 AddRegOperandToRegInfo(&MF->getRegInfo());
124 }
125
126 IsDef = isDef;
127 IsImp = isImp;
128 IsKill = isKill;
129 IsDead = isDead;
Dale Johannesene0091802008-09-14 01:44:36 +0000130 IsEarlyClobber = false;
Chris Lattner62ed6b92008-01-01 01:12:31 +0000131 SubReg = 0;
132}
133
Chris Lattnerf7382302007-12-30 21:56:09 +0000134/// isIdenticalTo - Return true if this operand is identical to the specified
135/// operand.
136bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const {
137 if (getType() != Other.getType()) return false;
138
139 switch (getType()) {
140 default: assert(0 && "Unrecognized operand type");
141 case MachineOperand::MO_Register:
142 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
143 getSubReg() == Other.getSubReg();
144 case MachineOperand::MO_Immediate:
145 return getImm() == Other.getImm();
Nate Begemane8b7ccf2008-02-14 07:39:30 +0000146 case MachineOperand::MO_FPImmediate:
147 return getFPImm() == Other.getFPImm();
Chris Lattnerf7382302007-12-30 21:56:09 +0000148 case MachineOperand::MO_MachineBasicBlock:
149 return getMBB() == Other.getMBB();
150 case MachineOperand::MO_FrameIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000151 return getIndex() == Other.getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +0000152 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000153 return getIndex() == Other.getIndex() && getOffset() == Other.getOffset();
Chris Lattnerf7382302007-12-30 21:56:09 +0000154 case MachineOperand::MO_JumpTableIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000155 return getIndex() == Other.getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +0000156 case MachineOperand::MO_GlobalAddress:
157 return getGlobal() == Other.getGlobal() && getOffset() == Other.getOffset();
158 case MachineOperand::MO_ExternalSymbol:
159 return !strcmp(getSymbolName(), Other.getSymbolName()) &&
160 getOffset() == Other.getOffset();
161 }
162}
163
164/// print - Print the specified machine operand.
165///
166void MachineOperand::print(std::ostream &OS, const TargetMachine *TM) const {
Mon P Wang5ca6bd12008-10-10 01:43:55 +0000167 raw_os_ostream RawOS(OS);
168 print(RawOS, TM);
169}
170
171void MachineOperand::print(raw_ostream &OS, const TargetMachine *TM) const {
Chris Lattnerf7382302007-12-30 21:56:09 +0000172 switch (getType()) {
173 case MachineOperand::MO_Register:
Dan Gohman6f0d0242008-02-10 18:45:23 +0000174 if (getReg() == 0 || TargetRegisterInfo::isVirtualRegister(getReg())) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000175 OS << "%reg" << getReg();
176 } else {
177 // If the instruction is embedded into a basic block, we can find the
Chris Lattner62ed6b92008-01-01 01:12:31 +0000178 // target info for the instruction.
Chris Lattnerf7382302007-12-30 21:56:09 +0000179 if (TM == 0)
180 if (const MachineInstr *MI = getParent())
181 if (const MachineBasicBlock *MBB = MI->getParent())
182 if (const MachineFunction *MF = MBB->getParent())
183 TM = &MF->getTarget();
184
185 if (TM)
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000186 OS << "%" << TM->getRegisterInfo()->get(getReg()).Name;
Chris Lattnerf7382302007-12-30 21:56:09 +0000187 else
188 OS << "%mreg" << getReg();
189 }
Dan Gohman2ccc8392008-12-18 21:51:27 +0000190
191 if (getSubReg() != 0) {
192 OS << ":" << getSubReg();
193 }
194
Dale Johannesen86b49f82008-09-24 01:07:17 +0000195 if (isDef() || isKill() || isDead() || isImplicit() || isEarlyClobber()) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000196 OS << "<";
197 bool NeedComma = false;
198 if (isImplicit()) {
Dale Johannesen91aac102008-09-17 21:13:11 +0000199 if (NeedComma) OS << ",";
Chris Lattnerf7382302007-12-30 21:56:09 +0000200 OS << (isDef() ? "imp-def" : "imp-use");
201 NeedComma = true;
202 } else if (isDef()) {
Dale Johannesen91aac102008-09-17 21:13:11 +0000203 if (NeedComma) OS << ",";
Dale Johannesen913d3df2008-09-12 17:49:03 +0000204 if (isEarlyClobber())
205 OS << "earlyclobber,";
Chris Lattnerf7382302007-12-30 21:56:09 +0000206 OS << "def";
207 NeedComma = true;
208 }
209 if (isKill() || isDead()) {
Bill Wendling181eb732008-02-24 00:56:13 +0000210 if (NeedComma) OS << ",";
211 if (isKill()) OS << "kill";
212 if (isDead()) OS << "dead";
Chris Lattnerf7382302007-12-30 21:56:09 +0000213 }
214 OS << ">";
215 }
216 break;
217 case MachineOperand::MO_Immediate:
218 OS << getImm();
219 break;
Nate Begemane8b7ccf2008-02-14 07:39:30 +0000220 case MachineOperand::MO_FPImmediate:
221 if (getFPImm()->getType() == Type::FloatTy) {
222 OS << getFPImm()->getValueAPF().convertToFloat();
223 } else {
224 OS << getFPImm()->getValueAPF().convertToDouble();
225 }
226 break;
Chris Lattnerf7382302007-12-30 21:56:09 +0000227 case MachineOperand::MO_MachineBasicBlock:
228 OS << "mbb<"
Chris Lattner8aa797a2007-12-30 23:10:15 +0000229 << ((Value*)getMBB()->getBasicBlock())->getName()
230 << "," << (void*)getMBB() << ">";
Chris Lattnerf7382302007-12-30 21:56:09 +0000231 break;
232 case MachineOperand::MO_FrameIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000233 OS << "<fi#" << getIndex() << ">";
Chris Lattnerf7382302007-12-30 21:56:09 +0000234 break;
235 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000236 OS << "<cp#" << getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +0000237 if (getOffset()) OS << "+" << getOffset();
238 OS << ">";
239 break;
240 case MachineOperand::MO_JumpTableIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000241 OS << "<jt#" << getIndex() << ">";
Chris Lattnerf7382302007-12-30 21:56:09 +0000242 break;
243 case MachineOperand::MO_GlobalAddress:
244 OS << "<ga:" << ((Value*)getGlobal())->getName();
245 if (getOffset()) OS << "+" << getOffset();
246 OS << ">";
247 break;
248 case MachineOperand::MO_ExternalSymbol:
249 OS << "<es:" << getSymbolName();
250 if (getOffset()) OS << "+" << getOffset();
251 OS << ">";
252 break;
253 default:
254 assert(0 && "Unrecognized operand type");
255 }
256}
257
258//===----------------------------------------------------------------------===//
Dan Gohmance42e402008-07-07 20:32:02 +0000259// MachineMemOperand Implementation
260//===----------------------------------------------------------------------===//
261
262MachineMemOperand::MachineMemOperand(const Value *v, unsigned int f,
263 int64_t o, uint64_t s, unsigned int a)
264 : Offset(o), Size(s), V(v),
265 Flags((f & 7) | ((Log2_32(a) + 1) << 3)) {
Dan Gohmanf1bf29e2008-07-08 23:47:04 +0000266 assert(isPowerOf2_32(a) && "Alignment is not a power of 2!");
Dan Gohmanc5e1f982008-07-16 15:56:42 +0000267 assert((isLoad() || isStore()) && "Not a load/store!");
Dan Gohmance42e402008-07-07 20:32:02 +0000268}
269
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000270/// Profile - Gather unique data for the object.
271///
272void MachineMemOperand::Profile(FoldingSetNodeID &ID) const {
273 ID.AddInteger(Offset);
274 ID.AddInteger(Size);
275 ID.AddPointer(V);
276 ID.AddInteger(Flags);
277}
278
Dan Gohmance42e402008-07-07 20:32:02 +0000279//===----------------------------------------------------------------------===//
Chris Lattnerf7382302007-12-30 21:56:09 +0000280// MachineInstr Implementation
281//===----------------------------------------------------------------------===//
282
Evan Chengc0f64ff2006-11-27 23:37:22 +0000283/// MachineInstr ctor - This constructor creates a dummy MachineInstr with
Evan Cheng67f660c2006-11-30 07:08:44 +0000284/// TID NULL and no operands.
Evan Chengc0f64ff2006-11-27 23:37:22 +0000285MachineInstr::MachineInstr()
Dale Johannesen06efc022009-01-27 23:20:29 +0000286 : TID(0), NumImplicitOps(0), Parent(0), debugLoc(DebugLoc::getUnknownLoc()) {
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000287 // Make sure that we get added to a machine basicblock
288 LeakDetector::addGarbageObject(this);
Chris Lattner72791222002-10-28 20:59:49 +0000289}
290
Evan Cheng67f660c2006-11-30 07:08:44 +0000291void MachineInstr::addImplicitDefUseOperands() {
292 if (TID->ImplicitDefs)
Chris Lattnera4161ee2007-12-30 00:12:25 +0000293 for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
Chris Lattner8019f412007-12-30 00:41:17 +0000294 addOperand(MachineOperand::CreateReg(*ImpDefs, true, true));
Evan Cheng67f660c2006-11-30 07:08:44 +0000295 if (TID->ImplicitUses)
Chris Lattnera4161ee2007-12-30 00:12:25 +0000296 for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
Chris Lattner8019f412007-12-30 00:41:17 +0000297 addOperand(MachineOperand::CreateReg(*ImpUses, false, true));
Evan Chengd7de4962006-11-13 23:34:06 +0000298}
299
300/// MachineInstr ctor - This constructor create a MachineInstr and add the
Evan Chengc0f64ff2006-11-27 23:37:22 +0000301/// implicit operands. It reserves space for number of operands specified by
Chris Lattner749c6f62008-01-07 07:27:27 +0000302/// TargetInstrDesc or the numOperands if it is not zero. (for
Evan Chengc0f64ff2006-11-27 23:37:22 +0000303/// instructions with variable number of operands).
Chris Lattner749c6f62008-01-07 07:27:27 +0000304MachineInstr::MachineInstr(const TargetInstrDesc &tid, bool NoImp)
Dale Johannesen06efc022009-01-27 23:20:29 +0000305 : TID(&tid), NumImplicitOps(0), Parent(0),
306 debugLoc(DebugLoc::getUnknownLoc()) {
Chris Lattner349c4952008-01-07 03:13:06 +0000307 if (!NoImp && TID->getImplicitDefs())
308 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
Evan Chengd7de4962006-11-13 23:34:06 +0000309 NumImplicitOps++;
Chris Lattner349c4952008-01-07 03:13:06 +0000310 if (!NoImp && TID->getImplicitUses())
311 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
Evan Chengd7de4962006-11-13 23:34:06 +0000312 NumImplicitOps++;
Chris Lattner349c4952008-01-07 03:13:06 +0000313 Operands.reserve(NumImplicitOps + TID->getNumOperands());
Evan Chengfa945722007-10-13 02:23:01 +0000314 if (!NoImp)
315 addImplicitDefUseOperands();
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000316 // Make sure that we get added to a machine basicblock
317 LeakDetector::addGarbageObject(this);
Evan Chengd7de4962006-11-13 23:34:06 +0000318}
319
Dale Johannesen06efc022009-01-27 23:20:29 +0000320/// MachineInstr ctor - As above, but with a DebugLoc.
321MachineInstr::MachineInstr(const TargetInstrDesc &tid, const DebugLoc dl,
322 bool NoImp)
323 : TID(&tid), NumImplicitOps(0), Parent(0), debugLoc(dl) {
324 if (!NoImp && TID->getImplicitDefs())
325 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
326 NumImplicitOps++;
327 if (!NoImp && TID->getImplicitUses())
328 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
329 NumImplicitOps++;
330 Operands.reserve(NumImplicitOps + TID->getNumOperands());
331 if (!NoImp)
332 addImplicitDefUseOperands();
333 // Make sure that we get added to a machine basicblock
334 LeakDetector::addGarbageObject(this);
335}
336
337/// MachineInstr ctor - Work exactly the same as the ctor two above, except
338/// that the MachineInstr is created and added to the end of the specified
339/// basic block.
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000340///
Dale Johannesen06efc022009-01-27 23:20:29 +0000341MachineInstr::MachineInstr(MachineBasicBlock *MBB, const TargetInstrDesc &tid)
342 : TID(&tid), NumImplicitOps(0), Parent(0),
343 debugLoc(DebugLoc::getUnknownLoc()) {
344 assert(MBB && "Cannot use inserting ctor with null basic block!");
345 if (TID->ImplicitDefs)
346 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
347 NumImplicitOps++;
348 if (TID->ImplicitUses)
349 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
350 NumImplicitOps++;
351 Operands.reserve(NumImplicitOps + TID->getNumOperands());
352 addImplicitDefUseOperands();
353 // Make sure that we get added to a machine basicblock
354 LeakDetector::addGarbageObject(this);
355 MBB->push_back(this); // Add instruction to end of basic block!
356}
357
358/// MachineInstr ctor - As above, but with a DebugLoc.
359///
360MachineInstr::MachineInstr(MachineBasicBlock *MBB, const DebugLoc dl,
Chris Lattner749c6f62008-01-07 07:27:27 +0000361 const TargetInstrDesc &tid)
Dale Johannesen06efc022009-01-27 23:20:29 +0000362 : TID(&tid), NumImplicitOps(0), Parent(0), debugLoc(dl) {
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000363 assert(MBB && "Cannot use inserting ctor with null basic block!");
Evan Cheng67f660c2006-11-30 07:08:44 +0000364 if (TID->ImplicitDefs)
Chris Lattner349c4952008-01-07 03:13:06 +0000365 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
Evan Chengd7de4962006-11-13 23:34:06 +0000366 NumImplicitOps++;
Evan Cheng67f660c2006-11-30 07:08:44 +0000367 if (TID->ImplicitUses)
Chris Lattner349c4952008-01-07 03:13:06 +0000368 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
Evan Chengd7de4962006-11-13 23:34:06 +0000369 NumImplicitOps++;
Chris Lattner349c4952008-01-07 03:13:06 +0000370 Operands.reserve(NumImplicitOps + TID->getNumOperands());
Evan Cheng67f660c2006-11-30 07:08:44 +0000371 addImplicitDefUseOperands();
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000372 // Make sure that we get added to a machine basicblock
373 LeakDetector::addGarbageObject(this);
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000374 MBB->push_back(this); // Add instruction to end of basic block!
375}
376
Misha Brukmance22e762004-07-09 14:45:17 +0000377/// MachineInstr ctor - Copies MachineInstr arg exactly
378///
Evan Cheng1ed99222008-07-19 00:37:25 +0000379MachineInstr::MachineInstr(MachineFunction &MF, const MachineInstr &MI)
Dale Johannesen06efc022009-01-27 23:20:29 +0000380 : TID(&MI.getDesc()), NumImplicitOps(0), Parent(0),
381 debugLoc(MI.getDebugLoc()) {
Chris Lattner943b5e12006-05-04 19:14:44 +0000382 Operands.reserve(MI.getNumOperands());
Tanya Lattnerb5159ed2004-05-23 20:58:02 +0000383
Misha Brukmance22e762004-07-09 14:45:17 +0000384 // Add operands
Evan Cheng1ed99222008-07-19 00:37:25 +0000385 for (unsigned i = 0; i != MI.getNumOperands(); ++i)
386 addOperand(MI.getOperand(i));
387 NumImplicitOps = MI.NumImplicitOps;
Tanya Lattner0c63e032004-05-24 03:14:18 +0000388
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000389 // Add memory operands.
Dan Gohmanfed90b62008-07-28 21:51:04 +0000390 for (std::list<MachineMemOperand>::const_iterator i = MI.memoperands_begin(),
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000391 j = MI.memoperands_end(); i != j; ++i)
392 addMemOperand(MF, *i);
393
394 // Set parent to null.
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000395 Parent = 0;
Dan Gohman6116a732008-07-21 18:47:29 +0000396
397 LeakDetector::addGarbageObject(this);
Tanya Lattner466b5342004-05-23 19:35:12 +0000398}
399
Misha Brukmance22e762004-07-09 14:45:17 +0000400MachineInstr::~MachineInstr() {
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000401 LeakDetector::removeGarbageObject(this);
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000402 assert(MemOperands.empty() &&
403 "MachineInstr being deleted with live memoperands!");
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000404#ifndef NDEBUG
Chris Lattner62ed6b92008-01-01 01:12:31 +0000405 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000406 assert(Operands[i].ParentMI == this && "ParentMI mismatch!");
Dan Gohmand735b802008-10-03 15:45:36 +0000407 assert((!Operands[i].isReg() || !Operands[i].isOnRegUseList()) &&
Chris Lattner62ed6b92008-01-01 01:12:31 +0000408 "Reg operand def/use list corrupted");
409 }
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000410#endif
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000411}
412
Chris Lattner62ed6b92008-01-01 01:12:31 +0000413/// getRegInfo - If this instruction is embedded into a MachineFunction,
414/// return the MachineRegisterInfo object for the current function, otherwise
415/// return null.
416MachineRegisterInfo *MachineInstr::getRegInfo() {
417 if (MachineBasicBlock *MBB = getParent())
Dan Gohman4e526b92008-07-08 23:59:09 +0000418 return &MBB->getParent()->getRegInfo();
Chris Lattner62ed6b92008-01-01 01:12:31 +0000419 return 0;
420}
421
422/// RemoveRegOperandsFromUseLists - Unlink all of the register operands in
423/// this instruction from their respective use lists. This requires that the
424/// operands already be on their use lists.
425void MachineInstr::RemoveRegOperandsFromUseLists() {
426 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
Dan Gohmand735b802008-10-03 15:45:36 +0000427 if (Operands[i].isReg())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000428 Operands[i].RemoveRegOperandFromRegInfo();
429 }
430}
431
432/// AddRegOperandsToUseLists - Add all of the register operands in
433/// this instruction from their respective use lists. This requires that the
434/// operands not be on their use lists yet.
435void MachineInstr::AddRegOperandsToUseLists(MachineRegisterInfo &RegInfo) {
436 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
Dan Gohmand735b802008-10-03 15:45:36 +0000437 if (Operands[i].isReg())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000438 Operands[i].AddRegOperandToRegInfo(&RegInfo);
439 }
440}
441
442
443/// addOperand - Add the specified operand to the instruction. If it is an
444/// implicit operand, it is added to the end of the operand list. If it is
445/// an explicit operand it is added at the end of the explicit operand list
446/// (before the first implicit operand).
447void MachineInstr::addOperand(const MachineOperand &Op) {
Dan Gohmand735b802008-10-03 15:45:36 +0000448 bool isImpReg = Op.isReg() && Op.isImplicit();
Chris Lattner62ed6b92008-01-01 01:12:31 +0000449 assert((isImpReg || !OperandsComplete()) &&
450 "Trying to add an operand to a machine instr that is already done!");
451
Dan Gohmanbcf28c02008-12-09 22:45:08 +0000452 MachineRegisterInfo *RegInfo = getRegInfo();
453
Chris Lattner62ed6b92008-01-01 01:12:31 +0000454 // If we are adding the operand to the end of the list, our job is simpler.
455 // This is true most of the time, so this is a reasonable optimization.
456 if (isImpReg || NumImplicitOps == 0) {
457 // We can only do this optimization if we know that the operand list won't
458 // reallocate.
459 if (Operands.empty() || Operands.size()+1 <= Operands.capacity()) {
460 Operands.push_back(Op);
461
462 // Set the parent of the operand.
463 Operands.back().ParentMI = this;
464
465 // If the operand is a register, update the operand's use list.
Dan Gohmand735b802008-10-03 15:45:36 +0000466 if (Op.isReg())
Dan Gohmanbcf28c02008-12-09 22:45:08 +0000467 Operands.back().AddRegOperandToRegInfo(RegInfo);
Chris Lattner62ed6b92008-01-01 01:12:31 +0000468 return;
469 }
470 }
471
472 // Otherwise, we have to insert a real operand before any implicit ones.
473 unsigned OpNo = Operands.size()-NumImplicitOps;
474
Chris Lattner62ed6b92008-01-01 01:12:31 +0000475 // If this instruction isn't embedded into a function, then we don't need to
476 // update any operand lists.
477 if (RegInfo == 0) {
478 // Simple insertion, no reginfo update needed for other register operands.
479 Operands.insert(Operands.begin()+OpNo, Op);
480 Operands[OpNo].ParentMI = this;
481
482 // Do explicitly set the reginfo for this operand though, to ensure the
483 // next/prev fields are properly nulled out.
Dan Gohmand735b802008-10-03 15:45:36 +0000484 if (Operands[OpNo].isReg())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000485 Operands[OpNo].AddRegOperandToRegInfo(0);
486
487 } else if (Operands.size()+1 <= Operands.capacity()) {
488 // Otherwise, we have to remove register operands from their register use
489 // list, add the operand, then add the register operands back to their use
490 // list. This also must handle the case when the operand list reallocates
491 // to somewhere else.
492
493 // If insertion of this operand won't cause reallocation of the operand
494 // list, just remove the implicit operands, add the operand, then re-add all
495 // the rest of the operands.
496 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
Dan Gohmand735b802008-10-03 15:45:36 +0000497 assert(Operands[i].isReg() && "Should only be an implicit reg!");
Chris Lattner62ed6b92008-01-01 01:12:31 +0000498 Operands[i].RemoveRegOperandFromRegInfo();
499 }
500
501 // Add the operand. If it is a register, add it to the reg list.
502 Operands.insert(Operands.begin()+OpNo, Op);
503 Operands[OpNo].ParentMI = this;
504
Dan Gohmand735b802008-10-03 15:45:36 +0000505 if (Operands[OpNo].isReg())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000506 Operands[OpNo].AddRegOperandToRegInfo(RegInfo);
507
508 // Re-add all the implicit ops.
509 for (unsigned i = OpNo+1, e = Operands.size(); i != e; ++i) {
Dan Gohmand735b802008-10-03 15:45:36 +0000510 assert(Operands[i].isReg() && "Should only be an implicit reg!");
Chris Lattner62ed6b92008-01-01 01:12:31 +0000511 Operands[i].AddRegOperandToRegInfo(RegInfo);
512 }
513 } else {
514 // Otherwise, we will be reallocating the operand list. Remove all reg
515 // operands from their list, then readd them after the operand list is
516 // reallocated.
517 RemoveRegOperandsFromUseLists();
518
519 Operands.insert(Operands.begin()+OpNo, Op);
520 Operands[OpNo].ParentMI = this;
521
522 // Re-add all the operands.
523 AddRegOperandsToUseLists(*RegInfo);
524 }
525}
526
527/// RemoveOperand - Erase an operand from an instruction, leaving it with one
528/// fewer operand than it started with.
529///
530void MachineInstr::RemoveOperand(unsigned OpNo) {
531 assert(OpNo < Operands.size() && "Invalid operand number");
532
533 // Special case removing the last one.
534 if (OpNo == Operands.size()-1) {
535 // If needed, remove from the reg def/use list.
Dan Gohmand735b802008-10-03 15:45:36 +0000536 if (Operands.back().isReg() && Operands.back().isOnRegUseList())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000537 Operands.back().RemoveRegOperandFromRegInfo();
538
539 Operands.pop_back();
540 return;
541 }
542
543 // Otherwise, we are removing an interior operand. If we have reginfo to
544 // update, remove all operands that will be shifted down from their reg lists,
545 // move everything down, then re-add them.
546 MachineRegisterInfo *RegInfo = getRegInfo();
547 if (RegInfo) {
548 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
Dan Gohmand735b802008-10-03 15:45:36 +0000549 if (Operands[i].isReg())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000550 Operands[i].RemoveRegOperandFromRegInfo();
551 }
552 }
553
554 Operands.erase(Operands.begin()+OpNo);
555
556 if (RegInfo) {
557 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
Dan Gohmand735b802008-10-03 15:45:36 +0000558 if (Operands[i].isReg())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000559 Operands[i].AddRegOperandToRegInfo(RegInfo);
560 }
561 }
562}
563
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000564/// addMemOperand - Add a MachineMemOperand to the machine instruction,
565/// referencing arbitrary storage.
566void MachineInstr::addMemOperand(MachineFunction &MF,
567 const MachineMemOperand &MO) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000568 MemOperands.push_back(MO);
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000569}
570
571/// clearMemOperands - Erase all of this MachineInstr's MachineMemOperands.
572void MachineInstr::clearMemOperands(MachineFunction &MF) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000573 MemOperands.clear();
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000574}
575
Chris Lattner62ed6b92008-01-01 01:12:31 +0000576
Chris Lattner48d7c062006-04-17 21:35:41 +0000577/// removeFromParent - This method unlinks 'this' from the containing basic
578/// block, and returns it, but does not delete it.
579MachineInstr *MachineInstr::removeFromParent() {
580 assert(getParent() && "Not embedded in a basic block!");
581 getParent()->remove(this);
582 return this;
583}
584
585
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000586/// eraseFromParent - This method unlinks 'this' from the containing basic
587/// block, and deletes it.
588void MachineInstr::eraseFromParent() {
589 assert(getParent() && "Not embedded in a basic block!");
590 getParent()->erase(this);
591}
592
593
Brian Gaeke21326fc2004-02-13 04:39:32 +0000594/// OperandComplete - Return true if it's illegal to add a new operand
595///
Chris Lattner2a90ba62004-02-12 16:09:53 +0000596bool MachineInstr::OperandsComplete() const {
Chris Lattner349c4952008-01-07 03:13:06 +0000597 unsigned short NumOperands = TID->getNumOperands();
Chris Lattner8f707e12008-01-07 05:19:29 +0000598 if (!TID->isVariadic() && getNumOperands()-NumImplicitOps >= NumOperands)
Vikram S. Adve34977822003-05-31 07:39:06 +0000599 return true; // Broken: we have all the operands of this instruction!
Chris Lattner413746e2002-10-28 20:48:39 +0000600 return false;
601}
602
Evan Cheng19e3f312007-05-15 01:26:09 +0000603/// getNumExplicitOperands - Returns the number of non-implicit operands.
604///
605unsigned MachineInstr::getNumExplicitOperands() const {
Chris Lattner349c4952008-01-07 03:13:06 +0000606 unsigned NumOperands = TID->getNumOperands();
Chris Lattner8f707e12008-01-07 05:19:29 +0000607 if (!TID->isVariadic())
Evan Cheng19e3f312007-05-15 01:26:09 +0000608 return NumOperands;
609
610 for (unsigned e = getNumOperands(); NumOperands != e; ++NumOperands) {
611 const MachineOperand &MO = getOperand(NumOperands);
Dan Gohmand735b802008-10-03 15:45:36 +0000612 if (!MO.isReg() || !MO.isImplicit())
Evan Cheng19e3f312007-05-15 01:26:09 +0000613 NumOperands++;
614 }
615 return NumOperands;
616}
617
Chris Lattner8ace2cd2006-10-20 22:39:59 +0000618
Dan Gohman44066042008-07-01 00:05:16 +0000619/// isLabel - Returns true if the MachineInstr represents a label.
620///
621bool MachineInstr::isLabel() const {
622 return getOpcode() == TargetInstrInfo::DBG_LABEL ||
623 getOpcode() == TargetInstrInfo::EH_LABEL ||
624 getOpcode() == TargetInstrInfo::GC_LABEL;
625}
626
Evan Chengbb81d972008-01-31 09:59:15 +0000627/// isDebugLabel - Returns true if the MachineInstr represents a debug label.
628///
629bool MachineInstr::isDebugLabel() const {
Dan Gohman44066042008-07-01 00:05:16 +0000630 return getOpcode() == TargetInstrInfo::DBG_LABEL;
Evan Chengbb81d972008-01-31 09:59:15 +0000631}
632
Evan Chengfaa51072007-04-26 19:00:32 +0000633/// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of
Evan Cheng32eb1f12007-03-26 22:37:45 +0000634/// the specific register or -1 if it is not found. It further tightening
Evan Cheng76d7e762007-02-23 01:04:26 +0000635/// the search criteria to a use that kills the register if isKill is true.
Evan Cheng6130f662008-03-05 00:59:57 +0000636int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill,
637 const TargetRegisterInfo *TRI) const {
Evan Cheng576d1232006-12-06 08:27:42 +0000638 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Evan Chengf277ee42007-05-29 18:35:22 +0000639 const MachineOperand &MO = getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000640 if (!MO.isReg() || !MO.isUse())
Evan Cheng6130f662008-03-05 00:59:57 +0000641 continue;
642 unsigned MOReg = MO.getReg();
643 if (!MOReg)
644 continue;
645 if (MOReg == Reg ||
646 (TRI &&
647 TargetRegisterInfo::isPhysicalRegister(MOReg) &&
648 TargetRegisterInfo::isPhysicalRegister(Reg) &&
649 TRI->isSubRegister(MOReg, Reg)))
Evan Cheng76d7e762007-02-23 01:04:26 +0000650 if (!isKill || MO.isKill())
Evan Cheng32eb1f12007-03-26 22:37:45 +0000651 return i;
Evan Cheng576d1232006-12-06 08:27:42 +0000652 }
Evan Cheng32eb1f12007-03-26 22:37:45 +0000653 return -1;
Evan Cheng576d1232006-12-06 08:27:42 +0000654}
655
Evan Cheng6130f662008-03-05 00:59:57 +0000656/// findRegisterDefOperandIdx() - Returns the operand index that is a def of
Dan Gohman703bfe62008-05-06 00:20:10 +0000657/// the specified register or -1 if it is not found. If isDead is true, defs
658/// that are not dead are skipped. If TargetRegisterInfo is non-null, then it
659/// also checks if there is a def of a super-register.
Evan Cheng6130f662008-03-05 00:59:57 +0000660int MachineInstr::findRegisterDefOperandIdx(unsigned Reg, bool isDead,
661 const TargetRegisterInfo *TRI) const {
Evan Chengb371f452007-02-19 21:49:54 +0000662 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Evan Cheng6130f662008-03-05 00:59:57 +0000663 const MachineOperand &MO = getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000664 if (!MO.isReg() || !MO.isDef())
Evan Cheng6130f662008-03-05 00:59:57 +0000665 continue;
666 unsigned MOReg = MO.getReg();
667 if (MOReg == Reg ||
668 (TRI &&
669 TargetRegisterInfo::isPhysicalRegister(MOReg) &&
670 TargetRegisterInfo::isPhysicalRegister(Reg) &&
671 TRI->isSubRegister(MOReg, Reg)))
672 if (!isDead || MO.isDead())
673 return i;
Evan Chengb371f452007-02-19 21:49:54 +0000674 }
Evan Cheng6130f662008-03-05 00:59:57 +0000675 return -1;
Evan Chengb371f452007-02-19 21:49:54 +0000676}
Evan Cheng19e3f312007-05-15 01:26:09 +0000677
Evan Chengf277ee42007-05-29 18:35:22 +0000678/// findFirstPredOperandIdx() - Find the index of the first operand in the
679/// operand list that is used to represent the predicate. It returns -1 if
680/// none is found.
681int MachineInstr::findFirstPredOperandIdx() const {
Chris Lattner749c6f62008-01-07 07:27:27 +0000682 const TargetInstrDesc &TID = getDesc();
683 if (TID.isPredicable()) {
Evan Cheng19e3f312007-05-15 01:26:09 +0000684 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner749c6f62008-01-07 07:27:27 +0000685 if (TID.OpInfo[i].isPredicate())
Evan Chengf277ee42007-05-29 18:35:22 +0000686 return i;
Evan Cheng19e3f312007-05-15 01:26:09 +0000687 }
688
Evan Chengf277ee42007-05-29 18:35:22 +0000689 return -1;
Evan Cheng19e3f312007-05-15 01:26:09 +0000690}
Evan Chengb371f452007-02-19 21:49:54 +0000691
Dan Gohman2ce7f202008-12-05 05:45:42 +0000692/// isRegReDefinedByTwoAddr - Given the index of a register def operand,
Evan Chengef0732d2008-07-10 07:35:43 +0000693/// check if the register def is a re-definition due to two addr elimination.
Dan Gohman2ce7f202008-12-05 05:45:42 +0000694bool MachineInstr::isRegReDefinedByTwoAddr(unsigned DefIdx) const{
695 assert(getOperand(DefIdx).isDef() && "DefIdx is not a def!");
Chris Lattner749c6f62008-01-07 07:27:27 +0000696 const TargetInstrDesc &TID = getDesc();
Evan Chengef0732d2008-07-10 07:35:43 +0000697 for (unsigned i = 0, e = TID.getNumOperands(); i != e; ++i) {
698 const MachineOperand &MO = getOperand(i);
Dan Gohman2ce7f202008-12-05 05:45:42 +0000699 if (MO.isReg() && MO.isUse() &&
Evan Chengef0732d2008-07-10 07:35:43 +0000700 TID.getOperandConstraint(i, TOI::TIED_TO) == (int)DefIdx)
701 return true;
Evan Cheng32dfbea2007-10-12 08:50:34 +0000702 }
703 return false;
704}
705
Evan Cheng576d1232006-12-06 08:27:42 +0000706/// copyKillDeadInfo - Copies kill / dead operand properties from MI.
707///
708void MachineInstr::copyKillDeadInfo(const MachineInstr *MI) {
709 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
710 const MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000711 if (!MO.isReg() || (!MO.isKill() && !MO.isDead()))
Evan Cheng576d1232006-12-06 08:27:42 +0000712 continue;
713 for (unsigned j = 0, ee = getNumOperands(); j != ee; ++j) {
714 MachineOperand &MOp = getOperand(j);
715 if (!MOp.isIdenticalTo(MO))
716 continue;
717 if (MO.isKill())
718 MOp.setIsKill();
719 else
720 MOp.setIsDead();
721 break;
722 }
723 }
724}
725
Evan Cheng19e3f312007-05-15 01:26:09 +0000726/// copyPredicates - Copies predicate operand(s) from MI.
727void MachineInstr::copyPredicates(const MachineInstr *MI) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000728 const TargetInstrDesc &TID = MI->getDesc();
Evan Chengb27087f2008-03-13 00:44:09 +0000729 if (!TID.isPredicable())
730 return;
731 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
732 if (TID.OpInfo[i].isPredicate()) {
733 // Predicated operands must be last operands.
734 addOperand(MI->getOperand(i));
Evan Cheng19e3f312007-05-15 01:26:09 +0000735 }
736 }
737}
738
Evan Cheng9f1c8312008-07-03 09:09:37 +0000739/// isSafeToMove - Return true if it is safe to move this instruction. If
740/// SawStore is set to true, it means that there is a store (or call) between
741/// the instruction's location and its intended destination.
Dan Gohmanb3b930a2008-11-18 19:04:29 +0000742bool MachineInstr::isSafeToMove(const TargetInstrInfo *TII,
743 bool &SawStore) const {
Evan Chengb27087f2008-03-13 00:44:09 +0000744 // Ignore stuff that we obviously can't move.
745 if (TID->mayStore() || TID->isCall()) {
746 SawStore = true;
747 return false;
748 }
Dan Gohman237dee12008-12-23 17:28:50 +0000749 if (TID->isTerminator() || TID->hasUnmodeledSideEffects())
Evan Chengb27087f2008-03-13 00:44:09 +0000750 return false;
751
752 // See if this instruction does a load. If so, we have to guarantee that the
753 // loaded value doesn't change between the load and the its intended
754 // destination. The check for isInvariantLoad gives the targe the chance to
755 // classify the load as always returning a constant, e.g. a constant pool
756 // load.
Dan Gohman3e4fb702008-09-24 00:06:15 +0000757 if (TID->mayLoad() && !TII->isInvariantLoad(this))
Evan Chengb27087f2008-03-13 00:44:09 +0000758 // Otherwise, this is a real load. If there is a store between the load and
Dan Gohman3e4fb702008-09-24 00:06:15 +0000759 // end of block, or if the laod is volatile, we can't move it.
Dan Gohmand790a5c2008-10-02 15:04:30 +0000760 return !SawStore && !hasVolatileMemoryRef();
Dan Gohman3e4fb702008-09-24 00:06:15 +0000761
Evan Chengb27087f2008-03-13 00:44:09 +0000762 return true;
763}
764
Evan Chengdf3b9932008-08-27 20:33:50 +0000765/// isSafeToReMat - Return true if it's safe to rematerialize the specified
766/// instruction which defined the specified register instead of copying it.
Dan Gohmanb3b930a2008-11-18 19:04:29 +0000767bool MachineInstr::isSafeToReMat(const TargetInstrInfo *TII,
768 unsigned DstReg) const {
Evan Chengdf3b9932008-08-27 20:33:50 +0000769 bool SawStore = false;
Evan Cheng3689ff42008-08-30 09:07:18 +0000770 if (!getDesc().isRematerializable() ||
771 !TII->isTriviallyReMaterializable(this) ||
772 !isSafeToMove(TII, SawStore))
Evan Chengdf3b9932008-08-27 20:33:50 +0000773 return false;
774 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Dan Gohmancbad42c2008-11-18 19:49:32 +0000775 const MachineOperand &MO = getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000776 if (!MO.isReg())
Evan Chengdf3b9932008-08-27 20:33:50 +0000777 continue;
778 // FIXME: For now, do not remat any instruction with register operands.
779 // Later on, we can loosen the restriction is the register operands have
780 // not been modified between the def and use. Note, this is different from
Evan Cheng8763c1c2008-08-27 20:58:54 +0000781 // MachineSink because the code is no longer in two-address form (at least
Evan Chengdf3b9932008-08-27 20:33:50 +0000782 // partially).
783 if (MO.isUse())
784 return false;
785 else if (!MO.isDead() && MO.getReg() != DstReg)
786 return false;
787 }
788 return true;
789}
790
Dan Gohman3e4fb702008-09-24 00:06:15 +0000791/// hasVolatileMemoryRef - Return true if this instruction may have a
792/// volatile memory reference, or if the information describing the
793/// memory reference is not available. Return false if it is known to
794/// have no volatile memory references.
795bool MachineInstr::hasVolatileMemoryRef() const {
796 // An instruction known never to access memory won't have a volatile access.
797 if (!TID->mayStore() &&
798 !TID->mayLoad() &&
799 !TID->isCall() &&
800 !TID->hasUnmodeledSideEffects())
801 return false;
802
803 // Otherwise, if the instruction has no memory reference information,
804 // conservatively assume it wasn't preserved.
805 if (memoperands_empty())
806 return true;
807
808 // Check the memory reference information for volatile references.
809 for (std::list<MachineMemOperand>::const_iterator I = memoperands_begin(),
810 E = memoperands_end(); I != E; ++I)
811 if (I->isVolatile())
812 return true;
813
814 return false;
815}
816
Brian Gaeke21326fc2004-02-13 04:39:32 +0000817void MachineInstr::dump() const {
Bill Wendlinge8156192006-12-07 01:30:32 +0000818 cerr << " " << *this;
Vikram S. Adve70bc4b52001-07-21 12:41:50 +0000819}
820
Tanya Lattnerb1407622004-06-25 00:13:11 +0000821void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const {
Mon P Wang5ca6bd12008-10-10 01:43:55 +0000822 raw_os_ostream RawOS(OS);
823 print(RawOS, TM);
824}
825
826void MachineInstr::print(raw_ostream &OS, const TargetMachine *TM) const {
Chris Lattnere3087892007-12-30 21:31:53 +0000827 // Specialize printing if op#0 is definition
Chris Lattner6a592272002-10-30 01:55:38 +0000828 unsigned StartOp = 0;
Dan Gohmand735b802008-10-03 15:45:36 +0000829 if (getNumOperands() && getOperand(0).isReg() && getOperand(0).isDef()) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000830 getOperand(0).print(OS, TM);
Chris Lattner6a592272002-10-30 01:55:38 +0000831 OS << " = ";
832 ++StartOp; // Don't print this operand again!
833 }
Tanya Lattnerb1407622004-06-25 00:13:11 +0000834
Chris Lattner749c6f62008-01-07 07:27:27 +0000835 OS << getDesc().getName();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000836
Chris Lattner6a592272002-10-30 01:55:38 +0000837 for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) {
838 if (i != StartOp)
839 OS << ",";
840 OS << " ";
Chris Lattnerf7382302007-12-30 21:56:09 +0000841 getOperand(i).print(OS, TM);
Chris Lattner10491642002-10-30 00:48:05 +0000842 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000843
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000844 if (!memoperands_empty()) {
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000845 OS << ", Mem:";
Dan Gohmanfed90b62008-07-28 21:51:04 +0000846 for (std::list<MachineMemOperand>::const_iterator i = memoperands_begin(),
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000847 e = memoperands_end(); i != e; ++i) {
848 const MachineMemOperand &MRO = *i;
Dan Gohman69de1932008-02-06 22:27:42 +0000849 const Value *V = MRO.getValue();
850
Dan Gohman69de1932008-02-06 22:27:42 +0000851 assert((MRO.isLoad() || MRO.isStore()) &&
852 "SV has to be a load, store or both.");
853
854 if (MRO.isVolatile())
855 OS << "Volatile ";
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000856
Dan Gohman69de1932008-02-06 22:27:42 +0000857 if (MRO.isLoad())
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000858 OS << "LD";
Dan Gohman69de1932008-02-06 22:27:42 +0000859 if (MRO.isStore())
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000860 OS << "ST";
Dan Gohman69de1932008-02-06 22:27:42 +0000861
Evan Chengbbd83222008-02-08 22:05:07 +0000862 OS << "(" << MRO.getSize() << "," << MRO.getAlignment() << ") [";
Dan Gohman69de1932008-02-06 22:27:42 +0000863
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000864 if (!V)
865 OS << "<unknown>";
866 else if (!V->getName().empty())
867 OS << V->getName();
Chris Lattneredfb72c2008-08-24 20:37:32 +0000868 else if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V)) {
Mon P Wang5ca6bd12008-10-10 01:43:55 +0000869 PSV->print(OS);
Chris Lattneredfb72c2008-08-24 20:37:32 +0000870 } else
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000871 OS << V;
872
873 OS << " + " << MRO.getOffset() << "]";
Dan Gohman69de1932008-02-06 22:27:42 +0000874 }
875 }
876
Chris Lattner10491642002-10-30 00:48:05 +0000877 OS << "\n";
878}
879
Owen Andersonb487e722008-01-24 01:10:07 +0000880bool MachineInstr::addRegisterKilled(unsigned IncomingReg,
Dan Gohman6f0d0242008-02-10 18:45:23 +0000881 const TargetRegisterInfo *RegInfo,
Owen Andersonb487e722008-01-24 01:10:07 +0000882 bool AddIfNotFound) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000883 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg);
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000884 bool hasAliases = isPhysReg && RegInfo->getAliasSet(IncomingReg);
Dan Gohman3f629402008-09-03 15:56:16 +0000885 bool Found = false;
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000886 SmallVector<unsigned,4> DeadOps;
Bill Wendling4a23d722008-03-03 22:14:33 +0000887 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
888 MachineOperand &MO = getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000889 if (!MO.isReg() || !MO.isUse())
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000890 continue;
891 unsigned Reg = MO.getReg();
892 if (!Reg)
893 continue;
Bill Wendling4a23d722008-03-03 22:14:33 +0000894
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000895 if (Reg == IncomingReg) {
Dan Gohman3f629402008-09-03 15:56:16 +0000896 if (!Found) {
897 if (MO.isKill())
898 // The register is already marked kill.
899 return true;
900 MO.setIsKill();
901 Found = true;
902 }
903 } else if (hasAliases && MO.isKill() &&
904 TargetRegisterInfo::isPhysicalRegister(Reg)) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000905 // A super-register kill already exists.
906 if (RegInfo->isSuperRegister(IncomingReg, Reg))
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000907 return true;
908 if (RegInfo->isSubRegister(IncomingReg, Reg))
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000909 DeadOps.push_back(i);
Bill Wendling4a23d722008-03-03 22:14:33 +0000910 }
911 }
912
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000913 // Trim unneeded kill operands.
914 while (!DeadOps.empty()) {
915 unsigned OpIdx = DeadOps.back();
916 if (getOperand(OpIdx).isImplicit())
917 RemoveOperand(OpIdx);
918 else
919 getOperand(OpIdx).setIsKill(false);
920 DeadOps.pop_back();
921 }
922
Bill Wendling4a23d722008-03-03 22:14:33 +0000923 // If not found, this means an alias of one of the operands is killed. Add a
Owen Andersonb487e722008-01-24 01:10:07 +0000924 // new implicit operand if required.
Dan Gohman3f629402008-09-03 15:56:16 +0000925 if (!Found && AddIfNotFound) {
Bill Wendling4a23d722008-03-03 22:14:33 +0000926 addOperand(MachineOperand::CreateReg(IncomingReg,
927 false /*IsDef*/,
928 true /*IsImp*/,
929 true /*IsKill*/));
Owen Andersonb487e722008-01-24 01:10:07 +0000930 return true;
931 }
Dan Gohman3f629402008-09-03 15:56:16 +0000932 return Found;
Owen Andersonb487e722008-01-24 01:10:07 +0000933}
934
935bool MachineInstr::addRegisterDead(unsigned IncomingReg,
Dan Gohman6f0d0242008-02-10 18:45:23 +0000936 const TargetRegisterInfo *RegInfo,
Owen Andersonb487e722008-01-24 01:10:07 +0000937 bool AddIfNotFound) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000938 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg);
Evan Cheng01b2e232008-06-27 22:11:49 +0000939 bool hasAliases = isPhysReg && RegInfo->getAliasSet(IncomingReg);
Dan Gohman3f629402008-09-03 15:56:16 +0000940 bool Found = false;
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000941 SmallVector<unsigned,4> DeadOps;
Owen Andersonb487e722008-01-24 01:10:07 +0000942 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
943 MachineOperand &MO = getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000944 if (!MO.isReg() || !MO.isDef())
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000945 continue;
946 unsigned Reg = MO.getReg();
Dan Gohman3f629402008-09-03 15:56:16 +0000947 if (!Reg)
948 continue;
949
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000950 if (Reg == IncomingReg) {
Dan Gohman3f629402008-09-03 15:56:16 +0000951 if (!Found) {
952 if (MO.isDead())
953 // The register is already marked dead.
954 return true;
955 MO.setIsDead();
956 Found = true;
957 }
958 } else if (hasAliases && MO.isDead() &&
959 TargetRegisterInfo::isPhysicalRegister(Reg)) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000960 // There exists a super-register that's marked dead.
961 if (RegInfo->isSuperRegister(IncomingReg, Reg))
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000962 return true;
Owen Anderson22ae9992008-08-14 18:34:18 +0000963 if (RegInfo->getSubRegisters(IncomingReg) &&
964 RegInfo->getSuperRegisters(Reg) &&
965 RegInfo->isSubRegister(IncomingReg, Reg))
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000966 DeadOps.push_back(i);
Owen Andersonb487e722008-01-24 01:10:07 +0000967 }
968 }
969
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000970 // Trim unneeded dead operands.
971 while (!DeadOps.empty()) {
972 unsigned OpIdx = DeadOps.back();
973 if (getOperand(OpIdx).isImplicit())
974 RemoveOperand(OpIdx);
975 else
976 getOperand(OpIdx).setIsDead(false);
977 DeadOps.pop_back();
978 }
979
Dan Gohman3f629402008-09-03 15:56:16 +0000980 // If not found, this means an alias of one of the operands is dead. Add a
981 // new implicit operand if required.
982 if (!Found && AddIfNotFound) {
983 addOperand(MachineOperand::CreateReg(IncomingReg,
984 true /*IsDef*/,
985 true /*IsImp*/,
986 false /*IsKill*/,
987 true /*IsDead*/));
Owen Andersonb487e722008-01-24 01:10:07 +0000988 return true;
989 }
Dan Gohman3f629402008-09-03 15:56:16 +0000990 return Found;
Owen Andersonb487e722008-01-24 01:10:07 +0000991}