2002-09-10 15:36:11 +00:00
|
|
|
//===-- llvm/Instruction.h - Instruction class definition -------*- C++ -*-===//
|
2005-04-21 20:19:05 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 20:19:05 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
// This file contains the declaration of the Instruction class, which is the
|
2002-09-06 21:31:57 +00:00
|
|
|
// base class for all of the LLVM instructions.
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_INSTRUCTION_H
|
|
|
|
#define LLVM_INSTRUCTION_H
|
|
|
|
|
|
|
|
#include "llvm/User.h"
|
2008-07-28 21:51:04 +00:00
|
|
|
#include "llvm/ADT/ilist_node.h"
|
2003-06-30 21:59:07 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2009-07-09 23:48:35 +00:00
|
|
|
class LLVMContext;
|
|
|
|
|
2007-04-17 03:26:42 +00:00
|
|
|
template<typename ValueSubClass, typename ItemParentClass>
|
|
|
|
class SymbolTableListTraits;
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2008-07-28 21:51:04 +00:00
|
|
|
class Instruction : public User, public ilist_node<Instruction> {
|
2005-12-17 00:19:22 +00:00
|
|
|
void operator=(const Instruction &); // Do not implement
|
|
|
|
Instruction(const Instruction &); // Do not implement
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
BasicBlock *Parent;
|
2002-06-25 16:12:52 +00:00
|
|
|
|
2007-04-17 03:26:42 +00:00
|
|
|
friend class SymbolTableListTraits<Instruction, BasicBlock>;
|
2002-09-06 21:31:57 +00:00
|
|
|
void setParent(BasicBlock *P);
|
2001-12-13 00:39:33 +00:00
|
|
|
protected:
|
2005-01-29 00:33:00 +00:00
|
|
|
Instruction(const Type *Ty, unsigned iType, Use *Ops, unsigned NumOps,
|
2007-02-24 00:55:48 +00:00
|
|
|
Instruction *InsertBefore = 0);
|
2005-01-29 00:33:00 +00:00
|
|
|
Instruction(const Type *Ty, unsigned iType, Use *Ops, unsigned NumOps,
|
2007-02-24 00:55:48 +00:00
|
|
|
BasicBlock *InsertAtEnd);
|
2001-06-06 20:29:01 +00:00
|
|
|
public:
|
2007-12-10 02:14:30 +00:00
|
|
|
// Out of line virtual method, so the vtable, etc has a home.
|
|
|
|
~Instruction();
|
|
|
|
|
2002-08-25 22:54:55 +00: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
|
|
|
|
///
|
2009-07-09 23:48:35 +00:00
|
|
|
virtual Instruction *clone(LLVMContext &Context) const = 0;
|
2004-11-30 02:51:53 +00: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.
|
2008-11-27 08:39:18 +00:00
|
|
|
bool isIdenticalTo(const Instruction *I) const;
|
2004-11-30 02:51:53 +00:00
|
|
|
|
2006-12-23 06:05:41 +00: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.
|
2008-11-27 08:39:18 +00:00
|
|
|
bool isSameOperationAs(const Instruction *I) const;
|
2006-12-23 06:05:41 +00:00
|
|
|
|
2008-04-20 22:11:30 +00: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-09-30 22:20:34 +00: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 20:29:01 +00:00
|
|
|
// Accessor methods...
|
|
|
|
//
|
|
|
|
inline const BasicBlock *getParent() const { return Parent; }
|
|
|
|
inline BasicBlock *getParent() { return Parent; }
|
2002-06-25 16:12:52 +00:00
|
|
|
|
2004-10-11 22:21:13 +00:00
|
|
|
/// removeFromParent - This method unlinks 'this' from the containing basic
|
|
|
|
/// block, but does not delete it.
|
2003-02-24 20:48:32 +00:00
|
|
|
///
|
2004-10-11 22:21:13 +00:00
|
|
|
void removeFromParent();
|
|
|
|
|
|
|
|
/// eraseFromParent - This method unlinks 'this' from the containing basic
|
|
|
|
/// block and deletes it.
|
|
|
|
///
|
|
|
|
void eraseFromParent();
|
2001-07-21 20:04:10 +00:00
|
|
|
|
2008-06-17 18:29:27 +00:00
|
|
|
/// insertBefore - Insert an unlinked instructions into a basic block
|
|
|
|
/// immediately before the specified instruction.
|
|
|
|
void insertBefore(Instruction *InsertPos);
|
|
|
|
|
2009-01-13 07:43:51 +00:00
|
|
|
/// insertAfter - Insert an unlinked instructions into a basic block
|
|
|
|
/// immediately after the specified instruction.
|
|
|
|
void insertAfter(Instruction *InsertPos);
|
|
|
|
|
2005-08-08 05:21:33 +00: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 20:29:01 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
2005-04-21 20:19:05 +00:00
|
|
|
/// Subclass classification... getOpcode() returns a member of
|
2002-08-25 22:54:55 +00:00
|
|
|
/// one of the enums that is coming soon (down below)...
|
|
|
|
///
|
2007-04-13 18:12:09 +00:00
|
|
|
unsigned getOpcode() const { return getValueID() - InstructionVal; }
|
2007-12-10 22:18:53 +00: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-14 22:48:20 +00:00
|
|
|
static const char* getOpcodeName(unsigned OpCode);
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2004-06-07 17:53:43 +00:00
|
|
|
static inline bool isTerminator(unsigned OpCode) {
|
|
|
|
return OpCode >= TermOpsBegin && OpCode < TermOpsEnd;
|
|
|
|
}
|
|
|
|
|
2007-12-10 22:18:53 +00:00
|
|
|
static inline bool isBinaryOp(unsigned Opcode) {
|
|
|
|
return Opcode >= BinaryOpsBegin && Opcode < BinaryOpsEnd;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2007-02-02 02:16:23 +00: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 18:31:41 +00:00
|
|
|
inline bool isLogicalShift() const {
|
2007-02-02 02:16:23 +00:00
|
|
|
return getOpcode() == Shl || getOpcode() == LShr;
|
|
|
|
}
|
|
|
|
|
2009-03-29 20:41:38 +00:00
|
|
|
/// isArithmeticShift - Return true if this is an arithmetic shift right.
|
2008-04-09 18:31:41 +00:00
|
|
|
inline bool isArithmeticShift() const {
|
2007-02-02 02:16:23 +00:00
|
|
|
return getOpcode() == AShr;
|
|
|
|
}
|
|
|
|
|
2006-11-27 01:05:10 +00: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 04:14:01 +00:00
|
|
|
/// isAssociative - Return true if the instruction is associative:
|
|
|
|
///
|
2003-07-28 16:53:28 +00:00
|
|
|
/// Associative operators satisfy: x op (y op z) === (x op y) op z
|
2002-10-31 04:14:01 +00: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 16:53:28 +00:00
|
|
|
/// Commutative operators satisfy: (x op y) === (y op x)
|
2002-10-31 04:14:01 +00: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);
|
|
|
|
|
2009-05-06 06:49:50 +00:00
|
|
|
/// mayWriteToMemory - Return true if this instruction may modify memory.
|
|
|
|
///
|
|
|
|
bool mayWriteToMemory() const;
|
|
|
|
|
|
|
|
/// mayReadFromMemory - Return true if this instruction may read memory.
|
|
|
|
///
|
|
|
|
bool mayReadFromMemory() const;
|
|
|
|
|
|
|
|
/// mayThrow - Return true if this instruction may throw an exception.
|
|
|
|
///
|
|
|
|
bool mayThrow() const;
|
|
|
|
|
|
|
|
/// mayHaveSideEffects - Return true if the instruction may have side effects.
|
|
|
|
///
|
2009-07-17 08:38:29 +00:00
|
|
|
/// Note that this does not consider malloc and alloca to have side
|
|
|
|
/// effects because the newly allocated memory is completely invisible to
|
|
|
|
/// instructions which don't used the returned value. For cases where this
|
|
|
|
/// matters, isSafeToSpeculativelyExecute may be more appropriate.
|
2009-05-06 06:49:50 +00:00
|
|
|
bool mayHaveSideEffects() const {
|
|
|
|
return mayWriteToMemory() || mayThrow();
|
|
|
|
}
|
|
|
|
|
2009-07-17 04:28:42 +00:00
|
|
|
/// isSafeToSpeculativelyExecute - Return true if the instruction does not
|
|
|
|
/// have any effects besides calculating the result and does not have
|
2009-07-17 08:38:29 +00:00
|
|
|
/// undefined behavior.
|
|
|
|
///
|
|
|
|
/// This method never returns true for an instruction that returns true for
|
|
|
|
/// mayHaveSideEffects; however, this method also does some other checks in
|
|
|
|
/// addition. It checks for undefined behavior, like dividing by zero or
|
|
|
|
/// loading from an invalid pointer (but not for undefined results, like a
|
|
|
|
/// shift with a shift amount larger than the width of the result). It checks
|
|
|
|
/// for malloc and alloca because speculatively executing them might cause a
|
|
|
|
/// memory leak. It also returns false for instructions related to control
|
|
|
|
/// flow, specifically terminators and PHI nodes.
|
2009-07-17 04:28:42 +00:00
|
|
|
///
|
|
|
|
/// This method only looks at the instruction itself and its operands, so if
|
|
|
|
/// this method returns true, it is safe to move the instruction as long as
|
2009-07-17 08:38:29 +00:00
|
|
|
/// the correct dominance relationships for the operands and users hold.
|
|
|
|
/// However, this method can return true for instructions that read memory;
|
|
|
|
/// for such instructions, moving them may change the resulting value.
|
2009-07-17 04:28:42 +00:00
|
|
|
bool isSafeToSpeculativelyExecute() const;
|
|
|
|
|
2002-08-25 22:54:55 +00:00
|
|
|
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
2005-10-25 17:59:28 +00:00
|
|
|
static inline bool classof(const Instruction *) { return true; }
|
2001-10-02 03:41:24 +00:00
|
|
|
static inline bool classof(const Value *V) {
|
2007-04-13 18:12:09 +00:00
|
|
|
return V->getValueID() >= Value::InstructionVal;
|
2001-10-01 13:58:13 +00:00
|
|
|
}
|
2005-04-21 20:19:05 +00:00
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Exported enumerations...
|
|
|
|
//
|
|
|
|
enum TermOps { // These terminate basic blocks
|
2002-10-13 19:39:16 +00:00
|
|
|
#define FIRST_TERM_INST(N) TermOpsBegin = N,
|
2001-10-14 17:24:50 +00:00
|
|
|
#define HANDLE_TERM_INST(N, OPC, CLASS) OPC = N,
|
2005-03-07 20:35:45 +00:00
|
|
|
#define LAST_TERM_INST(N) TermOpsEnd = N+1
|
2001-10-14 17:24:50 +00:00
|
|
|
#include "llvm/Instruction.def"
|
2001-06-06 20:29:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum BinaryOps {
|
2002-10-13 19:39:16 +00:00
|
|
|
#define FIRST_BINARY_INST(N) BinaryOpsBegin = N,
|
2001-10-14 17:24:50 +00:00
|
|
|
#define HANDLE_BINARY_INST(N, OPC, CLASS) OPC = N,
|
2005-03-07 20:35:45 +00:00
|
|
|
#define LAST_BINARY_INST(N) BinaryOpsEnd = N+1
|
2001-10-14 17:24:50 +00:00
|
|
|
#include "llvm/Instruction.def"
|
2001-06-06 20:29:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum MemoryOps {
|
2002-10-13 19:39:16 +00:00
|
|
|
#define FIRST_MEMORY_INST(N) MemoryOpsBegin = N,
|
2001-10-14 17:24:50 +00:00
|
|
|
#define HANDLE_MEMORY_INST(N, OPC, CLASS) OPC = N,
|
2005-03-07 20:35:45 +00:00
|
|
|
#define LAST_MEMORY_INST(N) MemoryOpsEnd = N+1
|
2001-10-14 17:24:50 +00:00
|
|
|
#include "llvm/Instruction.def"
|
2001-06-06 20:29:01 +00:00
|
|
|
};
|
|
|
|
|
2006-11-27 01:05:10 +00: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 20:29:01 +00:00
|
|
|
enum OtherOps {
|
2002-10-13 19:39:16 +00:00
|
|
|
#define FIRST_OTHER_INST(N) OtherOpsBegin = N,
|
2001-10-14 17:24:50 +00:00
|
|
|
#define HANDLE_OTHER_INST(N, OPC, CLASS) OPC = N,
|
2005-03-07 20:35:45 +00:00
|
|
|
#define LAST_OTHER_INST(N) OtherOpsEnd = N+1
|
2001-10-14 17:24:50 +00:00
|
|
|
#include "llvm/Instruction.def"
|
2001-06-06 20:29:01 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2009-03-29 04:32:37 +00:00
|
|
|
// Instruction* is only 4-byte aligned.
|
|
|
|
template<>
|
|
|
|
class PointerLikeTypeTraits<Instruction*> {
|
|
|
|
typedef Instruction* PT;
|
|
|
|
public:
|
|
|
|
static inline void *getAsVoidPointer(PT P) { return P; }
|
|
|
|
static inline PT getFromVoidPointer(void *P) {
|
|
|
|
return static_cast<PT>(P);
|
|
|
|
}
|
|
|
|
enum { NumLowBitsAvailable = 2 };
|
|
|
|
};
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
#endif
|