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"
|
2006-11-28 22:21:29 +00:00
|
|
|
#include "llvm/Support/Streams.h"
|
2004-02-10 21:21:17 +00:00
|
|
|
#include <vector>
|
2004-02-29 05:15:56 +00:00
|
|
|
#include <cassert>
|
2006-11-18 21:47:36 +00:00
|
|
|
#include <iosfwd>
|
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;
|
2006-11-13 23:34:06 +00:00
|
|
|
class TargetInstrDescriptor;
|
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
|
|
|
|
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 {
|
2001-07-21 12:39:03 +00:00
|
|
|
enum MachineOperandType {
|
2006-05-04 18:05:43 +00:00
|
|
|
MO_Register, // Register operand.
|
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 19:36:09 +00:00
|
|
|
GlobalValue *GV; // For MO_GlobalAddress.
|
|
|
|
MachineBasicBlock *MBB; // For MO_MachineBasicBlock.
|
|
|
|
const char *SymbolName; // For MO_ExternalSymbol.
|
|
|
|
unsigned RegNo; // For MO_Register.
|
|
|
|
int64_t immedVal; // For MO_Immediate and MO_*Index.
|
2004-03-03 19:07:27 +00:00
|
|
|
} contents;
|
2001-08-07 20:14:30 +00:00
|
|
|
|
2006-09-05 02:31:13 +00:00
|
|
|
MachineOperandType opType:8; // Discriminate the union.
|
|
|
|
bool IsDef : 1; // True if this is a def, false if this is a use.
|
2006-11-10 08:32:14 +00:00
|
|
|
bool IsImp : 1; // True if this is an implicit def or use.
|
2006-11-13 23:34:06 +00:00
|
|
|
|
|
|
|
bool IsKill : 1; // True if this is a reg use and the reg is dead
|
|
|
|
// immediately after the read.
|
|
|
|
bool IsDead : 1; // True if this is a reg def and the reg is dead
|
|
|
|
// immediately after the write. i.e. A register
|
|
|
|
// that is defined but never used.
|
2006-05-04 18:25:20 +00:00
|
|
|
|
2007-05-01 05:57:02 +00:00
|
|
|
/// auxInfo - auxiliary information used by the MachineOperand
|
|
|
|
union {
|
|
|
|
/// offset - Offset to address of global or external, only valid for
|
|
|
|
/// MO_GlobalAddress, MO_ExternalSym and MO_ConstantPoolIndex
|
|
|
|
int offset;
|
|
|
|
} auxInfo;
|
|
|
|
|
2006-05-04 19:14:44 +00:00
|
|
|
MachineOperand() {}
|
2006-12-16 02:15:42 +00:00
|
|
|
|
|
|
|
void print(std::ostream &os) const;
|
2006-12-17 05:15:13 +00:00
|
|
|
void print(std::ostream *os) const { if (os) print(*os); }
|
2006-12-16 02:15:42 +00:00
|
|
|
|
2001-07-28 04:06:37 +00:00
|
|
|
public:
|
2006-05-04 18:25:20 +00:00
|
|
|
MachineOperand(const MachineOperand &M) {
|
|
|
|
*this = M;
|
2003-01-13 00:18:17 +00:00
|
|
|
}
|
2006-10-20 18:00:03 +00:00
|
|
|
|
2004-11-19 20:46:15 +00:00
|
|
|
~MachineOperand() {}
|
2006-10-20 18:00:03 +00:00
|
|
|
|
|
|
|
static MachineOperand CreateImm(int64_t Val) {
|
|
|
|
MachineOperand Op;
|
|
|
|
Op.opType = MachineOperand::MO_Immediate;
|
|
|
|
Op.contents.immedVal = Val;
|
|
|
|
Op.IsDef = false;
|
2006-11-10 08:32:14 +00:00
|
|
|
Op.IsImp = false;
|
2006-11-13 23:34:06 +00:00
|
|
|
Op.IsKill = false;
|
|
|
|
Op.IsDead = false;
|
2007-05-01 05:57:02 +00:00
|
|
|
Op.auxInfo.offset = 0;
|
2006-10-20 18:00:03 +00:00
|
|
|
return Op;
|
|
|
|
}
|
|
|
|
|
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;
|
2006-09-05 02:31:13 +00:00
|
|
|
IsDef = MO.IsDef;
|
2006-11-10 08:32:14 +00:00
|
|
|
IsImp = MO.IsImp;
|
2006-11-13 23:34:06 +00:00
|
|
|
IsKill = MO.IsKill;
|
|
|
|
IsDead = MO.IsDead;
|
2003-01-13 00:18:17 +00:00
|
|
|
opType = MO.opType;
|
2007-05-01 05:57:02 +00:00
|
|
|
auxInfo = MO.auxInfo;
|
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-03-03 19:07:27 +00:00
|
|
|
/// Accessors that tell you what kind of MachineOperand you're looking at.
|
|
|
|
///
|
2006-09-04 23:05:29 +00:00
|
|
|
bool isReg() const { return opType == MO_Register; }
|
|
|
|
bool isImm() const { return opType == MO_Immediate; }
|
|
|
|
bool isMBB() const { return opType == MO_MachineBasicBlock; }
|
|
|
|
|
2006-05-04 18:05:43 +00:00
|
|
|
bool isRegister() const { return opType == MO_Register; }
|
2006-05-04 17:21:20 +00:00
|
|
|
bool isImmediate() const { return opType == MO_Immediate; }
|
2006-05-04 17:56:20 +00:00
|
|
|
bool isMachineBasicBlock() const { return opType == MO_MachineBasicBlock; }
|
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
|
|
|
|
2006-09-04 23:35:22 +00:00
|
|
|
int64_t getImm() const {
|
|
|
|
assert(isImm() && "Wrong MachineOperand accessor");
|
|
|
|
return contents.immedVal;
|
|
|
|
}
|
|
|
|
|
2005-04-10 09:18:55 +00:00
|
|
|
int64_t getImmedValue() const {
|
2006-09-04 23:35:22 +00:00
|
|
|
assert(isImm() && "Wrong MachineOperand accessor");
|
2004-03-03 19:07:27 +00:00
|
|
|
return contents.immedVal;
|
|
|
|
}
|
2006-10-20 22:39:36 +00:00
|
|
|
MachineBasicBlock *getMBB() const {
|
|
|
|
assert(isMachineBasicBlock() && "Wrong MachineOperand accessor");
|
|
|
|
return contents.MBB;
|
|
|
|
}
|
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");
|
2007-05-01 05:57:02 +00:00
|
|
|
return auxInfo.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
|
|
|
|
2006-09-05 20:20:04 +00:00
|
|
|
bool isUse() const {
|
|
|
|
assert(isRegister() && "Wrong MachineOperand accessor");
|
|
|
|
return !IsDef;
|
|
|
|
}
|
|
|
|
bool isDef() const {
|
|
|
|
assert(isRegister() && "Wrong MachineOperand accessor");
|
|
|
|
return IsDef;
|
|
|
|
}
|
|
|
|
void setIsUse() {
|
|
|
|
assert(isRegister() && "Wrong MachineOperand accessor");
|
|
|
|
IsDef = false;
|
|
|
|
}
|
|
|
|
void setIsDef() {
|
|
|
|
assert(isRegister() && "Wrong MachineOperand accessor");
|
|
|
|
IsDef = true;
|
|
|
|
}
|
2002-09-16 15:58:54 +00:00
|
|
|
|
2006-11-10 08:32:14 +00:00
|
|
|
bool isImplicit() const {
|
|
|
|
assert(isRegister() && "Wrong MachineOperand accessor");
|
|
|
|
return IsImp;
|
|
|
|
}
|
2006-11-10 14:44:12 +00:00
|
|
|
void setImplicit() {
|
2006-11-10 08:32:14 +00:00
|
|
|
assert(isRegister() && "Wrong MachineOperand accessor");
|
|
|
|
IsImp = true;
|
|
|
|
}
|
|
|
|
|
2006-11-13 23:34:06 +00:00
|
|
|
bool isKill() const {
|
|
|
|
assert(isRegister() && "Wrong MachineOperand accessor");
|
|
|
|
return IsKill;
|
|
|
|
}
|
|
|
|
bool isDead() const {
|
|
|
|
assert(isRegister() && "Wrong MachineOperand accessor");
|
|
|
|
return IsDead;
|
|
|
|
}
|
|
|
|
void setIsKill() {
|
2006-11-15 20:48:17 +00:00
|
|
|
assert(isRegister() && !IsDef && "Wrong MachineOperand accessor");
|
2006-11-13 23:34:06 +00:00
|
|
|
IsKill = true;
|
|
|
|
}
|
|
|
|
void setIsDead() {
|
2006-11-15 20:48:17 +00:00
|
|
|
assert(isRegister() && IsDef && "Wrong MachineOperand accessor");
|
2006-11-13 23:34:06 +00:00
|
|
|
IsDead = true;
|
|
|
|
}
|
|
|
|
void unsetIsKill() {
|
2006-11-15 20:48:17 +00:00
|
|
|
assert(isRegister() && !IsDef && "Wrong MachineOperand accessor");
|
2006-11-13 23:34:06 +00:00
|
|
|
IsKill = false;
|
|
|
|
}
|
|
|
|
void unsetIsDead() {
|
2006-11-15 20:48:17 +00:00
|
|
|
assert(isRegister() && IsDef && "Wrong MachineOperand accessor");
|
2006-11-13 23:34:06 +00:00
|
|
|
IsDead = false;
|
|
|
|
}
|
|
|
|
|
2006-05-04 17:56:20 +00:00
|
|
|
/// getReg - Returns the register number.
|
2004-03-03 19:07:27 +00:00
|
|
|
///
|
2004-02-13 21:01:20 +00:00
|
|
|
unsigned getReg() const {
|
2006-05-04 17:56:20 +00:00
|
|
|
assert(isRegister() && "This is not a register operand!");
|
2006-05-04 18:25:20 +00:00
|
|
|
return contents.RegNo;
|
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) {
|
2006-05-04 17:56:20 +00:00
|
|
|
assert(isRegister() && "This is not a register operand!");
|
2006-05-04 18:25:20 +00:00
|
|
|
contents.RegNo = 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) {
|
2006-09-04 23:35:22 +00:00
|
|
|
assert(isImm() && "Wrong MachineOperand mutator");
|
|
|
|
contents.immedVal = immVal;
|
|
|
|
}
|
|
|
|
void setImm(int64_t immVal) {
|
|
|
|
assert(isImm() && "Wrong MachineOperand mutator");
|
2004-03-03 19:07:27 +00:00
|
|
|
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");
|
2007-05-01 05:57:02 +00:00
|
|
|
auxInfo.offset = Offset;
|
|
|
|
}
|
2006-10-06 01:16:29 +00:00
|
|
|
void setConstantPoolIndex(unsigned Idx) {
|
|
|
|
assert(isConstantPoolIndex() && "Wrong MachineOperand accessor");
|
|
|
|
contents.immedVal = Idx;
|
|
|
|
}
|
2006-10-28 18:18:36 +00:00
|
|
|
void setJumpTableIndex(unsigned Idx) {
|
|
|
|
assert(isJumpTableIndex() && "Wrong MachineOperand accessor");
|
|
|
|
contents.immedVal = Idx;
|
|
|
|
}
|
2006-10-06 01:16:29 +00:00
|
|
|
|
2006-10-20 22:39:36 +00:00
|
|
|
/// isIdenticalTo - Return true if this operand is identical to the specified
|
2006-11-15 20:48:17 +00:00
|
|
|
/// operand. Note: This method ignores isKill and isDead properties.
|
2006-10-20 22:39:36 +00:00
|
|
|
bool isIdenticalTo(const MachineOperand &Other) const;
|
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.
|
2007-02-27 21:06:57 +00:00
|
|
|
void ChangeToRegister(unsigned Reg, bool isDef, bool isImp = false,
|
|
|
|
bool isKill = false, bool isDead = false) {
|
2006-05-04 18:05:43 +00:00
|
|
|
opType = MO_Register;
|
2006-05-04 18:25:20 +00:00
|
|
|
contents.RegNo = Reg;
|
2006-09-05 02:31:13 +00:00
|
|
|
IsDef = isDef;
|
2007-02-27 21:06:57 +00:00
|
|
|
IsImp = isImp;
|
|
|
|
IsKill = isKill;
|
|
|
|
IsDead = isDead;
|
2006-05-04 17:52:23 +00:00
|
|
|
}
|
2004-10-15 04:38:41 +00:00
|
|
|
|
2006-12-16 02:15:42 +00:00
|
|
|
friend std::ostream& operator<<(std::ostream& os, const MachineOperand& mop) {
|
|
|
|
mop.print(os);
|
|
|
|
return os;
|
|
|
|
}
|
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
|
|
|
//===----------------------------------------------------------------------===//
|
2006-05-04 18:16:01 +00:00
|
|
|
/// MachineInstr - Representation of each machine instruction.
|
|
|
|
///
|
2003-06-02 22:07:37 +00:00
|
|
|
class MachineInstr {
|
2006-11-30 07:08:44 +00:00
|
|
|
const TargetInstrDescriptor *TID; // Instruction descriptor.
|
2006-11-27 23:37:22 +00:00
|
|
|
unsigned short NumImplicitOps; // Number of implicit operands (which
|
2006-11-15 20:48:17 +00:00
|
|
|
// are determined at construction time).
|
|
|
|
|
2006-05-04 19:14:44 +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
|
|
|
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:
|
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();
|
2002-09-20 00:47:49 +00:00
|
|
|
|
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.
|
2007-06-18 14:11:31 +00:00
|
|
|
explicit MachineInstr(const TargetInstrDescriptor &TID);
|
2006-11-13 23:34:06 +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.
|
|
|
|
///
|
2006-11-27 23:37:22 +00:00
|
|
|
MachineInstr(MachineBasicBlock *MBB, const TargetInstrDescriptor &TID);
|
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; }
|
2006-11-30 07:08:44 +00:00
|
|
|
|
|
|
|
/// getInstrDescriptor - Returns the target instruction descriptor of this
|
|
|
|
/// MachineInstr.
|
|
|
|
const TargetInstrDescriptor *getInstrDescriptor() const { return TID; }
|
2004-02-12 18:49:07 +00:00
|
|
|
|
2004-03-03 19:07:27 +00:00
|
|
|
/// getOpcode - Returns the opcode of this MachineInstr.
|
2004-02-12 01:34:03 +00:00
|
|
|
///
|
2006-11-30 07:08:44 +00:00
|
|
|
const int getOpcode() const;
|
2003-05-31 07:43:01 +00:00
|
|
|
|
2004-02-12 01:34:03 +00:00
|
|
|
/// Access to explicit operands of the instruction.
|
|
|
|
///
|
2006-05-04 19:14:44 +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!");
|
2006-05-04 19:14:44 +00:00
|
|
|
return Operands[i];
|
2002-10-28 04:24:49 +00:00
|
|
|
}
|
|
|
|
MachineOperand& getOperand(unsigned i) {
|
2002-10-29 19:41:18 +00:00
|
|
|
assert(i < getNumOperands() && "getOperand() out of range!");
|
2006-05-04 19:14:44 +00:00
|
|
|
return Operands[i];
|
2002-10-28 04:24:49 +00:00
|
|
|
}
|
2002-10-28 04:30:20 +00:00
|
|
|
|
2007-05-15 01:26:09 +00:00
|
|
|
/// getNumExplicitOperands - Returns the number of non-implicit operands.
|
|
|
|
///
|
|
|
|
unsigned getNumExplicitOperands() const;
|
2006-10-20 22:39:36 +00:00
|
|
|
|
|
|
|
/// isIdenticalTo - Return true if this instruction is identical to (same
|
|
|
|
/// opcode and same operands as) the specified instruction.
|
|
|
|
bool isIdenticalTo(const MachineInstr *Other) const {
|
|
|
|
if (Other->getOpcode() != getOpcode() ||
|
2006-10-20 22:44:45 +00:00
|
|
|
Other->getNumOperands() != getNumOperands())
|
2006-10-20 22:39:36 +00:00
|
|
|
return false;
|
|
|
|
for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
|
|
|
|
if (!getOperand(i).isIdenticalTo(Other->getOperand(i)))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
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.
|
2006-05-04 19:14:44 +00:00
|
|
|
MachineInstr* clone() const { return new MachineInstr(*this); }
|
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
|
|
|
|
2007-04-26 19:00:32 +00:00
|
|
|
/// findRegisterUseOperandIdx() - Returns the operand index 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 findRegisterUseOperandIdx(unsigned Reg, bool isKill = false) const;
|
2006-12-06 08:27:42 +00:00
|
|
|
|
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 *findRegisterDefOperand(unsigned Reg);
|
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 findFirstPredOperandIdx() const;
|
2007-02-19 21:49:54 +00:00
|
|
|
|
2006-11-15 20:48:17 +00:00
|
|
|
/// copyKillDeadInfo - Copies kill / dead operand properties from MI.
|
|
|
|
///
|
2006-12-06 08:27:42 +00:00
|
|
|
void copyKillDeadInfo(const MachineInstr *MI);
|
2006-11-15 20:48:17 +00:00
|
|
|
|
2007-05-15 01:26:09 +00:00
|
|
|
/// copyPredicates - Copies predicate operand(s) from MI.
|
|
|
|
void copyPredicates(const MachineInstr *MI);
|
|
|
|
|
2001-10-11 04:23:19 +00:00
|
|
|
//
|
|
|
|
// Debugging support
|
2002-10-30 00:46:48 +00:00
|
|
|
//
|
2006-12-17 05:15:13 +00:00
|
|
|
void print(std::ostream *OS, const TargetMachine *TM) const {
|
|
|
|
if (OS) print(*OS, TM);
|
2006-11-28 22:21:29 +00:00
|
|
|
}
|
2004-06-25 00:13:11 +00:00
|
|
|
void print(std::ostream &OS, const TargetMachine *TM) const;
|
2006-12-16 02:15:42 +00:00
|
|
|
void print(std::ostream &OS) const;
|
2006-12-17 05:15:13 +00:00
|
|
|
void print(std::ostream *OS) const { if (OS) print(*OS); }
|
2002-10-28 04:24:49 +00:00
|
|
|
void dump() const;
|
2006-12-16 02:15:42 +00:00
|
|
|
friend std::ostream& operator<<(std::ostream& os, const MachineInstr& minstr){
|
|
|
|
minstr.print(os);
|
|
|
|
return os;
|
|
|
|
}
|
2002-02-05 06:02:59 +00:00
|
|
|
|
2002-10-28 20:48:39 +00:00
|
|
|
//===--------------------------------------------------------------------===//
|
2006-05-04 19:14:44 +00:00
|
|
|
// Accessors to add operands when building up machine instructions.
|
2002-10-28 20:48:39 +00:00
|
|
|
//
|
|
|
|
|
2006-05-04 19:14:44 +00:00
|
|
|
/// addRegOperand - Add a register operand.
|
2002-11-17 22:33:54 +00:00
|
|
|
///
|
2006-11-13 23:34:06 +00:00
|
|
|
void addRegOperand(unsigned Reg, bool IsDef, bool IsImp = false,
|
|
|
|
bool IsKill = false, bool IsDead = false) {
|
2006-11-10 08:32:14 +00:00
|
|
|
MachineOperand &Op = AddNewOperand(IsImp);
|
2006-05-04 19:14:44 +00:00
|
|
|
Op.opType = MachineOperand::MO_Register;
|
2006-09-05 02:31:13 +00:00
|
|
|
Op.IsDef = IsDef;
|
2006-11-10 08:32:14 +00:00
|
|
|
Op.IsImp = IsImp;
|
2006-11-13 23:34:06 +00:00
|
|
|
Op.IsKill = IsKill;
|
|
|
|
Op.IsDead = IsDead;
|
2006-05-04 19:14:44 +00:00
|
|
|
Op.contents.RegNo = Reg;
|
2002-11-17 22:33:54 +00:00
|
|
|
}
|
|
|
|
|
2006-05-04 18:05:43 +00:00
|
|
|
/// addImmOperand - Add a zero extended constant argument to the
|
2002-10-28 20:48:39 +00:00
|
|
|
/// machine instruction.
|
|
|
|
///
|
2006-05-04 18:05:43 +00:00
|
|
|
void addImmOperand(int64_t Val) {
|
2006-05-04 19:14:44 +00:00
|
|
|
MachineOperand &Op = AddNewOperand();
|
|
|
|
Op.opType = MachineOperand::MO_Immediate;
|
|
|
|
Op.contents.immedVal = Val;
|
2007-05-01 05:57:02 +00:00
|
|
|
Op.auxInfo.offset = 0;
|
2002-10-28 20:48:39 +00:00
|
|
|
}
|
|
|
|
|
2002-12-15 08:01:02 +00:00
|
|
|
void addMachineBasicBlockOperand(MachineBasicBlock *MBB) {
|
2006-05-04 19:14:44 +00:00
|
|
|
MachineOperand &Op = AddNewOperand();
|
|
|
|
Op.opType = MachineOperand::MO_MachineBasicBlock;
|
|
|
|
Op.contents.MBB = MBB;
|
2007-05-01 05:57:02 +00:00
|
|
|
Op.auxInfo.offset = 0;
|
2002-12-15 08:01:02 +00:00
|
|
|
}
|
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) {
|
2006-05-04 19:14:44 +00:00
|
|
|
MachineOperand &Op = AddNewOperand();
|
|
|
|
Op.opType = MachineOperand::MO_FrameIndex;
|
|
|
|
Op.contents.immedVal = Idx;
|
2007-05-01 05:57:02 +00:00
|
|
|
Op.auxInfo.offset = 0;
|
2002-12-25 05:00:49 +00:00
|
|
|
}
|
|
|
|
|
2003-01-13 00:18:17 +00:00
|
|
|
/// addConstantPoolndexOperand - Add a constant pool object index to the
|
|
|
|
/// instruction.
|
|
|
|
///
|
2006-05-04 19:14:44 +00:00
|
|
|
void addConstantPoolIndexOperand(unsigned Idx, int Offset) {
|
|
|
|
MachineOperand &Op = AddNewOperand();
|
|
|
|
Op.opType = MachineOperand::MO_ConstantPoolIndex;
|
|
|
|
Op.contents.immedVal = Idx;
|
2007-05-01 05:57:02 +00:00
|
|
|
Op.auxInfo.offset = Offset;
|
2003-01-13 00:18:17 +00:00
|
|
|
}
|
|
|
|
|
2006-04-22 18:53:45 +00:00
|
|
|
/// addJumpTableIndexOperand - Add a jump table object index to the
|
|
|
|
/// instruction.
|
|
|
|
///
|
2006-05-04 19:14:44 +00:00
|
|
|
void addJumpTableIndexOperand(unsigned Idx) {
|
|
|
|
MachineOperand &Op = AddNewOperand();
|
|
|
|
Op.opType = MachineOperand::MO_JumpTableIndex;
|
|
|
|
Op.contents.immedVal = Idx;
|
2007-05-01 05:57:02 +00:00
|
|
|
Op.auxInfo.offset = 0;
|
2006-04-22 18:53:45 +00:00
|
|
|
}
|
|
|
|
|
2006-05-04 01:15:02 +00:00
|
|
|
void addGlobalAddressOperand(GlobalValue *GV, int Offset) {
|
2006-05-04 19:14:44 +00:00
|
|
|
MachineOperand &Op = AddNewOperand();
|
|
|
|
Op.opType = MachineOperand::MO_GlobalAddress;
|
|
|
|
Op.contents.GV = GV;
|
2007-05-01 05:57:02 +00:00
|
|
|
Op.auxInfo.offset = 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) {
|
2006-05-04 19:14:44 +00:00
|
|
|
MachineOperand &Op = AddNewOperand();
|
|
|
|
Op.opType = MachineOperand::MO_ExternalSymbol;
|
|
|
|
Op.contents.SymbolName = SymName;
|
2007-05-01 05:57:02 +00:00
|
|
|
Op.auxInfo.offset = 0;
|
2003-01-13 00:18:17 +00:00
|
|
|
}
|
2002-12-28 20:05:44 +00:00
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Accessors used to modify instructions in place.
|
|
|
|
//
|
|
|
|
|
2006-11-30 07:08:44 +00:00
|
|
|
/// setInstrDescriptor - Replace the instruction descriptor (thus opcode) of
|
|
|
|
/// the current instruction with a new one.
|
2003-01-13 00:18:17 +00:00
|
|
|
///
|
2006-11-30 07:08:44 +00:00
|
|
|
void setInstrDescriptor(const TargetInstrDescriptor &tid) { TID = &tid; }
|
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) {
|
2006-05-04 19:14:44 +00:00
|
|
|
Operands.erase(Operands.begin()+i);
|
|
|
|
}
|
|
|
|
private:
|
2006-11-10 08:32:14 +00:00
|
|
|
MachineOperand &AddNewOperand(bool IsImp = false) {
|
|
|
|
assert((IsImp || !OperandsComplete()) &&
|
2006-05-04 19:14:44 +00:00
|
|
|
"Trying to add an operand to a machine instr that is already done!");
|
2007-04-25 07:24:13 +00:00
|
|
|
if (IsImp || NumImplicitOps == 0) { // This is true most of the time.
|
2006-11-13 23:34:06 +00:00
|
|
|
Operands.push_back(MachineOperand());
|
|
|
|
return Operands.back();
|
|
|
|
}
|
2007-04-25 07:24:13 +00:00
|
|
|
return *Operands.insert(Operands.begin()+Operands.size()-NumImplicitOps,
|
|
|
|
MachineOperand());
|
2003-01-13 00:18:17 +00:00
|
|
|
}
|
2006-11-13 23:34:06 +00:00
|
|
|
|
|
|
|
/// addImplicitDefUseOperands - Add all implicit def and use operands to
|
|
|
|
/// this instruction.
|
2006-11-30 07:08:44 +00:00
|
|
|
void addImplicitDefUseOperands();
|
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
|