blob: ccd53fa4c4e694399f38eeeb89119e9ea5d1e6fe [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"
Jeff Cohenc21c5ee2006-12-15 22:57:14 +000027#include <ostream>
Chris Lattner0742b592004-02-23 18:38:20 +000028using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000029
Chris Lattnerf7382302007-12-30 21:56:09 +000030//===----------------------------------------------------------------------===//
31// MachineOperand Implementation
32//===----------------------------------------------------------------------===//
33
Chris Lattner62ed6b92008-01-01 01:12:31 +000034/// AddRegOperandToRegInfo - Add this register operand to the specified
35/// MachineRegisterInfo. If it is null, then the next/prev fields should be
36/// explicitly nulled out.
37void MachineOperand::AddRegOperandToRegInfo(MachineRegisterInfo *RegInfo) {
38 assert(isReg() && "Can only add reg operand to use lists");
39
40 // If the reginfo pointer is null, just explicitly null out or next/prev
41 // pointers, to ensure they are not garbage.
42 if (RegInfo == 0) {
43 Contents.Reg.Prev = 0;
44 Contents.Reg.Next = 0;
45 return;
46 }
47
48 // Otherwise, add this operand to the head of the registers use/def list.
Chris Lattner80fe5312008-01-01 21:08:22 +000049 MachineOperand **Head = &RegInfo->getRegUseDefListHead(getReg());
Chris Lattner62ed6b92008-01-01 01:12:31 +000050
Chris Lattner80fe5312008-01-01 21:08:22 +000051 // For SSA values, we prefer to keep the definition at the start of the list.
52 // we do this by skipping over the definition if it is at the head of the
53 // list.
54 if (*Head && (*Head)->isDef())
55 Head = &(*Head)->Contents.Reg.Next;
56
57 Contents.Reg.Next = *Head;
Chris Lattner62ed6b92008-01-01 01:12:31 +000058 if (Contents.Reg.Next) {
59 assert(getReg() == Contents.Reg.Next->getReg() &&
60 "Different regs on the same list!");
61 Contents.Reg.Next->Contents.Reg.Prev = &Contents.Reg.Next;
62 }
63
Chris Lattner80fe5312008-01-01 21:08:22 +000064 Contents.Reg.Prev = Head;
65 *Head = this;
Chris Lattner62ed6b92008-01-01 01:12:31 +000066}
67
68void MachineOperand::setReg(unsigned Reg) {
69 if (getReg() == Reg) return; // No change.
70
71 // Otherwise, we have to change the register. If this operand is embedded
72 // into a machine function, we need to update the old and new register's
73 // use/def lists.
74 if (MachineInstr *MI = getParent())
75 if (MachineBasicBlock *MBB = MI->getParent())
76 if (MachineFunction *MF = MBB->getParent()) {
77 RemoveRegOperandFromRegInfo();
78 Contents.Reg.RegNo = Reg;
79 AddRegOperandToRegInfo(&MF->getRegInfo());
80 return;
81 }
82
83 // Otherwise, just change the register, no problem. :)
84 Contents.Reg.RegNo = Reg;
85}
86
87/// ChangeToImmediate - Replace this operand with a new immediate operand of
88/// the specified value. If an operand is known to be an immediate already,
89/// the setImm method should be used.
90void MachineOperand::ChangeToImmediate(int64_t ImmVal) {
91 // If this operand is currently a register operand, and if this is in a
92 // function, deregister the operand from the register's use/def list.
93 if (isReg() && getParent() && getParent()->getParent() &&
94 getParent()->getParent()->getParent())
95 RemoveRegOperandFromRegInfo();
96
97 OpKind = MO_Immediate;
98 Contents.ImmVal = ImmVal;
99}
100
101/// ChangeToRegister - Replace this operand with a new register operand of
102/// the specified value. If an operand is known to be an register already,
103/// the setReg method should be used.
104void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp,
105 bool isKill, bool isDead) {
106 // If this operand is already a register operand, use setReg to update the
107 // register's use/def lists.
108 if (isReg()) {
109 setReg(Reg);
110 } else {
111 // Otherwise, change this to a register and set the reg#.
112 OpKind = MO_Register;
113 Contents.Reg.RegNo = Reg;
114
115 // If this operand is embedded in a function, add the operand to the
116 // register's use/def list.
117 if (MachineInstr *MI = getParent())
118 if (MachineBasicBlock *MBB = MI->getParent())
119 if (MachineFunction *MF = MBB->getParent())
120 AddRegOperandToRegInfo(&MF->getRegInfo());
121 }
122
123 IsDef = isDef;
124 IsImp = isImp;
125 IsKill = isKill;
126 IsDead = isDead;
127 SubReg = 0;
128}
129
Chris Lattnerf7382302007-12-30 21:56:09 +0000130/// isIdenticalTo - Return true if this operand is identical to the specified
131/// operand.
132bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const {
133 if (getType() != Other.getType()) return false;
134
135 switch (getType()) {
136 default: assert(0 && "Unrecognized operand type");
137 case MachineOperand::MO_Register:
138 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
139 getSubReg() == Other.getSubReg();
140 case MachineOperand::MO_Immediate:
141 return getImm() == Other.getImm();
Nate Begemane8b7ccf2008-02-14 07:39:30 +0000142 case MachineOperand::MO_FPImmediate:
143 return getFPImm() == Other.getFPImm();
Chris Lattnerf7382302007-12-30 21:56:09 +0000144 case MachineOperand::MO_MachineBasicBlock:
145 return getMBB() == Other.getMBB();
146 case MachineOperand::MO_FrameIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000147 return getIndex() == Other.getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +0000148 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000149 return getIndex() == Other.getIndex() && getOffset() == Other.getOffset();
Chris Lattnerf7382302007-12-30 21:56:09 +0000150 case MachineOperand::MO_JumpTableIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000151 return getIndex() == Other.getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +0000152 case MachineOperand::MO_GlobalAddress:
153 return getGlobal() == Other.getGlobal() && getOffset() == Other.getOffset();
154 case MachineOperand::MO_ExternalSymbol:
155 return !strcmp(getSymbolName(), Other.getSymbolName()) &&
156 getOffset() == Other.getOffset();
157 }
158}
159
160/// print - Print the specified machine operand.
161///
162void MachineOperand::print(std::ostream &OS, const TargetMachine *TM) const {
163 switch (getType()) {
164 case MachineOperand::MO_Register:
Dan Gohman6f0d0242008-02-10 18:45:23 +0000165 if (getReg() == 0 || TargetRegisterInfo::isVirtualRegister(getReg())) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000166 OS << "%reg" << getReg();
167 } else {
168 // If the instruction is embedded into a basic block, we can find the
Chris Lattner62ed6b92008-01-01 01:12:31 +0000169 // target info for the instruction.
Chris Lattnerf7382302007-12-30 21:56:09 +0000170 if (TM == 0)
171 if (const MachineInstr *MI = getParent())
172 if (const MachineBasicBlock *MBB = MI->getParent())
173 if (const MachineFunction *MF = MBB->getParent())
174 TM = &MF->getTarget();
175
176 if (TM)
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000177 OS << "%" << TM->getRegisterInfo()->get(getReg()).Name;
Chris Lattnerf7382302007-12-30 21:56:09 +0000178 else
179 OS << "%mreg" << getReg();
180 }
181
182 if (isDef() || isKill() || isDead() || isImplicit()) {
183 OS << "<";
184 bool NeedComma = false;
185 if (isImplicit()) {
186 OS << (isDef() ? "imp-def" : "imp-use");
187 NeedComma = true;
188 } else if (isDef()) {
189 OS << "def";
190 NeedComma = true;
191 }
192 if (isKill() || isDead()) {
Bill Wendling181eb732008-02-24 00:56:13 +0000193 if (NeedComma) OS << ",";
194 if (isKill()) OS << "kill";
195 if (isDead()) OS << "dead";
Chris Lattnerf7382302007-12-30 21:56:09 +0000196 }
197 OS << ">";
198 }
199 break;
200 case MachineOperand::MO_Immediate:
201 OS << getImm();
202 break;
Nate Begemane8b7ccf2008-02-14 07:39:30 +0000203 case MachineOperand::MO_FPImmediate:
204 if (getFPImm()->getType() == Type::FloatTy) {
205 OS << getFPImm()->getValueAPF().convertToFloat();
206 } else {
207 OS << getFPImm()->getValueAPF().convertToDouble();
208 }
209 break;
Chris Lattnerf7382302007-12-30 21:56:09 +0000210 case MachineOperand::MO_MachineBasicBlock:
211 OS << "mbb<"
Chris Lattner8aa797a2007-12-30 23:10:15 +0000212 << ((Value*)getMBB()->getBasicBlock())->getName()
213 << "," << (void*)getMBB() << ">";
Chris Lattnerf7382302007-12-30 21:56:09 +0000214 break;
215 case MachineOperand::MO_FrameIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000216 OS << "<fi#" << getIndex() << ">";
Chris Lattnerf7382302007-12-30 21:56:09 +0000217 break;
218 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000219 OS << "<cp#" << getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +0000220 if (getOffset()) OS << "+" << getOffset();
221 OS << ">";
222 break;
223 case MachineOperand::MO_JumpTableIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000224 OS << "<jt#" << getIndex() << ">";
Chris Lattnerf7382302007-12-30 21:56:09 +0000225 break;
226 case MachineOperand::MO_GlobalAddress:
227 OS << "<ga:" << ((Value*)getGlobal())->getName();
228 if (getOffset()) OS << "+" << getOffset();
229 OS << ">";
230 break;
231 case MachineOperand::MO_ExternalSymbol:
232 OS << "<es:" << getSymbolName();
233 if (getOffset()) OS << "+" << getOffset();
234 OS << ">";
235 break;
236 default:
237 assert(0 && "Unrecognized operand type");
238 }
239}
240
241//===----------------------------------------------------------------------===//
Dan Gohmance42e402008-07-07 20:32:02 +0000242// MachineMemOperand Implementation
243//===----------------------------------------------------------------------===//
244
245MachineMemOperand::MachineMemOperand(const Value *v, unsigned int f,
246 int64_t o, uint64_t s, unsigned int a)
247 : Offset(o), Size(s), V(v),
248 Flags((f & 7) | ((Log2_32(a) + 1) << 3)) {
Dan Gohmanf1bf29e2008-07-08 23:47:04 +0000249 assert(isPowerOf2_32(a) && "Alignment is not a power of 2!");
Dan Gohmanc5e1f982008-07-16 15:56:42 +0000250 assert((isLoad() || isStore()) && "Not a load/store!");
Dan Gohmance42e402008-07-07 20:32:02 +0000251}
252
253//===----------------------------------------------------------------------===//
Chris Lattnerf7382302007-12-30 21:56:09 +0000254// MachineInstr Implementation
255//===----------------------------------------------------------------------===//
256
Evan Chengc0f64ff2006-11-27 23:37:22 +0000257/// MachineInstr ctor - This constructor creates a dummy MachineInstr with
Evan Cheng67f660c2006-11-30 07:08:44 +0000258/// TID NULL and no operands.
Evan Chengc0f64ff2006-11-27 23:37:22 +0000259MachineInstr::MachineInstr()
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000260 : TID(0), NumImplicitOps(0), Parent(0) {
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000261 // Make sure that we get added to a machine basicblock
262 LeakDetector::addGarbageObject(this);
Chris Lattner72791222002-10-28 20:59:49 +0000263}
264
Evan Cheng67f660c2006-11-30 07:08:44 +0000265void MachineInstr::addImplicitDefUseOperands() {
266 if (TID->ImplicitDefs)
Chris Lattnera4161ee2007-12-30 00:12:25 +0000267 for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
Chris Lattner8019f412007-12-30 00:41:17 +0000268 addOperand(MachineOperand::CreateReg(*ImpDefs, true, true));
Evan Cheng67f660c2006-11-30 07:08:44 +0000269 if (TID->ImplicitUses)
Chris Lattnera4161ee2007-12-30 00:12:25 +0000270 for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
Chris Lattner8019f412007-12-30 00:41:17 +0000271 addOperand(MachineOperand::CreateReg(*ImpUses, false, true));
Evan Chengd7de4962006-11-13 23:34:06 +0000272}
273
274/// MachineInstr ctor - This constructor create a MachineInstr and add the
Evan Chengc0f64ff2006-11-27 23:37:22 +0000275/// implicit operands. It reserves space for number of operands specified by
Chris Lattner749c6f62008-01-07 07:27:27 +0000276/// TargetInstrDesc or the numOperands if it is not zero. (for
Evan Chengc0f64ff2006-11-27 23:37:22 +0000277/// instructions with variable number of operands).
Chris Lattner749c6f62008-01-07 07:27:27 +0000278MachineInstr::MachineInstr(const TargetInstrDesc &tid, bool NoImp)
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000279 : TID(&tid), NumImplicitOps(0), Parent(0) {
Chris Lattner349c4952008-01-07 03:13:06 +0000280 if (!NoImp && TID->getImplicitDefs())
281 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
Evan Chengd7de4962006-11-13 23:34:06 +0000282 NumImplicitOps++;
Chris Lattner349c4952008-01-07 03:13:06 +0000283 if (!NoImp && TID->getImplicitUses())
284 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
Evan Chengd7de4962006-11-13 23:34:06 +0000285 NumImplicitOps++;
Chris Lattner349c4952008-01-07 03:13:06 +0000286 Operands.reserve(NumImplicitOps + TID->getNumOperands());
Evan Chengfa945722007-10-13 02:23:01 +0000287 if (!NoImp)
288 addImplicitDefUseOperands();
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000289 // Make sure that we get added to a machine basicblock
290 LeakDetector::addGarbageObject(this);
Evan Chengd7de4962006-11-13 23:34:06 +0000291}
292
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000293/// MachineInstr ctor - Work exactly the same as the ctor above, except that the
294/// MachineInstr is created and added to the end of the specified basic block.
295///
Evan Chengc0f64ff2006-11-27 23:37:22 +0000296MachineInstr::MachineInstr(MachineBasicBlock *MBB,
Chris Lattner749c6f62008-01-07 07:27:27 +0000297 const TargetInstrDesc &tid)
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000298 : TID(&tid), NumImplicitOps(0), Parent(0) {
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000299 assert(MBB && "Cannot use inserting ctor with null basic block!");
Evan Cheng67f660c2006-11-30 07:08:44 +0000300 if (TID->ImplicitDefs)
Chris Lattner349c4952008-01-07 03:13:06 +0000301 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
Evan Chengd7de4962006-11-13 23:34:06 +0000302 NumImplicitOps++;
Evan Cheng67f660c2006-11-30 07:08:44 +0000303 if (TID->ImplicitUses)
Chris Lattner349c4952008-01-07 03:13:06 +0000304 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
Evan Chengd7de4962006-11-13 23:34:06 +0000305 NumImplicitOps++;
Chris Lattner349c4952008-01-07 03:13:06 +0000306 Operands.reserve(NumImplicitOps + TID->getNumOperands());
Evan Cheng67f660c2006-11-30 07:08:44 +0000307 addImplicitDefUseOperands();
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000308 // Make sure that we get added to a machine basicblock
309 LeakDetector::addGarbageObject(this);
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000310 MBB->push_back(this); // Add instruction to end of basic block!
311}
312
Misha Brukmance22e762004-07-09 14:45:17 +0000313/// MachineInstr ctor - Copies MachineInstr arg exactly
314///
Evan Cheng1ed99222008-07-19 00:37:25 +0000315MachineInstr::MachineInstr(MachineFunction &MF, const MachineInstr &MI)
316 : TID(&MI.getDesc()), NumImplicitOps(0), Parent(0) {
Chris Lattner943b5e12006-05-04 19:14:44 +0000317 Operands.reserve(MI.getNumOperands());
Tanya Lattnerb5159ed2004-05-23 20:58:02 +0000318
Misha Brukmance22e762004-07-09 14:45:17 +0000319 // Add operands
Evan Cheng1ed99222008-07-19 00:37:25 +0000320 for (unsigned i = 0; i != MI.getNumOperands(); ++i)
321 addOperand(MI.getOperand(i));
322 NumImplicitOps = MI.NumImplicitOps;
Tanya Lattner0c63e032004-05-24 03:14:18 +0000323
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000324 // Add memory operands.
Dan Gohmanfed90b62008-07-28 21:51:04 +0000325 for (std::list<MachineMemOperand>::const_iterator i = MI.memoperands_begin(),
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000326 j = MI.memoperands_end(); i != j; ++i)
327 addMemOperand(MF, *i);
328
329 // Set parent to null.
Chris Lattnerf20c1a42007-12-31 04:56:33 +0000330 Parent = 0;
Dan Gohman6116a732008-07-21 18:47:29 +0000331
332 LeakDetector::addGarbageObject(this);
Tanya Lattner466b5342004-05-23 19:35:12 +0000333}
334
Misha Brukmance22e762004-07-09 14:45:17 +0000335MachineInstr::~MachineInstr() {
Dan Gohman2c3f7ae2008-07-17 23:49:46 +0000336 LeakDetector::removeGarbageObject(this);
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000337 assert(MemOperands.empty() &&
338 "MachineInstr being deleted with live memoperands!");
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000339#ifndef NDEBUG
Chris Lattner62ed6b92008-01-01 01:12:31 +0000340 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000341 assert(Operands[i].ParentMI == this && "ParentMI mismatch!");
Chris Lattner62ed6b92008-01-01 01:12:31 +0000342 assert((!Operands[i].isReg() || !Operands[i].isOnRegUseList()) &&
343 "Reg operand def/use list corrupted");
344 }
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000345#endif
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000346}
347
Chris Lattner62ed6b92008-01-01 01:12:31 +0000348/// getRegInfo - If this instruction is embedded into a MachineFunction,
349/// return the MachineRegisterInfo object for the current function, otherwise
350/// return null.
351MachineRegisterInfo *MachineInstr::getRegInfo() {
352 if (MachineBasicBlock *MBB = getParent())
Dan Gohman4e526b92008-07-08 23:59:09 +0000353 return &MBB->getParent()->getRegInfo();
Chris Lattner62ed6b92008-01-01 01:12:31 +0000354 return 0;
355}
356
357/// RemoveRegOperandsFromUseLists - Unlink all of the register operands in
358/// this instruction from their respective use lists. This requires that the
359/// operands already be on their use lists.
360void MachineInstr::RemoveRegOperandsFromUseLists() {
361 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
362 if (Operands[i].isReg())
363 Operands[i].RemoveRegOperandFromRegInfo();
364 }
365}
366
367/// AddRegOperandsToUseLists - Add all of the register operands in
368/// this instruction from their respective use lists. This requires that the
369/// operands not be on their use lists yet.
370void MachineInstr::AddRegOperandsToUseLists(MachineRegisterInfo &RegInfo) {
371 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
372 if (Operands[i].isReg())
373 Operands[i].AddRegOperandToRegInfo(&RegInfo);
374 }
375}
376
377
378/// addOperand - Add the specified operand to the instruction. If it is an
379/// implicit operand, it is added to the end of the operand list. If it is
380/// an explicit operand it is added at the end of the explicit operand list
381/// (before the first implicit operand).
382void MachineInstr::addOperand(const MachineOperand &Op) {
383 bool isImpReg = Op.isReg() && Op.isImplicit();
384 assert((isImpReg || !OperandsComplete()) &&
385 "Trying to add an operand to a machine instr that is already done!");
386
387 // If we are adding the operand to the end of the list, our job is simpler.
388 // This is true most of the time, so this is a reasonable optimization.
389 if (isImpReg || NumImplicitOps == 0) {
390 // We can only do this optimization if we know that the operand list won't
391 // reallocate.
392 if (Operands.empty() || Operands.size()+1 <= Operands.capacity()) {
393 Operands.push_back(Op);
394
395 // Set the parent of the operand.
396 Operands.back().ParentMI = this;
397
398 // If the operand is a register, update the operand's use list.
399 if (Op.isReg())
400 Operands.back().AddRegOperandToRegInfo(getRegInfo());
401 return;
402 }
403 }
404
405 // Otherwise, we have to insert a real operand before any implicit ones.
406 unsigned OpNo = Operands.size()-NumImplicitOps;
407
408 MachineRegisterInfo *RegInfo = getRegInfo();
409
410 // If this instruction isn't embedded into a function, then we don't need to
411 // update any operand lists.
412 if (RegInfo == 0) {
413 // Simple insertion, no reginfo update needed for other register operands.
414 Operands.insert(Operands.begin()+OpNo, Op);
415 Operands[OpNo].ParentMI = this;
416
417 // Do explicitly set the reginfo for this operand though, to ensure the
418 // next/prev fields are properly nulled out.
419 if (Operands[OpNo].isReg())
420 Operands[OpNo].AddRegOperandToRegInfo(0);
421
422 } else if (Operands.size()+1 <= Operands.capacity()) {
423 // Otherwise, we have to remove register operands from their register use
424 // list, add the operand, then add the register operands back to their use
425 // list. This also must handle the case when the operand list reallocates
426 // to somewhere else.
427
428 // If insertion of this operand won't cause reallocation of the operand
429 // list, just remove the implicit operands, add the operand, then re-add all
430 // the rest of the operands.
431 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
432 assert(Operands[i].isReg() && "Should only be an implicit reg!");
433 Operands[i].RemoveRegOperandFromRegInfo();
434 }
435
436 // Add the operand. If it is a register, add it to the reg list.
437 Operands.insert(Operands.begin()+OpNo, Op);
438 Operands[OpNo].ParentMI = this;
439
440 if (Operands[OpNo].isReg())
441 Operands[OpNo].AddRegOperandToRegInfo(RegInfo);
442
443 // Re-add all the implicit ops.
444 for (unsigned i = OpNo+1, e = Operands.size(); i != e; ++i) {
445 assert(Operands[i].isReg() && "Should only be an implicit reg!");
446 Operands[i].AddRegOperandToRegInfo(RegInfo);
447 }
448 } else {
449 // Otherwise, we will be reallocating the operand list. Remove all reg
450 // operands from their list, then readd them after the operand list is
451 // reallocated.
452 RemoveRegOperandsFromUseLists();
453
454 Operands.insert(Operands.begin()+OpNo, Op);
455 Operands[OpNo].ParentMI = this;
456
457 // Re-add all the operands.
458 AddRegOperandsToUseLists(*RegInfo);
459 }
460}
461
462/// RemoveOperand - Erase an operand from an instruction, leaving it with one
463/// fewer operand than it started with.
464///
465void MachineInstr::RemoveOperand(unsigned OpNo) {
466 assert(OpNo < Operands.size() && "Invalid operand number");
467
468 // Special case removing the last one.
469 if (OpNo == Operands.size()-1) {
470 // If needed, remove from the reg def/use list.
471 if (Operands.back().isReg() && Operands.back().isOnRegUseList())
472 Operands.back().RemoveRegOperandFromRegInfo();
473
474 Operands.pop_back();
475 return;
476 }
477
478 // Otherwise, we are removing an interior operand. If we have reginfo to
479 // update, remove all operands that will be shifted down from their reg lists,
480 // move everything down, then re-add them.
481 MachineRegisterInfo *RegInfo = getRegInfo();
482 if (RegInfo) {
483 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
484 if (Operands[i].isReg())
485 Operands[i].RemoveRegOperandFromRegInfo();
486 }
487 }
488
489 Operands.erase(Operands.begin()+OpNo);
490
491 if (RegInfo) {
492 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
493 if (Operands[i].isReg())
494 Operands[i].AddRegOperandToRegInfo(RegInfo);
495 }
496 }
497}
498
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000499/// addMemOperand - Add a MachineMemOperand to the machine instruction,
500/// referencing arbitrary storage.
501void MachineInstr::addMemOperand(MachineFunction &MF,
502 const MachineMemOperand &MO) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000503 MemOperands.push_back(MO);
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000504}
505
506/// clearMemOperands - Erase all of this MachineInstr's MachineMemOperands.
507void MachineInstr::clearMemOperands(MachineFunction &MF) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000508 MemOperands.clear();
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000509}
510
Chris Lattner62ed6b92008-01-01 01:12:31 +0000511
Chris Lattner48d7c062006-04-17 21:35:41 +0000512/// removeFromParent - This method unlinks 'this' from the containing basic
513/// block, and returns it, but does not delete it.
514MachineInstr *MachineInstr::removeFromParent() {
515 assert(getParent() && "Not embedded in a basic block!");
516 getParent()->remove(this);
517 return this;
518}
519
520
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000521/// eraseFromParent - This method unlinks 'this' from the containing basic
522/// block, and deletes it.
523void MachineInstr::eraseFromParent() {
524 assert(getParent() && "Not embedded in a basic block!");
525 getParent()->erase(this);
526}
527
528
Brian Gaeke21326fc2004-02-13 04:39:32 +0000529/// OperandComplete - Return true if it's illegal to add a new operand
530///
Chris Lattner2a90ba62004-02-12 16:09:53 +0000531bool MachineInstr::OperandsComplete() const {
Chris Lattner349c4952008-01-07 03:13:06 +0000532 unsigned short NumOperands = TID->getNumOperands();
Chris Lattner8f707e12008-01-07 05:19:29 +0000533 if (!TID->isVariadic() && getNumOperands()-NumImplicitOps >= NumOperands)
Vikram S. Adve34977822003-05-31 07:39:06 +0000534 return true; // Broken: we have all the operands of this instruction!
Chris Lattner413746e2002-10-28 20:48:39 +0000535 return false;
536}
537
Evan Cheng19e3f312007-05-15 01:26:09 +0000538/// getNumExplicitOperands - Returns the number of non-implicit operands.
539///
540unsigned MachineInstr::getNumExplicitOperands() const {
Chris Lattner349c4952008-01-07 03:13:06 +0000541 unsigned NumOperands = TID->getNumOperands();
Chris Lattner8f707e12008-01-07 05:19:29 +0000542 if (!TID->isVariadic())
Evan Cheng19e3f312007-05-15 01:26:09 +0000543 return NumOperands;
544
545 for (unsigned e = getNumOperands(); NumOperands != e; ++NumOperands) {
546 const MachineOperand &MO = getOperand(NumOperands);
547 if (!MO.isRegister() || !MO.isImplicit())
548 NumOperands++;
549 }
550 return NumOperands;
551}
552
Chris Lattner8ace2cd2006-10-20 22:39:59 +0000553
Dan Gohman44066042008-07-01 00:05:16 +0000554/// isLabel - Returns true if the MachineInstr represents a label.
555///
556bool MachineInstr::isLabel() const {
557 return getOpcode() == TargetInstrInfo::DBG_LABEL ||
558 getOpcode() == TargetInstrInfo::EH_LABEL ||
559 getOpcode() == TargetInstrInfo::GC_LABEL;
560}
561
Evan Chengbb81d972008-01-31 09:59:15 +0000562/// isDebugLabel - Returns true if the MachineInstr represents a debug label.
563///
564bool MachineInstr::isDebugLabel() const {
Dan Gohman44066042008-07-01 00:05:16 +0000565 return getOpcode() == TargetInstrInfo::DBG_LABEL;
Evan Chengbb81d972008-01-31 09:59:15 +0000566}
567
Evan Chengfaa51072007-04-26 19:00:32 +0000568/// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of
Evan Cheng32eb1f12007-03-26 22:37:45 +0000569/// the specific register or -1 if it is not found. It further tightening
Evan Cheng76d7e762007-02-23 01:04:26 +0000570/// the search criteria to a use that kills the register if isKill is true.
Evan Cheng6130f662008-03-05 00:59:57 +0000571int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill,
572 const TargetRegisterInfo *TRI) const {
Evan Cheng576d1232006-12-06 08:27:42 +0000573 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Evan Chengf277ee42007-05-29 18:35:22 +0000574 const MachineOperand &MO = getOperand(i);
Evan Cheng6130f662008-03-05 00:59:57 +0000575 if (!MO.isRegister() || !MO.isUse())
576 continue;
577 unsigned MOReg = MO.getReg();
578 if (!MOReg)
579 continue;
580 if (MOReg == Reg ||
581 (TRI &&
582 TargetRegisterInfo::isPhysicalRegister(MOReg) &&
583 TargetRegisterInfo::isPhysicalRegister(Reg) &&
584 TRI->isSubRegister(MOReg, Reg)))
Evan Cheng76d7e762007-02-23 01:04:26 +0000585 if (!isKill || MO.isKill())
Evan Cheng32eb1f12007-03-26 22:37:45 +0000586 return i;
Evan Cheng576d1232006-12-06 08:27:42 +0000587 }
Evan Cheng32eb1f12007-03-26 22:37:45 +0000588 return -1;
Evan Cheng576d1232006-12-06 08:27:42 +0000589}
590
Evan Cheng6130f662008-03-05 00:59:57 +0000591/// findRegisterDefOperandIdx() - Returns the operand index that is a def of
Dan Gohman703bfe62008-05-06 00:20:10 +0000592/// the specified register or -1 if it is not found. If isDead is true, defs
593/// that are not dead are skipped. If TargetRegisterInfo is non-null, then it
594/// also checks if there is a def of a super-register.
Evan Cheng6130f662008-03-05 00:59:57 +0000595int MachineInstr::findRegisterDefOperandIdx(unsigned Reg, bool isDead,
596 const TargetRegisterInfo *TRI) const {
Evan Chengb371f452007-02-19 21:49:54 +0000597 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Evan Cheng6130f662008-03-05 00:59:57 +0000598 const MachineOperand &MO = getOperand(i);
599 if (!MO.isRegister() || !MO.isDef())
600 continue;
601 unsigned MOReg = MO.getReg();
602 if (MOReg == Reg ||
603 (TRI &&
604 TargetRegisterInfo::isPhysicalRegister(MOReg) &&
605 TargetRegisterInfo::isPhysicalRegister(Reg) &&
606 TRI->isSubRegister(MOReg, Reg)))
607 if (!isDead || MO.isDead())
608 return i;
Evan Chengb371f452007-02-19 21:49:54 +0000609 }
Evan Cheng6130f662008-03-05 00:59:57 +0000610 return -1;
Evan Chengb371f452007-02-19 21:49:54 +0000611}
Evan Cheng19e3f312007-05-15 01:26:09 +0000612
Evan Chengf277ee42007-05-29 18:35:22 +0000613/// findFirstPredOperandIdx() - Find the index of the first operand in the
614/// operand list that is used to represent the predicate. It returns -1 if
615/// none is found.
616int MachineInstr::findFirstPredOperandIdx() const {
Chris Lattner749c6f62008-01-07 07:27:27 +0000617 const TargetInstrDesc &TID = getDesc();
618 if (TID.isPredicable()) {
Evan Cheng19e3f312007-05-15 01:26:09 +0000619 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner749c6f62008-01-07 07:27:27 +0000620 if (TID.OpInfo[i].isPredicate())
Evan Chengf277ee42007-05-29 18:35:22 +0000621 return i;
Evan Cheng19e3f312007-05-15 01:26:09 +0000622 }
623
Evan Chengf277ee42007-05-29 18:35:22 +0000624 return -1;
Evan Cheng19e3f312007-05-15 01:26:09 +0000625}
Evan Chengb371f452007-02-19 21:49:54 +0000626
Evan Chengef0732d2008-07-10 07:35:43 +0000627/// isRegReDefinedByTwoAddr - Given the defined register and the operand index,
628/// check if the register def is a re-definition due to two addr elimination.
629bool MachineInstr::isRegReDefinedByTwoAddr(unsigned Reg, unsigned DefIdx) const{
Chris Lattner749c6f62008-01-07 07:27:27 +0000630 const TargetInstrDesc &TID = getDesc();
Evan Chengef0732d2008-07-10 07:35:43 +0000631 for (unsigned i = 0, e = TID.getNumOperands(); i != e; ++i) {
632 const MachineOperand &MO = getOperand(i);
633 if (MO.isRegister() && MO.isUse() && MO.getReg() == Reg &&
634 TID.getOperandConstraint(i, TOI::TIED_TO) == (int)DefIdx)
635 return true;
Evan Cheng32dfbea2007-10-12 08:50:34 +0000636 }
637 return false;
638}
639
Evan Cheng576d1232006-12-06 08:27:42 +0000640/// copyKillDeadInfo - Copies kill / dead operand properties from MI.
641///
642void MachineInstr::copyKillDeadInfo(const MachineInstr *MI) {
643 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
644 const MachineOperand &MO = MI->getOperand(i);
Dan Gohman92dfe202007-09-14 20:33:02 +0000645 if (!MO.isRegister() || (!MO.isKill() && !MO.isDead()))
Evan Cheng576d1232006-12-06 08:27:42 +0000646 continue;
647 for (unsigned j = 0, ee = getNumOperands(); j != ee; ++j) {
648 MachineOperand &MOp = getOperand(j);
649 if (!MOp.isIdenticalTo(MO))
650 continue;
651 if (MO.isKill())
652 MOp.setIsKill();
653 else
654 MOp.setIsDead();
655 break;
656 }
657 }
658}
659
Evan Cheng19e3f312007-05-15 01:26:09 +0000660/// copyPredicates - Copies predicate operand(s) from MI.
661void MachineInstr::copyPredicates(const MachineInstr *MI) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000662 const TargetInstrDesc &TID = MI->getDesc();
Evan Chengb27087f2008-03-13 00:44:09 +0000663 if (!TID.isPredicable())
664 return;
665 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
666 if (TID.OpInfo[i].isPredicate()) {
667 // Predicated operands must be last operands.
668 addOperand(MI->getOperand(i));
Evan Cheng19e3f312007-05-15 01:26:09 +0000669 }
670 }
671}
672
Evan Cheng9f1c8312008-07-03 09:09:37 +0000673/// isSafeToMove - Return true if it is safe to move this instruction. If
674/// SawStore is set to true, it means that there is a store (or call) between
675/// the instruction's location and its intended destination.
Evan Chengb27087f2008-03-13 00:44:09 +0000676bool MachineInstr::isSafeToMove(const TargetInstrInfo *TII, bool &SawStore) {
677 // Ignore stuff that we obviously can't move.
678 if (TID->mayStore() || TID->isCall()) {
679 SawStore = true;
680 return false;
681 }
682 if (TID->isReturn() || TID->isBranch() || TID->hasUnmodeledSideEffects())
683 return false;
684
685 // See if this instruction does a load. If so, we have to guarantee that the
686 // loaded value doesn't change between the load and the its intended
687 // destination. The check for isInvariantLoad gives the targe the chance to
688 // classify the load as always returning a constant, e.g. a constant pool
689 // load.
690 if (TID->mayLoad() && !TII->isInvariantLoad(this)) {
691 // Otherwise, this is a real load. If there is a store between the load and
692 // end of block, we can't sink the load.
693 //
694 // FIXME: we can't do this transformation until we know that the load is
695 // not volatile, and machineinstrs don't keep this info. :(
696 //
697 //if (SawStore)
698 return false;
699 }
700 return true;
701}
702
Brian Gaeke21326fc2004-02-13 04:39:32 +0000703void MachineInstr::dump() const {
Bill Wendlinge8156192006-12-07 01:30:32 +0000704 cerr << " " << *this;
Vikram S. Adve70bc4b52001-07-21 12:41:50 +0000705}
706
Tanya Lattnerb1407622004-06-25 00:13:11 +0000707void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const {
Chris Lattnere3087892007-12-30 21:31:53 +0000708 // Specialize printing if op#0 is definition
Chris Lattner6a592272002-10-30 01:55:38 +0000709 unsigned StartOp = 0;
Dan Gohman92dfe202007-09-14 20:33:02 +0000710 if (getNumOperands() && getOperand(0).isRegister() && getOperand(0).isDef()) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000711 getOperand(0).print(OS, TM);
Chris Lattner6a592272002-10-30 01:55:38 +0000712 OS << " = ";
713 ++StartOp; // Don't print this operand again!
714 }
Tanya Lattnerb1407622004-06-25 00:13:11 +0000715
Chris Lattner749c6f62008-01-07 07:27:27 +0000716 OS << getDesc().getName();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000717
Chris Lattner6a592272002-10-30 01:55:38 +0000718 for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) {
719 if (i != StartOp)
720 OS << ",";
721 OS << " ";
Chris Lattnerf7382302007-12-30 21:56:09 +0000722 getOperand(i).print(OS, TM);
Chris Lattner10491642002-10-30 00:48:05 +0000723 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000724
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000725 if (!memoperands_empty()) {
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000726 OS << ", Mem:";
Dan Gohmanfed90b62008-07-28 21:51:04 +0000727 for (std::list<MachineMemOperand>::const_iterator i = memoperands_begin(),
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000728 e = memoperands_end(); i != e; ++i) {
729 const MachineMemOperand &MRO = *i;
Dan Gohman69de1932008-02-06 22:27:42 +0000730 const Value *V = MRO.getValue();
731
Dan Gohman69de1932008-02-06 22:27:42 +0000732 assert((MRO.isLoad() || MRO.isStore()) &&
733 "SV has to be a load, store or both.");
734
735 if (MRO.isVolatile())
736 OS << "Volatile ";
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000737
Dan Gohman69de1932008-02-06 22:27:42 +0000738 if (MRO.isLoad())
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000739 OS << "LD";
Dan Gohman69de1932008-02-06 22:27:42 +0000740 if (MRO.isStore())
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000741 OS << "ST";
Dan Gohman69de1932008-02-06 22:27:42 +0000742
Evan Chengbbd83222008-02-08 22:05:07 +0000743 OS << "(" << MRO.getSize() << "," << MRO.getAlignment() << ") [";
Dan Gohman69de1932008-02-06 22:27:42 +0000744
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000745 if (!V)
746 OS << "<unknown>";
747 else if (!V->getName().empty())
748 OS << V->getName();
Dan Gohman69de1932008-02-06 22:27:42 +0000749 else if (isa<PseudoSourceValue>(V))
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000750 OS << *V;
Dan Gohman69de1932008-02-06 22:27:42 +0000751 else
Dan Gohman2bfe6ff2008-02-07 16:18:00 +0000752 OS << V;
753
754 OS << " + " << MRO.getOffset() << "]";
Dan Gohman69de1932008-02-06 22:27:42 +0000755 }
756 }
757
Chris Lattner10491642002-10-30 00:48:05 +0000758 OS << "\n";
759}
760
Owen Andersonb487e722008-01-24 01:10:07 +0000761bool MachineInstr::addRegisterKilled(unsigned IncomingReg,
Dan Gohman6f0d0242008-02-10 18:45:23 +0000762 const TargetRegisterInfo *RegInfo,
Owen Andersonb487e722008-01-24 01:10:07 +0000763 bool AddIfNotFound) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000764 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg);
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000765 bool hasAliases = isPhysReg && RegInfo->getAliasSet(IncomingReg);
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000766 SmallVector<unsigned,4> DeadOps;
Bill Wendling4a23d722008-03-03 22:14:33 +0000767 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
768 MachineOperand &MO = getOperand(i);
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000769 if (!MO.isRegister() || !MO.isUse())
770 continue;
771 unsigned Reg = MO.getReg();
772 if (!Reg)
773 continue;
Bill Wendling4a23d722008-03-03 22:14:33 +0000774
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000775 if (Reg == IncomingReg) {
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000776 MO.setIsKill();
777 return true;
778 }
779 if (hasAliases && MO.isKill() &&
780 TargetRegisterInfo::isPhysicalRegister(Reg)) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000781 // A super-register kill already exists.
782 if (RegInfo->isSuperRegister(IncomingReg, Reg))
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000783 return true;
784 if (RegInfo->isSubRegister(IncomingReg, Reg))
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000785 DeadOps.push_back(i);
Bill Wendling4a23d722008-03-03 22:14:33 +0000786 }
787 }
788
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000789 // Trim unneeded kill operands.
790 while (!DeadOps.empty()) {
791 unsigned OpIdx = DeadOps.back();
792 if (getOperand(OpIdx).isImplicit())
793 RemoveOperand(OpIdx);
794 else
795 getOperand(OpIdx).setIsKill(false);
796 DeadOps.pop_back();
797 }
798
Bill Wendling4a23d722008-03-03 22:14:33 +0000799 // If not found, this means an alias of one of the operands is killed. Add a
Owen Andersonb487e722008-01-24 01:10:07 +0000800 // new implicit operand if required.
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000801 if (AddIfNotFound) {
Bill Wendling4a23d722008-03-03 22:14:33 +0000802 addOperand(MachineOperand::CreateReg(IncomingReg,
803 false /*IsDef*/,
804 true /*IsImp*/,
805 true /*IsKill*/));
Owen Andersonb487e722008-01-24 01:10:07 +0000806 return true;
807 }
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000808 return false;
Owen Andersonb487e722008-01-24 01:10:07 +0000809}
810
811bool MachineInstr::addRegisterDead(unsigned IncomingReg,
Dan Gohman6f0d0242008-02-10 18:45:23 +0000812 const TargetRegisterInfo *RegInfo,
Owen Andersonb487e722008-01-24 01:10:07 +0000813 bool AddIfNotFound) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000814 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg);
Evan Cheng01b2e232008-06-27 22:11:49 +0000815 bool hasAliases = isPhysReg && RegInfo->getAliasSet(IncomingReg);
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000816 SmallVector<unsigned,4> DeadOps;
Owen Andersonb487e722008-01-24 01:10:07 +0000817 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
818 MachineOperand &MO = getOperand(i);
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000819 if (!MO.isRegister() || !MO.isDef())
820 continue;
821 unsigned Reg = MO.getReg();
822 if (Reg == IncomingReg) {
823 MO.setIsDead();
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000824 return true;
825 }
826 if (hasAliases && MO.isDead() &&
827 TargetRegisterInfo::isPhysicalRegister(Reg)) {
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000828 // There exists a super-register that's marked dead.
829 if (RegInfo->isSuperRegister(IncomingReg, Reg))
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000830 return true;
Owen Anderson22ae9992008-08-14 18:34:18 +0000831 if (RegInfo->getSubRegisters(IncomingReg) &&
832 RegInfo->getSuperRegisters(Reg) &&
833 RegInfo->isSubRegister(IncomingReg, Reg))
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000834 DeadOps.push_back(i);
Owen Andersonb487e722008-01-24 01:10:07 +0000835 }
836 }
837
Evan Cheng9b6d7b92008-04-16 09:41:59 +0000838 // Trim unneeded dead operands.
839 while (!DeadOps.empty()) {
840 unsigned OpIdx = DeadOps.back();
841 if (getOperand(OpIdx).isImplicit())
842 RemoveOperand(OpIdx);
843 else
844 getOperand(OpIdx).setIsDead(false);
845 DeadOps.pop_back();
846 }
847
Owen Andersonb487e722008-01-24 01:10:07 +0000848 // If not found, this means an alias of one of the operand is dead. Add a
849 // new implicit operand.
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000850 if (AddIfNotFound) {
Owen Andersonb487e722008-01-24 01:10:07 +0000851 addOperand(MachineOperand::CreateReg(IncomingReg, true/*IsDef*/,
852 true/*IsImp*/,false/*IsKill*/,
853 true/*IsDead*/));
854 return true;
855 }
Dan Gohman2ebc11a2008-07-03 01:18:51 +0000856 return false;
Owen Andersonb487e722008-01-24 01:10:07 +0000857}