blob: b833c672ba7eae494bd4453bf5592417c96b1d60 [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"
Devang Pateleaf42ab2008-09-23 23:03:40 +000023#include "llvm/Attributes.h"
Gabor Greifefe65362008-05-10 08:32:32 +000024#include "llvm/BasicBlock.h"
Dan Gohman81a0c0b2008-05-31 00:58:22 +000025#include "llvm/ADT/SmallVector.h"
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000026
27namespace llvm {
28
Chris Lattnerd1a32602005-02-24 05:32:09 +000029class ConstantInt;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000030class PointerType;
Reid Spencer9d6565a2007-02-15 02:26:10 +000031class VectorType;
Reid Spencer3da43842007-02-28 22:00:54 +000032class ConstantRange;
33class APInt;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000034
35//===----------------------------------------------------------------------===//
36// AllocationInst Class
37//===----------------------------------------------------------------------===//
38
39/// AllocationInst - This class is the common base class of MallocInst and
40/// AllocaInst.
41///
Chris Lattner454928e2005-01-29 00:31:36 +000042class AllocationInst : public UnaryInstruction {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000043protected:
Nate Begeman14b05292005-11-05 09:21:28 +000044 AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy, unsigned Align,
Misha Brukman91102862005-03-16 03:46:55 +000045 const std::string &Name = "", Instruction *InsertBefore = 0);
Nate Begeman14b05292005-11-05 09:21:28 +000046 AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy, unsigned Align,
Misha Brukman91102862005-03-16 03:46:55 +000047 const std::string &Name, BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000048public:
Gabor Greif051a9502008-04-06 20:25:17 +000049 // Out of line virtual method, so the vtable, etc. has a home.
Gordon Henriksenafba8fe2007-12-10 02:14:30 +000050 virtual ~AllocationInst();
51
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000052 /// isArrayAllocation - Return true if there is an allocation size parameter
53 /// to the allocation instruction that is not 1.
54 ///
55 bool isArrayAllocation() const;
56
57 /// getArraySize - Get the number of element allocated, for a simple
58 /// allocation of a single element, this will return a constant 1 value.
59 ///
Devang Patel4d4a5e02008-02-23 01:11:02 +000060 const Value *getArraySize() const { return getOperand(0); }
61 Value *getArraySize() { return getOperand(0); }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000062
63 /// getType - Overload to return most specific pointer type
64 ///
Devang Patel4d4a5e02008-02-23 01:11:02 +000065 const PointerType *getType() const {
Misha Brukman9769ab22005-04-21 20:19:05 +000066 return reinterpret_cast<const PointerType*>(Instruction::getType());
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000067 }
68
69 /// getAllocatedType - Return the type that is being allocated by the
70 /// instruction.
71 ///
72 const Type *getAllocatedType() const;
73
Nate Begeman14b05292005-11-05 09:21:28 +000074 /// getAlignment - Return the alignment of the memory that is being allocated
75 /// by the instruction.
76 ///
Dan Gohman52837072008-03-24 16:55:58 +000077 unsigned getAlignment() const { return (1u << SubclassData) >> 1; }
78 void setAlignment(unsigned Align);
Chris Lattnerf56a8db2006-10-03 17:09:12 +000079
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000080 virtual Instruction *clone() const = 0;
81
82 // Methods for support type inquiry through isa, cast, and dyn_cast:
83 static inline bool classof(const AllocationInst *) { return true; }
84 static inline bool classof(const Instruction *I) {
85 return I->getOpcode() == Instruction::Alloca ||
86 I->getOpcode() == Instruction::Malloc;
87 }
88 static inline bool classof(const Value *V) {
89 return isa<Instruction>(V) && classof(cast<Instruction>(V));
90 }
91};
92
93
94//===----------------------------------------------------------------------===//
95// MallocInst Class
96//===----------------------------------------------------------------------===//
97
98/// MallocInst - an instruction to allocated memory on the heap
99///
100class MallocInst : public AllocationInst {
101 MallocInst(const MallocInst &MI);
102public:
103 explicit MallocInst(const Type *Ty, Value *ArraySize = 0,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000104 const std::string &NameStr = "",
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000105 Instruction *InsertBefore = 0)
Evan Cheng1bf9a182008-07-24 00:08:56 +0000106 : AllocationInst(Ty, ArraySize, Malloc, 0, NameStr, InsertBefore) {}
107 MallocInst(const Type *Ty, Value *ArraySize, const std::string &NameStr,
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000108 BasicBlock *InsertAtEnd)
Evan Cheng1bf9a182008-07-24 00:08:56 +0000109 : AllocationInst(Ty, ArraySize, Malloc, 0, NameStr, InsertAtEnd) {}
Chris Lattnerf56a8db2006-10-03 17:09:12 +0000110
Evan Cheng1bf9a182008-07-24 00:08:56 +0000111 MallocInst(const Type *Ty, const std::string &NameStr,
Chris Lattnerf56a8db2006-10-03 17:09:12 +0000112 Instruction *InsertBefore = 0)
Evan Cheng1bf9a182008-07-24 00:08:56 +0000113 : AllocationInst(Ty, 0, Malloc, 0, NameStr, InsertBefore) {}
114 MallocInst(const Type *Ty, const std::string &NameStr, BasicBlock *InsertAtEnd)
115 : AllocationInst(Ty, 0, Malloc, 0, NameStr, InsertAtEnd) {}
Chris Lattnerf56a8db2006-10-03 17:09:12 +0000116
117 MallocInst(const Type *Ty, Value *ArraySize, unsigned Align,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000118 const std::string &NameStr, BasicBlock *InsertAtEnd)
119 : AllocationInst(Ty, ArraySize, Malloc, Align, NameStr, InsertAtEnd) {}
Chris Lattnerb77780e2006-05-10 04:38:35 +0000120 MallocInst(const Type *Ty, Value *ArraySize, unsigned Align,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000121 const std::string &NameStr = "",
Nate Begeman14b05292005-11-05 09:21:28 +0000122 Instruction *InsertBefore = 0)
Evan Cheng1bf9a182008-07-24 00:08:56 +0000123 : AllocationInst(Ty, ArraySize, Malloc, Align, NameStr, InsertBefore) {}
Chris Lattnerf56a8db2006-10-03 17:09:12 +0000124
Chris Lattnerf319e832004-10-15 23:52:05 +0000125 virtual MallocInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000126
127 // Methods for support type inquiry through isa, cast, and dyn_cast:
128 static inline bool classof(const MallocInst *) { return true; }
129 static inline bool classof(const Instruction *I) {
130 return (I->getOpcode() == Instruction::Malloc);
131 }
132 static inline bool classof(const Value *V) {
133 return isa<Instruction>(V) && classof(cast<Instruction>(V));
134 }
135};
136
137
138//===----------------------------------------------------------------------===//
139// AllocaInst Class
140//===----------------------------------------------------------------------===//
141
142/// AllocaInst - an instruction to allocate memory on the stack
143///
144class AllocaInst : public AllocationInst {
145 AllocaInst(const AllocaInst &);
146public:
147 explicit AllocaInst(const Type *Ty, Value *ArraySize = 0,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000148 const std::string &NameStr = "",
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000149 Instruction *InsertBefore = 0)
Evan Cheng1bf9a182008-07-24 00:08:56 +0000150 : AllocationInst(Ty, ArraySize, Alloca, 0, NameStr, InsertBefore) {}
151 AllocaInst(const Type *Ty, Value *ArraySize, const std::string &NameStr,
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000152 BasicBlock *InsertAtEnd)
Evan Cheng1bf9a182008-07-24 00:08:56 +0000153 : AllocationInst(Ty, ArraySize, Alloca, 0, NameStr, InsertAtEnd) {}
Chris Lattnerb77780e2006-05-10 04:38:35 +0000154
Evan Cheng1bf9a182008-07-24 00:08:56 +0000155 AllocaInst(const Type *Ty, const std::string &NameStr,
Chris Lattnerb77780e2006-05-10 04:38:35 +0000156 Instruction *InsertBefore = 0)
Evan Cheng1bf9a182008-07-24 00:08:56 +0000157 : AllocationInst(Ty, 0, Alloca, 0, NameStr, InsertBefore) {}
158 AllocaInst(const Type *Ty, const std::string &NameStr,
159 BasicBlock *InsertAtEnd)
160 : AllocationInst(Ty, 0, Alloca, 0, NameStr, InsertAtEnd) {}
Chris Lattnerf56a8db2006-10-03 17:09:12 +0000161
Chris Lattnerb77780e2006-05-10 04:38:35 +0000162 AllocaInst(const Type *Ty, Value *ArraySize, unsigned Align,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000163 const std::string &NameStr = "", Instruction *InsertBefore = 0)
164 : AllocationInst(Ty, ArraySize, Alloca, Align, NameStr, InsertBefore) {}
Nate Begeman14b05292005-11-05 09:21:28 +0000165 AllocaInst(const Type *Ty, Value *ArraySize, unsigned Align,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000166 const std::string &NameStr, BasicBlock *InsertAtEnd)
167 : AllocationInst(Ty, ArraySize, Alloca, Align, NameStr, InsertAtEnd) {}
Chris Lattnerf56a8db2006-10-03 17:09:12 +0000168
Chris Lattnerf319e832004-10-15 23:52:05 +0000169 virtual AllocaInst *clone() const;
Chris Lattnerc5dd22a2008-11-26 02:54:17 +0000170
171 /// isStaticAlloca - Return true if this alloca is in the entry block of the
172 /// function and is a constant size. If so, the code generator will fold it
173 /// into the prolog/epilog code, so it is basically free.
174 bool isStaticAlloca() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000175
176 // Methods for support type inquiry through isa, cast, and dyn_cast:
177 static inline bool classof(const AllocaInst *) { return true; }
178 static inline bool classof(const Instruction *I) {
179 return (I->getOpcode() == Instruction::Alloca);
180 }
181 static inline bool classof(const Value *V) {
182 return isa<Instruction>(V) && classof(cast<Instruction>(V));
183 }
184};
185
186
187//===----------------------------------------------------------------------===//
188// FreeInst Class
189//===----------------------------------------------------------------------===//
190
191/// FreeInst - an instruction to deallocate memory
192///
Chris Lattner454928e2005-01-29 00:31:36 +0000193class FreeInst : public UnaryInstruction {
194 void AssertOK();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000195public:
196 explicit FreeInst(Value *Ptr, Instruction *InsertBefore = 0);
197 FreeInst(Value *Ptr, BasicBlock *InsertAfter);
198
Chris Lattnerf319e832004-10-15 23:52:05 +0000199 virtual FreeInst *clone() const;
Owen Andersonc9edf0b2007-07-06 23:13:31 +0000200
201 // Accessor methods for consistency with other memory operations
202 Value *getPointerOperand() { return getOperand(0); }
203 const Value *getPointerOperand() const { return getOperand(0); }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000204
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000205 // Methods for support type inquiry through isa, cast, and dyn_cast:
206 static inline bool classof(const FreeInst *) { return true; }
207 static inline bool classof(const Instruction *I) {
208 return (I->getOpcode() == Instruction::Free);
209 }
210 static inline bool classof(const Value *V) {
211 return isa<Instruction>(V) && classof(cast<Instruction>(V));
212 }
213};
214
215
216//===----------------------------------------------------------------------===//
217// LoadInst Class
218//===----------------------------------------------------------------------===//
219
Chris Lattner88fe29a2005-02-05 01:44:18 +0000220/// LoadInst - an instruction for reading from memory. This uses the
221/// SubclassData field in Value to store whether or not the load is volatile.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000222///
Chris Lattner454928e2005-01-29 00:31:36 +0000223class LoadInst : public UnaryInstruction {
Christopher Lamb43c7f372007-04-22 19:24:39 +0000224
Chris Lattner454928e2005-01-29 00:31:36 +0000225 LoadInst(const LoadInst &LI)
Chris Lattner88fe29a2005-02-05 01:44:18 +0000226 : UnaryInstruction(LI.getType(), Load, LI.getOperand(0)) {
227 setVolatile(LI.isVolatile());
Christopher Lamb43c7f372007-04-22 19:24:39 +0000228 setAlignment(LI.getAlignment());
Misha Brukman9769ab22005-04-21 20:19:05 +0000229
Chris Lattner454928e2005-01-29 00:31:36 +0000230#ifndef NDEBUG
231 AssertOK();
232#endif
233 }
234 void AssertOK();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000235public:
Evan Cheng1bf9a182008-07-24 00:08:56 +0000236 LoadInst(Value *Ptr, const std::string &NameStr, Instruction *InsertBefore);
237 LoadInst(Value *Ptr, const std::string &NameStr, BasicBlock *InsertAtEnd);
238 LoadInst(Value *Ptr, const std::string &NameStr, bool isVolatile = false,
Christopher Lamb43c7f372007-04-22 19:24:39 +0000239 Instruction *InsertBefore = 0);
Evan Cheng1bf9a182008-07-24 00:08:56 +0000240 LoadInst(Value *Ptr, const std::string &NameStr, bool isVolatile,
241 unsigned Align, Instruction *InsertBefore = 0);
242 LoadInst(Value *Ptr, const std::string &NameStr, bool isVolatile,
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000243 BasicBlock *InsertAtEnd);
Evan Cheng1bf9a182008-07-24 00:08:56 +0000244 LoadInst(Value *Ptr, const std::string &NameStr, bool isVolatile,
245 unsigned Align, BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000246
Evan Cheng1bf9a182008-07-24 00:08:56 +0000247 LoadInst(Value *Ptr, const char *NameStr, Instruction *InsertBefore);
248 LoadInst(Value *Ptr, const char *NameStr, BasicBlock *InsertAtEnd);
249 explicit LoadInst(Value *Ptr, const char *NameStr = 0,
250 bool isVolatile = false, Instruction *InsertBefore = 0);
251 LoadInst(Value *Ptr, const char *NameStr, bool isVolatile,
Chris Lattnerf00042a2007-02-13 07:54:42 +0000252 BasicBlock *InsertAtEnd);
253
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000254 /// isVolatile - Return true if this is a load from a volatile memory
255 /// location.
256 ///
Christopher Lamb43c7f372007-04-22 19:24:39 +0000257 bool isVolatile() const { return SubclassData & 1; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000258
259 /// setVolatile - Specify whether this is a volatile load or not.
260 ///
Christopher Lamb43c7f372007-04-22 19:24:39 +0000261 void setVolatile(bool V) {
Hartmut Kaiserefd4a512007-10-17 14:56:40 +0000262 SubclassData = (SubclassData & ~1) | (V ? 1 : 0);
Christopher Lamb43c7f372007-04-22 19:24:39 +0000263 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000264
Chris Lattnerf319e832004-10-15 23:52:05 +0000265 virtual LoadInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000266
Christopher Lamb43c7f372007-04-22 19:24:39 +0000267 /// getAlignment - Return the alignment of the access that is being performed
268 ///
269 unsigned getAlignment() const {
Christopher Lamb032507d2007-04-22 22:22:02 +0000270 return (1 << (SubclassData>>1)) >> 1;
Christopher Lamb43c7f372007-04-22 19:24:39 +0000271 }
272
273 void setAlignment(unsigned Align);
274
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000275 Value *getPointerOperand() { return getOperand(0); }
276 const Value *getPointerOperand() const { return getOperand(0); }
277 static unsigned getPointerOperandIndex() { return 0U; }
278
279 // Methods for support type inquiry through isa, cast, and dyn_cast:
280 static inline bool classof(const LoadInst *) { return true; }
281 static inline bool classof(const Instruction *I) {
282 return I->getOpcode() == Instruction::Load;
283 }
284 static inline bool classof(const Value *V) {
285 return isa<Instruction>(V) && classof(cast<Instruction>(V));
286 }
287};
288
289
290//===----------------------------------------------------------------------===//
291// StoreInst Class
292//===----------------------------------------------------------------------===//
293
Misha Brukman9769ab22005-04-21 20:19:05 +0000294/// StoreInst - an instruction for storing to memory
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000295///
296class StoreInst : public Instruction {
Gabor Greif051a9502008-04-06 20:25:17 +0000297 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Christopher Lamb43c7f372007-04-22 19:24:39 +0000298
Gabor Greifefe65362008-05-10 08:32:32 +0000299 StoreInst(const StoreInst &SI) : Instruction(SI.getType(), Store,
300 &Op<0>(), 2) {
Gabor Greif6c80c382008-05-26 21:33:52 +0000301 Op<0>() = SI.Op<0>();
302 Op<1>() = SI.Op<1>();
Chris Lattner88fe29a2005-02-05 01:44:18 +0000303 setVolatile(SI.isVolatile());
Christopher Lamb43c7f372007-04-22 19:24:39 +0000304 setAlignment(SI.getAlignment());
305
Chris Lattner454928e2005-01-29 00:31:36 +0000306#ifndef NDEBUG
307 AssertOK();
308#endif
309 }
310 void AssertOK();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000311public:
Gabor Greif051a9502008-04-06 20:25:17 +0000312 // allocate space for exactly two operands
313 void *operator new(size_t s) {
314 return User::operator new(s, 2);
315 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000316 StoreInst(Value *Val, Value *Ptr, Instruction *InsertBefore);
317 StoreInst(Value *Val, Value *Ptr, BasicBlock *InsertAtEnd);
318 StoreInst(Value *Val, Value *Ptr, bool isVolatile = false,
319 Instruction *InsertBefore = 0);
Christopher Lamb43c7f372007-04-22 19:24:39 +0000320 StoreInst(Value *Val, Value *Ptr, bool isVolatile,
321 unsigned Align, Instruction *InsertBefore = 0);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000322 StoreInst(Value *Val, Value *Ptr, bool isVolatile, BasicBlock *InsertAtEnd);
Dan Gohman6ab2d182007-07-18 20:51:11 +0000323 StoreInst(Value *Val, Value *Ptr, bool isVolatile,
324 unsigned Align, BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000325
326
327 /// isVolatile - Return true if this is a load from a volatile memory
328 /// location.
329 ///
Christopher Lamb43c7f372007-04-22 19:24:39 +0000330 bool isVolatile() const { return SubclassData & 1; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000331
332 /// setVolatile - Specify whether this is a volatile load or not.
333 ///
Christopher Lamb43c7f372007-04-22 19:24:39 +0000334 void setVolatile(bool V) {
Hartmut Kaiserefd4a512007-10-17 14:56:40 +0000335 SubclassData = (SubclassData & ~1) | (V ? 1 : 0);
Christopher Lamb43c7f372007-04-22 19:24:39 +0000336 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000337
Chris Lattner454928e2005-01-29 00:31:36 +0000338 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +0000339 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Chris Lattner454928e2005-01-29 00:31:36 +0000340
Christopher Lamb43c7f372007-04-22 19:24:39 +0000341 /// getAlignment - Return the alignment of the access that is being performed
342 ///
343 unsigned getAlignment() const {
Christopher Lamb032507d2007-04-22 22:22:02 +0000344 return (1 << (SubclassData>>1)) >> 1;
Christopher Lamb43c7f372007-04-22 19:24:39 +0000345 }
346
347 void setAlignment(unsigned Align);
348
Chris Lattnerf319e832004-10-15 23:52:05 +0000349 virtual StoreInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000350
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000351 Value *getPointerOperand() { return getOperand(1); }
352 const Value *getPointerOperand() const { return getOperand(1); }
353 static unsigned getPointerOperandIndex() { return 1U; }
354
355 // Methods for support type inquiry through isa, cast, and dyn_cast:
356 static inline bool classof(const StoreInst *) { return true; }
357 static inline bool classof(const Instruction *I) {
358 return I->getOpcode() == Instruction::Store;
359 }
360 static inline bool classof(const Value *V) {
361 return isa<Instruction>(V) && classof(cast<Instruction>(V));
362 }
363};
364
Gabor Greifefe65362008-05-10 08:32:32 +0000365template <>
366struct OperandTraits<StoreInst> : FixedNumOperandTraits<2> {
367};
368
369DEFINE_TRANSPARENT_OPERAND_ACCESSORS(StoreInst, Value)
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000370
371//===----------------------------------------------------------------------===//
372// GetElementPtrInst Class
373//===----------------------------------------------------------------------===//
374
David Greeneb8f74792007-09-04 15:46:09 +0000375// checkType - Simple wrapper function to give a better assertion failure
376// message on bad indexes for a gep instruction.
377//
378static inline const Type *checkType(const Type *Ty) {
379 assert(Ty && "Invalid GetElementPtrInst indices for type!");
380 return Ty;
381}
382
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000383/// GetElementPtrInst - an instruction for type-safe pointer arithmetic to
384/// access elements of arrays and structs
385///
386class GetElementPtrInst : public Instruction {
Gabor Greifefe65362008-05-10 08:32:32 +0000387 GetElementPtrInst(const GetElementPtrInst &GEPI);
Matthijs Kooijmancfd5b7d2008-06-05 07:26:15 +0000388 void init(Value *Ptr, Value* const *Idx, unsigned NumIdx,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000389 const std::string &NameStr);
390 void init(Value *Ptr, Value *Idx, const std::string &NameStr);
David Greeneb8f74792007-09-04 15:46:09 +0000391
392 template<typename InputIterator>
393 void init(Value *Ptr, InputIterator IdxBegin, InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000394 const std::string &NameStr,
David Greeneb8f74792007-09-04 15:46:09 +0000395 // This argument ensures that we have an iterator we can
396 // do arithmetic on in constant time
397 std::random_access_iterator_tag) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000398 unsigned NumIdx = static_cast<unsigned>(std::distance(IdxBegin, IdxEnd));
David Greeneb8f74792007-09-04 15:46:09 +0000399
400 if (NumIdx > 0) {
Gabor Greifefe65362008-05-10 08:32:32 +0000401 // This requires that the iterator points to contiguous memory.
Evan Cheng1bf9a182008-07-24 00:08:56 +0000402 init(Ptr, &*IdxBegin, NumIdx, NameStr); // FIXME: for the general case
Gabor Greifefe65362008-05-10 08:32:32 +0000403 // we have to build an array here
David Greeneb8f74792007-09-04 15:46:09 +0000404 }
405 else {
Evan Cheng1bf9a182008-07-24 00:08:56 +0000406 init(Ptr, 0, NumIdx, NameStr);
David Greeneb8f74792007-09-04 15:46:09 +0000407 }
David Greeneb8f74792007-09-04 15:46:09 +0000408 }
409
410 /// getIndexedType - Returns the type of the element that would be loaded with
411 /// a load instruction with the specified parameters.
412 ///
Dan Gohmane2d896f2008-05-15 23:35:32 +0000413 /// Null is returned if the indices are invalid for the specified
David Greeneb8f74792007-09-04 15:46:09 +0000414 /// pointer type.
415 ///
David Greeneb8f74792007-09-04 15:46:09 +0000416 template<typename InputIterator>
417 static const Type *getIndexedType(const Type *Ptr,
418 InputIterator IdxBegin,
419 InputIterator IdxEnd,
David Greeneb8f74792007-09-04 15:46:09 +0000420 // This argument ensures that we
421 // have an iterator we can do
422 // arithmetic on in constant time
423 std::random_access_iterator_tag) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000424 unsigned NumIdx = static_cast<unsigned>(std::distance(IdxBegin, IdxEnd));
David Greeneb8f74792007-09-04 15:46:09 +0000425
Dan Gohman041e2eb2008-05-15 19:50:34 +0000426 if (NumIdx > 0)
David Greeneb8f74792007-09-04 15:46:09 +0000427 // This requires that the iterator points to contiguous memory.
David Greene2d5a0b92008-10-29 00:30:54 +0000428 return getIndexedType(Ptr, &*IdxBegin, NumIdx);
Dan Gohman041e2eb2008-05-15 19:50:34 +0000429 else
430 return getIndexedType(Ptr, (Value *const*)0, NumIdx);
David Greeneb8f74792007-09-04 15:46:09 +0000431 }
432
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000433 /// Constructors - Create a getelementptr instruction with a base pointer an
434 /// list of indices. The first ctor can optionally insert before an existing
435 /// instruction, the second appends the new instruction to the specified
436 /// BasicBlock.
David Greeneb8f74792007-09-04 15:46:09 +0000437 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +0000438 inline GetElementPtrInst(Value *Ptr, InputIterator IdxBegin,
439 InputIterator IdxEnd,
440 unsigned Values,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000441 const std::string &NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +0000442 Instruction *InsertBefore);
David Greeneb8f74792007-09-04 15:46:09 +0000443 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +0000444 inline GetElementPtrInst(Value *Ptr,
445 InputIterator IdxBegin, InputIterator IdxEnd,
446 unsigned Values,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000447 const std::string &NameStr, BasicBlock *InsertAtEnd);
David Greeneb8f74792007-09-04 15:46:09 +0000448
Chris Lattner38bacf22005-05-03 05:43:30 +0000449 /// Constructors - These two constructors are convenience methods because one
450 /// and two index getelementptr instructions are so common.
Evan Cheng1bf9a182008-07-24 00:08:56 +0000451 GetElementPtrInst(Value *Ptr, Value *Idx, const std::string &NameStr = "",
Gabor Greifefe65362008-05-10 08:32:32 +0000452 Instruction *InsertBefore = 0);
Chris Lattner38bacf22005-05-03 05:43:30 +0000453 GetElementPtrInst(Value *Ptr, Value *Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000454 const std::string &NameStr, BasicBlock *InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +0000455public:
456 template<typename InputIterator>
457 static GetElementPtrInst *Create(Value *Ptr, InputIterator IdxBegin,
458 InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000459 const std::string &NameStr = "",
Gabor Greif051a9502008-04-06 20:25:17 +0000460 Instruction *InsertBefore = 0) {
Gabor Greifefe65362008-05-10 08:32:32 +0000461 typename std::iterator_traits<InputIterator>::difference_type Values =
462 1 + std::distance(IdxBegin, IdxEnd);
463 return new(Values)
Evan Cheng1bf9a182008-07-24 00:08:56 +0000464 GetElementPtrInst(Ptr, IdxBegin, IdxEnd, Values, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +0000465 }
466 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +0000467 static GetElementPtrInst *Create(Value *Ptr,
468 InputIterator IdxBegin, InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000469 const std::string &NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +0000470 BasicBlock *InsertAtEnd) {
471 typename std::iterator_traits<InputIterator>::difference_type Values =
472 1 + std::distance(IdxBegin, IdxEnd);
473 return new(Values)
Evan Cheng1bf9a182008-07-24 00:08:56 +0000474 GetElementPtrInst(Ptr, IdxBegin, IdxEnd, Values, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +0000475 }
476
Gabor Greifefe65362008-05-10 08:32:32 +0000477 /// Constructors - These two creators are convenience methods because one
478 /// index getelementptr instructions are so common.
Gabor Greif051a9502008-04-06 20:25:17 +0000479 static GetElementPtrInst *Create(Value *Ptr, Value *Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000480 const std::string &NameStr = "",
Gabor Greifefe65362008-05-10 08:32:32 +0000481 Instruction *InsertBefore = 0) {
Evan Cheng1bf9a182008-07-24 00:08:56 +0000482 return new(2) GetElementPtrInst(Ptr, Idx, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +0000483 }
484 static GetElementPtrInst *Create(Value *Ptr, Value *Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000485 const std::string &NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +0000486 BasicBlock *InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +0000487 return new(2) GetElementPtrInst(Ptr, Idx, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +0000488 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000489
Chris Lattnerf319e832004-10-15 23:52:05 +0000490 virtual GetElementPtrInst *clone() const;
Misha Brukman9769ab22005-04-21 20:19:05 +0000491
Gabor Greifefe65362008-05-10 08:32:32 +0000492 /// Transparently provide more efficient getOperand methods.
493 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
494
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000495 // getType - Overload to return most specific pointer type...
Devang Patel4d4a5e02008-02-23 01:11:02 +0000496 const PointerType *getType() const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000497 return reinterpret_cast<const PointerType*>(Instruction::getType());
498 }
499
500 /// getIndexedType - Returns the type of the element that would be loaded with
501 /// a load instruction with the specified parameters.
502 ///
Dan Gohmane2d896f2008-05-15 23:35:32 +0000503 /// Null is returned if the indices are invalid for the specified
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000504 /// pointer type.
505 ///
David Greeneb8f74792007-09-04 15:46:09 +0000506 template<typename InputIterator>
Misha Brukman9769ab22005-04-21 20:19:05 +0000507 static const Type *getIndexedType(const Type *Ptr,
David Greeneb8f74792007-09-04 15:46:09 +0000508 InputIterator IdxBegin,
Dan Gohman041e2eb2008-05-15 19:50:34 +0000509 InputIterator IdxEnd) {
510 return getIndexedType(Ptr, IdxBegin, IdxEnd,
David Greeneb8f74792007-09-04 15:46:09 +0000511 typename std::iterator_traits<InputIterator>::
Dan Gohman041e2eb2008-05-15 19:50:34 +0000512 iterator_category());
David Greeneb8f74792007-09-04 15:46:09 +0000513 }
Matthijs Kooijmane2afded2008-07-29 08:46:11 +0000514
515 static const Type *getIndexedType(const Type *Ptr,
516 Value* const *Idx, unsigned NumIdx);
517
518 static const Type *getIndexedType(const Type *Ptr,
519 uint64_t const *Idx, unsigned NumIdx);
520
Chris Lattner38bacf22005-05-03 05:43:30 +0000521 static const Type *getIndexedType(const Type *Ptr, Value *Idx);
Misha Brukman9769ab22005-04-21 20:19:05 +0000522
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000523 inline op_iterator idx_begin() { return op_begin()+1; }
524 inline const_op_iterator idx_begin() const { return op_begin()+1; }
525 inline op_iterator idx_end() { return op_end(); }
526 inline const_op_iterator idx_end() const { return op_end(); }
527
528 Value *getPointerOperand() {
529 return getOperand(0);
530 }
531 const Value *getPointerOperand() const {
532 return getOperand(0);
533 }
534 static unsigned getPointerOperandIndex() {
535 return 0U; // get index for modifying correct operand
536 }
537
Devang Patel4d4a5e02008-02-23 01:11:02 +0000538 unsigned getNumIndices() const { // Note: always non-negative
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000539 return getNumOperands() - 1;
540 }
Misha Brukman9769ab22005-04-21 20:19:05 +0000541
Devang Patel4d4a5e02008-02-23 01:11:02 +0000542 bool hasIndices() const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000543 return getNumOperands() > 1;
544 }
Chris Lattner6f771d42007-04-14 00:12:57 +0000545
546 /// hasAllZeroIndices - Return true if all of the indices of this GEP are
547 /// zeros. If so, the result pointer and the first operand have the same
548 /// value, just potentially different types.
549 bool hasAllZeroIndices() const;
Chris Lattner6b0974c2007-04-27 20:35:56 +0000550
551 /// hasAllConstantIndices - Return true if all of the indices of this GEP are
552 /// constant integers. If so, the result pointer and the first operand have
553 /// a constant offset between them.
554 bool hasAllConstantIndices() const;
555
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000556
557 // Methods for support type inquiry through isa, cast, and dyn_cast:
558 static inline bool classof(const GetElementPtrInst *) { return true; }
559 static inline bool classof(const Instruction *I) {
560 return (I->getOpcode() == Instruction::GetElementPtr);
561 }
562 static inline bool classof(const Value *V) {
563 return isa<Instruction>(V) && classof(cast<Instruction>(V));
564 }
565};
566
Gabor Greifefe65362008-05-10 08:32:32 +0000567template <>
568struct OperandTraits<GetElementPtrInst> : VariadicOperandTraits<1> {
569};
570
571template<typename InputIterator>
572GetElementPtrInst::GetElementPtrInst(Value *Ptr,
573 InputIterator IdxBegin,
574 InputIterator IdxEnd,
575 unsigned Values,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000576 const std::string &NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +0000577 Instruction *InsertBefore)
578 : Instruction(PointerType::get(checkType(
579 getIndexedType(Ptr->getType(),
Dan Gohman041e2eb2008-05-15 19:50:34 +0000580 IdxBegin, IdxEnd)),
Gabor Greifefe65362008-05-10 08:32:32 +0000581 cast<PointerType>(Ptr->getType())
582 ->getAddressSpace()),
583 GetElementPtr,
584 OperandTraits<GetElementPtrInst>::op_end(this) - Values,
585 Values, InsertBefore) {
Evan Cheng1bf9a182008-07-24 00:08:56 +0000586 init(Ptr, IdxBegin, IdxEnd, NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +0000587 typename std::iterator_traits<InputIterator>::iterator_category());
588}
589template<typename InputIterator>
590GetElementPtrInst::GetElementPtrInst(Value *Ptr,
591 InputIterator IdxBegin,
592 InputIterator IdxEnd,
593 unsigned Values,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000594 const std::string &NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +0000595 BasicBlock *InsertAtEnd)
596 : Instruction(PointerType::get(checkType(
597 getIndexedType(Ptr->getType(),
Dan Gohman041e2eb2008-05-15 19:50:34 +0000598 IdxBegin, IdxEnd)),
Gabor Greifefe65362008-05-10 08:32:32 +0000599 cast<PointerType>(Ptr->getType())
600 ->getAddressSpace()),
601 GetElementPtr,
602 OperandTraits<GetElementPtrInst>::op_end(this) - Values,
603 Values, InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +0000604 init(Ptr, IdxBegin, IdxEnd, NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +0000605 typename std::iterator_traits<InputIterator>::iterator_category());
606}
607
608
609DEFINE_TRANSPARENT_OPERAND_ACCESSORS(GetElementPtrInst, Value)
610
611
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000612//===----------------------------------------------------------------------===//
Reid Spencer45fb3f32006-11-20 01:22:35 +0000613// ICmpInst Class
614//===----------------------------------------------------------------------===//
615
616/// This instruction compares its operands according to the predicate given
Nate Begemanac80ade2008-05-12 19:01:56 +0000617/// to the constructor. It only operates on integers or pointers. The operands
618/// must be identical types.
Reid Spencer45fb3f32006-11-20 01:22:35 +0000619/// @brief Represent an integer comparison operator.
620class ICmpInst: public CmpInst {
621public:
Reid Spencer45fb3f32006-11-20 01:22:35 +0000622 /// @brief Constructor with insert-before-instruction semantics.
623 ICmpInst(
624 Predicate pred, ///< The predicate to use for the comparison
625 Value *LHS, ///< The left-hand-side of the expression
626 Value *RHS, ///< The right-hand-side of the expression
Evan Cheng1bf9a182008-07-24 00:08:56 +0000627 const std::string &NameStr = "", ///< Name of the instruction
Reid Spencer45fb3f32006-11-20 01:22:35 +0000628 Instruction *InsertBefore = 0 ///< Where to insert
Dan Gohmanf72fb672008-09-09 01:02:47 +0000629 ) : CmpInst(makeCmpResultType(LHS->getType()),
630 Instruction::ICmp, pred, LHS, RHS, NameStr,
Nate Begemanac80ade2008-05-12 19:01:56 +0000631 InsertBefore) {
632 assert(pred >= CmpInst::FIRST_ICMP_PREDICATE &&
633 pred <= CmpInst::LAST_ICMP_PREDICATE &&
634 "Invalid ICmp predicate value");
Nate Begeman31cd33a2008-05-14 20:28:31 +0000635 assert(getOperand(0)->getType() == getOperand(1)->getType() &&
Nate Begemanac80ade2008-05-12 19:01:56 +0000636 "Both operands to ICmp instruction are not of the same type!");
637 // Check that the operands are the right type
Dan Gohmanf72fb672008-09-09 01:02:47 +0000638 assert((getOperand(0)->getType()->isIntOrIntVector() ||
Nate Begeman31cd33a2008-05-14 20:28:31 +0000639 isa<PointerType>(getOperand(0)->getType())) &&
Nate Begemanac80ade2008-05-12 19:01:56 +0000640 "Invalid operand types for ICmp instruction");
Reid Spencer45fb3f32006-11-20 01:22:35 +0000641 }
642
643 /// @brief Constructor with insert-at-block-end semantics.
644 ICmpInst(
645 Predicate pred, ///< The predicate to use for the comparison
646 Value *LHS, ///< The left-hand-side of the expression
647 Value *RHS, ///< The right-hand-side of the expression
Evan Cheng1bf9a182008-07-24 00:08:56 +0000648 const std::string &NameStr, ///< Name of the instruction
Reid Spencer45fb3f32006-11-20 01:22:35 +0000649 BasicBlock *InsertAtEnd ///< Block to insert into.
Dan Gohmanf72fb672008-09-09 01:02:47 +0000650 ) : CmpInst(makeCmpResultType(LHS->getType()),
651 Instruction::ICmp, pred, LHS, RHS, NameStr,
Nate Begemanac80ade2008-05-12 19:01:56 +0000652 InsertAtEnd) {
653 assert(pred >= CmpInst::FIRST_ICMP_PREDICATE &&
654 pred <= CmpInst::LAST_ICMP_PREDICATE &&
655 "Invalid ICmp predicate value");
Nate Begeman31cd33a2008-05-14 20:28:31 +0000656 assert(getOperand(0)->getType() == getOperand(1)->getType() &&
Nate Begemanac80ade2008-05-12 19:01:56 +0000657 "Both operands to ICmp instruction are not of the same type!");
658 // Check that the operands are the right type
Dan Gohmanf72fb672008-09-09 01:02:47 +0000659 assert((getOperand(0)->getType()->isIntOrIntVector() ||
Nate Begeman31cd33a2008-05-14 20:28:31 +0000660 isa<PointerType>(getOperand(0)->getType())) &&
Nate Begemanac80ade2008-05-12 19:01:56 +0000661 "Invalid operand types for ICmp instruction");
Reid Spencer45fb3f32006-11-20 01:22:35 +0000662 }
663
Reid Spencere4d87aa2006-12-23 06:05:41 +0000664 /// For example, EQ->EQ, SLE->SLE, UGT->SGT, etc.
665 /// @returns the predicate that would be the result if the operand were
666 /// regarded as signed.
667 /// @brief Return the signed version of the predicate
668 Predicate getSignedPredicate() const {
669 return getSignedPredicate(getPredicate());
670 }
671
672 /// This is a static version that you can use without an instruction.
673 /// @brief Return the signed version of the predicate.
674 static Predicate getSignedPredicate(Predicate pred);
Reid Spencer45fb3f32006-11-20 01:22:35 +0000675
Nick Lewycky4189a532008-01-28 03:48:02 +0000676 /// For example, EQ->EQ, SLE->ULE, UGT->UGT, etc.
677 /// @returns the predicate that would be the result if the operand were
678 /// regarded as unsigned.
679 /// @brief Return the unsigned version of the predicate
680 Predicate getUnsignedPredicate() const {
681 return getUnsignedPredicate(getPredicate());
682 }
683
684 /// This is a static version that you can use without an instruction.
685 /// @brief Return the unsigned version of the predicate.
686 static Predicate getUnsignedPredicate(Predicate pred);
687
Chris Lattnerc2bfadb2007-11-22 23:43:29 +0000688 /// isEquality - Return true if this predicate is either EQ or NE. This also
689 /// tests for commutativity.
690 static bool isEquality(Predicate P) {
691 return P == ICMP_EQ || P == ICMP_NE;
692 }
693
694 /// isEquality - Return true if this predicate is either EQ or NE. This also
695 /// tests for commutativity.
Reid Spencer45fb3f32006-11-20 01:22:35 +0000696 bool isEquality() const {
Chris Lattnerc2bfadb2007-11-22 23:43:29 +0000697 return isEquality(getPredicate());
Reid Spencer45fb3f32006-11-20 01:22:35 +0000698 }
Reid Spencere4d87aa2006-12-23 06:05:41 +0000699
700 /// @returns true if the predicate of this ICmpInst is commutative
701 /// @brief Determine if this relation is commutative.
Reid Spencer45fb3f32006-11-20 01:22:35 +0000702 bool isCommutative() const { return isEquality(); }
703
Chris Lattnerc2bfadb2007-11-22 23:43:29 +0000704 /// isRelational - Return true if the predicate is relational (not EQ or NE).
705 ///
Reid Spencer45fb3f32006-11-20 01:22:35 +0000706 bool isRelational() const {
707 return !isEquality();
708 }
709
Chris Lattnerc2bfadb2007-11-22 23:43:29 +0000710 /// isRelational - Return true if the predicate is relational (not EQ or NE).
711 ///
712 static bool isRelational(Predicate P) {
713 return !isEquality(P);
714 }
715
Reid Spencere4d87aa2006-12-23 06:05:41 +0000716 /// @returns true if the predicate of this ICmpInst is signed, false otherwise
717 /// @brief Determine if this instruction's predicate is signed.
Chris Lattner5bda9e42007-09-15 06:51:03 +0000718 bool isSignedPredicate() const { return isSignedPredicate(getPredicate()); }
Reid Spencere4d87aa2006-12-23 06:05:41 +0000719
720 /// @returns true if the predicate provided is signed, false otherwise
721 /// @brief Determine if the predicate is signed.
722 static bool isSignedPredicate(Predicate pred);
723
Nick Lewyckyfc1efbb2008-05-17 07:33:39 +0000724 /// @returns true if the specified compare predicate is
725 /// true when both operands are equal...
726 /// @brief Determine if the icmp is true when both operands are equal
727 static bool isTrueWhenEqual(ICmpInst::Predicate pred) {
728 return pred == ICmpInst::ICMP_EQ || pred == ICmpInst::ICMP_UGE ||
729 pred == ICmpInst::ICMP_SGE || pred == ICmpInst::ICMP_ULE ||
730 pred == ICmpInst::ICMP_SLE;
731 }
732
733 /// @returns true if the specified compare instruction is
734 /// true when both operands are equal...
735 /// @brief Determine if the ICmpInst returns true when both operands are equal
736 bool isTrueWhenEqual() {
737 return isTrueWhenEqual(getPredicate());
738 }
739
Reid Spencer3da43842007-02-28 22:00:54 +0000740 /// Initialize a set of values that all satisfy the predicate with C.
741 /// @brief Make a ConstantRange for a relation with a constant value.
742 static ConstantRange makeConstantRange(Predicate pred, const APInt &C);
743
Reid Spencer45fb3f32006-11-20 01:22:35 +0000744 /// Exchange the two operands to this instruction in such a way that it does
745 /// not modify the semantics of the instruction. The predicate value may be
746 /// changed to retain the same result if the predicate is order dependent
747 /// (e.g. ult).
748 /// @brief Swap operands and adjust predicate.
749 void swapOperands() {
750 SubclassData = getSwappedPredicate();
Gabor Greif94fb68b2008-05-13 22:51:52 +0000751 Op<0>().swap(Op<1>());
Reid Spencer45fb3f32006-11-20 01:22:35 +0000752 }
753
Chris Lattnercd406fe2007-08-24 20:48:18 +0000754 virtual ICmpInst *clone() const;
755
Reid Spencer45fb3f32006-11-20 01:22:35 +0000756 // Methods for support type inquiry through isa, cast, and dyn_cast:
757 static inline bool classof(const ICmpInst *) { return true; }
758 static inline bool classof(const Instruction *I) {
759 return I->getOpcode() == Instruction::ICmp;
760 }
761 static inline bool classof(const Value *V) {
762 return isa<Instruction>(V) && classof(cast<Instruction>(V));
763 }
Dan Gohmanf72fb672008-09-09 01:02:47 +0000764
Reid Spencer45fb3f32006-11-20 01:22:35 +0000765};
766
767//===----------------------------------------------------------------------===//
768// FCmpInst Class
769//===----------------------------------------------------------------------===//
770
771/// This instruction compares its operands according to the predicate given
772/// to the constructor. It only operates on floating point values or packed
773/// vectors of floating point values. The operands must be identical types.
774/// @brief Represents a floating point comparison operator.
775class FCmpInst: public CmpInst {
776public:
Reid Spencer45fb3f32006-11-20 01:22:35 +0000777 /// @brief Constructor with insert-before-instruction semantics.
778 FCmpInst(
779 Predicate pred, ///< The predicate to use for the comparison
780 Value *LHS, ///< The left-hand-side of the expression
781 Value *RHS, ///< The right-hand-side of the expression
Evan Cheng1bf9a182008-07-24 00:08:56 +0000782 const std::string &NameStr = "", ///< Name of the instruction
Reid Spencer45fb3f32006-11-20 01:22:35 +0000783 Instruction *InsertBefore = 0 ///< Where to insert
Dan Gohmanf72fb672008-09-09 01:02:47 +0000784 ) : CmpInst(makeCmpResultType(LHS->getType()),
785 Instruction::FCmp, pred, LHS, RHS, NameStr,
Nate Begemanac80ade2008-05-12 19:01:56 +0000786 InsertBefore) {
787 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE &&
788 "Invalid FCmp predicate value");
Nate Begeman31cd33a2008-05-14 20:28:31 +0000789 assert(getOperand(0)->getType() == getOperand(1)->getType() &&
Nate Begemanac80ade2008-05-12 19:01:56 +0000790 "Both operands to FCmp instruction are not of the same type!");
791 // Check that the operands are the right type
Dan Gohmanf72fb672008-09-09 01:02:47 +0000792 assert(getOperand(0)->getType()->isFPOrFPVector() &&
Nate Begemanac80ade2008-05-12 19:01:56 +0000793 "Invalid operand types for FCmp instruction");
Reid Spencer45fb3f32006-11-20 01:22:35 +0000794 }
795
796 /// @brief Constructor with insert-at-block-end semantics.
797 FCmpInst(
798 Predicate pred, ///< The predicate to use for the comparison
799 Value *LHS, ///< The left-hand-side of the expression
800 Value *RHS, ///< The right-hand-side of the expression
Evan Cheng1bf9a182008-07-24 00:08:56 +0000801 const std::string &NameStr, ///< Name of the instruction
Reid Spencer45fb3f32006-11-20 01:22:35 +0000802 BasicBlock *InsertAtEnd ///< Block to insert into.
Dan Gohmanf72fb672008-09-09 01:02:47 +0000803 ) : CmpInst(makeCmpResultType(LHS->getType()),
804 Instruction::FCmp, pred, LHS, RHS, NameStr,
Nate Begemanac80ade2008-05-12 19:01:56 +0000805 InsertAtEnd) {
806 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE &&
807 "Invalid FCmp predicate value");
Nate Begeman31cd33a2008-05-14 20:28:31 +0000808 assert(getOperand(0)->getType() == getOperand(1)->getType() &&
Nate Begemanac80ade2008-05-12 19:01:56 +0000809 "Both operands to FCmp instruction are not of the same type!");
810 // Check that the operands are the right type
Dan Gohmanf72fb672008-09-09 01:02:47 +0000811 assert(getOperand(0)->getType()->isFPOrFPVector() &&
Nate Begemanac80ade2008-05-12 19:01:56 +0000812 "Invalid operand types for FCmp instruction");
Reid Spencer45fb3f32006-11-20 01:22:35 +0000813 }
814
Reid Spencer45fb3f32006-11-20 01:22:35 +0000815 /// @returns true if the predicate of this instruction is EQ or NE.
816 /// @brief Determine if this is an equality predicate.
817 bool isEquality() const {
818 return SubclassData == FCMP_OEQ || SubclassData == FCMP_ONE ||
819 SubclassData == FCMP_UEQ || SubclassData == FCMP_UNE;
820 }
Dan Gohman793df072008-09-16 16:44:00 +0000821
822 /// @returns true if the predicate of this instruction is commutative.
823 /// @brief Determine if this is a commutative predicate.
824 bool isCommutative() const {
825 return isEquality() ||
826 SubclassData == FCMP_FALSE ||
827 SubclassData == FCMP_TRUE ||
828 SubclassData == FCMP_ORD ||
829 SubclassData == FCMP_UNO;
830 }
Reid Spencer45fb3f32006-11-20 01:22:35 +0000831
832 /// @returns true if the predicate is relational (not EQ or NE).
833 /// @brief Determine if this a relational predicate.
834 bool isRelational() const { return !isEquality(); }
835
836 /// Exchange the two operands to this instruction in such a way that it does
837 /// not modify the semantics of the instruction. The predicate value may be
838 /// changed to retain the same result if the predicate is order dependent
839 /// (e.g. ult).
840 /// @brief Swap operands and adjust predicate.
841 void swapOperands() {
842 SubclassData = getSwappedPredicate();
Gabor Greif94fb68b2008-05-13 22:51:52 +0000843 Op<0>().swap(Op<1>());
Reid Spencer45fb3f32006-11-20 01:22:35 +0000844 }
845
Chris Lattnercd406fe2007-08-24 20:48:18 +0000846 virtual FCmpInst *clone() const;
847
Reid Spencer45fb3f32006-11-20 01:22:35 +0000848 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
849 static inline bool classof(const FCmpInst *) { return true; }
850 static inline bool classof(const Instruction *I) {
851 return I->getOpcode() == Instruction::FCmp;
852 }
853 static inline bool classof(const Value *V) {
854 return isa<Instruction>(V) && classof(cast<Instruction>(V));
855 }
Dan Gohmanf72fb672008-09-09 01:02:47 +0000856
Reid Spencer45fb3f32006-11-20 01:22:35 +0000857};
858
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000859//===----------------------------------------------------------------------===//
Nate Begemanac80ade2008-05-12 19:01:56 +0000860// VICmpInst Class
861//===----------------------------------------------------------------------===//
862
863/// This instruction compares its operands according to the predicate given
864/// to the constructor. It only operates on vectors of integers.
865/// The operands must be identical types.
866/// @brief Represents a vector integer comparison operator.
867class VICmpInst: public CmpInst {
868public:
869 /// @brief Constructor with insert-before-instruction semantics.
870 VICmpInst(
871 Predicate pred, ///< The predicate to use for the comparison
872 Value *LHS, ///< The left-hand-side of the expression
873 Value *RHS, ///< The right-hand-side of the expression
Evan Cheng1bf9a182008-07-24 00:08:56 +0000874 const std::string &NameStr = "", ///< Name of the instruction
Nate Begemanac80ade2008-05-12 19:01:56 +0000875 Instruction *InsertBefore = 0 ///< Where to insert
Evan Cheng1bf9a182008-07-24 00:08:56 +0000876 ) : CmpInst(LHS->getType(), Instruction::VICmp, pred, LHS, RHS, NameStr,
Nate Begemanac80ade2008-05-12 19:01:56 +0000877 InsertBefore) {
Nate Begeman31cd33a2008-05-14 20:28:31 +0000878 assert(pred >= CmpInst::FIRST_ICMP_PREDICATE &&
879 pred <= CmpInst::LAST_ICMP_PREDICATE &&
880 "Invalid VICmp predicate value");
881 assert(getOperand(0)->getType() == getOperand(1)->getType() &&
882 "Both operands to VICmp instruction are not of the same type!");
Nate Begemanac80ade2008-05-12 19:01:56 +0000883 }
884
885 /// @brief Constructor with insert-at-block-end semantics.
886 VICmpInst(
887 Predicate pred, ///< The predicate to use for the comparison
888 Value *LHS, ///< The left-hand-side of the expression
889 Value *RHS, ///< The right-hand-side of the expression
Evan Cheng1bf9a182008-07-24 00:08:56 +0000890 const std::string &NameStr, ///< Name of the instruction
Nate Begemanac80ade2008-05-12 19:01:56 +0000891 BasicBlock *InsertAtEnd ///< Block to insert into.
Evan Cheng1bf9a182008-07-24 00:08:56 +0000892 ) : CmpInst(LHS->getType(), Instruction::VICmp, pred, LHS, RHS, NameStr,
Nate Begemanac80ade2008-05-12 19:01:56 +0000893 InsertAtEnd) {
Nate Begeman31cd33a2008-05-14 20:28:31 +0000894 assert(pred >= CmpInst::FIRST_ICMP_PREDICATE &&
895 pred <= CmpInst::LAST_ICMP_PREDICATE &&
896 "Invalid VICmp predicate value");
897 assert(getOperand(0)->getType() == getOperand(1)->getType() &&
898 "Both operands to VICmp instruction are not of the same type!");
Nate Begemanac80ade2008-05-12 19:01:56 +0000899 }
900
901 /// @brief Return the predicate for this instruction.
902 Predicate getPredicate() const { return Predicate(SubclassData); }
903
904 virtual VICmpInst *clone() const;
905
906 // Methods for support type inquiry through isa, cast, and dyn_cast:
907 static inline bool classof(const VICmpInst *) { return true; }
908 static inline bool classof(const Instruction *I) {
909 return I->getOpcode() == Instruction::VICmp;
910 }
911 static inline bool classof(const Value *V) {
912 return isa<Instruction>(V) && classof(cast<Instruction>(V));
913 }
914};
915
916//===----------------------------------------------------------------------===//
917// VFCmpInst Class
918//===----------------------------------------------------------------------===//
919
920/// This instruction compares its operands according to the predicate given
921/// to the constructor. It only operates on vectors of floating point values.
922/// The operands must be identical types.
923/// @brief Represents a vector floating point comparison operator.
924class VFCmpInst: public CmpInst {
925public:
926 /// @brief Constructor with insert-before-instruction semantics.
927 VFCmpInst(
928 Predicate pred, ///< The predicate to use for the comparison
929 Value *LHS, ///< The left-hand-side of the expression
930 Value *RHS, ///< The right-hand-side of the expression
Evan Cheng1bf9a182008-07-24 00:08:56 +0000931 const std::string &NameStr = "", ///< Name of the instruction
Nate Begemanac80ade2008-05-12 19:01:56 +0000932 Instruction *InsertBefore = 0 ///< Where to insert
933 ) : CmpInst(VectorType::getInteger(cast<VectorType>(LHS->getType())),
Evan Cheng1bf9a182008-07-24 00:08:56 +0000934 Instruction::VFCmp, pred, LHS, RHS, NameStr, InsertBefore) {
Nate Begeman31cd33a2008-05-14 20:28:31 +0000935 assert(pred <= CmpInst::LAST_FCMP_PREDICATE &&
936 "Invalid VFCmp predicate value");
937 assert(getOperand(0)->getType() == getOperand(1)->getType() &&
938 "Both operands to VFCmp instruction are not of the same type!");
Nate Begemanac80ade2008-05-12 19:01:56 +0000939 }
940
941 /// @brief Constructor with insert-at-block-end semantics.
942 VFCmpInst(
943 Predicate pred, ///< The predicate to use for the comparison
944 Value *LHS, ///< The left-hand-side of the expression
945 Value *RHS, ///< The right-hand-side of the expression
Evan Cheng1bf9a182008-07-24 00:08:56 +0000946 const std::string &NameStr, ///< Name of the instruction
Nate Begemanac80ade2008-05-12 19:01:56 +0000947 BasicBlock *InsertAtEnd ///< Block to insert into.
948 ) : CmpInst(VectorType::getInteger(cast<VectorType>(LHS->getType())),
Evan Cheng1bf9a182008-07-24 00:08:56 +0000949 Instruction::VFCmp, pred, LHS, RHS, NameStr, InsertAtEnd) {
Nate Begeman31cd33a2008-05-14 20:28:31 +0000950 assert(pred <= CmpInst::LAST_FCMP_PREDICATE &&
951 "Invalid VFCmp predicate value");
952 assert(getOperand(0)->getType() == getOperand(1)->getType() &&
953 "Both operands to VFCmp instruction are not of the same type!");
Nate Begemanac80ade2008-05-12 19:01:56 +0000954 }
955
956 /// @brief Return the predicate for this instruction.
957 Predicate getPredicate() const { return Predicate(SubclassData); }
958
959 virtual VFCmpInst *clone() const;
960
961 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
962 static inline bool classof(const VFCmpInst *) { return true; }
963 static inline bool classof(const Instruction *I) {
964 return I->getOpcode() == Instruction::VFCmp;
965 }
966 static inline bool classof(const Value *V) {
967 return isa<Instruction>(V) && classof(cast<Instruction>(V));
968 }
969};
970
971//===----------------------------------------------------------------------===//
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000972// CallInst Class
973//===----------------------------------------------------------------------===//
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000974/// CallInst - This class represents a function call, abstracting a target
Chris Lattner3340ffe2005-05-06 20:26:26 +0000975/// machine's calling convention. This class uses low bit of the SubClassData
976/// field to indicate whether or not this is a tail call. The rest of the bits
977/// hold the calling convention of the call.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000978///
David Greene52eec542007-08-01 03:43:44 +0000979
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000980class CallInst : public Instruction {
Devang Patel05988662008-09-25 21:00:45 +0000981 AttrListPtr AttributeList; ///< parameter attributes for call
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000982 CallInst(const CallInst &CI);
Chris Lattnerd54f4322007-02-13 00:58:44 +0000983 void init(Value *Func, Value* const *Params, unsigned NumParams);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000984 void init(Value *Func, Value *Actual1, Value *Actual2);
985 void init(Value *Func, Value *Actual);
986 void init(Value *Func);
987
David Greene52eec542007-08-01 03:43:44 +0000988 template<typename InputIterator>
989 void init(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000990 const std::string &NameStr,
David Greene52eec542007-08-01 03:43:44 +0000991 // This argument ensures that we have an iterator we can
992 // do arithmetic on in constant time
993 std::random_access_iterator_tag) {
Chris Lattnera5c0d1e2007-08-29 16:32:50 +0000994 unsigned NumArgs = (unsigned)std::distance(ArgBegin, ArgEnd);
David Greene52eec542007-08-01 03:43:44 +0000995
Chris Lattnera5c0d1e2007-08-29 16:32:50 +0000996 // This requires that the iterator points to contiguous memory.
997 init(Func, NumArgs ? &*ArgBegin : 0, NumArgs);
Evan Cheng1bf9a182008-07-24 00:08:56 +0000998 setName(NameStr);
David Greene52eec542007-08-01 03:43:44 +0000999 }
1000
David Greene52eec542007-08-01 03:43:44 +00001001 /// Construct a CallInst given a range of arguments. InputIterator
1002 /// must be a random-access iterator pointing to contiguous storage
1003 /// (e.g. a std::vector<>::iterator). Checks are made for
1004 /// random-accessness but not for contiguous storage as that would
1005 /// incur runtime overhead.
1006 /// @brief Construct a CallInst from a range of arguments
1007 template<typename InputIterator>
1008 CallInst(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001009 const std::string &NameStr, Instruction *InsertBefore);
David Greene52eec542007-08-01 03:43:44 +00001010
1011 /// Construct a CallInst given a range of arguments. InputIterator
1012 /// must be a random-access iterator pointing to contiguous storage
1013 /// (e.g. a std::vector<>::iterator). Checks are made for
1014 /// random-accessness but not for contiguous storage as that would
1015 /// incur runtime overhead.
1016 /// @brief Construct a CallInst from a range of arguments
1017 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +00001018 inline CallInst(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001019 const std::string &NameStr, BasicBlock *InsertAtEnd);
David Greene52eec542007-08-01 03:43:44 +00001020
Evan Cheng1bf9a182008-07-24 00:08:56 +00001021 CallInst(Value *F, Value *Actual, const std::string& NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +00001022 Instruction *InsertBefore);
Evan Cheng1bf9a182008-07-24 00:08:56 +00001023 CallInst(Value *F, Value *Actual, const std::string& NameStr,
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001024 BasicBlock *InsertAtEnd);
Evan Cheng1bf9a182008-07-24 00:08:56 +00001025 explicit CallInst(Value *F, const std::string &NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +00001026 Instruction *InsertBefore);
Evan Cheng1bf9a182008-07-24 00:08:56 +00001027 CallInst(Value *F, const std::string &NameStr, BasicBlock *InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001028public:
1029 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +00001030 static CallInst *Create(Value *Func,
1031 InputIterator ArgBegin, InputIterator ArgEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001032 const std::string &NameStr = "",
Evan Chengd69bb1a2008-05-05 17:41:03 +00001033 Instruction *InsertBefore = 0) {
Bill Wendlingc2e73532008-05-10 19:59:59 +00001034 return new((unsigned)(ArgEnd - ArgBegin + 1))
Evan Cheng1bf9a182008-07-24 00:08:56 +00001035 CallInst(Func, ArgBegin, ArgEnd, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00001036 }
1037 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +00001038 static CallInst *Create(Value *Func,
1039 InputIterator ArgBegin, InputIterator ArgEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001040 const std::string &NameStr, BasicBlock *InsertAtEnd) {
Bill Wendlingc2e73532008-05-10 19:59:59 +00001041 return new((unsigned)(ArgEnd - ArgBegin + 1))
Evan Cheng1bf9a182008-07-24 00:08:56 +00001042 CallInst(Func, ArgBegin, ArgEnd, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001043 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001044 static CallInst *Create(Value *F, Value *Actual,
1045 const std::string& NameStr = "",
Gabor Greif051a9502008-04-06 20:25:17 +00001046 Instruction *InsertBefore = 0) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001047 return new(2) CallInst(F, Actual, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00001048 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001049 static CallInst *Create(Value *F, Value *Actual, const std::string& NameStr,
Gabor Greif051a9502008-04-06 20:25:17 +00001050 BasicBlock *InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001051 return new(2) CallInst(F, Actual, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001052 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001053 static CallInst *Create(Value *F, const std::string &NameStr = "",
Gabor Greif051a9502008-04-06 20:25:17 +00001054 Instruction *InsertBefore = 0) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001055 return new(1) CallInst(F, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00001056 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001057 static CallInst *Create(Value *F, const std::string &NameStr,
Evan Cheng34cd4a42008-05-05 18:30:58 +00001058 BasicBlock *InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001059 return new(1) CallInst(F, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001060 }
1061
Gordon Henriksenafba8fe2007-12-10 02:14:30 +00001062 ~CallInst();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001063
Chris Lattner3340ffe2005-05-06 20:26:26 +00001064 bool isTailCall() const { return SubclassData & 1; }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001065 void setTailCall(bool isTC = true) {
1066 SubclassData = (SubclassData & ~1) | unsigned(isTC);
Chris Lattner3340ffe2005-05-06 20:26:26 +00001067 }
1068
Dan Gohmanf2752502008-09-26 21:38:45 +00001069 virtual CallInst *clone() const;
1070
1071 /// Provide fast operand accessors
1072 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
1073
Chris Lattner3340ffe2005-05-06 20:26:26 +00001074 /// getCallingConv/setCallingConv - Get or set the calling convention of this
1075 /// function call.
1076 unsigned getCallingConv() const { return SubclassData >> 1; }
1077 void setCallingConv(unsigned CC) {
1078 SubclassData = (SubclassData & 1) | (CC << 1);
1079 }
Chris Lattnerddb6db42005-05-06 05:51:46 +00001080
Devang Patel05988662008-09-25 21:00:45 +00001081 /// getAttributes - Return the parameter attributes for this call.
Chris Lattner041221c2008-03-13 04:33:03 +00001082 ///
Devang Patel05988662008-09-25 21:00:45 +00001083 const AttrListPtr &getAttributes() const { return AttributeList; }
Reid Spencer4746ecf2007-04-09 15:01:12 +00001084
Dan Gohmanf2752502008-09-26 21:38:45 +00001085 /// setAttributes - Set the parameter attributes for this call.
1086 ///
Devang Patel05988662008-09-25 21:00:45 +00001087 void setAttributes(const AttrListPtr &Attrs) { AttributeList = Attrs; }
Eric Christopher0bf7b412008-05-16 20:39:43 +00001088
Devang Patel05988662008-09-25 21:00:45 +00001089 /// addAttribute - adds the attribute to the list of attributes.
1090 void addAttribute(unsigned i, Attributes attr);
Duncan Sandsdc024672007-11-27 13:23:08 +00001091
Devang Patel05988662008-09-25 21:00:45 +00001092 /// removeAttribute - removes the attribute from the list of attributes.
1093 void removeAttribute(unsigned i, Attributes attr);
Duncan Sands2e033f32008-07-08 08:38:44 +00001094
Duncan Sandsafa3b6d2007-11-28 17:07:01 +00001095 /// @brief Determine whether the call or the callee has the given attribute.
Dan Gohmanf2752502008-09-26 21:38:45 +00001096 bool paramHasAttr(unsigned i, Attributes attr) const;
Duncan Sandsafa3b6d2007-11-28 17:07:01 +00001097
Dale Johannesen08e78b12008-02-22 17:49:45 +00001098 /// @brief Extract the alignment for a call or parameter (0=unknown).
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001099 unsigned getParamAlignment(unsigned i) const {
Devang Patel05988662008-09-25 21:00:45 +00001100 return AttributeList.getParamAlignment(i);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001101 }
Dale Johannesen08e78b12008-02-22 17:49:45 +00001102
Duncan Sandsa3355ff2007-12-03 20:06:50 +00001103 /// @brief Determine if the call does not access memory.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001104 bool doesNotAccessMemory() const {
Devang Patel19c87462008-09-26 22:53:05 +00001105 return paramHasAttr(~0, Attribute::ReadNone);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001106 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001107 void setDoesNotAccessMemory(bool NotAccessMemory = true) {
Devang Patel19c87462008-09-26 22:53:05 +00001108 if (NotAccessMemory) addAttribute(~0, Attribute::ReadNone);
1109 else removeAttribute(~0, Attribute::ReadNone);
Duncan Sands2e033f32008-07-08 08:38:44 +00001110 }
1111
Duncan Sandsa3355ff2007-12-03 20:06:50 +00001112 /// @brief Determine if the call does not access or only reads memory.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001113 bool onlyReadsMemory() const {
Devang Patel19c87462008-09-26 22:53:05 +00001114 return doesNotAccessMemory() || paramHasAttr(~0, Attribute::ReadOnly);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001115 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001116 void setOnlyReadsMemory(bool OnlyReadsMemory = true) {
Devang Patel19c87462008-09-26 22:53:05 +00001117 if (OnlyReadsMemory) addAttribute(~0, Attribute::ReadOnly);
1118 else removeAttribute(~0, Attribute::ReadOnly | Attribute::ReadNone);
Duncan Sands2e033f32008-07-08 08:38:44 +00001119 }
1120
Duncan Sandscbb8bad2007-12-10 19:09:40 +00001121 /// @brief Determine if the call cannot return.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001122 bool doesNotReturn() const {
Devang Patel19c87462008-09-26 22:53:05 +00001123 return paramHasAttr(~0, Attribute::NoReturn);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001124 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001125 void setDoesNotReturn(bool DoesNotReturn = true) {
Devang Patel19c87462008-09-26 22:53:05 +00001126 if (DoesNotReturn) addAttribute(~0, Attribute::NoReturn);
1127 else removeAttribute(~0, Attribute::NoReturn);
Duncan Sands2e033f32008-07-08 08:38:44 +00001128 }
Duncan Sandscbb8bad2007-12-10 19:09:40 +00001129
Duncan Sandsa3355ff2007-12-03 20:06:50 +00001130 /// @brief Determine if the call cannot unwind.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001131 bool doesNotThrow() const {
Devang Patel19c87462008-09-26 22:53:05 +00001132 return paramHasAttr(~0, Attribute::NoUnwind);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001133 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001134 void setDoesNotThrow(bool DoesNotThrow = true) {
Devang Patel19c87462008-09-26 22:53:05 +00001135 if (DoesNotThrow) addAttribute(~0, Attribute::NoUnwind);
1136 else removeAttribute(~0, Attribute::NoUnwind);
Duncan Sands2e033f32008-07-08 08:38:44 +00001137 }
Duncan Sandsa3355ff2007-12-03 20:06:50 +00001138
Devang Patel41e23972008-03-03 21:46:28 +00001139 /// @brief Determine if the call returns a structure through first
1140 /// pointer argument.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001141 bool hasStructRetAttr() const {
1142 // Be friendly and also check the callee.
Devang Patel05988662008-09-25 21:00:45 +00001143 return paramHasAttr(1, Attribute::StructRet);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001144 }
Reid Spencer4746ecf2007-04-09 15:01:12 +00001145
Evan Chengf4a54982008-01-12 18:57:32 +00001146 /// @brief Determine if any call argument is an aggregate passed by value.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001147 bool hasByValArgument() const {
Devang Patel05988662008-09-25 21:00:45 +00001148 return AttributeList.hasAttrSomewhere(Attribute::ByVal);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001149 }
Evan Chengf4a54982008-01-12 18:57:32 +00001150
Dan Gohmanf2752502008-09-26 21:38:45 +00001151 /// getCalledFunction - Return the function called, or null if this is an
1152 /// indirect function invocation.
1153 ///
Chris Lattner721aef62004-11-18 17:46:57 +00001154 Function *getCalledFunction() const {
Dan Gohman11a7dbf2007-09-24 15:46:02 +00001155 return dyn_cast<Function>(getOperand(0));
Chris Lattner721aef62004-11-18 17:46:57 +00001156 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001157
Reid Spencerc25ec252006-12-29 04:10:59 +00001158 /// getCalledValue - Get a pointer to the function that is invoked by this
1159 /// instruction
Devang Patel4d4a5e02008-02-23 01:11:02 +00001160 const Value *getCalledValue() const { return getOperand(0); }
1161 Value *getCalledValue() { return getOperand(0); }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001162
1163 // Methods for support type inquiry through isa, cast, and dyn_cast:
1164 static inline bool classof(const CallInst *) { return true; }
1165 static inline bool classof(const Instruction *I) {
Misha Brukman9769ab22005-04-21 20:19:05 +00001166 return I->getOpcode() == Instruction::Call;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001167 }
1168 static inline bool classof(const Value *V) {
1169 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1170 }
1171};
1172
Gabor Greifefe65362008-05-10 08:32:32 +00001173template <>
1174struct OperandTraits<CallInst> : VariadicOperandTraits<1> {
1175};
1176
1177template<typename InputIterator>
1178CallInst::CallInst(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001179 const std::string &NameStr, BasicBlock *InsertAtEnd)
Gabor Greifefe65362008-05-10 08:32:32 +00001180 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
1181 ->getElementType())->getReturnType(),
1182 Instruction::Call,
1183 OperandTraits<CallInst>::op_end(this) - (ArgEnd - ArgBegin + 1),
Bill Wendling1b2f7292008-05-10 11:26:52 +00001184 (unsigned)(ArgEnd - ArgBegin + 1), InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001185 init(Func, ArgBegin, ArgEnd, NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +00001186 typename std::iterator_traits<InputIterator>::iterator_category());
1187}
1188
1189template<typename InputIterator>
1190CallInst::CallInst(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001191 const std::string &NameStr, Instruction *InsertBefore)
Gabor Greifefe65362008-05-10 08:32:32 +00001192 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
1193 ->getElementType())->getReturnType(),
1194 Instruction::Call,
1195 OperandTraits<CallInst>::op_end(this) - (ArgEnd - ArgBegin + 1),
Bill Wendling1b2f7292008-05-10 11:26:52 +00001196 (unsigned)(ArgEnd - ArgBegin + 1), InsertBefore) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001197 init(Func, ArgBegin, ArgEnd, NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +00001198 typename std::iterator_traits<InputIterator>::iterator_category());
1199}
1200
1201DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CallInst, Value)
1202
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001203//===----------------------------------------------------------------------===//
1204// SelectInst Class
1205//===----------------------------------------------------------------------===//
1206
1207/// SelectInst - This class represents the LLVM 'select' instruction.
1208///
1209class SelectInst : public Instruction {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001210 void init(Value *C, Value *S1, Value *S2) {
Chris Lattnerb76ec322008-12-29 00:12:50 +00001211 assert(!areInvalidOperands(C, S1, S2) && "Invalid operands for select");
Gabor Greifefe65362008-05-10 08:32:32 +00001212 Op<0>() = C;
1213 Op<1>() = S1;
1214 Op<2>() = S2;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001215 }
1216
Chris Lattner454928e2005-01-29 00:31:36 +00001217 SelectInst(const SelectInst &SI)
Gabor Greifefe65362008-05-10 08:32:32 +00001218 : Instruction(SI.getType(), SI.getOpcode(), &Op<0>(), 3) {
1219 init(SI.Op<0>(), SI.Op<1>(), SI.Op<2>());
Chris Lattner454928e2005-01-29 00:31:36 +00001220 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001221 SelectInst(Value *C, Value *S1, Value *S2, const std::string &NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +00001222 Instruction *InsertBefore)
1223 : Instruction(S1->getType(), Instruction::Select,
1224 &Op<0>(), 3, InsertBefore) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001225 init(C, S1, S2);
Evan Cheng1bf9a182008-07-24 00:08:56 +00001226 setName(NameStr);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001227 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001228 SelectInst(Value *C, Value *S1, Value *S2, const std::string &NameStr,
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001229 BasicBlock *InsertAtEnd)
Gabor Greifefe65362008-05-10 08:32:32 +00001230 : Instruction(S1->getType(), Instruction::Select,
1231 &Op<0>(), 3, InsertAtEnd) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001232 init(C, S1, S2);
Evan Cheng1bf9a182008-07-24 00:08:56 +00001233 setName(NameStr);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001234 }
Gabor Greif051a9502008-04-06 20:25:17 +00001235public:
Evan Chengd69bb1a2008-05-05 17:41:03 +00001236 static SelectInst *Create(Value *C, Value *S1, Value *S2,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001237 const std::string &NameStr = "",
Evan Chengd69bb1a2008-05-05 17:41:03 +00001238 Instruction *InsertBefore = 0) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001239 return new(3) SelectInst(C, S1, S2, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00001240 }
Evan Chengd69bb1a2008-05-05 17:41:03 +00001241 static SelectInst *Create(Value *C, Value *S1, Value *S2,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001242 const std::string &NameStr,
1243 BasicBlock *InsertAtEnd) {
1244 return new(3) SelectInst(C, S1, S2, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001245 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001246
Gabor Greifefe65362008-05-10 08:32:32 +00001247 Value *getCondition() const { return Op<0>(); }
1248 Value *getTrueValue() const { return Op<1>(); }
1249 Value *getFalseValue() const { return Op<2>(); }
Chris Lattnerb76ec322008-12-29 00:12:50 +00001250
1251 /// areInvalidOperands - Return a string if the specified operands are invalid
1252 /// for a select operation, otherwise return null.
1253 static const char *areInvalidOperands(Value *Cond, Value *True, Value *False);
Chris Lattner454928e2005-01-29 00:31:36 +00001254
1255 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +00001256 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001257
1258 OtherOps getOpcode() const {
1259 return static_cast<OtherOps>(Instruction::getOpcode());
1260 }
1261
Chris Lattnerf319e832004-10-15 23:52:05 +00001262 virtual SelectInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001263
1264 // Methods for support type inquiry through isa, cast, and dyn_cast:
1265 static inline bool classof(const SelectInst *) { return true; }
1266 static inline bool classof(const Instruction *I) {
1267 return I->getOpcode() == Instruction::Select;
1268 }
1269 static inline bool classof(const Value *V) {
1270 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1271 }
1272};
1273
Gabor Greifefe65362008-05-10 08:32:32 +00001274template <>
1275struct OperandTraits<SelectInst> : FixedNumOperandTraits<3> {
1276};
1277
1278DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SelectInst, Value)
1279
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001280//===----------------------------------------------------------------------===//
1281// VAArgInst Class
1282//===----------------------------------------------------------------------===//
1283
1284/// VAArgInst - This class represents the va_arg llvm instruction, which returns
Andrew Lenharthf5428212005-06-18 18:31:30 +00001285/// an argument of the specified type given a va_list and increments that list
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001286///
Chris Lattner454928e2005-01-29 00:31:36 +00001287class VAArgInst : public UnaryInstruction {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001288 VAArgInst(const VAArgInst &VAA)
Chris Lattner454928e2005-01-29 00:31:36 +00001289 : UnaryInstruction(VAA.getType(), VAArg, VAA.getOperand(0)) {}
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001290public:
Evan Cheng1bf9a182008-07-24 00:08:56 +00001291 VAArgInst(Value *List, const Type *Ty, const std::string &NameStr = "",
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001292 Instruction *InsertBefore = 0)
Chris Lattner910c80a2007-02-24 00:55:48 +00001293 : UnaryInstruction(Ty, VAArg, List, InsertBefore) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001294 setName(NameStr);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001295 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001296 VAArgInst(Value *List, const Type *Ty, const std::string &NameStr,
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001297 BasicBlock *InsertAtEnd)
Chris Lattner910c80a2007-02-24 00:55:48 +00001298 : UnaryInstruction(Ty, VAArg, List, InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001299 setName(NameStr);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001300 }
1301
Chris Lattnerf319e832004-10-15 23:52:05 +00001302 virtual VAArgInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001303
1304 // Methods for support type inquiry through isa, cast, and dyn_cast:
1305 static inline bool classof(const VAArgInst *) { return true; }
1306 static inline bool classof(const Instruction *I) {
1307 return I->getOpcode() == VAArg;
1308 }
1309 static inline bool classof(const Value *V) {
1310 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1311 }
1312};
1313
1314//===----------------------------------------------------------------------===//
Robert Bocchino49b78a52006-01-10 19:04:13 +00001315// ExtractElementInst Class
1316//===----------------------------------------------------------------------===//
1317
1318/// ExtractElementInst - This instruction extracts a single (scalar)
Reid Spencer9d6565a2007-02-15 02:26:10 +00001319/// element from a VectorType value
Robert Bocchino49b78a52006-01-10 19:04:13 +00001320///
1321class ExtractElementInst : public Instruction {
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001322 ExtractElementInst(const ExtractElementInst &EE) :
Gabor Greifefe65362008-05-10 08:32:32 +00001323 Instruction(EE.getType(), ExtractElement, &Op<0>(), 2) {
Gabor Greif6c80c382008-05-26 21:33:52 +00001324 Op<0>() = EE.Op<0>();
1325 Op<1>() = EE.Op<1>();
Robert Bocchino49b78a52006-01-10 19:04:13 +00001326 }
1327
1328public:
Gabor Greif051a9502008-04-06 20:25:17 +00001329 // allocate space for exactly two operands
1330 void *operator new(size_t s) {
Gabor Greifefe65362008-05-10 08:32:32 +00001331 return User::operator new(s, 2); // FIXME: "unsigned Idx" forms of ctor?
Gabor Greif051a9502008-04-06 20:25:17 +00001332 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001333 ExtractElementInst(Value *Vec, Value *Idx, const std::string &NameStr = "",
Chris Lattner9fc18d22006-04-08 01:15:18 +00001334 Instruction *InsertBefore = 0);
Evan Cheng1bf9a182008-07-24 00:08:56 +00001335 ExtractElementInst(Value *Vec, unsigned Idx, const std::string &NameStr = "",
Chris Lattner06a248c22006-10-05 06:24:58 +00001336 Instruction *InsertBefore = 0);
Evan Cheng1bf9a182008-07-24 00:08:56 +00001337 ExtractElementInst(Value *Vec, Value *Idx, const std::string &NameStr,
Chris Lattner9fc18d22006-04-08 01:15:18 +00001338 BasicBlock *InsertAtEnd);
Evan Cheng1bf9a182008-07-24 00:08:56 +00001339 ExtractElementInst(Value *Vec, unsigned Idx, const std::string &NameStr,
Chris Lattner06a248c22006-10-05 06:24:58 +00001340 BasicBlock *InsertAtEnd);
Robert Bocchino49b78a52006-01-10 19:04:13 +00001341
Chris Lattnerfa495842006-04-08 04:04:54 +00001342 /// isValidOperands - Return true if an extractelement instruction can be
1343 /// formed with the specified operands.
1344 static bool isValidOperands(const Value *Vec, const Value *Idx);
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001345
Robert Bocchino49b78a52006-01-10 19:04:13 +00001346 virtual ExtractElementInst *clone() const;
1347
Robert Bocchino49b78a52006-01-10 19:04:13 +00001348 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +00001349 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Robert Bocchino49b78a52006-01-10 19:04:13 +00001350
1351 // Methods for support type inquiry through isa, cast, and dyn_cast:
1352 static inline bool classof(const ExtractElementInst *) { return true; }
1353 static inline bool classof(const Instruction *I) {
1354 return I->getOpcode() == Instruction::ExtractElement;
1355 }
1356 static inline bool classof(const Value *V) {
1357 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1358 }
1359};
1360
Gabor Greifefe65362008-05-10 08:32:32 +00001361template <>
1362struct OperandTraits<ExtractElementInst> : FixedNumOperandTraits<2> {
1363};
1364
1365DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractElementInst, Value)
1366
Robert Bocchino49b78a52006-01-10 19:04:13 +00001367//===----------------------------------------------------------------------===//
Robert Bocchinof9993442006-01-17 20:05:59 +00001368// InsertElementInst Class
1369//===----------------------------------------------------------------------===//
1370
1371/// InsertElementInst - This instruction inserts a single (scalar)
Reid Spencer9d6565a2007-02-15 02:26:10 +00001372/// element into a VectorType value
Robert Bocchinof9993442006-01-17 20:05:59 +00001373///
1374class InsertElementInst : public Instruction {
Chris Lattner6a56ed42006-04-14 22:20:07 +00001375 InsertElementInst(const InsertElementInst &IE);
Gabor Greif051a9502008-04-06 20:25:17 +00001376 InsertElementInst(Value *Vec, Value *NewElt, Value *Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001377 const std::string &NameStr = "",Instruction *InsertBefore = 0);
Gabor Greif051a9502008-04-06 20:25:17 +00001378 InsertElementInst(Value *Vec, Value *NewElt, unsigned Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001379 const std::string &NameStr = "",Instruction *InsertBefore = 0);
Gabor Greif051a9502008-04-06 20:25:17 +00001380 InsertElementInst(Value *Vec, Value *NewElt, Value *Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001381 const std::string &NameStr, BasicBlock *InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001382 InsertElementInst(Value *Vec, Value *NewElt, unsigned Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001383 const std::string &NameStr, BasicBlock *InsertAtEnd);
Robert Bocchinof9993442006-01-17 20:05:59 +00001384public:
Gabor Greif051a9502008-04-06 20:25:17 +00001385 static InsertElementInst *Create(const InsertElementInst &IE) {
1386 return new(IE.getNumOperands()) InsertElementInst(IE);
1387 }
1388 static InsertElementInst *Create(Value *Vec, Value *NewElt, Value *Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001389 const std::string &NameStr = "",
Gabor Greifefe65362008-05-10 08:32:32 +00001390 Instruction *InsertBefore = 0) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001391 return new(3) InsertElementInst(Vec, NewElt, Idx, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00001392 }
1393 static InsertElementInst *Create(Value *Vec, Value *NewElt, unsigned Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001394 const std::string &NameStr = "",
Evan Chengd69bb1a2008-05-05 17:41:03 +00001395 Instruction *InsertBefore = 0) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001396 return new(3) InsertElementInst(Vec, NewElt, Idx, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00001397 }
1398 static InsertElementInst *Create(Value *Vec, Value *NewElt, Value *Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001399 const std::string &NameStr,
Evan Chengd69bb1a2008-05-05 17:41:03 +00001400 BasicBlock *InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001401 return new(3) InsertElementInst(Vec, NewElt, Idx, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001402 }
1403 static InsertElementInst *Create(Value *Vec, Value *NewElt, unsigned Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001404 const std::string &NameStr,
Evan Chengd69bb1a2008-05-05 17:41:03 +00001405 BasicBlock *InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001406 return new(3) InsertElementInst(Vec, NewElt, Idx, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001407 }
Robert Bocchinof9993442006-01-17 20:05:59 +00001408
Chris Lattnerfa495842006-04-08 04:04:54 +00001409 /// isValidOperands - Return true if an insertelement instruction can be
1410 /// formed with the specified operands.
1411 static bool isValidOperands(const Value *Vec, const Value *NewElt,
1412 const Value *Idx);
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001413
Robert Bocchinof9993442006-01-17 20:05:59 +00001414 virtual InsertElementInst *clone() const;
1415
Reid Spencerac9dcb92007-02-15 03:39:18 +00001416 /// getType - Overload to return most specific vector type.
Chris Lattner6a56ed42006-04-14 22:20:07 +00001417 ///
Devang Patel4d4a5e02008-02-23 01:11:02 +00001418 const VectorType *getType() const {
Reid Spencer9d6565a2007-02-15 02:26:10 +00001419 return reinterpret_cast<const VectorType*>(Instruction::getType());
Chris Lattner6a56ed42006-04-14 22:20:07 +00001420 }
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001421
Robert Bocchinof9993442006-01-17 20:05:59 +00001422 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +00001423 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Robert Bocchinof9993442006-01-17 20:05:59 +00001424
1425 // Methods for support type inquiry through isa, cast, and dyn_cast:
1426 static inline bool classof(const InsertElementInst *) { return true; }
1427 static inline bool classof(const Instruction *I) {
1428 return I->getOpcode() == Instruction::InsertElement;
1429 }
1430 static inline bool classof(const Value *V) {
1431 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1432 }
1433};
1434
Gabor Greifefe65362008-05-10 08:32:32 +00001435template <>
1436struct OperandTraits<InsertElementInst> : FixedNumOperandTraits<3> {
1437};
1438
1439DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertElementInst, Value)
1440
Robert Bocchinof9993442006-01-17 20:05:59 +00001441//===----------------------------------------------------------------------===//
Chris Lattner9fc18d22006-04-08 01:15:18 +00001442// ShuffleVectorInst Class
1443//===----------------------------------------------------------------------===//
1444
1445/// ShuffleVectorInst - This instruction constructs a fixed permutation of two
1446/// input vectors.
1447///
1448class ShuffleVectorInst : public Instruction {
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001449 ShuffleVectorInst(const ShuffleVectorInst &IE);
Chris Lattner9fc18d22006-04-08 01:15:18 +00001450public:
Gabor Greif051a9502008-04-06 20:25:17 +00001451 // allocate space for exactly three operands
1452 void *operator new(size_t s) {
1453 return User::operator new(s, 3);
1454 }
Chris Lattner9fc18d22006-04-08 01:15:18 +00001455 ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001456 const std::string &NameStr = "",
1457 Instruction *InsertBefor = 0);
Chris Lattner9fc18d22006-04-08 01:15:18 +00001458 ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001459 const std::string &NameStr, BasicBlock *InsertAtEnd);
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001460
Chris Lattnerfa495842006-04-08 04:04:54 +00001461 /// isValidOperands - Return true if a shufflevector instruction can be
Chris Lattner9fc18d22006-04-08 01:15:18 +00001462 /// formed with the specified operands.
1463 static bool isValidOperands(const Value *V1, const Value *V2,
1464 const Value *Mask);
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001465
Chris Lattner9fc18d22006-04-08 01:15:18 +00001466 virtual ShuffleVectorInst *clone() const;
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001467
Reid Spencerac9dcb92007-02-15 03:39:18 +00001468 /// getType - Overload to return most specific vector type.
Chris Lattner6a56ed42006-04-14 22:20:07 +00001469 ///
Devang Patel4d4a5e02008-02-23 01:11:02 +00001470 const VectorType *getType() const {
Reid Spencer9d6565a2007-02-15 02:26:10 +00001471 return reinterpret_cast<const VectorType*>(Instruction::getType());
Chris Lattner6a56ed42006-04-14 22:20:07 +00001472 }
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001473
Chris Lattner9fc18d22006-04-08 01:15:18 +00001474 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +00001475 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Chris Lattner8728f192008-03-02 05:28:33 +00001476
1477 /// getMaskValue - Return the index from the shuffle mask for the specified
1478 /// output result. This is either -1 if the element is undef or a number less
1479 /// than 2*numelements.
1480 int getMaskValue(unsigned i) const;
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001481
Chris Lattner9fc18d22006-04-08 01:15:18 +00001482 // Methods for support type inquiry through isa, cast, and dyn_cast:
1483 static inline bool classof(const ShuffleVectorInst *) { return true; }
1484 static inline bool classof(const Instruction *I) {
1485 return I->getOpcode() == Instruction::ShuffleVector;
1486 }
1487 static inline bool classof(const Value *V) {
1488 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1489 }
1490};
1491
Gabor Greifefe65362008-05-10 08:32:32 +00001492template <>
1493struct OperandTraits<ShuffleVectorInst> : FixedNumOperandTraits<3> {
1494};
1495
1496DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ShuffleVectorInst, Value)
Chris Lattner9fc18d22006-04-08 01:15:18 +00001497
1498//===----------------------------------------------------------------------===//
Dan Gohman041e2eb2008-05-15 19:50:34 +00001499// ExtractValueInst Class
1500//===----------------------------------------------------------------------===//
1501
Dan Gohmane2d896f2008-05-15 23:35:32 +00001502/// ExtractValueInst - This instruction extracts a struct member or array
1503/// element value from an aggregate value.
Dan Gohman041e2eb2008-05-15 19:50:34 +00001504///
Gabor Greifd4f268b2008-06-06 20:28:12 +00001505class ExtractValueInst : public UnaryInstruction {
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001506 SmallVector<unsigned, 4> Indices;
1507
Dan Gohman041e2eb2008-05-15 19:50:34 +00001508 ExtractValueInst(const ExtractValueInst &EVI);
Gabor Greif76aca6f2008-06-06 21:06:32 +00001509 void init(const unsigned *Idx, unsigned NumIdx,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001510 const std::string &NameStr);
1511 void init(unsigned Idx, const std::string &NameStr);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001512
1513 template<typename InputIterator>
Gabor Greif76aca6f2008-06-06 21:06:32 +00001514 void init(InputIterator IdxBegin, InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001515 const std::string &NameStr,
Dan Gohman041e2eb2008-05-15 19:50:34 +00001516 // This argument ensures that we have an iterator we can
1517 // do arithmetic on in constant time
1518 std::random_access_iterator_tag) {
1519 unsigned NumIdx = static_cast<unsigned>(std::distance(IdxBegin, IdxEnd));
1520
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001521 // There's no fundamental reason why we require at least one index
1522 // (other than weirdness with &*IdxBegin being invalid; see
1523 // getelementptr's init routine for example). But there's no
1524 // present need to support it.
1525 assert(NumIdx > 0 && "ExtractValueInst must have at least one index");
1526
1527 // This requires that the iterator points to contiguous memory.
Evan Cheng1bf9a182008-07-24 00:08:56 +00001528 init(&*IdxBegin, NumIdx, NameStr); // FIXME: for the general case
Matthijs Kooijman444099f62008-06-04 14:40:55 +00001529 // we have to build an array here
Dan Gohman041e2eb2008-05-15 19:50:34 +00001530 }
1531
1532 /// getIndexedType - Returns the type of the element that would be extracted
1533 /// with an extractvalue instruction with the specified parameters.
1534 ///
Dan Gohmane2d896f2008-05-15 23:35:32 +00001535 /// Null is returned if the indices are invalid for the specified
Dan Gohman041e2eb2008-05-15 19:50:34 +00001536 /// pointer type.
1537 ///
1538 static const Type *getIndexedType(const Type *Agg,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001539 const unsigned *Idx, unsigned NumIdx);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001540
1541 template<typename InputIterator>
1542 static const Type *getIndexedType(const Type *Ptr,
1543 InputIterator IdxBegin,
1544 InputIterator IdxEnd,
1545 // This argument ensures that we
1546 // have an iterator we can do
1547 // arithmetic on in constant time
1548 std::random_access_iterator_tag) {
1549 unsigned NumIdx = static_cast<unsigned>(std::distance(IdxBegin, IdxEnd));
1550
1551 if (NumIdx > 0)
1552 // This requires that the iterator points to contiguous memory.
Dan Gohman19a81632008-06-23 16:38:10 +00001553 return getIndexedType(Ptr, &*IdxBegin, NumIdx);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001554 else
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001555 return getIndexedType(Ptr, (const unsigned *)0, NumIdx);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001556 }
1557
Dan Gohmane2d896f2008-05-15 23:35:32 +00001558 /// Constructors - Create a extractvalue instruction with a base aggregate
1559 /// value and a list of indices. The first ctor can optionally insert before
1560 /// an existing instruction, the second appends the new instruction to the
1561 /// specified BasicBlock.
Dan Gohman041e2eb2008-05-15 19:50:34 +00001562 template<typename InputIterator>
1563 inline ExtractValueInst(Value *Agg, InputIterator IdxBegin,
1564 InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001565 const std::string &NameStr,
Dan Gohman041e2eb2008-05-15 19:50:34 +00001566 Instruction *InsertBefore);
1567 template<typename InputIterator>
1568 inline ExtractValueInst(Value *Agg,
1569 InputIterator IdxBegin, InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001570 const std::string &NameStr, BasicBlock *InsertAtEnd);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001571
Dan Gohman8e640412008-05-31 19:09:47 +00001572 // allocate space for exactly one operand
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001573 void *operator new(size_t s) {
1574 return User::operator new(s, 1);
1575 }
1576
Gabor Greifd4f268b2008-06-06 20:28:12 +00001577public:
Dan Gohman041e2eb2008-05-15 19:50:34 +00001578 template<typename InputIterator>
1579 static ExtractValueInst *Create(Value *Agg, InputIterator IdxBegin,
1580 InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001581 const std::string &NameStr = "",
Dan Gohman041e2eb2008-05-15 19:50:34 +00001582 Instruction *InsertBefore = 0) {
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001583 return new
Evan Cheng1bf9a182008-07-24 00:08:56 +00001584 ExtractValueInst(Agg, IdxBegin, IdxEnd, NameStr, InsertBefore);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001585 }
1586 template<typename InputIterator>
1587 static ExtractValueInst *Create(Value *Agg,
1588 InputIterator IdxBegin, InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001589 const std::string &NameStr,
Dan Gohman041e2eb2008-05-15 19:50:34 +00001590 BasicBlock *InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001591 return new ExtractValueInst(Agg, IdxBegin, IdxEnd, NameStr, InsertAtEnd);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001592 }
1593
1594 /// Constructors - These two creators are convenience methods because one
1595 /// index extractvalue instructions are much more common than those with
1596 /// more than one.
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001597 static ExtractValueInst *Create(Value *Agg, unsigned Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001598 const std::string &NameStr = "",
Dan Gohman041e2eb2008-05-15 19:50:34 +00001599 Instruction *InsertBefore = 0) {
Dan Gohman2f27e172008-06-23 16:48:17 +00001600 unsigned Idxs[1] = { Idx };
Evan Cheng1bf9a182008-07-24 00:08:56 +00001601 return new ExtractValueInst(Agg, Idxs, Idxs + 1, NameStr, InsertBefore);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001602 }
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001603 static ExtractValueInst *Create(Value *Agg, unsigned Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001604 const std::string &NameStr,
Dan Gohman041e2eb2008-05-15 19:50:34 +00001605 BasicBlock *InsertAtEnd) {
Dan Gohman2f27e172008-06-23 16:48:17 +00001606 unsigned Idxs[1] = { Idx };
Evan Cheng1bf9a182008-07-24 00:08:56 +00001607 return new ExtractValueInst(Agg, Idxs, Idxs + 1, NameStr, InsertAtEnd);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001608 }
1609
1610 virtual ExtractValueInst *clone() const;
1611
Dan Gohman041e2eb2008-05-15 19:50:34 +00001612 // getType - Overload to return most specific pointer type...
1613 const PointerType *getType() const {
1614 return reinterpret_cast<const PointerType*>(Instruction::getType());
1615 }
1616
1617 /// getIndexedType - Returns the type of the element that would be extracted
1618 /// with an extractvalue instruction with the specified parameters.
1619 ///
Dan Gohmane2d896f2008-05-15 23:35:32 +00001620 /// Null is returned if the indices are invalid for the specified
Dan Gohman041e2eb2008-05-15 19:50:34 +00001621 /// pointer type.
1622 ///
1623 template<typename InputIterator>
1624 static const Type *getIndexedType(const Type *Ptr,
1625 InputIterator IdxBegin,
1626 InputIterator IdxEnd) {
1627 return getIndexedType(Ptr, IdxBegin, IdxEnd,
1628 typename std::iterator_traits<InputIterator>::
1629 iterator_category());
1630 }
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001631 static const Type *getIndexedType(const Type *Ptr, unsigned Idx);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001632
Owen Anderson5678d6e2008-06-19 17:15:57 +00001633 typedef const unsigned* idx_iterator;
1634 inline idx_iterator idx_begin() const { return Indices.begin(); }
1635 inline idx_iterator idx_end() const { return Indices.end(); }
Dan Gohman041e2eb2008-05-15 19:50:34 +00001636
1637 Value *getAggregateOperand() {
1638 return getOperand(0);
1639 }
1640 const Value *getAggregateOperand() const {
1641 return getOperand(0);
1642 }
1643 static unsigned getAggregateOperandIndex() {
1644 return 0U; // get index for modifying correct operand
1645 }
1646
1647 unsigned getNumIndices() const { // Note: always non-negative
Bill Wendling67944fc2008-06-05 07:35:27 +00001648 return (unsigned)Indices.size();
Dan Gohman041e2eb2008-05-15 19:50:34 +00001649 }
1650
1651 bool hasIndices() const {
Dan Gohman35651cd2008-05-31 19:09:08 +00001652 return true;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001653 }
1654
1655 // Methods for support type inquiry through isa, cast, and dyn_cast:
1656 static inline bool classof(const ExtractValueInst *) { return true; }
1657 static inline bool classof(const Instruction *I) {
1658 return I->getOpcode() == Instruction::ExtractValue;
1659 }
1660 static inline bool classof(const Value *V) {
1661 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1662 }
1663};
1664
Dan Gohmane4569942008-05-23 00:36:11 +00001665template<typename InputIterator>
1666ExtractValueInst::ExtractValueInst(Value *Agg,
1667 InputIterator IdxBegin,
1668 InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001669 const std::string &NameStr,
Dan Gohmane4569942008-05-23 00:36:11 +00001670 Instruction *InsertBefore)
Gabor Greifd4f268b2008-06-06 20:28:12 +00001671 : UnaryInstruction(checkType(getIndexedType(Agg->getType(),
Bill Wendling85f40542008-07-22 07:14:12 +00001672 IdxBegin, IdxEnd)),
1673 ExtractValue, Agg, InsertBefore) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001674 init(IdxBegin, IdxEnd, NameStr,
Dan Gohmane4569942008-05-23 00:36:11 +00001675 typename std::iterator_traits<InputIterator>::iterator_category());
1676}
1677template<typename InputIterator>
1678ExtractValueInst::ExtractValueInst(Value *Agg,
1679 InputIterator IdxBegin,
1680 InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001681 const std::string &NameStr,
Dan Gohmane4569942008-05-23 00:36:11 +00001682 BasicBlock *InsertAtEnd)
Gabor Greifd4f268b2008-06-06 20:28:12 +00001683 : UnaryInstruction(checkType(getIndexedType(Agg->getType(),
Bill Wendling85f40542008-07-22 07:14:12 +00001684 IdxBegin, IdxEnd)),
1685 ExtractValue, Agg, InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001686 init(IdxBegin, IdxEnd, NameStr,
Dan Gohmane4569942008-05-23 00:36:11 +00001687 typename std::iterator_traits<InputIterator>::iterator_category());
1688}
1689
Dan Gohmane4569942008-05-23 00:36:11 +00001690
Dan Gohman041e2eb2008-05-15 19:50:34 +00001691//===----------------------------------------------------------------------===//
1692// InsertValueInst Class
1693//===----------------------------------------------------------------------===//
1694
Dan Gohmane2d896f2008-05-15 23:35:32 +00001695/// InsertValueInst - This instruction inserts a struct field of array element
1696/// value into an aggregate value.
Dan Gohman041e2eb2008-05-15 19:50:34 +00001697///
1698class InsertValueInst : public Instruction {
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001699 SmallVector<unsigned, 4> Indices;
1700
1701 void *operator new(size_t, unsigned); // Do not implement
Dan Gohman041e2eb2008-05-15 19:50:34 +00001702 InsertValueInst(const InsertValueInst &IVI);
Matthijs Kooijmancfd5b7d2008-06-05 07:26:15 +00001703 void init(Value *Agg, Value *Val, const unsigned *Idx, unsigned NumIdx,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001704 const std::string &NameStr);
1705 void init(Value *Agg, Value *Val, unsigned Idx, const std::string &NameStr);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001706
1707 template<typename InputIterator>
1708 void init(Value *Agg, Value *Val,
1709 InputIterator IdxBegin, InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001710 const std::string &NameStr,
Dan Gohman041e2eb2008-05-15 19:50:34 +00001711 // This argument ensures that we have an iterator we can
1712 // do arithmetic on in constant time
1713 std::random_access_iterator_tag) {
1714 unsigned NumIdx = static_cast<unsigned>(std::distance(IdxBegin, IdxEnd));
1715
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001716 // There's no fundamental reason why we require at least one index
1717 // (other than weirdness with &*IdxBegin being invalid; see
1718 // getelementptr's init routine for example). But there's no
1719 // present need to support it.
1720 assert(NumIdx > 0 && "InsertValueInst must have at least one index");
1721
1722 // This requires that the iterator points to contiguous memory.
Evan Cheng1bf9a182008-07-24 00:08:56 +00001723 init(Agg, Val, &*IdxBegin, NumIdx, NameStr); // FIXME: for the general case
Matthijs Kooijman444099f62008-06-04 14:40:55 +00001724 // we have to build an array here
Dan Gohman041e2eb2008-05-15 19:50:34 +00001725 }
1726
Dan Gohmane2d896f2008-05-15 23:35:32 +00001727 /// Constructors - Create a insertvalue instruction with a base aggregate
1728 /// value, a value to insert, and a list of indices. The first ctor can
1729 /// optionally insert before an existing instruction, the second appends
1730 /// the new instruction to the specified BasicBlock.
Dan Gohman041e2eb2008-05-15 19:50:34 +00001731 template<typename InputIterator>
1732 inline InsertValueInst(Value *Agg, Value *Val, InputIterator IdxBegin,
Dan Gohmane2d896f2008-05-15 23:35:32 +00001733 InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001734 const std::string &NameStr,
Dan Gohmane2d896f2008-05-15 23:35:32 +00001735 Instruction *InsertBefore);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001736 template<typename InputIterator>
1737 inline InsertValueInst(Value *Agg, Value *Val,
Dan Gohmane2d896f2008-05-15 23:35:32 +00001738 InputIterator IdxBegin, InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001739 const std::string &NameStr, BasicBlock *InsertAtEnd);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001740
1741 /// Constructors - These two constructors are convenience methods because one
1742 /// and two index insertvalue instructions are so common.
1743 InsertValueInst(Value *Agg, Value *Val,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001744 unsigned Idx, const std::string &NameStr = "",
Dan Gohman041e2eb2008-05-15 19:50:34 +00001745 Instruction *InsertBefore = 0);
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001746 InsertValueInst(Value *Agg, Value *Val, unsigned Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001747 const std::string &NameStr, BasicBlock *InsertAtEnd);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001748public:
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001749 // allocate space for exactly two operands
1750 void *operator new(size_t s) {
1751 return User::operator new(s, 2);
1752 }
1753
Dan Gohman041e2eb2008-05-15 19:50:34 +00001754 template<typename InputIterator>
Matthijs Kooijmancfd5b7d2008-06-05 07:26:15 +00001755 static InsertValueInst *Create(Value *Agg, Value *Val, InputIterator IdxBegin,
Dan Gohman041e2eb2008-05-15 19:50:34 +00001756 InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001757 const std::string &NameStr = "",
Dan Gohman041e2eb2008-05-15 19:50:34 +00001758 Instruction *InsertBefore = 0) {
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001759 return new InsertValueInst(Agg, Val, IdxBegin, IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001760 NameStr, InsertBefore);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001761 }
1762 template<typename InputIterator>
1763 static InsertValueInst *Create(Value *Agg, Value *Val,
1764 InputIterator IdxBegin, InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001765 const std::string &NameStr,
Dan Gohman041e2eb2008-05-15 19:50:34 +00001766 BasicBlock *InsertAtEnd) {
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001767 return new InsertValueInst(Agg, Val, IdxBegin, IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001768 NameStr, InsertAtEnd);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001769 }
1770
1771 /// Constructors - These two creators are convenience methods because one
1772 /// index insertvalue instructions are much more common than those with
1773 /// more than one.
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001774 static InsertValueInst *Create(Value *Agg, Value *Val, unsigned Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001775 const std::string &NameStr = "",
Dan Gohman041e2eb2008-05-15 19:50:34 +00001776 Instruction *InsertBefore = 0) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001777 return new InsertValueInst(Agg, Val, Idx, NameStr, InsertBefore);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001778 }
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001779 static InsertValueInst *Create(Value *Agg, Value *Val, unsigned Idx,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001780 const std::string &NameStr,
Dan Gohman041e2eb2008-05-15 19:50:34 +00001781 BasicBlock *InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001782 return new InsertValueInst(Agg, Val, Idx, NameStr, InsertAtEnd);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001783 }
1784
1785 virtual InsertValueInst *clone() const;
1786
1787 /// Transparently provide more efficient getOperand methods.
1788 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
1789
1790 // getType - Overload to return most specific pointer type...
1791 const PointerType *getType() const {
1792 return reinterpret_cast<const PointerType*>(Instruction::getType());
1793 }
1794
Owen Anderson5678d6e2008-06-19 17:15:57 +00001795 typedef const unsigned* idx_iterator;
1796 inline idx_iterator idx_begin() const { return Indices.begin(); }
1797 inline idx_iterator idx_end() const { return Indices.end(); }
Dan Gohman041e2eb2008-05-15 19:50:34 +00001798
1799 Value *getAggregateOperand() {
1800 return getOperand(0);
1801 }
1802 const Value *getAggregateOperand() const {
1803 return getOperand(0);
1804 }
1805 static unsigned getAggregateOperandIndex() {
1806 return 0U; // get index for modifying correct operand
1807 }
1808
1809 Value *getInsertedValueOperand() {
1810 return getOperand(1);
1811 }
1812 const Value *getInsertedValueOperand() const {
1813 return getOperand(1);
1814 }
1815 static unsigned getInsertedValueOperandIndex() {
1816 return 1U; // get index for modifying correct operand
1817 }
1818
1819 unsigned getNumIndices() const { // Note: always non-negative
Bill Wendling67944fc2008-06-05 07:35:27 +00001820 return (unsigned)Indices.size();
Dan Gohman041e2eb2008-05-15 19:50:34 +00001821 }
1822
1823 bool hasIndices() const {
Dan Gohman35651cd2008-05-31 19:09:08 +00001824 return true;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001825 }
1826
1827 // Methods for support type inquiry through isa, cast, and dyn_cast:
1828 static inline bool classof(const InsertValueInst *) { return true; }
1829 static inline bool classof(const Instruction *I) {
1830 return I->getOpcode() == Instruction::InsertValue;
1831 }
1832 static inline bool classof(const Value *V) {
1833 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1834 }
1835};
1836
1837template <>
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001838struct OperandTraits<InsertValueInst> : FixedNumOperandTraits<2> {
Dan Gohman041e2eb2008-05-15 19:50:34 +00001839};
1840
Dan Gohmane4569942008-05-23 00:36:11 +00001841template<typename InputIterator>
1842InsertValueInst::InsertValueInst(Value *Agg,
1843 Value *Val,
1844 InputIterator IdxBegin,
1845 InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001846 const std::string &NameStr,
Dan Gohmane4569942008-05-23 00:36:11 +00001847 Instruction *InsertBefore)
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001848 : Instruction(Agg->getType(), InsertValue,
1849 OperandTraits<InsertValueInst>::op_begin(this),
1850 2, InsertBefore) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001851 init(Agg, Val, IdxBegin, IdxEnd, NameStr,
Dan Gohmane4569942008-05-23 00:36:11 +00001852 typename std::iterator_traits<InputIterator>::iterator_category());
1853}
1854template<typename InputIterator>
1855InsertValueInst::InsertValueInst(Value *Agg,
1856 Value *Val,
1857 InputIterator IdxBegin,
1858 InputIterator IdxEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001859 const std::string &NameStr,
Dan Gohmane4569942008-05-23 00:36:11 +00001860 BasicBlock *InsertAtEnd)
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001861 : Instruction(Agg->getType(), InsertValue,
1862 OperandTraits<InsertValueInst>::op_begin(this),
1863 2, InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001864 init(Agg, Val, IdxBegin, IdxEnd, NameStr,
Dan Gohmane4569942008-05-23 00:36:11 +00001865 typename std::iterator_traits<InputIterator>::iterator_category());
1866}
1867
Dan Gohman041e2eb2008-05-15 19:50:34 +00001868DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertValueInst, Value)
1869
1870//===----------------------------------------------------------------------===//
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001871// PHINode Class
1872//===----------------------------------------------------------------------===//
1873
1874// PHINode - The PHINode class is used to represent the magical mystical PHI
1875// node, that can not exist in nature, but can be synthesized in a computer
1876// scientist's overactive imagination.
1877//
1878class PHINode : public Instruction {
Gabor Greif051a9502008-04-06 20:25:17 +00001879 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Chris Lattner454928e2005-01-29 00:31:36 +00001880 /// ReservedSpace - The number of operands actually allocated. NumOperands is
1881 /// the number actually in use.
1882 unsigned ReservedSpace;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001883 PHINode(const PHINode &PN);
Gabor Greif051a9502008-04-06 20:25:17 +00001884 // allocate space for exactly zero operands
1885 void *operator new(size_t s) {
1886 return User::operator new(s, 0);
1887 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001888 explicit PHINode(const Type *Ty, const std::string &NameStr = "",
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001889 Instruction *InsertBefore = 0)
Chris Lattner910c80a2007-02-24 00:55:48 +00001890 : Instruction(Ty, Instruction::PHI, 0, 0, InsertBefore),
Chris Lattner454928e2005-01-29 00:31:36 +00001891 ReservedSpace(0) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001892 setName(NameStr);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001893 }
1894
Evan Cheng1bf9a182008-07-24 00:08:56 +00001895 PHINode(const Type *Ty, const std::string &NameStr, BasicBlock *InsertAtEnd)
Chris Lattner910c80a2007-02-24 00:55:48 +00001896 : Instruction(Ty, Instruction::PHI, 0, 0, InsertAtEnd),
Chris Lattner454928e2005-01-29 00:31:36 +00001897 ReservedSpace(0) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001898 setName(NameStr);
Chris Lattner454928e2005-01-29 00:31:36 +00001899 }
Gabor Greif051a9502008-04-06 20:25:17 +00001900public:
Evan Cheng1bf9a182008-07-24 00:08:56 +00001901 static PHINode *Create(const Type *Ty, const std::string &NameStr = "",
Gabor Greif051a9502008-04-06 20:25:17 +00001902 Instruction *InsertBefore = 0) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001903 return new PHINode(Ty, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00001904 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001905 static PHINode *Create(const Type *Ty, const std::string &NameStr,
Evan Chengd69bb1a2008-05-05 17:41:03 +00001906 BasicBlock *InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001907 return new PHINode(Ty, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001908 }
Gordon Henriksenafba8fe2007-12-10 02:14:30 +00001909 ~PHINode();
1910
Chris Lattner454928e2005-01-29 00:31:36 +00001911 /// reserveOperandSpace - This method can be used to avoid repeated
1912 /// reallocation of PHI operand lists by reserving space for the correct
1913 /// number of operands before adding them. Unlike normal vector reserves,
1914 /// this method can also be used to trim the operand space.
1915 void reserveOperandSpace(unsigned NumValues) {
1916 resizeOperands(NumValues*2);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001917 }
1918
Chris Lattnerf319e832004-10-15 23:52:05 +00001919 virtual PHINode *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001920
Gabor Greifefe65362008-05-10 08:32:32 +00001921 /// Provide fast operand accessors
1922 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
1923
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001924 /// getNumIncomingValues - Return the number of incoming edges
1925 ///
Chris Lattner454928e2005-01-29 00:31:36 +00001926 unsigned getNumIncomingValues() const { return getNumOperands()/2; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001927
Reid Spencerc773de62006-05-19 19:07:54 +00001928 /// getIncomingValue - Return incoming value number x
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001929 ///
1930 Value *getIncomingValue(unsigned i) const {
Chris Lattner454928e2005-01-29 00:31:36 +00001931 assert(i*2 < getNumOperands() && "Invalid value number!");
1932 return getOperand(i*2);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001933 }
1934 void setIncomingValue(unsigned i, Value *V) {
Chris Lattner454928e2005-01-29 00:31:36 +00001935 assert(i*2 < getNumOperands() && "Invalid value number!");
1936 setOperand(i*2, V);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001937 }
Chris Lattner454928e2005-01-29 00:31:36 +00001938 unsigned getOperandNumForIncomingValue(unsigned i) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001939 return i*2;
1940 }
1941
Reid Spencerc773de62006-05-19 19:07:54 +00001942 /// getIncomingBlock - Return incoming basic block number x
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001943 ///
Misha Brukman9769ab22005-04-21 20:19:05 +00001944 BasicBlock *getIncomingBlock(unsigned i) const {
Gabor Greifefe65362008-05-10 08:32:32 +00001945 return static_cast<BasicBlock*>(getOperand(i*2+1));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001946 }
1947 void setIncomingBlock(unsigned i, BasicBlock *BB) {
Gabor Greifefe65362008-05-10 08:32:32 +00001948 setOperand(i*2+1, BB);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001949 }
1950 unsigned getOperandNumForIncomingBlock(unsigned i) {
1951 return i*2+1;
1952 }
1953
1954 /// addIncoming - Add an incoming value to the end of the PHI list
1955 ///
1956 void addIncoming(Value *V, BasicBlock *BB) {
Anton Korobeynikov351b0d42008-02-27 22:37:28 +00001957 assert(V && "PHI node got a null value!");
1958 assert(BB && "PHI node got a null basic block!");
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001959 assert(getType() == V->getType() &&
1960 "All operands to PHI node must be the same type as the PHI node!");
Chris Lattner454928e2005-01-29 00:31:36 +00001961 unsigned OpNo = NumOperands;
1962 if (OpNo+2 > ReservedSpace)
1963 resizeOperands(0); // Get more space!
1964 // Initialize some new operands.
1965 NumOperands = OpNo+2;
Gabor Greif6c80c382008-05-26 21:33:52 +00001966 OperandList[OpNo] = V;
1967 OperandList[OpNo+1] = BB;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001968 }
Misha Brukman9769ab22005-04-21 20:19:05 +00001969
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001970 /// removeIncomingValue - Remove an incoming value. This is useful if a
1971 /// predecessor basic block is deleted. The value removed is returned.
1972 ///
1973 /// If the last incoming value for a PHI node is removed (and DeletePHIIfEmpty
1974 /// is true), the PHI node is destroyed and any uses of it are replaced with
1975 /// dummy values. The only time there should be zero incoming values to a PHI
1976 /// node is when the block is dead, so this strategy is sound.
1977 ///
1978 Value *removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty = true);
1979
Gabor Greifefe65362008-05-10 08:32:32 +00001980 Value *removeIncomingValue(const BasicBlock *BB, bool DeletePHIIfEmpty=true) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001981 int Idx = getBasicBlockIndex(BB);
1982 assert(Idx >= 0 && "Invalid basic block argument to remove!");
1983 return removeIncomingValue(Idx, DeletePHIIfEmpty);
1984 }
1985
Misha Brukman9769ab22005-04-21 20:19:05 +00001986 /// getBasicBlockIndex - Return the first index of the specified basic
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001987 /// block in the value list for this PHI. Returns -1 if no instance.
1988 ///
1989 int getBasicBlockIndex(const BasicBlock *BB) const {
Chris Lattner454928e2005-01-29 00:31:36 +00001990 Use *OL = OperandList;
Misha Brukman9769ab22005-04-21 20:19:05 +00001991 for (unsigned i = 0, e = getNumOperands(); i != e; i += 2)
Gabor Greifefe65362008-05-10 08:32:32 +00001992 if (OL[i+1].get() == BB) return i/2;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001993 return -1;
1994 }
1995
1996 Value *getIncomingValueForBlock(const BasicBlock *BB) const {
1997 return getIncomingValue(getBasicBlockIndex(BB));
1998 }
1999
Chris Lattnerf56a8db2006-10-03 17:09:12 +00002000 /// hasConstantValue - If the specified PHI node always merges together the
Nate Begemana83ba0f2005-08-04 23:24:19 +00002001 /// same value, return the value, otherwise return null.
2002 ///
Chris Lattner9acbd612005-08-05 00:49:06 +00002003 Value *hasConstantValue(bool AllowNonDominatingInstruction = false) const;
Chris Lattnerf56a8db2006-10-03 17:09:12 +00002004
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002005 /// Methods for support type inquiry through isa, cast, and dyn_cast:
2006 static inline bool classof(const PHINode *) { return true; }
2007 static inline bool classof(const Instruction *I) {
Misha Brukman9769ab22005-04-21 20:19:05 +00002008 return I->getOpcode() == Instruction::PHI;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002009 }
2010 static inline bool classof(const Value *V) {
2011 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2012 }
Chris Lattner454928e2005-01-29 00:31:36 +00002013 private:
2014 void resizeOperands(unsigned NumOperands);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002015};
2016
Gabor Greifefe65362008-05-10 08:32:32 +00002017template <>
2018struct OperandTraits<PHINode> : HungoffOperandTraits<2> {
2019};
2020
2021DEFINE_TRANSPARENT_OPERAND_ACCESSORS(PHINode, Value)
2022
2023
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002024//===----------------------------------------------------------------------===//
2025// ReturnInst Class
2026//===----------------------------------------------------------------------===//
2027
2028//===---------------------------------------------------------------------------
2029/// ReturnInst - Return a value (possibly void), from a function. Execution
2030/// does not continue in this function any longer.
2031///
2032class ReturnInst : public TerminatorInst {
Chris Lattner910c80a2007-02-24 00:55:48 +00002033 ReturnInst(const ReturnInst &RI);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002034
Gabor Greif051a9502008-04-06 20:25:17 +00002035private:
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002036 // ReturnInst constructors:
2037 // ReturnInst() - 'ret void' instruction
Alkis Evlogimenos859804f2004-11-17 21:02:25 +00002038 // ReturnInst( null) - 'ret void' instruction
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002039 // ReturnInst(Value* X) - 'ret X' instruction
Gabor Greifefe65362008-05-10 08:32:32 +00002040 // ReturnInst( null, Inst *I) - 'ret void' instruction, insert before I
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002041 // ReturnInst(Value* X, Inst *I) - 'ret X' instruction, insert before I
Gabor Greifefe65362008-05-10 08:32:32 +00002042 // ReturnInst( null, BB *B) - 'ret void' instruction, insert @ end of B
2043 // ReturnInst(Value* X, BB *B) - 'ret X' instruction, insert @ end of B
Alkis Evlogimenos859804f2004-11-17 21:02:25 +00002044 //
2045 // NOTE: If the Value* passed is of type void then the constructor behaves as
2046 // if it was passed NULL.
Chris Lattner910c80a2007-02-24 00:55:48 +00002047 explicit ReturnInst(Value *retVal = 0, Instruction *InsertBefore = 0);
2048 ReturnInst(Value *retVal, BasicBlock *InsertAtEnd);
2049 explicit ReturnInst(BasicBlock *InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00002050public:
2051 static ReturnInst* Create(Value *retVal = 0, Instruction *InsertBefore = 0) {
2052 return new(!!retVal) ReturnInst(retVal, InsertBefore);
2053 }
2054 static ReturnInst* Create(Value *retVal, BasicBlock *InsertAtEnd) {
2055 return new(!!retVal) ReturnInst(retVal, InsertAtEnd);
2056 }
Gabor Greif051a9502008-04-06 20:25:17 +00002057 static ReturnInst* Create(BasicBlock *InsertAtEnd) {
2058 return new(0) ReturnInst(InsertAtEnd);
2059 }
Devang Patel57ef4f42008-02-23 00:35:18 +00002060 virtual ~ReturnInst();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002061
Chris Lattnerf319e832004-10-15 23:52:05 +00002062 virtual ReturnInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002063
Gabor Greifefe65362008-05-10 08:32:32 +00002064 /// Provide fast operand accessors
2065 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Devang Patel64d4e612008-02-26 17:56:20 +00002066
Gabor Greifefe65362008-05-10 08:32:32 +00002067 /// Convenience accessor
Devang Patel1eafa062008-03-11 17:35:03 +00002068 Value *getReturnValue(unsigned n = 0) const {
Gabor Greifefe65362008-05-10 08:32:32 +00002069 return n < getNumOperands()
2070 ? getOperand(n)
2071 : 0;
Devang Patel1eafa062008-03-11 17:35:03 +00002072 }
2073
Chris Lattner454928e2005-01-29 00:31:36 +00002074 unsigned getNumSuccessors() const { return 0; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002075
2076 // Methods for support type inquiry through isa, cast, and dyn_cast:
2077 static inline bool classof(const ReturnInst *) { return true; }
2078 static inline bool classof(const Instruction *I) {
2079 return (I->getOpcode() == Instruction::Ret);
2080 }
2081 static inline bool classof(const Value *V) {
2082 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2083 }
Chris Lattner454928e2005-01-29 00:31:36 +00002084 private:
2085 virtual BasicBlock *getSuccessorV(unsigned idx) const;
2086 virtual unsigned getNumSuccessorsV() const;
2087 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002088};
2089
Gabor Greifefe65362008-05-10 08:32:32 +00002090template <>
Dan Gohmanfc74abf2008-07-23 00:34:11 +00002091struct OperandTraits<ReturnInst> : OptionalOperandTraits<> {
Gabor Greifefe65362008-05-10 08:32:32 +00002092};
2093
2094DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ReturnInst, Value)
Gabor Greifefe65362008-05-10 08:32:32 +00002095
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002096//===----------------------------------------------------------------------===//
2097// BranchInst Class
2098//===----------------------------------------------------------------------===//
2099
2100//===---------------------------------------------------------------------------
2101/// BranchInst - Conditional or Unconditional Branch instruction.
2102///
2103class BranchInst : public TerminatorInst {
Chris Lattner454928e2005-01-29 00:31:36 +00002104 /// Ops list - Branches are strange. The operands are ordered:
2105 /// TrueDest, FalseDest, Cond. This makes some accessors faster because
2106 /// they don't have to check for cond/uncond branchness.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002107 BranchInst(const BranchInst &BI);
Chris Lattner454928e2005-01-29 00:31:36 +00002108 void AssertOK();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002109 // BranchInst constructors (where {B, T, F} are blocks, and C is a condition):
2110 // BranchInst(BB *B) - 'br B'
2111 // BranchInst(BB* T, BB *F, Value *C) - 'br C, T, F'
2112 // BranchInst(BB* B, Inst *I) - 'br B' insert before I
2113 // BranchInst(BB* T, BB *F, Value *C, Inst *I) - 'br C, T, F', insert before I
2114 // BranchInst(BB* B, BB *I) - 'br B' insert at end
2115 // BranchInst(BB* T, BB *F, Value *C, BB *I) - 'br C, T, F', insert at end
Chris Lattner910c80a2007-02-24 00:55:48 +00002116 explicit BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore = 0);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002117 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
Chris Lattner910c80a2007-02-24 00:55:48 +00002118 Instruction *InsertBefore = 0);
2119 BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002120 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
Chris Lattner910c80a2007-02-24 00:55:48 +00002121 BasicBlock *InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00002122public:
2123 static BranchInst *Create(BasicBlock *IfTrue, Instruction *InsertBefore = 0) {
2124 return new(1) BranchInst(IfTrue, InsertBefore);
2125 }
Gabor Greifefe65362008-05-10 08:32:32 +00002126 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
2127 Value *Cond, Instruction *InsertBefore = 0) {
Gabor Greif051a9502008-04-06 20:25:17 +00002128 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertBefore);
2129 }
2130 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) {
2131 return new(1) BranchInst(IfTrue, InsertAtEnd);
2132 }
Gabor Greifefe65362008-05-10 08:32:32 +00002133 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
2134 Value *Cond, BasicBlock *InsertAtEnd) {
Gabor Greif051a9502008-04-06 20:25:17 +00002135 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertAtEnd);
2136 }
Chris Lattner454928e2005-01-29 00:31:36 +00002137
Bill Wendlingd2a5a2a2008-05-10 10:58:07 +00002138 ~BranchInst() {
Gabor Greifefe65362008-05-10 08:32:32 +00002139 if (NumOperands == 1)
Bill Wendlingc2e73532008-05-10 19:59:59 +00002140 NumOperands = (unsigned)((Use*)this - OperandList);
Gabor Greifefe65362008-05-10 08:32:32 +00002141 }
2142
Chris Lattner454928e2005-01-29 00:31:36 +00002143 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +00002144 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002145
Chris Lattnerf319e832004-10-15 23:52:05 +00002146 virtual BranchInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002147
Devang Patel4d4a5e02008-02-23 01:11:02 +00002148 bool isUnconditional() const { return getNumOperands() == 1; }
2149 bool isConditional() const { return getNumOperands() == 3; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002150
Devang Patel4d4a5e02008-02-23 01:11:02 +00002151 Value *getCondition() const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002152 assert(isConditional() && "Cannot get condition of an uncond branch!");
Chris Lattner454928e2005-01-29 00:31:36 +00002153 return getOperand(2);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002154 }
2155
2156 void setCondition(Value *V) {
2157 assert(isConditional() && "Cannot set condition of unconditional branch!");
2158 setOperand(2, V);
2159 }
2160
2161 // setUnconditionalDest - Change the current branch to an unconditional branch
2162 // targeting the specified block.
Chris Lattner454928e2005-01-29 00:31:36 +00002163 // FIXME: Eliminate this ugly method.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002164 void setUnconditionalDest(BasicBlock *Dest) {
Gabor Greifefe65362008-05-10 08:32:32 +00002165 Op<0>() = Dest;
Chris Lattner454928e2005-01-29 00:31:36 +00002166 if (isConditional()) { // Convert this to an uncond branch.
Gabor Greifefe65362008-05-10 08:32:32 +00002167 Op<1>().set(0);
2168 Op<2>().set(0);
Chris Lattner454928e2005-01-29 00:31:36 +00002169 NumOperands = 1;
Chris Lattner454928e2005-01-29 00:31:36 +00002170 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002171 }
2172
Chris Lattner454928e2005-01-29 00:31:36 +00002173 unsigned getNumSuccessors() const { return 1+isConditional(); }
2174
2175 BasicBlock *getSuccessor(unsigned i) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002176 assert(i < getNumSuccessors() && "Successor # out of range for Branch!");
Dan Gohmanb96039e2007-05-11 20:59:29 +00002177 return cast<BasicBlock>(getOperand(i));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002178 }
2179
Chris Lattner454928e2005-01-29 00:31:36 +00002180 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002181 assert(idx < getNumSuccessors() && "Successor # out of range for Branch!");
Gabor Greifefe65362008-05-10 08:32:32 +00002182 setOperand(idx, NewSucc);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002183 }
2184
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002185 // Methods for support type inquiry through isa, cast, and dyn_cast:
2186 static inline bool classof(const BranchInst *) { return true; }
2187 static inline bool classof(const Instruction *I) {
2188 return (I->getOpcode() == Instruction::Br);
2189 }
2190 static inline bool classof(const Value *V) {
2191 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2192 }
Chris Lattner454928e2005-01-29 00:31:36 +00002193private:
2194 virtual BasicBlock *getSuccessorV(unsigned idx) const;
2195 virtual unsigned getNumSuccessorsV() const;
2196 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002197};
2198
Gabor Greifefe65362008-05-10 08:32:32 +00002199template <>
2200struct OperandTraits<BranchInst> : HungoffOperandTraits<> {
2201 // we need to access operands via OperandList, since
2202 // the NumOperands may change from 3 to 1
2203 static inline void *allocate(unsigned); // FIXME
2204};
2205
2206DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BranchInst, Value)
2207
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002208//===----------------------------------------------------------------------===//
2209// SwitchInst Class
2210//===----------------------------------------------------------------------===//
2211
2212//===---------------------------------------------------------------------------
2213/// SwitchInst - Multiway switch
2214///
2215class SwitchInst : public TerminatorInst {
Gabor Greifefe65362008-05-10 08:32:32 +00002216 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Chris Lattner454928e2005-01-29 00:31:36 +00002217 unsigned ReservedSpace;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002218 // Operand[0] = Value to switch on
2219 // Operand[1] = Default basic block destination
2220 // Operand[2n ] = Value to match
2221 // Operand[2n+1] = BasicBlock to go to on match
2222 SwitchInst(const SwitchInst &RI);
Chris Lattner454928e2005-01-29 00:31:36 +00002223 void init(Value *Value, BasicBlock *Default, unsigned NumCases);
2224 void resizeOperands(unsigned No);
Gabor Greifefe65362008-05-10 08:32:32 +00002225 // allocate space for exactly zero operands
2226 void *operator new(size_t s) {
2227 return User::operator new(s, 0);
2228 }
Chris Lattner454928e2005-01-29 00:31:36 +00002229 /// SwitchInst ctor - Create a new switch instruction, specifying a value to
2230 /// switch on and a default destination. The number of additional cases can
2231 /// be specified here to make memory allocation more efficient. This
2232 /// constructor can also autoinsert before another instruction.
2233 SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
Chris Lattner910c80a2007-02-24 00:55:48 +00002234 Instruction *InsertBefore = 0);
2235
Chris Lattner454928e2005-01-29 00:31:36 +00002236 /// SwitchInst ctor - Create a new switch instruction, specifying a value to
2237 /// switch on and a default destination. The number of additional cases can
2238 /// be specified here to make memory allocation more efficient. This
2239 /// constructor also autoinserts at the end of the specified BasicBlock.
2240 SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
Chris Lattner910c80a2007-02-24 00:55:48 +00002241 BasicBlock *InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00002242public:
Gabor Greifefe65362008-05-10 08:32:32 +00002243 static SwitchInst *Create(Value *Value, BasicBlock *Default,
2244 unsigned NumCases, Instruction *InsertBefore = 0) {
2245 return new SwitchInst(Value, Default, NumCases, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00002246 }
Gabor Greifefe65362008-05-10 08:32:32 +00002247 static SwitchInst *Create(Value *Value, BasicBlock *Default,
2248 unsigned NumCases, BasicBlock *InsertAtEnd) {
2249 return new SwitchInst(Value, Default, NumCases, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00002250 }
Gordon Henriksenafba8fe2007-12-10 02:14:30 +00002251 ~SwitchInst();
Chris Lattner454928e2005-01-29 00:31:36 +00002252
Gabor Greifefe65362008-05-10 08:32:32 +00002253 /// Provide fast operand accessors
2254 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
2255
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002256 // Accessor Methods for Switch stmt
Devang Patel4d4a5e02008-02-23 01:11:02 +00002257 Value *getCondition() const { return getOperand(0); }
Chris Lattner454928e2005-01-29 00:31:36 +00002258 void setCondition(Value *V) { setOperand(0, V); }
Chris Lattnerbfaf88a2004-12-10 20:35:47 +00002259
Devang Patel4d4a5e02008-02-23 01:11:02 +00002260 BasicBlock *getDefaultDest() const {
Chris Lattner454928e2005-01-29 00:31:36 +00002261 return cast<BasicBlock>(getOperand(1));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002262 }
2263
2264 /// getNumCases - return the number of 'cases' in this switch instruction.
2265 /// Note that case #0 is always the default case.
2266 unsigned getNumCases() const {
Chris Lattner454928e2005-01-29 00:31:36 +00002267 return getNumOperands()/2;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002268 }
2269
2270 /// getCaseValue - Return the specified case value. Note that case #0, the
2271 /// default destination, does not have a case value.
Chris Lattnerd1a32602005-02-24 05:32:09 +00002272 ConstantInt *getCaseValue(unsigned i) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002273 assert(i && i < getNumCases() && "Illegal case value to get!");
2274 return getSuccessorValue(i);
2275 }
2276
2277 /// getCaseValue - Return the specified case value. Note that case #0, the
2278 /// default destination, does not have a case value.
Chris Lattnerd1a32602005-02-24 05:32:09 +00002279 const ConstantInt *getCaseValue(unsigned i) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002280 assert(i && i < getNumCases() && "Illegal case value to get!");
2281 return getSuccessorValue(i);
2282 }
2283
2284 /// findCaseValue - Search all of the case values for the specified constant.
2285 /// If it is explicitly handled, return the case number of it, otherwise
2286 /// return 0 to indicate that it is handled by the default handler.
Chris Lattnerd1a32602005-02-24 05:32:09 +00002287 unsigned findCaseValue(const ConstantInt *C) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002288 for (unsigned i = 1, e = getNumCases(); i != e; ++i)
2289 if (getCaseValue(i) == C)
2290 return i;
2291 return 0;
2292 }
2293
Nick Lewycky011f1842006-09-18 19:03:59 +00002294 /// findCaseDest - Finds the unique case value for a given successor. Returns
2295 /// null if the successor is not found, not unique, or is the default case.
2296 ConstantInt *findCaseDest(BasicBlock *BB) {
Nick Lewyckyd7915442006-09-18 20:44:37 +00002297 if (BB == getDefaultDest()) return NULL;
2298
Nick Lewycky011f1842006-09-18 19:03:59 +00002299 ConstantInt *CI = NULL;
2300 for (unsigned i = 1, e = getNumCases(); i != e; ++i) {
2301 if (getSuccessor(i) == BB) {
2302 if (CI) return NULL; // Multiple cases lead to BB.
2303 else CI = getCaseValue(i);
2304 }
2305 }
2306 return CI;
2307 }
2308
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002309 /// addCase - Add an entry to the switch instruction...
2310 ///
Chris Lattnerd1a32602005-02-24 05:32:09 +00002311 void addCase(ConstantInt *OnVal, BasicBlock *Dest);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002312
2313 /// removeCase - This method removes the specified successor from the switch
2314 /// instruction. Note that this cannot be used to remove the default
2315 /// destination (successor #0).
2316 ///
2317 void removeCase(unsigned idx);
2318
Chris Lattner454928e2005-01-29 00:31:36 +00002319 virtual SwitchInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002320
Chris Lattner454928e2005-01-29 00:31:36 +00002321 unsigned getNumSuccessors() const { return getNumOperands()/2; }
2322 BasicBlock *getSuccessor(unsigned idx) const {
2323 assert(idx < getNumSuccessors() &&"Successor idx out of range for switch!");
2324 return cast<BasicBlock>(getOperand(idx*2+1));
2325 }
2326 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002327 assert(idx < getNumSuccessors() && "Successor # out of range for switch!");
Gabor Greifefe65362008-05-10 08:32:32 +00002328 setOperand(idx*2+1, NewSucc);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002329 }
2330
2331 // getSuccessorValue - Return the value associated with the specified
2332 // successor.
Devang Patel4d4a5e02008-02-23 01:11:02 +00002333 ConstantInt *getSuccessorValue(unsigned idx) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002334 assert(idx < getNumSuccessors() && "Successor # out of range!");
Reid Spenceredd5d9e2005-05-15 16:13:11 +00002335 return reinterpret_cast<ConstantInt*>(getOperand(idx*2));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002336 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002337
2338 // Methods for support type inquiry through isa, cast, and dyn_cast:
2339 static inline bool classof(const SwitchInst *) { return true; }
2340 static inline bool classof(const Instruction *I) {
Chris Lattnerd1a32602005-02-24 05:32:09 +00002341 return I->getOpcode() == Instruction::Switch;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002342 }
2343 static inline bool classof(const Value *V) {
2344 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2345 }
Chris Lattner454928e2005-01-29 00:31:36 +00002346private:
2347 virtual BasicBlock *getSuccessorV(unsigned idx) const;
2348 virtual unsigned getNumSuccessorsV() const;
2349 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002350};
2351
Gabor Greifefe65362008-05-10 08:32:32 +00002352template <>
2353struct OperandTraits<SwitchInst> : HungoffOperandTraits<2> {
2354};
2355
2356DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SwitchInst, Value)
2357
2358
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002359//===----------------------------------------------------------------------===//
2360// InvokeInst Class
2361//===----------------------------------------------------------------------===//
2362
Chris Lattner3340ffe2005-05-06 20:26:26 +00002363/// InvokeInst - Invoke instruction. The SubclassData field is used to hold the
2364/// calling convention of the call.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002365///
2366class InvokeInst : public TerminatorInst {
Devang Patel05988662008-09-25 21:00:45 +00002367 AttrListPtr AttributeList;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002368 InvokeInst(const InvokeInst &BI);
2369 void init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Chris Lattnerd2dd1502007-02-13 01:04:01 +00002370 Value* const *Args, unsigned NumArgs);
David Greenef1355a52007-08-27 19:04:21 +00002371
2372 template<typename InputIterator>
2373 void init(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException,
2374 InputIterator ArgBegin, InputIterator ArgEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00002375 const std::string &NameStr,
David Greenef1355a52007-08-27 19:04:21 +00002376 // This argument ensures that we have an iterator we can
2377 // do arithmetic on in constant time
2378 std::random_access_iterator_tag) {
Chris Lattnera5c0d1e2007-08-29 16:32:50 +00002379 unsigned NumArgs = (unsigned)std::distance(ArgBegin, ArgEnd);
David Greenef1355a52007-08-27 19:04:21 +00002380
Chris Lattnera5c0d1e2007-08-29 16:32:50 +00002381 // This requires that the iterator points to contiguous memory.
2382 init(Func, IfNormal, IfException, NumArgs ? &*ArgBegin : 0, NumArgs);
Evan Cheng1bf9a182008-07-24 00:08:56 +00002383 setName(NameStr);
David Greenef1355a52007-08-27 19:04:21 +00002384 }
2385
David Greenef1355a52007-08-27 19:04:21 +00002386 /// Construct an InvokeInst given a range of arguments.
2387 /// InputIterator must be a random-access iterator pointing to
2388 /// contiguous storage (e.g. a std::vector<>::iterator). Checks are
2389 /// made for random-accessness but not for contiguous storage as
2390 /// that would incur runtime overhead.
2391 ///
2392 /// @brief Construct an InvokeInst from a range of arguments
2393 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +00002394 inline InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException,
2395 InputIterator ArgBegin, InputIterator ArgEnd,
2396 unsigned Values,
Evan Cheng1bf9a182008-07-24 00:08:56 +00002397 const std::string &NameStr, Instruction *InsertBefore);
David Greenef1355a52007-08-27 19:04:21 +00002398
2399 /// Construct an InvokeInst given a range of arguments.
2400 /// InputIterator must be a random-access iterator pointing to
2401 /// contiguous storage (e.g. a std::vector<>::iterator). Checks are
2402 /// made for random-accessness but not for contiguous storage as
2403 /// that would incur runtime overhead.
2404 ///
2405 /// @brief Construct an InvokeInst from a range of arguments
2406 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +00002407 inline InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException,
2408 InputIterator ArgBegin, InputIterator ArgEnd,
2409 unsigned Values,
Evan Cheng1bf9a182008-07-24 00:08:56 +00002410 const std::string &NameStr, BasicBlock *InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00002411public:
2412 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +00002413 static InvokeInst *Create(Value *Func,
2414 BasicBlock *IfNormal, BasicBlock *IfException,
Gabor Greif051a9502008-04-06 20:25:17 +00002415 InputIterator ArgBegin, InputIterator ArgEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00002416 const std::string &NameStr = "",
Evan Chengd69bb1a2008-05-05 17:41:03 +00002417 Instruction *InsertBefore = 0) {
Gabor Greifefe65362008-05-10 08:32:32 +00002418 unsigned Values(ArgEnd - ArgBegin + 3);
2419 return new(Values) InvokeInst(Func, IfNormal, IfException, ArgBegin, ArgEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00002420 Values, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00002421 }
2422 template<typename InputIterator>
Gabor Greifefe65362008-05-10 08:32:32 +00002423 static InvokeInst *Create(Value *Func,
2424 BasicBlock *IfNormal, BasicBlock *IfException,
Gabor Greif051a9502008-04-06 20:25:17 +00002425 InputIterator ArgBegin, InputIterator ArgEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00002426 const std::string &NameStr,
2427 BasicBlock *InsertAtEnd) {
Gabor Greifefe65362008-05-10 08:32:32 +00002428 unsigned Values(ArgEnd - ArgBegin + 3);
2429 return new(Values) InvokeInst(Func, IfNormal, IfException, ArgBegin, ArgEnd,
Evan Cheng1bf9a182008-07-24 00:08:56 +00002430 Values, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00002431 }
David Greenef1355a52007-08-27 19:04:21 +00002432
Chris Lattnerf319e832004-10-15 23:52:05 +00002433 virtual InvokeInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002434
Gabor Greifefe65362008-05-10 08:32:32 +00002435 /// Provide fast operand accessors
2436 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
2437
Chris Lattner3340ffe2005-05-06 20:26:26 +00002438 /// getCallingConv/setCallingConv - Get or set the calling convention of this
2439 /// function call.
2440 unsigned getCallingConv() const { return SubclassData; }
2441 void setCallingConv(unsigned CC) {
2442 SubclassData = CC;
2443 }
2444
Devang Patel05988662008-09-25 21:00:45 +00002445 /// getAttributes - Return the parameter attributes for this invoke.
Chris Lattner58d74912008-03-12 17:45:29 +00002446 ///
Devang Patel05988662008-09-25 21:00:45 +00002447 const AttrListPtr &getAttributes() const { return AttributeList; }
Reid Spencerfa3e9122007-04-09 18:00:57 +00002448
Devang Patel05988662008-09-25 21:00:45 +00002449 /// setAttributes - Set the parameter attributes for this invoke.
Chris Lattner58d74912008-03-12 17:45:29 +00002450 ///
Devang Patel05988662008-09-25 21:00:45 +00002451 void setAttributes(const AttrListPtr &Attrs) { AttributeList = Attrs; }
Duncan Sandsdc024672007-11-27 13:23:08 +00002452
Devang Patel05988662008-09-25 21:00:45 +00002453 /// addAttribute - adds the attribute to the list of attributes.
2454 void addAttribute(unsigned i, Attributes attr);
Duncan Sandsafa3b6d2007-11-28 17:07:01 +00002455
Devang Patel05988662008-09-25 21:00:45 +00002456 /// removeAttribute - removes the attribute from the list of attributes.
2457 void removeAttribute(unsigned i, Attributes attr);
Duncan Sands2e033f32008-07-08 08:38:44 +00002458
Dan Gohmanf2752502008-09-26 21:38:45 +00002459 /// @brief Determine whether the call or the callee has the given attribute.
2460 bool paramHasAttr(unsigned i, Attributes attr) const;
2461
Dale Johannesen08e78b12008-02-22 17:49:45 +00002462 /// @brief Extract the alignment for a call or parameter (0=unknown).
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002463 unsigned getParamAlignment(unsigned i) const {
Devang Patel05988662008-09-25 21:00:45 +00002464 return AttributeList.getParamAlignment(i);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002465 }
Dale Johannesen08e78b12008-02-22 17:49:45 +00002466
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002467 /// @brief Determine if the call does not access memory.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002468 bool doesNotAccessMemory() const {
Devang Patel05988662008-09-25 21:00:45 +00002469 return paramHasAttr(0, Attribute::ReadNone);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002470 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00002471 void setDoesNotAccessMemory(bool NotAccessMemory = true) {
Devang Patel19c87462008-09-26 22:53:05 +00002472 if (NotAccessMemory) addAttribute(~0, Attribute::ReadNone);
2473 else removeAttribute(~0, Attribute::ReadNone);
Duncan Sands2e033f32008-07-08 08:38:44 +00002474 }
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002475
2476 /// @brief Determine if the call does not access or only reads memory.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002477 bool onlyReadsMemory() const {
Devang Patel19c87462008-09-26 22:53:05 +00002478 return doesNotAccessMemory() || paramHasAttr(~0, Attribute::ReadOnly);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002479 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00002480 void setOnlyReadsMemory(bool OnlyReadsMemory = true) {
Devang Patel19c87462008-09-26 22:53:05 +00002481 if (OnlyReadsMemory) addAttribute(~0, Attribute::ReadOnly);
2482 else removeAttribute(~0, Attribute::ReadOnly | Attribute::ReadNone);
Duncan Sands2e033f32008-07-08 08:38:44 +00002483 }
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002484
Duncan Sandscbb8bad2007-12-10 19:09:40 +00002485 /// @brief Determine if the call cannot return.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002486 bool doesNotReturn() const {
Devang Patel19c87462008-09-26 22:53:05 +00002487 return paramHasAttr(~0, Attribute::NoReturn);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002488 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00002489 void setDoesNotReturn(bool DoesNotReturn = true) {
Devang Patel19c87462008-09-26 22:53:05 +00002490 if (DoesNotReturn) addAttribute(~0, Attribute::NoReturn);
2491 else removeAttribute(~0, Attribute::NoReturn);
Duncan Sands2e033f32008-07-08 08:38:44 +00002492 }
Duncan Sandscbb8bad2007-12-10 19:09:40 +00002493
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002494 /// @brief Determine if the call cannot unwind.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002495 bool doesNotThrow() const {
Devang Patel19c87462008-09-26 22:53:05 +00002496 return paramHasAttr(~0, Attribute::NoUnwind);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002497 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00002498 void setDoesNotThrow(bool DoesNotThrow = true) {
Devang Patel19c87462008-09-26 22:53:05 +00002499 if (DoesNotThrow) addAttribute(~0, Attribute::NoUnwind);
2500 else removeAttribute(~0, Attribute::NoUnwind);
Duncan Sands2e033f32008-07-08 08:38:44 +00002501 }
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002502
Devang Patel41e23972008-03-03 21:46:28 +00002503 /// @brief Determine if the call returns a structure through first
2504 /// pointer argument.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002505 bool hasStructRetAttr() const {
2506 // Be friendly and also check the callee.
Devang Patel05988662008-09-25 21:00:45 +00002507 return paramHasAttr(1, Attribute::StructRet);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002508 }
Reid Spencerfa3e9122007-04-09 18:00:57 +00002509
Dan Gohmanf2752502008-09-26 21:38:45 +00002510 /// @brief Determine if any call argument is an aggregate passed by value.
2511 bool hasByValArgument() const {
2512 return AttributeList.hasAttrSomewhere(Attribute::ByVal);
2513 }
2514
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002515 /// getCalledFunction - Return the function called, or null if this is an
Chris Lattner721aef62004-11-18 17:46:57 +00002516 /// indirect function invocation.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002517 ///
Chris Lattner721aef62004-11-18 17:46:57 +00002518 Function *getCalledFunction() const {
Chris Lattner454928e2005-01-29 00:31:36 +00002519 return dyn_cast<Function>(getOperand(0));
Chris Lattner721aef62004-11-18 17:46:57 +00002520 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002521
Dan Gohmanf2752502008-09-26 21:38:45 +00002522 /// getCalledValue - Get a pointer to the function that is invoked by this
2523 /// instruction
2524 const Value *getCalledValue() const { return getOperand(0); }
2525 Value *getCalledValue() { return getOperand(0); }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002526
2527 // get*Dest - Return the destination basic blocks...
Chris Lattner454928e2005-01-29 00:31:36 +00002528 BasicBlock *getNormalDest() const {
2529 return cast<BasicBlock>(getOperand(1));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002530 }
Chris Lattner454928e2005-01-29 00:31:36 +00002531 BasicBlock *getUnwindDest() const {
2532 return cast<BasicBlock>(getOperand(2));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002533 }
Chris Lattner454928e2005-01-29 00:31:36 +00002534 void setNormalDest(BasicBlock *B) {
Gabor Greifefe65362008-05-10 08:32:32 +00002535 setOperand(1, B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002536 }
2537
Chris Lattner454928e2005-01-29 00:31:36 +00002538 void setUnwindDest(BasicBlock *B) {
Gabor Greifefe65362008-05-10 08:32:32 +00002539 setOperand(2, B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002540 }
2541
Devang Patel4d4a5e02008-02-23 01:11:02 +00002542 BasicBlock *getSuccessor(unsigned i) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002543 assert(i < 2 && "Successor # out of range for invoke!");
2544 return i == 0 ? getNormalDest() : getUnwindDest();
2545 }
2546
Chris Lattner454928e2005-01-29 00:31:36 +00002547 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002548 assert(idx < 2 && "Successor # out of range for invoke!");
Gabor Greifefe65362008-05-10 08:32:32 +00002549 setOperand(idx+1, NewSucc);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002550 }
2551
Chris Lattner454928e2005-01-29 00:31:36 +00002552 unsigned getNumSuccessors() const { return 2; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002553
2554 // Methods for support type inquiry through isa, cast, and dyn_cast:
2555 static inline bool classof(const InvokeInst *) { return true; }
2556 static inline bool classof(const Instruction *I) {
2557 return (I->getOpcode() == Instruction::Invoke);
2558 }
2559 static inline bool classof(const Value *V) {
2560 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2561 }
Chris Lattner454928e2005-01-29 00:31:36 +00002562private:
2563 virtual BasicBlock *getSuccessorV(unsigned idx) const;
2564 virtual unsigned getNumSuccessorsV() const;
2565 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002566};
2567
Gabor Greifefe65362008-05-10 08:32:32 +00002568template <>
2569struct OperandTraits<InvokeInst> : VariadicOperandTraits<3> {
2570};
2571
2572template<typename InputIterator>
2573InvokeInst::InvokeInst(Value *Func,
2574 BasicBlock *IfNormal, BasicBlock *IfException,
2575 InputIterator ArgBegin, InputIterator ArgEnd,
2576 unsigned Values,
Evan Cheng1bf9a182008-07-24 00:08:56 +00002577 const std::string &NameStr, Instruction *InsertBefore)
Gabor Greifefe65362008-05-10 08:32:32 +00002578 : TerminatorInst(cast<FunctionType>(cast<PointerType>(Func->getType())
2579 ->getElementType())->getReturnType(),
2580 Instruction::Invoke,
2581 OperandTraits<InvokeInst>::op_end(this) - Values,
2582 Values, InsertBefore) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00002583 init(Func, IfNormal, IfException, ArgBegin, ArgEnd, NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +00002584 typename std::iterator_traits<InputIterator>::iterator_category());
2585}
2586template<typename InputIterator>
2587InvokeInst::InvokeInst(Value *Func,
2588 BasicBlock *IfNormal, BasicBlock *IfException,
2589 InputIterator ArgBegin, InputIterator ArgEnd,
2590 unsigned Values,
Evan Cheng1bf9a182008-07-24 00:08:56 +00002591 const std::string &NameStr, BasicBlock *InsertAtEnd)
Gabor Greifefe65362008-05-10 08:32:32 +00002592 : TerminatorInst(cast<FunctionType>(cast<PointerType>(Func->getType())
2593 ->getElementType())->getReturnType(),
2594 Instruction::Invoke,
2595 OperandTraits<InvokeInst>::op_end(this) - Values,
2596 Values, InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00002597 init(Func, IfNormal, IfException, ArgBegin, ArgEnd, NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +00002598 typename std::iterator_traits<InputIterator>::iterator_category());
2599}
2600
2601DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InvokeInst, Value)
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002602
2603//===----------------------------------------------------------------------===//
2604// UnwindInst Class
2605//===----------------------------------------------------------------------===//
2606
2607//===---------------------------------------------------------------------------
2608/// UnwindInst - Immediately exit the current function, unwinding the stack
2609/// until an invoke instruction is found.
2610///
Chris Lattner1fca5ff2004-10-27 16:14:51 +00002611class UnwindInst : public TerminatorInst {
Gabor Greif051a9502008-04-06 20:25:17 +00002612 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Chris Lattner1fca5ff2004-10-27 16:14:51 +00002613public:
Gabor Greif051a9502008-04-06 20:25:17 +00002614 // allocate space for exactly zero operands
2615 void *operator new(size_t s) {
2616 return User::operator new(s, 0);
2617 }
Chris Lattner910c80a2007-02-24 00:55:48 +00002618 explicit UnwindInst(Instruction *InsertBefore = 0);
2619 explicit UnwindInst(BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002620
Chris Lattnerf319e832004-10-15 23:52:05 +00002621 virtual UnwindInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002622
Chris Lattner454928e2005-01-29 00:31:36 +00002623 unsigned getNumSuccessors() const { return 0; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002624
2625 // Methods for support type inquiry through isa, cast, and dyn_cast:
2626 static inline bool classof(const UnwindInst *) { return true; }
2627 static inline bool classof(const Instruction *I) {
2628 return I->getOpcode() == Instruction::Unwind;
2629 }
2630 static inline bool classof(const Value *V) {
2631 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2632 }
Chris Lattner454928e2005-01-29 00:31:36 +00002633private:
2634 virtual BasicBlock *getSuccessorV(unsigned idx) const;
2635 virtual unsigned getNumSuccessorsV() const;
2636 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002637};
2638
Chris Lattner076b3f12004-10-16 18:05:54 +00002639//===----------------------------------------------------------------------===//
2640// UnreachableInst Class
2641//===----------------------------------------------------------------------===//
2642
2643//===---------------------------------------------------------------------------
2644/// UnreachableInst - This function has undefined behavior. In particular, the
2645/// presence of this instruction indicates some higher level knowledge that the
2646/// end of the block cannot be reached.
2647///
Chris Lattner1fca5ff2004-10-27 16:14:51 +00002648class UnreachableInst : public TerminatorInst {
Gabor Greif051a9502008-04-06 20:25:17 +00002649 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Chris Lattner1fca5ff2004-10-27 16:14:51 +00002650public:
Gabor Greif051a9502008-04-06 20:25:17 +00002651 // allocate space for exactly zero operands
2652 void *operator new(size_t s) {
2653 return User::operator new(s, 0);
2654 }
Chris Lattner910c80a2007-02-24 00:55:48 +00002655 explicit UnreachableInst(Instruction *InsertBefore = 0);
2656 explicit UnreachableInst(BasicBlock *InsertAtEnd);
Chris Lattner076b3f12004-10-16 18:05:54 +00002657
2658 virtual UnreachableInst *clone() const;
2659
Chris Lattner454928e2005-01-29 00:31:36 +00002660 unsigned getNumSuccessors() const { return 0; }
Chris Lattner076b3f12004-10-16 18:05:54 +00002661
2662 // Methods for support type inquiry through isa, cast, and dyn_cast:
2663 static inline bool classof(const UnreachableInst *) { return true; }
2664 static inline bool classof(const Instruction *I) {
2665 return I->getOpcode() == Instruction::Unreachable;
2666 }
2667 static inline bool classof(const Value *V) {
2668 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2669 }
Chris Lattner454928e2005-01-29 00:31:36 +00002670private:
2671 virtual BasicBlock *getSuccessorV(unsigned idx) const;
2672 virtual unsigned getNumSuccessorsV() const;
2673 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Chris Lattner076b3f12004-10-16 18:05:54 +00002674};
2675
Reid Spencer3da59db2006-11-27 01:05:10 +00002676//===----------------------------------------------------------------------===//
2677// TruncInst Class
2678//===----------------------------------------------------------------------===//
2679
2680/// @brief This class represents a truncation of integer types.
2681class TruncInst : public CastInst {
2682 /// Private copy constructor
2683 TruncInst(const TruncInst &CI)
2684 : CastInst(CI.getType(), Trunc, CI.getOperand(0)) {
2685 }
2686public:
2687 /// @brief Constructor with insert-before-instruction semantics
2688 TruncInst(
2689 Value *S, ///< The value to be truncated
2690 const Type *Ty, ///< The (smaller) type to truncate to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002691 const std::string &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002692 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2693 );
2694
2695 /// @brief Constructor with insert-at-end-of-block semantics
2696 TruncInst(
2697 Value *S, ///< The value to be truncated
2698 const Type *Ty, ///< The (smaller) type to truncate to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002699 const std::string &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002700 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2701 );
2702
2703 /// @brief Clone an identical TruncInst
2704 virtual CastInst *clone() const;
2705
2706 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2707 static inline bool classof(const TruncInst *) { return true; }
2708 static inline bool classof(const Instruction *I) {
2709 return I->getOpcode() == Trunc;
2710 }
2711 static inline bool classof(const Value *V) {
2712 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2713 }
2714};
2715
2716//===----------------------------------------------------------------------===//
2717// ZExtInst Class
2718//===----------------------------------------------------------------------===//
2719
2720/// @brief This class represents zero extension of integer types.
2721class ZExtInst : public CastInst {
2722 /// @brief Private copy constructor
2723 ZExtInst(const ZExtInst &CI)
2724 : CastInst(CI.getType(), ZExt, CI.getOperand(0)) {
2725 }
2726public:
2727 /// @brief Constructor with insert-before-instruction semantics
2728 ZExtInst(
2729 Value *S, ///< The value to be zero extended
2730 const Type *Ty, ///< The type to zero extend to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002731 const std::string &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002732 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2733 );
2734
2735 /// @brief Constructor with insert-at-end semantics.
2736 ZExtInst(
2737 Value *S, ///< The value to be zero extended
2738 const Type *Ty, ///< The type to zero extend to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002739 const std::string &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002740 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2741 );
2742
2743 /// @brief Clone an identical ZExtInst
2744 virtual CastInst *clone() const;
2745
2746 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2747 static inline bool classof(const ZExtInst *) { return true; }
2748 static inline bool classof(const Instruction *I) {
2749 return I->getOpcode() == ZExt;
2750 }
2751 static inline bool classof(const Value *V) {
2752 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2753 }
2754};
2755
2756//===----------------------------------------------------------------------===//
2757// SExtInst Class
2758//===----------------------------------------------------------------------===//
2759
2760/// @brief This class represents a sign extension of integer types.
2761class SExtInst : public CastInst {
2762 /// @brief Private copy constructor
2763 SExtInst(const SExtInst &CI)
2764 : CastInst(CI.getType(), SExt, CI.getOperand(0)) {
2765 }
2766public:
2767 /// @brief Constructor with insert-before-instruction semantics
2768 SExtInst(
2769 Value *S, ///< The value to be sign extended
2770 const Type *Ty, ///< The type to sign extend to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002771 const std::string &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002772 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2773 );
2774
2775 /// @brief Constructor with insert-at-end-of-block semantics
2776 SExtInst(
2777 Value *S, ///< The value to be sign extended
2778 const Type *Ty, ///< The type to sign extend to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002779 const std::string &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002780 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2781 );
2782
2783 /// @brief Clone an identical SExtInst
2784 virtual CastInst *clone() const;
2785
2786 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2787 static inline bool classof(const SExtInst *) { return true; }
2788 static inline bool classof(const Instruction *I) {
2789 return I->getOpcode() == SExt;
2790 }
2791 static inline bool classof(const Value *V) {
2792 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2793 }
2794};
2795
2796//===----------------------------------------------------------------------===//
2797// FPTruncInst Class
2798//===----------------------------------------------------------------------===//
2799
2800/// @brief This class represents a truncation of floating point types.
2801class FPTruncInst : public CastInst {
2802 FPTruncInst(const FPTruncInst &CI)
2803 : CastInst(CI.getType(), FPTrunc, CI.getOperand(0)) {
2804 }
2805public:
2806 /// @brief Constructor with insert-before-instruction semantics
2807 FPTruncInst(
2808 Value *S, ///< The value to be truncated
2809 const Type *Ty, ///< The type to truncate to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002810 const std::string &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002811 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2812 );
2813
2814 /// @brief Constructor with insert-before-instruction semantics
2815 FPTruncInst(
2816 Value *S, ///< The value to be truncated
2817 const Type *Ty, ///< The type to truncate to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002818 const std::string &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002819 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2820 );
2821
2822 /// @brief Clone an identical FPTruncInst
2823 virtual CastInst *clone() const;
2824
2825 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2826 static inline bool classof(const FPTruncInst *) { return true; }
2827 static inline bool classof(const Instruction *I) {
2828 return I->getOpcode() == FPTrunc;
2829 }
2830 static inline bool classof(const Value *V) {
2831 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2832 }
2833};
2834
2835//===----------------------------------------------------------------------===//
2836// FPExtInst Class
2837//===----------------------------------------------------------------------===//
2838
2839/// @brief This class represents an extension of floating point types.
2840class FPExtInst : public CastInst {
2841 FPExtInst(const FPExtInst &CI)
2842 : CastInst(CI.getType(), FPExt, CI.getOperand(0)) {
2843 }
2844public:
2845 /// @brief Constructor with insert-before-instruction semantics
2846 FPExtInst(
2847 Value *S, ///< The value to be extended
2848 const Type *Ty, ///< The type to extend to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002849 const std::string &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002850 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2851 );
2852
2853 /// @brief Constructor with insert-at-end-of-block semantics
2854 FPExtInst(
2855 Value *S, ///< The value to be extended
2856 const Type *Ty, ///< The type to extend to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002857 const std::string &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002858 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2859 );
2860
2861 /// @brief Clone an identical FPExtInst
2862 virtual CastInst *clone() const;
2863
2864 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2865 static inline bool classof(const FPExtInst *) { return true; }
2866 static inline bool classof(const Instruction *I) {
2867 return I->getOpcode() == FPExt;
2868 }
2869 static inline bool classof(const Value *V) {
2870 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2871 }
2872};
2873
2874//===----------------------------------------------------------------------===//
2875// UIToFPInst Class
2876//===----------------------------------------------------------------------===//
2877
2878/// @brief This class represents a cast unsigned integer to floating point.
2879class UIToFPInst : public CastInst {
2880 UIToFPInst(const UIToFPInst &CI)
2881 : CastInst(CI.getType(), UIToFP, CI.getOperand(0)) {
2882 }
2883public:
2884 /// @brief Constructor with insert-before-instruction semantics
2885 UIToFPInst(
2886 Value *S, ///< The value to be converted
2887 const Type *Ty, ///< The type to convert to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002888 const std::string &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002889 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2890 );
2891
2892 /// @brief Constructor with insert-at-end-of-block semantics
2893 UIToFPInst(
2894 Value *S, ///< The value to be converted
2895 const Type *Ty, ///< The type to convert to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002896 const std::string &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002897 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2898 );
2899
2900 /// @brief Clone an identical UIToFPInst
2901 virtual CastInst *clone() const;
2902
2903 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2904 static inline bool classof(const UIToFPInst *) { return true; }
2905 static inline bool classof(const Instruction *I) {
2906 return I->getOpcode() == UIToFP;
2907 }
2908 static inline bool classof(const Value *V) {
2909 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2910 }
2911};
2912
2913//===----------------------------------------------------------------------===//
2914// SIToFPInst Class
2915//===----------------------------------------------------------------------===//
2916
2917/// @brief This class represents a cast from signed integer to floating point.
2918class SIToFPInst : public CastInst {
2919 SIToFPInst(const SIToFPInst &CI)
2920 : CastInst(CI.getType(), SIToFP, CI.getOperand(0)) {
2921 }
2922public:
2923 /// @brief Constructor with insert-before-instruction semantics
2924 SIToFPInst(
2925 Value *S, ///< The value to be converted
2926 const Type *Ty, ///< The type to convert to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002927 const std::string &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002928 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2929 );
2930
2931 /// @brief Constructor with insert-at-end-of-block semantics
2932 SIToFPInst(
2933 Value *S, ///< The value to be converted
2934 const Type *Ty, ///< The type to convert to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002935 const std::string &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002936 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
2937 );
2938
2939 /// @brief Clone an identical SIToFPInst
2940 virtual CastInst *clone() const;
2941
2942 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2943 static inline bool classof(const SIToFPInst *) { return true; }
2944 static inline bool classof(const Instruction *I) {
2945 return I->getOpcode() == SIToFP;
2946 }
2947 static inline bool classof(const Value *V) {
2948 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2949 }
2950};
2951
2952//===----------------------------------------------------------------------===//
2953// FPToUIInst Class
2954//===----------------------------------------------------------------------===//
2955
2956/// @brief This class represents a cast from floating point to unsigned integer
2957class FPToUIInst : public CastInst {
2958 FPToUIInst(const FPToUIInst &CI)
2959 : CastInst(CI.getType(), FPToUI, CI.getOperand(0)) {
2960 }
2961public:
2962 /// @brief Constructor with insert-before-instruction semantics
2963 FPToUIInst(
2964 Value *S, ///< The value to be converted
2965 const Type *Ty, ///< The type to convert to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002966 const std::string &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002967 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
2968 );
2969
2970 /// @brief Constructor with insert-at-end-of-block semantics
2971 FPToUIInst(
2972 Value *S, ///< The value to be converted
2973 const Type *Ty, ///< The type to convert to
Evan Cheng1bf9a182008-07-24 00:08:56 +00002974 const std::string &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00002975 BasicBlock *InsertAtEnd ///< Where to insert the new instruction
2976 );
2977
2978 /// @brief Clone an identical FPToUIInst
2979 virtual CastInst *clone() const;
2980
2981 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
2982 static inline bool classof(const FPToUIInst *) { return true; }
2983 static inline bool classof(const Instruction *I) {
2984 return I->getOpcode() == FPToUI;
2985 }
2986 static inline bool classof(const Value *V) {
2987 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2988 }
2989};
2990
2991//===----------------------------------------------------------------------===//
2992// FPToSIInst Class
2993//===----------------------------------------------------------------------===//
2994
2995/// @brief This class represents a cast from floating point to signed integer.
2996class FPToSIInst : public CastInst {
2997 FPToSIInst(const FPToSIInst &CI)
2998 : CastInst(CI.getType(), FPToSI, CI.getOperand(0)) {
2999 }
3000public:
3001 /// @brief Constructor with insert-before-instruction semantics
3002 FPToSIInst(
3003 Value *S, ///< The value to be converted
3004 const Type *Ty, ///< The type to convert to
Evan Cheng1bf9a182008-07-24 00:08:56 +00003005 const std::string &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003006 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3007 );
3008
3009 /// @brief Constructor with insert-at-end-of-block semantics
3010 FPToSIInst(
3011 Value *S, ///< The value to be converted
3012 const Type *Ty, ///< The type to convert to
Evan Cheng1bf9a182008-07-24 00:08:56 +00003013 const std::string &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003014 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
3015 );
3016
3017 /// @brief Clone an identical FPToSIInst
3018 virtual CastInst *clone() const;
3019
3020 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
3021 static inline bool classof(const FPToSIInst *) { return true; }
3022 static inline bool classof(const Instruction *I) {
3023 return I->getOpcode() == FPToSI;
3024 }
3025 static inline bool classof(const Value *V) {
3026 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3027 }
3028};
3029
3030//===----------------------------------------------------------------------===//
3031// IntToPtrInst Class
3032//===----------------------------------------------------------------------===//
3033
3034/// @brief This class represents a cast from an integer to a pointer.
3035class IntToPtrInst : public CastInst {
3036 IntToPtrInst(const IntToPtrInst &CI)
3037 : CastInst(CI.getType(), IntToPtr, CI.getOperand(0)) {
3038 }
3039public:
3040 /// @brief Constructor with insert-before-instruction semantics
3041 IntToPtrInst(
3042 Value *S, ///< The value to be converted
3043 const Type *Ty, ///< The type to convert to
Evan Cheng1bf9a182008-07-24 00:08:56 +00003044 const std::string &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003045 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3046 );
3047
3048 /// @brief Constructor with insert-at-end-of-block semantics
3049 IntToPtrInst(
3050 Value *S, ///< The value to be converted
3051 const Type *Ty, ///< The type to convert to
Evan Cheng1bf9a182008-07-24 00:08:56 +00003052 const std::string &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003053 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
3054 );
3055
3056 /// @brief Clone an identical IntToPtrInst
3057 virtual CastInst *clone() const;
3058
3059 // Methods for support type inquiry through isa, cast, and dyn_cast:
3060 static inline bool classof(const IntToPtrInst *) { return true; }
3061 static inline bool classof(const Instruction *I) {
3062 return I->getOpcode() == IntToPtr;
3063 }
3064 static inline bool classof(const Value *V) {
3065 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3066 }
3067};
3068
3069//===----------------------------------------------------------------------===//
3070// PtrToIntInst Class
3071//===----------------------------------------------------------------------===//
3072
3073/// @brief This class represents a cast from a pointer to an integer
3074class PtrToIntInst : public CastInst {
3075 PtrToIntInst(const PtrToIntInst &CI)
3076 : CastInst(CI.getType(), PtrToInt, CI.getOperand(0)) {
3077 }
3078public:
3079 /// @brief Constructor with insert-before-instruction semantics
3080 PtrToIntInst(
3081 Value *S, ///< The value to be converted
3082 const Type *Ty, ///< The type to convert to
Evan Cheng1bf9a182008-07-24 00:08:56 +00003083 const std::string &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003084 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3085 );
3086
3087 /// @brief Constructor with insert-at-end-of-block semantics
3088 PtrToIntInst(
3089 Value *S, ///< The value to be converted
3090 const Type *Ty, ///< The type to convert to
Evan Cheng1bf9a182008-07-24 00:08:56 +00003091 const std::string &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003092 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
3093 );
3094
3095 /// @brief Clone an identical PtrToIntInst
3096 virtual CastInst *clone() const;
3097
3098 // Methods for support type inquiry through isa, cast, and dyn_cast:
3099 static inline bool classof(const PtrToIntInst *) { return true; }
3100 static inline bool classof(const Instruction *I) {
3101 return I->getOpcode() == PtrToInt;
3102 }
3103 static inline bool classof(const Value *V) {
3104 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3105 }
3106};
3107
3108//===----------------------------------------------------------------------===//
3109// BitCastInst Class
3110//===----------------------------------------------------------------------===//
3111
3112/// @brief This class represents a no-op cast from one type to another.
3113class BitCastInst : public CastInst {
3114 BitCastInst(const BitCastInst &CI)
3115 : CastInst(CI.getType(), BitCast, CI.getOperand(0)) {
3116 }
3117public:
3118 /// @brief Constructor with insert-before-instruction semantics
3119 BitCastInst(
3120 Value *S, ///< The value to be casted
3121 const Type *Ty, ///< The type to casted to
Evan Cheng1bf9a182008-07-24 00:08:56 +00003122 const std::string &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003123 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3124 );
3125
3126 /// @brief Constructor with insert-at-end-of-block semantics
3127 BitCastInst(
3128 Value *S, ///< The value to be casted
3129 const Type *Ty, ///< The type to casted to
Evan Cheng1bf9a182008-07-24 00:08:56 +00003130 const std::string &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003131 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
3132 );
3133
3134 /// @brief Clone an identical BitCastInst
3135 virtual CastInst *clone() const;
3136
3137 // Methods for support type inquiry through isa, cast, and dyn_cast:
3138 static inline bool classof(const BitCastInst *) { return true; }
3139 static inline bool classof(const Instruction *I) {
3140 return I->getOpcode() == BitCast;
3141 }
3142 static inline bool classof(const Value *V) {
3143 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3144 }
3145};
3146
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003147} // End llvm namespace
Chris Lattnera892a3a2003-01-27 22:08:52 +00003148
3149#endif