2002-09-10 17:36:11 +02:00
|
|
|
//===-- llvm/Instruction.h - Instruction class definition -------*- C++ -*-===//
|
2005-04-21 22:19:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:59:42 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:19:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
|
|
|
// This file contains the declaration of the Instruction class, which is the
|
2002-09-06 23:31:57 +02:00
|
|
|
// base class for all of the LLVM instructions.
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_INSTRUCTION_H
|
|
|
|
#define LLVM_INSTRUCTION_H
|
|
|
|
|
|
|
|
#include "llvm/User.h"
|
2003-06-30 23:59:07 +02:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
|
|
|
|
2004-06-08 19:44:21 +02:00
|
|
|
struct AssemblyAnnotationWriter;
|
2003-10-31 00:41:19 +01:00
|
|
|
|
2007-04-17 05:26:42 +02:00
|
|
|
template<typename ValueSubClass, typename ItemParentClass>
|
|
|
|
class SymbolTableListTraits;
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2004-06-27 20:57:34 +02:00
|
|
|
class Instruction : public User {
|
2005-12-17 01:19:22 +01:00
|
|
|
void operator=(const Instruction &); // Do not implement
|
|
|
|
Instruction(const Instruction &); // Do not implement
|
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
BasicBlock *Parent;
|
2002-06-25 18:12:52 +02:00
|
|
|
Instruction *Prev, *Next; // Next and Prev links for our intrusive linked list
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2002-06-25 18:12:52 +02:00
|
|
|
void setNext(Instruction *N) { Next = N; }
|
|
|
|
void setPrev(Instruction *N) { Prev = N; }
|
|
|
|
|
2007-04-17 05:26:42 +02:00
|
|
|
friend class SymbolTableListTraits<Instruction, BasicBlock>;
|
2002-09-06 23:31:57 +02:00
|
|
|
void setParent(BasicBlock *P);
|
2001-12-13 01:39:33 +01:00
|
|
|
protected:
|
2005-01-29 01:33:00 +01:00
|
|
|
Instruction(const Type *Ty, unsigned iType, Use *Ops, unsigned NumOps,
|
2007-02-24 01:55:48 +01:00
|
|
|
Instruction *InsertBefore = 0);
|
2005-01-29 01:33:00 +01:00
|
|
|
Instruction(const Type *Ty, unsigned iType, Use *Ops, unsigned NumOps,
|
2007-02-24 01:55:48 +01:00
|
|
|
BasicBlock *InsertAtEnd);
|
2001-06-06 22:29:01 +02:00
|
|
|
public:
|
2007-12-10 03:14:30 +01:00
|
|
|
// Out of line virtual method, so the vtable, etc has a home.
|
|
|
|
~Instruction();
|
|
|
|
|
2004-10-12 00:21:13 +02:00
|
|
|
/// mayWriteToMemory - Return true if this instruction may modify memory.
|
|
|
|
///
|
2007-02-16 00:15:00 +01:00
|
|
|
bool mayWriteToMemory() const;
|
2004-10-12 00:21:13 +02:00
|
|
|
|
2008-05-08 19:16:51 +02:00
|
|
|
/// mayReadFromMemory - Return true if this instruction may read memory.
|
|
|
|
///
|
|
|
|
bool mayReadFromMemory() const;
|
|
|
|
|
2002-08-26 00:54:55 +02:00
|
|
|
/// clone() - Create a copy of 'this' instruction that is identical in all
|
|
|
|
/// ways except the following:
|
|
|
|
/// * The instruction has no parent
|
|
|
|
/// * The instruction has no name
|
|
|
|
///
|
2001-06-06 22:29:01 +02:00
|
|
|
virtual Instruction *clone() const = 0;
|
2004-11-30 03:51:53 +01:00
|
|
|
|
|
|
|
/// isIdenticalTo - Return true if the specified instruction is exactly
|
|
|
|
/// identical to the current one. This means that all operands match and any
|
|
|
|
/// extra information (e.g. load is volatile) agree.
|
|
|
|
bool isIdenticalTo(Instruction *I) const;
|
|
|
|
|
2006-12-23 07:05:41 +01:00
|
|
|
/// This function determines if the specified instruction executes the same
|
|
|
|
/// operation as the current one. This means that the opcodes, type, operand
|
|
|
|
/// types and any other factors affecting the operation must be the same. This
|
|
|
|
/// is similar to isIdenticalTo except the operands themselves don't have to
|
|
|
|
/// be identical.
|
|
|
|
/// @returns true if the specified instruction is the same operation as
|
|
|
|
/// the current one.
|
|
|
|
/// @brief Determine if one instruction is the same operation as another.
|
|
|
|
bool isSameOperationAs(Instruction *I) const;
|
|
|
|
|
2008-04-21 00:11:30 +02:00
|
|
|
/// isUsedOutsideOfBlock - Return true if there are any uses of this
|
|
|
|
/// instruction in blocks other than the specified block. Note that PHI nodes
|
|
|
|
/// are considered to evaluate their operands in the corresponding predecessor
|
|
|
|
/// block.
|
|
|
|
bool isUsedOutsideOfBlock(const BasicBlock *BB) const;
|
|
|
|
|
|
|
|
|
2006-10-01 00:20:34 +02:00
|
|
|
/// use_back - Specialize the methods defined in Value, as we know that an
|
|
|
|
/// instruction can only be used by other instructions.
|
|
|
|
Instruction *use_back() { return cast<Instruction>(*use_begin());}
|
|
|
|
const Instruction *use_back() const { return cast<Instruction>(*use_begin());}
|
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
// Accessor methods...
|
|
|
|
//
|
|
|
|
inline const BasicBlock *getParent() const { return Parent; }
|
|
|
|
inline BasicBlock *getParent() { return Parent; }
|
2002-06-25 18:12:52 +02:00
|
|
|
|
2004-10-12 00:21:13 +02:00
|
|
|
/// removeFromParent - This method unlinks 'this' from the containing basic
|
|
|
|
/// block, but does not delete it.
|
2003-02-24 21:48:32 +01:00
|
|
|
///
|
2004-10-12 00:21:13 +02:00
|
|
|
void removeFromParent();
|
|
|
|
|
|
|
|
/// eraseFromParent - This method unlinks 'this' from the containing basic
|
|
|
|
/// block and deletes it.
|
|
|
|
///
|
|
|
|
void eraseFromParent();
|
2001-07-21 22:04:10 +02:00
|
|
|
|
2005-08-08 07:21:33 +02:00
|
|
|
/// moveBefore - Unlink this instruction from its current basic block and
|
|
|
|
/// insert it into the basic block that MovePos lives in, right before
|
|
|
|
/// MovePos.
|
|
|
|
void moveBefore(Instruction *MovePos);
|
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
2005-04-21 22:19:05 +02:00
|
|
|
/// Subclass classification... getOpcode() returns a member of
|
2002-08-26 00:54:55 +02:00
|
|
|
/// one of the enums that is coming soon (down below)...
|
|
|
|
///
|
2007-04-13 20:12:09 +02:00
|
|
|
unsigned getOpcode() const { return getValueID() - InstructionVal; }
|
2007-12-10 23:18:53 +01:00
|
|
|
const char *getOpcodeName() const { return getOpcodeName(getOpcode()); }
|
|
|
|
bool isTerminator() const { return isTerminator(getOpcode()); }
|
|
|
|
bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
|
|
|
|
bool isShift() { return isShift(getOpcode()); }
|
|
|
|
bool isCast() const { return isCast(getOpcode()); }
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-07-15 00:48:20 +02:00
|
|
|
static const char* getOpcodeName(unsigned OpCode);
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2004-06-07 19:53:43 +02:00
|
|
|
static inline bool isTerminator(unsigned OpCode) {
|
|
|
|
return OpCode >= TermOpsBegin && OpCode < TermOpsEnd;
|
|
|
|
}
|
|
|
|
|
2007-12-10 23:18:53 +01:00
|
|
|
static inline bool isBinaryOp(unsigned Opcode) {
|
|
|
|
return Opcode >= BinaryOpsBegin && Opcode < BinaryOpsEnd;
|
2001-06-06 22:29:01 +02:00
|
|
|
}
|
|
|
|
|
2007-02-02 03:16:23 +01:00
|
|
|
/// @brief Determine if the Opcode is one of the shift instructions.
|
|
|
|
static inline bool isShift(unsigned Opcode) {
|
|
|
|
return Opcode >= Shl && Opcode <= AShr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// isLogicalShift - Return true if this is a logical shift left or a logical
|
|
|
|
/// shift right.
|
2008-04-09 20:31:41 +02:00
|
|
|
inline bool isLogicalShift() const {
|
2007-02-02 03:16:23 +01:00
|
|
|
return getOpcode() == Shl || getOpcode() == LShr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// isLogicalShift - Return true if this is a logical shift left or a logical
|
|
|
|
/// shift right.
|
2008-04-09 20:31:41 +02:00
|
|
|
inline bool isArithmeticShift() const {
|
2007-02-02 03:16:23 +01:00
|
|
|
return getOpcode() == AShr;
|
|
|
|
}
|
|
|
|
|
2006-11-27 02:05:10 +01:00
|
|
|
/// @brief Determine if the OpCode is one of the CastInst instructions.
|
|
|
|
static inline bool isCast(unsigned OpCode) {
|
|
|
|
return OpCode >= CastOpsBegin && OpCode < CastOpsEnd;
|
|
|
|
}
|
|
|
|
|
2002-10-31 05:14:01 +01:00
|
|
|
/// isAssociative - Return true if the instruction is associative:
|
|
|
|
///
|
2003-07-28 18:53:28 +02:00
|
|
|
/// Associative operators satisfy: x op (y op z) === (x op y) op z
|
2002-10-31 05:14:01 +01:00
|
|
|
///
|
|
|
|
/// In LLVM, the Add, Mul, And, Or, and Xor operators are associative, when
|
|
|
|
/// not applied to floating point types.
|
|
|
|
///
|
|
|
|
bool isAssociative() const { return isAssociative(getOpcode(), getType()); }
|
|
|
|
static bool isAssociative(unsigned op, const Type *Ty);
|
|
|
|
|
|
|
|
/// isCommutative - Return true if the instruction is commutative:
|
|
|
|
///
|
2003-07-28 18:53:28 +02:00
|
|
|
/// Commutative operators satisfy: (x op y) === (y op x)
|
2002-10-31 05:14:01 +01:00
|
|
|
///
|
|
|
|
/// In LLVM, these are the associative operators, plus SetEQ and SetNE, when
|
|
|
|
/// applied to any type.
|
|
|
|
///
|
|
|
|
bool isCommutative() const { return isCommutative(getOpcode()); }
|
|
|
|
static bool isCommutative(unsigned op);
|
|
|
|
|
2003-07-31 06:05:50 +02:00
|
|
|
/// isTrappingInstruction - Return true if the instruction may trap.
|
|
|
|
///
|
2003-07-31 07:08:02 +02:00
|
|
|
bool isTrapping() const {
|
2005-04-21 22:19:05 +02:00
|
|
|
return isTrapping(getOpcode());
|
2003-07-31 06:05:50 +02:00
|
|
|
}
|
2003-07-31 07:08:02 +02:00
|
|
|
static bool isTrapping(unsigned op);
|
2005-04-21 22:19:05 +02:00
|
|
|
|
2003-10-31 00:41:19 +01:00
|
|
|
virtual void print(std::ostream &OS) const { print(OS, 0); }
|
2006-12-17 06:15:13 +01:00
|
|
|
void print(std::ostream *OS) const { if (OS) print(*OS); }
|
2003-10-31 00:41:19 +01:00
|
|
|
void print(std::ostream &OS, AssemblyAnnotationWriter *AAW) const;
|
2002-04-08 23:56:02 +02:00
|
|
|
|
2002-08-26 00:54:55 +02:00
|
|
|
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
2005-10-25 19:59:28 +02:00
|
|
|
static inline bool classof(const Instruction *) { return true; }
|
2001-10-02 05:41:24 +02:00
|
|
|
static inline bool classof(const Value *V) {
|
2007-04-13 20:12:09 +02:00
|
|
|
return V->getValueID() >= Value::InstructionVal;
|
2001-10-01 15:58:13 +02:00
|
|
|
}
|
2005-04-21 22:19:05 +02:00
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Exported enumerations...
|
|
|
|
//
|
|
|
|
enum TermOps { // These terminate basic blocks
|
2002-10-13 21:39:16 +02:00
|
|
|
#define FIRST_TERM_INST(N) TermOpsBegin = N,
|
2001-10-14 19:24:50 +02:00
|
|
|
#define HANDLE_TERM_INST(N, OPC, CLASS) OPC = N,
|
2005-03-07 21:35:45 +01:00
|
|
|
#define LAST_TERM_INST(N) TermOpsEnd = N+1
|
2001-10-14 19:24:50 +02:00
|
|
|
#include "llvm/Instruction.def"
|
2001-06-06 22:29:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enum BinaryOps {
|
2002-10-13 21:39:16 +02:00
|
|
|
#define FIRST_BINARY_INST(N) BinaryOpsBegin = N,
|
2001-10-14 19:24:50 +02:00
|
|
|
#define HANDLE_BINARY_INST(N, OPC, CLASS) OPC = N,
|
2005-03-07 21:35:45 +01:00
|
|
|
#define LAST_BINARY_INST(N) BinaryOpsEnd = N+1
|
2001-10-14 19:24:50 +02:00
|
|
|
#include "llvm/Instruction.def"
|
2001-06-06 22:29:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enum MemoryOps {
|
2002-10-13 21:39:16 +02:00
|
|
|
#define FIRST_MEMORY_INST(N) MemoryOpsBegin = N,
|
2001-10-14 19:24:50 +02:00
|
|
|
#define HANDLE_MEMORY_INST(N, OPC, CLASS) OPC = N,
|
2005-03-07 21:35:45 +01:00
|
|
|
#define LAST_MEMORY_INST(N) MemoryOpsEnd = N+1
|
2001-10-14 19:24:50 +02:00
|
|
|
#include "llvm/Instruction.def"
|
2001-06-06 22:29:01 +02:00
|
|
|
};
|
|
|
|
|
2006-11-27 02:05:10 +01:00
|
|
|
enum CastOps {
|
|
|
|
#define FIRST_CAST_INST(N) CastOpsBegin = N,
|
|
|
|
#define HANDLE_CAST_INST(N, OPC, CLASS) OPC = N,
|
|
|
|
#define LAST_CAST_INST(N) CastOpsEnd = N+1
|
|
|
|
#include "llvm/Instruction.def"
|
|
|
|
};
|
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
enum OtherOps {
|
2002-10-13 21:39:16 +02:00
|
|
|
#define FIRST_OTHER_INST(N) OtherOpsBegin = N,
|
2001-10-14 19:24:50 +02:00
|
|
|
#define HANDLE_OTHER_INST(N, OPC, CLASS) OPC = N,
|
2005-03-07 21:35:45 +01:00
|
|
|
#define LAST_OTHER_INST(N) OtherOpsEnd = N+1
|
2001-10-14 19:24:50 +02:00
|
|
|
#include "llvm/Instruction.def"
|
2001-06-06 22:29:01 +02:00
|
|
|
};
|
2007-04-17 20:03:55 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
// getNext/Prev - Return the next or previous instruction in the list. The
|
|
|
|
// last node in the list is a terminator instruction.
|
|
|
|
Instruction *getNext() { return Next; }
|
|
|
|
const Instruction *getNext() const { return Next; }
|
|
|
|
Instruction *getPrev() { return Prev; }
|
|
|
|
const Instruction *getPrev() const { return Prev; }
|
2001-06-06 22:29:01 +02:00
|
|
|
};
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
#endif
|