Also print alignment.
[oota-llvm.git] / lib / CodeGen / MachineInstr.cpp
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.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/CodeGen/MachineInstr.h"
15 #include "llvm/Value.h"
16 #include "llvm/CodeGen/MachineFunction.h"
17 #include "llvm/CodeGen/MachineRegisterInfo.h"
18 #include "llvm/CodeGen/PseudoSourceValue.h"
19 #include "llvm/CodeGen/SelectionDAGNodes.h"
20 #include "llvm/Target/TargetMachine.h"
21 #include "llvm/Target/TargetInstrInfo.h"
22 #include "llvm/Target/TargetInstrDesc.h"
23 #include "llvm/Target/MRegisterInfo.h"
24 #include "llvm/Support/LeakDetector.h"
25 #include "llvm/Support/Streams.h"
26 #include <ostream>
27 using namespace llvm;
28
29 //===----------------------------------------------------------------------===//
30 // MachineOperand Implementation
31 //===----------------------------------------------------------------------===//
32
33 /// 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.
36 void 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.
48   MachineOperand **Head = &RegInfo->getRegUseDefListHead(getReg());
49   
50   // 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;
57   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   
63   Contents.Reg.Prev = Head;
64   *Head = this;
65 }
66
67 void 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.
89 void 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.
103 void 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
129 /// isIdenticalTo - Return true if this operand is identical to the specified
130 /// operand.
131 bool 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();
141   case MachineOperand::MO_MachineBasicBlock:
142     return getMBB() == Other.getMBB();
143   case MachineOperand::MO_FrameIndex:
144     return getIndex() == Other.getIndex();
145   case MachineOperand::MO_ConstantPoolIndex:
146     return getIndex() == Other.getIndex() && getOffset() == Other.getOffset();
147   case MachineOperand::MO_JumpTableIndex:
148     return getIndex() == Other.getIndex();
149   case MachineOperand::MO_GlobalAddress:
150     return getGlobal() == Other.getGlobal() && getOffset() == Other.getOffset();
151   case MachineOperand::MO_ExternalSymbol:
152     return !strcmp(getSymbolName(), Other.getSymbolName()) &&
153            getOffset() == Other.getOffset();
154   }
155 }
156
157 /// print - Print the specified machine operand.
158 ///
159 void MachineOperand::print(std::ostream &OS, const TargetMachine *TM) const {
160   switch (getType()) {
161   case MachineOperand::MO_Register:
162     if (getReg() == 0 || MRegisterInfo::isVirtualRegister(getReg())) {
163       OS << "%reg" << getReg();
164     } else {
165       // If the instruction is embedded into a basic block, we can find the
166       // target info for the instruction.
167       if (TM == 0)
168         if (const MachineInstr *MI = getParent())
169           if (const MachineBasicBlock *MBB = MI->getParent())
170             if (const MachineFunction *MF = MBB->getParent())
171               TM = &MF->getTarget();
172       
173       if (TM)
174         OS << "%" << TM->getRegisterInfo()->get(getReg()).Name;
175       else
176         OS << "%mreg" << getReg();
177     }
178       
179     if (isDef() || isKill() || isDead() || isImplicit()) {
180       OS << "<";
181       bool NeedComma = false;
182       if (isImplicit()) {
183         OS << (isDef() ? "imp-def" : "imp-use");
184         NeedComma = true;
185       } else if (isDef()) {
186         OS << "def";
187         NeedComma = true;
188       }
189       if (isKill() || isDead()) {
190         if (NeedComma)    OS << ",";
191         if (isKill()) OS << "kill";
192         if (isDead()) OS << "dead";
193       }
194       OS << ">";
195     }
196     break;
197   case MachineOperand::MO_Immediate:
198     OS << getImm();
199     break;
200   case MachineOperand::MO_MachineBasicBlock:
201     OS << "mbb<"
202        << ((Value*)getMBB()->getBasicBlock())->getName()
203        << "," << (void*)getMBB() << ">";
204     break;
205   case MachineOperand::MO_FrameIndex:
206     OS << "<fi#" << getIndex() << ">";
207     break;
208   case MachineOperand::MO_ConstantPoolIndex:
209     OS << "<cp#" << getIndex();
210     if (getOffset()) OS << "+" << getOffset();
211     OS << ">";
212     break;
213   case MachineOperand::MO_JumpTableIndex:
214     OS << "<jt#" << getIndex() << ">";
215     break;
216   case MachineOperand::MO_GlobalAddress:
217     OS << "<ga:" << ((Value*)getGlobal())->getName();
218     if (getOffset()) OS << "+" << getOffset();
219     OS << ">";
220     break;
221   case MachineOperand::MO_ExternalSymbol:
222     OS << "<es:" << getSymbolName();
223     if (getOffset()) OS << "+" << getOffset();
224     OS << ">";
225     break;
226   default:
227     assert(0 && "Unrecognized operand type");
228   }
229 }
230
231 //===----------------------------------------------------------------------===//
232 // MachineInstr Implementation
233 //===----------------------------------------------------------------------===//
234
235 /// MachineInstr ctor - This constructor creates a dummy MachineInstr with
236 /// TID NULL and no operands.
237 MachineInstr::MachineInstr()
238   : TID(0), NumImplicitOps(0), Parent(0) {
239   // Make sure that we get added to a machine basicblock
240   LeakDetector::addGarbageObject(this);
241 }
242
243 void MachineInstr::addImplicitDefUseOperands() {
244   if (TID->ImplicitDefs)
245     for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
246       addOperand(MachineOperand::CreateReg(*ImpDefs, true, true));
247   if (TID->ImplicitUses)
248     for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
249       addOperand(MachineOperand::CreateReg(*ImpUses, false, true));
250 }
251
252 /// MachineInstr ctor - This constructor create a MachineInstr and add the
253 /// implicit operands. It reserves space for number of operands specified by
254 /// TargetInstrDesc or the numOperands if it is not zero. (for
255 /// instructions with variable number of operands).
256 MachineInstr::MachineInstr(const TargetInstrDesc &tid, bool NoImp)
257   : TID(&tid), NumImplicitOps(0), Parent(0) {
258   if (!NoImp && TID->getImplicitDefs())
259     for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
260       NumImplicitOps++;
261   if (!NoImp && TID->getImplicitUses())
262     for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
263       NumImplicitOps++;
264   Operands.reserve(NumImplicitOps + TID->getNumOperands());
265   if (!NoImp)
266     addImplicitDefUseOperands();
267   // Make sure that we get added to a machine basicblock
268   LeakDetector::addGarbageObject(this);
269 }
270
271 /// MachineInstr ctor - Work exactly the same as the ctor above, except that the
272 /// MachineInstr is created and added to the end of the specified basic block.
273 ///
274 MachineInstr::MachineInstr(MachineBasicBlock *MBB,
275                            const TargetInstrDesc &tid)
276   : TID(&tid), NumImplicitOps(0), Parent(0) {
277   assert(MBB && "Cannot use inserting ctor with null basic block!");
278   if (TID->ImplicitDefs)
279     for (const unsigned *ImpDefs = TID->getImplicitDefs(); *ImpDefs; ++ImpDefs)
280       NumImplicitOps++;
281   if (TID->ImplicitUses)
282     for (const unsigned *ImpUses = TID->getImplicitUses(); *ImpUses; ++ImpUses)
283       NumImplicitOps++;
284   Operands.reserve(NumImplicitOps + TID->getNumOperands());
285   addImplicitDefUseOperands();
286   // Make sure that we get added to a machine basicblock
287   LeakDetector::addGarbageObject(this);
288   MBB->push_back(this);  // Add instruction to end of basic block!
289 }
290
291 /// MachineInstr ctor - Copies MachineInstr arg exactly
292 ///
293 MachineInstr::MachineInstr(const MachineInstr &MI) {
294   TID = &MI.getDesc();
295   NumImplicitOps = MI.NumImplicitOps;
296   Operands.reserve(MI.getNumOperands());
297   MemOperands = MI.MemOperands;
298
299   // Add operands
300   for (unsigned i = 0; i != MI.getNumOperands(); ++i) {
301     Operands.push_back(MI.getOperand(i));
302     Operands.back().ParentMI = this;
303   }
304
305   // Set parent, next, and prev to null
306   Parent = 0;
307   Prev = 0;
308   Next = 0;
309 }
310
311
312 MachineInstr::~MachineInstr() {
313   LeakDetector::removeGarbageObject(this);
314 #ifndef NDEBUG
315   for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
316     assert(Operands[i].ParentMI == this && "ParentMI mismatch!");
317     assert((!Operands[i].isReg() || !Operands[i].isOnRegUseList()) &&
318            "Reg operand def/use list corrupted");
319   }
320 #endif
321 }
322
323 /// getOpcode - Returns the opcode of this MachineInstr.
324 ///
325 int MachineInstr::getOpcode() const {
326   return TID->Opcode;
327 }
328
329 /// getRegInfo - If this instruction is embedded into a MachineFunction,
330 /// return the MachineRegisterInfo object for the current function, otherwise
331 /// return null.
332 MachineRegisterInfo *MachineInstr::getRegInfo() {
333   if (MachineBasicBlock *MBB = getParent())
334     if (MachineFunction *MF = MBB->getParent())
335       return &MF->getRegInfo();
336   return 0;
337 }
338
339 /// RemoveRegOperandsFromUseLists - Unlink all of the register operands in
340 /// this instruction from their respective use lists.  This requires that the
341 /// operands already be on their use lists.
342 void MachineInstr::RemoveRegOperandsFromUseLists() {
343   for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
344     if (Operands[i].isReg())
345       Operands[i].RemoveRegOperandFromRegInfo();
346   }
347 }
348
349 /// AddRegOperandsToUseLists - Add all of the register operands in
350 /// this instruction from their respective use lists.  This requires that the
351 /// operands not be on their use lists yet.
352 void MachineInstr::AddRegOperandsToUseLists(MachineRegisterInfo &RegInfo) {
353   for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
354     if (Operands[i].isReg())
355       Operands[i].AddRegOperandToRegInfo(&RegInfo);
356   }
357 }
358
359
360 /// addOperand - Add the specified operand to the instruction.  If it is an
361 /// implicit operand, it is added to the end of the operand list.  If it is
362 /// an explicit operand it is added at the end of the explicit operand list
363 /// (before the first implicit operand). 
364 void MachineInstr::addOperand(const MachineOperand &Op) {
365   bool isImpReg = Op.isReg() && Op.isImplicit();
366   assert((isImpReg || !OperandsComplete()) &&
367          "Trying to add an operand to a machine instr that is already done!");
368
369   // If we are adding the operand to the end of the list, our job is simpler.
370   // This is true most of the time, so this is a reasonable optimization.
371   if (isImpReg || NumImplicitOps == 0) {
372     // We can only do this optimization if we know that the operand list won't
373     // reallocate.
374     if (Operands.empty() || Operands.size()+1 <= Operands.capacity()) {
375       Operands.push_back(Op);
376     
377       // Set the parent of the operand.
378       Operands.back().ParentMI = this;
379   
380       // If the operand is a register, update the operand's use list.
381       if (Op.isReg())
382         Operands.back().AddRegOperandToRegInfo(getRegInfo());
383       return;
384     }
385   }
386   
387   // Otherwise, we have to insert a real operand before any implicit ones.
388   unsigned OpNo = Operands.size()-NumImplicitOps;
389
390   MachineRegisterInfo *RegInfo = getRegInfo();
391
392   // If this instruction isn't embedded into a function, then we don't need to
393   // update any operand lists.
394   if (RegInfo == 0) {
395     // Simple insertion, no reginfo update needed for other register operands.
396     Operands.insert(Operands.begin()+OpNo, Op);
397     Operands[OpNo].ParentMI = this;
398
399     // Do explicitly set the reginfo for this operand though, to ensure the
400     // next/prev fields are properly nulled out.
401     if (Operands[OpNo].isReg())
402       Operands[OpNo].AddRegOperandToRegInfo(0);
403
404   } else if (Operands.size()+1 <= Operands.capacity()) {
405     // Otherwise, we have to remove register operands from their register use
406     // list, add the operand, then add the register operands back to their use
407     // list.  This also must handle the case when the operand list reallocates
408     // to somewhere else.
409   
410     // If insertion of this operand won't cause reallocation of the operand
411     // list, just remove the implicit operands, add the operand, then re-add all
412     // the rest of the operands.
413     for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
414       assert(Operands[i].isReg() && "Should only be an implicit reg!");
415       Operands[i].RemoveRegOperandFromRegInfo();
416     }
417     
418     // Add the operand.  If it is a register, add it to the reg list.
419     Operands.insert(Operands.begin()+OpNo, Op);
420     Operands[OpNo].ParentMI = this;
421
422     if (Operands[OpNo].isReg())
423       Operands[OpNo].AddRegOperandToRegInfo(RegInfo);
424     
425     // Re-add all the implicit ops.
426     for (unsigned i = OpNo+1, e = Operands.size(); i != e; ++i) {
427       assert(Operands[i].isReg() && "Should only be an implicit reg!");
428       Operands[i].AddRegOperandToRegInfo(RegInfo);
429     }
430   } else {
431     // Otherwise, we will be reallocating the operand list.  Remove all reg
432     // operands from their list, then readd them after the operand list is
433     // reallocated.
434     RemoveRegOperandsFromUseLists();
435     
436     Operands.insert(Operands.begin()+OpNo, Op);
437     Operands[OpNo].ParentMI = this;
438   
439     // Re-add all the operands.
440     AddRegOperandsToUseLists(*RegInfo);
441   }
442 }
443
444 /// RemoveOperand - Erase an operand  from an instruction, leaving it with one
445 /// fewer operand than it started with.
446 ///
447 void MachineInstr::RemoveOperand(unsigned OpNo) {
448   assert(OpNo < Operands.size() && "Invalid operand number");
449   
450   // Special case removing the last one.
451   if (OpNo == Operands.size()-1) {
452     // If needed, remove from the reg def/use list.
453     if (Operands.back().isReg() && Operands.back().isOnRegUseList())
454       Operands.back().RemoveRegOperandFromRegInfo();
455     
456     Operands.pop_back();
457     return;
458   }
459
460   // Otherwise, we are removing an interior operand.  If we have reginfo to
461   // update, remove all operands that will be shifted down from their reg lists,
462   // move everything down, then re-add them.
463   MachineRegisterInfo *RegInfo = getRegInfo();
464   if (RegInfo) {
465     for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
466       if (Operands[i].isReg())
467         Operands[i].RemoveRegOperandFromRegInfo();
468     }
469   }
470   
471   Operands.erase(Operands.begin()+OpNo);
472
473   if (RegInfo) {
474     for (unsigned i = OpNo, e = Operands.size(); i != e; ++i) {
475       if (Operands[i].isReg())
476         Operands[i].AddRegOperandToRegInfo(RegInfo);
477     }
478   }
479 }
480
481
482 /// removeFromParent - This method unlinks 'this' from the containing basic
483 /// block, and returns it, but does not delete it.
484 MachineInstr *MachineInstr::removeFromParent() {
485   assert(getParent() && "Not embedded in a basic block!");
486   getParent()->remove(this);
487   return this;
488 }
489
490
491 /// OperandComplete - Return true if it's illegal to add a new operand
492 ///
493 bool MachineInstr::OperandsComplete() const {
494   unsigned short NumOperands = TID->getNumOperands();
495   if (!TID->isVariadic() && getNumOperands()-NumImplicitOps >= NumOperands)
496     return true;  // Broken: we have all the operands of this instruction!
497   return false;
498 }
499
500 /// getNumExplicitOperands - Returns the number of non-implicit operands.
501 ///
502 unsigned MachineInstr::getNumExplicitOperands() const {
503   unsigned NumOperands = TID->getNumOperands();
504   if (!TID->isVariadic())
505     return NumOperands;
506
507   for (unsigned e = getNumOperands(); NumOperands != e; ++NumOperands) {
508     const MachineOperand &MO = getOperand(NumOperands);
509     if (!MO.isRegister() || !MO.isImplicit())
510       NumOperands++;
511   }
512   return NumOperands;
513 }
514
515
516 /// isDebugLabel - Returns true if the MachineInstr represents a debug label.
517 ///
518 bool MachineInstr::isDebugLabel() const {
519   return getOpcode() == TargetInstrInfo::LABEL && getOperand(1).getImm() == 0;
520 }
521
522 /// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of
523 /// the specific register or -1 if it is not found. It further tightening
524 /// the search criteria to a use that kills the register if isKill is true.
525 int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill) const {
526   for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
527     const MachineOperand &MO = getOperand(i);
528     if (MO.isRegister() && MO.isUse() && MO.getReg() == Reg)
529       if (!isKill || MO.isKill())
530         return i;
531   }
532   return -1;
533 }
534   
535 /// findRegisterDefOperand() - Returns the MachineOperand that is a def of
536 /// the specific register or NULL if it is not found.
537 MachineOperand *MachineInstr::findRegisterDefOperand(unsigned Reg) {
538   for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
539     MachineOperand &MO = getOperand(i);
540     if (MO.isRegister() && MO.isDef() && MO.getReg() == Reg)
541       return &MO;
542   }
543   return NULL;
544 }
545
546 /// findFirstPredOperandIdx() - Find the index of the first operand in the
547 /// operand list that is used to represent the predicate. It returns -1 if
548 /// none is found.
549 int MachineInstr::findFirstPredOperandIdx() const {
550   const TargetInstrDesc &TID = getDesc();
551   if (TID.isPredicable()) {
552     for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
553       if (TID.OpInfo[i].isPredicate())
554         return i;
555   }
556
557   return -1;
558 }
559   
560 /// isRegReDefinedByTwoAddr - Returns true if the Reg re-definition is due
561 /// to two addr elimination.
562 bool MachineInstr::isRegReDefinedByTwoAddr(unsigned Reg) const {
563   const TargetInstrDesc &TID = getDesc();
564   for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
565     const MachineOperand &MO1 = getOperand(i);
566     if (MO1.isRegister() && MO1.isDef() && MO1.getReg() == Reg) {
567       for (unsigned j = i+1; j < e; ++j) {
568         const MachineOperand &MO2 = getOperand(j);
569         if (MO2.isRegister() && MO2.isUse() && MO2.getReg() == Reg &&
570             TID.getOperandConstraint(j, TOI::TIED_TO) == (int)i)
571           return true;
572       }
573     }
574   }
575   return false;
576 }
577
578 /// copyKillDeadInfo - Copies kill / dead operand properties from MI.
579 ///
580 void MachineInstr::copyKillDeadInfo(const MachineInstr *MI) {
581   for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
582     const MachineOperand &MO = MI->getOperand(i);
583     if (!MO.isRegister() || (!MO.isKill() && !MO.isDead()))
584       continue;
585     for (unsigned j = 0, ee = getNumOperands(); j != ee; ++j) {
586       MachineOperand &MOp = getOperand(j);
587       if (!MOp.isIdenticalTo(MO))
588         continue;
589       if (MO.isKill())
590         MOp.setIsKill();
591       else
592         MOp.setIsDead();
593       break;
594     }
595   }
596 }
597
598 /// copyPredicates - Copies predicate operand(s) from MI.
599 void MachineInstr::copyPredicates(const MachineInstr *MI) {
600   const TargetInstrDesc &TID = MI->getDesc();
601   if (TID.isPredicable()) {
602     for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
603       if (TID.OpInfo[i].isPredicate()) {
604         // Predicated operands must be last operands.
605         addOperand(MI->getOperand(i));
606       }
607     }
608   }
609 }
610
611 void MachineInstr::dump() const {
612   cerr << "  " << *this;
613 }
614
615 void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const {
616   // Specialize printing if op#0 is definition
617   unsigned StartOp = 0;
618   if (getNumOperands() && getOperand(0).isRegister() && getOperand(0).isDef()) {
619     getOperand(0).print(OS, TM);
620     OS << " = ";
621     ++StartOp;   // Don't print this operand again!
622   }
623
624   OS << getDesc().getName();
625
626   for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) {
627     if (i != StartOp)
628       OS << ",";
629     OS << " ";
630     getOperand(i).print(OS, TM);
631   }
632
633   if (getNumMemOperands() > 0) {
634     OS << ", Mem:";
635     for (unsigned i = 0; i < getNumMemOperands(); i++) {
636       const MemOperand &MRO = getMemOperand(i);
637       const Value *V = MRO.getValue();
638
639       assert((MRO.isLoad() || MRO.isStore()) &&
640              "SV has to be a load, store or both.");
641       
642       if (MRO.isVolatile())
643         OS << "Volatile ";
644
645       if (MRO.isLoad())
646         OS << "LD";
647       if (MRO.isStore())
648         OS << "ST";
649         
650       OS << "(" << MRO.getSize() << "," << MRO.getAlignment() << ") [";
651       
652       if (!V)
653         OS << "<unknown>";
654       else if (!V->getName().empty())
655         OS << V->getName();
656       else if (isa<PseudoSourceValue>(V))
657         OS << *V;
658       else
659         OS << V;
660
661       OS << " + " << MRO.getOffset() << "]";
662     }
663   }
664
665   OS << "\n";
666 }
667
668 bool MachineInstr::addRegisterKilled(unsigned IncomingReg,
669                                      const MRegisterInfo *RegInfo,
670                                      bool AddIfNotFound) {
671   bool Found = false;
672   for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
673     MachineOperand &MO = getOperand(i);
674     if (MO.isRegister() && MO.isUse()) {
675       unsigned Reg = MO.getReg();
676       if (!Reg)
677         continue;
678       if (Reg == IncomingReg) {
679         MO.setIsKill();
680         Found = true;
681         break;
682       } else if (MRegisterInfo::isPhysicalRegister(Reg) &&
683                  MRegisterInfo::isPhysicalRegister(IncomingReg) &&
684                  RegInfo->isSuperRegister(IncomingReg, Reg) &&
685                  MO.isKill())
686         // A super-register kill already exists.
687         Found = true;
688     }
689   }
690
691   // If not found, this means an alias of one of the operand is killed. Add a
692   // new implicit operand if required.
693   if (!Found && AddIfNotFound) {
694     addOperand(MachineOperand::CreateReg(IncomingReg, false/*IsDef*/,
695                                          true/*IsImp*/,true/*IsKill*/));
696     return true;
697   }
698   return Found;
699 }
700
701 bool MachineInstr::addRegisterDead(unsigned IncomingReg,
702                                    const MRegisterInfo *RegInfo,
703                                    bool AddIfNotFound) {
704   bool Found = false;
705   for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
706     MachineOperand &MO = getOperand(i);
707     if (MO.isRegister() && MO.isDef()) {
708       unsigned Reg = MO.getReg();
709       if (!Reg)
710         continue;
711       if (Reg == IncomingReg) {
712         MO.setIsDead();
713         Found = true;
714         break;
715       } else if (MRegisterInfo::isPhysicalRegister(Reg) &&
716                  MRegisterInfo::isPhysicalRegister(IncomingReg) &&
717                  RegInfo->isSuperRegister(IncomingReg, Reg) &&
718                  MO.isDead())
719         // There exists a super-register that's marked dead.
720         return true;
721     }
722   }
723
724   // If not found, this means an alias of one of the operand is dead. Add a
725   // new implicit operand.
726   if (!Found && AddIfNotFound) {
727     addOperand(MachineOperand::CreateReg(IncomingReg, true/*IsDef*/,
728                                          true/*IsImp*/,false/*IsKill*/,
729                                          true/*IsDead*/));
730     return true;
731   }
732   return Found;
733 }
734
735 /// copyKillDeadInfo - copies killed/dead information from one instr to another
736 void MachineInstr::copyKillDeadInfo(MachineInstr *OldMI,
737                                     const MRegisterInfo *RegInfo) {
738   // If the instruction defines any virtual registers, update the VarInfo,
739   // kill and dead information for the instruction.
740   for (unsigned i = 0, e = OldMI->getNumOperands(); i != e; ++i) {
741     MachineOperand &MO = OldMI->getOperand(i);
742     if (MO.isRegister() && MO.getReg() &&
743         MRegisterInfo::isVirtualRegister(MO.getReg())) {
744       unsigned Reg = MO.getReg();
745       if (MO.isDef()) {
746         if (MO.isDead()) {
747           MO.setIsDead(false);
748           addRegisterDead(Reg, RegInfo);
749         }
750       }
751       if (MO.isKill()) {
752         MO.setIsKill(false);
753         addRegisterKilled(Reg, RegInfo);
754       }
755     }
756   }
757 }