2003-09-30 18:37:50 +00:00
|
|
|
//===-- llvm/CodeGen/MachineInstr.h - MachineInstr class --------*- C++ -*-===//
|
2005-04-21 20:39:54 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +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 20:39:54 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-02-03 07:11:59 +00:00
|
|
|
//
|
|
|
|
// This file contains the declaration of the MachineInstr class, which is the
|
2003-08-21 22:14:26 +00:00
|
|
|
// basic representation for all target dependent machine instructions used by
|
2002-02-03 07:11:59 +00:00
|
|
|
// the back end.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-21 12:39:03 +00:00
|
|
|
|
|
|
|
#ifndef LLVM_CODEGEN_MACHINEINSTR_H
|
|
|
|
#define LLVM_CODEGEN_MACHINEINSTR_H
|
|
|
|
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/ADT/iterator"
|
2005-04-10 09:18:55 +00:00
|
|
|
#include "llvm/Support/DataTypes.h"
|
2004-02-10 21:21:17 +00:00
|
|
|
#include <vector>
|
2004-02-29 05:15:56 +00:00
|
|
|
#include <cassert>
|
2003-06-11 14:01:36 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2002-10-28 02:29:46 +00:00
|
|
|
class Value;
|
|
|
|
class Function;
|
2002-10-29 23:18:23 +00:00
|
|
|
class MachineBasicBlock;
|
2002-10-30 00:46:48 +00:00
|
|
|
class TargetMachine;
|
2003-01-13 00:18:17 +00:00
|
|
|
class GlobalValue;
|
2002-10-28 02:29:46 +00:00
|
|
|
|
2004-10-27 16:14:51 +00:00
|
|
|
template <typename T> struct ilist_traits;
|
|
|
|
template <typename T> struct ilist;
|
2004-02-12 02:27:10 +00:00
|
|
|
|
2004-02-12 18:49:07 +00:00
|
|
|
typedef short MachineOpCode;
|
2001-07-28 04:06:37 +00:00
|
|
|
|
2003-06-03 15:42:53 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-21 20:39:54 +00:00
|
|
|
// class MachineOperand
|
|
|
|
//
|
2001-07-21 12:39:03 +00:00
|
|
|
// Representation of each machine instruction operand.
|
2005-04-22 03:46:24 +00:00
|
|
|
//
|
2003-01-13 00:18:17 +00:00
|
|
|
struct MachineOperand {
|
2004-02-22 19:23:26 +00:00
|
|
|
private:
|
|
|
|
// Bit fields of the flags variable used for different operand properties
|
|
|
|
enum {
|
|
|
|
DEFFLAG = 0x01, // this is a def of the operand
|
|
|
|
USEFLAG = 0x02, // this is a use of the operand
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
// UseType - This enum describes how the machine operand is used by
|
|
|
|
// the instruction. Note that the MachineInstr/Operator class
|
|
|
|
// currently uses bool arguments to represent this information
|
|
|
|
// instead of an enum. Eventually this should change over to use
|
|
|
|
// this _easier to read_ representation instead.
|
|
|
|
//
|
|
|
|
enum UseType {
|
|
|
|
Use = USEFLAG, /// only read
|
|
|
|
Def = DEFFLAG, /// only written
|
|
|
|
UseAndDef = Use | Def /// read AND written
|
|
|
|
};
|
|
|
|
|
2001-07-21 12:39:03 +00:00
|
|
|
enum MachineOperandType {
|
2005-04-22 03:46:24 +00:00
|
|
|
MO_VirtualRegister, // virtual register for *value
|
2006-05-04 17:21:20 +00:00
|
|
|
MO_Immediate, // Immediate Operand
|
2002-12-15 08:01:02 +00:00
|
|
|
MO_MachineBasicBlock, // MachineBasicBlock reference
|
2002-12-25 05:00:49 +00:00
|
|
|
MO_FrameIndex, // Abstract Stack Frame Index
|
2003-01-13 00:18:17 +00:00
|
|
|
MO_ConstantPoolIndex, // Address of indexed Constant in Constant Pool
|
2006-04-22 18:53:45 +00:00
|
|
|
MO_JumpTableIndex, // Address of indexed Jump Table for switch
|
2003-01-13 00:18:17 +00:00
|
|
|
MO_ExternalSymbol, // Name of external global symbol
|
2006-02-22 16:23:43 +00:00
|
|
|
MO_GlobalAddress // Address of a global value
|
2001-07-21 12:39:03 +00:00
|
|
|
};
|
2005-04-21 20:39:54 +00:00
|
|
|
|
2001-07-28 04:06:37 +00:00
|
|
|
private:
|
|
|
|
union {
|
2006-05-04 17:02:51 +00:00
|
|
|
GlobalValue *GV; // LLVM global for MO_GlobalAddress.
|
2005-04-22 03:46:24 +00:00
|
|
|
int64_t immedVal; // Constant value for an explicit constant
|
2002-12-15 08:01:02 +00:00
|
|
|
MachineBasicBlock *MBB; // For MO_MachineBasicBlock type
|
2004-11-19 20:46:15 +00:00
|
|
|
const char *SymbolName; // For MO_ExternalSymbol type
|
2004-03-03 19:07:27 +00:00
|
|
|
} contents;
|
2001-08-07 20:14:30 +00:00
|
|
|
|
2002-10-22 00:15:13 +00:00
|
|
|
char flags; // see bit field definitions above
|
2002-12-15 08:01:02 +00:00
|
|
|
MachineOperandType opType:8; // Pack into 8 bits efficiently after flags.
|
2004-10-15 04:38:41 +00:00
|
|
|
union {
|
2006-05-04 17:02:51 +00:00
|
|
|
int regNum; // register number for an explicit register
|
|
|
|
int offset; // Offset to address of global or external, only
|
|
|
|
// valid for MO_GlobalAddress, MO_ExternalSym
|
|
|
|
// and MO_ConstantPoolIndex
|
2004-10-15 04:38:41 +00:00
|
|
|
} extra;
|
|
|
|
|
2006-05-04 17:02:51 +00:00
|
|
|
void zeroContents() {
|
|
|
|
contents.immedVal = 0;
|
|
|
|
extra.offset = 0;
|
2004-03-03 19:07:27 +00:00
|
|
|
}
|
|
|
|
|
2006-05-04 01:26:39 +00:00
|
|
|
MachineOperand(int64_t ImmVal, MachineOperandType OpTy, int Offset = 0)
|
2004-10-15 04:38:41 +00:00
|
|
|
: flags(0), opType(OpTy) {
|
2004-03-04 18:02:07 +00:00
|
|
|
contents.immedVal = ImmVal;
|
2006-05-04 01:26:39 +00:00
|
|
|
extra.offset = Offset;
|
2004-03-03 19:07:27 +00:00
|
|
|
}
|
2002-10-29 19:41:18 +00:00
|
|
|
|
2004-02-22 19:23:26 +00:00
|
|
|
MachineOperand(int Reg, MachineOperandType OpTy, UseType UseTy)
|
2004-10-15 04:38:41 +00:00
|
|
|
: flags(UseTy), opType(OpTy) {
|
2006-05-04 17:02:51 +00:00
|
|
|
zeroContents();
|
2004-10-15 04:38:41 +00:00
|
|
|
extra.regNum = Reg;
|
2004-03-03 19:07:27 +00:00
|
|
|
}
|
2002-10-29 19:41:18 +00:00
|
|
|
|
2006-05-04 01:26:39 +00:00
|
|
|
MachineOperand(GlobalValue *V, int Offset = 0)
|
|
|
|
: flags(MachineOperand::Use), opType(MachineOperand::MO_GlobalAddress) {
|
2006-05-04 17:02:51 +00:00
|
|
|
contents.GV = V;
|
2004-10-15 04:38:41 +00:00
|
|
|
extra.offset = Offset;
|
2002-10-28 20:48:39 +00:00
|
|
|
}
|
|
|
|
|
2002-12-15 08:01:02 +00:00
|
|
|
MachineOperand(MachineBasicBlock *mbb)
|
2004-10-15 04:38:41 +00:00
|
|
|
: flags(0), opType(MO_MachineBasicBlock) {
|
2004-03-03 19:07:27 +00:00
|
|
|
zeroContents ();
|
|
|
|
contents.MBB = mbb;
|
|
|
|
}
|
2002-12-15 08:01:02 +00:00
|
|
|
|
2006-05-04 01:15:02 +00:00
|
|
|
MachineOperand(const char *SymName, int Offset)
|
|
|
|
: flags(0), opType(MO_ExternalSymbol) {
|
2004-03-03 19:07:27 +00:00
|
|
|
zeroContents ();
|
2004-11-19 20:46:15 +00:00
|
|
|
contents.SymbolName = SymName;
|
2004-10-15 04:38:41 +00:00
|
|
|
extra.offset = Offset;
|
2004-03-03 19:07:27 +00:00
|
|
|
}
|
2003-01-13 00:18:17 +00:00
|
|
|
|
2001-07-28 04:06:37 +00:00
|
|
|
public:
|
2004-03-03 19:07:27 +00:00
|
|
|
MachineOperand(const MachineOperand &M)
|
2004-10-15 04:38:41 +00:00
|
|
|
: flags(M.flags), opType(M.opType) {
|
2004-03-03 19:07:27 +00:00
|
|
|
zeroContents ();
|
|
|
|
contents = M.contents;
|
2004-10-15 04:38:41 +00:00
|
|
|
extra = M.extra;
|
2003-01-13 00:18:17 +00:00
|
|
|
}
|
2002-10-29 19:41:18 +00:00
|
|
|
|
2004-11-19 20:46:15 +00:00
|
|
|
~MachineOperand() {}
|
2005-04-21 20:39:54 +00:00
|
|
|
|
2003-01-13 00:18:17 +00:00
|
|
|
const MachineOperand &operator=(const MachineOperand &MO) {
|
2004-03-03 19:07:27 +00:00
|
|
|
contents = MO.contents;
|
2003-01-13 00:18:17 +00:00
|
|
|
flags = MO.flags;
|
|
|
|
opType = MO.opType;
|
2004-10-15 04:38:41 +00:00
|
|
|
extra = MO.extra;
|
2003-01-13 00:18:17 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2004-02-12 04:26:49 +00:00
|
|
|
/// getType - Returns the MachineOperandType for this operand.
|
2005-04-21 20:39:54 +00:00
|
|
|
///
|
2002-10-28 04:45:29 +00:00
|
|
|
MachineOperandType getType() const { return opType; }
|
2002-10-28 04:24:49 +00:00
|
|
|
|
2004-02-22 06:54:26 +00:00
|
|
|
/// getUseType - Returns the MachineOperandUseType of this operand.
|
|
|
|
///
|
2004-03-03 19:07:27 +00:00
|
|
|
UseType getUseType() const { return UseType(flags & (USEFLAG|DEFFLAG)); }
|
2004-02-22 06:54:26 +00:00
|
|
|
|
2006-05-04 01:26:39 +00:00
|
|
|
/// isRegister - Return true if this operand is a register operand.
|
2004-02-10 21:21:17 +00:00
|
|
|
///
|
2004-02-10 21:43:11 +00:00
|
|
|
bool isRegister() const {
|
2006-05-04 01:15:02 +00:00
|
|
|
return opType == MO_VirtualRegister;
|
2004-02-10 21:43:11 +00:00
|
|
|
}
|
2004-02-10 21:21:17 +00:00
|
|
|
|
2004-03-03 19:07:27 +00:00
|
|
|
/// Accessors that tell you what kind of MachineOperand you're looking at.
|
|
|
|
///
|
2002-12-15 08:01:02 +00:00
|
|
|
bool isMachineBasicBlock() const { return opType == MO_MachineBasicBlock; }
|
2006-05-04 17:21:20 +00:00
|
|
|
bool isImmediate() const { return opType == MO_Immediate; }
|
2002-12-25 05:00:49 +00:00
|
|
|
bool isFrameIndex() const { return opType == MO_FrameIndex; }
|
2003-01-13 00:18:17 +00:00
|
|
|
bool isConstantPoolIndex() const { return opType == MO_ConstantPoolIndex; }
|
2006-04-22 18:53:45 +00:00
|
|
|
bool isJumpTableIndex() const { return opType == MO_JumpTableIndex; }
|
2003-01-13 00:18:17 +00:00
|
|
|
bool isGlobalAddress() const { return opType == MO_GlobalAddress; }
|
|
|
|
bool isExternalSymbol() const { return opType == MO_ExternalSymbol; }
|
2002-11-22 22:40:52 +00:00
|
|
|
|
2005-04-10 09:18:55 +00:00
|
|
|
int64_t getImmedValue() const {
|
2004-03-03 19:07:27 +00:00
|
|
|
assert(isImmediate() && "Wrong MachineOperand accessor");
|
|
|
|
return contents.immedVal;
|
|
|
|
}
|
2002-12-15 08:01:02 +00:00
|
|
|
MachineBasicBlock *getMachineBasicBlock() const {
|
2004-03-03 19:07:27 +00:00
|
|
|
assert(isMachineBasicBlock() && "Wrong MachineOperand accessor");
|
|
|
|
return contents.MBB;
|
|
|
|
}
|
2004-07-31 01:59:11 +00:00
|
|
|
void setMachineBasicBlock(MachineBasicBlock *MBB) {
|
|
|
|
assert(isMachineBasicBlock() && "Wrong MachineOperand accessor");
|
|
|
|
contents.MBB = MBB;
|
|
|
|
}
|
2004-03-03 19:07:27 +00:00
|
|
|
int getFrameIndex() const {
|
|
|
|
assert(isFrameIndex() && "Wrong MachineOperand accessor");
|
2005-04-11 03:38:28 +00:00
|
|
|
return (int)contents.immedVal;
|
2002-12-15 08:01:02 +00:00
|
|
|
}
|
2003-01-13 00:18:17 +00:00
|
|
|
unsigned getConstantPoolIndex() const {
|
2004-03-03 19:07:27 +00:00
|
|
|
assert(isConstantPoolIndex() && "Wrong MachineOperand accessor");
|
2005-04-11 03:38:28 +00:00
|
|
|
return (unsigned)contents.immedVal;
|
2003-01-13 00:18:17 +00:00
|
|
|
}
|
2006-04-22 18:53:45 +00:00
|
|
|
unsigned getJumpTableIndex() const {
|
|
|
|
assert(isJumpTableIndex() && "Wrong MachineOperand accessor");
|
|
|
|
return (unsigned)contents.immedVal;
|
|
|
|
}
|
2003-01-13 00:18:17 +00:00
|
|
|
GlobalValue *getGlobal() const {
|
2004-03-03 19:07:27 +00:00
|
|
|
assert(isGlobalAddress() && "Wrong MachineOperand accessor");
|
2006-05-04 17:02:51 +00:00
|
|
|
return contents.GV;
|
2003-01-13 00:18:17 +00:00
|
|
|
}
|
2004-10-15 04:38:41 +00:00
|
|
|
int getOffset() const {
|
2006-02-25 09:54:52 +00:00
|
|
|
assert((isGlobalAddress() || isExternalSymbol() || isConstantPoolIndex()) &&
|
2004-10-15 04:38:41 +00:00
|
|
|
"Wrong MachineOperand accessor");
|
|
|
|
return extra.offset;
|
|
|
|
}
|
2004-11-19 20:46:15 +00:00
|
|
|
const char *getSymbolName() const {
|
2004-03-03 19:07:27 +00:00
|
|
|
assert(isExternalSymbol() && "Wrong MachineOperand accessor");
|
2004-11-19 20:46:15 +00:00
|
|
|
return contents.SymbolName;
|
2003-01-13 00:18:17 +00:00
|
|
|
}
|
2002-12-15 08:01:02 +00:00
|
|
|
|
2004-03-03 19:07:27 +00:00
|
|
|
/// MachineOperand methods for testing that work on any kind of
|
|
|
|
/// MachineOperand...
|
|
|
|
///
|
2004-02-04 22:17:40 +00:00
|
|
|
bool isUse () const { return flags & USEFLAG; }
|
|
|
|
MachineOperand& setUse () { flags |= USEFLAG; return *this; }
|
2004-03-03 19:07:27 +00:00
|
|
|
bool isDef () const { return flags & DEFFLAG; }
|
2004-02-04 22:17:40 +00:00
|
|
|
MachineOperand& setDef () { flags |= DEFFLAG; return *this; }
|
2002-09-16 15:58:54 +00:00
|
|
|
|
2004-03-03 19:07:27 +00:00
|
|
|
/// hasAllocatedReg - Returns true iff a machine register has been
|
|
|
|
/// allocated to this operand.
|
|
|
|
///
|
2002-12-25 05:00:49 +00:00
|
|
|
bool hasAllocatedReg() const {
|
2006-05-04 01:15:02 +00:00
|
|
|
return extra.regNum >= 0 && opType == MO_VirtualRegister;
|
2002-09-16 15:58:54 +00:00
|
|
|
}
|
|
|
|
|
2004-03-03 19:07:27 +00:00
|
|
|
/// getReg - Returns the register number. It is a runtime error to call this
|
|
|
|
/// if a register is not allocated.
|
|
|
|
///
|
2004-02-13 21:01:20 +00:00
|
|
|
unsigned getReg() const {
|
2003-05-31 07:43:01 +00:00
|
|
|
assert(hasAllocatedReg());
|
2004-10-15 04:38:41 +00:00
|
|
|
return extra.regNum;
|
2002-07-08 22:38:45 +00:00
|
|
|
}
|
2002-09-16 15:58:54 +00:00
|
|
|
|
2006-05-04 01:26:39 +00:00
|
|
|
/// MachineOperand mutators.
|
2004-03-03 19:07:27 +00:00
|
|
|
///
|
2003-12-01 05:30:29 +00:00
|
|
|
void setReg(unsigned Reg) {
|
|
|
|
assert(hasAllocatedReg() && "This operand cannot have a register number!");
|
2004-10-15 04:38:41 +00:00
|
|
|
extra.regNum = Reg;
|
2005-04-21 20:39:54 +00:00
|
|
|
}
|
2004-06-25 00:13:11 +00:00
|
|
|
|
2006-05-04 17:52:23 +00:00
|
|
|
void setImmedValue(int64_t immVal) {
|
2004-03-03 19:07:27 +00:00
|
|
|
assert(isImmediate() && "Wrong MachineOperand mutator");
|
|
|
|
contents.immedVal = immVal;
|
|
|
|
}
|
2003-05-31 07:43:01 +00:00
|
|
|
|
2004-10-15 04:38:41 +00:00
|
|
|
void setOffset(int Offset) {
|
2006-04-22 18:53:45 +00:00
|
|
|
assert((isGlobalAddress() || isExternalSymbol() || isConstantPoolIndex() ||
|
|
|
|
isJumpTableIndex()) &&
|
2004-10-15 04:38:41 +00:00
|
|
|
"Wrong MachineOperand accessor");
|
|
|
|
extra.offset = Offset;
|
|
|
|
}
|
2006-05-04 17:52:23 +00:00
|
|
|
|
|
|
|
/// ChangeToImmediate - Replace this operand with a new immediate operand of
|
|
|
|
/// the specified value. If an operand is known to be an immediate already,
|
|
|
|
/// the setImmedValue method should be used.
|
|
|
|
void ChangeToImmediate(int64_t ImmVal) {
|
|
|
|
opType = MO_Immediate;
|
|
|
|
contents.immedVal = ImmVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// ChangeToRegister - Replace this operand with a new register operand of
|
|
|
|
/// the specified value. If an operand is known to be an register already,
|
|
|
|
/// the setReg method should be used.
|
|
|
|
void ChangeToRegister(unsigned Reg) {
|
|
|
|
opType = MO_VirtualRegister;
|
|
|
|
extra.regNum = Reg;
|
|
|
|
}
|
2004-10-15 04:38:41 +00:00
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
friend std::ostream& operator<<(std::ostream& os, const MachineOperand& mop);
|
2001-08-09 19:18:33 +00:00
|
|
|
|
2002-07-10 21:50:57 +00:00
|
|
|
friend class MachineInstr;
|
2001-07-21 12:39:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-06-03 15:42:53 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-21 20:39:54 +00:00
|
|
|
// class MachineInstr
|
|
|
|
//
|
2001-07-21 12:39:03 +00:00
|
|
|
// Purpose:
|
|
|
|
// Representation of each machine instruction.
|
2005-04-21 20:39:54 +00:00
|
|
|
//
|
2001-07-21 12:39:03 +00:00
|
|
|
// MachineOpCode must be an enum, defined separately for each target.
|
|
|
|
// E.g., It is defined in SparcInstructionSelection.h for the SPARC.
|
2005-04-21 20:39:54 +00:00
|
|
|
//
|
2001-10-11 04:23:19 +00:00
|
|
|
// There are 2 kinds of operands:
|
2005-04-21 20:39:54 +00:00
|
|
|
//
|
|
|
|
// (1) Explicit operands of the machine instruction in vector operands[]
|
|
|
|
//
|
2001-10-11 04:23:19 +00:00
|
|
|
// (2) "Implicit operands" are values implicitly used or defined by the
|
|
|
|
// machine instruction, such as arguments to a CALL, return value of
|
|
|
|
// a CALL (if any), and return value of a RETURN.
|
2003-06-03 15:42:53 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-21 12:39:03 +00:00
|
|
|
|
2003-06-02 22:07:37 +00:00
|
|
|
class MachineInstr {
|
2004-03-03 19:07:27 +00:00
|
|
|
short Opcode; // the opcode
|
2002-10-21 13:24:50 +00:00
|
|
|
std::vector<MachineOperand> operands; // the operands
|
2004-02-12 02:27:10 +00:00
|
|
|
MachineInstr* prev, *next; // links for our intrusive list
|
2004-02-12 18:49:07 +00:00
|
|
|
MachineBasicBlock* parent; // pointer to the owning basic block
|
2004-03-03 19:07:27 +00:00
|
|
|
|
2002-10-28 20:48:39 +00:00
|
|
|
// OperandComplete - Return true if it's illegal to add a new operand
|
|
|
|
bool OperandsComplete() const;
|
2002-10-29 19:41:18 +00:00
|
|
|
|
2004-05-23 19:35:12 +00:00
|
|
|
//Constructor used by clone() method
|
|
|
|
MachineInstr(const MachineInstr&);
|
|
|
|
|
2003-06-02 22:07:37 +00:00
|
|
|
void operator=(const MachineInstr&); // DO NOT IMPLEMENT
|
2004-02-12 02:27:10 +00:00
|
|
|
|
|
|
|
// Intrusive list support
|
|
|
|
//
|
2004-10-27 16:14:51 +00:00
|
|
|
friend struct ilist_traits<MachineInstr>;
|
2004-02-12 02:27:10 +00:00
|
|
|
|
2001-07-21 12:39:03 +00:00
|
|
|
public:
|
2002-10-28 20:48:39 +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
|
2002-10-29 23:18:23 +00:00
|
|
|
/// methods. Eventually, the "resizing" ctors will be phased out.
|
2002-10-28 20:48:39 +00:00
|
|
|
///
|
2004-02-12 18:49:07 +00:00
|
|
|
MachineInstr(short Opcode, unsigned numOperands, bool XX, bool YY);
|
2002-09-20 00:47:49 +00:00
|
|
|
|
2002-10-29 23:18:23 +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(MachineBasicBlock *MBB, short Opcode, unsigned numOps);
|
2005-04-21 20:39:54 +00:00
|
|
|
|
2004-02-16 07:17:43 +00:00
|
|
|
~MachineInstr();
|
|
|
|
|
2004-02-12 18:49:07 +00:00
|
|
|
const MachineBasicBlock* getParent() const { return parent; }
|
|
|
|
MachineBasicBlock* getParent() { return parent; }
|
|
|
|
|
2004-03-03 19:07:27 +00:00
|
|
|
/// getOpcode - Returns the opcode of this MachineInstr.
|
2004-02-12 01:34:03 +00:00
|
|
|
///
|
2004-02-12 16:09:53 +00:00
|
|
|
const int getOpcode() const { return Opcode; }
|
2003-05-31 07:43:01 +00:00
|
|
|
|
2004-02-12 01:34:03 +00:00
|
|
|
/// Access to explicit operands of the instruction.
|
|
|
|
///
|
2006-04-20 18:09:13 +00:00
|
|
|
unsigned getNumOperands() const { return operands.size(); }
|
2005-04-21 20:39:54 +00:00
|
|
|
|
2002-10-28 04:24:49 +00:00
|
|
|
const MachineOperand& getOperand(unsigned i) const {
|
2002-10-29 19:41:18 +00:00
|
|
|
assert(i < getNumOperands() && "getOperand() out of range!");
|
2002-10-28 04:24:49 +00:00
|
|
|
return operands[i];
|
|
|
|
}
|
|
|
|
MachineOperand& getOperand(unsigned i) {
|
2002-10-29 19:41:18 +00:00
|
|
|
assert(i < getNumOperands() && "getOperand() out of range!");
|
2002-10-28 04:24:49 +00:00
|
|
|
return operands[i];
|
|
|
|
}
|
2002-10-28 04:30:20 +00:00
|
|
|
|
2002-10-29 19:41:18 +00:00
|
|
|
|
2004-05-23 20:58:02 +00:00
|
|
|
/// clone - Create a copy of 'this' instruction that is identical in
|
|
|
|
/// all ways except the the instruction has no parent, prev, or next.
|
2004-05-24 03:14:18 +00:00
|
|
|
MachineInstr* clone() const;
|
2006-04-17 21:35:08 +00:00
|
|
|
|
|
|
|
/// removeFromParent - This method unlinks 'this' from the containing basic
|
|
|
|
/// block, and returns it, but does not delete it.
|
|
|
|
MachineInstr *removeFromParent();
|
|
|
|
|
|
|
|
/// eraseFromParent - This method unlinks 'this' from the containing basic
|
|
|
|
/// block and deletes it.
|
|
|
|
void eraseFromParent() {
|
|
|
|
delete removeFromParent();
|
|
|
|
}
|
2004-05-23 19:35:12 +00:00
|
|
|
|
2001-10-11 04:23:19 +00:00
|
|
|
//
|
|
|
|
// Debugging support
|
2002-10-30 00:46:48 +00:00
|
|
|
//
|
2004-06-25 00:13:11 +00:00
|
|
|
void print(std::ostream &OS, const TargetMachine *TM) const;
|
2002-10-28 04:24:49 +00:00
|
|
|
void dump() const;
|
|
|
|
friend std::ostream& operator<<(std::ostream& os, const MachineInstr& minstr);
|
2002-02-05 06:02:59 +00:00
|
|
|
|
2002-10-28 20:48:39 +00:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Accessors to add operands when building up machine instructions
|
|
|
|
//
|
|
|
|
|
|
|
|
/// addRegOperand - Add a symbolic virtual register reference...
|
|
|
|
///
|
2002-11-17 22:33:54 +00:00
|
|
|
void addRegOperand(int reg, bool isDef) {
|
2002-10-28 20:48:39 +00:00
|
|
|
assert(!OperandsComplete() &&
|
|
|
|
"Trying to add an operand to a machine instr that is already done!");
|
2004-02-22 19:23:26 +00:00
|
|
|
operands.push_back(
|
|
|
|
MachineOperand(reg, MachineOperand::MO_VirtualRegister,
|
|
|
|
isDef ? MachineOperand::Def : MachineOperand::Use));
|
2002-10-28 20:48:39 +00:00
|
|
|
}
|
|
|
|
|
2002-11-17 22:33:54 +00:00
|
|
|
/// addRegOperand - Add a symbolic virtual register reference...
|
|
|
|
///
|
2004-02-22 19:23:26 +00:00
|
|
|
void addRegOperand(int reg,
|
|
|
|
MachineOperand::UseType UTy = MachineOperand::Use) {
|
2002-11-17 22:33:54 +00:00
|
|
|
assert(!OperandsComplete() &&
|
|
|
|
"Trying to add an operand to a machine instr that is already done!");
|
2004-02-22 19:23:26 +00:00
|
|
|
operands.push_back(
|
|
|
|
MachineOperand(reg, MachineOperand::MO_VirtualRegister, UTy));
|
2002-11-17 22:33:54 +00:00
|
|
|
}
|
|
|
|
|
2002-10-28 20:48:39 +00:00
|
|
|
/// addZeroExtImmOperand - Add a zero extended constant argument to the
|
|
|
|
/// machine instruction.
|
|
|
|
///
|
2004-02-29 05:06:49 +00:00
|
|
|
void addZeroExtImmOperand(int intValue) {
|
2002-10-28 20:48:39 +00:00
|
|
|
assert(!OperandsComplete() &&
|
|
|
|
"Trying to add an operand to a machine instr that is already done!");
|
2004-02-22 19:23:26 +00:00
|
|
|
operands.push_back(
|
2006-05-04 17:21:20 +00:00
|
|
|
MachineOperand(intValue, MachineOperand::MO_Immediate));
|
2002-10-28 20:48:39 +00:00
|
|
|
}
|
|
|
|
|
2005-04-10 09:18:55 +00:00
|
|
|
/// addZeroExtImm64Operand - Add a zero extended 64-bit constant argument
|
|
|
|
/// to the machine instruction.
|
|
|
|
///
|
|
|
|
void addZeroExtImm64Operand(uint64_t intValue) {
|
|
|
|
assert(!OperandsComplete() &&
|
|
|
|
"Trying to add an operand to a machine instr that is already done!");
|
2006-05-04 17:21:20 +00:00
|
|
|
operands.push_back(MachineOperand(intValue, MachineOperand::MO_Immediate));
|
2002-10-28 20:48:39 +00:00
|
|
|
}
|
|
|
|
|
2002-12-15 08:01:02 +00:00
|
|
|
void addMachineBasicBlockOperand(MachineBasicBlock *MBB) {
|
|
|
|
assert(!OperandsComplete() &&
|
|
|
|
"Trying to add an operand to a machine instr that is already done!");
|
|
|
|
operands.push_back(MachineOperand(MBB));
|
|
|
|
}
|
2002-10-28 20:48:39 +00:00
|
|
|
|
2002-12-25 05:00:49 +00:00
|
|
|
/// addFrameIndexOperand - Add an abstract frame index to the instruction
|
|
|
|
///
|
|
|
|
void addFrameIndexOperand(unsigned Idx) {
|
|
|
|
assert(!OperandsComplete() &&
|
|
|
|
"Trying to add an operand to a machine instr that is already done!");
|
|
|
|
operands.push_back(MachineOperand(Idx, MachineOperand::MO_FrameIndex));
|
|
|
|
}
|
|
|
|
|
2003-01-13 00:18:17 +00:00
|
|
|
/// addConstantPoolndexOperand - Add a constant pool object index to the
|
|
|
|
/// instruction.
|
|
|
|
///
|
2006-02-25 09:54:52 +00:00
|
|
|
void addConstantPoolIndexOperand(unsigned I, int Offset=0) {
|
2003-01-13 00:18:17 +00:00
|
|
|
assert(!OperandsComplete() &&
|
|
|
|
"Trying to add an operand to a machine instr that is already done!");
|
|
|
|
operands.push_back(MachineOperand(I, MachineOperand::MO_ConstantPoolIndex));
|
|
|
|
}
|
|
|
|
|
2006-04-22 18:53:45 +00:00
|
|
|
/// addJumpTableIndexOperand - Add a jump table object index to the
|
|
|
|
/// instruction.
|
|
|
|
///
|
|
|
|
void addJumpTableIndexOperand(unsigned I) {
|
|
|
|
assert(!OperandsComplete() &&
|
|
|
|
"Trying to add an operand to a machine instr that is already done!");
|
|
|
|
operands.push_back(MachineOperand(I, MachineOperand::MO_JumpTableIndex));
|
|
|
|
}
|
|
|
|
|
2006-05-04 01:15:02 +00:00
|
|
|
void addGlobalAddressOperand(GlobalValue *GV, int Offset) {
|
2003-01-13 00:18:17 +00:00
|
|
|
assert(!OperandsComplete() &&
|
|
|
|
"Trying to add an operand to a machine instr that is already done!");
|
2006-05-04 01:26:39 +00:00
|
|
|
operands.push_back(MachineOperand(GV, Offset));
|
2003-01-13 00:18:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// addExternalSymbolOperand - Add an external symbol operand to this instr
|
|
|
|
///
|
2006-05-04 01:15:02 +00:00
|
|
|
void addExternalSymbolOperand(const char *SymName) {
|
|
|
|
operands.push_back(MachineOperand(SymName, 0));
|
2003-01-13 00:18:17 +00:00
|
|
|
}
|
2002-12-28 20:05:44 +00:00
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Accessors used to modify instructions in place.
|
|
|
|
//
|
|
|
|
|
2003-01-13 00:18:17 +00:00
|
|
|
/// setOpcode - Replace the opcode of the current instruction with a new one.
|
|
|
|
///
|
2004-02-12 16:09:53 +00:00
|
|
|
void setOpcode(unsigned Op) { Opcode = Op; }
|
2003-01-13 00:18:17 +00:00
|
|
|
|
|
|
|
/// RemoveOperand - Erase an operand from an instruction, leaving it with one
|
|
|
|
/// fewer operand than it started with.
|
|
|
|
///
|
|
|
|
void RemoveOperand(unsigned i) {
|
|
|
|
operands.erase(operands.begin()+i);
|
|
|
|
}
|
2001-10-11 04:23:19 +00:00
|
|
|
};
|
2001-07-21 12:39:03 +00:00
|
|
|
|
2003-06-03 15:42:53 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-10-10 20:50:20 +00:00
|
|
|
// Debugging Support
|
|
|
|
|
2003-06-03 15:42:53 +00:00
|
|
|
std::ostream& operator<<(std::ostream &OS, const MachineInstr &MI);
|
|
|
|
std::ostream& operator<<(std::ostream &OS, const MachineOperand &MO);
|
2001-08-28 23:11:46 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2001-07-21 12:39:03 +00:00
|
|
|
#endif
|