Don't skip the CopyMI when removing kill markers.
[llvm/msp430.git] / lib / CodeGen / MachineInstr.cpp
blob4e5229fad0e326fe95d1cb39c4435e8cd98a2a4a
1 //===-- lib/CodeGen/MachineInstr.cpp --------------------------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Methods common to all machine instructions.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/CodeGen/MachineInstr.h"
15 #include "llvm/Constants.h"
16 #include "llvm/InlineAsm.h"
17 #include "llvm/Value.h"
18 #include "llvm/CodeGen/MachineFunction.h"
19 #include "llvm/CodeGen/MachineRegisterInfo.h"
20 #include "llvm/CodeGen/PseudoSourceValue.h"
21 #include "llvm/Target/TargetMachine.h"
22 #include "llvm/Target/TargetInstrInfo.h"
23 #include "llvm/Target/TargetInstrDesc.h"
24 #include "llvm/Target/TargetRegisterInfo.h"
25 #include "llvm/Support/LeakDetector.h"
26 #include "llvm/Support/MathExtras.h"
27 #include "llvm/Support/Streams.h"
28 #include "llvm/Support/raw_ostream.h"
29 #include "llvm/ADT/FoldingSet.h"
30 #include <ostream>
31 using namespace llvm;
33 //===----------------------------------------------------------------------===//
34 // MachineOperand Implementation
35 //===----------------------------------------------------------------------===//
37 /// AddRegOperandToRegInfo - Add this register operand to the specified
38 /// MachineRegisterInfo. If it is null, then the next/prev fields should be
39 /// explicitly nulled out.
40 void MachineOperand::AddRegOperandToRegInfo(MachineRegisterInfo *RegInfo) {
41 assert(isReg() && "Can only add reg operand to use lists");
43 // If the reginfo pointer is null, just explicitly null out or next/prev
44 // pointers, to ensure they are not garbage.
45 if (RegInfo == 0) {
46 Contents.Reg.Prev = 0;
47 Contents.Reg.Next = 0;
48 return;
51 // Otherwise, add this operand to the head of the registers use/def list.
52 MachineOperand **Head = &RegInfo->getRegUseDefListHead(getReg());
54 // For SSA values, we prefer to keep the definition at the start of the list.
55 // we do this by skipping over the definition if it is at the head of the
56 // list.
57 if (*Head && (*Head)->isDef())
58 Head = &(*Head)->Contents.Reg.Next;
60 Contents.Reg.Next = *Head;
61 if (Contents.Reg.Next) {
62 assert(getReg() == Contents.Reg.Next->getReg() &&
63 "Different regs on the same list!");
64 Contents.Reg.Next->Contents.Reg.Prev = &Contents.Reg.Next;
67 Contents.Reg.Prev = Head;
68 *Head = this;
71 /// RemoveRegOperandFromRegInfo - Remove this register operand from the
72 /// MachineRegisterInfo it is linked with.
73 void MachineOperand::RemoveRegOperandFromRegInfo() {
74 assert(isOnRegUseList() && "Reg operand is not on a use list");
75 // Unlink this from the doubly linked list of operands.
76 MachineOperand *NextOp = Contents.Reg.Next;
77 *Contents.Reg.Prev = NextOp;
78 if (NextOp) {
79 assert(NextOp->getReg() == getReg() && "Corrupt reg use/def chain!");
80 NextOp->Contents.Reg.Prev = Contents.Reg.Prev;
82 Contents.Reg.Prev = 0;
83 Contents.Reg.Next = 0;
86 void MachineOperand::setReg(unsigned Reg) {
87 if (getReg() == Reg) return; // No change.
89 // Otherwise, we have to change the register. If this operand is embedded
90 // into a machine function, we need to update the old and new register's
91 // use/def lists.
92 if (MachineInstr *MI = getParent())
93 if (MachineBasicBlock *MBB = MI->getParent())
94 if (MachineFunction *MF = MBB->getParent()) {
95 RemoveRegOperandFromRegInfo();
96 Contents.Reg.RegNo = Reg;
97 AddRegOperandToRegInfo(&MF->getRegInfo());
98 return;
101 // Otherwise, just change the register, no problem. :)
102 Contents.Reg.RegNo = Reg;
105 /// ChangeToImmediate - Replace this operand with a new immediate operand of
106 /// the specified value. If an operand is known to be an immediate already,
107 /// the setImm method should be used.
108 void MachineOperand::ChangeToImmediate(int64_t ImmVal) {
109 // If this operand is currently a register operand, and if this is in a
110 // function, deregister the operand from the register's use/def list.
111 if (isReg() && getParent() && getParent()->getParent() &&
112 getParent()->getParent()->getParent())
113 RemoveRegOperandFromRegInfo();
115 OpKind = MO_Immediate;
116 Contents.ImmVal = ImmVal;
119 /// ChangeToRegister - Replace this operand with a new register operand of
120 /// the specified value. If an operand is known to be an register already,
121 /// the setReg method should be used.
122 void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp,
123 bool isKill, bool isDead) {
124 // If this operand is already a register operand, use setReg to update the
125 // register's use/def lists.
126 if (isReg()) {
127 assert(!isEarlyClobber());
128 setReg(Reg);
129 } else {
130 // Otherwise, change this to a register and set the reg#.
131 OpKind = MO_Register;
132 Contents.Reg.RegNo = Reg;
134 // If this operand is embedded in a function, add the operand to the
135 // register's use/def list.
136 if (MachineInstr *MI = getParent())
137 if (MachineBasicBlock *MBB = MI->getParent())
138 if (MachineFunction *MF = MBB->getParent())
139 AddRegOperandToRegInfo(&MF->getRegInfo());
142 IsDef = isDef;
143 IsImp = isImp;
144 IsKill = isKill;
145 IsDead = isDead;
146 IsEarlyClobber = false;
147 SubReg = 0;
150 /// isIdenticalTo - Return true if this operand is identical to the specified
151 /// operand.
152 bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const {
153 if (getType() != Other.getType()) return false;
155 switch (getType()) {
156 default: assert(0 && "Unrecognized operand type");
157 case MachineOperand::MO_Register:
158 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
159 getSubReg() == Other.getSubReg();
160 case MachineOperand::MO_Immediate:
161 return getImm() == Other.getImm();
162 case MachineOperand::MO_FPImmediate:
163 return getFPImm() == Other.getFPImm();
164 case MachineOperand::MO_MachineBasicBlock:
165 return getMBB() == Other.getMBB();
166 case MachineOperand::MO_FrameIndex:
167 return getIndex() == Other.getIndex();
168 case MachineOperand::MO_ConstantPoolIndex:
169 return getIndex() == Other.getIndex() && getOffset() == Other.getOffset();
170 case MachineOperand::MO_JumpTableIndex:
171 return getIndex() == Other.getIndex();
172 case MachineOperand::MO_GlobalAddress:
173 return getGlobal() == Other.getGlobal() && getOffset() == Other.getOffset();
174 case MachineOperand::MO_ExternalSymbol:
175 return !strcmp(getSymbolName(), Other.getSymbolName()) &&
176 getOffset() == Other.getOffset();
180 /// print - Print the specified machine operand.
182 void MachineOperand::print(std::ostream &OS, const TargetMachine *TM) const {
183 raw_os_ostream RawOS(OS);
184 print(RawOS, TM);
187 void MachineOperand::print(raw_ostream &OS, const TargetMachine *TM) const {
188 switch (getType()) {
189 case MachineOperand::MO_Register:
190 if (getReg() == 0 || TargetRegisterInfo::isVirtualRegister(getReg())) {
191 OS << "%reg" << getReg();
192 } else {
193 // If the instruction is embedded into a basic block, we can find the
194 // target info for the instruction.
195 if (TM == 0)
196 if (const MachineInstr *MI = getParent())
197 if (const MachineBasicBlock *MBB = MI->getParent())
198 if (const MachineFunction *MF = MBB->getParent())
199 TM = &MF->getTarget();
201 if (TM)
202 OS << "%" << TM->getRegisterInfo()->get(getReg()).Name;
203 else
204 OS << "%mreg" << getReg();
207 if (getSubReg() != 0) {
208 OS << ":" << getSubReg();
211 if (isDef() || isKill() || isDead() || isImplicit() || isEarlyClobber()) {
212 OS << "<";
213 bool NeedComma = false;
214 if (isImplicit()) {
215 if (NeedComma) OS << ",";
216 OS << (isDef() ? "imp-def" : "imp-use");
217 NeedComma = true;
218 } else if (isDef()) {
219 if (NeedComma) OS << ",";
220 if (isEarlyClobber())
221 OS << "earlyclobber,";
222 OS << "def";
223 NeedComma = true;
225 if (isKill() || isDead()) {
226 if (NeedComma) OS << ",";
227 if (isKill()) OS << "kill";
228 if (isDead()) OS << "dead";
230 OS << ">";
232 break;
233 case MachineOperand::MO_Immediate:
234 OS << getImm();
235 break;
236 case MachineOperand::MO_FPImmediate:
237 if (getFPImm()->getType() == Type::FloatTy) {
238 OS << getFPImm()->getValueAPF().convertToFloat();
239 } else {
240 OS << getFPImm()->getValueAPF().convertToDouble();
242 break;
243 case MachineOperand::MO_MachineBasicBlock:
244 OS << "mbb<"
245 << ((Value*)getMBB()->getBasicBlock())->getName()
246 << "," << (void*)getMBB() << ">";
247 break;
248 case MachineOperand::MO_FrameIndex:
249 OS << "<fi#" << getIndex() << ">";
250 break;
251 case MachineOperand::MO_ConstantPoolIndex:
252 OS << "<cp#" << getIndex();
253 if (getOffset()) OS << "+" << getOffset();
254 OS << ">";
255 break;
256 case MachineOperand::MO_JumpTableIndex:
257 OS << "<jt#" << getIndex() << ">";
258 break;
259 case MachineOperand::MO_GlobalAddress:
260 OS << "<ga:" << ((Value*)getGlobal())->getName();
261 if (getOffset()) OS << "+" << getOffset();
262 OS << ">";
263 break;
264 case MachineOperand::MO_ExternalSymbol:
265 OS << "<es:" << getSymbolName();
266 if (getOffset()) OS << "+" << getOffset();
267 OS << ">";
268 break;
269 default:
270 assert(0 && "Unrecognized operand type");
274 //===----------------------------------------------------------------------===//
275 // MachineMemOperand Implementation
276 //===----------------------------------------------------------------------===//
278 MachineMemOperand::MachineMemOperand(const Value *v, unsigned int f,
279 int64_t o, uint64_t s, unsigned int a)
280 : Offset(o), Size(s), V(v),
281 Flags((f & 7) | ((Log2_32(a) + 1) << 3)) {
282 assert(isPowerOf2_32(a) && "Alignment is not a power of 2!");
283 assert((isLoad() || isStore()) && "Not a load/store!");
286 /// Profile - Gather unique data for the object.
288 void MachineMemOperand::Profile(FoldingSetNodeID &ID) const {
289 ID.AddInteger(Offset);
290 ID.AddInteger(Size);
291 ID.AddPointer(V);
292 ID.AddInteger(Flags);
295 //===----------------------------------------------------------------------===//
296 // MachineInstr Implementation
297 //===----------------------------------------------------------------------===//
299 /// MachineInstr ctor - This constructor creates a dummy MachineInstr with
300 /// TID NULL and no operands.
301 MachineInstr::MachineInstr()
302 : TID(0), NumImplicitOps(0), Parent(0), debugLoc(DebugLoc::getUnknownLoc()) {
303 // Make sure that we get added to a machine basicblock
304 LeakDetector::addGarbageObject(this);
307 void MachineInstr::addImplicitDefUseOperands() {
308 if (TID->ImplicitDefs)
309 for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
310 addOperand(MachineOperand::CreateReg(*ImpDefs, true, true));
311 if (TID->ImplicitUses)
312 for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
313 addOperand(MachineOperand::CreateReg(*ImpUses, false, true));
316 /// MachineInstr ctor - This constructor create a MachineInstr and add the
317 /// implicit operands. It reserves space for number of operands specified by
318 /// TargetInstrDesc or the numOperands if it is not zero. (for
319 /// instructions with variable number of operands).
320 MachineInstr::MachineInstr(const TargetInstrDesc &tid, bool NoImp)
321 : TID(&tid), NumImplicitOps(0), Parent(0),
322 debugLoc(DebugLoc::getUnknownLoc()) {
323 if (!NoImp && TID->getImplicitDefs())
324 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
325 NumImplicitOps++;
326 if (!NoImp && TID->getImplicitUses())
327 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
328 NumImplicitOps++;
329 Operands.reserve(NumImplicitOps + TID->getNumOperands());
330 if (!NoImp)
331 addImplicitDefUseOperands();
332 // Make sure that we get added to a machine basicblock
333 LeakDetector::addGarbageObject(this);
336 /// MachineInstr ctor - As above, but with a DebugLoc.
337 MachineInstr::MachineInstr(const TargetInstrDesc &tid, const DebugLoc dl,
338 bool NoImp)
339 : TID(&tid), NumImplicitOps(0), Parent(0), debugLoc(dl) {
340 if (!NoImp && TID->getImplicitDefs())
341 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
342 NumImplicitOps++;
343 if (!NoImp && TID->getImplicitUses())
344 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
345 NumImplicitOps++;
346 Operands.reserve(NumImplicitOps + TID->getNumOperands());
347 if (!NoImp)
348 addImplicitDefUseOperands();
349 // Make sure that we get added to a machine basicblock
350 LeakDetector::addGarbageObject(this);
353 /// MachineInstr ctor - Work exactly the same as the ctor two above, except
354 /// that the MachineInstr is created and added to the end of the specified
355 /// basic block.
357 MachineInstr::MachineInstr(MachineBasicBlock *MBB, const TargetInstrDesc &tid)
358 : TID(&tid), NumImplicitOps(0), Parent(0),
359 debugLoc(DebugLoc::getUnknownLoc()) {
360 assert(MBB && "Cannot use inserting ctor with null basic block!");
361 if (TID->ImplicitDefs)
362 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
363 NumImplicitOps++;
364 if (TID->ImplicitUses)
365 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
366 NumImplicitOps++;
367 Operands.reserve(NumImplicitOps + TID->getNumOperands());
368 addImplicitDefUseOperands();
369 // Make sure that we get added to a machine basicblock
370 LeakDetector::addGarbageObject(this);
371 MBB->push_back(this); // Add instruction to end of basic block!
374 /// MachineInstr ctor - As above, but with a DebugLoc.
376 MachineInstr::MachineInstr(MachineBasicBlock *MBB, const DebugLoc dl,
377 const TargetInstrDesc &tid)
378 : TID(&tid), NumImplicitOps(0), Parent(0), debugLoc(dl) {
379 assert(MBB && "Cannot use inserting ctor with null basic block!");
380 if (TID->ImplicitDefs)
381 for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
382 NumImplicitOps++;
383 if (TID->ImplicitUses)
384 for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
385 NumImplicitOps++;
386 Operands.reserve(NumImplicitOps + TID->getNumOperands());
387 addImplicitDefUseOperands();
388 // Make sure that we get added to a machine basicblock
389 LeakDetector::addGarbageObject(this);
390 MBB->push_back(this); // Add instruction to end of basic block!
393 /// MachineInstr ctor - Copies MachineInstr arg exactly
395 MachineInstr::MachineInstr(MachineFunction &MF, const MachineInstr &MI)
396 : TID(&MI.getDesc()), NumImplicitOps(0), Parent(0),
397 debugLoc(MI.getDebugLoc()) {
398 Operands.reserve(MI.getNumOperands());
400 // Add operands
401 for (unsigned i = 0; i != MI.getNumOperands(); ++i)
402 addOperand(MI.getOperand(i));
403 NumImplicitOps = MI.NumImplicitOps;
405 // Add memory operands.
406 for (std::list<MachineMemOperand>::const_iterator i = MI.memoperands_begin(),
407 j = MI.memoperands_end(); i != j; ++i)
408 addMemOperand(MF, *i);
410 // Set parent to null.
411 Parent = 0;
413 LeakDetector::addGarbageObject(this);
416 MachineInstr::~MachineInstr() {
417 LeakDetector::removeGarbageObject(this);
418 assert(MemOperands.empty() &&
419 "MachineInstr being deleted with live memoperands!");
420 #ifndef NDEBUG
421 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
422 assert(Operands[i].ParentMI == this && "ParentMI mismatch!");
423 assert((!Operands[i].isReg() || !Operands[i].isOnRegUseList()) &&
424 "Reg operand def/use list corrupted");
426 #endif
429 /// getRegInfo - If this instruction is embedded into a MachineFunction,
430 /// return the MachineRegisterInfo object for the current function, otherwise
431 /// return null.
432 MachineRegisterInfo *MachineInstr::getRegInfo() {
433 if (MachineBasicBlock *MBB = getParent())
434 return &MBB->getParent()->getRegInfo();
435 return 0;
438 /// RemoveRegOperandsFromUseLists - Unlink all of the register operands in
439 /// this instruction from their respective use lists. This requires that the
440 /// operands already be on their use lists.
441 void MachineInstr::RemoveRegOperandsFromUseLists() {
442 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
443 if (Operands[i].isReg())
444 Operands[i].RemoveRegOperandFromRegInfo();
448 /// AddRegOperandsToUseLists - Add all of the register operands in
449 /// this instruction from their respective use lists. This requires that the
450 /// operands not be on their use lists yet.
451 void MachineInstr::AddRegOperandsToUseLists(MachineRegisterInfo &RegInfo) {
452 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
453 if (Operands[i].isReg())
454 Operands[i].AddRegOperandToRegInfo(&RegInfo);
459 /// addOperand - Add the specified operand to the instruction. If it is an
460 /// implicit operand, it is added to the end of the operand list. If it is
461 /// an explicit operand it is added at the end of the explicit operand list
462 /// (before the first implicit operand).
463 void MachineInstr::addOperand(const MachineOperand &Op) {
464 bool isImpReg = Op.isReg() && Op.isImplicit();
465 assert((isImpReg || !OperandsComplete()) &&
466 "Trying to add an operand to a machine instr that is already done!");
468 MachineRegisterInfo *RegInfo = getRegInfo();
470 // If we are adding the operand to the end of the list, our job is simpler.
471 // This is true most of the time, so this is a reasonable optimization.
472 if (isImpReg || NumImplicitOps == 0) {
473 // We can only do this optimization if we know that the operand list won't
474 // reallocate.
475 if (Operands.empty() || Operands.size()+1 <= Operands.capacity()) {
476 Operands.push_back(Op);
478 // Set the parent of the operand.
479 Operands.back().ParentMI = this;
481 // If the operand is a register, update the operand's use list.
482 if (Op.isReg())
483 Operands.back().AddRegOperandToRegInfo(RegInfo);
484 return;
488 // Otherwise, we have to insert a real operand before any implicit ones.
489 unsigned OpNo = Operands.size()-NumImplicitOps;
491 // If this instruction isn't embedded into a function, then we don't need to
492 // update any operand lists.
493 if (RegInfo == 0) {
494 // Simple insertion, no reginfo update needed for other register operands.
495 Operands.insert(Operands.begin()+OpNo, Op);
496 Operands[OpNo].ParentMI = this;
498 // Do explicitly set the reginfo for this operand though, to ensure the
499 // next/prev fields are properly nulled out.
500 if (Operands[OpNo].isReg())
501 Operands[OpNo].AddRegOperandToRegInfo(0);
503 } else if (Operands.size()+1 <= Operands.capacity()) {
504 // Otherwise, we have to remove register operands from their register use
505 // list, add the operand, then add the register operands back to their use
506 // list. This also must handle the case when the operand list reallocates
507 // to somewhere else.
509 // If insertion of this operand won't cause reallocation of the operand
510 // list, just remove the implicit operands, add the operand, then re-add all
511 // the rest of the operands.
512 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
513 assert(Operands[i].isReg() && "Should only be an implicit reg!");
514 Operands[i].RemoveRegOperandFromRegInfo();
517 // Add the operand. If it is a register, add it to the reg list.
518 Operands.insert(Operands.begin()+OpNo, Op);
519 Operands[OpNo].ParentMI = this;
521 if (Operands[OpNo].isReg())
522 Operands[OpNo].AddRegOperandToRegInfo(RegInfo);
524 // Re-add all the implicit ops.
525 for (unsigned i = OpNo+1, e = Operands.size(); i != e; ++i) {
526 assert(Operands[i].isReg() && "Should only be an implicit reg!");
527 Operands[i].AddRegOperandToRegInfo(RegInfo);
529 } else {
530 // Otherwise, we will be reallocating the operand list. Remove all reg
531 // operands from their list, then readd them after the operand list is
532 // reallocated.
533 RemoveRegOperandsFromUseLists();
535 Operands.insert(Operands.begin()+OpNo, Op);
536 Operands[OpNo].ParentMI = this;
538 // Re-add all the operands.
539 AddRegOperandsToUseLists(*RegInfo);
543 /// RemoveOperand - Erase an operand from an instruction, leaving it with one
544 /// fewer operand than it started with.
546 void MachineInstr::RemoveOperand(unsigned OpNo) {
547 assert(OpNo < Operands.size() && "Invalid operand number");
549 // Special case removing the last one.
550 if (OpNo == Operands.size()-1) {
551 // If needed, remove from the reg def/use list.
552 if (Operands.back().isReg() && Operands.back().isOnRegUseList())
553 Operands.back().RemoveRegOperandFromRegInfo();
555 Operands.pop_back();
556 return;
559 // Otherwise, we are removing an interior operand. If we have reginfo to
560 // update, remove all operands that will be shifted down from their reg lists,
561 // move everything down, then re-add them.
562 MachineRegisterInfo *RegInfo = getRegInfo();
563 if (RegInfo) {
564 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
565 if (Operands[i].isReg())
566 Operands[i].RemoveRegOperandFromRegInfo();
570 Operands.erase(Operands.begin()+OpNo);
572 if (RegInfo) {
573 for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
574 if (Operands[i].isReg())
575 Operands[i].AddRegOperandToRegInfo(RegInfo);
580 /// addMemOperand - Add a MachineMemOperand to the machine instruction,
581 /// referencing arbitrary storage.
582 void MachineInstr::addMemOperand(MachineFunction &MF,
583 const MachineMemOperand &MO) {
584 MemOperands.push_back(MO);
587 /// clearMemOperands - Erase all of this MachineInstr's MachineMemOperands.
588 void MachineInstr::clearMemOperands(MachineFunction &MF) {
589 MemOperands.clear();
593 /// removeFromParent - This method unlinks 'this' from the containing basic
594 /// block, and returns it, but does not delete it.
595 MachineInstr *MachineInstr::removeFromParent() {
596 assert(getParent() && "Not embedded in a basic block!");
597 getParent()->remove(this);
598 return this;
602 /// eraseFromParent - This method unlinks 'this' from the containing basic
603 /// block, and deletes it.
604 void MachineInstr::eraseFromParent() {
605 assert(getParent() && "Not embedded in a basic block!");
606 getParent()->erase(this);
610 /// OperandComplete - Return true if it's illegal to add a new operand
612 bool MachineInstr::OperandsComplete() const {
613 unsigned short NumOperands = TID->getNumOperands();
614 if (!TID->isVariadic() && getNumOperands()-NumImplicitOps >= NumOperands)
615 return true; // Broken: we have all the operands of this instruction!
616 return false;
619 /// getNumExplicitOperands - Returns the number of non-implicit operands.
621 unsigned MachineInstr::getNumExplicitOperands() const {
622 unsigned NumOperands = TID->getNumOperands();
623 if (!TID->isVariadic())
624 return NumOperands;
626 for (unsigned i = NumOperands, e = getNumOperands(); i != e; ++i) {
627 const MachineOperand &MO = getOperand(i);
628 if (!MO.isReg() || !MO.isImplicit())
629 NumOperands++;
631 return NumOperands;
635 /// isLabel - Returns true if the MachineInstr represents a label.
637 bool MachineInstr::isLabel() const {
638 return getOpcode() == TargetInstrInfo::DBG_LABEL ||
639 getOpcode() == TargetInstrInfo::EH_LABEL ||
640 getOpcode() == TargetInstrInfo::GC_LABEL;
643 /// isDebugLabel - Returns true if the MachineInstr represents a debug label.
645 bool MachineInstr::isDebugLabel() const {
646 return getOpcode() == TargetInstrInfo::DBG_LABEL;
649 /// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of
650 /// the specific register or -1 if it is not found. It further tightening
651 /// the search criteria to a use that kills the register if isKill is true.
652 int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill,
653 const TargetRegisterInfo *TRI) const {
654 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
655 const MachineOperand &MO = getOperand(i);
656 if (!MO.isReg() || !MO.isUse())
657 continue;
658 unsigned MOReg = MO.getReg();
659 if (!MOReg)
660 continue;
661 if (MOReg == Reg ||
662 (TRI &&
663 TargetRegisterInfo::isPhysicalRegister(MOReg) &&
664 TargetRegisterInfo::isPhysicalRegister(Reg) &&
665 TRI->isSubRegister(MOReg, Reg)))
666 if (!isKill || MO.isKill())
667 return i;
669 return -1;
672 /// findRegisterDefOperandIdx() - Returns the operand index that is a def of
673 /// the specified register or -1 if it is not found. If isDead is true, defs
674 /// that are not dead are skipped. If TargetRegisterInfo is non-null, then it
675 /// also checks if there is a def of a super-register.
676 int MachineInstr::findRegisterDefOperandIdx(unsigned Reg, bool isDead,
677 const TargetRegisterInfo *TRI) const {
678 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
679 const MachineOperand &MO = getOperand(i);
680 if (!MO.isReg() || !MO.isDef())
681 continue;
682 unsigned MOReg = MO.getReg();
683 if (MOReg == Reg ||
684 (TRI &&
685 TargetRegisterInfo::isPhysicalRegister(MOReg) &&
686 TargetRegisterInfo::isPhysicalRegister(Reg) &&
687 TRI->isSubRegister(MOReg, Reg)))
688 if (!isDead || MO.isDead())
689 return i;
691 return -1;
694 /// findFirstPredOperandIdx() - Find the index of the first operand in the
695 /// operand list that is used to represent the predicate. It returns -1 if
696 /// none is found.
697 int MachineInstr::findFirstPredOperandIdx() const {
698 const TargetInstrDesc &TID = getDesc();
699 if (TID.isPredicable()) {
700 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
701 if (TID.OpInfo[i].isPredicate())
702 return i;
705 return -1;
708 /// isRegTiedToUseOperand - Given the index of a register def operand,
709 /// check if the register def is tied to a source operand, due to either
710 /// two-address elimination or inline assembly constraints. Returns the
711 /// first tied use operand index by reference is UseOpIdx is not null.
712 bool MachineInstr::isRegTiedToUseOperand(unsigned DefOpIdx, unsigned *UseOpIdx){
713 if (getOpcode() == TargetInstrInfo::INLINEASM) {
714 assert(DefOpIdx >= 2);
715 const MachineOperand &MO = getOperand(DefOpIdx);
716 if (!MO.isReg() || !MO.isDef() || MO.getReg() == 0)
717 return false;
718 // Determine the actual operand no corresponding to this index.
719 unsigned DefNo = 0;
720 for (unsigned i = 1, e = getNumOperands(); i < e; ) {
721 const MachineOperand &FMO = getOperand(i);
722 assert(FMO.isImm());
723 // Skip over this def.
724 i += InlineAsm::getNumOperandRegisters(FMO.getImm()) + 1;
725 if (i > DefOpIdx)
726 break;
727 ++DefNo;
729 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
730 const MachineOperand &FMO = getOperand(i);
731 if (!FMO.isImm())
732 continue;
733 if (i+1 >= e || !getOperand(i+1).isReg() || !getOperand(i+1).isUse())
734 continue;
735 unsigned Idx;
736 if (InlineAsm::isUseOperandTiedToDef(FMO.getImm(), Idx) &&
737 Idx == DefNo) {
738 if (UseOpIdx)
739 *UseOpIdx = (unsigned)i + 1;
740 return true;
745 assert(getOperand(DefOpIdx).isDef() && "DefOpIdx is not a def!");
746 const TargetInstrDesc &TID = getDesc();
747 for (unsigned i = 0, e = TID.getNumOperands(); i != e; ++i) {
748 const MachineOperand &MO = getOperand(i);
749 if (MO.isReg() && MO.isUse() &&
750 TID.getOperandConstraint(i, TOI::TIED_TO) == (int)DefOpIdx) {
751 if (UseOpIdx)
752 *UseOpIdx = (unsigned)i;
753 return true;
756 return false;
759 /// isRegTiedToDefOperand - Return true if the operand of the specified index
760 /// is a register use and it is tied to an def operand. It also returns the def
761 /// operand index by reference.
762 bool MachineInstr::isRegTiedToDefOperand(unsigned UseOpIdx, unsigned *DefOpIdx){
763 if (getOpcode() == TargetInstrInfo::INLINEASM) {
764 const MachineOperand &MO = getOperand(UseOpIdx);
765 if (!MO.isReg() || !MO.isUse() || MO.getReg() == 0)
766 return false;
767 assert(UseOpIdx > 0);
768 const MachineOperand &UFMO = getOperand(UseOpIdx-1);
769 if (!UFMO.isImm())
770 return false; // Must be physreg uses.
771 unsigned DefNo;
772 if (InlineAsm::isUseOperandTiedToDef(UFMO.getImm(), DefNo)) {
773 if (!DefOpIdx)
774 return true;
776 unsigned DefIdx = 1;
777 // Remember to adjust the index. First operand is asm string, then there
778 // is a flag for each.
779 while (DefNo) {
780 const MachineOperand &FMO = getOperand(DefIdx);
781 assert(FMO.isImm());
782 // Skip over this def.
783 DefIdx += InlineAsm::getNumOperandRegisters(FMO.getImm()) + 1;
784 --DefNo;
786 *DefOpIdx = DefIdx+1;
787 return true;
789 return false;
792 const TargetInstrDesc &TID = getDesc();
793 if (UseOpIdx >= TID.getNumOperands())
794 return false;
795 const MachineOperand &MO = getOperand(UseOpIdx);
796 if (!MO.isReg() || !MO.isUse())
797 return false;
798 int DefIdx = TID.getOperandConstraint(UseOpIdx, TOI::TIED_TO);
799 if (DefIdx == -1)
800 return false;
801 if (DefOpIdx)
802 *DefOpIdx = (unsigned)DefIdx;
803 return true;
806 /// copyKillDeadInfo - Copies kill / dead operand properties from MI.
808 void MachineInstr::copyKillDeadInfo(const MachineInstr *MI) {
809 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
810 const MachineOperand &MO = MI->getOperand(i);
811 if (!MO.isReg() || (!MO.isKill() && !MO.isDead()))
812 continue;
813 for (unsigned j = 0, ee = getNumOperands(); j != ee; ++j) {
814 MachineOperand &MOp = getOperand(j);
815 if (!MOp.isIdenticalTo(MO))
816 continue;
817 if (MO.isKill())
818 MOp.setIsKill();
819 else
820 MOp.setIsDead();
821 break;
826 /// copyPredicates - Copies predicate operand(s) from MI.
827 void MachineInstr::copyPredicates(const MachineInstr *MI) {
828 const TargetInstrDesc &TID = MI->getDesc();
829 if (!TID.isPredicable())
830 return;
831 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
832 if (TID.OpInfo[i].isPredicate()) {
833 // Predicated operands must be last operands.
834 addOperand(MI->getOperand(i));
839 /// isSafeToMove - Return true if it is safe to move this instruction. If
840 /// SawStore is set to true, it means that there is a store (or call) between
841 /// the instruction's location and its intended destination.
842 bool MachineInstr::isSafeToMove(const TargetInstrInfo *TII,
843 bool &SawStore) const {
844 // Ignore stuff that we obviously can't move.
845 if (TID->mayStore() || TID->isCall()) {
846 SawStore = true;
847 return false;
849 if (TID->isTerminator() || TID->hasUnmodeledSideEffects())
850 return false;
852 // See if this instruction does a load. If so, we have to guarantee that the
853 // loaded value doesn't change between the load and the its intended
854 // destination. The check for isInvariantLoad gives the targe the chance to
855 // classify the load as always returning a constant, e.g. a constant pool
856 // load.
857 if (TID->mayLoad() && !TII->isInvariantLoad(this))
858 // Otherwise, this is a real load. If there is a store between the load and
859 // end of block, or if the laod is volatile, we can't move it.
860 return !SawStore && !hasVolatileMemoryRef();
862 return true;
865 /// isSafeToReMat - Return true if it's safe to rematerialize the specified
866 /// instruction which defined the specified register instead of copying it.
867 bool MachineInstr::isSafeToReMat(const TargetInstrInfo *TII,
868 unsigned DstReg) const {
869 bool SawStore = false;
870 if (!getDesc().isRematerializable() ||
871 !TII->isTriviallyReMaterializable(this) ||
872 !isSafeToMove(TII, SawStore))
873 return false;
874 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
875 const MachineOperand &MO = getOperand(i);
876 if (!MO.isReg())
877 continue;
878 // FIXME: For now, do not remat any instruction with register operands.
879 // Later on, we can loosen the restriction is the register operands have
880 // not been modified between the def and use. Note, this is different from
881 // MachineSink because the code is no longer in two-address form (at least
882 // partially).
883 if (MO.isUse())
884 return false;
885 else if (!MO.isDead() && MO.getReg() != DstReg)
886 return false;
888 return true;
891 /// hasVolatileMemoryRef - Return true if this instruction may have a
892 /// volatile memory reference, or if the information describing the
893 /// memory reference is not available. Return false if it is known to
894 /// have no volatile memory references.
895 bool MachineInstr::hasVolatileMemoryRef() const {
896 // An instruction known never to access memory won't have a volatile access.
897 if (!TID->mayStore() &&
898 !TID->mayLoad() &&
899 !TID->isCall() &&
900 !TID->hasUnmodeledSideEffects())
901 return false;
903 // Otherwise, if the instruction has no memory reference information,
904 // conservatively assume it wasn't preserved.
905 if (memoperands_empty())
906 return true;
908 // Check the memory reference information for volatile references.
909 for (std::list<MachineMemOperand>::const_iterator I = memoperands_begin(),
910 E = memoperands_end(); I != E; ++I)
911 if (I->isVolatile())
912 return true;
914 return false;
917 void MachineInstr::dump() const {
918 cerr << " " << *this;
921 void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const {
922 raw_os_ostream RawOS(OS);
923 print(RawOS, TM);
926 void MachineInstr::print(raw_ostream &OS, const TargetMachine *TM) const {
927 // Specialize printing if op#0 is definition
928 unsigned StartOp = 0;
929 if (getNumOperands() && getOperand(0).isReg() && getOperand(0).isDef()) {
930 getOperand(0).print(OS, TM);
931 OS << " = ";
932 ++StartOp; // Don't print this operand again!
935 OS << getDesc().getName();
937 for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) {
938 if (i != StartOp)
939 OS << ",";
940 OS << " ";
941 getOperand(i).print(OS, TM);
944 if (!memoperands_empty()) {
945 OS << ", Mem:";
946 for (std::list<MachineMemOperand>::const_iterator i = memoperands_begin(),
947 e = memoperands_end(); i != e; ++i) {
948 const MachineMemOperand &MRO = *i;
949 const Value *V = MRO.getValue();
951 assert((MRO.isLoad() || MRO.isStore()) &&
952 "SV has to be a load, store or both.");
954 if (MRO.isVolatile())
955 OS << "Volatile ";
957 if (MRO.isLoad())
958 OS << "LD";
959 if (MRO.isStore())
960 OS << "ST";
962 OS << "(" << MRO.getSize() << "," << MRO.getAlignment() << ") [";
964 if (!V)
965 OS << "<unknown>";
966 else if (!V->getName().empty())
967 OS << V->getName();
968 else if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V)) {
969 PSV->print(OS);
970 } else
971 OS << V;
973 OS << " + " << MRO.getOffset() << "]";
977 if (!debugLoc.isUnknown()) {
978 const MachineFunction *MF = getParent()->getParent();
979 DebugLocTuple DLT = MF->getDebugLocTuple(debugLoc);
980 OS << " [dbg: "
981 << DLT.Src << ","
982 << DLT.Line << ","
983 << DLT.Col << "]";
986 OS << "\n";
989 bool MachineInstr::addRegisterKilled(unsigned IncomingReg,
990 const TargetRegisterInfo *RegInfo,
991 bool AddIfNotFound) {
992 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg);
993 bool hasAliases = isPhysReg && RegInfo->getAliasSet(IncomingReg);
994 bool Found = false;
995 SmallVector<unsigned,4> DeadOps;
996 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
997 MachineOperand &MO = getOperand(i);
998 if (!MO.isReg() || !MO.isUse())
999 continue;
1000 unsigned Reg = MO.getReg();
1001 if (!Reg)
1002 continue;
1004 if (Reg == IncomingReg) {
1005 if (!Found) {
1006 if (MO.isKill())
1007 // The register is already marked kill.
1008 return true;
1009 MO.setIsKill();
1010 Found = true;
1012 } else if (hasAliases && MO.isKill() &&
1013 TargetRegisterInfo::isPhysicalRegister(Reg)) {
1014 // A super-register kill already exists.
1015 if (RegInfo->isSuperRegister(IncomingReg, Reg))
1016 return true;
1017 if (RegInfo->isSubRegister(IncomingReg, Reg))
1018 DeadOps.push_back(i);
1022 // Trim unneeded kill operands.
1023 while (!DeadOps.empty()) {
1024 unsigned OpIdx = DeadOps.back();
1025 if (getOperand(OpIdx).isImplicit())
1026 RemoveOperand(OpIdx);
1027 else
1028 getOperand(OpIdx).setIsKill(false);
1029 DeadOps.pop_back();
1032 // If not found, this means an alias of one of the operands is killed. Add a
1033 // new implicit operand if required.
1034 if (!Found && AddIfNotFound) {
1035 addOperand(MachineOperand::CreateReg(IncomingReg,
1036 false /*IsDef*/,
1037 true /*IsImp*/,
1038 true /*IsKill*/));
1039 return true;
1041 return Found;
1044 bool MachineInstr::addRegisterDead(unsigned IncomingReg,
1045 const TargetRegisterInfo *RegInfo,
1046 bool AddIfNotFound) {
1047 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg);
1048 bool hasAliases = isPhysReg && RegInfo->getAliasSet(IncomingReg);
1049 bool Found = false;
1050 SmallVector<unsigned,4> DeadOps;
1051 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
1052 MachineOperand &MO = getOperand(i);
1053 if (!MO.isReg() || !MO.isDef())
1054 continue;
1055 unsigned Reg = MO.getReg();
1056 if (!Reg)
1057 continue;
1059 if (Reg == IncomingReg) {
1060 if (!Found) {
1061 if (MO.isDead())
1062 // The register is already marked dead.
1063 return true;
1064 MO.setIsDead();
1065 Found = true;
1067 } else if (hasAliases && MO.isDead() &&
1068 TargetRegisterInfo::isPhysicalRegister(Reg)) {
1069 // There exists a super-register that's marked dead.
1070 if (RegInfo->isSuperRegister(IncomingReg, Reg))
1071 return true;
1072 if (RegInfo->getSubRegisters(IncomingReg) &&
1073 RegInfo->getSuperRegisters(Reg) &&
1074 RegInfo->isSubRegister(IncomingReg, Reg))
1075 DeadOps.push_back(i);
1079 // Trim unneeded dead operands.
1080 while (!DeadOps.empty()) {
1081 unsigned OpIdx = DeadOps.back();
1082 if (getOperand(OpIdx).isImplicit())
1083 RemoveOperand(OpIdx);
1084 else
1085 getOperand(OpIdx).setIsDead(false);
1086 DeadOps.pop_back();
1089 // If not found, this means an alias of one of the operands is dead. Add a
1090 // new implicit operand if required.
1091 if (!Found && AddIfNotFound) {
1092 addOperand(MachineOperand::CreateReg(IncomingReg,
1093 true /*IsDef*/,
1094 true /*IsImp*/,
1095 false /*IsKill*/,
1096 true /*IsDead*/));
1097 return true;
1099 return Found;