2002-08-10 04:08:06 +08:00
|
|
|
//===-- MachineInstr.cpp --------------------------------------------------===//
|
2005-04-22 06:36:52 +08:00
|
|
|
//
|
2003-10-21 03:43:21 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 06:36:52 +08:00
|
|
|
//
|
2003-10-21 03:43:21 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-02-13 12:39:32 +08:00
|
|
|
//
|
|
|
|
// Methods common to all machine instructions.
|
|
|
|
//
|
2002-08-10 04:08:06 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-21 20:41:50 +08:00
|
|
|
|
2001-09-08 01:18:30 +08:00
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2004-02-20 00:17:08 +08:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2002-10-30 08:48:05 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2003-01-15 06:00:31 +08:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
2002-10-30 08:58:19 +08:00
|
|
|
#include "llvm/Target/MRegisterInfo.h"
|
2004-09-02 06:55:40 +08:00
|
|
|
#include "llvm/Support/LeakDetector.h"
|
2006-11-29 06:48:48 +08:00
|
|
|
#include "llvm/Support/Streams.h"
|
2006-12-16 06:57:14 +08:00
|
|
|
#include <ostream>
|
2004-02-24 02:38:20 +08:00
|
|
|
using namespace llvm;
|
2003-11-12 06:41:34 +08:00
|
|
|
|
2007-12-31 05:56:09 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// MachineOperand Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// isIdenticalTo - Return true if this operand is identical to the specified
|
|
|
|
/// operand.
|
|
|
|
bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const {
|
|
|
|
if (getType() != Other.getType()) return false;
|
|
|
|
|
|
|
|
switch (getType()) {
|
|
|
|
default: assert(0 && "Unrecognized operand type");
|
|
|
|
case MachineOperand::MO_Register:
|
|
|
|
return getReg() == Other.getReg() && isDef() == Other.isDef() &&
|
|
|
|
getSubReg() == Other.getSubReg();
|
|
|
|
case MachineOperand::MO_Immediate:
|
|
|
|
return getImm() == Other.getImm();
|
|
|
|
case MachineOperand::MO_MachineBasicBlock:
|
|
|
|
return getMBB() == Other.getMBB();
|
|
|
|
case MachineOperand::MO_FrameIndex:
|
|
|
|
return getFrameIndex() == Other.getFrameIndex();
|
|
|
|
case MachineOperand::MO_ConstantPoolIndex:
|
|
|
|
return getConstantPoolIndex() == Other.getConstantPoolIndex() &&
|
|
|
|
getOffset() == Other.getOffset();
|
|
|
|
case MachineOperand::MO_JumpTableIndex:
|
|
|
|
return getJumpTableIndex() == Other.getJumpTableIndex();
|
|
|
|
case MachineOperand::MO_GlobalAddress:
|
|
|
|
return getGlobal() == Other.getGlobal() && getOffset() == Other.getOffset();
|
|
|
|
case MachineOperand::MO_ExternalSymbol:
|
|
|
|
return !strcmp(getSymbolName(), Other.getSymbolName()) &&
|
|
|
|
getOffset() == Other.getOffset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// print - Print the specified machine operand.
|
|
|
|
///
|
|
|
|
void MachineOperand::print(std::ostream &OS, const TargetMachine *TM) const {
|
|
|
|
switch (getType()) {
|
|
|
|
case MachineOperand::MO_Register:
|
|
|
|
if (getReg() == 0 || MRegisterInfo::isVirtualRegister(getReg())) {
|
|
|
|
OS << "%reg" << getReg();
|
|
|
|
} else {
|
|
|
|
// If the instruction is embedded into a basic block, we can find the
|
|
|
|
// target
|
|
|
|
// info for the instruction.
|
|
|
|
if (TM == 0)
|
|
|
|
if (const MachineInstr *MI = getParent())
|
|
|
|
if (const MachineBasicBlock *MBB = MI->getParent())
|
|
|
|
if (const MachineFunction *MF = MBB->getParent())
|
|
|
|
TM = &MF->getTarget();
|
|
|
|
|
|
|
|
if (TM)
|
|
|
|
OS << "%" << TM->getRegisterInfo()->get(getReg()).Name;
|
|
|
|
else
|
|
|
|
OS << "%mreg" << getReg();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isDef() || isKill() || isDead() || isImplicit()) {
|
|
|
|
OS << "<";
|
|
|
|
bool NeedComma = false;
|
|
|
|
if (isImplicit()) {
|
|
|
|
OS << (isDef() ? "imp-def" : "imp-use");
|
|
|
|
NeedComma = true;
|
|
|
|
} else if (isDef()) {
|
|
|
|
OS << "def";
|
|
|
|
NeedComma = true;
|
|
|
|
}
|
|
|
|
if (isKill() || isDead()) {
|
|
|
|
if (NeedComma) OS << ",";
|
|
|
|
if (isKill()) OS << "kill";
|
|
|
|
if (isDead()) OS << "dead";
|
|
|
|
}
|
|
|
|
OS << ">";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MachineOperand::MO_Immediate:
|
|
|
|
OS << getImm();
|
|
|
|
break;
|
|
|
|
case MachineOperand::MO_MachineBasicBlock:
|
|
|
|
OS << "mbb<"
|
|
|
|
<< ((Value*)getMachineBasicBlock()->getBasicBlock())->getName()
|
|
|
|
<< "," << (void*)getMachineBasicBlock() << ">";
|
|
|
|
break;
|
|
|
|
case MachineOperand::MO_FrameIndex:
|
|
|
|
OS << "<fi#" << getFrameIndex() << ">";
|
|
|
|
break;
|
|
|
|
case MachineOperand::MO_ConstantPoolIndex:
|
|
|
|
OS << "<cp#" << getConstantPoolIndex();
|
|
|
|
if (getOffset()) OS << "+" << getOffset();
|
|
|
|
OS << ">";
|
|
|
|
break;
|
|
|
|
case MachineOperand::MO_JumpTableIndex:
|
|
|
|
OS << "<jt#" << getJumpTableIndex() << ">";
|
|
|
|
break;
|
|
|
|
case MachineOperand::MO_GlobalAddress:
|
|
|
|
OS << "<ga:" << ((Value*)getGlobal())->getName();
|
|
|
|
if (getOffset()) OS << "+" << getOffset();
|
|
|
|
OS << ">";
|
|
|
|
break;
|
|
|
|
case MachineOperand::MO_ExternalSymbol:
|
|
|
|
OS << "<es:" << getSymbolName();
|
|
|
|
if (getOffset()) OS << "+" << getOffset();
|
|
|
|
OS << ">";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(0 && "Unrecognized operand type");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// MachineInstr Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-11-28 07:37:22 +08:00
|
|
|
/// MachineInstr ctor - This constructor creates a dummy MachineInstr with
|
2006-11-30 15:08:44 +08:00
|
|
|
/// TID NULL and no operands.
|
2006-11-28 07:37:22 +08:00
|
|
|
MachineInstr::MachineInstr()
|
2006-11-30 15:08:44 +08:00
|
|
|
: TID(0), NumImplicitOps(0), parent(0) {
|
2004-02-16 15:17:43 +08:00
|
|
|
// Make sure that we get added to a machine basicblock
|
|
|
|
LeakDetector::addGarbageObject(this);
|
2002-10-29 04:59:49 +08:00
|
|
|
}
|
|
|
|
|
2006-11-30 15:08:44 +08:00
|
|
|
void MachineInstr::addImplicitDefUseOperands() {
|
|
|
|
if (TID->ImplicitDefs)
|
2007-12-30 08:12:25 +08:00
|
|
|
for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
|
2007-12-30 08:41:17 +08:00
|
|
|
addOperand(MachineOperand::CreateReg(*ImpDefs, true, true));
|
2006-11-30 15:08:44 +08:00
|
|
|
if (TID->ImplicitUses)
|
2007-12-30 08:12:25 +08:00
|
|
|
for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
|
2007-12-30 08:41:17 +08:00
|
|
|
addOperand(MachineOperand::CreateReg(*ImpUses, false, true));
|
2006-11-14 07:34:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// MachineInstr ctor - This constructor create a MachineInstr and add the
|
2006-11-28 07:37:22 +08:00
|
|
|
/// implicit operands. It reserves space for number of operands specified by
|
|
|
|
/// TargetInstrDescriptor or the numOperands if it is not zero. (for
|
|
|
|
/// instructions with variable number of operands).
|
2007-10-13 10:23:01 +08:00
|
|
|
MachineInstr::MachineInstr(const TargetInstrDescriptor &tid, bool NoImp)
|
2006-11-30 15:08:44 +08:00
|
|
|
: TID(&tid), NumImplicitOps(0), parent(0) {
|
2007-10-13 10:23:01 +08:00
|
|
|
if (!NoImp && TID->ImplicitDefs)
|
2006-11-30 15:08:44 +08:00
|
|
|
for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
|
2006-11-14 07:34:06 +08:00
|
|
|
NumImplicitOps++;
|
2007-10-13 10:23:01 +08:00
|
|
|
if (!NoImp && TID->ImplicitUses)
|
2006-11-30 15:08:44 +08:00
|
|
|
for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
|
2006-11-14 07:34:06 +08:00
|
|
|
NumImplicitOps++;
|
2006-11-30 15:08:44 +08:00
|
|
|
Operands.reserve(NumImplicitOps + TID->numOperands);
|
2007-10-13 10:23:01 +08:00
|
|
|
if (!NoImp)
|
|
|
|
addImplicitDefUseOperands();
|
2006-11-14 07:34:06 +08:00
|
|
|
// Make sure that we get added to a machine basicblock
|
|
|
|
LeakDetector::addGarbageObject(this);
|
|
|
|
}
|
|
|
|
|
2002-10-30 07:19:00 +08:00
|
|
|
/// MachineInstr ctor - Work exactly the same as the ctor above, except that the
|
|
|
|
/// MachineInstr is created and added to the end of the specified basic block.
|
|
|
|
///
|
2006-11-28 07:37:22 +08:00
|
|
|
MachineInstr::MachineInstr(MachineBasicBlock *MBB,
|
2006-11-30 15:08:44 +08:00
|
|
|
const TargetInstrDescriptor &tid)
|
|
|
|
: TID(&tid), NumImplicitOps(0), parent(0) {
|
2002-10-30 07:19:00 +08:00
|
|
|
assert(MBB && "Cannot use inserting ctor with null basic block!");
|
2006-11-30 15:08:44 +08:00
|
|
|
if (TID->ImplicitDefs)
|
|
|
|
for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
|
2006-11-14 07:34:06 +08:00
|
|
|
NumImplicitOps++;
|
2006-11-30 15:08:44 +08:00
|
|
|
if (TID->ImplicitUses)
|
|
|
|
for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
|
2006-11-14 07:34:06 +08:00
|
|
|
NumImplicitOps++;
|
2006-11-30 15:08:44 +08:00
|
|
|
Operands.reserve(NumImplicitOps + TID->numOperands);
|
|
|
|
addImplicitDefUseOperands();
|
2004-02-16 15:17:43 +08:00
|
|
|
// Make sure that we get added to a machine basicblock
|
|
|
|
LeakDetector::addGarbageObject(this);
|
2002-10-30 07:19:00 +08:00
|
|
|
MBB->push_back(this); // Add instruction to end of basic block!
|
|
|
|
}
|
|
|
|
|
2004-07-09 22:45:17 +08:00
|
|
|
/// MachineInstr ctor - Copies MachineInstr arg exactly
|
|
|
|
///
|
2004-05-24 03:35:12 +08:00
|
|
|
MachineInstr::MachineInstr(const MachineInstr &MI) {
|
2006-11-30 15:08:44 +08:00
|
|
|
TID = MI.getInstrDescriptor();
|
2006-11-16 04:54:29 +08:00
|
|
|
NumImplicitOps = MI.NumImplicitOps;
|
2006-05-05 03:14:44 +08:00
|
|
|
Operands.reserve(MI.getNumOperands());
|
2004-05-24 04:58:02 +08:00
|
|
|
|
2004-07-09 22:45:17 +08:00
|
|
|
// Add operands
|
2007-12-30 14:11:04 +08:00
|
|
|
for (unsigned i = 0; i != MI.getNumOperands(); ++i) {
|
2006-05-05 03:14:44 +08:00
|
|
|
Operands.push_back(MI.getOperand(i));
|
2007-12-30 14:11:04 +08:00
|
|
|
Operands.back().ParentMI = this;
|
|
|
|
}
|
2004-05-24 11:14:18 +08:00
|
|
|
|
2004-07-09 22:45:17 +08:00
|
|
|
// Set parent, next, and prev to null
|
2004-05-24 11:14:18 +08:00
|
|
|
parent = 0;
|
|
|
|
prev = 0;
|
|
|
|
next = 0;
|
2004-05-24 03:35:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-09 22:45:17 +08:00
|
|
|
MachineInstr::~MachineInstr() {
|
2004-02-16 15:17:43 +08:00
|
|
|
LeakDetector::removeGarbageObject(this);
|
2007-12-30 14:11:04 +08:00
|
|
|
#ifndef NDEBUG
|
|
|
|
for (unsigned i = 0, e = Operands.size(); i != e; ++i)
|
|
|
|
assert(Operands[i].ParentMI == this && "ParentMI mismatch!");
|
|
|
|
#endif
|
2004-02-16 15:17:43 +08:00
|
|
|
}
|
|
|
|
|
2006-11-30 15:08:44 +08:00
|
|
|
/// getOpcode - Returns the opcode of this MachineInstr.
|
|
|
|
///
|
2007-09-15 04:08:19 +08:00
|
|
|
int MachineInstr::getOpcode() const {
|
2006-11-30 15:08:44 +08:00
|
|
|
return TID->Opcode;
|
|
|
|
}
|
|
|
|
|
2006-04-18 05:35:41 +08:00
|
|
|
/// removeFromParent - This method unlinks 'this' from the containing basic
|
|
|
|
/// block, and returns it, but does not delete it.
|
|
|
|
MachineInstr *MachineInstr::removeFromParent() {
|
|
|
|
assert(getParent() && "Not embedded in a basic block!");
|
|
|
|
getParent()->remove(this);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-13 12:39:32 +08:00
|
|
|
/// OperandComplete - Return true if it's illegal to add a new operand
|
|
|
|
///
|
2004-02-13 00:09:53 +08:00
|
|
|
bool MachineInstr::OperandsComplete() const {
|
2006-11-30 15:08:44 +08:00
|
|
|
unsigned short NumOperands = TID->numOperands;
|
|
|
|
if ((TID->Flags & M_VARIABLE_OPS) == 0 &&
|
2006-11-28 10:25:34 +08:00
|
|
|
getNumOperands()-NumImplicitOps >= NumOperands)
|
2003-05-31 15:39:06 +08:00
|
|
|
return true; // Broken: we have all the operands of this instruction!
|
2002-10-29 04:48:39 +08:00
|
|
|
return false;
|
2001-07-21 20:41:50 +08:00
|
|
|
}
|
|
|
|
|
2007-05-15 09:26:09 +08:00
|
|
|
/// getNumExplicitOperands - Returns the number of non-implicit operands.
|
|
|
|
///
|
|
|
|
unsigned MachineInstr::getNumExplicitOperands() const {
|
|
|
|
unsigned NumOperands = TID->numOperands;
|
|
|
|
if ((TID->Flags & M_VARIABLE_OPS) == 0)
|
|
|
|
return NumOperands;
|
|
|
|
|
|
|
|
for (unsigned e = getNumOperands(); NumOperands != e; ++NumOperands) {
|
|
|
|
const MachineOperand &MO = getOperand(NumOperands);
|
|
|
|
if (!MO.isRegister() || !MO.isImplicit())
|
|
|
|
NumOperands++;
|
|
|
|
}
|
|
|
|
return NumOperands;
|
|
|
|
}
|
|
|
|
|
2006-10-21 06:39:59 +08:00
|
|
|
|
2007-04-27 03:00:32 +08:00
|
|
|
/// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of
|
2007-03-27 06:37:45 +08:00
|
|
|
/// the specific register or -1 if it is not found. It further tightening
|
2007-02-23 09:04:26 +08:00
|
|
|
/// the search criteria to a use that kills the register if isKill is true.
|
2007-05-30 02:35:22 +08:00
|
|
|
int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill) const {
|
2006-12-06 16:27:42 +08:00
|
|
|
for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
|
2007-05-30 02:35:22 +08:00
|
|
|
const MachineOperand &MO = getOperand(i);
|
2007-09-15 04:33:02 +08:00
|
|
|
if (MO.isRegister() && MO.isUse() && MO.getReg() == Reg)
|
2007-02-23 09:04:26 +08:00
|
|
|
if (!isKill || MO.isKill())
|
2007-03-27 06:37:45 +08:00
|
|
|
return i;
|
2007-02-20 05:49:54 +08:00
|
|
|
}
|
2007-03-27 06:37:45 +08:00
|
|
|
return -1;
|
2007-02-20 05:49:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// findRegisterDefOperand() - Returns the MachineOperand that is a def of
|
|
|
|
/// the specific register or NULL if it is not found.
|
|
|
|
MachineOperand *MachineInstr::findRegisterDefOperand(unsigned Reg) {
|
|
|
|
for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = getOperand(i);
|
2007-09-15 04:33:02 +08:00
|
|
|
if (MO.isRegister() && MO.isDef() && MO.getReg() == Reg)
|
2006-12-06 16:27:42 +08:00
|
|
|
return &MO;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-05-15 09:26:09 +08:00
|
|
|
|
2007-05-30 02:35:22 +08:00
|
|
|
/// findFirstPredOperandIdx() - Find the index of the first operand in the
|
|
|
|
/// operand list that is used to represent the predicate. It returns -1 if
|
|
|
|
/// none is found.
|
|
|
|
int MachineInstr::findFirstPredOperandIdx() const {
|
2007-05-15 09:26:09 +08:00
|
|
|
const TargetInstrDescriptor *TID = getInstrDescriptor();
|
2007-05-17 04:56:08 +08:00
|
|
|
if (TID->Flags & M_PREDICABLE) {
|
2007-05-15 09:26:09 +08:00
|
|
|
for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
|
|
|
|
if ((TID->OpInfo[i].Flags & M_PREDICATE_OPERAND))
|
2007-05-30 02:35:22 +08:00
|
|
|
return i;
|
2007-05-15 09:26:09 +08:00
|
|
|
}
|
|
|
|
|
2007-05-30 02:35:22 +08:00
|
|
|
return -1;
|
2007-05-15 09:26:09 +08:00
|
|
|
}
|
2006-12-06 16:27:42 +08:00
|
|
|
|
2007-10-12 16:50:34 +08:00
|
|
|
/// isRegReDefinedByTwoAddr - Returns true if the Reg re-definition is due
|
|
|
|
/// to two addr elimination.
|
|
|
|
bool MachineInstr::isRegReDefinedByTwoAddr(unsigned Reg) const {
|
|
|
|
const TargetInstrDescriptor *TID = getInstrDescriptor();
|
|
|
|
for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
|
|
|
|
const MachineOperand &MO1 = getOperand(i);
|
|
|
|
if (MO1.isRegister() && MO1.isDef() && MO1.getReg() == Reg) {
|
|
|
|
for (unsigned j = i+1; j < e; ++j) {
|
|
|
|
const MachineOperand &MO2 = getOperand(j);
|
|
|
|
if (MO2.isRegister() && MO2.isUse() && MO2.getReg() == Reg &&
|
|
|
|
TID->getOperandConstraint(j, TOI::TIED_TO) == (int)i)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-12-06 16:27:42 +08:00
|
|
|
/// copyKillDeadInfo - Copies kill / dead operand properties from MI.
|
|
|
|
///
|
|
|
|
void MachineInstr::copyKillDeadInfo(const MachineInstr *MI) {
|
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
const MachineOperand &MO = MI->getOperand(i);
|
2007-09-15 04:33:02 +08:00
|
|
|
if (!MO.isRegister() || (!MO.isKill() && !MO.isDead()))
|
2006-12-06 16:27:42 +08:00
|
|
|
continue;
|
|
|
|
for (unsigned j = 0, ee = getNumOperands(); j != ee; ++j) {
|
|
|
|
MachineOperand &MOp = getOperand(j);
|
|
|
|
if (!MOp.isIdenticalTo(MO))
|
|
|
|
continue;
|
|
|
|
if (MO.isKill())
|
|
|
|
MOp.setIsKill();
|
|
|
|
else
|
|
|
|
MOp.setIsDead();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-15 09:26:09 +08:00
|
|
|
/// copyPredicates - Copies predicate operand(s) from MI.
|
|
|
|
void MachineInstr::copyPredicates(const MachineInstr *MI) {
|
|
|
|
const TargetInstrDescriptor *TID = MI->getInstrDescriptor();
|
2007-05-17 04:56:08 +08:00
|
|
|
if (TID->Flags & M_PREDICABLE) {
|
2007-05-15 09:26:09 +08:00
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
if ((TID->OpInfo[i].Flags & M_PREDICATE_OPERAND)) {
|
|
|
|
// Predicated operands must be last operands.
|
2007-12-30 08:41:17 +08:00
|
|
|
addOperand(MI->getOperand(i));
|
2007-05-15 09:26:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-13 12:39:32 +08:00
|
|
|
void MachineInstr::dump() const {
|
2006-12-07 09:30:32 +08:00
|
|
|
cerr << " " << *this;
|
2001-07-21 20:41:50 +08:00
|
|
|
}
|
|
|
|
|
2004-06-25 08:13:11 +08:00
|
|
|
void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const {
|
2007-12-31 05:31:53 +08:00
|
|
|
// Specialize printing if op#0 is definition
|
2002-10-30 09:55:38 +08:00
|
|
|
unsigned StartOp = 0;
|
2007-09-15 04:33:02 +08:00
|
|
|
if (getNumOperands() && getOperand(0).isRegister() && getOperand(0).isDef()) {
|
2007-12-31 05:56:09 +08:00
|
|
|
getOperand(0).print(OS, TM);
|
2002-10-30 09:55:38 +08:00
|
|
|
OS << " = ";
|
|
|
|
++StartOp; // Don't print this operand again!
|
|
|
|
}
|
2004-06-25 08:13:11 +08:00
|
|
|
|
2007-12-31 05:31:53 +08:00
|
|
|
OS << getInstrDescriptor()->Name;
|
2005-04-22 06:36:52 +08:00
|
|
|
|
2002-10-30 09:55:38 +08:00
|
|
|
for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) {
|
|
|
|
if (i != StartOp)
|
|
|
|
OS << ",";
|
|
|
|
OS << " ";
|
2007-12-31 05:56:09 +08:00
|
|
|
getOperand(i).print(OS, TM);
|
2002-10-30 08:48:05 +08:00
|
|
|
}
|
2005-04-22 06:36:52 +08:00
|
|
|
|
2002-10-30 08:48:05 +08:00
|
|
|
OS << "\n";
|
|
|
|
}
|
|
|
|
|