Remove unneccesary forward definitions
[oota-llvm.git] / include / llvm / Instruction.h
1 //===-- llvm/Instruction.h - Instruction class definition --------*- C++ -*--=//
2 //
3 // This file contains the declaration of the Instruction class, which is the
4 // base class for all of the VM instructions.
5 //
6 //===----------------------------------------------------------------------===//
7
8 #ifndef LLVM_INSTRUCTION_H
9 #define LLVM_INSTRUCTION_H
10
11 #include "llvm/User.h"
12
13 class Instruction : public User {
14   BasicBlock *Parent;
15
16   friend class ValueHolder<Instruction,BasicBlock,Method>;
17   inline void setParent(BasicBlock *P) { Parent = P; }
18 protected:
19   unsigned iType;      // InstructionType
20 public:
21   Instruction(const Type *Ty, unsigned iType, const std::string &Name = "");
22   virtual ~Instruction() {
23     assert(Parent == 0 && "Instruction still embedded in basic block!");
24   }
25
26   // Specialize setName to handle symbol table majik...
27   virtual void setName(const std::string &name, SymbolTable *ST = 0);
28   
29   // clone() - Create a copy of 'this' instruction that is identical in all ways
30   // except the following:
31   //   * The instruction has no parent
32   //   * The instruction has no name
33   //
34   virtual Instruction *clone() const = 0;
35   
36   // Accessor methods...
37   //
38   inline const BasicBlock *getParent() const { return Parent; }
39   inline       BasicBlock *getParent()       { return Parent; }
40   virtual bool hasSideEffects() const { return false; }  // Memory & Call insts
41
42   // ---------------------------------------------------------------------------
43   // Subclass classification... getInstType() returns a member of 
44   // one of the enums that is coming soon (down below)...
45   //
46   virtual const char *getOpcodeName() const = 0;
47   unsigned getOpcode() const { return iType; }
48
49   // getInstType is deprecated, use getOpcode() instead.
50   unsigned getInstType() const { return iType; }
51
52   inline bool isTerminator() const {   // Instance of TerminatorInst?
53     return iType >= FirstTermOp && iType < NumTermOps;
54   }
55   inline bool isDefinition() const { return !isTerminator(); }
56   inline bool isUnaryOp() const {
57     return iType >= FirstUnaryOp && iType < NumUnaryOps;
58   }
59   inline bool isBinaryOp() const {
60     return iType >= FirstBinaryOp && iType < NumBinaryOps;
61   }
62
63   // Methods for support type inquiry through isa, cast, and dyn_cast:
64   static inline bool classof(const Instruction *I) { return true; }
65   static inline bool classof(const Value *V) {
66     return V->getValueType() == Value::InstructionVal;
67   }
68   
69   //----------------------------------------------------------------------
70   // Exported enumerations...
71   //
72   enum TermOps {       // These terminate basic blocks
73 #define  FIRST_TERM_INST(N)             FirstTermOp = N,
74 #define HANDLE_TERM_INST(N, OPC, CLASS) OPC = N,
75 #define   LAST_TERM_INST(N)             NumTermOps = N+1,
76 #include "llvm/Instruction.def"
77   };
78
79   enum UnaryOps {
80 #define  FIRST_UNARY_INST(N)             FirstUnaryOp = N,
81 #define HANDLE_UNARY_INST(N, OPC, CLASS) OPC = N,
82 #define   LAST_UNARY_INST(N)             NumUnaryOps = N+1,
83 #include "llvm/Instruction.def"
84   };
85
86   enum BinaryOps {
87 #define  FIRST_BINARY_INST(N)             FirstBinaryOp = N,
88 #define HANDLE_BINARY_INST(N, OPC, CLASS) OPC = N,
89 #define   LAST_BINARY_INST(N)             NumBinaryOps = N+1,
90 #include "llvm/Instruction.def"
91   };
92
93   enum MemoryOps {
94 #define  FIRST_MEMORY_INST(N)             FirstMemoryOp = N,
95 #define HANDLE_MEMORY_INST(N, OPC, CLASS) OPC = N,
96 #define   LAST_MEMORY_INST(N)             NumMemoryOps = N+1,
97 #include "llvm/Instruction.def"
98   };
99
100   enum OtherOps {
101 #define  FIRST_OTHER_INST(N)             FirstOtherOp = N,
102 #define HANDLE_OTHER_INST(N, OPC, CLASS) OPC = N,
103 #define   LAST_OTHER_INST(N)             NumOtherOps = N+1,
104 #include "llvm/Instruction.def"
105   };
106 };
107
108 #endif