blob: 36212ba4d068f794673051876228dba22edc98e7 [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 Gohmance42e402008-07-07 20:32:02 +000024#include "llvm/Support/MathExtras.h"
Bill Wendlinga09362e2006-11-28 22:48:48 +000025#include "llvm/Support/Streams.h"
Jeff Cohenc21c5ee2006-12-15 22:57:14 +000026#include <ostream>
Chris Lattner0742b592004-02-23 18:38:20 +000027using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000028
Chris Lattnerf7382302007-12-30 21:56:09 +000029//===----------------------------------------------------------------------===//
30// MachineOperand Implementation
31//===----------------------------------------------------------------------===//
32
Chris Lattner62ed6b92008-01-01 01:12:31 +000033/// AddRegOperandToRegInfo - Add this register operand to the specified
34/// MachineRegisterInfo. If it is null, then the next/prev fields should be
35/// explicitly nulled out.
36void MachineOperand::AddRegOperandToRegInfo(MachineRegisterInfo *RegInfo) {
37 assert(isReg() && "Can only add reg operand to use lists");
38
39 // If the reginfo pointer is null, just explicitly null out or next/prev
40 // pointers, to ensure they are not garbage.
41 if (RegInfo == 0) {
42 Contents.Reg.Prev = 0;
43 Contents.Reg.Next = 0;
44 return;
45 }
46
47 // Otherwise, add this operand to the head of the registers use/def list.
Chris Lattner80fe5312008-01-01 21:08:22 +000048 MachineOperand **Head = &RegInfo->getRegUseDefListHead(getReg());
Chris Lattner62ed6b92008-01-01 01:12:31 +000049
Chris Lattner80fe5312008-01-01 21:08:22 +000050 // For SSA values, we prefer to keep the definition at the start of the list.
51 // we do this by skipping over the definition if it is at the head of the
52 // list.
53 if (*Head && (*Head)->isDef())
54 Head = &(*Head)->Contents.Reg.Next;
55
56 Contents.Reg.Next = *Head;
Chris Lattner62ed6b92008-01-01 01:12:31 +000057 if (Contents.Reg.Next) {
58 assert(getReg() == Contents.Reg.Next->getReg() &&
59 "Different regs on the same list!");
60 Contents.Reg.Next->Contents.Reg.Prev = &Contents.Reg.Next;
61 }
62
Chris Lattner80fe5312008-01-01 21:08:22 +000063 Contents.Reg.Prev = Head;
64 *Head = this;
Chris Lattner62ed6b92008-01-01 01:12:31 +000065}
66
67void MachineOperand::setReg(unsigned Reg) {
68 if (getReg() == Reg) return; // No change.
69
70 // Otherwise, we have to change the register. If this operand is embedded
71 // into a machine function, we need to update the old and new register's
72 // use/def lists.
73 if (MachineInstr *MI = getParent())
74 if (MachineBasicBlock *MBB = MI->getParent())
75 if (MachineFunction *MF = MBB->getParent()) {
76 RemoveRegOperandFromRegInfo();
77 Contents.Reg.RegNo = Reg;
78 AddRegOperandToRegInfo(&MF->getRegInfo());
79 return;
80 }
81
82 // Otherwise, just change the register, no problem. :)
83 Contents.Reg.RegNo = Reg;
84}
85
86/// ChangeToImmediate - Replace this operand with a new immediate operand of
87/// the specified value. If an operand is known to be an immediate already,
88/// the setImm method should be used.
89void MachineOperand::ChangeToImmediate(int64_t ImmVal) {
90 // If this operand is currently a register operand, and if this is in a
91 // function, deregister the operand from the register's use/def list.
92 if (isReg() && getParent() && getParent()->getParent() &&
93 getParent()->getParent()->getParent())
94 RemoveRegOperandFromRegInfo();
95
96 OpKind = MO_Immediate;
97 Contents.ImmVal = ImmVal;
98}
99
100/// ChangeToRegister - Replace this operand with a new register operand of
101/// the specified value. If an operand is known to be an register already,
102/// the setReg method should be used.
103void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp,
104 bool isKill, bool isDead) {
105 // If this operand is already a register operand, use setReg to update the
106 // register's use/def lists.
107 if (isReg()) {
108 setReg(Reg);
109 } else {
110 // Otherwise, change this to a register and set the reg#.
111 OpKind = MO_Register;
112 Contents.Reg.RegNo = Reg;
113
114 // If this operand is embedded in a function, add the operand to the
115 // register's use/def list.
116 if (MachineInstr *MI = getParent())
117 if (MachineBasicBlock *MBB = MI->getParent())
118 if (MachineFunction *MF = MBB->getParent())
119 AddRegOperandToRegInfo(&MF->getRegInfo());
120 }
121
122 IsDef = isDef;
123 IsImp = isImp;
124 IsKill = isKill;
125 IsDead = isDead;
126 SubReg = 0;
127}
128
Chris Lattnerf7382302007-12-30 21:56:09 +0000129/// isIdenticalTo - Return true if this operand is identical to the specified
130/// operand.
131bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const {
132 if (getType() != Other.getType()) return false;
133
134 switch (getType()) {
135 default: assert(0 && "Unrecognized operand type");
136 case MachineOperand::MO_Register:
137 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
138 getSubReg() == Other.getSubReg();
139 case MachineOperand::MO_Immediate:
140 return getImm() == Other.getImm();
Nate Begemane8b7ccf2008-02-14 07:39:30 +0000141 case MachineOperand::MO_FPImmediate:
142 return getFPImm() == Other.getFPImm();
Chris Lattnerf7382302007-12-30 21:56:09 +0000143 case MachineOperand::MO_MachineBasicBlock:
144 return getMBB() == Other.getMBB();
145 case MachineOperand::MO_FrameIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000146 return getIndex() == Other.getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +0000147 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000148 return getIndex() == Other.getIndex() && getOffset() == Other.getOffset();
Chris Lattnerf7382302007-12-30 21:56:09 +0000149 case MachineOperand::MO_JumpTableIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000150 return getIndex() == Other.getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +0000151 case MachineOperand::MO_GlobalAddress:
152 return getGlobal() == Other.getGlobal() && getOffset() == Other.getOffset();
153 case MachineOperand::MO_ExternalSymbol:
154 return !strcmp(getSymbolName(), Other.getSymbolName()) &&
155 getOffset() == Other.getOffset();
156 }
157}
158
159/// print - Print the specified machine operand.
160///
161void MachineOperand::print(std::ostream &OS, const TargetMachine *TM) const {
162 switch (getType()) {
163 case MachineOperand::MO_Register:
Dan Gohman6f0d0242008-02-10 18:45:23 +0000164 if (getReg() == 0 || TargetRegisterInfo::isVirtualRegister(getReg())) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000165 OS << "%reg" << getReg();
166 } else {
167 // If the instruction is embedded into a basic block, we can find the
Chris Lattner62ed6b92008-01-01 01:12:31 +0000168 // target info for the instruction.
Chris Lattnerf7382302007-12-30 21:56:09 +0000169 if (TM == 0)
170 if (const MachineInstr *MI = getParent())
171 if (const MachineBasicBlock *MBB = MI->getParent())
172 if (const MachineFunction *MF = MBB->getParent())
173 TM = &MF->getTarget();
174
175 if (TM)
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000176 OS << "%" << TM->getRegisterInfo()->get(getReg()).Name;
Chris Lattnerf7382302007-12-30 21:56:09 +0000177 else
178 OS << "%mreg" << getReg();
179 }
180
181 if (isDef() || isKill() || isDead() || isImplicit()) {
182 OS << "<";
183 bool NeedComma = false;
184 if (isImplicit()) {
185 OS << (isDef() ? "imp-def" : "imp-use");
186 NeedComma = true;
187 } else if (isDef()) {
188 OS << "def";
189 NeedComma = true;
190 }
191 if (isKill() || isDead()) {
Bill Wendling181eb732008-02-24 00:56:13 +0000192 if (NeedComma) OS << ",";
193 if (isKill()) OS << "kill";
194 if (isDead()) OS << "dead";
Chris Lattnerf7382302007-12-30 21:56:09 +0000195 }
196 OS << ">";
197 }
198 break;
199 case MachineOperand::MO_Immediate:
200 OS << getImm();
201 break;
Nate Begemane8b7ccf2008-02-14 07:39:30 +0000202 case MachineOperand::MO_FPImmediate:
203 if (getFPImm()->getType() == Type::FloatTy) {
204 OS << getFPImm()->getValueAPF().convertToFloat();
205 } else {
206 OS << getFPImm()->getValueAPF().convertToDouble();
207 }
208 break;
Chris Lattnerf7382302007-12-30 21:56:09 +0000209 case MachineOperand::MO_MachineBasicBlock:
210 OS << "mbb<"
Chris Lattner8aa797a2007-12-30 23:10:15 +0000211 << ((Value*)getMBB()->getBasicBlock())->getName()
212 << "," << (void*)getMBB() << ">";
Chris Lattnerf7382302007-12-30 21:56:09 +0000213 break;
214 case MachineOperand::MO_FrameIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000215 OS << "<fi#" << getIndex() << ">";
Chris Lattnerf7382302007-12-30 21:56:09 +0000216 break;
217 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000218 OS << "<cp#" << getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +0000219 if (getOffset()) OS << "+" << getOffset();
220 OS << ">";
221 break;
222 case MachineOperand::MO_JumpTableIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000223 OS << "<jt#" << getIndex() << ">";
Chris Lattnerf7382302007-12-30 21:56:09 +0000224 break;
225 case MachineOperand::MO_GlobalAddress:
226 OS << "<ga:" << ((Value*)getGlobal())->getName();
227 if (getOffset()) OS << "+" << getOffset();
228 OS << ">";
229 break;
230 case MachineOperand::MO_ExternalSymbol:
231 OS << "<es:" << getSymbolName();
232 if (getOffset()) OS << "+" << getOffset();
233 OS << ">";
234 break;
235 default:
236 assert(0 && "Unrecognized operand type");
237 }
238}
239
240//===----------------------------------------------------------------------===//
Dan Gohmance42e402008-07-07 20:32:02 +0000241// MachineMemOperand Implementation
242//===----------------------------------------------------------------------===//
243
244MachineMemOperand::MachineMemOperand(const Value *v, unsigned int f,
245 int64_t o, uint64_t s, unsigned int a)
246 : Offset(o), Size(s), V(v),
247 Flags((f & 7) | ((Log2_32(a) + 1) << 3)) {
Dan Gohmanf1bf29e2008-07-08 23:47:04 +0000248 assert(isPowerOf2_32(a) && "Alignment is not a power of 2!");
Dan Gohmance42e402008-07-07 20:32:02 +0000249}
250
251//===----------------------------------------------------------------------===//
Chris Lattnerf7382302007-12-30 21:56:09 +0000252// MachineInstr Implementation
253//===----------------------------------------------------------------------===//
254
Evan Chengc0f64ff2006-11-27 23:37:22 +0000255/// MachineInstr ctor - This constructor creates a dummy MachineInstr with
Evan Cheng67f660c2006-11-30 07:08:44 +0000256/// TID NULL and no operands.
Evan Chengc0f64ff2006-11-27 23:37:22 +0000257MachineInstr::MachineInstr()
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000258 : TID(0), NumImplicitOps(0), Parent(0) {
Chris Lattner72791222002-10-28 20:59:49 +0000259}
260
Evan Cheng67f660c2006-11-30 07:08:44 +0000261void MachineInstr::addImplicitDefUseOperands() {
262 if (TID->ImplicitDefs)
Chris Lattnera4161ee2007-12-30 00:12:25 +0000263 for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
Chris Lattner8019f412007-12-30 00:41:17 +0000264 addOperand(MachineOperand::CreateReg(*ImpDefs, true, true));
Evan Cheng67f660c2006-11-30 07:08:44 +0000265 if (TID->ImplicitUses)
Chris Lattnera4161ee2007-12-30 00:12:25 +0000266 for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
Chris Lattner8019f412007-12-30 00:41:17 +0000267 addOperand(MachineOperand::CreateReg(*ImpUses, false, true));
Evan Chengd7de4962006-11-13 23:34:06 +0000268}
269
270/// MachineInstr ctor - This constructor create a MachineInstr and add the
Evan Chengc0f64ff2006-11-27 23:37:22 +0000271/// implicit operands. It reserves space for number of operands specified by
Chris Lattner749c6f62008-01-07 07:27:27 +0000272/// TargetInstrDesc or the numOperands if it is not zero. (for
Evan Chengc0f64ff2006-11-27 23:37:22 +0000273/// instructions with variable number of operands).
Chris Lattner749c6f62008-01-07 07:27:27 +0000274MachineInstr::MachineInstr(const TargetInstrDesc &tid, bool NoImp)
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000275 : TID(&tid), NumImplicitOps(0), Parent(0) {
Chris Lattner349c4952008-01-07 03:13:06 +0000276 if (!NoImp && TID->getImplicitDefs())
277 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
Evan Chengd7de4962006-11-13 23:34:06 +0000278 NumImplicitOps++;
Chris Lattner349c4952008-01-07 03:13:06 +0000279 if (!NoImp && TID->getImplicitUses())
280 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
Evan Chengd7de4962006-11-13 23:34:06 +0000281 NumImplicitOps++;
Chris Lattner349c4952008-01-07 03:13:06 +0000282 Operands.reserve(NumImplicitOps + TID->getNumOperands());
Evan Chengfa945722007-10-13 02:23:01 +0000283 if (!NoImp)
284 addImplicitDefUseOperands();
Evan Chengd7de4962006-11-13 23:34:06 +0000285}
286
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000287/// MachineInstr ctor - Work exactly the same as the ctor above, except that the
288/// MachineInstr is created and added to the end of the specified basic block.
289///
Evan Chengc0f64ff2006-11-27 23:37:22 +0000290MachineInstr::MachineInstr(MachineBasicBlock *MBB,
Chris Lattner749c6f62008-01-07 07:27:27 +0000291 const TargetInstrDesc &tid)
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000292 : TID(&tid), NumImplicitOps(0), Parent(0) {
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000293 assert(MBB && "Cannot use inserting ctor with null basic block!");
Evan Cheng67f660c2006-11-30 07:08:44 +0000294 if (TID->ImplicitDefs)
Chris Lattner349c4952008-01-07 03:13:06 +0000295 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
Evan Chengd7de4962006-11-13 23:34:06 +0000296 NumImplicitOps++;
Evan Cheng67f660c2006-11-30 07:08:44 +0000297 if (TID->ImplicitUses)
Chris Lattner349c4952008-01-07 03:13:06 +0000298 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
Evan Chengd7de4962006-11-13 23:34:06 +0000299 NumImplicitOps++;
Chris Lattner349c4952008-01-07 03:13:06 +0000300 Operands.reserve(NumImplicitOps + TID->getNumOperands());
Evan Cheng67f660c2006-11-30 07:08:44 +0000301 addImplicitDefUseOperands();
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000302 MBB->push_back(this); // Add instruction to end of basic block!
303}
304
Misha Brukmance22e762004-07-09 14:45:17 +0000305/// MachineInstr ctor - Copies MachineInstr arg exactly
306///
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000307MachineInstr::MachineInstr(MachineFunction &MF, const MachineInstr &MI) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000308 TID = &MI.getDesc();
Evan Cheng6b2c05f2006-11-15 20:54:29 +0000309 NumImplicitOps = MI.NumImplicitOps;
Chris Lattner943b5e12006-05-04 19:14:44 +0000310 Operands.reserve(MI.getNumOperands());
Tanya Lattnerb5159ed2004-05-23 20:58:02 +0000311
Misha Brukmance22e762004-07-09 14:45:17 +0000312 // Add operands
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000313 for (unsigned i = 0; i != MI.getNumOperands(); ++i) {
Chris Lattner943b5e12006-05-04 19:14:44 +0000314 Operands.push_back(MI.getOperand(i));
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000315 Operands.back().ParentMI = this;
316 }
Tanya Lattner0c63e032004-05-24 03:14:18 +0000317
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000318 // Add memory operands.
319 for (alist<MachineMemOperand>::const_iterator i = MI.memoperands_begin(),
320 j = MI.memoperands_end(); i != j; ++i)
321 addMemOperand(MF, *i);
322
323 // Set parent to null.
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000324 Parent = 0;
Tanya Lattner466b5342004-05-23 19:35:12 +0000325}
326
Misha Brukmance22e762004-07-09 14:45:17 +0000327MachineInstr::~MachineInstr() {
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000328 assert(MemOperands.empty() &&
329 "MachineInstr being deleted with live memoperands!");
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000330#ifndef NDEBUG
Chris Lattner62ed6b92008-01-01 01:12:31 +0000331 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000332 assert(Operands[i].ParentMI == this && "ParentMI mismatch!");
Chris Lattner62ed6b92008-01-01 01:12:31 +0000333 assert((!Operands[i].isReg() || !Operands[i].isOnRegUseList()) &&
334 "Reg operand def/use list corrupted");
335 }
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000336#endif
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000337}
338
Evan Cheng67f660c2006-11-30 07:08:44 +0000339/// getOpcode - Returns the opcode of this MachineInstr.
340///
Dan Gohmancb648f92007-09-14 20:08:19 +0000341int MachineInstr::getOpcode() const {
Evan Cheng67f660c2006-11-30 07:08:44 +0000342 return TID->Opcode;
343}
344
Chris Lattner62ed6b92008-01-01 01:12:31 +0000345/// getRegInfo - If this instruction is embedded into a MachineFunction,
346/// return the MachineRegisterInfo object for the current function, otherwise
347/// return null.
348MachineRegisterInfo *MachineInstr::getRegInfo() {
349 if (MachineBasicBlock *MBB = getParent())
Dan Gohman4e526b92008-07-08 23:59:09 +0000350 return &MBB->getParent()->getRegInfo();
Chris Lattner62ed6b92008-01-01 01:12:31 +0000351 return 0;
352}
353
354/// RemoveRegOperandsFromUseLists - Unlink all of the register operands in
355/// this instruction from their respective use lists. This requires that the
356/// operands already be on their use lists.
357void MachineInstr::RemoveRegOperandsFromUseLists() {
358 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
359 if (Operands[i].isReg())
360 Operands[i].RemoveRegOperandFromRegInfo();
361 }
362}
363
364/// AddRegOperandsToUseLists - Add all of the register operands in
365/// this instruction from their respective use lists. This requires that the
366/// operands not be on their use lists yet.
367void MachineInstr::AddRegOperandsToUseLists(MachineRegisterInfo &RegInfo) {
368 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
369 if (Operands[i].isReg())
370 Operands[i].AddRegOperandToRegInfo(&RegInfo);
371 }
372}
373
374
375/// addOperand - Add the specified operand to the instruction. If it is an
376/// implicit operand, it is added to the end of the operand list. If it is
377/// an explicit operand it is added at the end of the explicit operand list
378/// (before the first implicit operand).
379void MachineInstr::addOperand(const MachineOperand &Op) {
380 bool isImpReg = Op.isReg() && Op.isImplicit();
381 assert((isImpReg || !OperandsComplete()) &&
382 "Trying to add an operand to a machine instr that is already done!");
383
384 // If we are adding the operand to the end of the list, our job is simpler.
385 // This is true most of the time, so this is a reasonable optimization.
386 if (isImpReg || NumImplicitOps == 0) {
387 // We can only do this optimization if we know that the operand list won't
388 // reallocate.
389 if (Operands.empty() || Operands.size()+1 <= Operands.capacity()) {
390 Operands.push_back(Op);
391
392 // Set the parent of the operand.
393 Operands.back().ParentMI = this;
394
395 // If the operand is a register, update the operand's use list.
396 if (Op.isReg())
397 Operands.back().AddRegOperandToRegInfo(getRegInfo());
398 return;
399 }
400 }
401
402 // Otherwise, we have to insert a real operand before any implicit ones.
403 unsigned OpNo = Operands.size()-NumImplicitOps;
404
405 MachineRegisterInfo *RegInfo = getRegInfo();
406
407 // If this instruction isn't embedded into a function, then we don't need to
408 // update any operand lists.
409 if (RegInfo == 0) {
410 // Simple insertion, no reginfo update needed for other register operands.
411 Operands.insert(Operands.begin()+OpNo, Op);
412 Operands[OpNo].ParentMI = this;
413
414 // Do explicitly set the reginfo for this operand though, to ensure the
415 // next/prev fields are properly nulled out.
416 if (Operands[OpNo].isReg())
417 Operands[OpNo].AddRegOperandToRegInfo(0);
418
419 } else if (Operands.size()+1 <= Operands.capacity()) {
420 // Otherwise, we have to remove register operands from their register use
421 // list, add the operand, then add the register operands back to their use
422 // list. This also must handle the case when the operand list reallocates
423 // to somewhere else.
424
425 // If insertion of this operand won't cause reallocation of the operand
426 // list, just remove the implicit operands, add the operand, then re-add all
427 // the rest of the operands.
428 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
429 assert(Operands[i].isReg() && "Should only be an implicit reg!");
430 Operands[i].RemoveRegOperandFromRegInfo();
431 }
432
433 // Add the operand. If it is a register, add it to the reg list.
434 Operands.insert(Operands.begin()+OpNo, Op);
435 Operands[OpNo].ParentMI = this;
436
437 if (Operands[OpNo].isReg())
438 Operands[OpNo].AddRegOperandToRegInfo(RegInfo);
439
440 // Re-add all the implicit ops.
441 for (unsigned i = OpNo+1, e = Operands.size(); i != e; ++i) {
442 assert(Operands[i].isReg() && "Should only be an implicit reg!");
443 Operands[i].AddRegOperandToRegInfo(RegInfo);
444 }
445 } else {
446 // Otherwise, we will be reallocating the operand list. Remove all reg
447 // operands from their list, then readd them after the operand list is
448 // reallocated.
449 RemoveRegOperandsFromUseLists();
450
451 Operands.insert(Operands.begin()+OpNo, Op);
452 Operands[OpNo].ParentMI = this;
453
454 // Re-add all the operands.
455 AddRegOperandsToUseLists(*RegInfo);
456 }
457}
458
459/// RemoveOperand - Erase an operand from an instruction, leaving it with one
460/// fewer operand than it started with.
461///
462void MachineInstr::RemoveOperand(unsigned OpNo) {
463 assert(OpNo < Operands.size() && "Invalid operand number");
464
465 // Special case removing the last one.
466 if (OpNo == Operands.size()-1) {
467 // If needed, remove from the reg def/use list.
468 if (Operands.back().isReg() && Operands.back().isOnRegUseList())
469 Operands.back().RemoveRegOperandFromRegInfo();
470
471 Operands.pop_back();
472 return;
473 }
474
475 // Otherwise, we are removing an interior operand. If we have reginfo to
476 // update, remove all operands that will be shifted down from their reg lists,
477 // move everything down, then re-add them.
478 MachineRegisterInfo *RegInfo = getRegInfo();
479 if (RegInfo) {
480 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
481 if (Operands[i].isReg())
482 Operands[i].RemoveRegOperandFromRegInfo();
483 }
484 }
485
486 Operands.erase(Operands.begin()+OpNo);
487
488 if (RegInfo) {
489 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
490 if (Operands[i].isReg())
491 Operands[i].AddRegOperandToRegInfo(RegInfo);
492 }
493 }
494}
495
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000496/// addMemOperand - Add a MachineMemOperand to the machine instruction,
497/// referencing arbitrary storage.
498void MachineInstr::addMemOperand(MachineFunction &MF,
499 const MachineMemOperand &MO) {
500 MemOperands.push_back(MF.CreateMachineMemOperand(MO));
501}
502
503/// clearMemOperands - Erase all of this MachineInstr's MachineMemOperands.
504void MachineInstr::clearMemOperands(MachineFunction &MF) {
505 while (!MemOperands.empty())
506 MF.DeleteMachineMemOperand(MemOperands.remove(MemOperands.begin()));
507}
508
Chris Lattner62ed6b92008-01-01 01:12:31 +0000509
Chris Lattner48d7c062006-04-17 21:35:41 +0000510/// removeFromParent - This method unlinks 'this' from the containing basic
511/// block, and returns it, but does not delete it.
512MachineInstr *MachineInstr::removeFromParent() {
513 assert(getParent() && "Not embedded in a basic block!");
514 getParent()->remove(this);
515 return this;
516}
517
518
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000519/// eraseFromParent - This method unlinks 'this' from the containing basic
520/// block, and deletes it.
521void MachineInstr::eraseFromParent() {
522 assert(getParent() && "Not embedded in a basic block!");
523 getParent()->erase(this);
524}
525
526
Brian Gaeke21326fc2004-02-13 04:39:32 +0000527/// OperandComplete - Return true if it's illegal to add a new operand
528///
Chris Lattner2a90ba62004-02-12 16:09:53 +0000529bool MachineInstr::OperandsComplete() const {
Chris Lattner349c4952008-01-07 03:13:06 +0000530 unsigned short NumOperands = TID->getNumOperands();
Chris Lattner8f707e12008-01-07 05:19:29 +0000531 if (!TID->isVariadic() && getNumOperands()-NumImplicitOps >= NumOperands)
Vikram S. Adve34977822003-05-31 07:39:06 +0000532 return true; // Broken: we have all the operands of this instruction!
Chris Lattner413746e2002-10-28 20:48:39 +0000533 return false;
534}
535
Evan Cheng19e3f312007-05-15 01:26:09 +0000536/// getNumExplicitOperands - Returns the number of non-implicit operands.
537///
538unsigned MachineInstr::getNumExplicitOperands() const {
Chris Lattner349c4952008-01-07 03:13:06 +0000539 unsigned NumOperands = TID->getNumOperands();
Chris Lattner8f707e12008-01-07 05:19:29 +0000540 if (!TID->isVariadic())
Evan Cheng19e3f312007-05-15 01:26:09 +0000541 return NumOperands;
542
543 for (unsigned e = getNumOperands(); NumOperands != e; ++NumOperands) {
544 const MachineOperand &MO = getOperand(NumOperands);
545 if (!MO.isRegister() || !MO.isImplicit())
546 NumOperands++;
547 }
548 return NumOperands;
549}
550
Chris Lattner8ace2cd2006-10-20 22:39:59 +0000551
Dan Gohman44066042008-07-01 00:05:16 +0000552/// isLabel - Returns true if the MachineInstr represents a label.
553///
554bool MachineInstr::isLabel() const {
555 return getOpcode() == TargetInstrInfo::DBG_LABEL ||
556 getOpcode() == TargetInstrInfo::EH_LABEL ||
557 getOpcode() == TargetInstrInfo::GC_LABEL;
558}
559
Evan Chengbb81d972008-01-31 09:59:15 +0000560/// isDebugLabel - Returns true if the MachineInstr represents a debug label.
561///
562bool MachineInstr::isDebugLabel() const {
Dan Gohman44066042008-07-01 00:05:16 +0000563 return getOpcode() == TargetInstrInfo::DBG_LABEL;
Evan Chengbb81d972008-01-31 09:59:15 +0000564}
565
Evan Chengfaa51072007-04-26 19:00:32 +0000566/// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of
Evan Cheng32eb1f12007-03-26 22:37:45 +0000567/// the specific register or -1 if it is not found. It further tightening
Evan Cheng76d7e762007-02-23 01:04:26 +0000568/// the search criteria to a use that kills the register if isKill is true.
Evan Cheng6130f662008-03-05 00:59:57 +0000569int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill,
570 const TargetRegisterInfo *TRI) const {
Evan Cheng576d1232006-12-06 08:27:42 +0000571 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Evan Chengf277ee42007-05-29 18:35:22 +0000572 const MachineOperand &MO = getOperand(i);
Evan Cheng6130f662008-03-05 00:59:57 +0000573 if (!MO.isRegister() || !MO.isUse())
574 continue;
575 unsigned MOReg = MO.getReg();
576 if (!MOReg)
577 continue;
578 if (MOReg == Reg ||
579 (TRI &&
580 TargetRegisterInfo::isPhysicalRegister(MOReg) &&
581 TargetRegisterInfo::isPhysicalRegister(Reg) &&
582 TRI->isSubRegister(MOReg, Reg)))
Evan Cheng76d7e762007-02-23 01:04:26 +0000583 if (!isKill || MO.isKill())
Evan Cheng32eb1f12007-03-26 22:37:45 +0000584 return i;
Evan Cheng576d1232006-12-06 08:27:42 +0000585 }
Evan Cheng32eb1f12007-03-26 22:37:45 +0000586 return -1;
Evan Cheng576d1232006-12-06 08:27:42 +0000587}
588
Evan Cheng6130f662008-03-05 00:59:57 +0000589/// findRegisterDefOperandIdx() - Returns the operand index that is a def of
Dan Gohman703bfe62008-05-06 00:20:10 +0000590/// the specified register or -1 if it is not found. If isDead is true, defs
591/// that are not dead are skipped. If TargetRegisterInfo is non-null, then it
592/// also checks if there is a def of a super-register.
Evan Cheng6130f662008-03-05 00:59:57 +0000593int MachineInstr::findRegisterDefOperandIdx(unsigned Reg, bool isDead,
594 const TargetRegisterInfo *TRI) const {
Evan Chengb371f452007-02-19 21:49:54 +0000595 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Evan Cheng6130f662008-03-05 00:59:57 +0000596 const MachineOperand &MO = getOperand(i);
597 if (!MO.isRegister() || !MO.isDef())
598 continue;
599 unsigned MOReg = MO.getReg();
600 if (MOReg == Reg ||
601 (TRI &&
602 TargetRegisterInfo::isPhysicalRegister(MOReg) &&
603 TargetRegisterInfo::isPhysicalRegister(Reg) &&
604 TRI->isSubRegister(MOReg, Reg)))
605 if (!isDead || MO.isDead())
606 return i;
Evan Chengb371f452007-02-19 21:49:54 +0000607 }
Evan Cheng6130f662008-03-05 00:59:57 +0000608 return -1;
Evan Chengb371f452007-02-19 21:49:54 +0000609}
Evan Cheng19e3f312007-05-15 01:26:09 +0000610
Evan Chengf277ee42007-05-29 18:35:22 +0000611/// findFirstPredOperandIdx() - Find the index of the first operand in the
612/// operand list that is used to represent the predicate. It returns -1 if
613/// none is found.
614int MachineInstr::findFirstPredOperandIdx() const {
Chris Lattner749c6f62008-01-07 07:27:27 +0000615 const TargetInstrDesc &TID = getDesc();
616 if (TID.isPredicable()) {
Evan Cheng19e3f312007-05-15 01:26:09 +0000617 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner749c6f62008-01-07 07:27:27 +0000618 if (TID.OpInfo[i].isPredicate())
Evan Chengf277ee42007-05-29 18:35:22 +0000619 return i;
Evan Cheng19e3f312007-05-15 01:26:09 +0000620 }
621
Evan Chengf277ee42007-05-29 18:35:22 +0000622 return -1;
Evan Cheng19e3f312007-05-15 01:26:09 +0000623}
Evan Chengb371f452007-02-19 21:49:54 +0000624
Evan Chengef0732d2008-07-10 07:35:43 +0000625/// isRegReDefinedByTwoAddr - Given the defined register and the operand index,
626/// check if the register def is a re-definition due to two addr elimination.
627bool MachineInstr::isRegReDefinedByTwoAddr(unsigned Reg, unsigned DefIdx) const{
Chris Lattner749c6f62008-01-07 07:27:27 +0000628 const TargetInstrDesc &TID = getDesc();
Evan Chengef0732d2008-07-10 07:35:43 +0000629 for (unsigned i = 0, e = TID.getNumOperands(); i != e; ++i) {
630 const MachineOperand &MO = getOperand(i);
631 if (MO.isRegister() && MO.isUse() && MO.getReg() == Reg &&
632 TID.getOperandConstraint(i, TOI::TIED_TO) == (int)DefIdx)
633 return true;
Evan Cheng32dfbea2007-10-12 08:50:34 +0000634 }
635 return false;
636}
637
Evan Cheng576d1232006-12-06 08:27:42 +0000638/// copyKillDeadInfo - Copies kill / dead operand properties from MI.
639///
640void MachineInstr::copyKillDeadInfo(const MachineInstr *MI) {
641 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
642 const MachineOperand &MO = MI->getOperand(i);
Dan Gohman92dfe202007-09-14 20:33:02 +0000643 if (!MO.isRegister() || (!MO.isKill() && !MO.isDead()))
Evan Cheng576d1232006-12-06 08:27:42 +0000644 continue;
645 for (unsigned j = 0, ee = getNumOperands(); j != ee; ++j) {
646 MachineOperand &MOp = getOperand(j);
647 if (!MOp.isIdenticalTo(MO))
648 continue;
649 if (MO.isKill())
650 MOp.setIsKill();
651 else
652 MOp.setIsDead();
653 break;
654 }
655 }
656}
657
Evan Cheng19e3f312007-05-15 01:26:09 +0000658/// copyPredicates - Copies predicate operand(s) from MI.
659void MachineInstr::copyPredicates(const MachineInstr *MI) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000660 const TargetInstrDesc &TID = MI->getDesc();
Evan Chengb27087f2008-03-13 00:44:09 +0000661 if (!TID.isPredicable())
662 return;
663 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
664 if (TID.OpInfo[i].isPredicate()) {
665 // Predicated operands must be last operands.
666 addOperand(MI->getOperand(i));
Evan Cheng19e3f312007-05-15 01:26:09 +0000667 }
668 }
669}
670
Evan Cheng9f1c8312008-07-03 09:09:37 +0000671/// isSafeToMove - Return true if it is safe to move this instruction. If
672/// SawStore is set to true, it means that there is a store (or call) between
673/// the instruction's location and its intended destination.
Evan Chengb27087f2008-03-13 00:44:09 +0000674bool MachineInstr::isSafeToMove(const TargetInstrInfo *TII, bool &SawStore) {
675 // Ignore stuff that we obviously can't move.
676 if (TID->mayStore() || TID->isCall()) {
677 SawStore = true;
678 return false;
679 }
680 if (TID->isReturn() || TID->isBranch() || TID->hasUnmodeledSideEffects())
681 return false;
682
683 // See if this instruction does a load. If so, we have to guarantee that the
684 // loaded value doesn't change between the load and the its intended
685 // destination. The check for isInvariantLoad gives the targe the chance to
686 // classify the load as always returning a constant, e.g. a constant pool
687 // load.
688 if (TID->mayLoad() && !TII->isInvariantLoad(this)) {
689 // Otherwise, this is a real load. If there is a store between the load and
690 // end of block, we can't sink the load.
691 //
692 // FIXME: we can't do this transformation until we know that the load is
693 // not volatile, and machineinstrs don't keep this info. :(
694 //
695 //if (SawStore)
696 return false;
697 }
698 return true;
699}
700
Brian Gaeke21326fc2004-02-13 04:39:32 +0000701void MachineInstr::dump() const {
Bill Wendlinge8156192006-12-07 01:30:32 +0000702 cerr << " " << *this;
Vikram S. Adve70bc4b52001-07-21 12:41:50 +0000703}
704
Tanya Lattnerb1407622004-06-25 00:13:11 +0000705void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const {
Chris Lattnere3087892007-12-30 21:31:53 +0000706 // Specialize printing if op#0 is definition
Chris Lattner6a592272002-10-30 01:55:38 +0000707 unsigned StartOp = 0;
Dan Gohman92dfe202007-09-14 20:33:02 +0000708 if (getNumOperands() && getOperand(0).isRegister() && getOperand(0).isDef()) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000709 getOperand(0).print(OS, TM);
Chris Lattner6a592272002-10-30 01:55:38 +0000710 OS << " = ";
711 ++StartOp; // Don't print this operand again!
712 }
Tanya Lattnerb1407622004-06-25 00:13:11 +0000713
Chris Lattner749c6f62008-01-07 07:27:27 +0000714 OS << getDesc().getName();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000715
Chris Lattner6a592272002-10-30 01:55:38 +0000716 for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) {
717 if (i != StartOp)
718 OS << ",";
719 OS << " ";
Chris Lattnerf7382302007-12-30 21:56:09 +0000720 getOperand(i).print(OS, TM);
Chris Lattner10491642002-10-30 00:48:05 +0000721 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000722
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000723 if (!memoperands_empty()) {
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000724 OS << ", Mem:";
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000725 for (alist<MachineMemOperand>::const_iterator i = memoperands_begin(),
726 e = memoperands_end(); i != e; ++i) {
727 const MachineMemOperand &MRO = *i;
Dan Gohman69de1932008-02-06 22:27:42 +0000728 const Value *V = MRO.getValue();
729
Dan Gohman69de1932008-02-06 22:27:42 +0000730 assert((MRO.isLoad() || MRO.isStore()) &&
731 "SV has to be a load, store or both.");
732
733 if (MRO.isVolatile())
734 OS << "Volatile ";
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000735
Dan Gohman69de1932008-02-06 22:27:42 +0000736 if (MRO.isLoad())
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000737 OS << "LD";
Dan Gohman69de1932008-02-06 22:27:42 +0000738 if (MRO.isStore())
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000739 OS << "ST";
Dan Gohman69de1932008-02-06 22:27:42 +0000740
Evan Chengbbd83222008-02-08 22:05:07 +0000741 OS << "(" << MRO.getSize() << "," << MRO.getAlignment() << ") [";
Dan Gohman69de1932008-02-06 22:27:42 +0000742
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000743 if (!V)
744 OS << "<unknown>";
745 else if (!V->getName().empty())
746 OS << V->getName();
Dan Gohman69de1932008-02-06 22:27:42 +0000747 else if (isa<PseudoSourceValue>(V))
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000748 OS << *V;
Dan Gohman69de1932008-02-06 22:27:42 +0000749 else
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000750 OS << V;
751
752 OS << " + " << MRO.getOffset() << "]";
Dan Gohman69de1932008-02-06 22:27:42 +0000753 }
754 }
755
Chris Lattner10491642002-10-30 00:48:05 +0000756 OS << "\n";
757}
758
Owen Andersonb487e722008-01-24 01:10:07 +0000759bool MachineInstr::addRegisterKilled(unsigned IncomingReg,
Dan Gohman6f0d0242008-02-10 18:45:23 +0000760 const TargetRegisterInfo *RegInfo,
Owen Andersonb487e722008-01-24 01:10:07 +0000761 bool AddIfNotFound) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000762 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg);
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000763 bool hasAliases = isPhysReg && RegInfo->getAliasSet(IncomingReg);
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000764 SmallVector<unsigned,4> DeadOps;
Bill Wendling4a23d722008-03-03 22:14:33 +0000765 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
766 MachineOperand &MO = getOperand(i);
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000767 if (!MO.isRegister() || !MO.isUse())
768 continue;
769 unsigned Reg = MO.getReg();
770 if (!Reg)
771 continue;
Bill Wendling4a23d722008-03-03 22:14:33 +0000772
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000773 if (Reg == IncomingReg) {
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000774 MO.setIsKill();
775 return true;
776 }
777 if (hasAliases && MO.isKill() &&
778 TargetRegisterInfo::isPhysicalRegister(Reg)) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000779 // A super-register kill already exists.
780 if (RegInfo->isSuperRegister(IncomingReg, Reg))
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000781 return true;
782 if (RegInfo->isSubRegister(IncomingReg, Reg))
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000783 DeadOps.push_back(i);
Bill Wendling4a23d722008-03-03 22:14:33 +0000784 }
785 }
786
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000787 // Trim unneeded kill operands.
788 while (!DeadOps.empty()) {
789 unsigned OpIdx = DeadOps.back();
790 if (getOperand(OpIdx).isImplicit())
791 RemoveOperand(OpIdx);
792 else
793 getOperand(OpIdx).setIsKill(false);
794 DeadOps.pop_back();
795 }
796
Bill Wendling4a23d722008-03-03 22:14:33 +0000797 // If not found, this means an alias of one of the operands is killed. Add a
Owen Andersonb487e722008-01-24 01:10:07 +0000798 // new implicit operand if required.
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000799 if (AddIfNotFound) {
Bill Wendling4a23d722008-03-03 22:14:33 +0000800 addOperand(MachineOperand::CreateReg(IncomingReg,
801 false /*IsDef*/,
802 true /*IsImp*/,
803 true /*IsKill*/));
Owen Andersonb487e722008-01-24 01:10:07 +0000804 return true;
805 }
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000806 return false;
Owen Andersonb487e722008-01-24 01:10:07 +0000807}
808
809bool MachineInstr::addRegisterDead(unsigned IncomingReg,
Dan Gohman6f0d0242008-02-10 18:45:23 +0000810 const TargetRegisterInfo *RegInfo,
Owen Andersonb487e722008-01-24 01:10:07 +0000811 bool AddIfNotFound) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000812 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg);
Evan Cheng01b2e232008-06-27 22:11:49 +0000813 bool hasAliases = isPhysReg && RegInfo->getAliasSet(IncomingReg);
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000814 SmallVector<unsigned,4> DeadOps;
Owen Andersonb487e722008-01-24 01:10:07 +0000815 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
816 MachineOperand &MO = getOperand(i);
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000817 if (!MO.isRegister() || !MO.isDef())
818 continue;
819 unsigned Reg = MO.getReg();
820 if (Reg == IncomingReg) {
821 MO.setIsDead();
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000822 return true;
823 }
824 if (hasAliases && MO.isDead() &&
825 TargetRegisterInfo::isPhysicalRegister(Reg)) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000826 // There exists a super-register that's marked dead.
827 if (RegInfo->isSuperRegister(IncomingReg, Reg))
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000828 return true;
829 if (RegInfo->isSubRegister(IncomingReg, Reg))
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000830 DeadOps.push_back(i);
Owen Andersonb487e722008-01-24 01:10:07 +0000831 }
832 }
833
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000834 // Trim unneeded dead operands.
835 while (!DeadOps.empty()) {
836 unsigned OpIdx = DeadOps.back();
837 if (getOperand(OpIdx).isImplicit())
838 RemoveOperand(OpIdx);
839 else
840 getOperand(OpIdx).setIsDead(false);
841 DeadOps.pop_back();
842 }
843
Owen Andersonb487e722008-01-24 01:10:07 +0000844 // If not found, this means an alias of one of the operand is dead. Add a
845 // new implicit operand.
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000846 if (AddIfNotFound) {
Owen Andersonb487e722008-01-24 01:10:07 +0000847 addOperand(MachineOperand::CreateReg(IncomingReg, true/*IsDef*/,
848 true/*IsImp*/,false/*IsKill*/,
849 true/*IsDead*/));
850 return true;
851 }
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000852 return false;
Owen Andersonb487e722008-01-24 01:10:07 +0000853}