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
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and 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"
|
2004-07-04 12:19:56 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
2004-02-23 18:38:20 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2002-10-29 17:40:30 +00:00
|
|
|
// Global variable holding an array of descriptors for machine instructions.
|
|
|
|
// The actual object needs to be created separately for each target machine.
|
2003-01-14 22:00:31 +00:00
|
|
|
// This variable is initialized and reset by class TargetInstrInfo.
|
2005-04-21 22:36:52 +00:00
|
|
|
//
|
2002-10-29 17:40:30 +00:00
|
|
|
// FIXME: This should be a property of the target so that more than one target
|
|
|
|
// at a time can be active...
|
|
|
|
//
|
2004-02-23 18:40:08 +00:00
|
|
|
namespace llvm {
|
2004-02-23 18:38:20 +00:00
|
|
|
extern const TargetInstrDescriptor *TargetInstrDescriptors;
|
|
|
|
}
|
2001-10-18 22:40:02 +00:00
|
|
|
|
2002-10-29 23:19:00 +00:00
|
|
|
/// MachineInstr ctor - This constructor only does a _reserve_ of the operands,
|
|
|
|
/// not a resize for them. It is expected that if you use this that you call
|
|
|
|
/// add* methods below to fill up the operands, instead of the Set methods.
|
|
|
|
/// Eventually, the "resizing" ctors will be phased out.
|
|
|
|
///
|
2006-05-04 18:16:01 +00:00
|
|
|
MachineInstr::MachineInstr(short opcode, unsigned numOperands)
|
2006-04-20 18:08:53 +00:00
|
|
|
: Opcode(opcode), parent(0) {
|
2006-05-04 19:14:44 +00:00
|
|
|
Operands.reserve(numOperands);
|
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
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
///
|
2004-02-12 18:49:07 +00:00
|
|
|
MachineInstr::MachineInstr(MachineBasicBlock *MBB, short opcode,
|
2002-10-29 23:19:00 +00:00
|
|
|
unsigned numOperands)
|
2006-04-20 18:08:53 +00:00
|
|
|
: Opcode(opcode), parent(0) {
|
2002-10-29 23:19:00 +00:00
|
|
|
assert(MBB && "Cannot use inserting ctor with null basic block!");
|
2006-05-04 19:14:44 +00:00
|
|
|
Operands.reserve(numOperands);
|
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) {
|
|
|
|
Opcode = MI.getOpcode();
|
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
|
2006-05-04 19:14:44 +00:00
|
|
|
for (unsigned i = 0; i != MI.getNumOperands(); ++i)
|
|
|
|
Operands.push_back(MI.getOperand(i));
|
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);
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
int NumOperands = TargetInstrDescriptors[Opcode].numOperands;
|
2002-10-29 19:41:18 +00:00
|
|
|
if (NumOperands >= 0 && getNumOperands() >= (unsigned)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
|
|
|
}
|
|
|
|
|
2004-02-13 04:39:32 +00:00
|
|
|
void MachineInstr::dump() const {
|
2003-08-03 20:24:29 +00:00
|
|
|
std::cerr << " " << *this;
|
2001-07-21 12:41:50 +00:00
|
|
|
}
|
|
|
|
|
2002-10-30 00:58:19 +00:00
|
|
|
static inline void OutputReg(std::ostream &os, unsigned RegNo,
|
|
|
|
const MRegisterInfo *MRI = 0) {
|
2004-02-27 01:52:34 +00:00
|
|
|
if (!RegNo || MRegisterInfo::isPhysicalRegister(RegNo)) {
|
2004-02-19 16:17:08 +00:00
|
|
|
if (MRI)
|
2002-10-30 00:58:19 +00:00
|
|
|
os << "%" << MRI->get(RegNo).Name;
|
|
|
|
else
|
2004-02-19 16:17:08 +00:00
|
|
|
os << "%mreg(" << RegNo << ")";
|
2002-10-30 00:58:19 +00:00
|
|
|
} else
|
2004-02-19 16:17:08 +00:00
|
|
|
os << "%reg" << RegNo;
|
2002-09-16 15:18:53 +00:00
|
|
|
}
|
|
|
|
|
2002-10-30 00:48:05 +00:00
|
|
|
static void print(const MachineOperand &MO, std::ostream &OS,
|
2004-06-25 00:13:11 +00:00
|
|
|
const TargetMachine *TM) {
|
2004-07-09 14:45:17 +00:00
|
|
|
const MRegisterInfo *MRI = 0;
|
2005-04-21 22:36:52 +00:00
|
|
|
|
2004-07-09 14:45:17 +00:00
|
|
|
if (TM) MRI = TM->getRegisterInfo();
|
2004-06-25 00:13:11 +00:00
|
|
|
|
2002-10-30 00:48:05 +00:00
|
|
|
switch (MO.getType()) {
|
2006-05-04 18:05:43 +00:00
|
|
|
case MachineOperand::MO_Register:
|
2006-05-04 01:26:39 +00:00
|
|
|
OutputReg(OS, MO.getReg(), MRI);
|
2002-10-30 00:48:05 +00:00
|
|
|
break;
|
2006-05-04 17:21:20 +00:00
|
|
|
case MachineOperand::MO_Immediate:
|
2002-10-30 00:48:05 +00:00
|
|
|
OS << (long)MO.getImmedValue();
|
|
|
|
break;
|
2002-12-15 20:35:25 +00:00
|
|
|
case MachineOperand::MO_MachineBasicBlock:
|
2004-06-17 22:26:53 +00:00
|
|
|
OS << "mbb<"
|
2002-12-15 20:35:25 +00:00
|
|
|
<< ((Value*)MO.getMachineBasicBlock()->getBasicBlock())->getName()
|
2004-06-17 22:26:53 +00:00
|
|
|
<< "," << (void*)MO.getMachineBasicBlock() << ">";
|
2002-12-15 20:35:25 +00:00
|
|
|
break;
|
2002-12-28 20:37:37 +00:00
|
|
|
case MachineOperand::MO_FrameIndex:
|
|
|
|
OS << "<fi#" << MO.getFrameIndex() << ">";
|
|
|
|
break;
|
2003-01-13 00:23:24 +00:00
|
|
|
case MachineOperand::MO_ConstantPoolIndex:
|
|
|
|
OS << "<cp#" << MO.getConstantPoolIndex() << ">";
|
|
|
|
break;
|
2006-04-22 18:53:45 +00:00
|
|
|
case MachineOperand::MO_JumpTableIndex:
|
|
|
|
OS << "<jt#" << MO.getJumpTableIndex() << ">";
|
|
|
|
break;
|
2003-01-13 00:23:24 +00:00
|
|
|
case MachineOperand::MO_GlobalAddress:
|
2004-10-15 04:38:41 +00:00
|
|
|
OS << "<ga:" << ((Value*)MO.getGlobal())->getName();
|
|
|
|
if (MO.getOffset()) OS << "+" << MO.getOffset();
|
|
|
|
OS << ">";
|
2003-01-13 00:23:24 +00:00
|
|
|
break;
|
|
|
|
case MachineOperand::MO_ExternalSymbol:
|
2004-10-15 04:38:41 +00:00
|
|
|
OS << "<es:" << MO.getSymbolName();
|
|
|
|
if (MO.getOffset()) OS << "+" << MO.getOffset();
|
|
|
|
OS << ">";
|
2003-01-13 00:23:24 +00:00
|
|
|
break;
|
2002-10-30 00:48:05 +00:00
|
|
|
default:
|
|
|
|
assert(0 && "Unrecognized operand type");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-25 00:13:11 +00:00
|
|
|
void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const {
|
2002-10-30 01:55:38 +00:00
|
|
|
unsigned StartOp = 0;
|
|
|
|
|
|
|
|
// Specialize printing if op#0 is definition
|
2003-12-14 13:24:17 +00:00
|
|
|
if (getNumOperands() && getOperand(0).isDef() && !getOperand(0).isUse()) {
|
2004-02-23 18:38:20 +00:00
|
|
|
::print(getOperand(0), 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
|
|
|
|
2004-07-09 14:45:17 +00:00
|
|
|
// Must check if Target machine is not null because machine BB could not
|
|
|
|
// be attached to a Machine function yet
|
|
|
|
if (TM)
|
2004-06-25 00:13:11 +00:00
|
|
|
OS << TM->getInstrInfo()->getName(getOpcode());
|
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) {
|
2003-05-27 00:05:23 +00:00
|
|
|
const MachineOperand& mop = getOperand(i);
|
2002-10-30 01:55:38 +00:00
|
|
|
if (i != StartOp)
|
|
|
|
OS << ",";
|
|
|
|
OS << " ";
|
2004-02-23 18:38:20 +00:00
|
|
|
::print(mop, OS, TM);
|
2005-04-21 22:36:52 +00:00
|
|
|
|
2003-12-14 13:24:17 +00:00
|
|
|
if (mop.isDef())
|
|
|
|
if (mop.isUse())
|
|
|
|
OS << "<def&use>";
|
|
|
|
else
|
|
|
|
OS << "<def>";
|
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";
|
|
|
|
}
|
|
|
|
|
2006-05-04 00:49:59 +00:00
|
|
|
std::ostream &llvm::operator<<(std::ostream &os, const MachineInstr &MI) {
|
2004-02-19 16:17:08 +00:00
|
|
|
// If the instruction is embedded into a basic block, we can find the target
|
|
|
|
// info for the instruction.
|
|
|
|
if (const MachineBasicBlock *MBB = MI.getParent()) {
|
|
|
|
const MachineFunction *MF = MBB->getParent();
|
2004-07-09 14:45:17 +00:00
|
|
|
if (MF)
|
2004-06-25 00:13:11 +00:00
|
|
|
MI.print(os, &MF->getTarget());
|
|
|
|
else
|
|
|
|
MI.print(os, 0);
|
2004-02-19 16:17:08 +00:00
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, print it out in the "raw" format without symbolic register names
|
|
|
|
// and such.
|
2004-02-12 16:09:53 +00:00
|
|
|
os << TargetInstrDescriptors[MI.getOpcode()].Name;
|
2005-04-21 22:36:52 +00:00
|
|
|
|
2004-07-09 14:45:17 +00:00
|
|
|
for (unsigned i = 0, N = MI.getNumOperands(); i < N; i++) {
|
2003-01-13 00:23:24 +00:00
|
|
|
os << "\t" << MI.getOperand(i);
|
2003-12-14 13:24:17 +00:00
|
|
|
if (MI.getOperand(i).isDef())
|
|
|
|
if (MI.getOperand(i).isUse())
|
|
|
|
os << "<d&u>";
|
|
|
|
else
|
|
|
|
os << "<d>";
|
2001-11-14 20:05:23 +00:00
|
|
|
}
|
2005-04-21 22:36:52 +00:00
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
return os << "\n";
|
2001-07-21 12:41:50 +00:00
|
|
|
}
|
|
|
|
|
2006-05-04 00:49:59 +00:00
|
|
|
std::ostream &llvm::operator<<(std::ostream &OS, const MachineOperand &MO) {
|
2004-07-09 14:45:17 +00:00
|
|
|
switch (MO.getType()) {
|
2006-05-04 18:05:43 +00:00
|
|
|
case MachineOperand::MO_Register:
|
2006-05-04 01:26:39 +00:00
|
|
|
OutputReg(OS, MO.getReg());
|
2004-07-09 14:45:17 +00:00
|
|
|
break;
|
2006-05-04 17:21:20 +00:00
|
|
|
case MachineOperand::MO_Immediate:
|
2004-07-09 14:45:17 +00:00
|
|
|
OS << (long)MO.getImmedValue();
|
|
|
|
break;
|
|
|
|
case MachineOperand::MO_MachineBasicBlock:
|
|
|
|
OS << "<mbb:"
|
|
|
|
<< ((Value*)MO.getMachineBasicBlock()->getBasicBlock())->getName()
|
|
|
|
<< "@" << (void*)MO.getMachineBasicBlock() << ">";
|
|
|
|
break;
|
|
|
|
case MachineOperand::MO_FrameIndex:
|
|
|
|
OS << "<fi#" << MO.getFrameIndex() << ">";
|
|
|
|
break;
|
|
|
|
case MachineOperand::MO_ConstantPoolIndex:
|
|
|
|
OS << "<cp#" << MO.getConstantPoolIndex() << ">";
|
|
|
|
break;
|
2006-04-22 18:53:45 +00:00
|
|
|
case MachineOperand::MO_JumpTableIndex:
|
|
|
|
OS << "<jt#" << MO.getJumpTableIndex() << ">";
|
|
|
|
break;
|
2004-07-09 14:45:17 +00:00
|
|
|
case MachineOperand::MO_GlobalAddress:
|
|
|
|
OS << "<ga:" << ((Value*)MO.getGlobal())->getName() << ">";
|
|
|
|
break;
|
|
|
|
case MachineOperand::MO_ExternalSymbol:
|
|
|
|
OS << "<es:" << MO.getSymbolName() << ">";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(0 && "Unrecognized operand type");
|
|
|
|
break;
|
|
|
|
}
|
2005-04-21 22:36:52 +00:00
|
|
|
|
2002-12-28 20:37:37 +00:00
|
|
|
return OS;
|
2001-07-21 12:41:50 +00:00
|
|
|
}
|