MachineInstr.cpp revision 0742b59913a7760eb26f08121cd244a37e83e3b3
1//===-- MachineInstr.cpp --------------------------------------------------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Methods common to all machine instructions.
11//
12// FIXME: Now that MachineInstrs have parent pointers, they should always
13// print themselves using their MachineFunction's TargetMachine.
14//
15//===----------------------------------------------------------------------===//
16
17#include "llvm/CodeGen/MachineInstr.h"
18#include "llvm/CodeGen/MachineFunction.h"
19#include "llvm/Value.h"
20#include "llvm/Target/TargetMachine.h"
21#include "llvm/Target/TargetInstrInfo.h"
22#include "llvm/Target/MRegisterInfo.h"
23#include "Support/LeakDetector.h"
24using namespace llvm;
25
26// Global variable holding an array of descriptors for machine instructions.
27// The actual object needs to be created separately for each target machine.
28// This variable is initialized and reset by class TargetInstrInfo.
29//
30// FIXME: This should be a property of the target so that more than one target
31// at a time can be active...
32//
33namespace {
34  extern const TargetInstrDescriptor *TargetInstrDescriptors;
35}
36
37// Constructor for instructions with variable #operands
38MachineInstr::MachineInstr(short opcode, unsigned numOperands)
39  : Opcode(opcode),
40    numImplicitRefs(0),
41    operands(numOperands, MachineOperand()),
42    parent(0) {
43  // Make sure that we get added to a machine basicblock
44  LeakDetector::addGarbageObject(this);
45}
46
47/// MachineInstr ctor - This constructor only does a _reserve_ of the operands,
48/// not a resize for them.  It is expected that if you use this that you call
49/// add* methods below to fill up the operands, instead of the Set methods.
50/// Eventually, the "resizing" ctors will be phased out.
51///
52MachineInstr::MachineInstr(short opcode, unsigned numOperands, bool XX, bool YY)
53  : Opcode(opcode), numImplicitRefs(0), parent(0) {
54  operands.reserve(numOperands);
55  // Make sure that we get added to a machine basicblock
56  LeakDetector::addGarbageObject(this);
57}
58
59/// MachineInstr ctor - Work exactly the same as the ctor above, except that the
60/// MachineInstr is created and added to the end of the specified basic block.
61///
62MachineInstr::MachineInstr(MachineBasicBlock *MBB, short opcode,
63                           unsigned numOperands)
64  : Opcode(opcode), numImplicitRefs(0), parent(0) {
65  assert(MBB && "Cannot use inserting ctor with null basic block!");
66  operands.reserve(numOperands);
67  // Make sure that we get added to a machine basicblock
68  LeakDetector::addGarbageObject(this);
69  MBB->push_back(this);  // Add instruction to end of basic block!
70}
71
72MachineInstr::~MachineInstr()
73{
74  LeakDetector::removeGarbageObject(this);
75}
76
77/// OperandComplete - Return true if it's illegal to add a new operand
78///
79bool MachineInstr::OperandsComplete() const {
80  int NumOperands = TargetInstrDescriptors[Opcode].numOperands;
81  if (NumOperands >= 0 && getNumOperands() >= (unsigned)NumOperands)
82    return true;  // Broken: we have all the operands of this instruction!
83  return false;
84}
85
86/// replace - Support for replacing opcode and operands of a MachineInstr in
87/// place. This only resets the size of the operand vector and initializes it.
88/// The new operands must be set explicitly later.
89///
90void MachineInstr::replace(short opcode, unsigned numOperands) {
91  assert(getNumImplicitRefs() == 0 &&
92         "This is probably broken because implicit refs are going to be lost.");
93  Opcode = opcode;
94  operands.clear();
95  operands.resize(numOperands, MachineOperand());
96}
97
98void MachineInstr::SetMachineOperandVal(unsigned i,
99                                        MachineOperand::MachineOperandType opTy,
100                                        Value* V) {
101  assert(i < operands.size());          // may be explicit or implicit op
102  operands[i].opType = opTy;
103  operands[i].value = V;
104  operands[i].regNum = -1;
105}
106
107void
108MachineInstr::SetMachineOperandConst(unsigned i,
109                                     MachineOperand::MachineOperandType opTy,
110                                     int64_t intValue) {
111  assert(i < getNumOperands());          // must be explicit op
112  assert(TargetInstrDescriptors[Opcode].resultPos != (int) i &&
113         "immed. constant cannot be defined");
114
115  operands[i].opType = opTy;
116  operands[i].value = NULL;
117  operands[i].immedVal = intValue;
118  operands[i].regNum = -1;
119  operands[i].flags = 0;
120}
121
122void MachineInstr::SetMachineOperandReg(unsigned i, int regNum) {
123  assert(i < getNumOperands());          // must be explicit op
124
125  operands[i].opType = MachineOperand::MO_MachineRegister;
126  operands[i].value = NULL;
127  operands[i].regNum = regNum;
128}
129
130// Used only by the SPARC back-end.
131void MachineInstr::SetRegForOperand(unsigned i, int regNum) {
132  assert(i < getNumOperands());          // must be explicit op
133  operands[i].setRegForValue(regNum);
134}
135
136// Used only by the SPARC back-end.
137void MachineInstr::SetRegForImplicitRef(unsigned i, int regNum) {
138  getImplicitOp(i).setRegForValue(regNum);
139}
140
141/// substituteValue - Substitute all occurrences of Value* oldVal with newVal
142/// in all operands and all implicit refs. If defsOnly == true, substitute defs
143/// only.
144///
145/// FIXME: Fold this into its single caller, at SparcInstrSelection.cpp:2865,
146/// or make it a static function in that file.
147///
148unsigned
149MachineInstr::substituteValue(const Value* oldVal, Value* newVal,
150                              bool defsOnly, bool notDefsAndUses,
151                              bool& someArgsWereIgnored)
152{
153  assert((!defsOnly || !notDefsAndUses) &&
154         "notDefsAndUses is irrelevant if defsOnly == true.");
155
156  unsigned numSubst = 0;
157
158  // Substitute operands
159  for (MachineInstr::val_op_iterator O = begin(), E = end(); O != E; ++O)
160    if (*O == oldVal)
161      if (!defsOnly ||
162          notDefsAndUses && (O.isDef() && !O.isUse()) ||
163          !notDefsAndUses && O.isDef())
164        {
165          O.getMachineOperand().value = newVal;
166          ++numSubst;
167        }
168      else
169        someArgsWereIgnored = true;
170
171  // Substitute implicit refs
172  for (unsigned i=0, N=getNumImplicitRefs(); i < N; ++i)
173    if (getImplicitRef(i) == oldVal)
174      if (!defsOnly ||
175          notDefsAndUses && (getImplicitOp(i).isDef() && !getImplicitOp(i).isUse()) ||
176          !notDefsAndUses && getImplicitOp(i).isDef())
177        {
178          getImplicitOp(i).value = newVal;
179          ++numSubst;
180        }
181      else
182        someArgsWereIgnored = true;
183
184  return numSubst;
185}
186
187void MachineInstr::dump() const {
188  std::cerr << "  " << *this;
189}
190
191static inline std::ostream& OutputValue(std::ostream &os, const Value* val) {
192  os << "(val ";
193  os << (void*) val;                    // print address always
194  if (val && val->hasName())
195    os << " " << val->getName(); // print name also, if available
196  os << ")";
197  return os;
198}
199
200static inline void OutputReg(std::ostream &os, unsigned RegNo,
201                             const MRegisterInfo *MRI = 0) {
202  if (MRegisterInfo::isPhysicalRegister(RegNo)) {
203    if (MRI)
204      os << "%" << MRI->get(RegNo).Name;
205    else
206      os << "%mreg(" << RegNo << ")";
207  } else
208    os << "%reg" << RegNo;
209}
210
211static void print(const MachineOperand &MO, std::ostream &OS,
212                  const TargetMachine &TM) {
213  const MRegisterInfo *MRI = TM.getRegisterInfo();
214  bool CloseParen = true;
215  if (MO.isHiBits32())
216    OS << "%lm(";
217  else if (MO.isLoBits32())
218    OS << "%lo(";
219  else if (MO.isHiBits64())
220    OS << "%hh(";
221  else if (MO.isLoBits64())
222    OS << "%hm(";
223  else
224    CloseParen = false;
225
226  switch (MO.getType()) {
227  case MachineOperand::MO_VirtualRegister:
228    if (MO.getVRegValue()) {
229      OS << "%reg";
230      OutputValue(OS, MO.getVRegValue());
231      if (MO.hasAllocatedReg())
232        OS << "==";
233    }
234    if (MO.hasAllocatedReg())
235      OutputReg(OS, MO.getReg(), MRI);
236    break;
237  case MachineOperand::MO_CCRegister:
238    OS << "%ccreg";
239    OutputValue(OS, MO.getVRegValue());
240    if (MO.hasAllocatedReg()) {
241      OS << "==";
242      OutputReg(OS, MO.getReg(), MRI);
243    }
244    break;
245  case MachineOperand::MO_MachineRegister:
246    OutputReg(OS, MO.getMachineRegNum(), MRI);
247    break;
248  case MachineOperand::MO_SignExtendedImmed:
249    OS << (long)MO.getImmedValue();
250    break;
251  case MachineOperand::MO_UnextendedImmed:
252    OS << (long)MO.getImmedValue();
253    break;
254  case MachineOperand::MO_PCRelativeDisp: {
255    const Value* opVal = MO.getVRegValue();
256    bool isLabel = isa<Function>(opVal) || isa<BasicBlock>(opVal);
257    OS << "%disp(" << (isLabel? "label " : "addr-of-val ");
258    if (opVal->hasName())
259      OS << opVal->getName();
260    else
261      OS << (const void*) opVal;
262    OS << ")";
263    break;
264  }
265  case MachineOperand::MO_MachineBasicBlock:
266    OS << "bb<"
267       << ((Value*)MO.getMachineBasicBlock()->getBasicBlock())->getName()
268       << "," << (void*)MO.getMachineBasicBlock()->getBasicBlock() << ">";
269    break;
270  case MachineOperand::MO_FrameIndex:
271    OS << "<fi#" << MO.getFrameIndex() << ">";
272    break;
273  case MachineOperand::MO_ConstantPoolIndex:
274    OS << "<cp#" << MO.getConstantPoolIndex() << ">";
275    break;
276  case MachineOperand::MO_GlobalAddress:
277    OS << "<ga:" << ((Value*)MO.getGlobal())->getName() << ">";
278    break;
279  case MachineOperand::MO_ExternalSymbol:
280    OS << "<es:" << MO.getSymbolName() << ">";
281    break;
282  default:
283    assert(0 && "Unrecognized operand type");
284  }
285
286  if (CloseParen)
287    OS << ")";
288}
289
290void MachineInstr::print(std::ostream &OS, const TargetMachine &TM) const {
291  unsigned StartOp = 0;
292
293   // Specialize printing if op#0 is definition
294  if (getNumOperands() && getOperand(0).isDef() && !getOperand(0).isUse()) {
295    ::print(getOperand(0), OS, TM);
296    OS << " = ";
297    ++StartOp;   // Don't print this operand again!
298  }
299  OS << TM.getInstrInfo().getName(getOpcode());
300
301  for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) {
302    const MachineOperand& mop = getOperand(i);
303    if (i != StartOp)
304      OS << ",";
305    OS << " ";
306    ::print(mop, OS, TM);
307
308    if (mop.isDef())
309      if (mop.isUse())
310        OS << "<def&use>";
311      else
312        OS << "<def>";
313  }
314
315  // code for printing implicit references
316  if (getNumImplicitRefs()) {
317    OS << "\tImplicitRefs: ";
318    for(unsigned i = 0, e = getNumImplicitRefs(); i != e; ++i) {
319      OS << "\t";
320      OutputValue(OS, getImplicitRef(i));
321      if (getImplicitOp(i).isDef())
322          if (getImplicitOp(i).isUse())
323            OS << "<def&use>";
324          else
325            OS << "<def>";
326    }
327  }
328
329  OS << "\n";
330}
331
332std::ostream &operator<<(std::ostream &os, const MachineInstr &MI) {
333  // If the instruction is embedded into a basic block, we can find the target
334  // info for the instruction.
335  if (const MachineBasicBlock *MBB = MI.getParent()) {
336    const MachineFunction *MF = MBB->getParent();
337    MI.print(os, MF->getTarget());
338    return os;
339  }
340
341  // Otherwise, print it out in the "raw" format without symbolic register names
342  // and such.
343  os << TargetInstrDescriptors[MI.getOpcode()].Name;
344
345  for (unsigned i=0, N=MI.getNumOperands(); i < N; i++) {
346    os << "\t" << MI.getOperand(i);
347    if (MI.getOperand(i).isDef())
348      if (MI.getOperand(i).isUse())
349        os << "<d&u>";
350      else
351        os << "<d>";
352  }
353
354  // code for printing implicit references
355  unsigned NumOfImpRefs = MI.getNumImplicitRefs();
356  if (NumOfImpRefs > 0) {
357    os << "\tImplicit: ";
358    for (unsigned z=0; z < NumOfImpRefs; z++) {
359      OutputValue(os, MI.getImplicitRef(z));
360      if (MI.getImplicitOp(z).isDef())
361          if (MI.getImplicitOp(z).isUse())
362            os << "<d&u>";
363          else
364            os << "<d>";
365      os << "\t";
366    }
367  }
368
369  return os << "\n";
370}
371
372std::ostream &operator<<(std::ostream &OS, const MachineOperand &MO) {
373  if (MO.isHiBits32())
374    OS << "%lm(";
375  else if (MO.isLoBits32())
376    OS << "%lo(";
377  else if (MO.isHiBits64())
378    OS << "%hh(";
379  else if (MO.isLoBits64())
380    OS << "%hm(";
381
382  switch (MO.getType())
383    {
384    case MachineOperand::MO_VirtualRegister:
385      if (MO.hasAllocatedReg())
386        OutputReg(OS, MO.getReg());
387
388      if (MO.getVRegValue()) {
389	if (MO.hasAllocatedReg()) OS << "==";
390	OS << "%vreg";
391	OutputValue(OS, MO.getVRegValue());
392      }
393      break;
394    case MachineOperand::MO_CCRegister:
395      OS << "%ccreg";
396      OutputValue(OS, MO.getVRegValue());
397      if (MO.hasAllocatedReg()) {
398        OS << "==";
399        OutputReg(OS, MO.getReg());
400      }
401      break;
402    case MachineOperand::MO_MachineRegister:
403      OutputReg(OS, MO.getMachineRegNum());
404      break;
405    case MachineOperand::MO_SignExtendedImmed:
406      OS << (long)MO.getImmedValue();
407      break;
408    case MachineOperand::MO_UnextendedImmed:
409      OS << (long)MO.getImmedValue();
410      break;
411    case MachineOperand::MO_PCRelativeDisp:
412      {
413        const Value* opVal = MO.getVRegValue();
414        bool isLabel = isa<Function>(opVal) || isa<BasicBlock>(opVal);
415        OS << "%disp(" << (isLabel? "label " : "addr-of-val ");
416        if (opVal->hasName())
417          OS << opVal->getName();
418        else
419          OS << (const void*) opVal;
420        OS << ")";
421        break;
422      }
423    case MachineOperand::MO_MachineBasicBlock:
424      OS << "bb<"
425         << ((Value*)MO.getMachineBasicBlock()->getBasicBlock())->getName()
426         << "," << (void*)MO.getMachineBasicBlock()->getBasicBlock() << ">";
427      break;
428    case MachineOperand::MO_FrameIndex:
429      OS << "<fi#" << MO.getFrameIndex() << ">";
430      break;
431    case MachineOperand::MO_ConstantPoolIndex:
432      OS << "<cp#" << MO.getConstantPoolIndex() << ">";
433      break;
434    case MachineOperand::MO_GlobalAddress:
435      OS << "<ga:" << ((Value*)MO.getGlobal())->getName() << ">";
436      break;
437    case MachineOperand::MO_ExternalSymbol:
438      OS << "<es:" << MO.getSymbolName() << ">";
439      break;
440    default:
441      assert(0 && "Unrecognized operand type");
442      break;
443    }
444
445  if (MO.isHiBits32() || MO.isLoBits32() || MO.isHiBits64() || MO.isLoBits64())
446    OS << ")";
447
448  return OS;
449}
450
451