2002-08-09 20:08:06 +00:00
|
|
|
//===-- MachineInstr.cpp --------------------------------------------------===//
|
2005-04-21 22:36:52 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:36:52 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-02-13 04:39:32 +00:00
|
|
|
//
|
|
|
|
// Methods common to all machine instructions.
|
|
|
|
//
|
2002-08-09 20:08:06 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-21 12:41:50 +00:00
|
|
|
|
2001-09-07 17:18:30 +00:00
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2004-02-19 16:17:08 +00:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2002-10-30 00:48:05 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2003-01-14 22:00:31 +00:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
2002-10-30 00:58:19 +00:00
|
|
|
#include "llvm/Target/MRegisterInfo.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/LeakDetector.h"
|
2006-11-28 22:48:48 +00:00
|
|
|
#include "llvm/Support/Streams.h"
|
2006-12-15 22:57:14 +00:00
|
|
|
#include <ostream>
|
2004-02-23 18:38:20 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2007-12-30 21:56:09 +00: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:
|
2007-12-30 23:10:15 +00:00
|
|
|
return getIndex() == Other.getIndex();
|
2007-12-30 21:56:09 +00:00
|
|
|
case MachineOperand::MO_ConstantPoolIndex:
|
2007-12-30 23:10:15 +00:00
|
|
|
return getIndex() == Other.getIndex() && getOffset() == Other.getOffset();
|
2007-12-30 21:56:09 +00:00
|
|
|
case MachineOperand::MO_JumpTableIndex:
|
2007-12-30 23:10:15 +00:00
|
|
|
return getIndex() == Other.getIndex();
|
2007-12-30 21:56:09 +00:00
|
|
|
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<"
|
2007-12-30 23:10:15 +00:00
|
|
|
<< ((Value*)getMBB()->getBasicBlock())->getName()
|
|
|
|
<< "," << (void*)getMBB() << ">";
|
2007-12-30 21:56:09 +00:00
|
|
|
break;
|
|
|
|
case MachineOperand::MO_FrameIndex:
|
2007-12-30 23:10:15 +00:00
|
|
|
OS << "<fi#" << getIndex() << ">";
|
2007-12-30 21:56:09 +00:00
|
|
|
break;
|
|
|
|
case MachineOperand::MO_ConstantPoolIndex:
|
2007-12-30 23:10:15 +00:00
|
|
|
OS << "<cp#" << getIndex();
|
2007-12-30 21:56:09 +00:00
|
|
|
if (getOffset()) OS << "+" << getOffset();
|
|
|
|
OS << ">";
|
|
|
|
break;
|
|
|
|
case MachineOperand::MO_JumpTableIndex:
|
2007-12-30 23:10:15 +00:00
|
|
|
OS << "<jt#" << getIndex() << ">";
|
2007-12-30 21:56:09 +00:00
|
|
|
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-27 23:37:22 +00:00
|
|
|
/// MachineInstr ctor - This constructor creates a dummy MachineInstr with
|
2006-11-30 07:08:44 +00:00
|
|
|
/// TID NULL and no operands.
|
2006-11-27 23:37:22 +00:00
|
|
|
MachineInstr::MachineInstr()
|
2006-11-30 07:08:44 +00:00
|
|
|
: TID(0), NumImplicitOps(0), parent(0) {
|
2004-02-16 07:17:43 +00:00
|
|
|
// Make sure that we get added to a machine basicblock
|
|
|
|
LeakDetector::addGarbageObject(this);
|
2002-10-28 20:59:49 +00:00
|
|
|
}
|
|
|
|
|
2006-11-30 07:08:44 +00:00
|
|
|
void MachineInstr::addImplicitDefUseOperands() {
|
|
|
|
if (TID->ImplicitDefs)
|
2007-12-30 00:12:25 +00:00
|
|
|
for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
|
2007-12-30 00:41:17 +00:00
|
|
|
addOperand(MachineOperand::CreateReg(*ImpDefs, true, true));
|
2006-11-30 07:08:44 +00:00
|
|
|
if (TID->ImplicitUses)
|
2007-12-30 00:12:25 +00:00
|
|
|
for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
|
2007-12-30 00:41:17 +00:00
|
|
|
addOperand(MachineOperand::CreateReg(*ImpUses, false, true));
|
2006-11-13 23:34:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// MachineInstr ctor - This constructor create a MachineInstr and add the
|
2006-11-27 23:37:22 +00: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 02:23:01 +00:00
|
|
|
MachineInstr::MachineInstr(const TargetInstrDescriptor &tid, bool NoImp)
|
2006-11-30 07:08:44 +00:00
|
|
|
: TID(&tid), NumImplicitOps(0), parent(0) {
|
2007-10-13 02:23:01 +00:00
|
|
|
if (!NoImp && TID->ImplicitDefs)
|
2006-11-30 07:08:44 +00:00
|
|
|
for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
|
2006-11-13 23:34:06 +00:00
|
|
|
NumImplicitOps++;
|
2007-10-13 02:23:01 +00:00
|
|
|
if (!NoImp && TID->ImplicitUses)
|
2006-11-30 07:08:44 +00:00
|
|
|
for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
|
2006-11-13 23:34:06 +00:00
|
|
|
NumImplicitOps++;
|
2006-11-30 07:08:44 +00:00
|
|
|
Operands.reserve(NumImplicitOps + TID->numOperands);
|
2007-10-13 02:23:01 +00:00
|
|
|
if (!NoImp)
|
|
|
|
addImplicitDefUseOperands();
|
2006-11-13 23:34:06 +00:00
|
|
|
// Make sure that we get added to a machine basicblock
|
|
|
|
LeakDetector::addGarbageObject(this);
|
|
|
|
}
|
|
|
|
|
2002-10-29 23:19:00 +00: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-27 23:37:22 +00:00
|
|
|
MachineInstr::MachineInstr(MachineBasicBlock *MBB,
|
2006-11-30 07:08:44 +00:00
|
|
|
const TargetInstrDescriptor &tid)
|
|
|
|
: TID(&tid), NumImplicitOps(0), parent(0) {
|
2002-10-29 23:19:00 +00:00
|
|
|
assert(MBB && "Cannot use inserting ctor with null basic block!");
|
2006-11-30 07:08:44 +00:00
|
|
|
if (TID->ImplicitDefs)
|
|
|
|
for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
|
2006-11-13 23:34:06 +00:00
|
|
|
NumImplicitOps++;
|
2006-11-30 07:08:44 +00:00
|
|
|
if (TID->ImplicitUses)
|
|
|
|
for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
|
2006-11-13 23:34:06 +00:00
|
|
|
NumImplicitOps++;
|
2006-11-30 07:08:44 +00:00
|
|
|
Operands.reserve(NumImplicitOps + TID->numOperands);
|
|
|
|
addImplicitDefUseOperands();
|
2004-02-16 07:17:43 +00:00
|
|
|
// Make sure that we get added to a machine basicblock
|
|
|
|
LeakDetector::addGarbageObject(this);
|
2002-10-29 23:19:00 +00:00
|
|
|
MBB->push_back(this); // Add instruction to end of basic block!
|
|
|
|
}
|
|
|
|
|
2004-07-09 14:45:17 +00:00
|
|
|
/// MachineInstr ctor - Copies MachineInstr arg exactly
|
|
|
|
///
|
2004-05-23 19:35:12 +00:00
|
|
|
MachineInstr::MachineInstr(const MachineInstr &MI) {
|
2006-11-30 07:08:44 +00:00
|
|
|
TID = MI.getInstrDescriptor();
|
2006-11-15 20:54:29 +00:00
|
|
|
NumImplicitOps = MI.NumImplicitOps;
|
2006-05-04 19:14:44 +00:00
|
|
|
Operands.reserve(MI.getNumOperands());
|
2004-05-23 20:58:02 +00:00
|
|
|
|
2004-07-09 14:45:17 +00:00
|
|
|
// Add operands
|
2007-12-30 06:11:04 +00:00
|
|
|
for (unsigned i = 0; i != MI.getNumOperands(); ++i) {
|
2006-05-04 19:14:44 +00:00
|
|
|
Operands.push_back(MI.getOperand(i));
|
2007-12-30 06:11:04 +00:00
|
|
|
Operands.back().ParentMI = this;
|
|
|
|
}
|
2004-05-24 03:14:18 +00:00
|
|
|
|
2004-07-09 14:45:17 +00:00
|
|
|
// Set parent, next, and prev to null
|
2004-05-24 03:14:18 +00:00
|
|
|
parent = 0;
|
|
|
|
prev = 0;
|
|
|
|
next = 0;
|
2004-05-23 19:35:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-09 14:45:17 +00:00
|
|
|
MachineInstr::~MachineInstr() {
|
2004-02-16 07:17:43 +00:00
|
|
|
LeakDetector::removeGarbageObject(this);
|
2007-12-30 06:11:04 +00:00
|
|
|
#ifndef NDEBUG
|
|
|
|
for (unsigned i = 0, e = Operands.size(); i != e; ++i)
|
|
|
|
assert(Operands[i].ParentMI == this && "ParentMI mismatch!");
|
|
|
|
#endif
|
2004-02-16 07:17:43 +00:00
|
|
|
}
|
|
|
|
|
2006-11-30 07:08:44 +00:00
|
|
|
/// getOpcode - Returns the opcode of this MachineInstr.
|
|
|
|
///
|
2007-09-14 20:08:19 +00:00
|
|
|
int MachineInstr::getOpcode() const {
|
2006-11-30 07:08:44 +00:00
|
|
|
return TID->Opcode;
|
|
|
|
}
|
|
|
|
|
2006-04-17 21:35:41 +00: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 04:39:32 +00:00
|
|
|
/// OperandComplete - Return true if it's illegal to add a new operand
|
|
|
|
///
|
2004-02-12 16:09:53 +00:00
|
|
|
bool MachineInstr::OperandsComplete() const {
|
2006-11-30 07:08:44 +00:00
|
|
|
unsigned short NumOperands = TID->numOperands;
|
|
|
|
if ((TID->Flags & M_VARIABLE_OPS) == 0 &&
|
2006-11-28 02:25:34 +00:00
|
|
|
getNumOperands()-NumImplicitOps >= NumOperands)
|
2003-05-31 07:39:06 +00:00
|
|
|
return true; // Broken: we have all the operands of this instruction!
|
2002-10-28 20:48:39 +00:00
|
|
|
return false;
|
2001-07-21 12:41:50 +00:00
|
|
|
}
|
|
|
|
|
2007-05-15 01:26:09 +00: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-20 22:39:59 +00:00
|
|
|
|
2007-04-26 19:00:32 +00:00
|
|
|
/// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of
|
2007-03-26 22:37:45 +00:00
|
|
|
/// the specific register or -1 if it is not found. It further tightening
|
2007-02-23 01:04:26 +00:00
|
|
|
/// the search criteria to a use that kills the register if isKill is true.
|
2007-05-29 18:35:22 +00:00
|
|
|
int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill) const {
|
2006-12-06 08:27:42 +00:00
|
|
|
for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
|
2007-05-29 18:35:22 +00:00
|
|
|
const MachineOperand &MO = getOperand(i);
|
2007-09-14 20:33:02 +00:00
|
|
|
if (MO.isRegister() && MO.isUse() && MO.getReg() == Reg)
|
2007-02-23 01:04:26 +00:00
|
|
|
if (!isKill || MO.isKill())
|
2007-03-26 22:37:45 +00:00
|
|
|
return i;
|
2007-02-19 21:49:54 +00:00
|
|
|
}
|
2007-03-26 22:37:45 +00:00
|
|
|
return -1;
|
2007-02-19 21:49:54 +00: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-14 20:33:02 +00:00
|
|
|
if (MO.isRegister() && MO.isDef() && MO.getReg() == Reg)
|
2006-12-06 08:27:42 +00:00
|
|
|
return &MO;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-05-15 01:26:09 +00:00
|
|
|
|
2007-05-29 18:35:22 +00: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 01:26:09 +00:00
|
|
|
const TargetInstrDescriptor *TID = getInstrDescriptor();
|
2007-05-16 20:56:08 +00:00
|
|
|
if (TID->Flags & M_PREDICABLE) {
|
2007-05-15 01:26:09 +00:00
|
|
|
for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
|
|
|
|
if ((TID->OpInfo[i].Flags & M_PREDICATE_OPERAND))
|
2007-05-29 18:35:22 +00:00
|
|
|
return i;
|
2007-05-15 01:26:09 +00:00
|
|
|
}
|
|
|
|
|
2007-05-29 18:35:22 +00:00
|
|
|
return -1;
|
2007-05-15 01:26:09 +00:00
|
|
|
}
|
2006-12-06 08:27:42 +00:00
|
|
|
|
2007-10-12 08:50:34 +00: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 08:27:42 +00: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-14 20:33:02 +00:00
|
|
|
if (!MO.isRegister() || (!MO.isKill() && !MO.isDead()))
|
2006-12-06 08:27:42 +00: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 01:26:09 +00:00
|
|
|
/// copyPredicates - Copies predicate operand(s) from MI.
|
|
|
|
void MachineInstr::copyPredicates(const MachineInstr *MI) {
|
|
|
|
const TargetInstrDescriptor *TID = MI->getInstrDescriptor();
|
2007-05-16 20:56:08 +00:00
|
|
|
if (TID->Flags & M_PREDICABLE) {
|
2007-05-15 01:26:09 +00: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 00:41:17 +00:00
|
|
|
addOperand(MI->getOperand(i));
|
2007-05-15 01:26:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-13 04:39:32 +00:00
|
|
|
void MachineInstr::dump() const {
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << " " << *this;
|
2001-07-21 12:41:50 +00:00
|
|
|
}
|
|
|
|
|
2004-06-25 00:13:11 +00:00
|
|
|
void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const {
|
2007-12-30 21:31:53 +00:00
|
|
|
// Specialize printing if op#0 is definition
|
2002-10-30 01:55:38 +00:00
|
|
|
unsigned StartOp = 0;
|
2007-09-14 20:33:02 +00:00
|
|
|
if (getNumOperands() && getOperand(0).isRegister() && getOperand(0).isDef()) {
|
2007-12-30 21:56:09 +00:00
|
|
|
getOperand(0).print(OS, TM);
|
2002-10-30 01:55:38 +00:00
|
|
|
OS << " = ";
|
|
|
|
++StartOp; // Don't print this operand again!
|
|
|
|
}
|
2004-06-25 00:13:11 +00:00
|
|
|
|
2007-12-30 21:31:53 +00:00
|
|
|
OS << getInstrDescriptor()->Name;
|
2005-04-21 22:36:52 +00:00
|
|
|
|
2002-10-30 01:55:38 +00:00
|
|
|
for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) {
|
|
|
|
if (i != StartOp)
|
|
|
|
OS << ",";
|
|
|
|
OS << " ";
|
2007-12-30 21:56:09 +00:00
|
|
|
getOperand(i).print(OS, TM);
|
2002-10-30 00:48:05 +00:00
|
|
|
}
|
2005-04-21 22:36:52 +00:00
|
|
|
|
2002-10-30 00:48:05 +00:00
|
|
|
OS << "\n";
|
|
|
|
}
|
|
|
|
|