blob: 7f2a7b6a0779a62a508299b29fc7162d23c56330 [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 Gohman014278e2008-09-13 17:58:21 +000040 assert(isRegister() && "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 Gohman014278e2008-09-13 17:58:21 +000095 if (isRegister() && 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 Gohman014278e2008-09-13 17:58:21 +0000110 if (isRegister()) {
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 {
167 switch (getType()) {
168 case MachineOperand::MO_Register:
Dan Gohman6f0d0242008-02-10 18:45:23 +0000169 if (getReg() == 0 || TargetRegisterInfo::isVirtualRegister(getReg())) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000170 OS << "%reg" << getReg();
171 } else {
172 // If the instruction is embedded into a basic block, we can find the
Chris Lattner62ed6b92008-01-01 01:12:31 +0000173 // target info for the instruction.
Chris Lattnerf7382302007-12-30 21:56:09 +0000174 if (TM == 0)
175 if (const MachineInstr *MI = getParent())
176 if (const MachineBasicBlock *MBB = MI->getParent())
177 if (const MachineFunction *MF = MBB->getParent())
178 TM = &MF->getTarget();
179
180 if (TM)
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000181 OS << "%" << TM->getRegisterInfo()->get(getReg()).Name;
Chris Lattnerf7382302007-12-30 21:56:09 +0000182 else
183 OS << "%mreg" << getReg();
184 }
185
Dale Johannesen913d3df2008-09-12 17:49:03 +0000186 if (isDef() || isKill() || isDead() || isImplicit() || isEarlyClobber()) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000187 OS << "<";
188 bool NeedComma = false;
189 if (isImplicit()) {
190 OS << (isDef() ? "imp-def" : "imp-use");
191 NeedComma = true;
192 } else if (isDef()) {
Dale Johannesen913d3df2008-09-12 17:49:03 +0000193 if (isEarlyClobber())
194 OS << "earlyclobber,";
Chris Lattnerf7382302007-12-30 21:56:09 +0000195 OS << "def";
196 NeedComma = true;
197 }
198 if (isKill() || isDead()) {
Bill Wendling181eb732008-02-24 00:56:13 +0000199 if (NeedComma) OS << ",";
200 if (isKill()) OS << "kill";
201 if (isDead()) OS << "dead";
Chris Lattnerf7382302007-12-30 21:56:09 +0000202 }
203 OS << ">";
204 }
205 break;
206 case MachineOperand::MO_Immediate:
207 OS << getImm();
208 break;
Nate Begemane8b7ccf2008-02-14 07:39:30 +0000209 case MachineOperand::MO_FPImmediate:
210 if (getFPImm()->getType() == Type::FloatTy) {
211 OS << getFPImm()->getValueAPF().convertToFloat();
212 } else {
213 OS << getFPImm()->getValueAPF().convertToDouble();
214 }
215 break;
Chris Lattnerf7382302007-12-30 21:56:09 +0000216 case MachineOperand::MO_MachineBasicBlock:
217 OS << "mbb<"
Chris Lattner8aa797a2007-12-30 23:10:15 +0000218 << ((Value*)getMBB()->getBasicBlock())->getName()
219 << "," << (void*)getMBB() << ">";
Chris Lattnerf7382302007-12-30 21:56:09 +0000220 break;
221 case MachineOperand::MO_FrameIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000222 OS << "<fi#" << getIndex() << ">";
Chris Lattnerf7382302007-12-30 21:56:09 +0000223 break;
224 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000225 OS << "<cp#" << getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +0000226 if (getOffset()) OS << "+" << getOffset();
227 OS << ">";
228 break;
229 case MachineOperand::MO_JumpTableIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000230 OS << "<jt#" << getIndex() << ">";
Chris Lattnerf7382302007-12-30 21:56:09 +0000231 break;
232 case MachineOperand::MO_GlobalAddress:
233 OS << "<ga:" << ((Value*)getGlobal())->getName();
234 if (getOffset()) OS << "+" << getOffset();
235 OS << ">";
236 break;
237 case MachineOperand::MO_ExternalSymbol:
238 OS << "<es:" << getSymbolName();
239 if (getOffset()) OS << "+" << getOffset();
240 OS << ">";
241 break;
242 default:
243 assert(0 && "Unrecognized operand type");
244 }
245}
246
247//===----------------------------------------------------------------------===//
Dan Gohmance42e402008-07-07 20:32:02 +0000248// MachineMemOperand Implementation
249//===----------------------------------------------------------------------===//
250
251MachineMemOperand::MachineMemOperand(const Value *v, unsigned int f,
252 int64_t o, uint64_t s, unsigned int a)
253 : Offset(o), Size(s), V(v),
254 Flags((f & 7) | ((Log2_32(a) + 1) << 3)) {
Dan Gohmanf1bf29e2008-07-08 23:47:04 +0000255 assert(isPowerOf2_32(a) && "Alignment is not a power of 2!");
Dan Gohmanc5e1f982008-07-16 15:56:42 +0000256 assert((isLoad() || isStore()) && "Not a load/store!");
Dan Gohmance42e402008-07-07 20:32:02 +0000257}
258
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000259/// Profile - Gather unique data for the object.
260///
261void MachineMemOperand::Profile(FoldingSetNodeID &ID) const {
262 ID.AddInteger(Offset);
263 ID.AddInteger(Size);
264 ID.AddPointer(V);
265 ID.AddInteger(Flags);
266}
267
Dan Gohmance42e402008-07-07 20:32:02 +0000268//===----------------------------------------------------------------------===//
Chris Lattnerf7382302007-12-30 21:56:09 +0000269// MachineInstr Implementation
270//===----------------------------------------------------------------------===//
271
Evan Chengc0f64ff2006-11-27 23:37:22 +0000272/// MachineInstr ctor - This constructor creates a dummy MachineInstr with
Evan Cheng67f660c2006-11-30 07:08:44 +0000273/// TID NULL and no operands.
Evan Chengc0f64ff2006-11-27 23:37:22 +0000274MachineInstr::MachineInstr()
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000275 : TID(0), NumImplicitOps(0), Parent(0) {
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000276 // Make sure that we get added to a machine basicblock
277 LeakDetector::addGarbageObject(this);
Chris Lattner72791222002-10-28 20:59:49 +0000278}
279
Evan Cheng67f660c2006-11-30 07:08:44 +0000280void MachineInstr::addImplicitDefUseOperands() {
281 if (TID->ImplicitDefs)
Chris Lattnera4161ee2007-12-30 00:12:25 +0000282 for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
Chris Lattner8019f412007-12-30 00:41:17 +0000283 addOperand(MachineOperand::CreateReg(*ImpDefs, true, true));
Evan Cheng67f660c2006-11-30 07:08:44 +0000284 if (TID->ImplicitUses)
Chris Lattnera4161ee2007-12-30 00:12:25 +0000285 for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
Chris Lattner8019f412007-12-30 00:41:17 +0000286 addOperand(MachineOperand::CreateReg(*ImpUses, false, true));
Evan Chengd7de4962006-11-13 23:34:06 +0000287}
288
289/// MachineInstr ctor - This constructor create a MachineInstr and add the
Evan Chengc0f64ff2006-11-27 23:37:22 +0000290/// implicit operands. It reserves space for number of operands specified by
Chris Lattner749c6f62008-01-07 07:27:27 +0000291/// TargetInstrDesc or the numOperands if it is not zero. (for
Evan Chengc0f64ff2006-11-27 23:37:22 +0000292/// instructions with variable number of operands).
Chris Lattner749c6f62008-01-07 07:27:27 +0000293MachineInstr::MachineInstr(const TargetInstrDesc &tid, bool NoImp)
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000294 : TID(&tid), NumImplicitOps(0), Parent(0) {
Chris Lattner349c4952008-01-07 03:13:06 +0000295 if (!NoImp && TID->getImplicitDefs())
296 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
Evan Chengd7de4962006-11-13 23:34:06 +0000297 NumImplicitOps++;
Chris Lattner349c4952008-01-07 03:13:06 +0000298 if (!NoImp && TID->getImplicitUses())
299 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
Evan Chengd7de4962006-11-13 23:34:06 +0000300 NumImplicitOps++;
Chris Lattner349c4952008-01-07 03:13:06 +0000301 Operands.reserve(NumImplicitOps + TID->getNumOperands());
Evan Chengfa945722007-10-13 02:23:01 +0000302 if (!NoImp)
303 addImplicitDefUseOperands();
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000304 // Make sure that we get added to a machine basicblock
305 LeakDetector::addGarbageObject(this);
Evan Chengd7de4962006-11-13 23:34:06 +0000306}
307
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000308/// MachineInstr ctor - Work exactly the same as the ctor above, except that the
309/// MachineInstr is created and added to the end of the specified basic block.
310///
Evan Chengc0f64ff2006-11-27 23:37:22 +0000311MachineInstr::MachineInstr(MachineBasicBlock *MBB,
Chris Lattner749c6f62008-01-07 07:27:27 +0000312 const TargetInstrDesc &tid)
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000313 : TID(&tid), NumImplicitOps(0), Parent(0) {
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000314 assert(MBB && "Cannot use inserting ctor with null basic block!");
Evan Cheng67f660c2006-11-30 07:08:44 +0000315 if (TID->ImplicitDefs)
Chris Lattner349c4952008-01-07 03:13:06 +0000316 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
Evan Chengd7de4962006-11-13 23:34:06 +0000317 NumImplicitOps++;
Evan Cheng67f660c2006-11-30 07:08:44 +0000318 if (TID->ImplicitUses)
Chris Lattner349c4952008-01-07 03:13:06 +0000319 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
Evan Chengd7de4962006-11-13 23:34:06 +0000320 NumImplicitOps++;
Chris Lattner349c4952008-01-07 03:13:06 +0000321 Operands.reserve(NumImplicitOps + TID->getNumOperands());
Evan Cheng67f660c2006-11-30 07:08:44 +0000322 addImplicitDefUseOperands();
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000323 // Make sure that we get added to a machine basicblock
324 LeakDetector::addGarbageObject(this);
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000325 MBB->push_back(this); // Add instruction to end of basic block!
326}
327
Misha Brukmance22e762004-07-09 14:45:17 +0000328/// MachineInstr ctor - Copies MachineInstr arg exactly
329///
Evan Cheng1ed99222008-07-19 00:37:25 +0000330MachineInstr::MachineInstr(MachineFunction &MF, const MachineInstr &MI)
331 : TID(&MI.getDesc()), NumImplicitOps(0), Parent(0) {
Chris Lattner943b5e12006-05-04 19:14:44 +0000332 Operands.reserve(MI.getNumOperands());
Tanya Lattnerb5159ed2004-05-23 20:58:02 +0000333
Misha Brukmance22e762004-07-09 14:45:17 +0000334 // Add operands
Evan Cheng1ed99222008-07-19 00:37:25 +0000335 for (unsigned i = 0; i != MI.getNumOperands(); ++i)
336 addOperand(MI.getOperand(i));
337 NumImplicitOps = MI.NumImplicitOps;
Tanya Lattner0c63e032004-05-24 03:14:18 +0000338
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000339 // Add memory operands.
Dan Gohmanfed90b62008-07-28 21:51:04 +0000340 for (std::list<MachineMemOperand>::const_iterator i = MI.memoperands_begin(),
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000341 j = MI.memoperands_end(); i != j; ++i)
342 addMemOperand(MF, *i);
343
344 // Set parent to null.
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000345 Parent = 0;
Dan Gohman6116a732008-07-21 18:47:29 +0000346
347 LeakDetector::addGarbageObject(this);
Tanya Lattner466b5342004-05-23 19:35:12 +0000348}
349
Misha Brukmance22e762004-07-09 14:45:17 +0000350MachineInstr::~MachineInstr() {
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000351 LeakDetector::removeGarbageObject(this);
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000352 assert(MemOperands.empty() &&
353 "MachineInstr being deleted with live memoperands!");
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000354#ifndef NDEBUG
Chris Lattner62ed6b92008-01-01 01:12:31 +0000355 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000356 assert(Operands[i].ParentMI == this && "ParentMI mismatch!");
Dan Gohman014278e2008-09-13 17:58:21 +0000357 assert((!Operands[i].isRegister() || !Operands[i].isOnRegUseList()) &&
Chris Lattner62ed6b92008-01-01 01:12:31 +0000358 "Reg operand def/use list corrupted");
359 }
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000360#endif
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000361}
362
Chris Lattner62ed6b92008-01-01 01:12:31 +0000363/// getRegInfo - If this instruction is embedded into a MachineFunction,
364/// return the MachineRegisterInfo object for the current function, otherwise
365/// return null.
366MachineRegisterInfo *MachineInstr::getRegInfo() {
367 if (MachineBasicBlock *MBB = getParent())
Dan Gohman4e526b92008-07-08 23:59:09 +0000368 return &MBB->getParent()->getRegInfo();
Chris Lattner62ed6b92008-01-01 01:12:31 +0000369 return 0;
370}
371
372/// RemoveRegOperandsFromUseLists - Unlink all of the register operands in
373/// this instruction from their respective use lists. This requires that the
374/// operands already be on their use lists.
375void MachineInstr::RemoveRegOperandsFromUseLists() {
376 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
Dan Gohman014278e2008-09-13 17:58:21 +0000377 if (Operands[i].isRegister())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000378 Operands[i].RemoveRegOperandFromRegInfo();
379 }
380}
381
382/// AddRegOperandsToUseLists - Add all of the register operands in
383/// this instruction from their respective use lists. This requires that the
384/// operands not be on their use lists yet.
385void MachineInstr::AddRegOperandsToUseLists(MachineRegisterInfo &RegInfo) {
386 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
Dan Gohman014278e2008-09-13 17:58:21 +0000387 if (Operands[i].isRegister())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000388 Operands[i].AddRegOperandToRegInfo(&RegInfo);
389 }
390}
391
392
393/// addOperand - Add the specified operand to the instruction. If it is an
394/// implicit operand, it is added to the end of the operand list. If it is
395/// an explicit operand it is added at the end of the explicit operand list
396/// (before the first implicit operand).
397void MachineInstr::addOperand(const MachineOperand &Op) {
Dan Gohman014278e2008-09-13 17:58:21 +0000398 bool isImpReg = Op.isRegister() && Op.isImplicit();
Chris Lattner62ed6b92008-01-01 01:12:31 +0000399 assert((isImpReg || !OperandsComplete()) &&
400 "Trying to add an operand to a machine instr that is already done!");
401
402 // If we are adding the operand to the end of the list, our job is simpler.
403 // This is true most of the time, so this is a reasonable optimization.
404 if (isImpReg || NumImplicitOps == 0) {
405 // We can only do this optimization if we know that the operand list won't
406 // reallocate.
407 if (Operands.empty() || Operands.size()+1 <= Operands.capacity()) {
408 Operands.push_back(Op);
409
410 // Set the parent of the operand.
411 Operands.back().ParentMI = this;
412
413 // If the operand is a register, update the operand's use list.
Dan Gohman014278e2008-09-13 17:58:21 +0000414 if (Op.isRegister())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000415 Operands.back().AddRegOperandToRegInfo(getRegInfo());
416 return;
417 }
418 }
419
420 // Otherwise, we have to insert a real operand before any implicit ones.
421 unsigned OpNo = Operands.size()-NumImplicitOps;
422
423 MachineRegisterInfo *RegInfo = getRegInfo();
424
425 // If this instruction isn't embedded into a function, then we don't need to
426 // update any operand lists.
427 if (RegInfo == 0) {
428 // Simple insertion, no reginfo update needed for other register operands.
429 Operands.insert(Operands.begin()+OpNo, Op);
430 Operands[OpNo].ParentMI = this;
431
432 // Do explicitly set the reginfo for this operand though, to ensure the
433 // next/prev fields are properly nulled out.
Dan Gohman014278e2008-09-13 17:58:21 +0000434 if (Operands[OpNo].isRegister())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000435 Operands[OpNo].AddRegOperandToRegInfo(0);
436
437 } else if (Operands.size()+1 <= Operands.capacity()) {
438 // Otherwise, we have to remove register operands from their register use
439 // list, add the operand, then add the register operands back to their use
440 // list. This also must handle the case when the operand list reallocates
441 // to somewhere else.
442
443 // If insertion of this operand won't cause reallocation of the operand
444 // list, just remove the implicit operands, add the operand, then re-add all
445 // the rest of the operands.
446 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
Dan Gohman014278e2008-09-13 17:58:21 +0000447 assert(Operands[i].isRegister() && "Should only be an implicit reg!");
Chris Lattner62ed6b92008-01-01 01:12:31 +0000448 Operands[i].RemoveRegOperandFromRegInfo();
449 }
450
451 // Add the operand. If it is a register, add it to the reg list.
452 Operands.insert(Operands.begin()+OpNo, Op);
453 Operands[OpNo].ParentMI = this;
454
Dan Gohman014278e2008-09-13 17:58:21 +0000455 if (Operands[OpNo].isRegister())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000456 Operands[OpNo].AddRegOperandToRegInfo(RegInfo);
457
458 // Re-add all the implicit ops.
459 for (unsigned i = OpNo+1, e = Operands.size(); i != e; ++i) {
Dan Gohman014278e2008-09-13 17:58:21 +0000460 assert(Operands[i].isRegister() && "Should only be an implicit reg!");
Chris Lattner62ed6b92008-01-01 01:12:31 +0000461 Operands[i].AddRegOperandToRegInfo(RegInfo);
462 }
463 } else {
464 // Otherwise, we will be reallocating the operand list. Remove all reg
465 // operands from their list, then readd them after the operand list is
466 // reallocated.
467 RemoveRegOperandsFromUseLists();
468
469 Operands.insert(Operands.begin()+OpNo, Op);
470 Operands[OpNo].ParentMI = this;
471
472 // Re-add all the operands.
473 AddRegOperandsToUseLists(*RegInfo);
474 }
475}
476
477/// RemoveOperand - Erase an operand from an instruction, leaving it with one
478/// fewer operand than it started with.
479///
480void MachineInstr::RemoveOperand(unsigned OpNo) {
481 assert(OpNo < Operands.size() && "Invalid operand number");
482
483 // Special case removing the last one.
484 if (OpNo == Operands.size()-1) {
485 // If needed, remove from the reg def/use list.
Dan Gohman014278e2008-09-13 17:58:21 +0000486 if (Operands.back().isRegister() && Operands.back().isOnRegUseList())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000487 Operands.back().RemoveRegOperandFromRegInfo();
488
489 Operands.pop_back();
490 return;
491 }
492
493 // Otherwise, we are removing an interior operand. If we have reginfo to
494 // update, remove all operands that will be shifted down from their reg lists,
495 // move everything down, then re-add them.
496 MachineRegisterInfo *RegInfo = getRegInfo();
497 if (RegInfo) {
498 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
Dan Gohman014278e2008-09-13 17:58:21 +0000499 if (Operands[i].isRegister())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000500 Operands[i].RemoveRegOperandFromRegInfo();
501 }
502 }
503
504 Operands.erase(Operands.begin()+OpNo);
505
506 if (RegInfo) {
507 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
Dan Gohman014278e2008-09-13 17:58:21 +0000508 if (Operands[i].isRegister())
Chris Lattner62ed6b92008-01-01 01:12:31 +0000509 Operands[i].AddRegOperandToRegInfo(RegInfo);
510 }
511 }
512}
513
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000514/// addMemOperand - Add a MachineMemOperand to the machine instruction,
515/// referencing arbitrary storage.
516void MachineInstr::addMemOperand(MachineFunction &MF,
517 const MachineMemOperand &MO) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000518 MemOperands.push_back(MO);
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000519}
520
521/// clearMemOperands - Erase all of this MachineInstr's MachineMemOperands.
522void MachineInstr::clearMemOperands(MachineFunction &MF) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000523 MemOperands.clear();
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000524}
525
Chris Lattner62ed6b92008-01-01 01:12:31 +0000526
Chris Lattner48d7c062006-04-17 21:35:41 +0000527/// removeFromParent - This method unlinks 'this' from the containing basic
528/// block, and returns it, but does not delete it.
529MachineInstr *MachineInstr::removeFromParent() {
530 assert(getParent() && "Not embedded in a basic block!");
531 getParent()->remove(this);
532 return this;
533}
534
535
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000536/// eraseFromParent - This method unlinks 'this' from the containing basic
537/// block, and deletes it.
538void MachineInstr::eraseFromParent() {
539 assert(getParent() && "Not embedded in a basic block!");
540 getParent()->erase(this);
541}
542
543
Brian Gaeke21326fc2004-02-13 04:39:32 +0000544/// OperandComplete - Return true if it's illegal to add a new operand
545///
Chris Lattner2a90ba62004-02-12 16:09:53 +0000546bool MachineInstr::OperandsComplete() const {
Chris Lattner349c4952008-01-07 03:13:06 +0000547 unsigned short NumOperands = TID->getNumOperands();
Chris Lattner8f707e12008-01-07 05:19:29 +0000548 if (!TID->isVariadic() && getNumOperands()-NumImplicitOps >= NumOperands)
Vikram S. Adve34977822003-05-31 07:39:06 +0000549 return true; // Broken: we have all the operands of this instruction!
Chris Lattner413746e2002-10-28 20:48:39 +0000550 return false;
551}
552
Evan Cheng19e3f312007-05-15 01:26:09 +0000553/// getNumExplicitOperands - Returns the number of non-implicit operands.
554///
555unsigned MachineInstr::getNumExplicitOperands() const {
Chris Lattner349c4952008-01-07 03:13:06 +0000556 unsigned NumOperands = TID->getNumOperands();
Chris Lattner8f707e12008-01-07 05:19:29 +0000557 if (!TID->isVariadic())
Evan Cheng19e3f312007-05-15 01:26:09 +0000558 return NumOperands;
559
560 for (unsigned e = getNumOperands(); NumOperands != e; ++NumOperands) {
561 const MachineOperand &MO = getOperand(NumOperands);
562 if (!MO.isRegister() || !MO.isImplicit())
563 NumOperands++;
564 }
565 return NumOperands;
566}
567
Chris Lattner8ace2cd2006-10-20 22:39:59 +0000568
Dan Gohman44066042008-07-01 00:05:16 +0000569/// isLabel - Returns true if the MachineInstr represents a label.
570///
571bool MachineInstr::isLabel() const {
572 return getOpcode() == TargetInstrInfo::DBG_LABEL ||
573 getOpcode() == TargetInstrInfo::EH_LABEL ||
574 getOpcode() == TargetInstrInfo::GC_LABEL;
575}
576
Evan Chengbb81d972008-01-31 09:59:15 +0000577/// isDebugLabel - Returns true if the MachineInstr represents a debug label.
578///
579bool MachineInstr::isDebugLabel() const {
Dan Gohman44066042008-07-01 00:05:16 +0000580 return getOpcode() == TargetInstrInfo::DBG_LABEL;
Evan Chengbb81d972008-01-31 09:59:15 +0000581}
582
Evan Chengfaa51072007-04-26 19:00:32 +0000583/// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of
Evan Cheng32eb1f12007-03-26 22:37:45 +0000584/// the specific register or -1 if it is not found. It further tightening
Evan Cheng76d7e762007-02-23 01:04:26 +0000585/// the search criteria to a use that kills the register if isKill is true.
Evan Cheng6130f662008-03-05 00:59:57 +0000586int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill,
587 const TargetRegisterInfo *TRI) const {
Evan Cheng576d1232006-12-06 08:27:42 +0000588 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Evan Chengf277ee42007-05-29 18:35:22 +0000589 const MachineOperand &MO = getOperand(i);
Evan Cheng6130f662008-03-05 00:59:57 +0000590 if (!MO.isRegister() || !MO.isUse())
591 continue;
592 unsigned MOReg = MO.getReg();
593 if (!MOReg)
594 continue;
595 if (MOReg == Reg ||
596 (TRI &&
597 TargetRegisterInfo::isPhysicalRegister(MOReg) &&
598 TargetRegisterInfo::isPhysicalRegister(Reg) &&
599 TRI->isSubRegister(MOReg, Reg)))
Evan Cheng76d7e762007-02-23 01:04:26 +0000600 if (!isKill || MO.isKill())
Evan Cheng32eb1f12007-03-26 22:37:45 +0000601 return i;
Evan Cheng576d1232006-12-06 08:27:42 +0000602 }
Evan Cheng32eb1f12007-03-26 22:37:45 +0000603 return -1;
Evan Cheng576d1232006-12-06 08:27:42 +0000604}
605
Evan Cheng6130f662008-03-05 00:59:57 +0000606/// findRegisterDefOperandIdx() - Returns the operand index that is a def of
Dan Gohman703bfe62008-05-06 00:20:10 +0000607/// the specified register or -1 if it is not found. If isDead is true, defs
608/// that are not dead are skipped. If TargetRegisterInfo is non-null, then it
609/// also checks if there is a def of a super-register.
Evan Cheng6130f662008-03-05 00:59:57 +0000610int MachineInstr::findRegisterDefOperandIdx(unsigned Reg, bool isDead,
611 const TargetRegisterInfo *TRI) const {
Evan Chengb371f452007-02-19 21:49:54 +0000612 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Evan Cheng6130f662008-03-05 00:59:57 +0000613 const MachineOperand &MO = getOperand(i);
614 if (!MO.isRegister() || !MO.isDef())
615 continue;
616 unsigned MOReg = MO.getReg();
617 if (MOReg == Reg ||
618 (TRI &&
619 TargetRegisterInfo::isPhysicalRegister(MOReg) &&
620 TargetRegisterInfo::isPhysicalRegister(Reg) &&
621 TRI->isSubRegister(MOReg, Reg)))
622 if (!isDead || MO.isDead())
623 return i;
Evan Chengb371f452007-02-19 21:49:54 +0000624 }
Evan Cheng6130f662008-03-05 00:59:57 +0000625 return -1;
Evan Chengb371f452007-02-19 21:49:54 +0000626}
Evan Cheng19e3f312007-05-15 01:26:09 +0000627
Evan Chengf277ee42007-05-29 18:35:22 +0000628/// findFirstPredOperandIdx() - Find the index of the first operand in the
629/// operand list that is used to represent the predicate. It returns -1 if
630/// none is found.
631int MachineInstr::findFirstPredOperandIdx() const {
Chris Lattner749c6f62008-01-07 07:27:27 +0000632 const TargetInstrDesc &TID = getDesc();
633 if (TID.isPredicable()) {
Evan Cheng19e3f312007-05-15 01:26:09 +0000634 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner749c6f62008-01-07 07:27:27 +0000635 if (TID.OpInfo[i].isPredicate())
Evan Chengf277ee42007-05-29 18:35:22 +0000636 return i;
Evan Cheng19e3f312007-05-15 01:26:09 +0000637 }
638
Evan Chengf277ee42007-05-29 18:35:22 +0000639 return -1;
Evan Cheng19e3f312007-05-15 01:26:09 +0000640}
Evan Chengb371f452007-02-19 21:49:54 +0000641
Evan Chengef0732d2008-07-10 07:35:43 +0000642/// isRegReDefinedByTwoAddr - Given the defined register and the operand index,
643/// check if the register def is a re-definition due to two addr elimination.
644bool MachineInstr::isRegReDefinedByTwoAddr(unsigned Reg, unsigned DefIdx) const{
Chris Lattner749c6f62008-01-07 07:27:27 +0000645 const TargetInstrDesc &TID = getDesc();
Evan Chengef0732d2008-07-10 07:35:43 +0000646 for (unsigned i = 0, e = TID.getNumOperands(); i != e; ++i) {
647 const MachineOperand &MO = getOperand(i);
648 if (MO.isRegister() && MO.isUse() && MO.getReg() == Reg &&
649 TID.getOperandConstraint(i, TOI::TIED_TO) == (int)DefIdx)
650 return true;
Evan Cheng32dfbea2007-10-12 08:50:34 +0000651 }
652 return false;
653}
654
Evan Cheng576d1232006-12-06 08:27:42 +0000655/// copyKillDeadInfo - Copies kill / dead operand properties from MI.
656///
657void MachineInstr::copyKillDeadInfo(const MachineInstr *MI) {
658 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
659 const MachineOperand &MO = MI->getOperand(i);
Dan Gohman92dfe202007-09-14 20:33:02 +0000660 if (!MO.isRegister() || (!MO.isKill() && !MO.isDead()))
Evan Cheng576d1232006-12-06 08:27:42 +0000661 continue;
662 for (unsigned j = 0, ee = getNumOperands(); j != ee; ++j) {
663 MachineOperand &MOp = getOperand(j);
664 if (!MOp.isIdenticalTo(MO))
665 continue;
666 if (MO.isKill())
667 MOp.setIsKill();
668 else
669 MOp.setIsDead();
670 break;
671 }
672 }
673}
674
Evan Cheng19e3f312007-05-15 01:26:09 +0000675/// copyPredicates - Copies predicate operand(s) from MI.
676void MachineInstr::copyPredicates(const MachineInstr *MI) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000677 const TargetInstrDesc &TID = MI->getDesc();
Evan Chengb27087f2008-03-13 00:44:09 +0000678 if (!TID.isPredicable())
679 return;
680 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
681 if (TID.OpInfo[i].isPredicate()) {
682 // Predicated operands must be last operands.
683 addOperand(MI->getOperand(i));
Evan Cheng19e3f312007-05-15 01:26:09 +0000684 }
685 }
686}
687
Evan Cheng9f1c8312008-07-03 09:09:37 +0000688/// isSafeToMove - Return true if it is safe to move this instruction. If
689/// SawStore is set to true, it means that there is a store (or call) between
690/// the instruction's location and its intended destination.
Evan Chengb27087f2008-03-13 00:44:09 +0000691bool MachineInstr::isSafeToMove(const TargetInstrInfo *TII, bool &SawStore) {
692 // Ignore stuff that we obviously can't move.
693 if (TID->mayStore() || TID->isCall()) {
694 SawStore = true;
695 return false;
696 }
697 if (TID->isReturn() || TID->isBranch() || TID->hasUnmodeledSideEffects())
698 return false;
699
700 // See if this instruction does a load. If so, we have to guarantee that the
701 // loaded value doesn't change between the load and the its intended
702 // destination. The check for isInvariantLoad gives the targe the chance to
703 // classify the load as always returning a constant, e.g. a constant pool
704 // load.
705 if (TID->mayLoad() && !TII->isInvariantLoad(this)) {
706 // Otherwise, this is a real load. If there is a store between the load and
707 // end of block, we can't sink the load.
708 //
709 // FIXME: we can't do this transformation until we know that the load is
710 // not volatile, and machineinstrs don't keep this info. :(
711 //
712 //if (SawStore)
713 return false;
714 }
715 return true;
716}
717
Evan Chengdf3b9932008-08-27 20:33:50 +0000718/// isSafeToReMat - Return true if it's safe to rematerialize the specified
719/// instruction which defined the specified register instead of copying it.
720bool MachineInstr::isSafeToReMat(const TargetInstrInfo *TII, unsigned DstReg) {
Evan Chengdf3b9932008-08-27 20:33:50 +0000721 bool SawStore = false;
Evan Cheng3689ff42008-08-30 09:07:18 +0000722 if (!getDesc().isRematerializable() ||
723 !TII->isTriviallyReMaterializable(this) ||
724 !isSafeToMove(TII, SawStore))
Evan Chengdf3b9932008-08-27 20:33:50 +0000725 return false;
726 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
727 MachineOperand &MO = getOperand(i);
728 if (!MO.isRegister())
729 continue;
730 // FIXME: For now, do not remat any instruction with register operands.
731 // Later on, we can loosen the restriction is the register operands have
732 // not been modified between the def and use. Note, this is different from
Evan Cheng8763c1c2008-08-27 20:58:54 +0000733 // MachineSink because the code is no longer in two-address form (at least
Evan Chengdf3b9932008-08-27 20:33:50 +0000734 // partially).
735 if (MO.isUse())
736 return false;
737 else if (!MO.isDead() && MO.getReg() != DstReg)
738 return false;
739 }
740 return true;
741}
742
Brian Gaeke21326fc2004-02-13 04:39:32 +0000743void MachineInstr::dump() const {
Bill Wendlinge8156192006-12-07 01:30:32 +0000744 cerr << " " << *this;
Vikram S. Adve70bc4b52001-07-21 12:41:50 +0000745}
746
Tanya Lattnerb1407622004-06-25 00:13:11 +0000747void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const {
Chris Lattnere3087892007-12-30 21:31:53 +0000748 // Specialize printing if op#0 is definition
Chris Lattner6a592272002-10-30 01:55:38 +0000749 unsigned StartOp = 0;
Dan Gohman92dfe202007-09-14 20:33:02 +0000750 if (getNumOperands() && getOperand(0).isRegister() && getOperand(0).isDef()) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000751 getOperand(0).print(OS, TM);
Chris Lattner6a592272002-10-30 01:55:38 +0000752 OS << " = ";
753 ++StartOp; // Don't print this operand again!
754 }
Tanya Lattnerb1407622004-06-25 00:13:11 +0000755
Chris Lattner749c6f62008-01-07 07:27:27 +0000756 OS << getDesc().getName();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000757
Chris Lattner6a592272002-10-30 01:55:38 +0000758 for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) {
759 if (i != StartOp)
760 OS << ",";
761 OS << " ";
Chris Lattnerf7382302007-12-30 21:56:09 +0000762 getOperand(i).print(OS, TM);
Chris Lattner10491642002-10-30 00:48:05 +0000763 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000764
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000765 if (!memoperands_empty()) {
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000766 OS << ", Mem:";
Dan Gohmanfed90b62008-07-28 21:51:04 +0000767 for (std::list<MachineMemOperand>::const_iterator i = memoperands_begin(),
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000768 e = memoperands_end(); i != e; ++i) {
769 const MachineMemOperand &MRO = *i;
Dan Gohman69de1932008-02-06 22:27:42 +0000770 const Value *V = MRO.getValue();
771
Dan Gohman69de1932008-02-06 22:27:42 +0000772 assert((MRO.isLoad() || MRO.isStore()) &&
773 "SV has to be a load, store or both.");
774
775 if (MRO.isVolatile())
776 OS << "Volatile ";
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000777
Dan Gohman69de1932008-02-06 22:27:42 +0000778 if (MRO.isLoad())
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000779 OS << "LD";
Dan Gohman69de1932008-02-06 22:27:42 +0000780 if (MRO.isStore())
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000781 OS << "ST";
Dan Gohman69de1932008-02-06 22:27:42 +0000782
Evan Chengbbd83222008-02-08 22:05:07 +0000783 OS << "(" << MRO.getSize() << "," << MRO.getAlignment() << ") [";
Dan Gohman69de1932008-02-06 22:27:42 +0000784
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000785 if (!V)
786 OS << "<unknown>";
787 else if (!V->getName().empty())
788 OS << V->getName();
Chris Lattneredfb72c2008-08-24 20:37:32 +0000789 else if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V)) {
790 raw_os_ostream OSS(OS);
791 PSV->print(OSS);
792 } else
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000793 OS << V;
794
795 OS << " + " << MRO.getOffset() << "]";
Dan Gohman69de1932008-02-06 22:27:42 +0000796 }
797 }
798
Chris Lattner10491642002-10-30 00:48:05 +0000799 OS << "\n";
800}
801
Owen Andersonb487e722008-01-24 01:10:07 +0000802bool MachineInstr::addRegisterKilled(unsigned IncomingReg,
Dan Gohman6f0d0242008-02-10 18:45:23 +0000803 const TargetRegisterInfo *RegInfo,
Owen Andersonb487e722008-01-24 01:10:07 +0000804 bool AddIfNotFound) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000805 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg);
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000806 bool hasAliases = isPhysReg && RegInfo->getAliasSet(IncomingReg);
Dan Gohman3f629402008-09-03 15:56:16 +0000807 bool Found = false;
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000808 SmallVector<unsigned,4> DeadOps;
Bill Wendling4a23d722008-03-03 22:14:33 +0000809 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
810 MachineOperand &MO = getOperand(i);
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000811 if (!MO.isRegister() || !MO.isUse())
812 continue;
813 unsigned Reg = MO.getReg();
814 if (!Reg)
815 continue;
Bill Wendling4a23d722008-03-03 22:14:33 +0000816
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000817 if (Reg == IncomingReg) {
Dan Gohman3f629402008-09-03 15:56:16 +0000818 if (!Found) {
819 if (MO.isKill())
820 // The register is already marked kill.
821 return true;
822 MO.setIsKill();
823 Found = true;
824 }
825 } else if (hasAliases && MO.isKill() &&
826 TargetRegisterInfo::isPhysicalRegister(Reg)) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000827 // A super-register kill already exists.
828 if (RegInfo->isSuperRegister(IncomingReg, Reg))
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000829 return true;
830 if (RegInfo->isSubRegister(IncomingReg, Reg))
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000831 DeadOps.push_back(i);
Bill Wendling4a23d722008-03-03 22:14:33 +0000832 }
833 }
834
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000835 // Trim unneeded kill operands.
836 while (!DeadOps.empty()) {
837 unsigned OpIdx = DeadOps.back();
838 if (getOperand(OpIdx).isImplicit())
839 RemoveOperand(OpIdx);
840 else
841 getOperand(OpIdx).setIsKill(false);
842 DeadOps.pop_back();
843 }
844
Bill Wendling4a23d722008-03-03 22:14:33 +0000845 // If not found, this means an alias of one of the operands is killed. Add a
Owen Andersonb487e722008-01-24 01:10:07 +0000846 // new implicit operand if required.
Dan Gohman3f629402008-09-03 15:56:16 +0000847 if (!Found && AddIfNotFound) {
Bill Wendling4a23d722008-03-03 22:14:33 +0000848 addOperand(MachineOperand::CreateReg(IncomingReg,
849 false /*IsDef*/,
850 true /*IsImp*/,
851 true /*IsKill*/));
Owen Andersonb487e722008-01-24 01:10:07 +0000852 return true;
853 }
Dan Gohman3f629402008-09-03 15:56:16 +0000854 return Found;
Owen Andersonb487e722008-01-24 01:10:07 +0000855}
856
857bool MachineInstr::addRegisterDead(unsigned IncomingReg,
Dan Gohman6f0d0242008-02-10 18:45:23 +0000858 const TargetRegisterInfo *RegInfo,
Owen Andersonb487e722008-01-24 01:10:07 +0000859 bool AddIfNotFound) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000860 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg);
Evan Cheng01b2e232008-06-27 22:11:49 +0000861 bool hasAliases = isPhysReg && RegInfo->getAliasSet(IncomingReg);
Dan Gohman3f629402008-09-03 15:56:16 +0000862 bool Found = false;
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000863 SmallVector<unsigned,4> DeadOps;
Owen Andersonb487e722008-01-24 01:10:07 +0000864 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
865 MachineOperand &MO = getOperand(i);
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000866 if (!MO.isRegister() || !MO.isDef())
867 continue;
868 unsigned Reg = MO.getReg();
Dan Gohman3f629402008-09-03 15:56:16 +0000869 if (!Reg)
870 continue;
871
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000872 if (Reg == IncomingReg) {
Dan Gohman3f629402008-09-03 15:56:16 +0000873 if (!Found) {
874 if (MO.isDead())
875 // The register is already marked dead.
876 return true;
877 MO.setIsDead();
878 Found = true;
879 }
880 } else if (hasAliases && MO.isDead() &&
881 TargetRegisterInfo::isPhysicalRegister(Reg)) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000882 // There exists a super-register that's marked dead.
883 if (RegInfo->isSuperRegister(IncomingReg, Reg))
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000884 return true;
Owen Anderson22ae9992008-08-14 18:34:18 +0000885 if (RegInfo->getSubRegisters(IncomingReg) &&
886 RegInfo->getSuperRegisters(Reg) &&
887 RegInfo->isSubRegister(IncomingReg, Reg))
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000888 DeadOps.push_back(i);
Owen Andersonb487e722008-01-24 01:10:07 +0000889 }
890 }
891
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000892 // Trim unneeded dead operands.
893 while (!DeadOps.empty()) {
894 unsigned OpIdx = DeadOps.back();
895 if (getOperand(OpIdx).isImplicit())
896 RemoveOperand(OpIdx);
897 else
898 getOperand(OpIdx).setIsDead(false);
899 DeadOps.pop_back();
900 }
901
Dan Gohman3f629402008-09-03 15:56:16 +0000902 // If not found, this means an alias of one of the operands is dead. Add a
903 // new implicit operand if required.
904 if (!Found && AddIfNotFound) {
905 addOperand(MachineOperand::CreateReg(IncomingReg,
906 true /*IsDef*/,
907 true /*IsImp*/,
908 false /*IsKill*/,
909 true /*IsDead*/));
Owen Andersonb487e722008-01-24 01:10:07 +0000910 return true;
911 }
Dan Gohman3f629402008-09-03 15:56:16 +0000912 return Found;
Owen Andersonb487e722008-01-24 01:10:07 +0000913}