blob: b26eb3a403ce932a420cf4ee6527d0cf225c269b [file] [log] [blame]
Chris Lattnera892a3a2003-01-27 22:08:52 +00001//===-- llvm/Instructions.h - Instruction subclass definitions --*- C++ -*-===//
Misha Brukman9769ab22005-04-21 20:19:05 +00002//
John Criswell6fbcc262003-10-20 20:19:47 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner7ed47a12007-12-29 19:59:42 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman9769ab22005-04-21 20:19:05 +00007//
John Criswell6fbcc262003-10-20 20:19:47 +00008//===----------------------------------------------------------------------===//
Chris Lattnera892a3a2003-01-27 22:08:52 +00009//
10// This file exposes the class definitions of all of the subclasses of the
11// Instruction class. This is meant to be an easy way to get access to all
12// instruction subclasses.
13//
14//===----------------------------------------------------------------------===//
15
16#ifndef LLVM_INSTRUCTIONS_H
17#define LLVM_INSTRUCTIONS_H
18
David Greene52eec542007-08-01 03:43:44 +000019#include <iterator>
20
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000021#include "llvm/InstrTypes.h"
David Greene52eec542007-08-01 03:43:44 +000022#include "llvm/DerivedTypes.h"
Dale Johannesen0d51e7e2008-02-19 21:38:47 +000023#include "llvm/ParameterAttributes.h"
Gabor Greifefe65362008-05-10 08:32:32 +000024#include "llvm/BasicBlock.h"
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000025
26namespace llvm {
27
Chris Lattnerd1a32602005-02-24 05:32:09 +000028class ConstantInt;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000029class PointerType;
Reid Spencer9d6565a2007-02-15 02:26:10 +000030class VectorType;
Reid Spencer3da43842007-02-28 22:00:54 +000031class ConstantRange;
32class APInt;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000033
34//===----------------------------------------------------------------------===//
35// AllocationInst Class
36//===----------------------------------------------------------------------===//
37
38/// AllocationInst - This class is the common base class of MallocInst and
39/// AllocaInst.
40///
Chris Lattner454928e2005-01-29 00:31:36 +000041class AllocationInst : public UnaryInstruction {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000042protected:
Nate Begeman14b05292005-11-05 09:21:28 +000043 AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy, unsigned Align,
Misha Brukman91102862005-03-16 03:46:55 +000044 const std::string &Name = "", Instruction *InsertBefore = 0);
Nate Begeman14b05292005-11-05 09:21:28 +000045 AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy, unsigned Align,
Misha Brukman91102862005-03-16 03:46:55 +000046 const std::string &Name, BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000047public:
Gabor Greif051a9502008-04-06 20:25:17 +000048 // Out of line virtual method, so the vtable, etc. has a home.
Gordon Henriksenafba8fe2007-12-10 02:14:30 +000049 virtual ~AllocationInst();
50
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000051 /// isArrayAllocation - Return true if there is an allocation size parameter
52 /// to the allocation instruction that is not 1.
53 ///
54 bool isArrayAllocation() const;
55
56 /// getArraySize - Get the number of element allocated, for a simple
57 /// allocation of a single element, this will return a constant 1 value.
58 ///
Devang Patel4d4a5e02008-02-23 01:11:02 +000059 const Value *getArraySize() const { return getOperand(0); }
60 Value *getArraySize() { return getOperand(0); }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000061
62 /// getType - Overload to return most specific pointer type
63 ///
Devang Patel4d4a5e02008-02-23 01:11:02 +000064 const PointerType *getType() const {
Misha Brukman9769ab22005-04-21 20:19:05 +000065 return reinterpret_cast<const PointerType*>(Instruction::getType());
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000066 }
67
68 /// getAllocatedType - Return the type that is being allocated by the
69 /// instruction.
70 ///
71 const Type *getAllocatedType() const;
72
Nate Begeman14b05292005-11-05 09:21:28 +000073 /// getAlignment - Return the alignment of the memory that is being allocated
74 /// by the instruction.
75 ///
Dan Gohman52837072008-03-24 16:55:58 +000076 unsigned getAlignment() const { return (1u << SubclassData) >> 1; }
77 void setAlignment(unsigned Align);
Chris Lattnerf56a8db2006-10-03 17:09:12 +000078
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000079 virtual Instruction *clone() const = 0;
80
81 // Methods for support type inquiry through isa, cast, and dyn_cast:
82 static inline bool classof(const AllocationInst *) { return true; }
83 static inline bool classof(const Instruction *I) {
84 return I->getOpcode() == Instruction::Alloca ||
85 I->getOpcode() == Instruction::Malloc;
86 }
87 static inline bool classof(const Value *V) {
88 return isa<Instruction>(V) && classof(cast<Instruction>(V));
89 }
90};
91
92
93//===----------------------------------------------------------------------===//
94// MallocInst Class
95//===----------------------------------------------------------------------===//
96
97/// MallocInst - an instruction to allocated memory on the heap
98///
99class MallocInst : public AllocationInst {
100 MallocInst(const MallocInst &MI);
101public:
102 explicit MallocInst(const Type *Ty, Value *ArraySize = 0,
103 const std::string &Name = "",
104 Instruction *InsertBefore = 0)
Nate Begeman14b05292005-11-05 09:21:28 +0000105 : AllocationInst(Ty, ArraySize, Malloc, 0, Name, InsertBefore) {}
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000106 MallocInst(const Type *Ty, Value *ArraySize, const std::string &Name,
107 BasicBlock *InsertAtEnd)
Nate Begeman14b05292005-11-05 09:21:28 +0000108 : AllocationInst(Ty, ArraySize, Malloc, 0, Name, InsertAtEnd) {}
Chris Lattnerf56a8db2006-10-03 17:09:12 +0000109
110 MallocInst(const Type *Ty, const std::string &Name,
111 Instruction *InsertBefore = 0)
Chris Lattnerb77780e2006-05-10 04:38:35 +0000112 : AllocationInst(Ty, 0, Malloc, 0, Name, InsertBefore) {}
113 MallocInst(const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd)
114 : AllocationInst(Ty, 0, Malloc, 0, Name, InsertAtEnd) {}
Chris Lattnerf56a8db2006-10-03 17:09:12 +0000115
116 MallocInst(const Type *Ty, Value *ArraySize, unsigned Align,
Nate Begeman14b05292005-11-05 09:21:28 +0000117 const std::string &Name, BasicBlock *InsertAtEnd)
Chris Lattnerb77780e2006-05-10 04:38:35 +0000118 : AllocationInst(Ty, ArraySize, Malloc, Align, Name, InsertAtEnd) {}
119 MallocInst(const Type *Ty, Value *ArraySize, unsigned Align,
Nate Begeman14b05292005-11-05 09:21:28 +0000120 const std::string &Name = "",
121 Instruction *InsertBefore = 0)
Chris Lattnerb77780e2006-05-10 04:38:35 +0000122 : AllocationInst(Ty, ArraySize, Malloc, Align, Name, InsertBefore) {}
Chris Lattnerf56a8db2006-10-03 17:09:12 +0000123
Chris Lattnerf319e832004-10-15 23:52:05 +0000124 virtual MallocInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000125
126 // Methods for support type inquiry through isa, cast, and dyn_cast:
127 static inline bool classof(const MallocInst *) { return true; }
128 static inline bool classof(const Instruction *I) {
129 return (I->getOpcode() == Instruction::Malloc);
130 }
131 static inline bool classof(const Value *V) {
132 return isa<Instruction>(V) && classof(cast<Instruction>(V));
133 }
134};
135
136
137//===----------------------------------------------------------------------===//
138// AllocaInst Class
139//===----------------------------------------------------------------------===//
140
141/// AllocaInst - an instruction to allocate memory on the stack
142///
143class AllocaInst : public AllocationInst {
144 AllocaInst(const AllocaInst &);
145public:
146 explicit AllocaInst(const Type *Ty, Value *ArraySize = 0,
147 const std::string &Name = "",
148 Instruction *InsertBefore = 0)
Nate Begeman14b05292005-11-05 09:21:28 +0000149 : AllocationInst(Ty, ArraySize, Alloca, 0, Name, InsertBefore) {}
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000150 AllocaInst(const Type *Ty, Value *ArraySize, const std::string &Name,
151 BasicBlock *InsertAtEnd)
Nate Begeman14b05292005-11-05 09:21:28 +0000152 : AllocationInst(Ty, ArraySize, Alloca, 0, Name, InsertAtEnd) {}
Chris Lattnerb77780e2006-05-10 04:38:35 +0000153
154 AllocaInst(const Type *Ty, const std::string &Name,
155 Instruction *InsertBefore = 0)
156 : AllocationInst(Ty, 0, Alloca, 0, Name, InsertBefore) {}
157 AllocaInst(const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd)
158 : AllocationInst(Ty, 0, Alloca, 0, Name, InsertAtEnd) {}
Chris Lattnerf56a8db2006-10-03 17:09:12 +0000159
Chris Lattnerb77780e2006-05-10 04:38:35 +0000160 AllocaInst(const Type *Ty, Value *ArraySize, unsigned Align,
161 const std::string &Name = "", Instruction *InsertBefore = 0)
162 : AllocationInst(Ty, ArraySize, Alloca, Align, Name, InsertBefore) {}
Nate Begeman14b05292005-11-05 09:21:28 +0000163 AllocaInst(const Type *Ty, Value *ArraySize, unsigned Align,
164 const std::string &Name, BasicBlock *InsertAtEnd)
Chris Lattnerb77780e2006-05-10 04:38:35 +0000165 : AllocationInst(Ty, ArraySize, Alloca, Align, Name, InsertAtEnd) {}
Chris Lattnerf56a8db2006-10-03 17:09:12 +0000166
Chris Lattnerf319e832004-10-15 23:52:05 +0000167 virtual AllocaInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000168
169 // Methods for support type inquiry through isa, cast, and dyn_cast:
170 static inline bool classof(const AllocaInst *) { return true; }
171 static inline bool classof(const Instruction *I) {
172 return (I->getOpcode() == Instruction::Alloca);
173 }
174 static inline bool classof(const Value *V) {
175 return isa<Instruction>(V) && classof(cast<Instruction>(V));
176 }
177};
178
179
180//===----------------------------------------------------------------------===//
181// FreeInst Class
182//===----------------------------------------------------------------------===//
183
184/// FreeInst - an instruction to deallocate memory
185///
Chris Lattner454928e2005-01-29 00:31:36 +0000186class FreeInst : public UnaryInstruction {
187 void AssertOK();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000188public:
189 explicit FreeInst(Value *Ptr, Instruction *InsertBefore = 0);
190 FreeInst(Value *Ptr, BasicBlock *InsertAfter);
191
Chris Lattnerf319e832004-10-15 23:52:05 +0000192 virtual FreeInst *clone() const;
Owen Andersonc9edf0b2007-07-06 23:13:31 +0000193
194 // Accessor methods for consistency with other memory operations
195 Value *getPointerOperand() { return getOperand(0); }
196 const Value *getPointerOperand() const { return getOperand(0); }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000197
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000198 // Methods for support type inquiry through isa, cast, and dyn_cast:
199 static inline bool classof(const FreeInst *) { return true; }
200 static inline bool classof(const Instruction *I) {
201 return (I->getOpcode() == Instruction::Free);
202 }
203 static inline bool classof(const Value *V) {
204 return isa<Instruction>(V) && classof(cast<Instruction>(V));
205 }
206};
207
208
209//===----------------------------------------------------------------------===//
210// LoadInst Class
211//===----------------------------------------------------------------------===//
212
Chris Lattner88fe29a2005-02-05 01:44:18 +0000213/// LoadInst - an instruction for reading from memory. This uses the
214/// SubclassData field in Value to store whether or not the load is volatile.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000215///
Chris Lattner454928e2005-01-29 00:31:36 +0000216class LoadInst : public UnaryInstruction {
Christopher Lamb43c7f372007-04-22 19:24:39 +0000217
Chris Lattner454928e2005-01-29 00:31:36 +0000218 LoadInst(const LoadInst &LI)
Chris Lattner88fe29a2005-02-05 01:44:18 +0000219 : UnaryInstruction(LI.getType(), Load, LI.getOperand(0)) {
220 setVolatile(LI.isVolatile());
Christopher Lamb43c7f372007-04-22 19:24:39 +0000221 setAlignment(LI.getAlignment());
Misha Brukman9769ab22005-04-21 20:19:05 +0000222
Chris Lattner454928e2005-01-29 00:31:36 +0000223#ifndef NDEBUG
224 AssertOK();
225#endif
226 }
227 void AssertOK();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000228public:
229 LoadInst(Value *Ptr, const std::string &Name, Instruction *InsertBefore);
230 LoadInst(Value *Ptr, const std::string &Name, BasicBlock *InsertAtEnd);
Christopher Lamb43c7f372007-04-22 19:24:39 +0000231 LoadInst(Value *Ptr, const std::string &Name, bool isVolatile = false,
232 Instruction *InsertBefore = 0);
233 LoadInst(Value *Ptr, const std::string &Name, bool isVolatile, unsigned Align,
Chris Lattnerf00042a2007-02-13 07:54:42 +0000234 Instruction *InsertBefore = 0);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000235 LoadInst(Value *Ptr, const std::string &Name, bool isVolatile,
236 BasicBlock *InsertAtEnd);
Dan Gohman6ab2d182007-07-18 20:51:11 +0000237 LoadInst(Value *Ptr, const std::string &Name, bool isVolatile, unsigned Align,
238 BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000239
Chris Lattnerf00042a2007-02-13 07:54:42 +0000240 LoadInst(Value *Ptr, const char *Name, Instruction *InsertBefore);
241 LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAtEnd);
Christopher Lamb43c7f372007-04-22 19:24:39 +0000242 explicit LoadInst(Value *Ptr, const char *Name = 0, bool isVolatile = false,
Chris Lattnerf00042a2007-02-13 07:54:42 +0000243 Instruction *InsertBefore = 0);
244 LoadInst(Value *Ptr, const char *Name, bool isVolatile,
245 BasicBlock *InsertAtEnd);
246
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000247 /// isVolatile - Return true if this is a load from a volatile memory
248 /// location.
249 ///
Christopher Lamb43c7f372007-04-22 19:24:39 +0000250 bool isVolatile() const { return SubclassData & 1; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000251
252 /// setVolatile - Specify whether this is a volatile load or not.
253 ///
Christopher Lamb43c7f372007-04-22 19:24:39 +0000254 void setVolatile(bool V) {
Hartmut Kaiserefd4a512007-10-17 14:56:40 +0000255 SubclassData = (SubclassData & ~1) | (V ? 1 : 0);
Christopher Lamb43c7f372007-04-22 19:24:39 +0000256 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000257
Chris Lattnerf319e832004-10-15 23:52:05 +0000258 virtual LoadInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000259
Christopher Lamb43c7f372007-04-22 19:24:39 +0000260 /// getAlignment - Return the alignment of the access that is being performed
261 ///
262 unsigned getAlignment() const {
Christopher Lamb032507d2007-04-22 22:22:02 +0000263 return (1 << (SubclassData>>1)) >> 1;
Christopher Lamb43c7f372007-04-22 19:24:39 +0000264 }
265
266 void setAlignment(unsigned Align);
267
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000268 Value *getPointerOperand() { return getOperand(0); }
269 const Value *getPointerOperand() const { return getOperand(0); }
270 static unsigned getPointerOperandIndex() { return 0U; }
271
272 // Methods for support type inquiry through isa, cast, and dyn_cast:
273 static inline bool classof(const LoadInst *) { return true; }
274 static inline bool classof(const Instruction *I) {
275 return I->getOpcode() == Instruction::Load;
276 }
277 static inline bool classof(const Value *V) {
278 return isa<Instruction>(V) && classof(cast<Instruction>(V));
279 }
280};
281
282
283//===----------------------------------------------------------------------===//
284// StoreInst Class
285//===----------------------------------------------------------------------===//
286
Misha Brukman9769ab22005-04-21 20:19:05 +0000287/// StoreInst - an instruction for storing to memory
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000288///
289class StoreInst : public Instruction {
Gabor Greif051a9502008-04-06 20:25:17 +0000290 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Christopher Lamb43c7f372007-04-22 19:24:39 +0000291
Gabor Greifefe65362008-05-10 08:32:32 +0000292 StoreInst(const StoreInst &SI) : Instruction(SI.getType(), Store,
293 &Op<0>(), 2) {
294 Op<0>().init(SI.Op<0>(), this);
295 Op<1>().init(SI.Op<1>(), this);
Chris Lattner88fe29a2005-02-05 01:44:18 +0000296 setVolatile(SI.isVolatile());
Christopher Lamb43c7f372007-04-22 19:24:39 +0000297 setAlignment(SI.getAlignment());
298
Chris Lattner454928e2005-01-29 00:31:36 +0000299#ifndef NDEBUG
300 AssertOK();
301#endif
302 }
303 void AssertOK();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000304public:
Gabor Greif051a9502008-04-06 20:25:17 +0000305 // allocate space for exactly two operands
306 void *operator new(size_t s) {
307 return User::operator new(s, 2);
308 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000309 StoreInst(Value *Val, Value *Ptr, Instruction *InsertBefore);
310 StoreInst(Value *Val, Value *Ptr, BasicBlock *InsertAtEnd);
311 StoreInst(Value *Val, Value *Ptr, bool isVolatile = false,
312 Instruction *InsertBefore = 0);
Christopher Lamb43c7f372007-04-22 19:24:39 +0000313 StoreInst(Value *Val, Value *Ptr, bool isVolatile,
314 unsigned Align, Instruction *InsertBefore = 0);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000315 StoreInst(Value *Val, Value *Ptr, bool isVolatile, BasicBlock *InsertAtEnd);
Dan Gohman6ab2d182007-07-18 20:51:11 +0000316 StoreInst(Value *Val, Value *Ptr, bool isVolatile,
317 unsigned Align, BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000318
319
320 /// isVolatile - Return true if this is a load from a volatile memory
321 /// location.
322 ///
Christopher Lamb43c7f372007-04-22 19:24:39 +0000323 bool isVolatile() const { return SubclassData & 1; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000324
325 /// setVolatile - Specify whether this is a volatile load or not.
326 ///
Christopher Lamb43c7f372007-04-22 19:24:39 +0000327 void setVolatile(bool V) {
Hartmut Kaiserefd4a512007-10-17 14:56:40 +0000328 SubclassData = (SubclassData & ~1) | (V ? 1 : 0);
Christopher Lamb43c7f372007-04-22 19:24:39 +0000329 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000330
Chris Lattner454928e2005-01-29 00:31:36 +0000331 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +0000332 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Chris Lattner454928e2005-01-29 00:31:36 +0000333
Christopher Lamb43c7f372007-04-22 19:24:39 +0000334 /// getAlignment - Return the alignment of the access that is being performed
335 ///
336 unsigned getAlignment() const {
Christopher Lamb032507d2007-04-22 22:22:02 +0000337 return (1 << (SubclassData>>1)) >> 1;
Christopher Lamb43c7f372007-04-22 19:24:39 +0000338 }
339
340 void setAlignment(unsigned Align);
341
Chris Lattnerf319e832004-10-15 23:52:05 +0000342 virtual StoreInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000343
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000344 Value *getPointerOperand() { return getOperand(1); }
345 const Value *getPointerOperand() const { return getOperand(1); }
346 static unsigned getPointerOperandIndex() { return 1U; }
347
348 // Methods for support type inquiry through isa, cast, and dyn_cast:
349 static inline bool classof(const StoreInst *) { return true; }
350 static inline bool classof(const Instruction *I) {
351 return I->getOpcode() == Instruction::Store;
352 }
353 static inline bool classof(const Value *V) {
354 return isa<Instruction>(V) && classof(cast<Instruction>(V));
355 }
356};
357
Gabor Greifefe65362008-05-10 08:32:32 +0000358template <>
359struct OperandTraits<StoreInst> : FixedNumOperandTraits<2> {
360};
361
362DEFINE_TRANSPARENT_OPERAND_ACCESSORS(StoreInst, Value)
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000363
364//===----------------------------------------------------------------------===//
365// GetElementPtrInst Class
366//===----------------------------------------------------------------------===//
367
David Greeneb8f74792007-09-04 15:46:09 +0000368// checkType - Simple wrapper function to give a better assertion failure
369// message on bad indexes for a gep instruction.
370//
371static inline const Type *checkType(const Type *Ty) {
372 assert(Ty && "Invalid GetElementPtrInst indices for type!");
373 return Ty;
374}
375
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000376/// GetElementPtrInst - an instruction for type-safe pointer arithmetic to
377/// access elements of arrays and structs
378///
379class GetElementPtrInst : public Instruction {
Gabor Greifefe65362008-05-10 08:32:32 +0000380 GetElementPtrInst(const GetElementPtrInst &GEPI);
Chris Lattner6ffbe172007-01-31 19:47:18 +0000381 void init(Value *Ptr, Value* const *Idx, unsigned NumIdx);
Chris Lattner38bacf22005-05-03 05:43:30 +0000382 void init(Value *Ptr, Value *Idx);
David Greeneb8f74792007-09-04 15:46:09 +0000383
384 template<typename InputIterator>
385 void init(Value *Ptr, InputIterator IdxBegin, InputIterator IdxEnd,
386 const std::string &Name,
387 // This argument ensures that we have an iterator we can
388 // do arithmetic on in constant time
389 std::random_access_iterator_tag) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000390 unsigned NumIdx = static_cast<unsigned>(std::distance(IdxBegin, IdxEnd));
David Greeneb8f74792007-09-04 15:46:09 +0000391
392 if (NumIdx > 0) {
Gabor Greifefe65362008-05-10 08:32:32 +0000393 // This requires that the iterator points to contiguous memory.
394 init(Ptr, &*IdxBegin, NumIdx); // FIXME: for the general case
395 // we have to build an array here
David Greeneb8f74792007-09-04 15:46:09 +0000396 }
397 else {
398 init(Ptr, 0, NumIdx);
399 }
400
401 setName(Name);
402 }
403
404 /// getIndexedType - Returns the type of the element that would be loaded with
405 /// a load instruction with the specified parameters.
406 ///
407 /// A null type is returned if the indices are invalid for the specified
408 /// pointer type.
409 ///
410 static const Type *getIndexedType(const Type *Ptr,
411 Value* const *Idx, unsigned NumIdx,
412 bool AllowStructLeaf = false);
413
414 template<typename InputIterator>
415 static const Type *getIndexedType(const Type *Ptr,
416 InputIterator IdxBegin,
417 InputIterator IdxEnd,
418 bool AllowStructLeaf,
419 // This argument ensures that we
420 // have an iterator we can do
421 // arithmetic on in constant time
422 std::random_access_iterator_tag) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000423 unsigned NumIdx = static_cast<unsigned>(std::distance(IdxBegin, IdxEnd));
David Greeneb8f74792007-09-04 15:46:09 +0000424
425 if (NumIdx > 0) {
426 // This requires that the iterator points to contiguous memory.
427 return(getIndexedType(Ptr, (Value *const *)&*IdxBegin, NumIdx,
428 AllowStructLeaf));
429 }
430 else {
431 return(getIndexedType(Ptr, (Value *const*)0, NumIdx, AllowStructLeaf));
432 }
433 }
434
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000435 /// Constructors - Create a getelementptr instruction with a base pointer an
436 /// list of indices. The first ctor can optionally insert before an existing
437 /// instruction, the second appends the new instruction to the specified
438 /// BasicBlock.
David Greeneb8f74792007-09-04 15:46:09 +0000439 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +0000440 inline GetElementPtrInst(Value *Ptr, InputIterator IdxBegin,
441 InputIterator IdxEnd,
442 unsigned Values,
443 const std::string &Name,
444 Instruction *InsertBefore);
David Greeneb8f74792007-09-04 15:46:09 +0000445 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +0000446 inline GetElementPtrInst(Value *Ptr,
447 InputIterator IdxBegin, InputIterator IdxEnd,
448 unsigned Values,
449 const std::string &Name, BasicBlock *InsertAtEnd);
David Greeneb8f74792007-09-04 15:46:09 +0000450
Chris Lattner38bacf22005-05-03 05:43:30 +0000451 /// Constructors - These two constructors are convenience methods because one
452 /// and two index getelementptr instructions are so common.
Gabor Greifefe65362008-05-10 08:32:32 +0000453 GetElementPtrInst(Value *Ptr, Value *Idx, const std::string &Name = "",
454 Instruction *InsertBefore = 0);
Chris Lattner38bacf22005-05-03 05:43:30 +0000455 GetElementPtrInst(Value *Ptr, Value *Idx,
456 const std::string &Name, BasicBlock *InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +0000457public:
458 template<typename InputIterator>
459 static GetElementPtrInst *Create(Value *Ptr, InputIterator IdxBegin,
460 InputIterator IdxEnd,
461 const std::string &Name = "",
462 Instruction *InsertBefore = 0) {
Gabor Greifefe65362008-05-10 08:32:32 +0000463 typename std::iterator_traits<InputIterator>::difference_type Values =
464 1 + std::distance(IdxBegin, IdxEnd);
465 return new(Values)
466 GetElementPtrInst(Ptr, IdxBegin, IdxEnd, Values, Name, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +0000467 }
468 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +0000469 static GetElementPtrInst *Create(Value *Ptr,
470 InputIterator IdxBegin, InputIterator IdxEnd,
471 const std::string &Name,
472 BasicBlock *InsertAtEnd) {
473 typename std::iterator_traits<InputIterator>::difference_type Values =
474 1 + std::distance(IdxBegin, IdxEnd);
475 return new(Values)
476 GetElementPtrInst(Ptr, IdxBegin, IdxEnd, Values, Name, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +0000477 }
478
Gabor Greifefe65362008-05-10 08:32:32 +0000479 /// Constructors - These two creators are convenience methods because one
480 /// index getelementptr instructions are so common.
Gabor Greif051a9502008-04-06 20:25:17 +0000481 static GetElementPtrInst *Create(Value *Ptr, Value *Idx,
Gabor Greifefe65362008-05-10 08:32:32 +0000482 const std::string &Name = "",
483 Instruction *InsertBefore = 0) {
484 return new(2) GetElementPtrInst(Ptr, Idx, Name, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +0000485 }
486 static GetElementPtrInst *Create(Value *Ptr, Value *Idx,
Gabor Greifefe65362008-05-10 08:32:32 +0000487 const std::string &Name,
488 BasicBlock *InsertAtEnd) {
489 return new(2) GetElementPtrInst(Ptr, Idx, Name, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +0000490 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000491
Chris Lattnerf319e832004-10-15 23:52:05 +0000492 virtual GetElementPtrInst *clone() const;
Misha Brukman9769ab22005-04-21 20:19:05 +0000493
Gabor Greifefe65362008-05-10 08:32:32 +0000494 /// Transparently provide more efficient getOperand methods.
495 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
496
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000497 // getType - Overload to return most specific pointer type...
Devang Patel4d4a5e02008-02-23 01:11:02 +0000498 const PointerType *getType() const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000499 return reinterpret_cast<const PointerType*>(Instruction::getType());
500 }
501
502 /// getIndexedType - Returns the type of the element that would be loaded with
503 /// a load instruction with the specified parameters.
504 ///
Misha Brukman9769ab22005-04-21 20:19:05 +0000505 /// A null type is returned if the indices are invalid for the specified
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000506 /// pointer type.
507 ///
David Greeneb8f74792007-09-04 15:46:09 +0000508 template<typename InputIterator>
Misha Brukman9769ab22005-04-21 20:19:05 +0000509 static const Type *getIndexedType(const Type *Ptr,
David Greeneb8f74792007-09-04 15:46:09 +0000510 InputIterator IdxBegin,
511 InputIterator IdxEnd,
512 bool AllowStructLeaf = false) {
513 return(getIndexedType(Ptr, IdxBegin, IdxEnd, AllowStructLeaf,
514 typename std::iterator_traits<InputIterator>::
515 iterator_category()));
516 }
Chris Lattner38bacf22005-05-03 05:43:30 +0000517 static const Type *getIndexedType(const Type *Ptr, Value *Idx);
Misha Brukman9769ab22005-04-21 20:19:05 +0000518
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000519 inline op_iterator idx_begin() { return op_begin()+1; }
520 inline const_op_iterator idx_begin() const { return op_begin()+1; }
521 inline op_iterator idx_end() { return op_end(); }
522 inline const_op_iterator idx_end() const { return op_end(); }
523
524 Value *getPointerOperand() {
525 return getOperand(0);
526 }
527 const Value *getPointerOperand() const {
528 return getOperand(0);
529 }
530 static unsigned getPointerOperandIndex() {
531 return 0U; // get index for modifying correct operand
532 }
533
Devang Patel4d4a5e02008-02-23 01:11:02 +0000534 unsigned getNumIndices() const { // Note: always non-negative
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000535 return getNumOperands() - 1;
536 }
Misha Brukman9769ab22005-04-21 20:19:05 +0000537
Devang Patel4d4a5e02008-02-23 01:11:02 +0000538 bool hasIndices() const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000539 return getNumOperands() > 1;
540 }
Chris Lattner6f771d42007-04-14 00:12:57 +0000541
542 /// hasAllZeroIndices - Return true if all of the indices of this GEP are
543 /// zeros. If so, the result pointer and the first operand have the same
544 /// value, just potentially different types.
545 bool hasAllZeroIndices() const;
Chris Lattner6b0974c2007-04-27 20:35:56 +0000546
547 /// hasAllConstantIndices - Return true if all of the indices of this GEP are
548 /// constant integers. If so, the result pointer and the first operand have
549 /// a constant offset between them.
550 bool hasAllConstantIndices() const;
551
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000552
553 // Methods for support type inquiry through isa, cast, and dyn_cast:
554 static inline bool classof(const GetElementPtrInst *) { return true; }
555 static inline bool classof(const Instruction *I) {
556 return (I->getOpcode() == Instruction::GetElementPtr);
557 }
558 static inline bool classof(const Value *V) {
559 return isa<Instruction>(V) && classof(cast<Instruction>(V));
560 }
561};
562
Gabor Greifefe65362008-05-10 08:32:32 +0000563template <>
564struct OperandTraits<GetElementPtrInst> : VariadicOperandTraits<1> {
565};
566
567template<typename InputIterator>
568GetElementPtrInst::GetElementPtrInst(Value *Ptr,
569 InputIterator IdxBegin,
570 InputIterator IdxEnd,
571 unsigned Values,
572 const std::string &Name,
573 Instruction *InsertBefore)
574 : Instruction(PointerType::get(checkType(
575 getIndexedType(Ptr->getType(),
576 IdxBegin, IdxEnd, true)),
577 cast<PointerType>(Ptr->getType())
578 ->getAddressSpace()),
579 GetElementPtr,
580 OperandTraits<GetElementPtrInst>::op_end(this) - Values,
581 Values, InsertBefore) {
582 init(Ptr, IdxBegin, IdxEnd, Name,
583 typename std::iterator_traits<InputIterator>::iterator_category());
584}
585template<typename InputIterator>
586GetElementPtrInst::GetElementPtrInst(Value *Ptr,
587 InputIterator IdxBegin,
588 InputIterator IdxEnd,
589 unsigned Values,
590 const std::string &Name,
591 BasicBlock *InsertAtEnd)
592 : Instruction(PointerType::get(checkType(
593 getIndexedType(Ptr->getType(),
594 IdxBegin, IdxEnd, true)),
595 cast<PointerType>(Ptr->getType())
596 ->getAddressSpace()),
597 GetElementPtr,
598 OperandTraits<GetElementPtrInst>::op_end(this) - Values,
599 Values, InsertAtEnd) {
600 init(Ptr, IdxBegin, IdxEnd, Name,
601 typename std::iterator_traits<InputIterator>::iterator_category());
602}
603
604
605DEFINE_TRANSPARENT_OPERAND_ACCESSORS(GetElementPtrInst, Value)
606
607
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000608//===----------------------------------------------------------------------===//
Reid Spencer45fb3f32006-11-20 01:22:35 +0000609// ICmpInst Class
610//===----------------------------------------------------------------------===//
611
612/// This instruction compares its operands according to the predicate given
613/// to the constructor. It only operates on integers, pointers, or packed
614/// vectors of integrals. The two operands must be the same type.
615/// @brief Represent an integer comparison operator.
616class ICmpInst: public CmpInst {
617public:
618 /// This enumeration lists the possible predicates for the ICmpInst. The
619 /// values in the range 0-31 are reserved for FCmpInst while values in the
620 /// range 32-64 are reserved for ICmpInst. This is necessary to ensure the
621 /// predicate values are not overlapping between the classes.
622 enum Predicate {
623 ICMP_EQ = 32, ///< equal
624 ICMP_NE = 33, ///< not equal
625 ICMP_UGT = 34, ///< unsigned greater than
626 ICMP_UGE = 35, ///< unsigned greater or equal
627 ICMP_ULT = 36, ///< unsigned less than
628 ICMP_ULE = 37, ///< unsigned less or equal
629 ICMP_SGT = 38, ///< signed greater than
630 ICMP_SGE = 39, ///< signed greater or equal
631 ICMP_SLT = 40, ///< signed less than
632 ICMP_SLE = 41, ///< signed less or equal
633 FIRST_ICMP_PREDICATE = ICMP_EQ,
Reid Spencere4d87aa2006-12-23 06:05:41 +0000634 LAST_ICMP_PREDICATE = ICMP_SLE,
635 BAD_ICMP_PREDICATE = ICMP_SLE + 1
Reid Spencer45fb3f32006-11-20 01:22:35 +0000636 };
637
638 /// @brief Constructor with insert-before-instruction semantics.
639 ICmpInst(
640 Predicate pred, ///< The predicate to use for the comparison
641 Value *LHS, ///< The left-hand-side of the expression
642 Value *RHS, ///< The right-hand-side of the expression
643 const std::string &Name = "", ///< Name of the instruction
644 Instruction *InsertBefore = 0 ///< Where to insert
645 ) : CmpInst(Instruction::ICmp, pred, LHS, RHS, Name, InsertBefore) {
646 }
647
648 /// @brief Constructor with insert-at-block-end semantics.
649 ICmpInst(
650 Predicate pred, ///< The predicate to use for the comparison
651 Value *LHS, ///< The left-hand-side of the expression
652 Value *RHS, ///< The right-hand-side of the expression
653 const std::string &Name, ///< Name of the instruction
654 BasicBlock *InsertAtEnd ///< Block to insert into.
655 ) : CmpInst(Instruction::ICmp, pred, LHS, RHS, Name, InsertAtEnd) {
656 }
657
658 /// @brief Return the predicate for this instruction.
659 Predicate getPredicate() const { return Predicate(SubclassData); }
660
Chris Lattnerb769d562007-01-14 19:41:24 +0000661 /// @brief Set the predicate for this instruction to the specified value.
662 void setPredicate(Predicate P) { SubclassData = P; }
663
Reid Spencer45fb3f32006-11-20 01:22:35 +0000664 /// For example, EQ -> NE, UGT -> ULE, SLT -> SGE, etc.
665 /// @returns the inverse predicate for the instruction's current predicate.
666 /// @brief Return the inverse of the instruction's predicate.
667 Predicate getInversePredicate() const {
668 return getInversePredicate(getPredicate());
669 }
670
671 /// For example, EQ -> NE, UGT -> ULE, SLT -> SGE, etc.
672 /// @returns the inverse predicate for predicate provided in \p pred.
673 /// @brief Return the inverse of a given predicate
674 static Predicate getInversePredicate(Predicate pred);
675
676 /// For example, EQ->EQ, SLE->SGE, ULT->UGT, etc.
677 /// @returns the predicate that would be the result of exchanging the two
678 /// operands of the ICmpInst instruction without changing the result
679 /// produced.
680 /// @brief Return the predicate as if the operands were swapped
681 Predicate getSwappedPredicate() const {
682 return getSwappedPredicate(getPredicate());
683 }
684
685 /// This is a static version that you can use without an instruction
686 /// available.
687 /// @brief Return the predicate as if the operands were swapped.
Reid Spencere4d87aa2006-12-23 06:05:41 +0000688 static Predicate getSwappedPredicate(Predicate pred);
689
690 /// For example, EQ->EQ, SLE->SLE, UGT->SGT, etc.
691 /// @returns the predicate that would be the result if the operand were
692 /// regarded as signed.
693 /// @brief Return the signed version of the predicate
694 Predicate getSignedPredicate() const {
695 return getSignedPredicate(getPredicate());
696 }
697
698 /// This is a static version that you can use without an instruction.
699 /// @brief Return the signed version of the predicate.
700 static Predicate getSignedPredicate(Predicate pred);
Reid Spencer45fb3f32006-11-20 01:22:35 +0000701
Nick Lewycky4189a532008-01-28 03:48:02 +0000702 /// For example, EQ->EQ, SLE->ULE, UGT->UGT, etc.
703 /// @returns the predicate that would be the result if the operand were
704 /// regarded as unsigned.
705 /// @brief Return the unsigned version of the predicate
706 Predicate getUnsignedPredicate() const {
707 return getUnsignedPredicate(getPredicate());
708 }
709
710 /// This is a static version that you can use without an instruction.
711 /// @brief Return the unsigned version of the predicate.
712 static Predicate getUnsignedPredicate(Predicate pred);
713
Chris Lattnerc2bfadb2007-11-22 23:43:29 +0000714 /// isEquality - Return true if this predicate is either EQ or NE. This also
715 /// tests for commutativity.
716 static bool isEquality(Predicate P) {
717 return P == ICMP_EQ || P == ICMP_NE;
718 }
719
720 /// isEquality - Return true if this predicate is either EQ or NE. This also
721 /// tests for commutativity.
Reid Spencer45fb3f32006-11-20 01:22:35 +0000722 bool isEquality() const {
Chris Lattnerc2bfadb2007-11-22 23:43:29 +0000723 return isEquality(getPredicate());
Reid Spencer45fb3f32006-11-20 01:22:35 +0000724 }
Reid Spencere4d87aa2006-12-23 06:05:41 +0000725
726 /// @returns true if the predicate of this ICmpInst is commutative
727 /// @brief Determine if this relation is commutative.
Reid Spencer45fb3f32006-11-20 01:22:35 +0000728 bool isCommutative() const { return isEquality(); }
729
Chris Lattnerc2bfadb2007-11-22 23:43:29 +0000730 /// isRelational - Return true if the predicate is relational (not EQ or NE).
731 ///
Reid Spencer45fb3f32006-11-20 01:22:35 +0000732 bool isRelational() const {
733 return !isEquality();
734 }
735
Chris Lattnerc2bfadb2007-11-22 23:43:29 +0000736 /// isRelational - Return true if the predicate is relational (not EQ or NE).
737 ///
738 static bool isRelational(Predicate P) {
739 return !isEquality(P);
740 }
741
Reid Spencere4d87aa2006-12-23 06:05:41 +0000742 /// @returns true if the predicate of this ICmpInst is signed, false otherwise
743 /// @brief Determine if this instruction's predicate is signed.
Chris Lattner5bda9e42007-09-15 06:51:03 +0000744 bool isSignedPredicate() const { return isSignedPredicate(getPredicate()); }
Reid Spencere4d87aa2006-12-23 06:05:41 +0000745
746 /// @returns true if the predicate provided is signed, false otherwise
747 /// @brief Determine if the predicate is signed.
748 static bool isSignedPredicate(Predicate pred);
749
Reid Spencer3da43842007-02-28 22:00:54 +0000750 /// Initialize a set of values that all satisfy the predicate with C.
751 /// @brief Make a ConstantRange for a relation with a constant value.
752 static ConstantRange makeConstantRange(Predicate pred, const APInt &C);
753
Reid Spencer45fb3f32006-11-20 01:22:35 +0000754 /// Exchange the two operands to this instruction in such a way that it does
755 /// not modify the semantics of the instruction. The predicate value may be
756 /// changed to retain the same result if the predicate is order dependent
757 /// (e.g. ult).
758 /// @brief Swap operands and adjust predicate.
759 void swapOperands() {
760 SubclassData = getSwappedPredicate();
Gabor Greifefe65362008-05-10 08:32:32 +0000761 std::swap(Op<0>(), Op<1>());
Reid Spencer45fb3f32006-11-20 01:22:35 +0000762 }
763
Chris Lattnercd406fe2007-08-24 20:48:18 +0000764 virtual ICmpInst *clone() const;
765
Reid Spencer45fb3f32006-11-20 01:22:35 +0000766 // Methods for support type inquiry through isa, cast, and dyn_cast:
767 static inline bool classof(const ICmpInst *) { return true; }
768 static inline bool classof(const Instruction *I) {
769 return I->getOpcode() == Instruction::ICmp;
770 }
771 static inline bool classof(const Value *V) {
772 return isa<Instruction>(V) && classof(cast<Instruction>(V));
773 }
774};
775
776//===----------------------------------------------------------------------===//
777// FCmpInst Class
778//===----------------------------------------------------------------------===//
779
780/// This instruction compares its operands according to the predicate given
781/// to the constructor. It only operates on floating point values or packed
782/// vectors of floating point values. The operands must be identical types.
783/// @brief Represents a floating point comparison operator.
784class FCmpInst: public CmpInst {
785public:
786 /// This enumeration lists the possible predicates for the FCmpInst. Values
787 /// in the range 0-31 are reserved for FCmpInst.
788 enum Predicate {
789 // Opcode U L G E Intuitive operation
790 FCMP_FALSE = 0, ///< 0 0 0 0 Always false (always folded)
791 FCMP_OEQ = 1, ///< 0 0 0 1 True if ordered and equal
792 FCMP_OGT = 2, ///< 0 0 1 0 True if ordered and greater than
793 FCMP_OGE = 3, ///< 0 0 1 1 True if ordered and greater than or equal
794 FCMP_OLT = 4, ///< 0 1 0 0 True if ordered and less than
795 FCMP_OLE = 5, ///< 0 1 0 1 True if ordered and less than or equal
796 FCMP_ONE = 6, ///< 0 1 1 0 True if ordered and operands are unequal
797 FCMP_ORD = 7, ///< 0 1 1 1 True if ordered (no nans)
798 FCMP_UNO = 8, ///< 1 0 0 0 True if unordered: isnan(X) | isnan(Y)
799 FCMP_UEQ = 9, ///< 1 0 0 1 True if unordered or equal
800 FCMP_UGT =10, ///< 1 0 1 0 True if unordered or greater than
801 FCMP_UGE =11, ///< 1 0 1 1 True if unordered, greater than, or equal
802 FCMP_ULT =12, ///< 1 1 0 0 True if unordered or less than
803 FCMP_ULE =13, ///< 1 1 0 1 True if unordered, less than, or equal
804 FCMP_UNE =14, ///< 1 1 1 0 True if unordered or not equal
805 FCMP_TRUE =15, ///< 1 1 1 1 Always true (always folded)
806 FIRST_FCMP_PREDICATE = FCMP_FALSE,
Reid Spencere4d87aa2006-12-23 06:05:41 +0000807 LAST_FCMP_PREDICATE = FCMP_TRUE,
808 BAD_FCMP_PREDICATE = FCMP_TRUE + 1
Reid Spencer45fb3f32006-11-20 01:22:35 +0000809 };
810
811 /// @brief Constructor with insert-before-instruction semantics.
812 FCmpInst(
813 Predicate pred, ///< The predicate to use for the comparison
814 Value *LHS, ///< The left-hand-side of the expression
815 Value *RHS, ///< The right-hand-side of the expression
816 const std::string &Name = "", ///< Name of the instruction
817 Instruction *InsertBefore = 0 ///< Where to insert
818 ) : CmpInst(Instruction::FCmp, pred, LHS, RHS, Name, InsertBefore) {
819 }
820
821 /// @brief Constructor with insert-at-block-end semantics.
822 FCmpInst(
823 Predicate pred, ///< The predicate to use for the comparison
824 Value *LHS, ///< The left-hand-side of the expression
825 Value *RHS, ///< The right-hand-side of the expression
826 const std::string &Name, ///< Name of the instruction
827 BasicBlock *InsertAtEnd ///< Block to insert into.
828 ) : CmpInst(Instruction::FCmp, pred, LHS, RHS, Name, InsertAtEnd) {
829 }
830
831 /// @brief Return the predicate for this instruction.
832 Predicate getPredicate() const { return Predicate(SubclassData); }
833
Chris Lattnerb769d562007-01-14 19:41:24 +0000834 /// @brief Set the predicate for this instruction to the specified value.
835 void setPredicate(Predicate P) { SubclassData = P; }
836
Reid Spencer45fb3f32006-11-20 01:22:35 +0000837 /// For example, OEQ -> UNE, UGT -> OLE, OLT -> UGE, etc.
838 /// @returns the inverse predicate for the instructions current predicate.
839 /// @brief Return the inverse of the predicate
840 Predicate getInversePredicate() const {
841 return getInversePredicate(getPredicate());
842 }
843
844 /// For example, OEQ -> UNE, UGT -> OLE, OLT -> UGE, etc.
845 /// @returns the inverse predicate for \p pred.
846 /// @brief Return the inverse of a given predicate
847 static Predicate getInversePredicate(Predicate pred);
848
849 /// For example, OEQ->OEQ, ULE->UGE, OLT->OGT, etc.
850 /// @returns the predicate that would be the result of exchanging the two
851 /// operands of the ICmpInst instruction without changing the result
852 /// produced.
853 /// @brief Return the predicate as if the operands were swapped
854 Predicate getSwappedPredicate() const {
855 return getSwappedPredicate(getPredicate());
856 }
857
858 /// This is a static version that you can use without an instruction
859 /// available.
860 /// @brief Return the predicate as if the operands were swapped.
861 static Predicate getSwappedPredicate(Predicate Opcode);
862
863 /// This also tests for commutativity. If isEquality() returns true then
864 /// the predicate is also commutative. Only the equality predicates are
865 /// commutative.
866 /// @returns true if the predicate of this instruction is EQ or NE.
867 /// @brief Determine if this is an equality predicate.
868 bool isEquality() const {
869 return SubclassData == FCMP_OEQ || SubclassData == FCMP_ONE ||
870 SubclassData == FCMP_UEQ || SubclassData == FCMP_UNE;
871 }
872 bool isCommutative() const { return isEquality(); }
873
874 /// @returns true if the predicate is relational (not EQ or NE).
875 /// @brief Determine if this a relational predicate.
876 bool isRelational() const { return !isEquality(); }
877
878 /// Exchange the two operands to this instruction in such a way that it does
879 /// not modify the semantics of the instruction. The predicate value may be
880 /// changed to retain the same result if the predicate is order dependent
881 /// (e.g. ult).
882 /// @brief Swap operands and adjust predicate.
883 void swapOperands() {
884 SubclassData = getSwappedPredicate();
Gabor Greifefe65362008-05-10 08:32:32 +0000885 std::swap(Op<0>(), Op<1>());
Reid Spencer45fb3f32006-11-20 01:22:35 +0000886 }
887
Chris Lattnercd406fe2007-08-24 20:48:18 +0000888 virtual FCmpInst *clone() const;
889
Reid Spencer45fb3f32006-11-20 01:22:35 +0000890 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
891 static inline bool classof(const FCmpInst *) { return true; }
892 static inline bool classof(const Instruction *I) {
893 return I->getOpcode() == Instruction::FCmp;
894 }
895 static inline bool classof(const Value *V) {
896 return isa<Instruction>(V) && classof(cast<Instruction>(V));
897 }
898};
899
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000900//===----------------------------------------------------------------------===//
901// CallInst Class
902//===----------------------------------------------------------------------===//
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000903/// CallInst - This class represents a function call, abstracting a target
Chris Lattner3340ffe2005-05-06 20:26:26 +0000904/// machine's calling convention. This class uses low bit of the SubClassData
905/// field to indicate whether or not this is a tail call. The rest of the bits
906/// hold the calling convention of the call.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000907///
David Greene52eec542007-08-01 03:43:44 +0000908
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000909class CallInst : public Instruction {
Chris Lattner58d74912008-03-12 17:45:29 +0000910 PAListPtr ParamAttrs; ///< parameter attributes for call
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000911 CallInst(const CallInst &CI);
Chris Lattnerd54f4322007-02-13 00:58:44 +0000912 void init(Value *Func, Value* const *Params, unsigned NumParams);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000913 void init(Value *Func, Value *Actual1, Value *Actual2);
914 void init(Value *Func, Value *Actual);
915 void init(Value *Func);
916
David Greene52eec542007-08-01 03:43:44 +0000917 template<typename InputIterator>
918 void init(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd,
919 const std::string &Name,
920 // This argument ensures that we have an iterator we can
921 // do arithmetic on in constant time
922 std::random_access_iterator_tag) {
Chris Lattnera5c0d1e2007-08-29 16:32:50 +0000923 unsigned NumArgs = (unsigned)std::distance(ArgBegin, ArgEnd);
David Greene52eec542007-08-01 03:43:44 +0000924
Chris Lattnera5c0d1e2007-08-29 16:32:50 +0000925 // This requires that the iterator points to contiguous memory.
926 init(Func, NumArgs ? &*ArgBegin : 0, NumArgs);
David Greene52eec542007-08-01 03:43:44 +0000927 setName(Name);
928 }
929
David Greene52eec542007-08-01 03:43:44 +0000930 /// Construct a CallInst given a range of arguments. InputIterator
931 /// must be a random-access iterator pointing to contiguous storage
932 /// (e.g. a std::vector<>::iterator). Checks are made for
933 /// random-accessness but not for contiguous storage as that would
934 /// incur runtime overhead.
935 /// @brief Construct a CallInst from a range of arguments
936 template<typename InputIterator>
937 CallInst(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd,
Gabor Greifefe65362008-05-10 08:32:32 +0000938 const std::string &Name, Instruction *InsertBefore);
David Greene52eec542007-08-01 03:43:44 +0000939
940 /// Construct a CallInst given a range of arguments. InputIterator
941 /// must be a random-access iterator pointing to contiguous storage
942 /// (e.g. a std::vector<>::iterator). Checks are made for
943 /// random-accessness but not for contiguous storage as that would
944 /// incur runtime overhead.
945 /// @brief Construct a CallInst from a range of arguments
946 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +0000947 inline CallInst(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd,
948 const std::string &Name, BasicBlock *InsertAtEnd);
David Greene52eec542007-08-01 03:43:44 +0000949
Gabor Greifefe65362008-05-10 08:32:32 +0000950 CallInst(Value *F, Value *Actual, const std::string& Name,
951 Instruction *InsertBefore);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000952 CallInst(Value *F, Value *Actual, const std::string& Name,
953 BasicBlock *InsertAtEnd);
Gabor Greifefe65362008-05-10 08:32:32 +0000954 explicit CallInst(Value *F, const std::string &Name,
955 Instruction *InsertBefore);
Chris Lattnerf56a8db2006-10-03 17:09:12 +0000956 CallInst(Value *F, const std::string &Name, BasicBlock *InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +0000957public:
958 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +0000959 static CallInst *Create(Value *Func,
960 InputIterator ArgBegin, InputIterator ArgEnd,
Evan Chengd69bb1a2008-05-05 17:41:03 +0000961 const std::string &Name = "",
962 Instruction *InsertBefore = 0) {
963 return new(ArgEnd - ArgBegin + 1)
964 CallInst(Func, ArgBegin, ArgEnd, Name, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +0000965 }
966 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +0000967 static CallInst *Create(Value *Func,
968 InputIterator ArgBegin, InputIterator ArgEnd,
969 const std::string &Name, BasicBlock *InsertAtEnd) {
Evan Chengd69bb1a2008-05-05 17:41:03 +0000970 return new(ArgEnd - ArgBegin + 1)
971 CallInst(Func, ArgBegin, ArgEnd, Name, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +0000972 }
973 static CallInst *Create(Value *F, Value *Actual, const std::string& Name = "",
974 Instruction *InsertBefore = 0) {
975 return new(2) CallInst(F, Actual, Name, InsertBefore);
976 }
977 static CallInst *Create(Value *F, Value *Actual, const std::string& Name,
978 BasicBlock *InsertAtEnd) {
979 return new(2) CallInst(F, Actual, Name, InsertAtEnd);
980 }
981 static CallInst *Create(Value *F, const std::string &Name = "",
982 Instruction *InsertBefore = 0) {
983 return new(1) CallInst(F, Name, InsertBefore);
984 }
Evan Cheng34cd4a42008-05-05 18:30:58 +0000985 static CallInst *Create(Value *F, const std::string &Name,
986 BasicBlock *InsertAtEnd) {
Gabor Greif051a9502008-04-06 20:25:17 +0000987 return new(1) CallInst(F, Name, InsertAtEnd);
988 }
989
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000990 ~CallInst();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000991
Chris Lattnerf319e832004-10-15 23:52:05 +0000992 virtual CallInst *clone() const;
Gabor Greifefe65362008-05-10 08:32:32 +0000993
994 /// Provide fast operand accessors
995 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Chris Lattnerbb5493d2007-02-15 23:15:00 +0000996
Chris Lattner3340ffe2005-05-06 20:26:26 +0000997 bool isTailCall() const { return SubclassData & 1; }
998 void setTailCall(bool isTailCall = true) {
Jeff Cohen39cef602005-05-07 02:44:04 +0000999 SubclassData = (SubclassData & ~1) | unsigned(isTailCall);
Chris Lattner3340ffe2005-05-06 20:26:26 +00001000 }
1001
1002 /// getCallingConv/setCallingConv - Get or set the calling convention of this
1003 /// function call.
1004 unsigned getCallingConv() const { return SubclassData >> 1; }
1005 void setCallingConv(unsigned CC) {
1006 SubclassData = (SubclassData & 1) | (CC << 1);
1007 }
Chris Lattnerddb6db42005-05-06 05:51:46 +00001008
Chris Lattner041221c2008-03-13 04:33:03 +00001009 /// getParamAttrs - Return the parameter attributes for this call.
1010 ///
Chris Lattner58d74912008-03-12 17:45:29 +00001011 const PAListPtr &getParamAttrs() const { return ParamAttrs; }
Reid Spencer4746ecf2007-04-09 15:01:12 +00001012
Chris Lattner041221c2008-03-13 04:33:03 +00001013 /// setParamAttrs - Sets the parameter attributes for this call.
Chris Lattner58d74912008-03-12 17:45:29 +00001014 void setParamAttrs(const PAListPtr &Attrs) { ParamAttrs = Attrs; }
Duncan Sandsdc024672007-11-27 13:23:08 +00001015
Duncan Sandsafa3b6d2007-11-28 17:07:01 +00001016 /// @brief Determine whether the call or the callee has the given attribute.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001017 bool paramHasAttr(unsigned i, unsigned attr) const;
Duncan Sandsafa3b6d2007-11-28 17:07:01 +00001018
Dale Johannesen08e78b12008-02-22 17:49:45 +00001019 /// @brief Extract the alignment for a call or parameter (0=unknown).
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001020 unsigned getParamAlignment(unsigned i) const {
1021 return ParamAttrs.getParamAlignment(i);
1022 }
Dale Johannesen08e78b12008-02-22 17:49:45 +00001023
Duncan Sandsa3355ff2007-12-03 20:06:50 +00001024 /// @brief Determine if the call does not access memory.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001025 bool doesNotAccessMemory() const {
1026 return paramHasAttr(0, ParamAttr::ReadNone);
1027 }
Chris Lattner50ee9dd2008-01-02 23:42:30 +00001028
Duncan Sandsa3355ff2007-12-03 20:06:50 +00001029 /// @brief Determine if the call does not access or only reads memory.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001030 bool onlyReadsMemory() const {
1031 return doesNotAccessMemory() || paramHasAttr(0, ParamAttr::ReadOnly);
1032 }
Chris Lattner50ee9dd2008-01-02 23:42:30 +00001033
Duncan Sandscbb8bad2007-12-10 19:09:40 +00001034 /// @brief Determine if the call cannot return.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001035 bool doesNotReturn() const {
1036 return paramHasAttr(0, ParamAttr::NoReturn);
1037 }
Duncan Sandscbb8bad2007-12-10 19:09:40 +00001038
Duncan Sandsa3355ff2007-12-03 20:06:50 +00001039 /// @brief Determine if the call cannot unwind.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001040 bool doesNotThrow() const {
1041 return paramHasAttr(0, ParamAttr::NoUnwind);
1042 }
Duncan Sandsf0c33542007-12-19 21:13:37 +00001043 void setDoesNotThrow(bool doesNotThrow = true);
Duncan Sandsa3355ff2007-12-03 20:06:50 +00001044
Devang Patel41e23972008-03-03 21:46:28 +00001045 /// @brief Determine if the call returns a structure through first
1046 /// pointer argument.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001047 bool hasStructRetAttr() const {
1048 // Be friendly and also check the callee.
1049 return paramHasAttr(1, ParamAttr::StructRet);
1050 }
Reid Spencer4746ecf2007-04-09 15:01:12 +00001051
Evan Chengf4a54982008-01-12 18:57:32 +00001052 /// @brief Determine if any call argument is an aggregate passed by value.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001053 bool hasByValArgument() const {
1054 return ParamAttrs.hasAttrSomewhere(ParamAttr::ByVal);
1055 }
Evan Chengf4a54982008-01-12 18:57:32 +00001056
Chris Lattner721aef62004-11-18 17:46:57 +00001057 /// getCalledFunction - Return the function being called by this instruction
1058 /// if it is a direct call. If it is a call through a function pointer,
1059 /// return null.
1060 Function *getCalledFunction() const {
Dan Gohman11a7dbf2007-09-24 15:46:02 +00001061 return dyn_cast<Function>(getOperand(0));
Chris Lattner721aef62004-11-18 17:46:57 +00001062 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001063
Reid Spencerc25ec252006-12-29 04:10:59 +00001064 /// getCalledValue - Get a pointer to the function that is invoked by this
1065 /// instruction
Devang Patel4d4a5e02008-02-23 01:11:02 +00001066 const Value *getCalledValue() const { return getOperand(0); }
1067 Value *getCalledValue() { return getOperand(0); }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001068
1069 // Methods for support type inquiry through isa, cast, and dyn_cast:
1070 static inline bool classof(const CallInst *) { return true; }
1071 static inline bool classof(const Instruction *I) {
Misha Brukman9769ab22005-04-21 20:19:05 +00001072 return I->getOpcode() == Instruction::Call;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001073 }
1074 static inline bool classof(const Value *V) {
1075 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1076 }
1077};
1078
Gabor Greifefe65362008-05-10 08:32:32 +00001079template <>
1080struct OperandTraits<CallInst> : VariadicOperandTraits<1> {
1081};
1082
1083template<typename InputIterator>
1084CallInst::CallInst(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd,
1085 const std::string &Name, BasicBlock *InsertAtEnd)
1086 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
1087 ->getElementType())->getReturnType(),
1088 Instruction::Call,
1089 OperandTraits<CallInst>::op_end(this) - (ArgEnd - ArgBegin + 1),
1090 ArgEnd - ArgBegin + 1, InsertAtEnd) {
1091 init(Func, ArgBegin, ArgEnd, Name,
1092 typename std::iterator_traits<InputIterator>::iterator_category());
1093}
1094
1095template<typename InputIterator>
1096CallInst::CallInst(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd,
1097 const std::string &Name, Instruction *InsertBefore)
1098 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
1099 ->getElementType())->getReturnType(),
1100 Instruction::Call,
1101 OperandTraits<CallInst>::op_end(this) - (ArgEnd - ArgBegin + 1),
1102 ArgEnd - ArgBegin + 1, InsertBefore) {
1103 init(Func, ArgBegin, ArgEnd, Name,
1104 typename std::iterator_traits<InputIterator>::iterator_category());
1105}
1106
1107DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CallInst, Value)
1108
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001109//===----------------------------------------------------------------------===//
1110// SelectInst Class
1111//===----------------------------------------------------------------------===//
1112
1113/// SelectInst - This class represents the LLVM 'select' instruction.
1114///
1115class SelectInst : public Instruction {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001116 void init(Value *C, Value *S1, Value *S2) {
Gabor Greifefe65362008-05-10 08:32:32 +00001117 Op<0>() = C;
1118 Op<1>() = S1;
1119 Op<2>() = S2;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001120 }
1121
Chris Lattner454928e2005-01-29 00:31:36 +00001122 SelectInst(const SelectInst &SI)
Gabor Greifefe65362008-05-10 08:32:32 +00001123 : Instruction(SI.getType(), SI.getOpcode(), &Op<0>(), 3) {
1124 init(SI.Op<0>(), SI.Op<1>(), SI.Op<2>());
Chris Lattner454928e2005-01-29 00:31:36 +00001125 }
Gabor Greifefe65362008-05-10 08:32:32 +00001126 SelectInst(Value *C, Value *S1, Value *S2, const std::string &Name,
1127 Instruction *InsertBefore)
1128 : Instruction(S1->getType(), Instruction::Select,
1129 &Op<0>(), 3, InsertBefore) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001130 init(C, S1, S2);
Chris Lattner910c80a2007-02-24 00:55:48 +00001131 setName(Name);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001132 }
1133 SelectInst(Value *C, Value *S1, Value *S2, const std::string &Name,
1134 BasicBlock *InsertAtEnd)
Gabor Greifefe65362008-05-10 08:32:32 +00001135 : Instruction(S1->getType(), Instruction::Select,
1136 &Op<0>(), 3, InsertAtEnd) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001137 init(C, S1, S2);
Chris Lattner910c80a2007-02-24 00:55:48 +00001138 setName(Name);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001139 }
Gabor Greif051a9502008-04-06 20:25:17 +00001140public:
Evan Chengd69bb1a2008-05-05 17:41:03 +00001141 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1142 const std::string &Name = "",
1143 Instruction *InsertBefore = 0) {
Gabor Greif051a9502008-04-06 20:25:17 +00001144 return new(3) SelectInst(C, S1, S2, Name, InsertBefore);
1145 }
Evan Chengd69bb1a2008-05-05 17:41:03 +00001146 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1147 const std::string &Name, BasicBlock *InsertAtEnd) {
Gabor Greif051a9502008-04-06 20:25:17 +00001148 return new(3) SelectInst(C, S1, S2, Name, InsertAtEnd);
1149 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001150
Gabor Greifefe65362008-05-10 08:32:32 +00001151 Value *getCondition() const { return Op<0>(); }
1152 Value *getTrueValue() const { return Op<1>(); }
1153 Value *getFalseValue() const { return Op<2>(); }
Chris Lattner454928e2005-01-29 00:31:36 +00001154
1155 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +00001156 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001157
1158 OtherOps getOpcode() const {
1159 return static_cast<OtherOps>(Instruction::getOpcode());
1160 }
1161
Chris Lattnerf319e832004-10-15 23:52:05 +00001162 virtual SelectInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001163
1164 // Methods for support type inquiry through isa, cast, and dyn_cast:
1165 static inline bool classof(const SelectInst *) { return true; }
1166 static inline bool classof(const Instruction *I) {
1167 return I->getOpcode() == Instruction::Select;
1168 }
1169 static inline bool classof(const Value *V) {
1170 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1171 }
1172};
1173
Gabor Greifefe65362008-05-10 08:32:32 +00001174template <>
1175struct OperandTraits<SelectInst> : FixedNumOperandTraits<3> {
1176};
1177
1178DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SelectInst, Value)
1179
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001180//===----------------------------------------------------------------------===//
1181// VAArgInst Class
1182//===----------------------------------------------------------------------===//
1183
1184/// VAArgInst - This class represents the va_arg llvm instruction, which returns
Andrew Lenharthf5428212005-06-18 18:31:30 +00001185/// an argument of the specified type given a va_list and increments that list
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001186///
Chris Lattner454928e2005-01-29 00:31:36 +00001187class VAArgInst : public UnaryInstruction {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001188 VAArgInst(const VAArgInst &VAA)
Chris Lattner454928e2005-01-29 00:31:36 +00001189 : UnaryInstruction(VAA.getType(), VAArg, VAA.getOperand(0)) {}
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001190public:
1191 VAArgInst(Value *List, const Type *Ty, const std::string &Name = "",
1192 Instruction *InsertBefore = 0)
Chris Lattner910c80a2007-02-24 00:55:48 +00001193 : UnaryInstruction(Ty, VAArg, List, InsertBefore) {
Chris Lattnerf00042a2007-02-13 07:54:42 +00001194 setName(Name);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001195 }
1196 VAArgInst(Value *List, const Type *Ty, const std::string &Name,
1197 BasicBlock *InsertAtEnd)
Chris Lattner910c80a2007-02-24 00:55:48 +00001198 : UnaryInstruction(Ty, VAArg, List, InsertAtEnd) {
Chris Lattnerf00042a2007-02-13 07:54:42 +00001199 setName(Name);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001200 }
1201
Chris Lattnerf319e832004-10-15 23:52:05 +00001202 virtual VAArgInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001203
1204 // Methods for support type inquiry through isa, cast, and dyn_cast:
1205 static inline bool classof(const VAArgInst *) { return true; }
1206 static inline bool classof(const Instruction *I) {
1207 return I->getOpcode() == VAArg;
1208 }
1209 static inline bool classof(const Value *V) {
1210 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1211 }
1212};
1213
1214//===----------------------------------------------------------------------===//
Robert Bocchino49b78a52006-01-10 19:04:13 +00001215// ExtractElementInst Class
1216//===----------------------------------------------------------------------===//
1217
1218/// ExtractElementInst - This instruction extracts a single (scalar)
Reid Spencer9d6565a2007-02-15 02:26:10 +00001219/// element from a VectorType value
Robert Bocchino49b78a52006-01-10 19:04:13 +00001220///
1221class ExtractElementInst : public Instruction {
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001222 ExtractElementInst(const ExtractElementInst &EE) :
Gabor Greifefe65362008-05-10 08:32:32 +00001223 Instruction(EE.getType(), ExtractElement, &Op<0>(), 2) {
1224 Op<0>().init(EE.Op<0>(), this);
1225 Op<1>().init(EE.Op<1>(), this);
Robert Bocchino49b78a52006-01-10 19:04:13 +00001226 }
1227
1228public:
Gabor Greif051a9502008-04-06 20:25:17 +00001229 // allocate space for exactly two operands
1230 void *operator new(size_t s) {
Gabor Greifefe65362008-05-10 08:32:32 +00001231 return User::operator new(s, 2); // FIXME: "unsigned Idx" forms of ctor?
Gabor Greif051a9502008-04-06 20:25:17 +00001232 }
Chris Lattner9fc18d22006-04-08 01:15:18 +00001233 ExtractElementInst(Value *Vec, Value *Idx, const std::string &Name = "",
1234 Instruction *InsertBefore = 0);
Chris Lattner06a248c22006-10-05 06:24:58 +00001235 ExtractElementInst(Value *Vec, unsigned Idx, const std::string &Name = "",
1236 Instruction *InsertBefore = 0);
Chris Lattner9fc18d22006-04-08 01:15:18 +00001237 ExtractElementInst(Value *Vec, Value *Idx, const std::string &Name,
1238 BasicBlock *InsertAtEnd);
Chris Lattner06a248c22006-10-05 06:24:58 +00001239 ExtractElementInst(Value *Vec, unsigned Idx, const std::string &Name,
1240 BasicBlock *InsertAtEnd);
Robert Bocchino49b78a52006-01-10 19:04:13 +00001241
Chris Lattnerfa495842006-04-08 04:04:54 +00001242 /// isValidOperands - Return true if an extractelement instruction can be
1243 /// formed with the specified operands.
1244 static bool isValidOperands(const Value *Vec, const Value *Idx);
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001245
Robert Bocchino49b78a52006-01-10 19:04:13 +00001246 virtual ExtractElementInst *clone() const;
1247
Robert Bocchino49b78a52006-01-10 19:04:13 +00001248 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +00001249 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Robert Bocchino49b78a52006-01-10 19:04:13 +00001250
1251 // Methods for support type inquiry through isa, cast, and dyn_cast:
1252 static inline bool classof(const ExtractElementInst *) { return true; }
1253 static inline bool classof(const Instruction *I) {
1254 return I->getOpcode() == Instruction::ExtractElement;
1255 }
1256 static inline bool classof(const Value *V) {
1257 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1258 }
1259};
1260
Gabor Greifefe65362008-05-10 08:32:32 +00001261template <>
1262struct OperandTraits<ExtractElementInst> : FixedNumOperandTraits<2> {
1263};
1264
1265DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractElementInst, Value)
1266
Robert Bocchino49b78a52006-01-10 19:04:13 +00001267//===----------------------------------------------------------------------===//
Robert Bocchinof9993442006-01-17 20:05:59 +00001268// InsertElementInst Class
1269//===----------------------------------------------------------------------===//
1270
1271/// InsertElementInst - This instruction inserts a single (scalar)
Reid Spencer9d6565a2007-02-15 02:26:10 +00001272/// element into a VectorType value
Robert Bocchinof9993442006-01-17 20:05:59 +00001273///
1274class InsertElementInst : public Instruction {
Chris Lattner6a56ed42006-04-14 22:20:07 +00001275 InsertElementInst(const InsertElementInst &IE);
Gabor Greif051a9502008-04-06 20:25:17 +00001276 InsertElementInst(Value *Vec, Value *NewElt, Value *Idx,
1277 const std::string &Name = "",Instruction *InsertBefore = 0);
1278 InsertElementInst(Value *Vec, Value *NewElt, unsigned Idx,
1279 const std::string &Name = "",Instruction *InsertBefore = 0);
1280 InsertElementInst(Value *Vec, Value *NewElt, Value *Idx,
1281 const std::string &Name, BasicBlock *InsertAtEnd);
1282 InsertElementInst(Value *Vec, Value *NewElt, unsigned Idx,
1283 const std::string &Name, BasicBlock *InsertAtEnd);
Robert Bocchinof9993442006-01-17 20:05:59 +00001284public:
Gabor Greif051a9502008-04-06 20:25:17 +00001285 static InsertElementInst *Create(const InsertElementInst &IE) {
1286 return new(IE.getNumOperands()) InsertElementInst(IE);
1287 }
1288 static InsertElementInst *Create(Value *Vec, Value *NewElt, Value *Idx,
Gabor Greifefe65362008-05-10 08:32:32 +00001289 const std::string &Name = "",
1290 Instruction *InsertBefore = 0) {
Gabor Greif051a9502008-04-06 20:25:17 +00001291 return new(3) InsertElementInst(Vec, NewElt, Idx, Name, InsertBefore);
1292 }
1293 static InsertElementInst *Create(Value *Vec, Value *NewElt, unsigned Idx,
Evan Chengd69bb1a2008-05-05 17:41:03 +00001294 const std::string &Name = "",
1295 Instruction *InsertBefore = 0) {
Gabor Greifefe65362008-05-10 08:32:32 +00001296 return new(3) InsertElementInst(Vec, NewElt, Idx, Name, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00001297 }
1298 static InsertElementInst *Create(Value *Vec, Value *NewElt, Value *Idx,
Evan Chengd69bb1a2008-05-05 17:41:03 +00001299 const std::string &Name,
1300 BasicBlock *InsertAtEnd) {
Gabor Greif051a9502008-04-06 20:25:17 +00001301 return new(3) InsertElementInst(Vec, NewElt, Idx, Name, InsertAtEnd);
1302 }
1303 static InsertElementInst *Create(Value *Vec, Value *NewElt, unsigned Idx,
Evan Chengd69bb1a2008-05-05 17:41:03 +00001304 const std::string &Name,
1305 BasicBlock *InsertAtEnd) {
Gabor Greifefe65362008-05-10 08:32:32 +00001306 return new(3) InsertElementInst(Vec, NewElt, Idx, Name, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001307 }
Robert Bocchinof9993442006-01-17 20:05:59 +00001308
Chris Lattnerfa495842006-04-08 04:04:54 +00001309 /// isValidOperands - Return true if an insertelement instruction can be
1310 /// formed with the specified operands.
1311 static bool isValidOperands(const Value *Vec, const Value *NewElt,
1312 const Value *Idx);
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001313
Robert Bocchinof9993442006-01-17 20:05:59 +00001314 virtual InsertElementInst *clone() const;
1315
Reid Spencerac9dcb92007-02-15 03:39:18 +00001316 /// getType - Overload to return most specific vector type.
Chris Lattner6a56ed42006-04-14 22:20:07 +00001317 ///
Devang Patel4d4a5e02008-02-23 01:11:02 +00001318 const VectorType *getType() const {
Reid Spencer9d6565a2007-02-15 02:26:10 +00001319 return reinterpret_cast<const VectorType*>(Instruction::getType());
Chris Lattner6a56ed42006-04-14 22:20:07 +00001320 }
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001321
Robert Bocchinof9993442006-01-17 20:05:59 +00001322 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +00001323 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Robert Bocchinof9993442006-01-17 20:05:59 +00001324
1325 // Methods for support type inquiry through isa, cast, and dyn_cast:
1326 static inline bool classof(const InsertElementInst *) { return true; }
1327 static inline bool classof(const Instruction *I) {
1328 return I->getOpcode() == Instruction::InsertElement;
1329 }
1330 static inline bool classof(const Value *V) {
1331 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1332 }
1333};
1334
Gabor Greifefe65362008-05-10 08:32:32 +00001335template <>
1336struct OperandTraits<InsertElementInst> : FixedNumOperandTraits<3> {
1337};
1338
1339DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertElementInst, Value)
1340
Robert Bocchinof9993442006-01-17 20:05:59 +00001341//===----------------------------------------------------------------------===//
Chris Lattner9fc18d22006-04-08 01:15:18 +00001342// ShuffleVectorInst Class
1343//===----------------------------------------------------------------------===//
1344
1345/// ShuffleVectorInst - This instruction constructs a fixed permutation of two
1346/// input vectors.
1347///
1348class ShuffleVectorInst : public Instruction {
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001349 ShuffleVectorInst(const ShuffleVectorInst &IE);
Chris Lattner9fc18d22006-04-08 01:15:18 +00001350public:
Gabor Greif051a9502008-04-06 20:25:17 +00001351 // allocate space for exactly three operands
1352 void *operator new(size_t s) {
1353 return User::operator new(s, 3);
1354 }
Chris Lattner9fc18d22006-04-08 01:15:18 +00001355 ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
1356 const std::string &Name = "", Instruction *InsertBefor = 0);
1357 ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
1358 const std::string &Name, BasicBlock *InsertAtEnd);
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001359
Chris Lattnerfa495842006-04-08 04:04:54 +00001360 /// isValidOperands - Return true if a shufflevector instruction can be
Chris Lattner9fc18d22006-04-08 01:15:18 +00001361 /// formed with the specified operands.
1362 static bool isValidOperands(const Value *V1, const Value *V2,
1363 const Value *Mask);
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001364
Chris Lattner9fc18d22006-04-08 01:15:18 +00001365 virtual ShuffleVectorInst *clone() const;
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001366
Reid Spencerac9dcb92007-02-15 03:39:18 +00001367 /// getType - Overload to return most specific vector type.
Chris Lattner6a56ed42006-04-14 22:20:07 +00001368 ///
Devang Patel4d4a5e02008-02-23 01:11:02 +00001369 const VectorType *getType() const {
Reid Spencer9d6565a2007-02-15 02:26:10 +00001370 return reinterpret_cast<const VectorType*>(Instruction::getType());
Chris Lattner6a56ed42006-04-14 22:20:07 +00001371 }
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001372
Chris Lattner9fc18d22006-04-08 01:15:18 +00001373 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +00001374 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Chris Lattner8728f192008-03-02 05:28:33 +00001375
1376 /// getMaskValue - Return the index from the shuffle mask for the specified
1377 /// output result. This is either -1 if the element is undef or a number less
1378 /// than 2*numelements.
1379 int getMaskValue(unsigned i) const;
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001380
Chris Lattner9fc18d22006-04-08 01:15:18 +00001381 // Methods for support type inquiry through isa, cast, and dyn_cast:
1382 static inline bool classof(const ShuffleVectorInst *) { return true; }
1383 static inline bool classof(const Instruction *I) {
1384 return I->getOpcode() == Instruction::ShuffleVector;
1385 }
1386 static inline bool classof(const Value *V) {
1387 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1388 }
1389};
1390
Gabor Greifefe65362008-05-10 08:32:32 +00001391template <>
1392struct OperandTraits<ShuffleVectorInst> : FixedNumOperandTraits<3> {
1393};
1394
1395DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ShuffleVectorInst, Value)
Chris Lattner9fc18d22006-04-08 01:15:18 +00001396
1397//===----------------------------------------------------------------------===//
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001398// PHINode Class
1399//===----------------------------------------------------------------------===//
1400
1401// PHINode - The PHINode class is used to represent the magical mystical PHI
1402// node, that can not exist in nature, but can be synthesized in a computer
1403// scientist's overactive imagination.
1404//
1405class PHINode : public Instruction {
Gabor Greif051a9502008-04-06 20:25:17 +00001406 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Chris Lattner454928e2005-01-29 00:31:36 +00001407 /// ReservedSpace - The number of operands actually allocated. NumOperands is
1408 /// the number actually in use.
1409 unsigned ReservedSpace;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001410 PHINode(const PHINode &PN);
Gabor Greif051a9502008-04-06 20:25:17 +00001411 // allocate space for exactly zero operands
1412 void *operator new(size_t s) {
1413 return User::operator new(s, 0);
1414 }
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001415 explicit PHINode(const Type *Ty, const std::string &Name = "",
1416 Instruction *InsertBefore = 0)
Chris Lattner910c80a2007-02-24 00:55:48 +00001417 : Instruction(Ty, Instruction::PHI, 0, 0, InsertBefore),
Chris Lattner454928e2005-01-29 00:31:36 +00001418 ReservedSpace(0) {
Chris Lattner910c80a2007-02-24 00:55:48 +00001419 setName(Name);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001420 }
1421
1422 PHINode(const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd)
Chris Lattner910c80a2007-02-24 00:55:48 +00001423 : Instruction(Ty, Instruction::PHI, 0, 0, InsertAtEnd),
Chris Lattner454928e2005-01-29 00:31:36 +00001424 ReservedSpace(0) {
Chris Lattner910c80a2007-02-24 00:55:48 +00001425 setName(Name);
Chris Lattner454928e2005-01-29 00:31:36 +00001426 }
Gabor Greif051a9502008-04-06 20:25:17 +00001427public:
1428 static PHINode *Create(const Type *Ty, const std::string &Name = "",
1429 Instruction *InsertBefore = 0) {
1430 return new PHINode(Ty, Name, InsertBefore);
1431 }
Evan Chengd69bb1a2008-05-05 17:41:03 +00001432 static PHINode *Create(const Type *Ty, const std::string &Name,
1433 BasicBlock *InsertAtEnd) {
Gabor Greif051a9502008-04-06 20:25:17 +00001434 return new PHINode(Ty, Name, InsertAtEnd);
1435 }
Gordon Henriksenafba8fe2007-12-10 02:14:30 +00001436 ~PHINode();
1437
Chris Lattner454928e2005-01-29 00:31:36 +00001438 /// reserveOperandSpace - This method can be used to avoid repeated
1439 /// reallocation of PHI operand lists by reserving space for the correct
1440 /// number of operands before adding them. Unlike normal vector reserves,
1441 /// this method can also be used to trim the operand space.
1442 void reserveOperandSpace(unsigned NumValues) {
1443 resizeOperands(NumValues*2);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001444 }
1445
Chris Lattnerf319e832004-10-15 23:52:05 +00001446 virtual PHINode *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001447
Gabor Greifefe65362008-05-10 08:32:32 +00001448 /// Provide fast operand accessors
1449 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
1450
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001451 /// getNumIncomingValues - Return the number of incoming edges
1452 ///
Chris Lattner454928e2005-01-29 00:31:36 +00001453 unsigned getNumIncomingValues() const { return getNumOperands()/2; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001454
Reid Spencerc773de62006-05-19 19:07:54 +00001455 /// getIncomingValue - Return incoming value number x
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001456 ///
1457 Value *getIncomingValue(unsigned i) const {
Chris Lattner454928e2005-01-29 00:31:36 +00001458 assert(i*2 < getNumOperands() && "Invalid value number!");
1459 return getOperand(i*2);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001460 }
1461 void setIncomingValue(unsigned i, Value *V) {
Chris Lattner454928e2005-01-29 00:31:36 +00001462 assert(i*2 < getNumOperands() && "Invalid value number!");
1463 setOperand(i*2, V);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001464 }
Chris Lattner454928e2005-01-29 00:31:36 +00001465 unsigned getOperandNumForIncomingValue(unsigned i) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001466 return i*2;
1467 }
1468
Reid Spencerc773de62006-05-19 19:07:54 +00001469 /// getIncomingBlock - Return incoming basic block number x
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001470 ///
Misha Brukman9769ab22005-04-21 20:19:05 +00001471 BasicBlock *getIncomingBlock(unsigned i) const {
Gabor Greifefe65362008-05-10 08:32:32 +00001472 return static_cast<BasicBlock*>(getOperand(i*2+1));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001473 }
1474 void setIncomingBlock(unsigned i, BasicBlock *BB) {
Gabor Greifefe65362008-05-10 08:32:32 +00001475 setOperand(i*2+1, BB);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001476 }
1477 unsigned getOperandNumForIncomingBlock(unsigned i) {
1478 return i*2+1;
1479 }
1480
1481 /// addIncoming - Add an incoming value to the end of the PHI list
1482 ///
1483 void addIncoming(Value *V, BasicBlock *BB) {
Anton Korobeynikov351b0d42008-02-27 22:37:28 +00001484 assert(V && "PHI node got a null value!");
1485 assert(BB && "PHI node got a null basic block!");
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001486 assert(getType() == V->getType() &&
1487 "All operands to PHI node must be the same type as the PHI node!");
Chris Lattner454928e2005-01-29 00:31:36 +00001488 unsigned OpNo = NumOperands;
1489 if (OpNo+2 > ReservedSpace)
1490 resizeOperands(0); // Get more space!
1491 // Initialize some new operands.
1492 NumOperands = OpNo+2;
1493 OperandList[OpNo].init(V, this);
Gabor Greifefe65362008-05-10 08:32:32 +00001494 OperandList[OpNo+1].init(BB, this);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001495 }
Misha Brukman9769ab22005-04-21 20:19:05 +00001496
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001497 /// removeIncomingValue - Remove an incoming value. This is useful if a
1498 /// predecessor basic block is deleted. The value removed is returned.
1499 ///
1500 /// If the last incoming value for a PHI node is removed (and DeletePHIIfEmpty
1501 /// is true), the PHI node is destroyed and any uses of it are replaced with
1502 /// dummy values. The only time there should be zero incoming values to a PHI
1503 /// node is when the block is dead, so this strategy is sound.
1504 ///
1505 Value *removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty = true);
1506
Gabor Greifefe65362008-05-10 08:32:32 +00001507 Value *removeIncomingValue(const BasicBlock *BB, bool DeletePHIIfEmpty=true) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001508 int Idx = getBasicBlockIndex(BB);
1509 assert(Idx >= 0 && "Invalid basic block argument to remove!");
1510 return removeIncomingValue(Idx, DeletePHIIfEmpty);
1511 }
1512
Misha Brukman9769ab22005-04-21 20:19:05 +00001513 /// getBasicBlockIndex - Return the first index of the specified basic
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001514 /// block in the value list for this PHI. Returns -1 if no instance.
1515 ///
1516 int getBasicBlockIndex(const BasicBlock *BB) const {
Chris Lattner454928e2005-01-29 00:31:36 +00001517 Use *OL = OperandList;
Misha Brukman9769ab22005-04-21 20:19:05 +00001518 for (unsigned i = 0, e = getNumOperands(); i != e; i += 2)
Gabor Greifefe65362008-05-10 08:32:32 +00001519 if (OL[i+1].get() == BB) return i/2;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001520 return -1;
1521 }
1522
1523 Value *getIncomingValueForBlock(const BasicBlock *BB) const {
1524 return getIncomingValue(getBasicBlockIndex(BB));
1525 }
1526
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001527 /// hasConstantValue - If the specified PHI node always merges together the
Nate Begemana83ba0f2005-08-04 23:24:19 +00001528 /// same value, return the value, otherwise return null.
1529 ///
Chris Lattner9acbd612005-08-05 00:49:06 +00001530 Value *hasConstantValue(bool AllowNonDominatingInstruction = false) const;
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001531
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001532 /// Methods for support type inquiry through isa, cast, and dyn_cast:
1533 static inline bool classof(const PHINode *) { return true; }
1534 static inline bool classof(const Instruction *I) {
Misha Brukman9769ab22005-04-21 20:19:05 +00001535 return I->getOpcode() == Instruction::PHI;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001536 }
1537 static inline bool classof(const Value *V) {
1538 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1539 }
Chris Lattner454928e2005-01-29 00:31:36 +00001540 private:
1541 void resizeOperands(unsigned NumOperands);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001542};
1543
Gabor Greifefe65362008-05-10 08:32:32 +00001544template <>
1545struct OperandTraits<PHINode> : HungoffOperandTraits<2> {
1546};
1547
1548DEFINE_TRANSPARENT_OPERAND_ACCESSORS(PHINode, Value)
1549
1550
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001551//===----------------------------------------------------------------------===//
1552// ReturnInst Class
1553//===----------------------------------------------------------------------===//
1554
1555//===---------------------------------------------------------------------------
1556/// ReturnInst - Return a value (possibly void), from a function. Execution
1557/// does not continue in this function any longer.
1558///
1559class ReturnInst : public TerminatorInst {
Chris Lattner910c80a2007-02-24 00:55:48 +00001560 ReturnInst(const ReturnInst &RI);
Devang Patelfea98302008-02-26 19:15:26 +00001561 void init(Value * const* retVals, unsigned N);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001562
Gabor Greif051a9502008-04-06 20:25:17 +00001563private:
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001564 // ReturnInst constructors:
1565 // ReturnInst() - 'ret void' instruction
Alkis Evlogimenos859804f2004-11-17 21:02:25 +00001566 // ReturnInst( null) - 'ret void' instruction
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001567 // ReturnInst(Value* X) - 'ret X' instruction
Gabor Greifefe65362008-05-10 08:32:32 +00001568 // ReturnInst( null, Inst *I) - 'ret void' instruction, insert before I
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001569 // ReturnInst(Value* X, Inst *I) - 'ret X' instruction, insert before I
Gabor Greifefe65362008-05-10 08:32:32 +00001570 // ReturnInst( null, BB *B) - 'ret void' instruction, insert @ end of B
1571 // ReturnInst(Value* X, BB *B) - 'ret X' instruction, insert @ end of B
Devang Patele6be34a2008-02-27 01:20:54 +00001572 // ReturnInst(Value* X, N) - 'ret X,X+1...X+N-1' instruction
Gabor Greifefe65362008-05-10 08:32:32 +00001573 // ReturnInst(Value* X, N, Inst *I) - 'ret X,X+1...X+N-1', insert before I
1574 // ReturnInst(Value* X, N, BB *B) - 'ret X,X+1...X+N-1', insert @ end of B
Alkis Evlogimenos859804f2004-11-17 21:02:25 +00001575 //
1576 // NOTE: If the Value* passed is of type void then the constructor behaves as
1577 // if it was passed NULL.
Chris Lattner910c80a2007-02-24 00:55:48 +00001578 explicit ReturnInst(Value *retVal = 0, Instruction *InsertBefore = 0);
1579 ReturnInst(Value *retVal, BasicBlock *InsertAtEnd);
Gabor Greifefe65362008-05-10 08:32:32 +00001580 ReturnInst(Value * const* retVals, unsigned N, Instruction *InsertBefore = 0);
Devang Patelf4511cd2008-02-26 19:38:17 +00001581 ReturnInst(Value * const* retVals, unsigned N, BasicBlock *InsertAtEnd);
Chris Lattner910c80a2007-02-24 00:55:48 +00001582 explicit ReturnInst(BasicBlock *InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001583public:
1584 static ReturnInst* Create(Value *retVal = 0, Instruction *InsertBefore = 0) {
1585 return new(!!retVal) ReturnInst(retVal, InsertBefore);
1586 }
1587 static ReturnInst* Create(Value *retVal, BasicBlock *InsertAtEnd) {
1588 return new(!!retVal) ReturnInst(retVal, InsertAtEnd);
1589 }
Evan Chengd69bb1a2008-05-05 17:41:03 +00001590 static ReturnInst* Create(Value * const* retVals, unsigned N,
Gabor Greifefe65362008-05-10 08:32:32 +00001591 Instruction *InsertBefore = 0) {
Gabor Greif051a9502008-04-06 20:25:17 +00001592 return new(N) ReturnInst(retVals, N, InsertBefore);
1593 }
Evan Chengd69bb1a2008-05-05 17:41:03 +00001594 static ReturnInst* Create(Value * const* retVals, unsigned N,
1595 BasicBlock *InsertAtEnd) {
Gabor Greif051a9502008-04-06 20:25:17 +00001596 return new(N) ReturnInst(retVals, N, InsertAtEnd);
1597 }
1598 static ReturnInst* Create(BasicBlock *InsertAtEnd) {
1599 return new(0) ReturnInst(InsertAtEnd);
1600 }
Devang Patel57ef4f42008-02-23 00:35:18 +00001601 virtual ~ReturnInst();
Gabor Greifefe65362008-05-10 08:32:32 +00001602 inline void operator delete(void*);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001603
Chris Lattnerf319e832004-10-15 23:52:05 +00001604 virtual ReturnInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001605
Gabor Greifefe65362008-05-10 08:32:32 +00001606 /// Provide fast operand accessors
1607 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Devang Patel64d4e612008-02-26 17:56:20 +00001608
Gabor Greifefe65362008-05-10 08:32:32 +00001609 /// Convenience accessor
Devang Patel1eafa062008-03-11 17:35:03 +00001610 Value *getReturnValue(unsigned n = 0) const {
Gabor Greifefe65362008-05-10 08:32:32 +00001611 return n < getNumOperands()
1612 ? getOperand(n)
1613 : 0;
Devang Patel1eafa062008-03-11 17:35:03 +00001614 }
1615
Chris Lattner454928e2005-01-29 00:31:36 +00001616 unsigned getNumSuccessors() const { return 0; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001617
1618 // Methods for support type inquiry through isa, cast, and dyn_cast:
1619 static inline bool classof(const ReturnInst *) { return true; }
1620 static inline bool classof(const Instruction *I) {
1621 return (I->getOpcode() == Instruction::Ret);
1622 }
1623 static inline bool classof(const Value *V) {
1624 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1625 }
Chris Lattner454928e2005-01-29 00:31:36 +00001626 private:
1627 virtual BasicBlock *getSuccessorV(unsigned idx) const;
1628 virtual unsigned getNumSuccessorsV() const;
1629 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001630};
1631
Gabor Greifefe65362008-05-10 08:32:32 +00001632template <>
1633struct OperandTraits<ReturnInst> : VariadicOperandTraits<> {
1634};
1635
1636DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ReturnInst, Value)
1637void ReturnInst::operator delete(void *it) {
1638 ReturnInst* me(static_cast<ReturnInst*>(it));
1639 Use::zap(OperandTraits<ReturnInst>::op_begin(me),
1640 OperandTraits<ReturnInst>::op_end(me),
1641 true);
1642}
1643
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001644//===----------------------------------------------------------------------===//
1645// BranchInst Class
1646//===----------------------------------------------------------------------===//
1647
1648//===---------------------------------------------------------------------------
1649/// BranchInst - Conditional or Unconditional Branch instruction.
1650///
1651class BranchInst : public TerminatorInst {
Chris Lattner454928e2005-01-29 00:31:36 +00001652 /// Ops list - Branches are strange. The operands are ordered:
1653 /// TrueDest, FalseDest, Cond. This makes some accessors faster because
1654 /// they don't have to check for cond/uncond branchness.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001655 BranchInst(const BranchInst &BI);
Chris Lattner454928e2005-01-29 00:31:36 +00001656 void AssertOK();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001657 // BranchInst constructors (where {B, T, F} are blocks, and C is a condition):
1658 // BranchInst(BB *B) - 'br B'
1659 // BranchInst(BB* T, BB *F, Value *C) - 'br C, T, F'
1660 // BranchInst(BB* B, Inst *I) - 'br B' insert before I
1661 // BranchInst(BB* T, BB *F, Value *C, Inst *I) - 'br C, T, F', insert before I
1662 // BranchInst(BB* B, BB *I) - 'br B' insert at end
1663 // BranchInst(BB* T, BB *F, Value *C, BB *I) - 'br C, T, F', insert at end
Chris Lattner910c80a2007-02-24 00:55:48 +00001664 explicit BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore = 0);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001665 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
Chris Lattner910c80a2007-02-24 00:55:48 +00001666 Instruction *InsertBefore = 0);
1667 BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001668 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
Chris Lattner910c80a2007-02-24 00:55:48 +00001669 BasicBlock *InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001670public:
1671 static BranchInst *Create(BasicBlock *IfTrue, Instruction *InsertBefore = 0) {
1672 return new(1) BranchInst(IfTrue, InsertBefore);
1673 }
Gabor Greifefe65362008-05-10 08:32:32 +00001674 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
1675 Value *Cond, Instruction *InsertBefore = 0) {
Gabor Greif051a9502008-04-06 20:25:17 +00001676 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertBefore);
1677 }
1678 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) {
1679 return new(1) BranchInst(IfTrue, InsertAtEnd);
1680 }
Gabor Greifefe65362008-05-10 08:32:32 +00001681 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
1682 Value *Cond, BasicBlock *InsertAtEnd) {
Gabor Greif051a9502008-04-06 20:25:17 +00001683 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertAtEnd);
1684 }
Chris Lattner454928e2005-01-29 00:31:36 +00001685
Bill Wendlingd2a5a2a2008-05-10 10:58:07 +00001686 ~BranchInst() {
Gabor Greifefe65362008-05-10 08:32:32 +00001687 if (NumOperands == 1)
Bill Wendlingd2a5a2a2008-05-10 10:58:07 +00001688 NumOperands = (unsigned)(uintptr_t)((Use*)this - OperandList);
Gabor Greifefe65362008-05-10 08:32:32 +00001689 }
1690
Chris Lattner454928e2005-01-29 00:31:36 +00001691 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +00001692 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001693
Chris Lattnerf319e832004-10-15 23:52:05 +00001694 virtual BranchInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001695
Devang Patel4d4a5e02008-02-23 01:11:02 +00001696 bool isUnconditional() const { return getNumOperands() == 1; }
1697 bool isConditional() const { return getNumOperands() == 3; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001698
Devang Patel4d4a5e02008-02-23 01:11:02 +00001699 Value *getCondition() const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001700 assert(isConditional() && "Cannot get condition of an uncond branch!");
Chris Lattner454928e2005-01-29 00:31:36 +00001701 return getOperand(2);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001702 }
1703
1704 void setCondition(Value *V) {
1705 assert(isConditional() && "Cannot set condition of unconditional branch!");
1706 setOperand(2, V);
1707 }
1708
1709 // setUnconditionalDest - Change the current branch to an unconditional branch
1710 // targeting the specified block.
Chris Lattner454928e2005-01-29 00:31:36 +00001711 // FIXME: Eliminate this ugly method.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001712 void setUnconditionalDest(BasicBlock *Dest) {
Gabor Greifefe65362008-05-10 08:32:32 +00001713 Op<0>() = Dest;
Chris Lattner454928e2005-01-29 00:31:36 +00001714 if (isConditional()) { // Convert this to an uncond branch.
Gabor Greifefe65362008-05-10 08:32:32 +00001715 Op<1>().set(0);
1716 Op<2>().set(0);
Chris Lattner454928e2005-01-29 00:31:36 +00001717 NumOperands = 1;
Chris Lattner454928e2005-01-29 00:31:36 +00001718 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001719 }
1720
Chris Lattner454928e2005-01-29 00:31:36 +00001721 unsigned getNumSuccessors() const { return 1+isConditional(); }
1722
1723 BasicBlock *getSuccessor(unsigned i) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001724 assert(i < getNumSuccessors() && "Successor # out of range for Branch!");
Dan Gohmanb96039e2007-05-11 20:59:29 +00001725 return cast<BasicBlock>(getOperand(i));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001726 }
1727
Chris Lattner454928e2005-01-29 00:31:36 +00001728 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001729 assert(idx < getNumSuccessors() && "Successor # out of range for Branch!");
Gabor Greifefe65362008-05-10 08:32:32 +00001730 setOperand(idx, NewSucc);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001731 }
1732
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001733 // Methods for support type inquiry through isa, cast, and dyn_cast:
1734 static inline bool classof(const BranchInst *) { return true; }
1735 static inline bool classof(const Instruction *I) {
1736 return (I->getOpcode() == Instruction::Br);
1737 }
1738 static inline bool classof(const Value *V) {
1739 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1740 }
Chris Lattner454928e2005-01-29 00:31:36 +00001741private:
1742 virtual BasicBlock *getSuccessorV(unsigned idx) const;
1743 virtual unsigned getNumSuccessorsV() const;
1744 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001745};
1746
Gabor Greifefe65362008-05-10 08:32:32 +00001747template <>
1748struct OperandTraits<BranchInst> : HungoffOperandTraits<> {
1749 // we need to access operands via OperandList, since
1750 // the NumOperands may change from 3 to 1
1751 static inline void *allocate(unsigned); // FIXME
1752};
1753
1754DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BranchInst, Value)
1755
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001756//===----------------------------------------------------------------------===//
1757// SwitchInst Class
1758//===----------------------------------------------------------------------===//
1759
1760//===---------------------------------------------------------------------------
1761/// SwitchInst - Multiway switch
1762///
1763class SwitchInst : public TerminatorInst {
Gabor Greifefe65362008-05-10 08:32:32 +00001764 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Chris Lattner454928e2005-01-29 00:31:36 +00001765 unsigned ReservedSpace;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001766 // Operand[0] = Value to switch on
1767 // Operand[1] = Default basic block destination
1768 // Operand[2n ] = Value to match
1769 // Operand[2n+1] = BasicBlock to go to on match
1770 SwitchInst(const SwitchInst &RI);
Chris Lattner454928e2005-01-29 00:31:36 +00001771 void init(Value *Value, BasicBlock *Default, unsigned NumCases);
1772 void resizeOperands(unsigned No);
Gabor Greifefe65362008-05-10 08:32:32 +00001773 // allocate space for exactly zero operands
1774 void *operator new(size_t s) {
1775 return User::operator new(s, 0);
1776 }
Chris Lattner454928e2005-01-29 00:31:36 +00001777 /// SwitchInst ctor - Create a new switch instruction, specifying a value to
1778 /// switch on and a default destination. The number of additional cases can
1779 /// be specified here to make memory allocation more efficient. This
1780 /// constructor can also autoinsert before another instruction.
1781 SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
Chris Lattner910c80a2007-02-24 00:55:48 +00001782 Instruction *InsertBefore = 0);
1783
Chris Lattner454928e2005-01-29 00:31:36 +00001784 /// SwitchInst ctor - Create a new switch instruction, specifying a value to
1785 /// switch on and a default destination. The number of additional cases can
1786 /// be specified here to make memory allocation more efficient. This
1787 /// constructor also autoinserts at the end of the specified BasicBlock.
1788 SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
Chris Lattner910c80a2007-02-24 00:55:48 +00001789 BasicBlock *InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001790public:
Gabor Greifefe65362008-05-10 08:32:32 +00001791 static SwitchInst *Create(Value *Value, BasicBlock *Default,
1792 unsigned NumCases, Instruction *InsertBefore = 0) {
1793 return new SwitchInst(Value, Default, NumCases, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00001794 }
Gabor Greifefe65362008-05-10 08:32:32 +00001795 static SwitchInst *Create(Value *Value, BasicBlock *Default,
1796 unsigned NumCases, BasicBlock *InsertAtEnd) {
1797 return new SwitchInst(Value, Default, NumCases, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001798 }
Gordon Henriksenafba8fe2007-12-10 02:14:30 +00001799 ~SwitchInst();
Chris Lattner454928e2005-01-29 00:31:36 +00001800
Gabor Greifefe65362008-05-10 08:32:32 +00001801 /// Provide fast operand accessors
1802 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
1803
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001804 // Accessor Methods for Switch stmt
Devang Patel4d4a5e02008-02-23 01:11:02 +00001805 Value *getCondition() const { return getOperand(0); }
Chris Lattner454928e2005-01-29 00:31:36 +00001806 void setCondition(Value *V) { setOperand(0, V); }
Chris Lattnerbfaf88a2004-12-10 20:35:47 +00001807
Devang Patel4d4a5e02008-02-23 01:11:02 +00001808 BasicBlock *getDefaultDest() const {
Chris Lattner454928e2005-01-29 00:31:36 +00001809 return cast<BasicBlock>(getOperand(1));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001810 }
1811
1812 /// getNumCases - return the number of 'cases' in this switch instruction.
1813 /// Note that case #0 is always the default case.
1814 unsigned getNumCases() const {
Chris Lattner454928e2005-01-29 00:31:36 +00001815 return getNumOperands()/2;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001816 }
1817
1818 /// getCaseValue - Return the specified case value. Note that case #0, the
1819 /// default destination, does not have a case value.
Chris Lattnerd1a32602005-02-24 05:32:09 +00001820 ConstantInt *getCaseValue(unsigned i) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001821 assert(i && i < getNumCases() && "Illegal case value to get!");
1822 return getSuccessorValue(i);
1823 }
1824
1825 /// getCaseValue - Return the specified case value. Note that case #0, the
1826 /// default destination, does not have a case value.
Chris Lattnerd1a32602005-02-24 05:32:09 +00001827 const ConstantInt *getCaseValue(unsigned i) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001828 assert(i && i < getNumCases() && "Illegal case value to get!");
1829 return getSuccessorValue(i);
1830 }
1831
1832 /// findCaseValue - Search all of the case values for the specified constant.
1833 /// If it is explicitly handled, return the case number of it, otherwise
1834 /// return 0 to indicate that it is handled by the default handler.
Chris Lattnerd1a32602005-02-24 05:32:09 +00001835 unsigned findCaseValue(const ConstantInt *C) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001836 for (unsigned i = 1, e = getNumCases(); i != e; ++i)
1837 if (getCaseValue(i) == C)
1838 return i;
1839 return 0;
1840 }
1841
Nick Lewycky011f1842006-09-18 19:03:59 +00001842 /// findCaseDest - Finds the unique case value for a given successor. Returns
1843 /// null if the successor is not found, not unique, or is the default case.
1844 ConstantInt *findCaseDest(BasicBlock *BB) {
Nick Lewyckyd7915442006-09-18 20:44:37 +00001845 if (BB == getDefaultDest()) return NULL;
1846
Nick Lewycky011f1842006-09-18 19:03:59 +00001847 ConstantInt *CI = NULL;
1848 for (unsigned i = 1, e = getNumCases(); i != e; ++i) {
1849 if (getSuccessor(i) == BB) {
1850 if (CI) return NULL; // Multiple cases lead to BB.
1851 else CI = getCaseValue(i);
1852 }
1853 }
1854 return CI;
1855 }
1856
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001857 /// addCase - Add an entry to the switch instruction...
1858 ///
Chris Lattnerd1a32602005-02-24 05:32:09 +00001859 void addCase(ConstantInt *OnVal, BasicBlock *Dest);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001860
1861 /// removeCase - This method removes the specified successor from the switch
1862 /// instruction. Note that this cannot be used to remove the default
1863 /// destination (successor #0).
1864 ///
1865 void removeCase(unsigned idx);
1866
Chris Lattner454928e2005-01-29 00:31:36 +00001867 virtual SwitchInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001868
Chris Lattner454928e2005-01-29 00:31:36 +00001869 unsigned getNumSuccessors() const { return getNumOperands()/2; }
1870 BasicBlock *getSuccessor(unsigned idx) const {
1871 assert(idx < getNumSuccessors() &&"Successor idx out of range for switch!");
1872 return cast<BasicBlock>(getOperand(idx*2+1));
1873 }
1874 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001875 assert(idx < getNumSuccessors() && "Successor # out of range for switch!");
Gabor Greifefe65362008-05-10 08:32:32 +00001876 setOperand(idx*2+1, NewSucc);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001877 }
1878
1879 // getSuccessorValue - Return the value associated with the specified
1880 // successor.
Devang Patel4d4a5e02008-02-23 01:11:02 +00001881 ConstantInt *getSuccessorValue(unsigned idx) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001882 assert(idx < getNumSuccessors() && "Successor # out of range!");
Reid Spenceredd5d9e2005-05-15 16:13:11 +00001883 return reinterpret_cast<ConstantInt*>(getOperand(idx*2));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001884 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001885
1886 // Methods for support type inquiry through isa, cast, and dyn_cast:
1887 static inline bool classof(const SwitchInst *) { return true; }
1888 static inline bool classof(const Instruction *I) {
Chris Lattnerd1a32602005-02-24 05:32:09 +00001889 return I->getOpcode() == Instruction::Switch;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001890 }
1891 static inline bool classof(const Value *V) {
1892 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1893 }
Chris Lattner454928e2005-01-29 00:31:36 +00001894private:
1895 virtual BasicBlock *getSuccessorV(unsigned idx) const;
1896 virtual unsigned getNumSuccessorsV() const;
1897 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001898};
1899
Gabor Greifefe65362008-05-10 08:32:32 +00001900template <>
1901struct OperandTraits<SwitchInst> : HungoffOperandTraits<2> {
1902};
1903
1904DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SwitchInst, Value)
1905
1906
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001907//===----------------------------------------------------------------------===//
1908// InvokeInst Class
1909//===----------------------------------------------------------------------===//
1910
1911//===---------------------------------------------------------------------------
Chris Lattner3340ffe2005-05-06 20:26:26 +00001912
1913/// InvokeInst - Invoke instruction. The SubclassData field is used to hold the
1914/// calling convention of the call.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001915///
1916class InvokeInst : public TerminatorInst {
Chris Lattner58d74912008-03-12 17:45:29 +00001917 PAListPtr ParamAttrs;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001918 InvokeInst(const InvokeInst &BI);
1919 void init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Chris Lattnerd2dd1502007-02-13 01:04:01 +00001920 Value* const *Args, unsigned NumArgs);
David Greenef1355a52007-08-27 19:04:21 +00001921
1922 template<typename InputIterator>
1923 void init(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException,
1924 InputIterator ArgBegin, InputIterator ArgEnd,
1925 const std::string &Name,
1926 // This argument ensures that we have an iterator we can
1927 // do arithmetic on in constant time
1928 std::random_access_iterator_tag) {
Chris Lattnera5c0d1e2007-08-29 16:32:50 +00001929 unsigned NumArgs = (unsigned)std::distance(ArgBegin, ArgEnd);
David Greenef1355a52007-08-27 19:04:21 +00001930
Chris Lattnera5c0d1e2007-08-29 16:32:50 +00001931 // This requires that the iterator points to contiguous memory.
1932 init(Func, IfNormal, IfException, NumArgs ? &*ArgBegin : 0, NumArgs);
David Greenef1355a52007-08-27 19:04:21 +00001933 setName(Name);
1934 }
1935
David Greenef1355a52007-08-27 19:04:21 +00001936 /// Construct an InvokeInst given a range of arguments.
1937 /// InputIterator must be a random-access iterator pointing to
1938 /// contiguous storage (e.g. a std::vector<>::iterator). Checks are
1939 /// made for random-accessness but not for contiguous storage as
1940 /// that would incur runtime overhead.
1941 ///
1942 /// @brief Construct an InvokeInst from a range of arguments
1943 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +00001944 inline InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException,
1945 InputIterator ArgBegin, InputIterator ArgEnd,
1946 unsigned Values,
1947 const std::string &Name, Instruction *InsertBefore);
David Greenef1355a52007-08-27 19:04:21 +00001948
1949 /// Construct an InvokeInst given a range of arguments.
1950 /// InputIterator must be a random-access iterator pointing to
1951 /// contiguous storage (e.g. a std::vector<>::iterator). Checks are
1952 /// made for random-accessness but not for contiguous storage as
1953 /// that would incur runtime overhead.
1954 ///
1955 /// @brief Construct an InvokeInst from a range of arguments
1956 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +00001957 inline InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException,
1958 InputIterator ArgBegin, InputIterator ArgEnd,
1959 unsigned Values,
1960 const std::string &Name, BasicBlock *InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001961public:
1962 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +00001963 static InvokeInst *Create(Value *Func,
1964 BasicBlock *IfNormal, BasicBlock *IfException,
Gabor Greif051a9502008-04-06 20:25:17 +00001965 InputIterator ArgBegin, InputIterator ArgEnd,
Evan Chengd69bb1a2008-05-05 17:41:03 +00001966 const std::string &Name = "",
1967 Instruction *InsertBefore = 0) {
Gabor Greifefe65362008-05-10 08:32:32 +00001968 unsigned Values(ArgEnd - ArgBegin + 3);
1969 return new(Values) InvokeInst(Func, IfNormal, IfException, ArgBegin, ArgEnd,
1970 Values, Name, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00001971 }
1972 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +00001973 static InvokeInst *Create(Value *Func,
1974 BasicBlock *IfNormal, BasicBlock *IfException,
Gabor Greif051a9502008-04-06 20:25:17 +00001975 InputIterator ArgBegin, InputIterator ArgEnd,
1976 const std::string &Name, BasicBlock *InsertAtEnd) {
Gabor Greifefe65362008-05-10 08:32:32 +00001977 unsigned Values(ArgEnd - ArgBegin + 3);
1978 return new(Values) InvokeInst(Func, IfNormal, IfException, ArgBegin, ArgEnd,
1979 Values, Name, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001980 }
David Greenef1355a52007-08-27 19:04:21 +00001981
Chris Lattnerf319e832004-10-15 23:52:05 +00001982 virtual InvokeInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001983
Gabor Greifefe65362008-05-10 08:32:32 +00001984 /// Provide fast operand accessors
1985 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
1986
Chris Lattner3340ffe2005-05-06 20:26:26 +00001987 /// getCallingConv/setCallingConv - Get or set the calling convention of this
1988 /// function call.
1989 unsigned getCallingConv() const { return SubclassData; }
1990 void setCallingConv(unsigned CC) {
1991 SubclassData = CC;
1992 }
1993
Chris Lattner041221c2008-03-13 04:33:03 +00001994 /// getParamAttrs - Return the parameter attributes for this invoke.
Chris Lattner58d74912008-03-12 17:45:29 +00001995 ///
1996 const PAListPtr &getParamAttrs() const { return ParamAttrs; }
Reid Spencerfa3e9122007-04-09 18:00:57 +00001997
Chris Lattner041221c2008-03-13 04:33:03 +00001998 /// setParamAttrs - Set the parameter attributes for this invoke.
Chris Lattner58d74912008-03-12 17:45:29 +00001999 ///
2000 void setParamAttrs(const PAListPtr &Attrs) { ParamAttrs = Attrs; }
Duncan Sandsdc024672007-11-27 13:23:08 +00002001
Duncan Sandsafa3b6d2007-11-28 17:07:01 +00002002 /// @brief Determine whether the call or the callee has the given attribute.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002003 bool paramHasAttr(unsigned i, ParameterAttributes attr) const;
Duncan Sandsafa3b6d2007-11-28 17:07:01 +00002004
Dale Johannesen08e78b12008-02-22 17:49:45 +00002005 /// @brief Extract the alignment for a call or parameter (0=unknown).
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002006 unsigned getParamAlignment(unsigned i) const {
2007 return ParamAttrs.getParamAlignment(i);
2008 }
Dale Johannesen08e78b12008-02-22 17:49:45 +00002009
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002010 /// @brief Determine if the call does not access memory.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002011 bool doesNotAccessMemory() const {
2012 return paramHasAttr(0, ParamAttr::ReadNone);
2013 }
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002014
2015 /// @brief Determine if the call does not access or only reads memory.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002016 bool onlyReadsMemory() const {
2017 return doesNotAccessMemory() || paramHasAttr(0, ParamAttr::ReadOnly);
2018 }
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002019
Duncan Sandscbb8bad2007-12-10 19:09:40 +00002020 /// @brief Determine if the call cannot return.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002021 bool doesNotReturn() const {
2022 return paramHasAttr(0, ParamAttr::NoReturn);
2023 }
Duncan Sandscbb8bad2007-12-10 19:09:40 +00002024
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002025 /// @brief Determine if the call cannot unwind.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002026 bool doesNotThrow() const {
2027 return paramHasAttr(0, ParamAttr::NoUnwind);
2028 }
Duncan Sandsf0c33542007-12-19 21:13:37 +00002029 void setDoesNotThrow(bool doesNotThrow = true);
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002030
Devang Patel41e23972008-03-03 21:46:28 +00002031 /// @brief Determine if the call returns a structure through first
2032 /// pointer argument.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002033 bool hasStructRetAttr() const {
2034 // Be friendly and also check the callee.
2035 return paramHasAttr(1, ParamAttr::StructRet);
2036 }
Reid Spencerfa3e9122007-04-09 18:00:57 +00002037
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002038 /// getCalledFunction - Return the function called, or null if this is an
Chris Lattner721aef62004-11-18 17:46:57 +00002039 /// indirect function invocation.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002040 ///
Chris Lattner721aef62004-11-18 17:46:57 +00002041 Function *getCalledFunction() const {
Chris Lattner454928e2005-01-29 00:31:36 +00002042 return dyn_cast<Function>(getOperand(0));
Chris Lattner721aef62004-11-18 17:46:57 +00002043 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002044
2045 // getCalledValue - Get a pointer to a function that is invoked by this inst.
Devang Patel4d4a5e02008-02-23 01:11:02 +00002046 Value *getCalledValue() const { return getOperand(0); }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002047
2048 // get*Dest - Return the destination basic blocks...
Chris Lattner454928e2005-01-29 00:31:36 +00002049 BasicBlock *getNormalDest() const {
2050 return cast<BasicBlock>(getOperand(1));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002051 }
Chris Lattner454928e2005-01-29 00:31:36 +00002052 BasicBlock *getUnwindDest() const {
2053 return cast<BasicBlock>(getOperand(2));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002054 }
Chris Lattner454928e2005-01-29 00:31:36 +00002055 void setNormalDest(BasicBlock *B) {
Gabor Greifefe65362008-05-10 08:32:32 +00002056 setOperand(1, B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002057 }
2058
Chris Lattner454928e2005-01-29 00:31:36 +00002059 void setUnwindDest(BasicBlock *B) {
Gabor Greifefe65362008-05-10 08:32:32 +00002060 setOperand(2, B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002061 }
2062
Devang Patel4d4a5e02008-02-23 01:11:02 +00002063 BasicBlock *getSuccessor(unsigned i) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002064 assert(i < 2 && "Successor # out of range for invoke!");
2065 return i == 0 ? getNormalDest() : getUnwindDest();
2066 }
2067
Chris Lattner454928e2005-01-29 00:31:36 +00002068 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002069 assert(idx < 2 && "Successor # out of range for invoke!");
Gabor Greifefe65362008-05-10 08:32:32 +00002070 setOperand(idx+1, NewSucc);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002071 }
2072
Chris Lattner454928e2005-01-29 00:31:36 +00002073 unsigned getNumSuccessors() const { return 2; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002074
2075 // Methods for support type inquiry through isa, cast, and dyn_cast:
2076 static inline bool classof(const InvokeInst *) { return true; }
2077 static inline bool classof(const Instruction *I) {
2078 return (I->getOpcode() == Instruction::Invoke);
2079 }
2080 static inline bool classof(const Value *V) {
2081 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2082 }
Chris Lattner454928e2005-01-29 00:31:36 +00002083private:
2084 virtual BasicBlock *getSuccessorV(unsigned idx) const;
2085 virtual unsigned getNumSuccessorsV() const;
2086 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002087};
2088
Gabor Greifefe65362008-05-10 08:32:32 +00002089template <>
2090struct OperandTraits<InvokeInst> : VariadicOperandTraits<3> {
2091};
2092
2093template<typename InputIterator>
2094InvokeInst::InvokeInst(Value *Func,
2095 BasicBlock *IfNormal, BasicBlock *IfException,
2096 InputIterator ArgBegin, InputIterator ArgEnd,
2097 unsigned Values,
2098 const std::string &Name, Instruction *InsertBefore)
2099 : TerminatorInst(cast<FunctionType>(cast<PointerType>(Func->getType())
2100 ->getElementType())->getReturnType(),
2101 Instruction::Invoke,
2102 OperandTraits<InvokeInst>::op_end(this) - Values,
2103 Values, InsertBefore) {
2104 init(Func, IfNormal, IfException, ArgBegin, ArgEnd, Name,
2105 typename std::iterator_traits<InputIterator>::iterator_category());
2106}
2107template<typename InputIterator>
2108InvokeInst::InvokeInst(Value *Func,
2109 BasicBlock *IfNormal, BasicBlock *IfException,
2110 InputIterator ArgBegin, InputIterator ArgEnd,
2111 unsigned Values,
2112 const std::string &Name, BasicBlock *InsertAtEnd)
2113 : TerminatorInst(cast<FunctionType>(cast<PointerType>(Func->getType())
2114 ->getElementType())->getReturnType(),
2115 Instruction::Invoke,
2116 OperandTraits<InvokeInst>::op_end(this) - Values,
2117 Values, InsertAtEnd) {
2118 init(Func, IfNormal, IfException, ArgBegin, ArgEnd, Name,
2119 typename std::iterator_traits<InputIterator>::iterator_category());
2120}
2121
2122DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InvokeInst, Value)
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002123
2124//===----------------------------------------------------------------------===//
2125// UnwindInst Class
2126//===----------------------------------------------------------------------===//
2127
2128//===---------------------------------------------------------------------------
2129/// UnwindInst - Immediately exit the current function, unwinding the stack
2130/// until an invoke instruction is found.
2131///
Chris Lattner1fca5ff2004-10-27 16:14:51 +00002132class UnwindInst : public TerminatorInst {
Gabor Greif051a9502008-04-06 20:25:17 +00002133 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Chris Lattner1fca5ff2004-10-27 16:14:51 +00002134public:
Gabor Greif051a9502008-04-06 20:25:17 +00002135 // allocate space for exactly zero operands
2136 void *operator new(size_t s) {
2137 return User::operator new(s, 0);
2138 }
Chris Lattner910c80a2007-02-24 00:55:48 +00002139 explicit UnwindInst(Instruction *InsertBefore = 0);
2140 explicit UnwindInst(BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002141
Chris Lattnerf319e832004-10-15 23:52:05 +00002142 virtual UnwindInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002143
Chris Lattner454928e2005-01-29 00:31:36 +00002144 unsigned getNumSuccessors() const { return 0; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002145
2146 // Methods for support type inquiry through isa, cast, and dyn_cast:
2147 static inline bool classof(const UnwindInst *) { return true; }
2148 static inline bool classof(const Instruction *I) {
2149 return I->getOpcode() == Instruction::Unwind;
2150 }
2151 static inline bool classof(const Value *V) {
2152 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2153 }
Chris Lattner454928e2005-01-29 00:31:36 +00002154private:
2155 virtual BasicBlock *getSuccessorV(unsigned idx) const;
2156 virtual unsigned getNumSuccessorsV() const;
2157 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002158};
2159
Chris Lattner076b3f12004-10-16 18:05:54 +00002160//===----------------------------------------------------------------------===//
2161// UnreachableInst Class
2162//===----------------------------------------------------------------------===//
2163
2164//===---------------------------------------------------------------------------
2165/// UnreachableInst - This function has undefined behavior. In particular, the
2166/// presence of this instruction indicates some higher level knowledge that the
2167/// end of the block cannot be reached.
2168///
Chris Lattner1fca5ff2004-10-27 16:14:51 +00002169class UnreachableInst : public TerminatorInst {
Gabor Greif051a9502008-04-06 20:25:17 +00002170 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Chris Lattner1fca5ff2004-10-27 16:14:51 +00002171public:
Gabor Greif051a9502008-04-06 20:25:17 +00002172 // allocate space for exactly zero operands
2173 void *operator new(size_t s) {
2174 return User::operator new(s, 0);
2175 }
Chris Lattner910c80a2007-02-24 00:55:48 +00002176 explicit UnreachableInst(Instruction *InsertBefore = 0);
2177 explicit UnreachableInst(BasicBlock *InsertAtEnd);
Chris Lattner076b3f12004-10-16 18:05:54 +00002178
2179 virtual UnreachableInst *clone() const;
2180
Chris Lattner454928e2005-01-29 00:31:36 +00002181 unsigned getNumSuccessors() const { return 0; }
Chris Lattner076b3f12004-10-16 18:05:54 +00002182
2183 // Methods for support type inquiry through isa, cast, and dyn_cast:
2184 static inline bool classof(const UnreachableInst *) { return true; }
2185 static inline bool classof(const Instruction *I) {
2186 return I->getOpcode() == Instruction::Unreachable;
2187 }
2188 static inline bool classof(const Value *V) {
2189 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2190 }
Chris Lattner454928e2005-01-29 00:31:36 +00002191private:
2192 virtual BasicBlock *getSuccessorV(unsigned idx) const;
2193 virtual unsigned getNumSuccessorsV() const;
2194 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Chris Lattner076b3f12004-10-16 18:05:54 +00002195};
2196
Reid Spencer3da59db2006-11-27 01:05:10 +00002197//===----------------------------------------------------------------------===//
2198// TruncInst Class
2199//===----------------------------------------------------------------------===//
2200
2201/// @brief This class represents a truncation of integer types.
2202class TruncInst : public CastInst {
2203 /// Private copy constructor
2204 TruncInst(const TruncInst &CI)
2205 : CastInst(CI.getType(), Trunc, CI.getOperand(0)) {
2206 }
2207public:
2208 /// @brief Constructor with insert-before-instruction semantics
2209 TruncInst(
2210 Value *S, ///< The value to be truncated
2211 const Type *Ty, ///< The (smaller) type to truncate to
2212 const std::string &Name = "", ///< A name for the new instruction
2213 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2214 );
2215
2216 /// @brief Constructor with insert-at-end-of-block semantics
2217 TruncInst(
2218 Value *S, ///< The value to be truncated
2219 const Type *Ty, ///< The (smaller) type to truncate to
2220 const std::string &Name, ///< A name for the new instruction
2221 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2222 );
2223
2224 /// @brief Clone an identical TruncInst
2225 virtual CastInst *clone() const;
2226
2227 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2228 static inline bool classof(const TruncInst *) { return true; }
2229 static inline bool classof(const Instruction *I) {
2230 return I->getOpcode() == Trunc;
2231 }
2232 static inline bool classof(const Value *V) {
2233 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2234 }
2235};
2236
2237//===----------------------------------------------------------------------===//
2238// ZExtInst Class
2239//===----------------------------------------------------------------------===//
2240
2241/// @brief This class represents zero extension of integer types.
2242class ZExtInst : public CastInst {
2243 /// @brief Private copy constructor
2244 ZExtInst(const ZExtInst &CI)
2245 : CastInst(CI.getType(), ZExt, CI.getOperand(0)) {
2246 }
2247public:
2248 /// @brief Constructor with insert-before-instruction semantics
2249 ZExtInst(
2250 Value *S, ///< The value to be zero extended
2251 const Type *Ty, ///< The type to zero extend to
2252 const std::string &Name = "", ///< A name for the new instruction
2253 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2254 );
2255
2256 /// @brief Constructor with insert-at-end semantics.
2257 ZExtInst(
2258 Value *S, ///< The value to be zero extended
2259 const Type *Ty, ///< The type to zero extend to
2260 const std::string &Name, ///< A name for the new instruction
2261 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2262 );
2263
2264 /// @brief Clone an identical ZExtInst
2265 virtual CastInst *clone() const;
2266
2267 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2268 static inline bool classof(const ZExtInst *) { return true; }
2269 static inline bool classof(const Instruction *I) {
2270 return I->getOpcode() == ZExt;
2271 }
2272 static inline bool classof(const Value *V) {
2273 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2274 }
2275};
2276
2277//===----------------------------------------------------------------------===//
2278// SExtInst Class
2279//===----------------------------------------------------------------------===//
2280
2281/// @brief This class represents a sign extension of integer types.
2282class SExtInst : public CastInst {
2283 /// @brief Private copy constructor
2284 SExtInst(const SExtInst &CI)
2285 : CastInst(CI.getType(), SExt, CI.getOperand(0)) {
2286 }
2287public:
2288 /// @brief Constructor with insert-before-instruction semantics
2289 SExtInst(
2290 Value *S, ///< The value to be sign extended
2291 const Type *Ty, ///< The type to sign extend to
2292 const std::string &Name = "", ///< A name for the new instruction
2293 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2294 );
2295
2296 /// @brief Constructor with insert-at-end-of-block semantics
2297 SExtInst(
2298 Value *S, ///< The value to be sign extended
2299 const Type *Ty, ///< The type to sign extend to
2300 const std::string &Name, ///< A name for the new instruction
2301 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2302 );
2303
2304 /// @brief Clone an identical SExtInst
2305 virtual CastInst *clone() const;
2306
2307 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2308 static inline bool classof(const SExtInst *) { return true; }
2309 static inline bool classof(const Instruction *I) {
2310 return I->getOpcode() == SExt;
2311 }
2312 static inline bool classof(const Value *V) {
2313 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2314 }
2315};
2316
2317//===----------------------------------------------------------------------===//
2318// FPTruncInst Class
2319//===----------------------------------------------------------------------===//
2320
2321/// @brief This class represents a truncation of floating point types.
2322class FPTruncInst : public CastInst {
2323 FPTruncInst(const FPTruncInst &CI)
2324 : CastInst(CI.getType(), FPTrunc, CI.getOperand(0)) {
2325 }
2326public:
2327 /// @brief Constructor with insert-before-instruction semantics
2328 FPTruncInst(
2329 Value *S, ///< The value to be truncated
2330 const Type *Ty, ///< The type to truncate to
2331 const std::string &Name = "", ///< A name for the new instruction
2332 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2333 );
2334
2335 /// @brief Constructor with insert-before-instruction semantics
2336 FPTruncInst(
2337 Value *S, ///< The value to be truncated
2338 const Type *Ty, ///< The type to truncate to
2339 const std::string &Name, ///< A name for the new instruction
2340 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2341 );
2342
2343 /// @brief Clone an identical FPTruncInst
2344 virtual CastInst *clone() const;
2345
2346 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2347 static inline bool classof(const FPTruncInst *) { return true; }
2348 static inline bool classof(const Instruction *I) {
2349 return I->getOpcode() == FPTrunc;
2350 }
2351 static inline bool classof(const Value *V) {
2352 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2353 }
2354};
2355
2356//===----------------------------------------------------------------------===//
2357// FPExtInst Class
2358//===----------------------------------------------------------------------===//
2359
2360/// @brief This class represents an extension of floating point types.
2361class FPExtInst : public CastInst {
2362 FPExtInst(const FPExtInst &CI)
2363 : CastInst(CI.getType(), FPExt, CI.getOperand(0)) {
2364 }
2365public:
2366 /// @brief Constructor with insert-before-instruction semantics
2367 FPExtInst(
2368 Value *S, ///< The value to be extended
2369 const Type *Ty, ///< The type to extend to
2370 const std::string &Name = "", ///< A name for the new instruction
2371 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2372 );
2373
2374 /// @brief Constructor with insert-at-end-of-block semantics
2375 FPExtInst(
2376 Value *S, ///< The value to be extended
2377 const Type *Ty, ///< The type to extend to
2378 const std::string &Name, ///< A name for the new instruction
2379 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2380 );
2381
2382 /// @brief Clone an identical FPExtInst
2383 virtual CastInst *clone() const;
2384
2385 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2386 static inline bool classof(const FPExtInst *) { return true; }
2387 static inline bool classof(const Instruction *I) {
2388 return I->getOpcode() == FPExt;
2389 }
2390 static inline bool classof(const Value *V) {
2391 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2392 }
2393};
2394
2395//===----------------------------------------------------------------------===//
2396// UIToFPInst Class
2397//===----------------------------------------------------------------------===//
2398
2399/// @brief This class represents a cast unsigned integer to floating point.
2400class UIToFPInst : public CastInst {
2401 UIToFPInst(const UIToFPInst &CI)
2402 : CastInst(CI.getType(), UIToFP, CI.getOperand(0)) {
2403 }
2404public:
2405 /// @brief Constructor with insert-before-instruction semantics
2406 UIToFPInst(
2407 Value *S, ///< The value to be converted
2408 const Type *Ty, ///< The type to convert to
2409 const std::string &Name = "", ///< A name for the new instruction
2410 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2411 );
2412
2413 /// @brief Constructor with insert-at-end-of-block semantics
2414 UIToFPInst(
2415 Value *S, ///< The value to be converted
2416 const Type *Ty, ///< The type to convert to
2417 const std::string &Name, ///< A name for the new instruction
2418 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2419 );
2420
2421 /// @brief Clone an identical UIToFPInst
2422 virtual CastInst *clone() const;
2423
2424 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2425 static inline bool classof(const UIToFPInst *) { return true; }
2426 static inline bool classof(const Instruction *I) {
2427 return I->getOpcode() == UIToFP;
2428 }
2429 static inline bool classof(const Value *V) {
2430 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2431 }
2432};
2433
2434//===----------------------------------------------------------------------===//
2435// SIToFPInst Class
2436//===----------------------------------------------------------------------===//
2437
2438/// @brief This class represents a cast from signed integer to floating point.
2439class SIToFPInst : public CastInst {
2440 SIToFPInst(const SIToFPInst &CI)
2441 : CastInst(CI.getType(), SIToFP, CI.getOperand(0)) {
2442 }
2443public:
2444 /// @brief Constructor with insert-before-instruction semantics
2445 SIToFPInst(
2446 Value *S, ///< The value to be converted
2447 const Type *Ty, ///< The type to convert to
2448 const std::string &Name = "", ///< A name for the new instruction
2449 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2450 );
2451
2452 /// @brief Constructor with insert-at-end-of-block semantics
2453 SIToFPInst(
2454 Value *S, ///< The value to be converted
2455 const Type *Ty, ///< The type to convert to
2456 const std::string &Name, ///< A name for the new instruction
2457 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2458 );
2459
2460 /// @brief Clone an identical SIToFPInst
2461 virtual CastInst *clone() const;
2462
2463 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2464 static inline bool classof(const SIToFPInst *) { return true; }
2465 static inline bool classof(const Instruction *I) {
2466 return I->getOpcode() == SIToFP;
2467 }
2468 static inline bool classof(const Value *V) {
2469 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2470 }
2471};
2472
2473//===----------------------------------------------------------------------===//
2474// FPToUIInst Class
2475//===----------------------------------------------------------------------===//
2476
2477/// @brief This class represents a cast from floating point to unsigned integer
2478class FPToUIInst : public CastInst {
2479 FPToUIInst(const FPToUIInst &CI)
2480 : CastInst(CI.getType(), FPToUI, CI.getOperand(0)) {
2481 }
2482public:
2483 /// @brief Constructor with insert-before-instruction semantics
2484 FPToUIInst(
2485 Value *S, ///< The value to be converted
2486 const Type *Ty, ///< The type to convert to
2487 const std::string &Name = "", ///< A name for the new instruction
2488 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2489 );
2490
2491 /// @brief Constructor with insert-at-end-of-block semantics
2492 FPToUIInst(
2493 Value *S, ///< The value to be converted
2494 const Type *Ty, ///< The type to convert to
2495 const std::string &Name, ///< A name for the new instruction
2496 BasicBlock *InsertAtEnd ///< Where to insert the new instruction
2497 );
2498
2499 /// @brief Clone an identical FPToUIInst
2500 virtual CastInst *clone() const;
2501
2502 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2503 static inline bool classof(const FPToUIInst *) { return true; }
2504 static inline bool classof(const Instruction *I) {
2505 return I->getOpcode() == FPToUI;
2506 }
2507 static inline bool classof(const Value *V) {
2508 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2509 }
2510};
2511
2512//===----------------------------------------------------------------------===//
2513// FPToSIInst Class
2514//===----------------------------------------------------------------------===//
2515
2516/// @brief This class represents a cast from floating point to signed integer.
2517class FPToSIInst : public CastInst {
2518 FPToSIInst(const FPToSIInst &CI)
2519 : CastInst(CI.getType(), FPToSI, CI.getOperand(0)) {
2520 }
2521public:
2522 /// @brief Constructor with insert-before-instruction semantics
2523 FPToSIInst(
2524 Value *S, ///< The value to be converted
2525 const Type *Ty, ///< The type to convert to
2526 const std::string &Name = "", ///< A name for the new instruction
2527 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2528 );
2529
2530 /// @brief Constructor with insert-at-end-of-block semantics
2531 FPToSIInst(
2532 Value *S, ///< The value to be converted
2533 const Type *Ty, ///< The type to convert to
2534 const std::string &Name, ///< A name for the new instruction
2535 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2536 );
2537
2538 /// @brief Clone an identical FPToSIInst
2539 virtual CastInst *clone() const;
2540
2541 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2542 static inline bool classof(const FPToSIInst *) { return true; }
2543 static inline bool classof(const Instruction *I) {
2544 return I->getOpcode() == FPToSI;
2545 }
2546 static inline bool classof(const Value *V) {
2547 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2548 }
2549};
2550
2551//===----------------------------------------------------------------------===//
2552// IntToPtrInst Class
2553//===----------------------------------------------------------------------===//
2554
2555/// @brief This class represents a cast from an integer to a pointer.
2556class IntToPtrInst : public CastInst {
2557 IntToPtrInst(const IntToPtrInst &CI)
2558 : CastInst(CI.getType(), IntToPtr, CI.getOperand(0)) {
2559 }
2560public:
2561 /// @brief Constructor with insert-before-instruction semantics
2562 IntToPtrInst(
2563 Value *S, ///< The value to be converted
2564 const Type *Ty, ///< The type to convert to
2565 const std::string &Name = "", ///< A name for the new instruction
2566 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2567 );
2568
2569 /// @brief Constructor with insert-at-end-of-block semantics
2570 IntToPtrInst(
2571 Value *S, ///< The value to be converted
2572 const Type *Ty, ///< The type to convert to
2573 const std::string &Name, ///< A name for the new instruction
2574 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2575 );
2576
2577 /// @brief Clone an identical IntToPtrInst
2578 virtual CastInst *clone() const;
2579
2580 // Methods for support type inquiry through isa, cast, and dyn_cast:
2581 static inline bool classof(const IntToPtrInst *) { return true; }
2582 static inline bool classof(const Instruction *I) {
2583 return I->getOpcode() == IntToPtr;
2584 }
2585 static inline bool classof(const Value *V) {
2586 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2587 }
2588};
2589
2590//===----------------------------------------------------------------------===//
2591// PtrToIntInst Class
2592//===----------------------------------------------------------------------===//
2593
2594/// @brief This class represents a cast from a pointer to an integer
2595class PtrToIntInst : public CastInst {
2596 PtrToIntInst(const PtrToIntInst &CI)
2597 : CastInst(CI.getType(), PtrToInt, CI.getOperand(0)) {
2598 }
2599public:
2600 /// @brief Constructor with insert-before-instruction semantics
2601 PtrToIntInst(
2602 Value *S, ///< The value to be converted
2603 const Type *Ty, ///< The type to convert to
2604 const std::string &Name = "", ///< A name for the new instruction
2605 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2606 );
2607
2608 /// @brief Constructor with insert-at-end-of-block semantics
2609 PtrToIntInst(
2610 Value *S, ///< The value to be converted
2611 const Type *Ty, ///< The type to convert to
2612 const std::string &Name, ///< A name for the new instruction
2613 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2614 );
2615
2616 /// @brief Clone an identical PtrToIntInst
2617 virtual CastInst *clone() const;
2618
2619 // Methods for support type inquiry through isa, cast, and dyn_cast:
2620 static inline bool classof(const PtrToIntInst *) { return true; }
2621 static inline bool classof(const Instruction *I) {
2622 return I->getOpcode() == PtrToInt;
2623 }
2624 static inline bool classof(const Value *V) {
2625 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2626 }
2627};
2628
2629//===----------------------------------------------------------------------===//
2630// BitCastInst Class
2631//===----------------------------------------------------------------------===//
2632
2633/// @brief This class represents a no-op cast from one type to another.
2634class BitCastInst : public CastInst {
2635 BitCastInst(const BitCastInst &CI)
2636 : CastInst(CI.getType(), BitCast, CI.getOperand(0)) {
2637 }
2638public:
2639 /// @brief Constructor with insert-before-instruction semantics
2640 BitCastInst(
2641 Value *S, ///< The value to be casted
2642 const Type *Ty, ///< The type to casted to
2643 const std::string &Name = "", ///< A name for the new instruction
2644 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2645 );
2646
2647 /// @brief Constructor with insert-at-end-of-block semantics
2648 BitCastInst(
2649 Value *S, ///< The value to be casted
2650 const Type *Ty, ///< The type to casted to
2651 const std::string &Name, ///< A name for the new instruction
2652 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2653 );
2654
2655 /// @brief Clone an identical BitCastInst
2656 virtual CastInst *clone() const;
2657
2658 // Methods for support type inquiry through isa, cast, and dyn_cast:
2659 static inline bool classof(const BitCastInst *) { return true; }
2660 static inline bool classof(const Instruction *I) {
2661 return I->getOpcode() == BitCast;
2662 }
2663 static inline bool classof(const Value *V) {
2664 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2665 }
2666};
2667
Devang Patel40a04212008-02-19 22:15:16 +00002668//===----------------------------------------------------------------------===//
2669// GetResultInst Class
2670//===----------------------------------------------------------------------===//
2671
2672/// GetResultInst - This instruction extracts individual result value from
2673/// aggregate value, where aggregate value is returned by CallInst.
2674///
Gabor Greif051a9502008-04-06 20:25:17 +00002675class GetResultInst : public /*FIXME: Unary*/Instruction {
2676 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Devang Patel23755d82008-02-20 19:10:47 +00002677 unsigned Idx;
Devang Patel40a04212008-02-19 22:15:16 +00002678 GetResultInst(const GetResultInst &GRI) :
Gabor Greifefe65362008-05-10 08:32:32 +00002679 Instruction(GRI.getType(), Instruction::GetResult, &Op<0>(), 1) {
2680 Op<0>().init(GRI.Op<0>(), this);
Devang Patel23755d82008-02-20 19:10:47 +00002681 Idx = GRI.Idx;
Devang Patel40a04212008-02-19 22:15:16 +00002682 }
2683
2684public:
Gabor Greif051a9502008-04-06 20:25:17 +00002685 // allocate space for exactly one operand
2686 void *operator new(size_t s) {
2687 return User::operator new(s, 1);
2688 }
Gabor Greifefe65362008-05-10 08:32:32 +00002689 GetResultInst(Value *Aggr, unsigned index,
2690 const std::string &Name = "",
2691 Instruction *InsertBefore = 0);
Devang Patel40a04212008-02-19 22:15:16 +00002692
2693 /// isValidOperands - Return true if an getresult instruction can be
2694 /// formed with the specified operands.
Devang Patel23755d82008-02-20 19:10:47 +00002695 static bool isValidOperands(const Value *Aggr, unsigned index);
Devang Patel40a04212008-02-19 22:15:16 +00002696
2697 virtual GetResultInst *clone() const;
2698
Devang Patel4d4a5e02008-02-23 01:11:02 +00002699 Value *getAggregateValue() {
Devang Patel40a04212008-02-19 22:15:16 +00002700 return getOperand(0);
2701 }
Devang Patel2d2ae342008-02-20 18:36:16 +00002702
Devang Patel4d4a5e02008-02-23 01:11:02 +00002703 const Value *getAggregateValue() const {
Devang Patel2d2ae342008-02-20 18:36:16 +00002704 return getOperand(0);
2705 }
2706
Devang Patel4d4a5e02008-02-23 01:11:02 +00002707 unsigned getIndex() const {
Devang Patel23755d82008-02-20 19:10:47 +00002708 return Idx;
Devang Patel40a04212008-02-19 22:15:16 +00002709 }
2710
Gabor Greifefe65362008-05-10 08:32:32 +00002711 /// Provide fast operand accessors
2712 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Devang Patel40a04212008-02-19 22:15:16 +00002713
2714 // Methods for support type inquiry through isa, cast, and dyn_cast:
2715 static inline bool classof(const GetResultInst *) { return true; }
2716 static inline bool classof(const Instruction *I) {
2717 return (I->getOpcode() == Instruction::GetResult);
2718 }
2719 static inline bool classof(const Value *V) {
2720 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2721 }
2722};
2723
Gabor Greifefe65362008-05-10 08:32:32 +00002724// FIXME: these are redundant if GetResultInst < UnaryInstruction
2725template <>
2726struct OperandTraits<GetResultInst> : FixedNumOperandTraits<1> {
2727};
2728
2729DEFINE_TRANSPARENT_OPERAND_ACCESSORS(GetResultInst, Value)
2730
2731
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002732} // End llvm namespace
Chris Lattnera892a3a2003-01-27 22:08:52 +00002733
2734#endif