Don't attribute in file headers anymore. See llvmdev for the
[oota-llvm.git] / include / llvm / Instruction.h
1 //===-- llvm/Instruction.h - Instruction class definition -------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the declaration of the Instruction class, which is the
11 // base class for all of the LLVM instructions.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_INSTRUCTION_H
16 #define LLVM_INSTRUCTION_H
17
18 #include "llvm/User.h"
19
20 namespace llvm {
21
22 struct AssemblyAnnotationWriter;
23 class BinaryOperator;
24
25 template<typename ValueSubClass, typename ItemParentClass>
26   class SymbolTableListTraits;
27
28 class Instruction : public User {
29   void operator=(const Instruction &);     // Do not implement
30   Instruction(const Instruction &);        // Do not implement
31
32   BasicBlock *Parent;
33   Instruction *Prev, *Next; // Next and Prev links for our intrusive linked list
34
35   void setNext(Instruction *N) { Next = N; }
36   void setPrev(Instruction *N) { Prev = N; }
37
38   friend class SymbolTableListTraits<Instruction, BasicBlock>;
39   void setParent(BasicBlock *P);
40 protected:
41   Instruction(const Type *Ty, unsigned iType, Use *Ops, unsigned NumOps,
42               Instruction *InsertBefore = 0);
43   Instruction(const Type *Ty, unsigned iType, Use *Ops, unsigned NumOps,
44               BasicBlock *InsertAtEnd);
45 public:
46   // Out of line virtual method, so the vtable, etc has a home.
47   ~Instruction();
48   
49   /// mayWriteToMemory - Return true if this instruction may modify memory.
50   ///
51   bool mayWriteToMemory() const;
52
53   /// clone() - Create a copy of 'this' instruction that is identical in all
54   /// ways except the following:
55   ///   * The instruction has no parent
56   ///   * The instruction has no name
57   ///
58   virtual Instruction *clone() const = 0;
59
60   /// isIdenticalTo - Return true if the specified instruction is exactly
61   /// identical to the current one.  This means that all operands match and any
62   /// extra information (e.g. load is volatile) agree.
63   bool isIdenticalTo(Instruction *I) const;
64
65   /// This function determines if the specified instruction executes the same
66   /// operation as the current one. This means that the opcodes, type, operand
67   /// types and any other factors affecting the operation must be the same. This
68   /// is similar to isIdenticalTo except the operands themselves don't have to
69   /// be identical.
70   /// @returns true if the specified instruction is the same operation as
71   /// the current one.
72   /// @brief Determine if one instruction is the same operation as another.
73   bool isSameOperationAs(Instruction *I) const;
74
75   /// use_back - Specialize the methods defined in Value, as we know that an
76   /// instruction can only be used by other instructions.
77   Instruction       *use_back()       { return cast<Instruction>(*use_begin());}
78   const Instruction *use_back() const { return cast<Instruction>(*use_begin());}
79   
80   // Accessor methods...
81   //
82   inline const BasicBlock *getParent() const { return Parent; }
83   inline       BasicBlock *getParent()       { return Parent; }
84
85   /// removeFromParent - This method unlinks 'this' from the containing basic
86   /// block, but does not delete it.
87   ///
88   void removeFromParent();
89
90   /// eraseFromParent - This method unlinks 'this' from the containing basic
91   /// block and deletes it.
92   ///
93   void eraseFromParent();
94
95   /// moveBefore - Unlink this instruction from its current basic block and
96   /// insert it into the basic block that MovePos lives in, right before
97   /// MovePos.
98   void moveBefore(Instruction *MovePos);
99
100   // ---------------------------------------------------------------------------
101   /// Subclass classification... getOpcode() returns a member of
102   /// one of the enums that is coming soon (down below)...
103   ///
104   unsigned getOpcode() const { return getValueID() - InstructionVal; }
105   const char *getOpcodeName() const { return getOpcodeName(getOpcode()); }
106   bool isTerminator() const { return isTerminator(getOpcode()); }
107   bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
108   bool isShift() { return isShift(getOpcode()); }
109   bool isCast() const { return isCast(getOpcode()); }
110   
111   
112   
113   static const char* getOpcodeName(unsigned OpCode);
114
115   static inline bool isTerminator(unsigned OpCode) {
116     return OpCode >= TermOpsBegin && OpCode < TermOpsEnd;
117   }
118
119   static inline bool isBinaryOp(unsigned Opcode) {
120     return Opcode >= BinaryOpsBegin && Opcode < BinaryOpsEnd;
121   }
122
123   /// @brief Determine if the Opcode is one of the shift instructions.
124   static inline bool isShift(unsigned Opcode) {
125     return Opcode >= Shl && Opcode <= AShr;
126   }
127
128   /// isLogicalShift - Return true if this is a logical shift left or a logical
129   /// shift right.
130   inline bool isLogicalShift() {
131     return getOpcode() == Shl || getOpcode() == LShr;
132   }
133
134   /// isLogicalShift - Return true if this is a logical shift left or a logical
135   /// shift right.
136   inline bool isArithmeticShift() {
137     return getOpcode() == AShr;
138   }
139
140   /// @brief Determine if the OpCode is one of the CastInst instructions.
141   static inline bool isCast(unsigned OpCode) {
142     return OpCode >= CastOpsBegin && OpCode < CastOpsEnd;
143   }
144
145   /// isAssociative - Return true if the instruction is associative:
146   ///
147   ///   Associative operators satisfy:  x op (y op z) === (x op y) op z
148   ///
149   /// In LLVM, the Add, Mul, And, Or, and Xor operators are associative, when
150   /// not applied to floating point types.
151   ///
152   bool isAssociative() const { return isAssociative(getOpcode(), getType()); }
153   static bool isAssociative(unsigned op, const Type *Ty);
154
155   /// isCommutative - Return true if the instruction is commutative:
156   ///
157   ///   Commutative operators satisfy: (x op y) === (y op x)
158   ///
159   /// In LLVM, these are the associative operators, plus SetEQ and SetNE, when
160   /// applied to any type.
161   ///
162   bool isCommutative() const { return isCommutative(getOpcode()); }
163   static bool isCommutative(unsigned op);
164
165   /// isTrappingInstruction - Return true if the instruction may trap.
166   ///
167   bool isTrapping() const {
168     return isTrapping(getOpcode());
169   }
170   static bool isTrapping(unsigned op);
171
172   virtual void print(std::ostream &OS) const { print(OS, 0); }
173   void print(std::ostream *OS) const { if (OS) print(*OS); }
174   void print(std::ostream &OS, AssemblyAnnotationWriter *AAW) const;
175
176   /// Methods for support type inquiry through isa, cast, and dyn_cast:
177   static inline bool classof(const Instruction *) { return true; }
178   static inline bool classof(const Value *V) {
179     return V->getValueID() >= Value::InstructionVal;
180   }
181
182   //----------------------------------------------------------------------
183   // Exported enumerations...
184   //
185   enum TermOps {       // These terminate basic blocks
186 #define  FIRST_TERM_INST(N)             TermOpsBegin = N,
187 #define HANDLE_TERM_INST(N, OPC, CLASS) OPC = N,
188 #define   LAST_TERM_INST(N)             TermOpsEnd = N+1
189 #include "llvm/Instruction.def"
190   };
191
192   enum BinaryOps {
193 #define  FIRST_BINARY_INST(N)             BinaryOpsBegin = N,
194 #define HANDLE_BINARY_INST(N, OPC, CLASS) OPC = N,
195 #define   LAST_BINARY_INST(N)             BinaryOpsEnd = N+1
196 #include "llvm/Instruction.def"
197   };
198
199   enum MemoryOps {
200 #define  FIRST_MEMORY_INST(N)             MemoryOpsBegin = N,
201 #define HANDLE_MEMORY_INST(N, OPC, CLASS) OPC = N,
202 #define   LAST_MEMORY_INST(N)             MemoryOpsEnd = N+1
203 #include "llvm/Instruction.def"
204   };
205
206   enum CastOps {
207 #define  FIRST_CAST_INST(N)             CastOpsBegin = N,
208 #define HANDLE_CAST_INST(N, OPC, CLASS) OPC = N,
209 #define   LAST_CAST_INST(N)             CastOpsEnd = N+1
210 #include "llvm/Instruction.def"
211   };
212
213   enum OtherOps {
214 #define  FIRST_OTHER_INST(N)             OtherOpsBegin = N,
215 #define HANDLE_OTHER_INST(N, OPC, CLASS) OPC = N,
216 #define   LAST_OTHER_INST(N)             OtherOpsEnd = N+1
217 #include "llvm/Instruction.def"
218   };
219   
220 private:
221   // getNext/Prev - Return the next or previous instruction in the list.  The
222   // last node in the list is a terminator instruction.
223   Instruction *getNext()             { return Next; }
224   const Instruction *getNext() const { return Next; }
225   Instruction *getPrev()             { return Prev; }
226   const Instruction *getPrev() const { return Prev; }
227 };
228
229 } // End llvm namespace
230
231 #endif