blob: a72bdc49076dbb890b8d7611d6b6d2b8f1213efd [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
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000019#include "llvm/InstrTypes.h"
David Greene52eec542007-08-01 03:43:44 +000020#include "llvm/DerivedTypes.h"
Devang Pateleaf42ab2008-09-23 23:03:40 +000021#include "llvm/Attributes.h"
Sandeep Patel65c3c8f2009-09-02 08:44:58 +000022#include "llvm/CallingConv.h"
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +000023#include "llvm/Support/ConstantRangesSet.h"
24#include "llvm/Support/CRSBuilder.h"
Jay Foadfc6d3a42011-07-13 10:26:04 +000025#include "llvm/ADT/ArrayRef.h"
Dan Gohman81a0c0b2008-05-31 00:58:22 +000026#include "llvm/ADT/SmallVector.h"
Eli Friedman47f35132011-07-25 23:16:38 +000027#include "llvm/Support/ErrorHandling.h"
Dan Gohmand68a0762009-01-05 17:59:02 +000028#include <iterator>
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000029
30namespace llvm {
31
Chris Lattnerd1a32602005-02-24 05:32:09 +000032class ConstantInt;
Reid Spencer3da43842007-02-28 22:00:54 +000033class ConstantRange;
34class APInt;
Benjamin Kramer12ddd402009-08-11 17:45:13 +000035class LLVMContext;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000036
Eli Friedman47f35132011-07-25 23:16:38 +000037enum AtomicOrdering {
38 NotAtomic = 0,
39 Unordered = 1,
40 Monotonic = 2,
41 // Consume = 3, // Not specified yet.
42 Acquire = 4,
43 Release = 5,
44 AcquireRelease = 6,
45 SequentiallyConsistent = 7
46};
47
48enum SynchronizationScope {
49 SingleThread = 0,
50 CrossThread = 1
51};
52
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000053//===----------------------------------------------------------------------===//
Victor Hernandez7b929da2009-10-23 21:09:37 +000054// AllocaInst Class
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000055//===----------------------------------------------------------------------===//
56
Victor Hernandez7b929da2009-10-23 21:09:37 +000057/// AllocaInst - an instruction to allocate memory on the stack
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000058///
Victor Hernandez7b929da2009-10-23 21:09:37 +000059class AllocaInst : public UnaryInstruction {
Devang Patel50b6e332009-10-27 22:16:29 +000060protected:
61 virtual AllocaInst *clone_impl() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000062public:
Chris Lattnerdb125cf2011-07-18 04:54:35 +000063 explicit AllocaInst(Type *Ty, Value *ArraySize = 0,
Victor Hernandez7b929da2009-10-23 21:09:37 +000064 const Twine &Name = "", Instruction *InsertBefore = 0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +000065 AllocaInst(Type *Ty, Value *ArraySize,
Victor Hernandez7b929da2009-10-23 21:09:37 +000066 const Twine &Name, BasicBlock *InsertAtEnd);
67
Chris Lattnerdb125cf2011-07-18 04:54:35 +000068 AllocaInst(Type *Ty, const Twine &Name, Instruction *InsertBefore = 0);
69 AllocaInst(Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd);
Victor Hernandez7b929da2009-10-23 21:09:37 +000070
Chris Lattnerdb125cf2011-07-18 04:54:35 +000071 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez7b929da2009-10-23 21:09:37 +000072 const Twine &Name = "", Instruction *InsertBefore = 0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +000073 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez7b929da2009-10-23 21:09:37 +000074 const Twine &Name, BasicBlock *InsertAtEnd);
75
Gabor Greif051a9502008-04-06 20:25:17 +000076 // Out of line virtual method, so the vtable, etc. has a home.
Victor Hernandez7b929da2009-10-23 21:09:37 +000077 virtual ~AllocaInst();
Gordon Henriksenafba8fe2007-12-10 02:14:30 +000078
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000079 /// isArrayAllocation - Return true if there is an allocation size parameter
80 /// to the allocation instruction that is not 1.
81 ///
82 bool isArrayAllocation() const;
83
Dan Gohman18476ee2009-07-07 20:47:48 +000084 /// getArraySize - Get the number of elements allocated. For a simple
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000085 /// allocation of a single element, this will return a constant 1 value.
86 ///
Devang Patel4d4a5e02008-02-23 01:11:02 +000087 const Value *getArraySize() const { return getOperand(0); }
88 Value *getArraySize() { return getOperand(0); }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000089
90 /// getType - Overload to return most specific pointer type
91 ///
Chris Lattnerdb125cf2011-07-18 04:54:35 +000092 PointerType *getType() const {
93 return reinterpret_cast<PointerType*>(Instruction::getType());
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000094 }
95
96 /// getAllocatedType - Return the type that is being allocated by the
97 /// instruction.
98 ///
Chris Lattner1afcace2011-07-09 17:41:24 +000099 Type *getAllocatedType() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000100
Nate Begeman14b05292005-11-05 09:21:28 +0000101 /// getAlignment - Return the alignment of the memory that is being allocated
102 /// by the instruction.
103 ///
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000104 unsigned getAlignment() const {
Chris Lattnerb2406d92009-12-29 02:46:09 +0000105 return (1u << getSubclassDataFromInstruction()) >> 1;
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000106 }
Dan Gohman52837072008-03-24 16:55:58 +0000107 void setAlignment(unsigned Align);
Chris Lattnerf56a8db2006-10-03 17:09:12 +0000108
Chris Lattnerc5dd22a2008-11-26 02:54:17 +0000109 /// isStaticAlloca - Return true if this alloca is in the entry block of the
110 /// function and is a constant size. If so, the code generator will fold it
111 /// into the prolog/epilog code, so it is basically free.
112 bool isStaticAlloca() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000113
114 // Methods for support type inquiry through isa, cast, and dyn_cast:
115 static inline bool classof(const AllocaInst *) { return true; }
116 static inline bool classof(const Instruction *I) {
117 return (I->getOpcode() == Instruction::Alloca);
118 }
119 static inline bool classof(const Value *V) {
120 return isa<Instruction>(V) && classof(cast<Instruction>(V));
121 }
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000122private:
Chris Lattnerb2406d92009-12-29 02:46:09 +0000123 // Shadow Instruction::setInstructionSubclassData with a private forwarding
124 // method so that subclasses cannot accidentally use it.
125 void setInstructionSubclassData(unsigned short D) {
126 Instruction::setInstructionSubclassData(D);
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000127 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000128};
129
130
131//===----------------------------------------------------------------------===//
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000132// LoadInst Class
133//===----------------------------------------------------------------------===//
134
Chris Lattner88fe29a2005-02-05 01:44:18 +0000135/// LoadInst - an instruction for reading from memory. This uses the
136/// SubclassData field in Value to store whether or not the load is volatile.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000137///
Chris Lattner454928e2005-01-29 00:31:36 +0000138class LoadInst : public UnaryInstruction {
Chris Lattner454928e2005-01-29 00:31:36 +0000139 void AssertOK();
Devang Patel50b6e332009-10-27 22:16:29 +0000140protected:
141 virtual LoadInst *clone_impl() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000142public:
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000143 LoadInst(Value *Ptr, const Twine &NameStr, Instruction *InsertBefore);
144 LoadInst(Value *Ptr, const Twine &NameStr, BasicBlock *InsertAtEnd);
Daniel Dunbar3603d7a2009-08-11 18:11:15 +0000145 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile = false,
Christopher Lamb43c7f372007-04-22 19:24:39 +0000146 Instruction *InsertBefore = 0);
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000147 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000148 BasicBlock *InsertAtEnd);
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000149 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
Eli Friedman21006d42011-08-09 23:02:53 +0000150 unsigned Align, Instruction *InsertBefore = 0);
151 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
Evan Cheng1bf9a182008-07-24 00:08:56 +0000152 unsigned Align, BasicBlock *InsertAtEnd);
Eli Friedman21006d42011-08-09 23:02:53 +0000153 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
154 unsigned Align, AtomicOrdering Order,
155 SynchronizationScope SynchScope = CrossThread,
156 Instruction *InsertBefore = 0);
157 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
158 unsigned Align, AtomicOrdering Order,
159 SynchronizationScope SynchScope,
160 BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000161
Daniel Dunbar3603d7a2009-08-11 18:11:15 +0000162 LoadInst(Value *Ptr, const char *NameStr, Instruction *InsertBefore);
163 LoadInst(Value *Ptr, const char *NameStr, BasicBlock *InsertAtEnd);
164 explicit LoadInst(Value *Ptr, const char *NameStr = 0,
165 bool isVolatile = false, Instruction *InsertBefore = 0);
166 LoadInst(Value *Ptr, const char *NameStr, bool isVolatile,
167 BasicBlock *InsertAtEnd);
168
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000169 /// isVolatile - Return true if this is a load from a volatile memory
170 /// location.
171 ///
Chris Lattnerb2406d92009-12-29 02:46:09 +0000172 bool isVolatile() const { return getSubclassDataFromInstruction() & 1; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000173
174 /// setVolatile - Specify whether this is a volatile load or not.
175 ///
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +0000176 void setVolatile(bool V) {
Chris Lattnerb2406d92009-12-29 02:46:09 +0000177 setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
178 (V ? 1 : 0));
Christopher Lamb43c7f372007-04-22 19:24:39 +0000179 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000180
Christopher Lamb43c7f372007-04-22 19:24:39 +0000181 /// getAlignment - Return the alignment of the access that is being performed
182 ///
183 unsigned getAlignment() const {
Eli Friedman21006d42011-08-09 23:02:53 +0000184 return (1 << ((getSubclassDataFromInstruction() >> 1) & 31)) >> 1;
Christopher Lamb43c7f372007-04-22 19:24:39 +0000185 }
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +0000186
Christopher Lamb43c7f372007-04-22 19:24:39 +0000187 void setAlignment(unsigned Align);
188
Eli Friedman21006d42011-08-09 23:02:53 +0000189 /// Returns the ordering effect of this fence.
190 AtomicOrdering getOrdering() const {
191 return AtomicOrdering((getSubclassDataFromInstruction() >> 7) & 7);
192 }
193
194 /// Set the ordering constraint on this load. May not be Release or
195 /// AcquireRelease.
196 void setOrdering(AtomicOrdering Ordering) {
197 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(7 << 7)) |
198 (Ordering << 7));
199 }
200
201 SynchronizationScope getSynchScope() const {
202 return SynchronizationScope((getSubclassDataFromInstruction() >> 6) & 1);
203 }
204
205 /// Specify whether this load is ordered with respect to all
206 /// concurrently executing threads, or only with respect to signal handlers
207 /// executing in the same thread.
208 void setSynchScope(SynchronizationScope xthread) {
209 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(1 << 6)) |
210 (xthread << 6));
211 }
212
213 bool isAtomic() const { return getOrdering() != NotAtomic; }
214 void setAtomic(AtomicOrdering Ordering,
215 SynchronizationScope SynchScope = CrossThread) {
216 setOrdering(Ordering);
217 setSynchScope(SynchScope);
218 }
219
220 bool isSimple() const { return !isAtomic() && !isVolatile(); }
221 bool isUnordered() const {
222 return getOrdering() <= Unordered && !isVolatile();
223 }
224
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000225 Value *getPointerOperand() { return getOperand(0); }
226 const Value *getPointerOperand() const { return getOperand(0); }
227 static unsigned getPointerOperandIndex() { return 0U; }
228
Chris Lattnera07ae6b2009-08-30 19:45:21 +0000229 unsigned getPointerAddressSpace() const {
230 return cast<PointerType>(getPointerOperand()->getType())->getAddressSpace();
231 }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +0000232
233
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000234 // Methods for support type inquiry through isa, cast, and dyn_cast:
235 static inline bool classof(const LoadInst *) { return true; }
236 static inline bool classof(const Instruction *I) {
237 return I->getOpcode() == Instruction::Load;
238 }
239 static inline bool classof(const Value *V) {
240 return isa<Instruction>(V) && classof(cast<Instruction>(V));
241 }
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000242private:
Chris Lattnerb2406d92009-12-29 02:46:09 +0000243 // Shadow Instruction::setInstructionSubclassData with a private forwarding
244 // method so that subclasses cannot accidentally use it.
245 void setInstructionSubclassData(unsigned short D) {
246 Instruction::setInstructionSubclassData(D);
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000247 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000248};
249
250
251//===----------------------------------------------------------------------===//
252// StoreInst Class
253//===----------------------------------------------------------------------===//
254
Misha Brukman9769ab22005-04-21 20:19:05 +0000255/// StoreInst - an instruction for storing to memory
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000256///
257class StoreInst : public Instruction {
Gabor Greif051a9502008-04-06 20:25:17 +0000258 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Chris Lattner454928e2005-01-29 00:31:36 +0000259 void AssertOK();
Devang Patel50b6e332009-10-27 22:16:29 +0000260protected:
261 virtual StoreInst *clone_impl() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000262public:
Gabor Greif051a9502008-04-06 20:25:17 +0000263 // allocate space for exactly two operands
264 void *operator new(size_t s) {
265 return User::operator new(s, 2);
266 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000267 StoreInst(Value *Val, Value *Ptr, Instruction *InsertBefore);
268 StoreInst(Value *Val, Value *Ptr, BasicBlock *InsertAtEnd);
269 StoreInst(Value *Val, Value *Ptr, bool isVolatile = false,
270 Instruction *InsertBefore = 0);
271 StoreInst(Value *Val, Value *Ptr, bool isVolatile, BasicBlock *InsertAtEnd);
Dan Gohman6ab2d182007-07-18 20:51:11 +0000272 StoreInst(Value *Val, Value *Ptr, bool isVolatile,
Eli Friedman21006d42011-08-09 23:02:53 +0000273 unsigned Align, Instruction *InsertBefore = 0);
274 StoreInst(Value *Val, Value *Ptr, bool isVolatile,
Dan Gohman6ab2d182007-07-18 20:51:11 +0000275 unsigned Align, BasicBlock *InsertAtEnd);
Eli Friedman21006d42011-08-09 23:02:53 +0000276 StoreInst(Value *Val, Value *Ptr, bool isVolatile,
277 unsigned Align, AtomicOrdering Order,
278 SynchronizationScope SynchScope = CrossThread,
279 Instruction *InsertBefore = 0);
280 StoreInst(Value *Val, Value *Ptr, bool isVolatile,
281 unsigned Align, AtomicOrdering Order,
282 SynchronizationScope SynchScope,
283 BasicBlock *InsertAtEnd);
284
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000285
Eli Friedman21006d42011-08-09 23:02:53 +0000286 /// isVolatile - Return true if this is a store to a volatile memory
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000287 /// location.
288 ///
Chris Lattnerb2406d92009-12-29 02:46:09 +0000289 bool isVolatile() const { return getSubclassDataFromInstruction() & 1; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000290
Eli Friedman21006d42011-08-09 23:02:53 +0000291 /// setVolatile - Specify whether this is a volatile store or not.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000292 ///
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +0000293 void setVolatile(bool V) {
Chris Lattnerb2406d92009-12-29 02:46:09 +0000294 setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
295 (V ? 1 : 0));
Christopher Lamb43c7f372007-04-22 19:24:39 +0000296 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000297
Chris Lattner454928e2005-01-29 00:31:36 +0000298 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +0000299 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Chris Lattner454928e2005-01-29 00:31:36 +0000300
Christopher Lamb43c7f372007-04-22 19:24:39 +0000301 /// getAlignment - Return the alignment of the access that is being performed
302 ///
303 unsigned getAlignment() const {
Eli Friedman21006d42011-08-09 23:02:53 +0000304 return (1 << ((getSubclassDataFromInstruction() >> 1) & 31)) >> 1;
Christopher Lamb43c7f372007-04-22 19:24:39 +0000305 }
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +0000306
Christopher Lamb43c7f372007-04-22 19:24:39 +0000307 void setAlignment(unsigned Align);
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +0000308
Eli Friedman21006d42011-08-09 23:02:53 +0000309 /// Returns the ordering effect of this store.
310 AtomicOrdering getOrdering() const {
311 return AtomicOrdering((getSubclassDataFromInstruction() >> 7) & 7);
312 }
313
314 /// Set the ordering constraint on this store. May not be Acquire or
315 /// AcquireRelease.
316 void setOrdering(AtomicOrdering Ordering) {
317 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(7 << 7)) |
318 (Ordering << 7));
319 }
320
321 SynchronizationScope getSynchScope() const {
322 return SynchronizationScope((getSubclassDataFromInstruction() >> 6) & 1);
323 }
324
325 /// Specify whether this store instruction is ordered with respect to all
326 /// concurrently executing threads, or only with respect to signal handlers
327 /// executing in the same thread.
328 void setSynchScope(SynchronizationScope xthread) {
329 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(1 << 6)) |
330 (xthread << 6));
331 }
332
333 bool isAtomic() const { return getOrdering() != NotAtomic; }
334 void setAtomic(AtomicOrdering Ordering,
335 SynchronizationScope SynchScope = CrossThread) {
336 setOrdering(Ordering);
337 setSynchScope(SynchScope);
338 }
339
340 bool isSimple() const { return !isAtomic() && !isVolatile(); }
341 bool isUnordered() const {
342 return getOrdering() <= Unordered && !isVolatile();
343 }
344
Chris Lattner41c9c0e2010-06-26 23:26:37 +0000345 Value *getValueOperand() { return getOperand(0); }
346 const Value *getValueOperand() const { return getOperand(0); }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +0000347
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000348 Value *getPointerOperand() { return getOperand(1); }
349 const Value *getPointerOperand() const { return getOperand(1); }
350 static unsigned getPointerOperandIndex() { return 1U; }
351
Chris Lattnera07ae6b2009-08-30 19:45:21 +0000352 unsigned getPointerAddressSpace() const {
353 return cast<PointerType>(getPointerOperand()->getType())->getAddressSpace();
354 }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +0000355
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000356 // Methods for support type inquiry through isa, cast, and dyn_cast:
357 static inline bool classof(const StoreInst *) { return true; }
358 static inline bool classof(const Instruction *I) {
359 return I->getOpcode() == Instruction::Store;
360 }
361 static inline bool classof(const Value *V) {
362 return isa<Instruction>(V) && classof(cast<Instruction>(V));
363 }
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000364private:
Chris Lattnerb2406d92009-12-29 02:46:09 +0000365 // Shadow Instruction::setInstructionSubclassData with a private forwarding
366 // method so that subclasses cannot accidentally use it.
367 void setInstructionSubclassData(unsigned short D) {
368 Instruction::setInstructionSubclassData(D);
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000369 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000370};
371
Gabor Greifefe65362008-05-10 08:32:32 +0000372template <>
Jay Foad67c619b2011-01-11 15:07:38 +0000373struct OperandTraits<StoreInst> : public FixedNumOperandTraits<StoreInst, 2> {
Gabor Greifefe65362008-05-10 08:32:32 +0000374};
375
376DEFINE_TRANSPARENT_OPERAND_ACCESSORS(StoreInst, Value)
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000377
378//===----------------------------------------------------------------------===//
Eli Friedman47f35132011-07-25 23:16:38 +0000379// FenceInst Class
380//===----------------------------------------------------------------------===//
381
382/// FenceInst - an instruction for ordering other memory operations
383///
384class FenceInst : public Instruction {
385 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
386 void Init(AtomicOrdering Ordering, SynchronizationScope SynchScope);
387protected:
388 virtual FenceInst *clone_impl() const;
389public:
390 // allocate space for exactly zero operands
391 void *operator new(size_t s) {
392 return User::operator new(s, 0);
393 }
394
395 // Ordering may only be Acquire, Release, AcquireRelease, or
396 // SequentiallyConsistent.
397 FenceInst(LLVMContext &C, AtomicOrdering Ordering,
398 SynchronizationScope SynchScope = CrossThread,
399 Instruction *InsertBefore = 0);
400 FenceInst(LLVMContext &C, AtomicOrdering Ordering,
401 SynchronizationScope SynchScope,
402 BasicBlock *InsertAtEnd);
403
404 /// Returns the ordering effect of this fence.
405 AtomicOrdering getOrdering() const {
406 return AtomicOrdering(getSubclassDataFromInstruction() >> 1);
407 }
408
409 /// Set the ordering constraint on this fence. May only be Acquire, Release,
410 /// AcquireRelease, or SequentiallyConsistent.
411 void setOrdering(AtomicOrdering Ordering) {
Eli Friedman21006d42011-08-09 23:02:53 +0000412 setInstructionSubclassData((getSubclassDataFromInstruction() & 1) |
413 (Ordering << 1));
Eli Friedman47f35132011-07-25 23:16:38 +0000414 }
415
416 SynchronizationScope getSynchScope() const {
417 return SynchronizationScope(getSubclassDataFromInstruction() & 1);
418 }
419
420 /// Specify whether this fence orders other operations with respect to all
421 /// concurrently executing threads, or only with respect to signal handlers
422 /// executing in the same thread.
423 void setSynchScope(SynchronizationScope xthread) {
424 setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
425 xthread);
426 }
427
428 // Methods for support type inquiry through isa, cast, and dyn_cast:
429 static inline bool classof(const FenceInst *) { return true; }
430 static inline bool classof(const Instruction *I) {
431 return I->getOpcode() == Instruction::Fence;
432 }
433 static inline bool classof(const Value *V) {
434 return isa<Instruction>(V) && classof(cast<Instruction>(V));
435 }
436private:
437 // Shadow Instruction::setInstructionSubclassData with a private forwarding
438 // method so that subclasses cannot accidentally use it.
439 void setInstructionSubclassData(unsigned short D) {
440 Instruction::setInstructionSubclassData(D);
441 }
442};
443
444//===----------------------------------------------------------------------===//
Eli Friedmanff030482011-07-28 21:48:00 +0000445// AtomicCmpXchgInst Class
446//===----------------------------------------------------------------------===//
447
448/// AtomicCmpXchgInst - an instruction that atomically checks whether a
449/// specified value is in a memory location, and, if it is, stores a new value
450/// there. Returns the value that was loaded.
451///
452class AtomicCmpXchgInst : public Instruction {
453 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
454 void Init(Value *Ptr, Value *Cmp, Value *NewVal,
455 AtomicOrdering Ordering, SynchronizationScope SynchScope);
456protected:
457 virtual AtomicCmpXchgInst *clone_impl() const;
458public:
459 // allocate space for exactly three operands
460 void *operator new(size_t s) {
461 return User::operator new(s, 3);
462 }
463 AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
464 AtomicOrdering Ordering, SynchronizationScope SynchScope,
465 Instruction *InsertBefore = 0);
466 AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
467 AtomicOrdering Ordering, SynchronizationScope SynchScope,
468 BasicBlock *InsertAtEnd);
469
470 /// isVolatile - Return true if this is a cmpxchg from a volatile memory
471 /// location.
472 ///
473 bool isVolatile() const {
474 return getSubclassDataFromInstruction() & 1;
475 }
476
477 /// setVolatile - Specify whether this is a volatile cmpxchg.
478 ///
479 void setVolatile(bool V) {
480 setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
481 (unsigned)V);
482 }
483
484 /// Transparently provide more efficient getOperand methods.
485 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
486
487 /// Set the ordering constraint on this cmpxchg.
488 void setOrdering(AtomicOrdering Ordering) {
489 assert(Ordering != NotAtomic &&
490 "CmpXchg instructions can only be atomic.");
491 setInstructionSubclassData((getSubclassDataFromInstruction() & 3) |
492 (Ordering << 2));
493 }
494
495 /// Specify whether this cmpxchg is atomic and orders other operations with
496 /// respect to all concurrently executing threads, or only with respect to
497 /// signal handlers executing in the same thread.
498 void setSynchScope(SynchronizationScope SynchScope) {
499 setInstructionSubclassData((getSubclassDataFromInstruction() & ~2) |
500 (SynchScope << 1));
501 }
502
503 /// Returns the ordering constraint on this cmpxchg.
504 AtomicOrdering getOrdering() const {
505 return AtomicOrdering(getSubclassDataFromInstruction() >> 2);
506 }
507
508 /// Returns whether this cmpxchg is atomic between threads or only within a
509 /// single thread.
510 SynchronizationScope getSynchScope() const {
511 return SynchronizationScope((getSubclassDataFromInstruction() & 2) >> 1);
512 }
513
514 Value *getPointerOperand() { return getOperand(0); }
515 const Value *getPointerOperand() const { return getOperand(0); }
516 static unsigned getPointerOperandIndex() { return 0U; }
517
518 Value *getCompareOperand() { return getOperand(1); }
519 const Value *getCompareOperand() const { return getOperand(1); }
520
521 Value *getNewValOperand() { return getOperand(2); }
522 const Value *getNewValOperand() const { return getOperand(2); }
523
524 unsigned getPointerAddressSpace() const {
525 return cast<PointerType>(getPointerOperand()->getType())->getAddressSpace();
526 }
527
528 // Methods for support type inquiry through isa, cast, and dyn_cast:
529 static inline bool classof(const AtomicCmpXchgInst *) { return true; }
530 static inline bool classof(const Instruction *I) {
531 return I->getOpcode() == Instruction::AtomicCmpXchg;
532 }
533 static inline bool classof(const Value *V) {
534 return isa<Instruction>(V) && classof(cast<Instruction>(V));
535 }
536private:
537 // Shadow Instruction::setInstructionSubclassData with a private forwarding
538 // method so that subclasses cannot accidentally use it.
539 void setInstructionSubclassData(unsigned short D) {
540 Instruction::setInstructionSubclassData(D);
541 }
542};
543
544template <>
545struct OperandTraits<AtomicCmpXchgInst> :
546 public FixedNumOperandTraits<AtomicCmpXchgInst, 3> {
547};
548
549DEFINE_TRANSPARENT_OPERAND_ACCESSORS(AtomicCmpXchgInst, Value)
550
551//===----------------------------------------------------------------------===//
552// AtomicRMWInst Class
553//===----------------------------------------------------------------------===//
554
555/// AtomicRMWInst - an instruction that atomically reads a memory location,
556/// combines it with another value, and then stores the result back. Returns
557/// the old value.
558///
559class AtomicRMWInst : public Instruction {
560 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
561protected:
562 virtual AtomicRMWInst *clone_impl() const;
563public:
564 /// This enumeration lists the possible modifications atomicrmw can make. In
565 /// the descriptions, 'p' is the pointer to the instruction's memory location,
566 /// 'old' is the initial value of *p, and 'v' is the other value passed to the
567 /// instruction. These instructions always return 'old'.
568 enum BinOp {
569 /// *p = v
570 Xchg,
571 /// *p = old + v
572 Add,
573 /// *p = old - v
574 Sub,
575 /// *p = old & v
576 And,
577 /// *p = ~old & v
578 Nand,
579 /// *p = old | v
580 Or,
581 /// *p = old ^ v
582 Xor,
583 /// *p = old >signed v ? old : v
584 Max,
585 /// *p = old <signed v ? old : v
586 Min,
587 /// *p = old >unsigned v ? old : v
588 UMax,
589 /// *p = old <unsigned v ? old : v
590 UMin,
591
592 FIRST_BINOP = Xchg,
593 LAST_BINOP = UMin,
594 BAD_BINOP
595 };
596
597 // allocate space for exactly two operands
598 void *operator new(size_t s) {
599 return User::operator new(s, 2);
600 }
601 AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
602 AtomicOrdering Ordering, SynchronizationScope SynchScope,
603 Instruction *InsertBefore = 0);
604 AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
605 AtomicOrdering Ordering, SynchronizationScope SynchScope,
606 BasicBlock *InsertAtEnd);
607
608 BinOp getOperation() const {
609 return static_cast<BinOp>(getSubclassDataFromInstruction() >> 5);
610 }
611
612 void setOperation(BinOp Operation) {
613 unsigned short SubclassData = getSubclassDataFromInstruction();
614 setInstructionSubclassData((SubclassData & 31) |
615 (Operation << 5));
616 }
617
618 /// isVolatile - Return true if this is a RMW on a volatile memory location.
619 ///
620 bool isVolatile() const {
621 return getSubclassDataFromInstruction() & 1;
622 }
623
624 /// setVolatile - Specify whether this is a volatile RMW or not.
625 ///
626 void setVolatile(bool V) {
627 setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
628 (unsigned)V);
629 }
630
631 /// Transparently provide more efficient getOperand methods.
632 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
633
634 /// Set the ordering constraint on this RMW.
635 void setOrdering(AtomicOrdering Ordering) {
636 assert(Ordering != NotAtomic &&
637 "atomicrmw instructions can only be atomic.");
Eli Friedman21006d42011-08-09 23:02:53 +0000638 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(7 << 2)) |
Eli Friedmanff030482011-07-28 21:48:00 +0000639 (Ordering << 2));
640 }
641
642 /// Specify whether this RMW orders other operations with respect to all
643 /// concurrently executing threads, or only with respect to signal handlers
644 /// executing in the same thread.
645 void setSynchScope(SynchronizationScope SynchScope) {
646 setInstructionSubclassData((getSubclassDataFromInstruction() & ~2) |
647 (SynchScope << 1));
648 }
649
650 /// Returns the ordering constraint on this RMW.
651 AtomicOrdering getOrdering() const {
Eli Friedman21006d42011-08-09 23:02:53 +0000652 return AtomicOrdering((getSubclassDataFromInstruction() >> 2) & 7);
Eli Friedmanff030482011-07-28 21:48:00 +0000653 }
654
655 /// Returns whether this RMW is atomic between threads or only within a
656 /// single thread.
657 SynchronizationScope getSynchScope() const {
658 return SynchronizationScope((getSubclassDataFromInstruction() & 2) >> 1);
659 }
660
661 Value *getPointerOperand() { return getOperand(0); }
662 const Value *getPointerOperand() const { return getOperand(0); }
663 static unsigned getPointerOperandIndex() { return 0U; }
664
665 Value *getValOperand() { return getOperand(1); }
666 const Value *getValOperand() const { return getOperand(1); }
667
668 unsigned getPointerAddressSpace() const {
669 return cast<PointerType>(getPointerOperand()->getType())->getAddressSpace();
670 }
671
672 // Methods for support type inquiry through isa, cast, and dyn_cast:
673 static inline bool classof(const AtomicRMWInst *) { return true; }
674 static inline bool classof(const Instruction *I) {
675 return I->getOpcode() == Instruction::AtomicRMW;
676 }
677 static inline bool classof(const Value *V) {
678 return isa<Instruction>(V) && classof(cast<Instruction>(V));
679 }
680private:
681 void Init(BinOp Operation, Value *Ptr, Value *Val,
682 AtomicOrdering Ordering, SynchronizationScope SynchScope);
683 // Shadow Instruction::setInstructionSubclassData with a private forwarding
684 // method so that subclasses cannot accidentally use it.
685 void setInstructionSubclassData(unsigned short D) {
686 Instruction::setInstructionSubclassData(D);
687 }
688};
689
690template <>
691struct OperandTraits<AtomicRMWInst>
692 : public FixedNumOperandTraits<AtomicRMWInst,2> {
693};
694
695DEFINE_TRANSPARENT_OPERAND_ACCESSORS(AtomicRMWInst, Value)
696
697//===----------------------------------------------------------------------===//
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000698// GetElementPtrInst Class
699//===----------------------------------------------------------------------===//
700
Chris Lattner1afcace2011-07-09 17:41:24 +0000701// checkGEPType - Simple wrapper function to give a better assertion failure
David Greeneb8f74792007-09-04 15:46:09 +0000702// message on bad indexes for a gep instruction.
703//
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000704static inline Type *checkGEPType(Type *Ty) {
David Greeneb8f74792007-09-04 15:46:09 +0000705 assert(Ty && "Invalid GetElementPtrInst indices for type!");
706 return Ty;
707}
708
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000709/// GetElementPtrInst - an instruction for type-safe pointer arithmetic to
710/// access elements of arrays and structs
711///
712class GetElementPtrInst : public Instruction {
Gabor Greifefe65362008-05-10 08:32:32 +0000713 GetElementPtrInst(const GetElementPtrInst &GEPI);
Jay Foada9203102011-07-25 09:48:08 +0000714 void init(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &NameStr);
David Greeneb8f74792007-09-04 15:46:09 +0000715
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000716 /// Constructors - Create a getelementptr instruction with a base pointer an
Mikhail Glushenkovd33b77b2010-10-27 07:39:54 +0000717 /// list of indices. The first ctor can optionally insert before an existing
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000718 /// instruction, the second appends the new instruction to the specified
719 /// BasicBlock.
Jay Foada9203102011-07-25 09:48:08 +0000720 inline GetElementPtrInst(Value *Ptr, ArrayRef<Value *> IdxList,
721 unsigned Values, const Twine &NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +0000722 Instruction *InsertBefore);
Jay Foada9203102011-07-25 09:48:08 +0000723 inline GetElementPtrInst(Value *Ptr, ArrayRef<Value *> IdxList,
724 unsigned Values, const Twine &NameStr,
725 BasicBlock *InsertAtEnd);
Devang Patel50b6e332009-10-27 22:16:29 +0000726protected:
727 virtual GetElementPtrInst *clone_impl() const;
Gabor Greif051a9502008-04-06 20:25:17 +0000728public:
Jay Foada9203102011-07-25 09:48:08 +0000729 static GetElementPtrInst *Create(Value *Ptr, ArrayRef<Value *> IdxList,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000730 const Twine &NameStr = "",
Gabor Greif051a9502008-04-06 20:25:17 +0000731 Instruction *InsertBefore = 0) {
Jay Foada9203102011-07-25 09:48:08 +0000732 unsigned Values = 1 + unsigned(IdxList.size());
Gabor Greifefe65362008-05-10 08:32:32 +0000733 return new(Values)
Jay Foada9203102011-07-25 09:48:08 +0000734 GetElementPtrInst(Ptr, IdxList, Values, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +0000735 }
Jay Foada9203102011-07-25 09:48:08 +0000736 static GetElementPtrInst *Create(Value *Ptr, ArrayRef<Value *> IdxList,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000737 const Twine &NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +0000738 BasicBlock *InsertAtEnd) {
Jay Foada9203102011-07-25 09:48:08 +0000739 unsigned Values = 1 + unsigned(IdxList.size());
Gabor Greifefe65362008-05-10 08:32:32 +0000740 return new(Values)
Jay Foada9203102011-07-25 09:48:08 +0000741 GetElementPtrInst(Ptr, IdxList, Values, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +0000742 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000743
Dan Gohmane2574d32009-08-11 17:57:01 +0000744 /// Create an "inbounds" getelementptr. See the documentation for the
745 /// "inbounds" flag in LangRef.html for details.
Mikhail Glushenkovd33b77b2010-10-27 07:39:54 +0000746 static GetElementPtrInst *CreateInBounds(Value *Ptr,
Jay Foada9203102011-07-25 09:48:08 +0000747 ArrayRef<Value *> IdxList,
Dan Gohmane2574d32009-08-11 17:57:01 +0000748 const Twine &NameStr = "",
749 Instruction *InsertBefore = 0) {
Jay Foada9203102011-07-25 09:48:08 +0000750 GetElementPtrInst *GEP = Create(Ptr, IdxList, NameStr, InsertBefore);
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000751 GEP->setIsInBounds(true);
Dan Gohmane2574d32009-08-11 17:57:01 +0000752 return GEP;
753 }
Dan Gohmane2574d32009-08-11 17:57:01 +0000754 static GetElementPtrInst *CreateInBounds(Value *Ptr,
Jay Foada9203102011-07-25 09:48:08 +0000755 ArrayRef<Value *> IdxList,
Dan Gohmane2574d32009-08-11 17:57:01 +0000756 const Twine &NameStr,
757 BasicBlock *InsertAtEnd) {
Jay Foada9203102011-07-25 09:48:08 +0000758 GetElementPtrInst *GEP = Create(Ptr, IdxList, NameStr, InsertAtEnd);
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000759 GEP->setIsInBounds(true);
Dan Gohmane2574d32009-08-11 17:57:01 +0000760 return GEP;
761 }
762
Gabor Greifefe65362008-05-10 08:32:32 +0000763 /// Transparently provide more efficient getOperand methods.
764 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
765
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000766 // getType - Overload to return most specific pointer type...
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000767 PointerType *getType() const {
768 return reinterpret_cast<PointerType*>(Instruction::getType());
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000769 }
770
771 /// getIndexedType - Returns the type of the element that would be loaded with
772 /// a load instruction with the specified parameters.
773 ///
Dan Gohmane2d896f2008-05-15 23:35:32 +0000774 /// Null is returned if the indices are invalid for the specified
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000775 /// pointer type.
776 ///
Jay Foada9203102011-07-25 09:48:08 +0000777 static Type *getIndexedType(Type *Ptr, ArrayRef<Value *> IdxList);
778 static Type *getIndexedType(Type *Ptr, ArrayRef<Constant *> IdxList);
779 static Type *getIndexedType(Type *Ptr, ArrayRef<uint64_t> IdxList);
Misha Brukman9769ab22005-04-21 20:19:05 +0000780
Nadav Rotem16087692011-12-05 06:29:09 +0000781 /// getIndexedType - Returns the address space used by the GEP pointer.
782 ///
783 static unsigned getAddressSpace(Value *Ptr);
784
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000785 inline op_iterator idx_begin() { return op_begin()+1; }
786 inline const_op_iterator idx_begin() const { return op_begin()+1; }
787 inline op_iterator idx_end() { return op_end(); }
788 inline const_op_iterator idx_end() const { return op_end(); }
789
790 Value *getPointerOperand() {
791 return getOperand(0);
792 }
793 const Value *getPointerOperand() const {
794 return getOperand(0);
795 }
796 static unsigned getPointerOperandIndex() {
Nadav Rotem16087692011-12-05 06:29:09 +0000797 return 0U; // get index for modifying correct operand.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000798 }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +0000799
Chris Lattner8a67ac52009-08-30 20:06:40 +0000800 unsigned getPointerAddressSpace() const {
801 return cast<PointerType>(getType())->getAddressSpace();
802 }
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +0000803
Chris Lattner3bc6ced2009-01-09 05:27:40 +0000804 /// getPointerOperandType - Method to return the pointer operand as a
805 /// PointerType.
Nadav Rotem16087692011-12-05 06:29:09 +0000806 Type *getPointerOperandType() const {
807 return getPointerOperand()->getType();
Chris Lattner3bc6ced2009-01-09 05:27:40 +0000808 }
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +0000809
Nadav Rotem16087692011-12-05 06:29:09 +0000810 /// GetGEPReturnType - Returns the pointer type returned by the GEP
811 /// instruction, which may be a vector of pointers.
812 static Type *getGEPReturnType(Value *Ptr, ArrayRef<Value *> IdxList) {
813 Type *PtrTy = PointerType::get(checkGEPType(
814 getIndexedType(Ptr->getType(), IdxList)),
815 getAddressSpace(Ptr));
816 // Vector GEP
817 if (Ptr->getType()->isVectorTy()) {
818 unsigned NumElem = cast<VectorType>(Ptr->getType())->getNumElements();
819 return VectorType::get(PtrTy, NumElem);
820 }
821
822 // Scalar GEP
823 return PtrTy;
824 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000825
Devang Patel4d4a5e02008-02-23 01:11:02 +0000826 unsigned getNumIndices() const { // Note: always non-negative
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000827 return getNumOperands() - 1;
828 }
Misha Brukman9769ab22005-04-21 20:19:05 +0000829
Devang Patel4d4a5e02008-02-23 01:11:02 +0000830 bool hasIndices() const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000831 return getNumOperands() > 1;
832 }
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +0000833
Chris Lattner6f771d42007-04-14 00:12:57 +0000834 /// hasAllZeroIndices - Return true if all of the indices of this GEP are
835 /// zeros. If so, the result pointer and the first operand have the same
836 /// value, just potentially different types.
837 bool hasAllZeroIndices() const;
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +0000838
Chris Lattner6b0974c2007-04-27 20:35:56 +0000839 /// hasAllConstantIndices - Return true if all of the indices of this GEP are
840 /// constant integers. If so, the result pointer and the first operand have
841 /// a constant offset between them.
842 bool hasAllConstantIndices() const;
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +0000843
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000844 /// setIsInBounds - Set or clear the inbounds flag on this GEP instruction.
845 /// See LangRef.html for the meaning of inbounds on a getelementptr.
Nick Lewyckyae05e7d2009-09-27 21:33:04 +0000846 void setIsInBounds(bool b = true);
847
848 /// isInBounds - Determine whether the GEP has the inbounds flag.
849 bool isInBounds() const;
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000850
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000851 // Methods for support type inquiry through isa, cast, and dyn_cast:
852 static inline bool classof(const GetElementPtrInst *) { return true; }
853 static inline bool classof(const Instruction *I) {
854 return (I->getOpcode() == Instruction::GetElementPtr);
855 }
856 static inline bool classof(const Value *V) {
857 return isa<Instruction>(V) && classof(cast<Instruction>(V));
858 }
859};
860
Gabor Greifefe65362008-05-10 08:32:32 +0000861template <>
Jay Foad67c619b2011-01-11 15:07:38 +0000862struct OperandTraits<GetElementPtrInst> :
863 public VariadicOperandTraits<GetElementPtrInst, 1> {
Gabor Greifefe65362008-05-10 08:32:32 +0000864};
865
Gabor Greifefe65362008-05-10 08:32:32 +0000866GetElementPtrInst::GetElementPtrInst(Value *Ptr,
Jay Foada9203102011-07-25 09:48:08 +0000867 ArrayRef<Value *> IdxList,
Gabor Greifefe65362008-05-10 08:32:32 +0000868 unsigned Values,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000869 const Twine &NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +0000870 Instruction *InsertBefore)
Nadav Rotem16087692011-12-05 06:29:09 +0000871 : Instruction(getGEPReturnType(Ptr, IdxList),
Gabor Greifefe65362008-05-10 08:32:32 +0000872 GetElementPtr,
873 OperandTraits<GetElementPtrInst>::op_end(this) - Values,
874 Values, InsertBefore) {
Jay Foada9203102011-07-25 09:48:08 +0000875 init(Ptr, IdxList, NameStr);
Gabor Greifefe65362008-05-10 08:32:32 +0000876}
Gabor Greifefe65362008-05-10 08:32:32 +0000877GetElementPtrInst::GetElementPtrInst(Value *Ptr,
Jay Foada9203102011-07-25 09:48:08 +0000878 ArrayRef<Value *> IdxList,
Gabor Greifefe65362008-05-10 08:32:32 +0000879 unsigned Values,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000880 const Twine &NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +0000881 BasicBlock *InsertAtEnd)
Nadav Rotem16087692011-12-05 06:29:09 +0000882 : Instruction(getGEPReturnType(Ptr, IdxList),
Gabor Greifefe65362008-05-10 08:32:32 +0000883 GetElementPtr,
884 OperandTraits<GetElementPtrInst>::op_end(this) - Values,
885 Values, InsertAtEnd) {
Jay Foada9203102011-07-25 09:48:08 +0000886 init(Ptr, IdxList, NameStr);
Gabor Greifefe65362008-05-10 08:32:32 +0000887}
888
889
890DEFINE_TRANSPARENT_OPERAND_ACCESSORS(GetElementPtrInst, Value)
891
892
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000893//===----------------------------------------------------------------------===//
Reid Spencer45fb3f32006-11-20 01:22:35 +0000894// ICmpInst Class
895//===----------------------------------------------------------------------===//
896
897/// This instruction compares its operands according to the predicate given
Nate Begemanac80ade2008-05-12 19:01:56 +0000898/// to the constructor. It only operates on integers or pointers. The operands
899/// must be identical types.
Reid Spencer45fb3f32006-11-20 01:22:35 +0000900/// @brief Represent an integer comparison operator.
901class ICmpInst: public CmpInst {
Devang Patel50b6e332009-10-27 22:16:29 +0000902protected:
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000903 /// @brief Clone an identical ICmpInst
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +0000904 virtual ICmpInst *clone_impl() const;
Reid Spencer45fb3f32006-11-20 01:22:35 +0000905public:
Reid Spencer45fb3f32006-11-20 01:22:35 +0000906 /// @brief Constructor with insert-before-instruction semantics.
907 ICmpInst(
Owen Anderson333c4002009-07-09 23:48:35 +0000908 Instruction *InsertBefore, ///< Where to insert
Reid Spencer45fb3f32006-11-20 01:22:35 +0000909 Predicate pred, ///< The predicate to use for the comparison
910 Value *LHS, ///< The left-hand-side of the expression
911 Value *RHS, ///< The right-hand-side of the expression
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000912 const Twine &NameStr = "" ///< Name of the instruction
Owen Andersondebcb012009-07-29 22:17:13 +0000913 ) : CmpInst(makeCmpResultType(LHS->getType()),
Dan Gohmanf72fb672008-09-09 01:02:47 +0000914 Instruction::ICmp, pred, LHS, RHS, NameStr,
Nate Begemanac80ade2008-05-12 19:01:56 +0000915 InsertBefore) {
916 assert(pred >= CmpInst::FIRST_ICMP_PREDICATE &&
917 pred <= CmpInst::LAST_ICMP_PREDICATE &&
918 "Invalid ICmp predicate value");
Nate Begeman31cd33a2008-05-14 20:28:31 +0000919 assert(getOperand(0)->getType() == getOperand(1)->getType() &&
Nate Begemanac80ade2008-05-12 19:01:56 +0000920 "Both operands to ICmp instruction are not of the same type!");
921 // Check that the operands are the right type
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000922 assert((getOperand(0)->getType()->isIntOrIntVectorTy() ||
Nadav Rotem16087692011-12-05 06:29:09 +0000923 getOperand(0)->getType()->getScalarType()->isPointerTy()) &&
Nate Begemanac80ade2008-05-12 19:01:56 +0000924 "Invalid operand types for ICmp instruction");
Reid Spencer45fb3f32006-11-20 01:22:35 +0000925 }
926
Owen Anderson333c4002009-07-09 23:48:35 +0000927 /// @brief Constructor with insert-at-end semantics.
Reid Spencer45fb3f32006-11-20 01:22:35 +0000928 ICmpInst(
Owen Anderson333c4002009-07-09 23:48:35 +0000929 BasicBlock &InsertAtEnd, ///< Block to insert into.
930 Predicate pred, ///< The predicate to use for the comparison
931 Value *LHS, ///< The left-hand-side of the expression
932 Value *RHS, ///< The right-hand-side of the expression
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000933 const Twine &NameStr = "" ///< Name of the instruction
Owen Andersondebcb012009-07-29 22:17:13 +0000934 ) : CmpInst(makeCmpResultType(LHS->getType()),
Owen Anderson333c4002009-07-09 23:48:35 +0000935 Instruction::ICmp, pred, LHS, RHS, NameStr,
936 &InsertAtEnd) {
937 assert(pred >= CmpInst::FIRST_ICMP_PREDICATE &&
938 pred <= CmpInst::LAST_ICMP_PREDICATE &&
939 "Invalid ICmp predicate value");
940 assert(getOperand(0)->getType() == getOperand(1)->getType() &&
941 "Both operands to ICmp instruction are not of the same type!");
942 // Check that the operands are the right type
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000943 assert((getOperand(0)->getType()->isIntOrIntVectorTy() ||
Duncan Sands1df98592010-02-16 11:11:14 +0000944 getOperand(0)->getType()->isPointerTy()) &&
Owen Anderson333c4002009-07-09 23:48:35 +0000945 "Invalid operand types for ICmp instruction");
946 }
947
948 /// @brief Constructor with no-insertion semantics
949 ICmpInst(
Reid Spencer45fb3f32006-11-20 01:22:35 +0000950 Predicate pred, ///< The predicate to use for the comparison
951 Value *LHS, ///< The left-hand-side of the expression
952 Value *RHS, ///< The right-hand-side of the expression
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000953 const Twine &NameStr = "" ///< Name of the instruction
Owen Andersondebcb012009-07-29 22:17:13 +0000954 ) : CmpInst(makeCmpResultType(LHS->getType()),
Owen Anderson333c4002009-07-09 23:48:35 +0000955 Instruction::ICmp, pred, LHS, RHS, NameStr) {
Nate Begemanac80ade2008-05-12 19:01:56 +0000956 assert(pred >= CmpInst::FIRST_ICMP_PREDICATE &&
957 pred <= CmpInst::LAST_ICMP_PREDICATE &&
958 "Invalid ICmp predicate value");
Nate Begeman31cd33a2008-05-14 20:28:31 +0000959 assert(getOperand(0)->getType() == getOperand(1)->getType() &&
Nate Begemanac80ade2008-05-12 19:01:56 +0000960 "Both operands to ICmp instruction are not of the same type!");
961 // Check that the operands are the right type
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000962 assert((getOperand(0)->getType()->isIntOrIntVectorTy() ||
Nadav Rotem16087692011-12-05 06:29:09 +0000963 getOperand(0)->getType()->getScalarType()->isPointerTy()) &&
Nate Begemanac80ade2008-05-12 19:01:56 +0000964 "Invalid operand types for ICmp instruction");
Reid Spencer45fb3f32006-11-20 01:22:35 +0000965 }
966
Reid Spencere4d87aa2006-12-23 06:05:41 +0000967 /// For example, EQ->EQ, SLE->SLE, UGT->SGT, etc.
968 /// @returns the predicate that would be the result if the operand were
969 /// regarded as signed.
970 /// @brief Return the signed version of the predicate
971 Predicate getSignedPredicate() const {
972 return getSignedPredicate(getPredicate());
973 }
974
975 /// This is a static version that you can use without an instruction.
976 /// @brief Return the signed version of the predicate.
977 static Predicate getSignedPredicate(Predicate pred);
Reid Spencer45fb3f32006-11-20 01:22:35 +0000978
Nick Lewycky4189a532008-01-28 03:48:02 +0000979 /// For example, EQ->EQ, SLE->ULE, UGT->UGT, etc.
980 /// @returns the predicate that would be the result if the operand were
981 /// regarded as unsigned.
982 /// @brief Return the unsigned version of the predicate
983 Predicate getUnsignedPredicate() const {
984 return getUnsignedPredicate(getPredicate());
985 }
986
987 /// This is a static version that you can use without an instruction.
988 /// @brief Return the unsigned version of the predicate.
989 static Predicate getUnsignedPredicate(Predicate pred);
990
Chris Lattnerc2bfadb2007-11-22 23:43:29 +0000991 /// isEquality - Return true if this predicate is either EQ or NE. This also
992 /// tests for commutativity.
993 static bool isEquality(Predicate P) {
994 return P == ICMP_EQ || P == ICMP_NE;
995 }
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +0000996
Chris Lattnerc2bfadb2007-11-22 23:43:29 +0000997 /// isEquality - Return true if this predicate is either EQ or NE. This also
998 /// tests for commutativity.
Reid Spencer45fb3f32006-11-20 01:22:35 +0000999 bool isEquality() const {
Chris Lattnerc2bfadb2007-11-22 23:43:29 +00001000 return isEquality(getPredicate());
Reid Spencer45fb3f32006-11-20 01:22:35 +00001001 }
Reid Spencere4d87aa2006-12-23 06:05:41 +00001002
1003 /// @returns true if the predicate of this ICmpInst is commutative
1004 /// @brief Determine if this relation is commutative.
Reid Spencer45fb3f32006-11-20 01:22:35 +00001005 bool isCommutative() const { return isEquality(); }
1006
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001007 /// isRelational - Return true if the predicate is relational (not EQ or NE).
Chris Lattnerc2bfadb2007-11-22 23:43:29 +00001008 ///
Reid Spencer45fb3f32006-11-20 01:22:35 +00001009 bool isRelational() const {
1010 return !isEquality();
1011 }
1012
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001013 /// isRelational - Return true if the predicate is relational (not EQ or NE).
Chris Lattnerc2bfadb2007-11-22 23:43:29 +00001014 ///
1015 static bool isRelational(Predicate P) {
1016 return !isEquality(P);
1017 }
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001018
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001019 /// Initialize a set of values that all satisfy the predicate with C.
Reid Spencer3da43842007-02-28 22:00:54 +00001020 /// @brief Make a ConstantRange for a relation with a constant value.
1021 static ConstantRange makeConstantRange(Predicate pred, const APInt &C);
1022
Reid Spencer45fb3f32006-11-20 01:22:35 +00001023 /// Exchange the two operands to this instruction in such a way that it does
1024 /// not modify the semantics of the instruction. The predicate value may be
1025 /// changed to retain the same result if the predicate is order dependent
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001026 /// (e.g. ult).
Reid Spencer45fb3f32006-11-20 01:22:35 +00001027 /// @brief Swap operands and adjust predicate.
1028 void swapOperands() {
Chris Lattnercafe9bb2009-12-29 02:14:09 +00001029 setPredicate(getSwappedPredicate());
Gabor Greif94fb68b2008-05-13 22:51:52 +00001030 Op<0>().swap(Op<1>());
Reid Spencer45fb3f32006-11-20 01:22:35 +00001031 }
1032
1033 // Methods for support type inquiry through isa, cast, and dyn_cast:
1034 static inline bool classof(const ICmpInst *) { return true; }
1035 static inline bool classof(const Instruction *I) {
1036 return I->getOpcode() == Instruction::ICmp;
1037 }
1038 static inline bool classof(const Value *V) {
1039 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1040 }
Dan Gohmanf72fb672008-09-09 01:02:47 +00001041
Reid Spencer45fb3f32006-11-20 01:22:35 +00001042};
1043
1044//===----------------------------------------------------------------------===//
1045// FCmpInst Class
1046//===----------------------------------------------------------------------===//
1047
1048/// This instruction compares its operands according to the predicate given
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001049/// to the constructor. It only operates on floating point values or packed
Reid Spencer45fb3f32006-11-20 01:22:35 +00001050/// vectors of floating point values. The operands must be identical types.
1051/// @brief Represents a floating point comparison operator.
1052class FCmpInst: public CmpInst {
Devang Patel50b6e332009-10-27 22:16:29 +00001053protected:
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001054 /// @brief Clone an identical FCmpInst
Devang Patel50b6e332009-10-27 22:16:29 +00001055 virtual FCmpInst *clone_impl() const;
Reid Spencer45fb3f32006-11-20 01:22:35 +00001056public:
Reid Spencer45fb3f32006-11-20 01:22:35 +00001057 /// @brief Constructor with insert-before-instruction semantics.
1058 FCmpInst(
Owen Anderson333c4002009-07-09 23:48:35 +00001059 Instruction *InsertBefore, ///< Where to insert
Reid Spencer45fb3f32006-11-20 01:22:35 +00001060 Predicate pred, ///< The predicate to use for the comparison
1061 Value *LHS, ///< The left-hand-side of the expression
1062 Value *RHS, ///< The right-hand-side of the expression
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001063 const Twine &NameStr = "" ///< Name of the instruction
Owen Andersondebcb012009-07-29 22:17:13 +00001064 ) : CmpInst(makeCmpResultType(LHS->getType()),
Dan Gohmanf72fb672008-09-09 01:02:47 +00001065 Instruction::FCmp, pred, LHS, RHS, NameStr,
Nate Begemanac80ade2008-05-12 19:01:56 +00001066 InsertBefore) {
1067 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE &&
1068 "Invalid FCmp predicate value");
Nate Begeman31cd33a2008-05-14 20:28:31 +00001069 assert(getOperand(0)->getType() == getOperand(1)->getType() &&
Nate Begemanac80ade2008-05-12 19:01:56 +00001070 "Both operands to FCmp instruction are not of the same type!");
1071 // Check that the operands are the right type
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001072 assert(getOperand(0)->getType()->isFPOrFPVectorTy() &&
Nate Begemanac80ade2008-05-12 19:01:56 +00001073 "Invalid operand types for FCmp instruction");
Reid Spencer45fb3f32006-11-20 01:22:35 +00001074 }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00001075
Owen Anderson333c4002009-07-09 23:48:35 +00001076 /// @brief Constructor with insert-at-end semantics.
Reid Spencer45fb3f32006-11-20 01:22:35 +00001077 FCmpInst(
Owen Anderson333c4002009-07-09 23:48:35 +00001078 BasicBlock &InsertAtEnd, ///< Block to insert into.
1079 Predicate pred, ///< The predicate to use for the comparison
1080 Value *LHS, ///< The left-hand-side of the expression
1081 Value *RHS, ///< The right-hand-side of the expression
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001082 const Twine &NameStr = "" ///< Name of the instruction
Owen Andersondebcb012009-07-29 22:17:13 +00001083 ) : CmpInst(makeCmpResultType(LHS->getType()),
Owen Anderson333c4002009-07-09 23:48:35 +00001084 Instruction::FCmp, pred, LHS, RHS, NameStr,
1085 &InsertAtEnd) {
1086 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE &&
1087 "Invalid FCmp predicate value");
1088 assert(getOperand(0)->getType() == getOperand(1)->getType() &&
1089 "Both operands to FCmp instruction are not of the same type!");
1090 // Check that the operands are the right type
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001091 assert(getOperand(0)->getType()->isFPOrFPVectorTy() &&
Owen Anderson333c4002009-07-09 23:48:35 +00001092 "Invalid operand types for FCmp instruction");
1093 }
1094
1095 /// @brief Constructor with no-insertion semantics
1096 FCmpInst(
Reid Spencer45fb3f32006-11-20 01:22:35 +00001097 Predicate pred, ///< The predicate to use for the comparison
1098 Value *LHS, ///< The left-hand-side of the expression
1099 Value *RHS, ///< The right-hand-side of the expression
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001100 const Twine &NameStr = "" ///< Name of the instruction
Owen Andersondebcb012009-07-29 22:17:13 +00001101 ) : CmpInst(makeCmpResultType(LHS->getType()),
Owen Anderson333c4002009-07-09 23:48:35 +00001102 Instruction::FCmp, pred, LHS, RHS, NameStr) {
Nate Begemanac80ade2008-05-12 19:01:56 +00001103 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE &&
1104 "Invalid FCmp predicate value");
Nate Begeman31cd33a2008-05-14 20:28:31 +00001105 assert(getOperand(0)->getType() == getOperand(1)->getType() &&
Nate Begemanac80ade2008-05-12 19:01:56 +00001106 "Both operands to FCmp instruction are not of the same type!");
1107 // Check that the operands are the right type
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001108 assert(getOperand(0)->getType()->isFPOrFPVectorTy() &&
Nate Begemanac80ade2008-05-12 19:01:56 +00001109 "Invalid operand types for FCmp instruction");
Reid Spencer45fb3f32006-11-20 01:22:35 +00001110 }
1111
Reid Spencer45fb3f32006-11-20 01:22:35 +00001112 /// @returns true if the predicate of this instruction is EQ or NE.
1113 /// @brief Determine if this is an equality predicate.
1114 bool isEquality() const {
Chris Lattnercafe9bb2009-12-29 02:14:09 +00001115 return getPredicate() == FCMP_OEQ || getPredicate() == FCMP_ONE ||
1116 getPredicate() == FCMP_UEQ || getPredicate() == FCMP_UNE;
Reid Spencer45fb3f32006-11-20 01:22:35 +00001117 }
Dan Gohman793df072008-09-16 16:44:00 +00001118
1119 /// @returns true if the predicate of this instruction is commutative.
1120 /// @brief Determine if this is a commutative predicate.
1121 bool isCommutative() const {
1122 return isEquality() ||
Chris Lattnercafe9bb2009-12-29 02:14:09 +00001123 getPredicate() == FCMP_FALSE ||
1124 getPredicate() == FCMP_TRUE ||
1125 getPredicate() == FCMP_ORD ||
1126 getPredicate() == FCMP_UNO;
Dan Gohman793df072008-09-16 16:44:00 +00001127 }
Reid Spencer45fb3f32006-11-20 01:22:35 +00001128
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001129 /// @returns true if the predicate is relational (not EQ or NE).
Reid Spencer45fb3f32006-11-20 01:22:35 +00001130 /// @brief Determine if this a relational predicate.
1131 bool isRelational() const { return !isEquality(); }
1132
1133 /// Exchange the two operands to this instruction in such a way that it does
1134 /// not modify the semantics of the instruction. The predicate value may be
1135 /// changed to retain the same result if the predicate is order dependent
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001136 /// (e.g. ult).
Reid Spencer45fb3f32006-11-20 01:22:35 +00001137 /// @brief Swap operands and adjust predicate.
1138 void swapOperands() {
Chris Lattnercafe9bb2009-12-29 02:14:09 +00001139 setPredicate(getSwappedPredicate());
Gabor Greif94fb68b2008-05-13 22:51:52 +00001140 Op<0>().swap(Op<1>());
Reid Spencer45fb3f32006-11-20 01:22:35 +00001141 }
1142
1143 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
1144 static inline bool classof(const FCmpInst *) { return true; }
1145 static inline bool classof(const Instruction *I) {
1146 return I->getOpcode() == Instruction::FCmp;
1147 }
1148 static inline bool classof(const Value *V) {
1149 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1150 }
1151};
1152
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001153//===----------------------------------------------------------------------===//
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001154/// CallInst - This class represents a function call, abstracting a target
Chris Lattner3340ffe2005-05-06 20:26:26 +00001155/// machine's calling convention. This class uses low bit of the SubClassData
1156/// field to indicate whether or not this is a tail call. The rest of the bits
1157/// hold the calling convention of the call.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001158///
1159class CallInst : public Instruction {
Devang Patel05988662008-09-25 21:00:45 +00001160 AttrListPtr AttributeList; ///< parameter attributes for call
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001161 CallInst(const CallInst &CI);
Jay Foada3efbb12011-07-15 08:37:34 +00001162 void init(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr);
1163 void init(Value *Func, const Twine &NameStr);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001164
Jay Foada3efbb12011-07-15 08:37:34 +00001165 /// Construct a CallInst given a range of arguments.
David Greene52eec542007-08-01 03:43:44 +00001166 /// @brief Construct a CallInst from a range of arguments
Jay Foada3efbb12011-07-15 08:37:34 +00001167 inline CallInst(Value *Func, ArrayRef<Value *> Args,
1168 const Twine &NameStr, Instruction *InsertBefore);
David Greene52eec542007-08-01 03:43:44 +00001169
Jay Foada3efbb12011-07-15 08:37:34 +00001170 /// Construct a CallInst given a range of arguments.
David Greene52eec542007-08-01 03:43:44 +00001171 /// @brief Construct a CallInst from a range of arguments
Jay Foada3efbb12011-07-15 08:37:34 +00001172 inline CallInst(Value *Func, ArrayRef<Value *> Args,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001173 const Twine &NameStr, BasicBlock *InsertAtEnd);
David Greene52eec542007-08-01 03:43:44 +00001174
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001175 CallInst(Value *F, Value *Actual, const Twine &NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +00001176 Instruction *InsertBefore);
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001177 CallInst(Value *F, Value *Actual, const Twine &NameStr,
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001178 BasicBlock *InsertAtEnd);
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001179 explicit CallInst(Value *F, const Twine &NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +00001180 Instruction *InsertBefore);
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001181 CallInst(Value *F, const Twine &NameStr, BasicBlock *InsertAtEnd);
Devang Patel50b6e332009-10-27 22:16:29 +00001182protected:
1183 virtual CallInst *clone_impl() const;
Gabor Greif051a9502008-04-06 20:25:17 +00001184public:
Gabor Greifefe65362008-05-10 08:32:32 +00001185 static CallInst *Create(Value *Func,
Jay Foada3efbb12011-07-15 08:37:34 +00001186 ArrayRef<Value *> Args,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001187 const Twine &NameStr = "",
Evan Chengd69bb1a2008-05-05 17:41:03 +00001188 Instruction *InsertBefore = 0) {
Jay Foada3efbb12011-07-15 08:37:34 +00001189 return new(unsigned(Args.size() + 1))
1190 CallInst(Func, Args, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00001191 }
Gabor Greifefe65362008-05-10 08:32:32 +00001192 static CallInst *Create(Value *Func,
Jay Foada3efbb12011-07-15 08:37:34 +00001193 ArrayRef<Value *> Args,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001194 const Twine &NameStr, BasicBlock *InsertAtEnd) {
Jay Foada3efbb12011-07-15 08:37:34 +00001195 return new(unsigned(Args.size() + 1))
1196 CallInst(Func, Args, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001197 }
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001198 static CallInst *Create(Value *F, const Twine &NameStr = "",
Gabor Greif051a9502008-04-06 20:25:17 +00001199 Instruction *InsertBefore = 0) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001200 return new(1) CallInst(F, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00001201 }
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001202 static CallInst *Create(Value *F, const Twine &NameStr,
Evan Cheng34cd4a42008-05-05 18:30:58 +00001203 BasicBlock *InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001204 return new(1) CallInst(F, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001205 }
Evan Chengfabcb912009-09-10 04:36:43 +00001206 /// CreateMalloc - Generate the IR for a call to malloc:
1207 /// 1. Compute the malloc call's argument as the specified type's size,
1208 /// possibly multiplied by the array size if the array size is not
1209 /// constant 1.
1210 /// 2. Call malloc with that argument.
1211 /// 3. Bitcast the result of the malloc call to the specified type.
Nick Lewycky3fc35c52009-10-17 23:52:26 +00001212 static Instruction *CreateMalloc(Instruction *InsertBefore,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001213 Type *IntPtrTy, Type *AllocTy,
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001214 Value *AllocSize, Value *ArraySize = 0,
Chris Lattner5a30a852010-07-12 00:57:28 +00001215 Function* MallocF = 0,
Nick Lewycky3fc35c52009-10-17 23:52:26 +00001216 const Twine &Name = "");
1217 static Instruction *CreateMalloc(BasicBlock *InsertAtEnd,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001218 Type *IntPtrTy, Type *AllocTy,
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001219 Value *AllocSize, Value *ArraySize = 0,
1220 Function* MallocF = 0,
Nick Lewycky3fc35c52009-10-17 23:52:26 +00001221 const Twine &Name = "");
Victor Hernandez66284e02009-10-24 04:23:03 +00001222 /// CreateFree - Generate the IR for a call to the builtin free function.
Chris Lattner5a30a852010-07-12 00:57:28 +00001223 static Instruction* CreateFree(Value* Source, Instruction *InsertBefore);
Victor Hernandez66284e02009-10-24 04:23:03 +00001224 static Instruction* CreateFree(Value* Source, BasicBlock *InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001225
Gordon Henriksenafba8fe2007-12-10 02:14:30 +00001226 ~CallInst();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001227
Chris Lattnerb2406d92009-12-29 02:46:09 +00001228 bool isTailCall() const { return getSubclassDataFromInstruction() & 1; }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001229 void setTailCall(bool isTC = true) {
Chris Lattnerb2406d92009-12-29 02:46:09 +00001230 setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
1231 unsigned(isTC));
Chris Lattner3340ffe2005-05-06 20:26:26 +00001232 }
1233
Dan Gohmanf2752502008-09-26 21:38:45 +00001234 /// Provide fast operand accessors
1235 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001236
Gabor Greif0114b992010-07-31 08:35:21 +00001237 /// getNumArgOperands - Return the number of call arguments.
1238 ///
Bill Wendling22a5b292010-06-07 19:05:06 +00001239 unsigned getNumArgOperands() const { return getNumOperands() - 1; }
Gabor Greif0114b992010-07-31 08:35:21 +00001240
1241 /// getArgOperand/setArgOperand - Return/set the i-th call argument.
1242 ///
Gabor Greifa6aac4c2010-07-16 09:38:02 +00001243 Value *getArgOperand(unsigned i) const { return getOperand(i); }
1244 void setArgOperand(unsigned i, Value *v) { setOperand(i, v); }
Bill Wendling22a5b292010-06-07 19:05:06 +00001245
Chris Lattner3340ffe2005-05-06 20:26:26 +00001246 /// getCallingConv/setCallingConv - Get or set the calling convention of this
1247 /// function call.
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001248 CallingConv::ID getCallingConv() const {
Chris Lattnerb2406d92009-12-29 02:46:09 +00001249 return static_cast<CallingConv::ID>(getSubclassDataFromInstruction() >> 1);
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001250 }
1251 void setCallingConv(CallingConv::ID CC) {
Chris Lattnerb2406d92009-12-29 02:46:09 +00001252 setInstructionSubclassData((getSubclassDataFromInstruction() & 1) |
1253 (static_cast<unsigned>(CC) << 1));
Chris Lattner3340ffe2005-05-06 20:26:26 +00001254 }
Chris Lattnerddb6db42005-05-06 05:51:46 +00001255
Devang Patel05988662008-09-25 21:00:45 +00001256 /// getAttributes - Return the parameter attributes for this call.
Chris Lattner041221c2008-03-13 04:33:03 +00001257 ///
Devang Patel05988662008-09-25 21:00:45 +00001258 const AttrListPtr &getAttributes() const { return AttributeList; }
Reid Spencer4746ecf2007-04-09 15:01:12 +00001259
Dan Gohmanf2752502008-09-26 21:38:45 +00001260 /// setAttributes - Set the parameter attributes for this call.
1261 ///
Devang Patel05988662008-09-25 21:00:45 +00001262 void setAttributes(const AttrListPtr &Attrs) { AttributeList = Attrs; }
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001263
Devang Patel05988662008-09-25 21:00:45 +00001264 /// addAttribute - adds the attribute to the list of attributes.
1265 void addAttribute(unsigned i, Attributes attr);
Duncan Sandsdc024672007-11-27 13:23:08 +00001266
Devang Patel05988662008-09-25 21:00:45 +00001267 /// removeAttribute - removes the attribute from the list of attributes.
1268 void removeAttribute(unsigned i, Attributes attr);
Duncan Sands2e033f32008-07-08 08:38:44 +00001269
Duncan Sandsafa3b6d2007-11-28 17:07:01 +00001270 /// @brief Determine whether the call or the callee has the given attribute.
Dan Gohmanf2752502008-09-26 21:38:45 +00001271 bool paramHasAttr(unsigned i, Attributes attr) const;
Duncan Sandsafa3b6d2007-11-28 17:07:01 +00001272
Dale Johannesen08e78b12008-02-22 17:49:45 +00001273 /// @brief Extract the alignment for a call or parameter (0=unknown).
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001274 unsigned getParamAlignment(unsigned i) const {
Devang Patel05988662008-09-25 21:00:45 +00001275 return AttributeList.getParamAlignment(i);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001276 }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00001277
Eric Christopherf27e6082010-03-25 04:49:10 +00001278 /// @brief Return true if the call should not be inlined.
1279 bool isNoInline() const { return paramHasAttr(~0, Attribute::NoInline); }
Nick Lewyckyb9933b82010-07-06 03:53:22 +00001280 void setIsNoInline(bool Value = true) {
Eric Christopherf27e6082010-03-25 04:49:10 +00001281 if (Value) addAttribute(~0, Attribute::NoInline);
1282 else removeAttribute(~0, Attribute::NoInline);
1283 }
Dale Johannesen08e78b12008-02-22 17:49:45 +00001284
Rafael Espindola11f1a832011-10-05 20:05:13 +00001285 /// @brief Return true if the call can return twice
1286 bool canReturnTwice() const {
1287 return paramHasAttr(~0, Attribute::ReturnsTwice);
1288 }
1289 void setCanReturnTwice(bool Value = true) {
1290 if (Value) addAttribute(~0, Attribute::ReturnsTwice);
1291 else removeAttribute(~0, Attribute::ReturnsTwice);
1292 }
1293
Duncan Sandsa3355ff2007-12-03 20:06:50 +00001294 /// @brief Determine if the call does not access memory.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001295 bool doesNotAccessMemory() const {
Devang Patel19c87462008-09-26 22:53:05 +00001296 return paramHasAttr(~0, Attribute::ReadNone);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001297 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001298 void setDoesNotAccessMemory(bool NotAccessMemory = true) {
Devang Patel19c87462008-09-26 22:53:05 +00001299 if (NotAccessMemory) addAttribute(~0, Attribute::ReadNone);
1300 else removeAttribute(~0, Attribute::ReadNone);
Duncan Sands2e033f32008-07-08 08:38:44 +00001301 }
1302
Duncan Sandsa3355ff2007-12-03 20:06:50 +00001303 /// @brief Determine if the call does not access or only reads memory.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001304 bool onlyReadsMemory() const {
Devang Patel19c87462008-09-26 22:53:05 +00001305 return doesNotAccessMemory() || paramHasAttr(~0, Attribute::ReadOnly);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001306 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001307 void setOnlyReadsMemory(bool OnlyReadsMemory = true) {
Devang Patel19c87462008-09-26 22:53:05 +00001308 if (OnlyReadsMemory) addAttribute(~0, Attribute::ReadOnly);
1309 else removeAttribute(~0, Attribute::ReadOnly | Attribute::ReadNone);
Duncan Sands2e033f32008-07-08 08:38:44 +00001310 }
1311
Duncan Sandscbb8bad2007-12-10 19:09:40 +00001312 /// @brief Determine if the call cannot return.
Nick Lewyckyb9933b82010-07-06 03:53:22 +00001313 bool doesNotReturn() const { return paramHasAttr(~0, Attribute::NoReturn); }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001314 void setDoesNotReturn(bool DoesNotReturn = true) {
Devang Patel19c87462008-09-26 22:53:05 +00001315 if (DoesNotReturn) addAttribute(~0, Attribute::NoReturn);
1316 else removeAttribute(~0, Attribute::NoReturn);
Duncan Sands2e033f32008-07-08 08:38:44 +00001317 }
Duncan Sandscbb8bad2007-12-10 19:09:40 +00001318
Duncan Sandsa3355ff2007-12-03 20:06:50 +00001319 /// @brief Determine if the call cannot unwind.
Nick Lewyckyb9933b82010-07-06 03:53:22 +00001320 bool doesNotThrow() const { return paramHasAttr(~0, Attribute::NoUnwind); }
Evan Cheng1bf9a182008-07-24 00:08:56 +00001321 void setDoesNotThrow(bool DoesNotThrow = true) {
Devang Patel19c87462008-09-26 22:53:05 +00001322 if (DoesNotThrow) addAttribute(~0, Attribute::NoUnwind);
1323 else removeAttribute(~0, Attribute::NoUnwind);
Duncan Sands2e033f32008-07-08 08:38:44 +00001324 }
Duncan Sandsa3355ff2007-12-03 20:06:50 +00001325
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001326 /// @brief Determine if the call returns a structure through first
Devang Patel41e23972008-03-03 21:46:28 +00001327 /// pointer argument.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001328 bool hasStructRetAttr() const {
1329 // Be friendly and also check the callee.
Devang Patel05988662008-09-25 21:00:45 +00001330 return paramHasAttr(1, Attribute::StructRet);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001331 }
Reid Spencer4746ecf2007-04-09 15:01:12 +00001332
Evan Chengf4a54982008-01-12 18:57:32 +00001333 /// @brief Determine if any call argument is an aggregate passed by value.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001334 bool hasByValArgument() const {
Devang Patel05988662008-09-25 21:00:45 +00001335 return AttributeList.hasAttrSomewhere(Attribute::ByVal);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00001336 }
Evan Chengf4a54982008-01-12 18:57:32 +00001337
Dan Gohmanf2752502008-09-26 21:38:45 +00001338 /// getCalledFunction - Return the function called, or null if this is an
1339 /// indirect function invocation.
1340 ///
Chris Lattner721aef62004-11-18 17:46:57 +00001341 Function *getCalledFunction() const {
Gabor Greifa6aac4c2010-07-16 09:38:02 +00001342 return dyn_cast<Function>(Op<-1>());
Chris Lattner721aef62004-11-18 17:46:57 +00001343 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001344
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001345 /// getCalledValue - Get a pointer to the function that is invoked by this
Chris Lattner14d80382009-10-18 05:08:07 +00001346 /// instruction.
Gabor Greifa6aac4c2010-07-16 09:38:02 +00001347 const Value *getCalledValue() const { return Op<-1>(); }
1348 Value *getCalledValue() { return Op<-1>(); }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001349
Chris Lattner14d80382009-10-18 05:08:07 +00001350 /// setCalledFunction - Set the function called.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00001351 void setCalledFunction(Value* Fn) {
Gabor Greifa6aac4c2010-07-16 09:38:02 +00001352 Op<-1>() = Fn;
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00001353 }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00001354
Owen Anderson6f615f82010-08-07 00:19:59 +00001355 /// isInlineAsm - Check if this call is an inline asm statement.
1356 bool isInlineAsm() const {
1357 return isa<InlineAsm>(Op<-1>());
1358 }
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00001359
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001360 // Methods for support type inquiry through isa, cast, and dyn_cast:
1361 static inline bool classof(const CallInst *) { return true; }
1362 static inline bool classof(const Instruction *I) {
Misha Brukman9769ab22005-04-21 20:19:05 +00001363 return I->getOpcode() == Instruction::Call;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001364 }
1365 static inline bool classof(const Value *V) {
1366 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1367 }
Chris Lattnercafe9bb2009-12-29 02:14:09 +00001368private:
Chris Lattnerb2406d92009-12-29 02:46:09 +00001369 // Shadow Instruction::setInstructionSubclassData with a private forwarding
1370 // method so that subclasses cannot accidentally use it.
1371 void setInstructionSubclassData(unsigned short D) {
1372 Instruction::setInstructionSubclassData(D);
Chris Lattnercafe9bb2009-12-29 02:14:09 +00001373 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001374};
1375
Gabor Greifefe65362008-05-10 08:32:32 +00001376template <>
Jay Foad67c619b2011-01-11 15:07:38 +00001377struct OperandTraits<CallInst> : public VariadicOperandTraits<CallInst, 1> {
Gabor Greifefe65362008-05-10 08:32:32 +00001378};
1379
Jay Foada3efbb12011-07-15 08:37:34 +00001380CallInst::CallInst(Value *Func, ArrayRef<Value *> Args,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001381 const Twine &NameStr, BasicBlock *InsertAtEnd)
Gabor Greifefe65362008-05-10 08:32:32 +00001382 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
1383 ->getElementType())->getReturnType(),
1384 Instruction::Call,
Jay Foada3efbb12011-07-15 08:37:34 +00001385 OperandTraits<CallInst>::op_end(this) - (Args.size() + 1),
1386 unsigned(Args.size() + 1), InsertAtEnd) {
1387 init(Func, Args, NameStr);
Gabor Greifefe65362008-05-10 08:32:32 +00001388}
1389
Jay Foada3efbb12011-07-15 08:37:34 +00001390CallInst::CallInst(Value *Func, ArrayRef<Value *> Args,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001391 const Twine &NameStr, Instruction *InsertBefore)
Gabor Greifefe65362008-05-10 08:32:32 +00001392 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
1393 ->getElementType())->getReturnType(),
1394 Instruction::Call,
Jay Foada3efbb12011-07-15 08:37:34 +00001395 OperandTraits<CallInst>::op_end(this) - (Args.size() + 1),
1396 unsigned(Args.size() + 1), InsertBefore) {
1397 init(Func, Args, NameStr);
Gabor Greifefe65362008-05-10 08:32:32 +00001398}
1399
Gabor Greife9e12152010-07-06 15:44:11 +00001400
1401// Note: if you get compile errors about private methods then
1402// please update your code to use the high-level operand
1403// interfaces. See line 943 above.
Gabor Greifefe65362008-05-10 08:32:32 +00001404DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CallInst, Value)
1405
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001406//===----------------------------------------------------------------------===//
1407// SelectInst Class
1408//===----------------------------------------------------------------------===//
1409
1410/// SelectInst - This class represents the LLVM 'select' instruction.
1411///
1412class SelectInst : public Instruction {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001413 void init(Value *C, Value *S1, Value *S2) {
Chris Lattnerb76ec322008-12-29 00:12:50 +00001414 assert(!areInvalidOperands(C, S1, S2) && "Invalid operands for select");
Gabor Greifefe65362008-05-10 08:32:32 +00001415 Op<0>() = C;
1416 Op<1>() = S1;
1417 Op<2>() = S2;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001418 }
1419
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001420 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
Gabor Greifefe65362008-05-10 08:32:32 +00001421 Instruction *InsertBefore)
1422 : Instruction(S1->getType(), Instruction::Select,
1423 &Op<0>(), 3, InsertBefore) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001424 init(C, S1, S2);
Evan Cheng1bf9a182008-07-24 00:08:56 +00001425 setName(NameStr);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001426 }
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001427 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001428 BasicBlock *InsertAtEnd)
Gabor Greifefe65362008-05-10 08:32:32 +00001429 : Instruction(S1->getType(), Instruction::Select,
1430 &Op<0>(), 3, InsertAtEnd) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001431 init(C, S1, S2);
Evan Cheng1bf9a182008-07-24 00:08:56 +00001432 setName(NameStr);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001433 }
Devang Patel50b6e332009-10-27 22:16:29 +00001434protected:
1435 virtual SelectInst *clone_impl() const;
Gabor Greif051a9502008-04-06 20:25:17 +00001436public:
Evan Chengd69bb1a2008-05-05 17:41:03 +00001437 static SelectInst *Create(Value *C, Value *S1, Value *S2,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001438 const Twine &NameStr = "",
Evan Chengd69bb1a2008-05-05 17:41:03 +00001439 Instruction *InsertBefore = 0) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001440 return new(3) SelectInst(C, S1, S2, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00001441 }
Evan Chengd69bb1a2008-05-05 17:41:03 +00001442 static SelectInst *Create(Value *C, Value *S1, Value *S2,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001443 const Twine &NameStr,
Evan Cheng1bf9a182008-07-24 00:08:56 +00001444 BasicBlock *InsertAtEnd) {
1445 return new(3) SelectInst(C, S1, S2, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001446 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001447
Chris Lattner97159122009-09-08 03:32:53 +00001448 const Value *getCondition() const { return Op<0>(); }
1449 const Value *getTrueValue() const { return Op<1>(); }
1450 const Value *getFalseValue() const { return Op<2>(); }
1451 Value *getCondition() { return Op<0>(); }
1452 Value *getTrueValue() { return Op<1>(); }
1453 Value *getFalseValue() { return Op<2>(); }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00001454
Chris Lattnerb76ec322008-12-29 00:12:50 +00001455 /// areInvalidOperands - Return a string if the specified operands are invalid
1456 /// for a select operation, otherwise return null.
1457 static const char *areInvalidOperands(Value *Cond, Value *True, Value *False);
Chris Lattner454928e2005-01-29 00:31:36 +00001458
1459 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +00001460 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001461
1462 OtherOps getOpcode() const {
1463 return static_cast<OtherOps>(Instruction::getOpcode());
1464 }
1465
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001466 // Methods for support type inquiry through isa, cast, and dyn_cast:
1467 static inline bool classof(const SelectInst *) { return true; }
1468 static inline bool classof(const Instruction *I) {
1469 return I->getOpcode() == Instruction::Select;
1470 }
1471 static inline bool classof(const Value *V) {
1472 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1473 }
1474};
1475
Gabor Greifefe65362008-05-10 08:32:32 +00001476template <>
Jay Foad67c619b2011-01-11 15:07:38 +00001477struct OperandTraits<SelectInst> : public FixedNumOperandTraits<SelectInst, 3> {
Gabor Greifefe65362008-05-10 08:32:32 +00001478};
1479
1480DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SelectInst, Value)
1481
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001482//===----------------------------------------------------------------------===//
1483// VAArgInst Class
1484//===----------------------------------------------------------------------===//
1485
1486/// VAArgInst - This class represents the va_arg llvm instruction, which returns
Andrew Lenharthf5428212005-06-18 18:31:30 +00001487/// an argument of the specified type given a va_list and increments that list
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001488///
Chris Lattner454928e2005-01-29 00:31:36 +00001489class VAArgInst : public UnaryInstruction {
Devang Patel50b6e332009-10-27 22:16:29 +00001490protected:
1491 virtual VAArgInst *clone_impl() const;
1492
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001493public:
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001494 VAArgInst(Value *List, Type *Ty, const Twine &NameStr = "",
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001495 Instruction *InsertBefore = 0)
Chris Lattner910c80a2007-02-24 00:55:48 +00001496 : UnaryInstruction(Ty, VAArg, List, InsertBefore) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001497 setName(NameStr);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001498 }
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001499 VAArgInst(Value *List, Type *Ty, const Twine &NameStr,
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001500 BasicBlock *InsertAtEnd)
Chris Lattner910c80a2007-02-24 00:55:48 +00001501 : UnaryInstruction(Ty, VAArg, List, InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001502 setName(NameStr);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001503 }
1504
Dan Gohmane7445412010-09-09 18:32:40 +00001505 Value *getPointerOperand() { return getOperand(0); }
1506 const Value *getPointerOperand() const { return getOperand(0); }
1507 static unsigned getPointerOperandIndex() { return 0U; }
1508
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001509 // Methods for support type inquiry through isa, cast, and dyn_cast:
1510 static inline bool classof(const VAArgInst *) { return true; }
1511 static inline bool classof(const Instruction *I) {
1512 return I->getOpcode() == VAArg;
1513 }
1514 static inline bool classof(const Value *V) {
1515 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1516 }
1517};
1518
1519//===----------------------------------------------------------------------===//
Robert Bocchino49b78a52006-01-10 19:04:13 +00001520// ExtractElementInst Class
1521//===----------------------------------------------------------------------===//
1522
1523/// ExtractElementInst - This instruction extracts a single (scalar)
Reid Spencer9d6565a2007-02-15 02:26:10 +00001524/// element from a VectorType value
Robert Bocchino49b78a52006-01-10 19:04:13 +00001525///
1526class ExtractElementInst : public Instruction {
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001527 ExtractElementInst(Value *Vec, Value *Idx, const Twine &NameStr = "",
Chris Lattner9fc18d22006-04-08 01:15:18 +00001528 Instruction *InsertBefore = 0);
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001529 ExtractElementInst(Value *Vec, Value *Idx, const Twine &NameStr,
Chris Lattner9fc18d22006-04-08 01:15:18 +00001530 BasicBlock *InsertAtEnd);
Devang Patel50b6e332009-10-27 22:16:29 +00001531protected:
1532 virtual ExtractElementInst *clone_impl() const;
1533
Eric Christophera3500da2009-07-25 02:28:41 +00001534public:
Eric Christophera3500da2009-07-25 02:28:41 +00001535 static ExtractElementInst *Create(Value *Vec, Value *Idx,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001536 const Twine &NameStr = "",
Eric Christophera3500da2009-07-25 02:28:41 +00001537 Instruction *InsertBefore = 0) {
1538 return new(2) ExtractElementInst(Vec, Idx, NameStr, InsertBefore);
1539 }
1540 static ExtractElementInst *Create(Value *Vec, Value *Idx,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001541 const Twine &NameStr,
Eric Christophera3500da2009-07-25 02:28:41 +00001542 BasicBlock *InsertAtEnd) {
1543 return new(2) ExtractElementInst(Vec, Idx, NameStr, InsertAtEnd);
1544 }
Robert Bocchino49b78a52006-01-10 19:04:13 +00001545
Chris Lattnerfa495842006-04-08 04:04:54 +00001546 /// isValidOperands - Return true if an extractelement instruction can be
1547 /// formed with the specified operands.
1548 static bool isValidOperands(const Value *Vec, const Value *Idx);
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001549
Chris Lattner97159122009-09-08 03:32:53 +00001550 Value *getVectorOperand() { return Op<0>(); }
1551 Value *getIndexOperand() { return Op<1>(); }
1552 const Value *getVectorOperand() const { return Op<0>(); }
1553 const Value *getIndexOperand() const { return Op<1>(); }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00001554
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001555 VectorType *getVectorOperandType() const {
1556 return reinterpret_cast<VectorType*>(getVectorOperand()->getType());
Chris Lattner97159122009-09-08 03:32:53 +00001557 }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00001558
1559
Robert Bocchino49b78a52006-01-10 19:04:13 +00001560 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +00001561 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Robert Bocchino49b78a52006-01-10 19:04:13 +00001562
1563 // Methods for support type inquiry through isa, cast, and dyn_cast:
1564 static inline bool classof(const ExtractElementInst *) { return true; }
1565 static inline bool classof(const Instruction *I) {
1566 return I->getOpcode() == Instruction::ExtractElement;
1567 }
1568 static inline bool classof(const Value *V) {
1569 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1570 }
1571};
1572
Gabor Greifefe65362008-05-10 08:32:32 +00001573template <>
Jay Foad67c619b2011-01-11 15:07:38 +00001574struct OperandTraits<ExtractElementInst> :
1575 public FixedNumOperandTraits<ExtractElementInst, 2> {
Gabor Greifefe65362008-05-10 08:32:32 +00001576};
1577
1578DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractElementInst, Value)
1579
Robert Bocchino49b78a52006-01-10 19:04:13 +00001580//===----------------------------------------------------------------------===//
Robert Bocchinof9993442006-01-17 20:05:59 +00001581// InsertElementInst Class
1582//===----------------------------------------------------------------------===//
1583
1584/// InsertElementInst - This instruction inserts a single (scalar)
Reid Spencer9d6565a2007-02-15 02:26:10 +00001585/// element into a VectorType value
Robert Bocchinof9993442006-01-17 20:05:59 +00001586///
1587class InsertElementInst : public Instruction {
Gabor Greif051a9502008-04-06 20:25:17 +00001588 InsertElementInst(Value *Vec, Value *NewElt, Value *Idx,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001589 const Twine &NameStr = "",
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001590 Instruction *InsertBefore = 0);
Gabor Greif051a9502008-04-06 20:25:17 +00001591 InsertElementInst(Value *Vec, Value *NewElt, Value *Idx,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001592 const Twine &NameStr, BasicBlock *InsertAtEnd);
Devang Patel50b6e332009-10-27 22:16:29 +00001593protected:
1594 virtual InsertElementInst *clone_impl() const;
1595
Robert Bocchinof9993442006-01-17 20:05:59 +00001596public:
Gabor Greif051a9502008-04-06 20:25:17 +00001597 static InsertElementInst *Create(Value *Vec, Value *NewElt, Value *Idx,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001598 const Twine &NameStr = "",
Gabor Greifefe65362008-05-10 08:32:32 +00001599 Instruction *InsertBefore = 0) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001600 return new(3) InsertElementInst(Vec, NewElt, Idx, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00001601 }
Gabor Greif051a9502008-04-06 20:25:17 +00001602 static InsertElementInst *Create(Value *Vec, Value *NewElt, Value *Idx,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001603 const Twine &NameStr,
Evan Chengd69bb1a2008-05-05 17:41:03 +00001604 BasicBlock *InsertAtEnd) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001605 return new(3) InsertElementInst(Vec, NewElt, Idx, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00001606 }
Robert Bocchinof9993442006-01-17 20:05:59 +00001607
Chris Lattnerfa495842006-04-08 04:04:54 +00001608 /// isValidOperands - Return true if an insertelement instruction can be
1609 /// formed with the specified operands.
1610 static bool isValidOperands(const Value *Vec, const Value *NewElt,
1611 const Value *Idx);
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001612
Reid Spencerac9dcb92007-02-15 03:39:18 +00001613 /// getType - Overload to return most specific vector type.
Chris Lattner6a56ed42006-04-14 22:20:07 +00001614 ///
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001615 VectorType *getType() const {
1616 return reinterpret_cast<VectorType*>(Instruction::getType());
Chris Lattner6a56ed42006-04-14 22:20:07 +00001617 }
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001618
Robert Bocchinof9993442006-01-17 20:05:59 +00001619 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +00001620 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Robert Bocchinof9993442006-01-17 20:05:59 +00001621
1622 // Methods for support type inquiry through isa, cast, and dyn_cast:
1623 static inline bool classof(const InsertElementInst *) { return true; }
1624 static inline bool classof(const Instruction *I) {
1625 return I->getOpcode() == Instruction::InsertElement;
1626 }
1627 static inline bool classof(const Value *V) {
1628 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1629 }
1630};
1631
Gabor Greifefe65362008-05-10 08:32:32 +00001632template <>
Jay Foad67c619b2011-01-11 15:07:38 +00001633struct OperandTraits<InsertElementInst> :
1634 public FixedNumOperandTraits<InsertElementInst, 3> {
Gabor Greifefe65362008-05-10 08:32:32 +00001635};
1636
1637DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertElementInst, Value)
1638
Robert Bocchinof9993442006-01-17 20:05:59 +00001639//===----------------------------------------------------------------------===//
Chris Lattner9fc18d22006-04-08 01:15:18 +00001640// ShuffleVectorInst Class
1641//===----------------------------------------------------------------------===//
1642
1643/// ShuffleVectorInst - This instruction constructs a fixed permutation of two
1644/// input vectors.
1645///
1646class ShuffleVectorInst : public Instruction {
Devang Patel50b6e332009-10-27 22:16:29 +00001647protected:
1648 virtual ShuffleVectorInst *clone_impl() const;
1649
Chris Lattner9fc18d22006-04-08 01:15:18 +00001650public:
Gabor Greif051a9502008-04-06 20:25:17 +00001651 // allocate space for exactly three operands
1652 void *operator new(size_t s) {
1653 return User::operator new(s, 3);
1654 }
Chris Lattner9fc18d22006-04-08 01:15:18 +00001655 ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001656 const Twine &NameStr = "",
Evan Cheng1bf9a182008-07-24 00:08:56 +00001657 Instruction *InsertBefor = 0);
Chris Lattner9fc18d22006-04-08 01:15:18 +00001658 ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001659 const Twine &NameStr, BasicBlock *InsertAtEnd);
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001660
Chris Lattnerfa495842006-04-08 04:04:54 +00001661 /// isValidOperands - Return true if a shufflevector instruction can be
Chris Lattner9fc18d22006-04-08 01:15:18 +00001662 /// formed with the specified operands.
1663 static bool isValidOperands(const Value *V1, const Value *V2,
1664 const Value *Mask);
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001665
Reid Spencerac9dcb92007-02-15 03:39:18 +00001666 /// getType - Overload to return most specific vector type.
Chris Lattner6a56ed42006-04-14 22:20:07 +00001667 ///
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001668 VectorType *getType() const {
1669 return reinterpret_cast<VectorType*>(Instruction::getType());
Chris Lattner6a56ed42006-04-14 22:20:07 +00001670 }
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001671
Chris Lattner9fc18d22006-04-08 01:15:18 +00001672 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +00001673 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001674
Chris Lattner83694a92012-01-25 23:49:49 +00001675 Constant *getMask() const {
1676 return reinterpret_cast<Constant*>(getOperand(2));
1677 }
1678
Chris Lattner8728f192008-03-02 05:28:33 +00001679 /// getMaskValue - Return the index from the shuffle mask for the specified
1680 /// output result. This is either -1 if the element is undef or a number less
1681 /// than 2*numelements.
Chris Lattner56243b82012-01-26 02:51:13 +00001682 static int getMaskValue(Constant *Mask, unsigned i);
1683
1684 int getMaskValue(unsigned i) const {
1685 return getMaskValue(getMask(), i);
1686 }
Chris Lattner83694a92012-01-25 23:49:49 +00001687
1688 /// getShuffleMask - Return the full mask for this instruction, where each
1689 /// element is the element number and undef's are returned as -1.
Chris Lattner56243b82012-01-26 02:51:13 +00001690 static void getShuffleMask(Constant *Mask, SmallVectorImpl<int> &Result);
1691
1692 void getShuffleMask(SmallVectorImpl<int> &Result) const {
1693 return getShuffleMask(getMask(), Result);
1694 }
Chris Lattner83694a92012-01-25 23:49:49 +00001695
1696 SmallVector<int, 16> getShuffleMask() const {
1697 SmallVector<int, 16> Mask;
1698 getShuffleMask(Mask);
1699 return Mask;
1700 }
1701
Chris Lattnerf56a8db2006-10-03 17:09:12 +00001702
Chris Lattner9fc18d22006-04-08 01:15:18 +00001703 // Methods for support type inquiry through isa, cast, and dyn_cast:
1704 static inline bool classof(const ShuffleVectorInst *) { return true; }
1705 static inline bool classof(const Instruction *I) {
1706 return I->getOpcode() == Instruction::ShuffleVector;
1707 }
1708 static inline bool classof(const Value *V) {
1709 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1710 }
1711};
1712
Gabor Greifefe65362008-05-10 08:32:32 +00001713template <>
Jay Foad67c619b2011-01-11 15:07:38 +00001714struct OperandTraits<ShuffleVectorInst> :
1715 public FixedNumOperandTraits<ShuffleVectorInst, 3> {
Gabor Greifefe65362008-05-10 08:32:32 +00001716};
1717
1718DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ShuffleVectorInst, Value)
Chris Lattner9fc18d22006-04-08 01:15:18 +00001719
1720//===----------------------------------------------------------------------===//
Dan Gohman041e2eb2008-05-15 19:50:34 +00001721// ExtractValueInst Class
1722//===----------------------------------------------------------------------===//
1723
Dan Gohmane2d896f2008-05-15 23:35:32 +00001724/// ExtractValueInst - This instruction extracts a struct member or array
1725/// element value from an aggregate value.
Dan Gohman041e2eb2008-05-15 19:50:34 +00001726///
Gabor Greifd4f268b2008-06-06 20:28:12 +00001727class ExtractValueInst : public UnaryInstruction {
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001728 SmallVector<unsigned, 4> Indices;
1729
Dan Gohman041e2eb2008-05-15 19:50:34 +00001730 ExtractValueInst(const ExtractValueInst &EVI);
Jay Foadfc6d3a42011-07-13 10:26:04 +00001731 void init(ArrayRef<unsigned> Idxs, const Twine &NameStr);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001732
Dan Gohmane2d896f2008-05-15 23:35:32 +00001733 /// Constructors - Create a extractvalue instruction with a base aggregate
1734 /// value and a list of indices. The first ctor can optionally insert before
1735 /// an existing instruction, the second appends the new instruction to the
1736 /// specified BasicBlock.
Mikhail Glushenkovd33b77b2010-10-27 07:39:54 +00001737 inline ExtractValueInst(Value *Agg,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001738 ArrayRef<unsigned> Idxs,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001739 const Twine &NameStr,
Dan Gohman041e2eb2008-05-15 19:50:34 +00001740 Instruction *InsertBefore);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001741 inline ExtractValueInst(Value *Agg,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001742 ArrayRef<unsigned> Idxs,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001743 const Twine &NameStr, BasicBlock *InsertAtEnd);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001744
Dan Gohman8e640412008-05-31 19:09:47 +00001745 // allocate space for exactly one operand
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001746 void *operator new(size_t s) {
1747 return User::operator new(s, 1);
1748 }
Devang Patel50b6e332009-10-27 22:16:29 +00001749protected:
1750 virtual ExtractValueInst *clone_impl() const;
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001751
Gabor Greifd4f268b2008-06-06 20:28:12 +00001752public:
Mikhail Glushenkovd33b77b2010-10-27 07:39:54 +00001753 static ExtractValueInst *Create(Value *Agg,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001754 ArrayRef<unsigned> Idxs,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001755 const Twine &NameStr = "",
Dan Gohman041e2eb2008-05-15 19:50:34 +00001756 Instruction *InsertBefore = 0) {
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001757 return new
Jay Foadfc6d3a42011-07-13 10:26:04 +00001758 ExtractValueInst(Agg, Idxs, NameStr, InsertBefore);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001759 }
Dan Gohman041e2eb2008-05-15 19:50:34 +00001760 static ExtractValueInst *Create(Value *Agg,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001761 ArrayRef<unsigned> Idxs,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001762 const Twine &NameStr,
Dan Gohman041e2eb2008-05-15 19:50:34 +00001763 BasicBlock *InsertAtEnd) {
Jay Foadfc6d3a42011-07-13 10:26:04 +00001764 return new ExtractValueInst(Agg, Idxs, NameStr, InsertAtEnd);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001765 }
1766
Dan Gohman041e2eb2008-05-15 19:50:34 +00001767 /// getIndexedType - Returns the type of the element that would be extracted
1768 /// with an extractvalue instruction with the specified parameters.
1769 ///
Frits van Bommelaf72c622010-12-03 14:54:33 +00001770 /// Null is returned if the indices are invalid for the specified type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001771 static Type *getIndexedType(Type *Agg, ArrayRef<unsigned> Idxs);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001772
Owen Anderson5678d6e2008-06-19 17:15:57 +00001773 typedef const unsigned* idx_iterator;
1774 inline idx_iterator idx_begin() const { return Indices.begin(); }
1775 inline idx_iterator idx_end() const { return Indices.end(); }
Dan Gohman041e2eb2008-05-15 19:50:34 +00001776
1777 Value *getAggregateOperand() {
1778 return getOperand(0);
1779 }
1780 const Value *getAggregateOperand() const {
1781 return getOperand(0);
1782 }
1783 static unsigned getAggregateOperandIndex() {
1784 return 0U; // get index for modifying correct operand
1785 }
1786
Jay Foadfc6d3a42011-07-13 10:26:04 +00001787 ArrayRef<unsigned> getIndices() const {
1788 return Indices;
1789 }
1790
1791 unsigned getNumIndices() const {
Bill Wendling67944fc2008-06-05 07:35:27 +00001792 return (unsigned)Indices.size();
Dan Gohman041e2eb2008-05-15 19:50:34 +00001793 }
1794
1795 bool hasIndices() const {
Dan Gohman35651cd2008-05-31 19:09:08 +00001796 return true;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001797 }
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001798
Dan Gohman041e2eb2008-05-15 19:50:34 +00001799 // Methods for support type inquiry through isa, cast, and dyn_cast:
1800 static inline bool classof(const ExtractValueInst *) { return true; }
1801 static inline bool classof(const Instruction *I) {
1802 return I->getOpcode() == Instruction::ExtractValue;
1803 }
1804 static inline bool classof(const Value *V) {
1805 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1806 }
1807};
1808
Dan Gohmane4569942008-05-23 00:36:11 +00001809ExtractValueInst::ExtractValueInst(Value *Agg,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001810 ArrayRef<unsigned> Idxs,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001811 const Twine &NameStr,
Dan Gohmane4569942008-05-23 00:36:11 +00001812 Instruction *InsertBefore)
Jay Foadfc6d3a42011-07-13 10:26:04 +00001813 : UnaryInstruction(checkGEPType(getIndexedType(Agg->getType(), Idxs)),
Bill Wendling85f40542008-07-22 07:14:12 +00001814 ExtractValue, Agg, InsertBefore) {
Jay Foadfc6d3a42011-07-13 10:26:04 +00001815 init(Idxs, NameStr);
Dan Gohmane4569942008-05-23 00:36:11 +00001816}
Dan Gohmane4569942008-05-23 00:36:11 +00001817ExtractValueInst::ExtractValueInst(Value *Agg,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001818 ArrayRef<unsigned> Idxs,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001819 const Twine &NameStr,
Dan Gohmane4569942008-05-23 00:36:11 +00001820 BasicBlock *InsertAtEnd)
Jay Foadfc6d3a42011-07-13 10:26:04 +00001821 : UnaryInstruction(checkGEPType(getIndexedType(Agg->getType(), Idxs)),
Bill Wendling85f40542008-07-22 07:14:12 +00001822 ExtractValue, Agg, InsertAtEnd) {
Jay Foadfc6d3a42011-07-13 10:26:04 +00001823 init(Idxs, NameStr);
Dan Gohmane4569942008-05-23 00:36:11 +00001824}
1825
Dan Gohmane4569942008-05-23 00:36:11 +00001826
Dan Gohman041e2eb2008-05-15 19:50:34 +00001827//===----------------------------------------------------------------------===//
1828// InsertValueInst Class
1829//===----------------------------------------------------------------------===//
1830
Dan Gohmane2d896f2008-05-15 23:35:32 +00001831/// InsertValueInst - This instruction inserts a struct field of array element
1832/// value into an aggregate value.
Dan Gohman041e2eb2008-05-15 19:50:34 +00001833///
1834class InsertValueInst : public Instruction {
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001835 SmallVector<unsigned, 4> Indices;
1836
1837 void *operator new(size_t, unsigned); // Do not implement
Dan Gohman041e2eb2008-05-15 19:50:34 +00001838 InsertValueInst(const InsertValueInst &IVI);
Jay Foadfc6d3a42011-07-13 10:26:04 +00001839 void init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001840 const Twine &NameStr);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001841
Dan Gohmane2d896f2008-05-15 23:35:32 +00001842 /// Constructors - Create a insertvalue instruction with a base aggregate
1843 /// value, a value to insert, and a list of indices. The first ctor can
1844 /// optionally insert before an existing instruction, the second appends
1845 /// the new instruction to the specified BasicBlock.
Mikhail Glushenkovd33b77b2010-10-27 07:39:54 +00001846 inline InsertValueInst(Value *Agg, Value *Val,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001847 ArrayRef<unsigned> Idxs,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001848 const Twine &NameStr,
Dan Gohmane2d896f2008-05-15 23:35:32 +00001849 Instruction *InsertBefore);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001850 inline InsertValueInst(Value *Agg, Value *Val,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001851 ArrayRef<unsigned> Idxs,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001852 const Twine &NameStr, BasicBlock *InsertAtEnd);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001853
1854 /// Constructors - These two constructors are convenience methods because one
1855 /// and two index insertvalue instructions are so common.
1856 InsertValueInst(Value *Agg, Value *Val,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001857 unsigned Idx, const Twine &NameStr = "",
Dan Gohman041e2eb2008-05-15 19:50:34 +00001858 Instruction *InsertBefore = 0);
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001859 InsertValueInst(Value *Agg, Value *Val, unsigned Idx,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001860 const Twine &NameStr, BasicBlock *InsertAtEnd);
Devang Patel50b6e332009-10-27 22:16:29 +00001861protected:
1862 virtual InsertValueInst *clone_impl() const;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001863public:
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001864 // allocate space for exactly two operands
1865 void *operator new(size_t s) {
1866 return User::operator new(s, 2);
1867 }
1868
Mikhail Glushenkovd33b77b2010-10-27 07:39:54 +00001869 static InsertValueInst *Create(Value *Agg, Value *Val,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001870 ArrayRef<unsigned> Idxs,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001871 const Twine &NameStr = "",
Dan Gohman041e2eb2008-05-15 19:50:34 +00001872 Instruction *InsertBefore = 0) {
Jay Foadfc6d3a42011-07-13 10:26:04 +00001873 return new InsertValueInst(Agg, Val, Idxs, NameStr, InsertBefore);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001874 }
Dan Gohman041e2eb2008-05-15 19:50:34 +00001875 static InsertValueInst *Create(Value *Agg, Value *Val,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001876 ArrayRef<unsigned> Idxs,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001877 const Twine &NameStr,
Dan Gohman041e2eb2008-05-15 19:50:34 +00001878 BasicBlock *InsertAtEnd) {
Jay Foadfc6d3a42011-07-13 10:26:04 +00001879 return new InsertValueInst(Agg, Val, Idxs, NameStr, InsertAtEnd);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001880 }
1881
Dan Gohman041e2eb2008-05-15 19:50:34 +00001882 /// Transparently provide more efficient getOperand methods.
1883 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
1884
Owen Anderson5678d6e2008-06-19 17:15:57 +00001885 typedef const unsigned* idx_iterator;
1886 inline idx_iterator idx_begin() const { return Indices.begin(); }
1887 inline idx_iterator idx_end() const { return Indices.end(); }
Dan Gohman041e2eb2008-05-15 19:50:34 +00001888
1889 Value *getAggregateOperand() {
1890 return getOperand(0);
1891 }
1892 const Value *getAggregateOperand() const {
1893 return getOperand(0);
1894 }
1895 static unsigned getAggregateOperandIndex() {
1896 return 0U; // get index for modifying correct operand
1897 }
1898
1899 Value *getInsertedValueOperand() {
1900 return getOperand(1);
1901 }
1902 const Value *getInsertedValueOperand() const {
1903 return getOperand(1);
1904 }
1905 static unsigned getInsertedValueOperandIndex() {
1906 return 1U; // get index for modifying correct operand
1907 }
1908
Jay Foadfc6d3a42011-07-13 10:26:04 +00001909 ArrayRef<unsigned> getIndices() const {
1910 return Indices;
1911 }
1912
1913 unsigned getNumIndices() const {
Bill Wendling67944fc2008-06-05 07:35:27 +00001914 return (unsigned)Indices.size();
Dan Gohman041e2eb2008-05-15 19:50:34 +00001915 }
1916
1917 bool hasIndices() const {
Dan Gohman35651cd2008-05-31 19:09:08 +00001918 return true;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001919 }
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00001920
Dan Gohman041e2eb2008-05-15 19:50:34 +00001921 // Methods for support type inquiry through isa, cast, and dyn_cast:
1922 static inline bool classof(const InsertValueInst *) { return true; }
1923 static inline bool classof(const Instruction *I) {
1924 return I->getOpcode() == Instruction::InsertValue;
1925 }
1926 static inline bool classof(const Value *V) {
1927 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1928 }
1929};
1930
1931template <>
Jay Foad67c619b2011-01-11 15:07:38 +00001932struct OperandTraits<InsertValueInst> :
1933 public FixedNumOperandTraits<InsertValueInst, 2> {
Dan Gohman041e2eb2008-05-15 19:50:34 +00001934};
1935
Dan Gohmane4569942008-05-23 00:36:11 +00001936InsertValueInst::InsertValueInst(Value *Agg,
1937 Value *Val,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001938 ArrayRef<unsigned> Idxs,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001939 const Twine &NameStr,
Dan Gohmane4569942008-05-23 00:36:11 +00001940 Instruction *InsertBefore)
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001941 : Instruction(Agg->getType(), InsertValue,
1942 OperandTraits<InsertValueInst>::op_begin(this),
1943 2, InsertBefore) {
Jay Foadfc6d3a42011-07-13 10:26:04 +00001944 init(Agg, Val, Idxs, NameStr);
Dan Gohmane4569942008-05-23 00:36:11 +00001945}
Dan Gohmane4569942008-05-23 00:36:11 +00001946InsertValueInst::InsertValueInst(Value *Agg,
1947 Value *Val,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001948 ArrayRef<unsigned> Idxs,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001949 const Twine &NameStr,
Dan Gohmane4569942008-05-23 00:36:11 +00001950 BasicBlock *InsertAtEnd)
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001951 : Instruction(Agg->getType(), InsertValue,
1952 OperandTraits<InsertValueInst>::op_begin(this),
1953 2, InsertAtEnd) {
Jay Foadfc6d3a42011-07-13 10:26:04 +00001954 init(Agg, Val, Idxs, NameStr);
Dan Gohmane4569942008-05-23 00:36:11 +00001955}
1956
Dan Gohman041e2eb2008-05-15 19:50:34 +00001957DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertValueInst, Value)
1958
1959//===----------------------------------------------------------------------===//
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001960// PHINode Class
1961//===----------------------------------------------------------------------===//
1962
1963// PHINode - The PHINode class is used to represent the magical mystical PHI
1964// node, that can not exist in nature, but can be synthesized in a computer
1965// scientist's overactive imagination.
1966//
1967class PHINode : public Instruction {
Gabor Greif051a9502008-04-06 20:25:17 +00001968 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Chris Lattner454928e2005-01-29 00:31:36 +00001969 /// ReservedSpace - The number of operands actually allocated. NumOperands is
1970 /// the number actually in use.
1971 unsigned ReservedSpace;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001972 PHINode(const PHINode &PN);
Gabor Greif051a9502008-04-06 20:25:17 +00001973 // allocate space for exactly zero operands
1974 void *operator new(size_t s) {
1975 return User::operator new(s, 0);
1976 }
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001977 explicit PHINode(Type *Ty, unsigned NumReservedValues,
Jay Foad3ecfc862011-03-30 11:28:46 +00001978 const Twine &NameStr = "", Instruction *InsertBefore = 0)
Chris Lattner910c80a2007-02-24 00:55:48 +00001979 : Instruction(Ty, Instruction::PHI, 0, 0, InsertBefore),
Jay Foad95c3e482011-06-23 09:09:15 +00001980 ReservedSpace(NumReservedValues) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001981 setName(NameStr);
Jay Foad3ecfc862011-03-30 11:28:46 +00001982 OperandList = allocHungoffUses(ReservedSpace);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001983 }
1984
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001985 PHINode(Type *Ty, unsigned NumReservedValues, const Twine &NameStr,
Jay Foad3ecfc862011-03-30 11:28:46 +00001986 BasicBlock *InsertAtEnd)
Chris Lattner910c80a2007-02-24 00:55:48 +00001987 : Instruction(Ty, Instruction::PHI, 0, 0, InsertAtEnd),
Jay Foad95c3e482011-06-23 09:09:15 +00001988 ReservedSpace(NumReservedValues) {
Evan Cheng1bf9a182008-07-24 00:08:56 +00001989 setName(NameStr);
Jay Foad3ecfc862011-03-30 11:28:46 +00001990 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattner454928e2005-01-29 00:31:36 +00001991 }
Devang Patel50b6e332009-10-27 22:16:29 +00001992protected:
Jay Foad95c3e482011-06-23 09:09:15 +00001993 // allocHungoffUses - this is more complicated than the generic
1994 // User::allocHungoffUses, because we have to allocate Uses for the incoming
1995 // values and pointers to the incoming blocks, all in one allocation.
1996 Use *allocHungoffUses(unsigned) const;
1997
Devang Patel50b6e332009-10-27 22:16:29 +00001998 virtual PHINode *clone_impl() const;
Gabor Greif051a9502008-04-06 20:25:17 +00001999public:
Jay Foad44991762011-03-30 13:29:06 +00002000 /// Constructors - NumReservedValues is a hint for the number of incoming
2001 /// edges that this phi node will have (use 0 if you really have no idea).
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002002 static PHINode *Create(Type *Ty, unsigned NumReservedValues,
Jay Foad3ecfc862011-03-30 11:28:46 +00002003 const Twine &NameStr = "",
Gabor Greif051a9502008-04-06 20:25:17 +00002004 Instruction *InsertBefore = 0) {
Jay Foad3ecfc862011-03-30 11:28:46 +00002005 return new PHINode(Ty, NumReservedValues, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00002006 }
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002007 static PHINode *Create(Type *Ty, unsigned NumReservedValues,
Jay Foad3ecfc862011-03-30 11:28:46 +00002008 const Twine &NameStr, BasicBlock *InsertAtEnd) {
2009 return new PHINode(Ty, NumReservedValues, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00002010 }
Gordon Henriksenafba8fe2007-12-10 02:14:30 +00002011 ~PHINode();
2012
Gabor Greifefe65362008-05-10 08:32:32 +00002013 /// Provide fast operand accessors
2014 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
2015
Jay Foad95c3e482011-06-23 09:09:15 +00002016 // Block iterator interface. This provides access to the list of incoming
2017 // basic blocks, which parallels the list of incoming values.
2018
2019 typedef BasicBlock **block_iterator;
2020 typedef BasicBlock * const *const_block_iterator;
2021
2022 block_iterator block_begin() {
2023 Use::UserRef *ref =
2024 reinterpret_cast<Use::UserRef*>(op_begin() + ReservedSpace);
2025 return reinterpret_cast<block_iterator>(ref + 1);
2026 }
2027
2028 const_block_iterator block_begin() const {
2029 const Use::UserRef *ref =
2030 reinterpret_cast<const Use::UserRef*>(op_begin() + ReservedSpace);
2031 return reinterpret_cast<const_block_iterator>(ref + 1);
2032 }
2033
2034 block_iterator block_end() {
2035 return block_begin() + getNumOperands();
2036 }
2037
2038 const_block_iterator block_end() const {
2039 return block_begin() + getNumOperands();
2040 }
2041
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002042 /// getNumIncomingValues - Return the number of incoming edges
2043 ///
Jay Foad95c3e482011-06-23 09:09:15 +00002044 unsigned getNumIncomingValues() const { return getNumOperands(); }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002045
Reid Spencerc773de62006-05-19 19:07:54 +00002046 /// getIncomingValue - Return incoming value number x
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002047 ///
2048 Value *getIncomingValue(unsigned i) const {
Jay Foad95c3e482011-06-23 09:09:15 +00002049 return getOperand(i);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002050 }
2051 void setIncomingValue(unsigned i, Value *V) {
Jay Foad95c3e482011-06-23 09:09:15 +00002052 setOperand(i, V);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002053 }
Dan Gohmanb45088c2009-03-23 15:48:29 +00002054 static unsigned getOperandNumForIncomingValue(unsigned i) {
Jay Foad95c3e482011-06-23 09:09:15 +00002055 return i;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002056 }
Dan Gohmanb45088c2009-03-23 15:48:29 +00002057 static unsigned getIncomingValueNumForOperand(unsigned i) {
Jay Foad95c3e482011-06-23 09:09:15 +00002058 return i;
Dan Gohmanb45088c2009-03-23 15:48:29 +00002059 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002060
Dan Gohmanfb76fe02010-02-22 04:10:52 +00002061 /// getIncomingBlock - Return incoming basic block number @p i.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002062 ///
Misha Brukman9769ab22005-04-21 20:19:05 +00002063 BasicBlock *getIncomingBlock(unsigned i) const {
Jay Foad95c3e482011-06-23 09:09:15 +00002064 return block_begin()[i];
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002065 }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00002066
Chris Lattnerceaa4572009-10-10 07:42:42 +00002067 /// getIncomingBlock - Return incoming basic block corresponding
2068 /// to an operand of the PHI.
2069 ///
2070 BasicBlock *getIncomingBlock(const Use &U) const {
2071 assert(this == U.getUser() && "Iterator doesn't point to PHI's Uses?");
Jay Foad95c3e482011-06-23 09:09:15 +00002072 return getIncomingBlock(unsigned(&U - op_begin()));
Chris Lattnerceaa4572009-10-10 07:42:42 +00002073 }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00002074
Chris Lattnerceaa4572009-10-10 07:42:42 +00002075 /// getIncomingBlock - Return incoming basic block corresponding
2076 /// to value use iterator.
2077 ///
2078 template <typename U>
2079 BasicBlock *getIncomingBlock(value_use_iterator<U> I) const {
2080 return getIncomingBlock(I.getUse());
2081 }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00002082
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002083 void setIncomingBlock(unsigned i, BasicBlock *BB) {
Jay Foad95c3e482011-06-23 09:09:15 +00002084 block_begin()[i] = BB;
Dan Gohmanb45088c2009-03-23 15:48:29 +00002085 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002086
2087 /// addIncoming - Add an incoming value to the end of the PHI list
2088 ///
2089 void addIncoming(Value *V, BasicBlock *BB) {
Anton Korobeynikov351b0d42008-02-27 22:37:28 +00002090 assert(V && "PHI node got a null value!");
2091 assert(BB && "PHI node got a null basic block!");
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002092 assert(getType() == V->getType() &&
2093 "All operands to PHI node must be the same type as the PHI node!");
Jay Foad95c3e482011-06-23 09:09:15 +00002094 if (NumOperands == ReservedSpace)
Jay Foad8891ed72011-04-01 08:00:58 +00002095 growOperands(); // Get more space!
Chris Lattner454928e2005-01-29 00:31:36 +00002096 // Initialize some new operands.
Jay Foad95c3e482011-06-23 09:09:15 +00002097 ++NumOperands;
2098 setIncomingValue(NumOperands - 1, V);
2099 setIncomingBlock(NumOperands - 1, BB);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002100 }
Misha Brukman9769ab22005-04-21 20:19:05 +00002101
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002102 /// removeIncomingValue - Remove an incoming value. This is useful if a
2103 /// predecessor basic block is deleted. The value removed is returned.
2104 ///
2105 /// If the last incoming value for a PHI node is removed (and DeletePHIIfEmpty
2106 /// is true), the PHI node is destroyed and any uses of it are replaced with
2107 /// dummy values. The only time there should be zero incoming values to a PHI
2108 /// node is when the block is dead, so this strategy is sound.
2109 ///
2110 Value *removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty = true);
2111
Gabor Greifefe65362008-05-10 08:32:32 +00002112 Value *removeIncomingValue(const BasicBlock *BB, bool DeletePHIIfEmpty=true) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002113 int Idx = getBasicBlockIndex(BB);
2114 assert(Idx >= 0 && "Invalid basic block argument to remove!");
2115 return removeIncomingValue(Idx, DeletePHIIfEmpty);
2116 }
2117
Misha Brukman9769ab22005-04-21 20:19:05 +00002118 /// getBasicBlockIndex - Return the first index of the specified basic
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002119 /// block in the value list for this PHI. Returns -1 if no instance.
2120 ///
2121 int getBasicBlockIndex(const BasicBlock *BB) const {
Jay Foad95c3e482011-06-23 09:09:15 +00002122 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
2123 if (block_begin()[i] == BB)
2124 return i;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002125 return -1;
2126 }
2127
2128 Value *getIncomingValueForBlock(const BasicBlock *BB) const {
Jay Foad95c3e482011-06-23 09:09:15 +00002129 int Idx = getBasicBlockIndex(BB);
2130 assert(Idx >= 0 && "Invalid basic block argument!");
2131 return getIncomingValue(Idx);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002132 }
2133
Chris Lattnerf56a8db2006-10-03 17:09:12 +00002134 /// hasConstantValue - If the specified PHI node always merges together the
Nate Begemana83ba0f2005-08-04 23:24:19 +00002135 /// same value, return the value, otherwise return null.
Duncan Sandsff103412010-11-17 04:30:22 +00002136 Value *hasConstantValue() const;
Chris Lattnerf56a8db2006-10-03 17:09:12 +00002137
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002138 /// Methods for support type inquiry through isa, cast, and dyn_cast:
2139 static inline bool classof(const PHINode *) { return true; }
2140 static inline bool classof(const Instruction *I) {
Misha Brukman9769ab22005-04-21 20:19:05 +00002141 return I->getOpcode() == Instruction::PHI;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002142 }
2143 static inline bool classof(const Value *V) {
2144 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2145 }
Chris Lattner454928e2005-01-29 00:31:36 +00002146 private:
Jay Foad8891ed72011-04-01 08:00:58 +00002147 void growOperands();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002148};
2149
Gabor Greifefe65362008-05-10 08:32:32 +00002150template <>
Duncan Sands59bf4fc2009-09-06 08:55:57 +00002151struct OperandTraits<PHINode> : public HungoffOperandTraits<2> {
Gabor Greifefe65362008-05-10 08:32:32 +00002152};
2153
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00002154DEFINE_TRANSPARENT_OPERAND_ACCESSORS(PHINode, Value)
Gabor Greifefe65362008-05-10 08:32:32 +00002155
Bill Wendlinge6e88262011-08-12 20:24:12 +00002156//===----------------------------------------------------------------------===//
2157// LandingPadInst Class
2158//===----------------------------------------------------------------------===//
2159
2160//===---------------------------------------------------------------------------
2161/// LandingPadInst - The landingpad instruction holds all of the information
2162/// necessary to generate correct exception handling. The landingpad instruction
2163/// cannot be moved from the top of a landing pad block, which itself is
2164/// accessible only from the 'unwind' edge of an invoke. This uses the
2165/// SubclassData field in Value to store whether or not the landingpad is a
2166/// cleanup.
2167///
2168class LandingPadInst : public Instruction {
2169 /// ReservedSpace - The number of operands actually allocated. NumOperands is
2170 /// the number actually in use.
2171 unsigned ReservedSpace;
2172 LandingPadInst(const LandingPadInst &LP);
2173public:
2174 enum ClauseType { Catch, Filter };
2175private:
2176 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
2177 // Allocate space for exactly zero operands.
2178 void *operator new(size_t s) {
2179 return User::operator new(s, 0);
2180 }
2181 void growOperands(unsigned Size);
2182 void init(Value *PersFn, unsigned NumReservedValues, const Twine &NameStr);
2183
2184 explicit LandingPadInst(Type *RetTy, Value *PersonalityFn,
2185 unsigned NumReservedValues, const Twine &NameStr,
2186 Instruction *InsertBefore);
2187 explicit LandingPadInst(Type *RetTy, Value *PersonalityFn,
2188 unsigned NumReservedValues, const Twine &NameStr,
2189 BasicBlock *InsertAtEnd);
2190protected:
2191 virtual LandingPadInst *clone_impl() const;
2192public:
2193 /// Constructors - NumReservedClauses is a hint for the number of incoming
2194 /// clauses that this landingpad will have (use 0 if you really have no idea).
2195 static LandingPadInst *Create(Type *RetTy, Value *PersonalityFn,
2196 unsigned NumReservedClauses,
2197 const Twine &NameStr = "",
2198 Instruction *InsertBefore = 0);
2199 static LandingPadInst *Create(Type *RetTy, Value *PersonalityFn,
2200 unsigned NumReservedClauses,
2201 const Twine &NameStr, BasicBlock *InsertAtEnd);
2202 ~LandingPadInst();
2203
2204 /// Provide fast operand accessors
2205 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
2206
2207 /// getPersonalityFn - Get the personality function associated with this
2208 /// landing pad.
2209 Value *getPersonalityFn() const { return getOperand(0); }
2210
2211 /// isCleanup - Return 'true' if this landingpad instruction is a
2212 /// cleanup. I.e., it should be run when unwinding even if its landing pad
2213 /// doesn't catch the exception.
2214 bool isCleanup() const { return getSubclassDataFromInstruction() & 1; }
2215
2216 /// setCleanup - Indicate that this landingpad instruction is a cleanup.
2217 void setCleanup(bool V) {
2218 setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
2219 (V ? 1 : 0));
2220 }
2221
2222 /// addClause - Add a catch or filter clause to the landing pad.
2223 void addClause(Value *ClauseVal);
2224
2225 /// getClause - Get the value of the clause at index Idx. Use isCatch/isFilter
2226 /// to determine what type of clause this is.
2227 Value *getClause(unsigned Idx) const { return OperandList[Idx + 1]; }
2228
2229 /// isCatch - Return 'true' if the clause and index Idx is a catch clause.
2230 bool isCatch(unsigned Idx) const {
2231 return !isa<ArrayType>(OperandList[Idx + 1]->getType());
2232 }
2233
2234 /// isFilter - Return 'true' if the clause and index Idx is a filter clause.
2235 bool isFilter(unsigned Idx) const {
2236 return isa<ArrayType>(OperandList[Idx + 1]->getType());
2237 }
2238
2239 /// getNumClauses - Get the number of clauses for this landing pad.
2240 unsigned getNumClauses() const { return getNumOperands() - 1; }
2241
2242 /// reserveClauses - Grow the size of the operand list to accomodate the new
2243 /// number of clauses.
2244 void reserveClauses(unsigned Size) { growOperands(Size); }
2245
2246 // Methods for support type inquiry through isa, cast, and dyn_cast:
2247 static inline bool classof(const LandingPadInst *) { return true; }
2248 static inline bool classof(const Instruction *I) {
2249 return I->getOpcode() == Instruction::LandingPad;
2250 }
2251 static inline bool classof(const Value *V) {
2252 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2253 }
2254};
2255
2256template <>
2257struct OperandTraits<LandingPadInst> : public HungoffOperandTraits<2> {
2258};
2259
2260DEFINE_TRANSPARENT_OPERAND_ACCESSORS(LandingPadInst, Value)
Gabor Greifefe65362008-05-10 08:32:32 +00002261
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002262//===----------------------------------------------------------------------===//
2263// ReturnInst Class
2264//===----------------------------------------------------------------------===//
2265
2266//===---------------------------------------------------------------------------
2267/// ReturnInst - Return a value (possibly void), from a function. Execution
2268/// does not continue in this function any longer.
2269///
2270class ReturnInst : public TerminatorInst {
Chris Lattner910c80a2007-02-24 00:55:48 +00002271 ReturnInst(const ReturnInst &RI);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002272
Gabor Greif051a9502008-04-06 20:25:17 +00002273private:
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002274 // ReturnInst constructors:
2275 // ReturnInst() - 'ret void' instruction
Alkis Evlogimenos859804f2004-11-17 21:02:25 +00002276 // ReturnInst( null) - 'ret void' instruction
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002277 // ReturnInst(Value* X) - 'ret X' instruction
Gabor Greifefe65362008-05-10 08:32:32 +00002278 // ReturnInst( null, Inst *I) - 'ret void' instruction, insert before I
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002279 // ReturnInst(Value* X, Inst *I) - 'ret X' instruction, insert before I
Gabor Greifefe65362008-05-10 08:32:32 +00002280 // ReturnInst( null, BB *B) - 'ret void' instruction, insert @ end of B
2281 // ReturnInst(Value* X, BB *B) - 'ret X' instruction, insert @ end of B
Alkis Evlogimenos859804f2004-11-17 21:02:25 +00002282 //
2283 // NOTE: If the Value* passed is of type void then the constructor behaves as
2284 // if it was passed NULL.
Owen Anderson1d0be152009-08-13 21:58:54 +00002285 explicit ReturnInst(LLVMContext &C, Value *retVal = 0,
2286 Instruction *InsertBefore = 0);
2287 ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd);
2288 explicit ReturnInst(LLVMContext &C, BasicBlock *InsertAtEnd);
Devang Patel50b6e332009-10-27 22:16:29 +00002289protected:
2290 virtual ReturnInst *clone_impl() const;
Gabor Greif051a9502008-04-06 20:25:17 +00002291public:
Owen Anderson1d0be152009-08-13 21:58:54 +00002292 static ReturnInst* Create(LLVMContext &C, Value *retVal = 0,
2293 Instruction *InsertBefore = 0) {
2294 return new(!!retVal) ReturnInst(C, retVal, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00002295 }
Owen Anderson1d0be152009-08-13 21:58:54 +00002296 static ReturnInst* Create(LLVMContext &C, Value *retVal,
2297 BasicBlock *InsertAtEnd) {
2298 return new(!!retVal) ReturnInst(C, retVal, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00002299 }
Owen Anderson1d0be152009-08-13 21:58:54 +00002300 static ReturnInst* Create(LLVMContext &C, BasicBlock *InsertAtEnd) {
2301 return new(0) ReturnInst(C, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00002302 }
Devang Patel57ef4f42008-02-23 00:35:18 +00002303 virtual ~ReturnInst();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002304
Gabor Greifefe65362008-05-10 08:32:32 +00002305 /// Provide fast operand accessors
2306 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Devang Patel64d4e612008-02-26 17:56:20 +00002307
Dan Gohman8faa6af2010-10-06 16:59:24 +00002308 /// Convenience accessor. Returns null if there is no return value.
2309 Value *getReturnValue() const {
2310 return getNumOperands() != 0 ? getOperand(0) : 0;
Devang Patel1eafa062008-03-11 17:35:03 +00002311 }
2312
Chris Lattner454928e2005-01-29 00:31:36 +00002313 unsigned getNumSuccessors() const { return 0; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002314
2315 // Methods for support type inquiry through isa, cast, and dyn_cast:
2316 static inline bool classof(const ReturnInst *) { return true; }
2317 static inline bool classof(const Instruction *I) {
2318 return (I->getOpcode() == Instruction::Ret);
2319 }
2320 static inline bool classof(const Value *V) {
2321 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2322 }
Chris Lattner454928e2005-01-29 00:31:36 +00002323 private:
2324 virtual BasicBlock *getSuccessorV(unsigned idx) const;
2325 virtual unsigned getNumSuccessorsV() const;
2326 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002327};
2328
Gabor Greifefe65362008-05-10 08:32:32 +00002329template <>
Jay Foad67c619b2011-01-11 15:07:38 +00002330struct OperandTraits<ReturnInst> : public VariadicOperandTraits<ReturnInst> {
Gabor Greifefe65362008-05-10 08:32:32 +00002331};
2332
2333DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ReturnInst, Value)
Gabor Greifefe65362008-05-10 08:32:32 +00002334
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002335//===----------------------------------------------------------------------===//
2336// BranchInst Class
2337//===----------------------------------------------------------------------===//
2338
2339//===---------------------------------------------------------------------------
2340/// BranchInst - Conditional or Unconditional Branch instruction.
2341///
2342class BranchInst : public TerminatorInst {
Chris Lattner454928e2005-01-29 00:31:36 +00002343 /// Ops list - Branches are strange. The operands are ordered:
Gabor Greifae5a20a2009-03-12 18:34:49 +00002344 /// [Cond, FalseDest,] TrueDest. This makes some accessors faster because
2345 /// they don't have to check for cond/uncond branchness. These are mostly
2346 /// accessed relative from op_end().
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002347 BranchInst(const BranchInst &BI);
Chris Lattner454928e2005-01-29 00:31:36 +00002348 void AssertOK();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002349 // BranchInst constructors (where {B, T, F} are blocks, and C is a condition):
2350 // BranchInst(BB *B) - 'br B'
2351 // BranchInst(BB* T, BB *F, Value *C) - 'br C, T, F'
2352 // BranchInst(BB* B, Inst *I) - 'br B' insert before I
2353 // BranchInst(BB* T, BB *F, Value *C, Inst *I) - 'br C, T, F', insert before I
2354 // BranchInst(BB* B, BB *I) - 'br B' insert at end
2355 // BranchInst(BB* T, BB *F, Value *C, BB *I) - 'br C, T, F', insert at end
Chris Lattner910c80a2007-02-24 00:55:48 +00002356 explicit BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore = 0);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002357 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
Chris Lattner910c80a2007-02-24 00:55:48 +00002358 Instruction *InsertBefore = 0);
2359 BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002360 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
Chris Lattner910c80a2007-02-24 00:55:48 +00002361 BasicBlock *InsertAtEnd);
Devang Patel50b6e332009-10-27 22:16:29 +00002362protected:
2363 virtual BranchInst *clone_impl() const;
Gabor Greif051a9502008-04-06 20:25:17 +00002364public:
2365 static BranchInst *Create(BasicBlock *IfTrue, Instruction *InsertBefore = 0) {
Jay Foad8e3914d2011-01-07 20:29:02 +00002366 return new(1) BranchInst(IfTrue, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00002367 }
Gabor Greifefe65362008-05-10 08:32:32 +00002368 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
2369 Value *Cond, Instruction *InsertBefore = 0) {
Gabor Greif051a9502008-04-06 20:25:17 +00002370 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertBefore);
2371 }
2372 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) {
Jay Foad8e3914d2011-01-07 20:29:02 +00002373 return new(1) BranchInst(IfTrue, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00002374 }
Gabor Greifefe65362008-05-10 08:32:32 +00002375 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
2376 Value *Cond, BasicBlock *InsertAtEnd) {
Gabor Greif051a9502008-04-06 20:25:17 +00002377 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertAtEnd);
2378 }
Chris Lattner454928e2005-01-29 00:31:36 +00002379
2380 /// Transparently provide more efficient getOperand methods.
Gabor Greifefe65362008-05-10 08:32:32 +00002381 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002382
Devang Patel4d4a5e02008-02-23 01:11:02 +00002383 bool isUnconditional() const { return getNumOperands() == 1; }
2384 bool isConditional() const { return getNumOperands() == 3; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002385
Devang Patel4d4a5e02008-02-23 01:11:02 +00002386 Value *getCondition() const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002387 assert(isConditional() && "Cannot get condition of an uncond branch!");
Gabor Greifae5a20a2009-03-12 18:34:49 +00002388 return Op<-3>();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002389 }
2390
2391 void setCondition(Value *V) {
2392 assert(isConditional() && "Cannot set condition of unconditional branch!");
Gabor Greifae5a20a2009-03-12 18:34:49 +00002393 Op<-3>() = V;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002394 }
2395
Chris Lattner454928e2005-01-29 00:31:36 +00002396 unsigned getNumSuccessors() const { return 1+isConditional(); }
2397
2398 BasicBlock *getSuccessor(unsigned i) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002399 assert(i < getNumSuccessors() && "Successor # out of range for Branch!");
Gabor Greifae5a20a2009-03-12 18:34:49 +00002400 return cast_or_null<BasicBlock>((&Op<-1>() - i)->get());
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002401 }
2402
Chris Lattner454928e2005-01-29 00:31:36 +00002403 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002404 assert(idx < getNumSuccessors() && "Successor # out of range for Branch!");
Chris Lattner4b122932009-10-27 16:49:53 +00002405 *(&Op<-1>() - idx) = (Value*)NewSucc;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002406 }
2407
Chandler Carruth602650c2011-10-17 01:11:57 +00002408 /// \brief Swap the successors of this branch instruction.
2409 ///
2410 /// Swaps the successors of the branch instruction. This also swaps any
2411 /// branch weight metadata associated with the instruction so that it
2412 /// continues to map correctly to each operand.
2413 void swapSuccessors();
2414
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002415 // Methods for support type inquiry through isa, cast, and dyn_cast:
2416 static inline bool classof(const BranchInst *) { return true; }
2417 static inline bool classof(const Instruction *I) {
2418 return (I->getOpcode() == Instruction::Br);
2419 }
2420 static inline bool classof(const Value *V) {
2421 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2422 }
Chris Lattner454928e2005-01-29 00:31:36 +00002423private:
2424 virtual BasicBlock *getSuccessorV(unsigned idx) const;
2425 virtual unsigned getNumSuccessorsV() const;
2426 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002427};
2428
Gabor Greifefe65362008-05-10 08:32:32 +00002429template <>
Jay Foad67c619b2011-01-11 15:07:38 +00002430struct OperandTraits<BranchInst> : public VariadicOperandTraits<BranchInst, 1> {
2431};
Gabor Greifefe65362008-05-10 08:32:32 +00002432
2433DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BranchInst, Value)
2434
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002435//===----------------------------------------------------------------------===//
2436// SwitchInst Class
2437//===----------------------------------------------------------------------===//
2438
2439//===---------------------------------------------------------------------------
2440/// SwitchInst - Multiway switch
2441///
2442class SwitchInst : public TerminatorInst {
Gabor Greifefe65362008-05-10 08:32:32 +00002443 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Chris Lattner454928e2005-01-29 00:31:36 +00002444 unsigned ReservedSpace;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002445 // Operand[0] = Value to switch on
2446 // Operand[1] = Default basic block destination
2447 // Operand[2n ] = Value to match
2448 // Operand[2n+1] = BasicBlock to go to on match
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002449 SwitchInst(const SwitchInst &SI);
Chris Lattneraa6e3502010-11-17 05:41:46 +00002450 void init(Value *Value, BasicBlock *Default, unsigned NumReserved);
Jay Foad8891ed72011-04-01 08:00:58 +00002451 void growOperands();
Gabor Greifefe65362008-05-10 08:32:32 +00002452 // allocate space for exactly zero operands
2453 void *operator new(size_t s) {
2454 return User::operator new(s, 0);
2455 }
Chris Lattner454928e2005-01-29 00:31:36 +00002456 /// SwitchInst ctor - Create a new switch instruction, specifying a value to
2457 /// switch on and a default destination. The number of additional cases can
2458 /// be specified here to make memory allocation more efficient. This
2459 /// constructor can also autoinsert before another instruction.
2460 SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002461 Instruction *InsertBefore);
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00002462
Chris Lattner454928e2005-01-29 00:31:36 +00002463 /// SwitchInst ctor - Create a new switch instruction, specifying a value to
2464 /// switch on and a default destination. The number of additional cases can
2465 /// be specified here to make memory allocation more efficient. This
2466 /// constructor also autoinserts at the end of the specified BasicBlock.
2467 SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
Chris Lattner910c80a2007-02-24 00:55:48 +00002468 BasicBlock *InsertAtEnd);
Devang Patel50b6e332009-10-27 22:16:29 +00002469protected:
2470 virtual SwitchInst *clone_impl() const;
Gabor Greif051a9502008-04-06 20:25:17 +00002471public:
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002472
Aaron Ballmana13fb622012-03-10 23:03:01 +00002473 // -2
2474 static const unsigned DefaultPseudoIndex = static_cast<unsigned>(~0L-1);
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002475
2476 template <class SwitchInstTy, class ConstantIntTy, class BasicBlockTy>
2477 class CaseIteratorT {
2478 protected:
2479
2480 SwitchInstTy *SI;
2481 unsigned Index;
2482
2483 public:
2484
2485 typedef CaseIteratorT<SwitchInstTy, ConstantIntTy, BasicBlockTy> Self;
2486
2487 /// Initializes case iterator for given SwitchInst and for given
2488 /// case number.
2489 CaseIteratorT(SwitchInstTy *SI, unsigned CaseNum) {
2490 this->SI = SI;
2491 Index = CaseNum;
2492 }
2493
2494 /// Initializes case iterator for given SwitchInst and for given
2495 /// TerminatorInst's successor index.
2496 static Self fromSuccessorIndex(SwitchInstTy *SI, unsigned SuccessorIndex) {
2497 assert(SuccessorIndex < SI->getNumSuccessors() &&
2498 "Successor index # out of range!");
2499 return SuccessorIndex != 0 ?
2500 Self(SI, SuccessorIndex - 1) :
2501 Self(SI, DefaultPseudoIndex);
2502 }
2503
2504 /// Resolves case value for current case.
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002505 /// @Deprecated
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002506 ConstantIntTy *getCaseValue() {
2507 assert(Index < SI->getNumCases() && "Index out the number of cases.");
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002508 ConstantRangesSet CRS =
2509 reinterpret_cast<Constant*>(SI->getOperand(2 + Index*2));
2510 ConstantRangesSet::Range R = CRS.getItem(0);
2511 return R.Low;
2512 }
2513
2514 /// Resolves case value for current case.
2515 ConstantRangesSet getCaseValueEx() {
2516 assert(Index < SI->getNumCases() && "Index out the number of cases.");
2517 return reinterpret_cast<Constant*>(SI->getOperand(2 + Index*2));
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002518 }
2519
2520 /// Resolves successor for current case.
2521 BasicBlockTy *getCaseSuccessor() {
David Blaikie6bb52122012-04-09 16:29:35 +00002522 assert((Index < SI->getNumCases() ||
2523 Index == DefaultPseudoIndex) &&
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002524 "Index out the number of cases.");
2525 return SI->getSuccessor(getSuccessorIndex());
2526 }
2527
2528 /// Returns number of current case.
2529 unsigned getCaseIndex() const { return Index; }
2530
2531 /// Returns TerminatorInst's successor index for current case successor.
2532 unsigned getSuccessorIndex() const {
2533 assert((Index == DefaultPseudoIndex || Index < SI->getNumCases()) &&
2534 "Index out the number of cases.");
2535 return Index != DefaultPseudoIndex ? Index + 1 : 0;
2536 }
2537
2538 Self operator++() {
2539 // Check index correctness after increment.
2540 // Note: Index == getNumCases() means end().
2541 assert(Index+1 <= SI->getNumCases() && "Index out the number of cases.");
2542 ++Index;
2543 return *this;
2544 }
2545 Self operator++(int) {
2546 Self tmp = *this;
2547 ++(*this);
2548 return tmp;
2549 }
2550 Self operator--() {
2551 // Check index correctness after decrement.
2552 // Note: Index == getNumCases() means end().
2553 // Also allow "-1" iterator here. That will became valid after ++.
2554 assert((Index == 0 || Index-1 <= SI->getNumCases()) &&
2555 "Index out the number of cases.");
2556 --Index;
2557 return *this;
2558 }
2559 Self operator--(int) {
2560 Self tmp = *this;
2561 --(*this);
2562 return tmp;
2563 }
2564 bool operator==(const Self& RHS) const {
2565 assert(RHS.SI == SI && "Incompatible operators.");
2566 return RHS.Index == Index;
2567 }
2568 bool operator!=(const Self& RHS) const {
2569 assert(RHS.SI == SI && "Incompatible operators.");
2570 return RHS.Index != Index;
2571 }
2572 };
2573
2574 typedef CaseIteratorT<const SwitchInst, const ConstantInt, const BasicBlock>
2575 ConstCaseIt;
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00002576
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002577 class CaseIt : public CaseIteratorT<SwitchInst, ConstantInt, BasicBlock> {
2578
2579 typedef CaseIteratorT<SwitchInst, ConstantInt, BasicBlock> ParentTy;
2580
2581 public:
2582
2583 CaseIt(const ParentTy& Src) : ParentTy(Src) {}
2584 CaseIt(SwitchInst *SI, unsigned CaseNum) : ParentTy(SI, CaseNum) {}
2585
2586 /// Sets the new value for current case.
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002587 /// @Deprecated.
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002588 void setValue(ConstantInt *V) {
2589 assert(Index < SI->getNumCases() && "Index out the number of cases.");
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002590 CRSBuilder CB;
2591 CB.add(V);
2592 SI->setOperand(2 + Index*2,
2593 reinterpret_cast<Value*>((Constant*)CB.getCase()));
2594 }
2595
2596 /// Sets the new value for current case.
2597 void setValueEx(ConstantRangesSet& V) {
2598 assert(Index < SI->getNumCases() && "Index out the number of cases.");
2599 SI->setOperand(2 + Index*2, reinterpret_cast<Value*>((Constant*)V));
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002600 }
2601
2602 /// Sets the new successor for current case.
2603 void setSuccessor(BasicBlock *S) {
2604 SI->setSuccessor(getSuccessorIndex(), S);
2605 }
2606 };
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00002607
Gabor Greifefe65362008-05-10 08:32:32 +00002608 static SwitchInst *Create(Value *Value, BasicBlock *Default,
2609 unsigned NumCases, Instruction *InsertBefore = 0) {
2610 return new SwitchInst(Value, Default, NumCases, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00002611 }
Gabor Greifefe65362008-05-10 08:32:32 +00002612 static SwitchInst *Create(Value *Value, BasicBlock *Default,
2613 unsigned NumCases, BasicBlock *InsertAtEnd) {
2614 return new SwitchInst(Value, Default, NumCases, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00002615 }
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002616
Gordon Henriksenafba8fe2007-12-10 02:14:30 +00002617 ~SwitchInst();
Chris Lattner454928e2005-01-29 00:31:36 +00002618
Gabor Greifefe65362008-05-10 08:32:32 +00002619 /// Provide fast operand accessors
2620 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
2621
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002622 // Accessor Methods for Switch stmt
Devang Patel4d4a5e02008-02-23 01:11:02 +00002623 Value *getCondition() const { return getOperand(0); }
Chris Lattner454928e2005-01-29 00:31:36 +00002624 void setCondition(Value *V) { setOperand(0, V); }
Chris Lattnerbfaf88a2004-12-10 20:35:47 +00002625
Devang Patel4d4a5e02008-02-23 01:11:02 +00002626 BasicBlock *getDefaultDest() const {
Chris Lattner454928e2005-01-29 00:31:36 +00002627 return cast<BasicBlock>(getOperand(1));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002628 }
2629
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00002630 void setDefaultDest(BasicBlock *DefaultCase) {
2631 setOperand(1, reinterpret_cast<Value*>(DefaultCase));
2632 }
2633
2634 /// getNumCases - return the number of 'cases' in this switch instruction,
2635 /// except the default case
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002636 unsigned getNumCases() const {
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00002637 return getNumOperands()/2 - 1;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002638 }
2639
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002640 /// Returns a read/write iterator that points to the first
2641 /// case in SwitchInst.
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002642 CaseIt case_begin() {
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002643 return CaseIt(this, 0);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002644 }
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002645 /// Returns a read-only iterator that points to the first
2646 /// case in the SwitchInst.
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002647 ConstCaseIt case_begin() const {
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002648 return ConstCaseIt(this, 0);
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00002649 }
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002650
2651 /// Returns a read/write iterator that points one past the last
2652 /// in the SwitchInst.
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002653 CaseIt case_end() {
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002654 return CaseIt(this, getNumCases());
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002655 }
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002656 /// Returns a read-only iterator that points one past the last
2657 /// in the SwitchInst.
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002658 ConstCaseIt case_end() const {
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002659 return ConstCaseIt(this, getNumCases());
2660 }
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002661 /// Returns an iterator that points to the default case.
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002662 /// Note: this iterator allows to resolve successor only. Attempt
2663 /// to resolve case value causes an assertion.
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002664 /// Also note, that increment and decrement also causes an assertion and
2665 /// makes iterator invalid.
2666 CaseIt case_default() {
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002667 return CaseIt(this, DefaultPseudoIndex);
2668 }
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002669 ConstCaseIt case_default() const {
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002670 return ConstCaseIt(this, DefaultPseudoIndex);
2671 }
2672
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002673 /// findCaseValue - Search all of the case values for the specified constant.
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002674 /// If it is explicitly handled, return the case iterator of it, otherwise
2675 /// return default case iterator to indicate
2676 /// that it is handled by the default handler.
2677 CaseIt findCaseValue(const ConstantInt *C) {
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002678 for (CaseIt i = case_begin(), e = case_end(); i != e; ++i)
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002679 if (i.getCaseValueEx().isSatisfies(C))
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002680 return i;
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002681 return case_default();
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00002682 }
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002683 ConstCaseIt findCaseValue(const ConstantInt *C) const {
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002684 for (ConstCaseIt i = case_begin(), e = case_end(); i != e; ++i)
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002685 if (i.getCaseValueEx().isSatisfies(C))
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002686 return i;
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002687 return case_default();
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002688 }
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00002689
Nick Lewycky011f1842006-09-18 19:03:59 +00002690 /// findCaseDest - Finds the unique case value for a given successor. Returns
2691 /// null if the successor is not found, not unique, or is the default case.
2692 ConstantInt *findCaseDest(BasicBlock *BB) {
Nick Lewyckyd7915442006-09-18 20:44:37 +00002693 if (BB == getDefaultDest()) return NULL;
2694
Nick Lewycky011f1842006-09-18 19:03:59 +00002695 ConstantInt *CI = NULL;
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00002696 for (CaseIt i = case_begin(), e = case_end(); i != e; ++i) {
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002697 if (i.getCaseSuccessor() == BB) {
Nick Lewycky011f1842006-09-18 19:03:59 +00002698 if (CI) return NULL; // Multiple cases lead to BB.
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002699 else CI = i.getCaseValue();
Nick Lewycky011f1842006-09-18 19:03:59 +00002700 }
2701 }
2702 return CI;
2703 }
2704
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002705 /// addCase - Add an entry to the switch instruction...
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002706 /// @Deprecated
Stepan Dyatkovskiyc347b6f2012-03-13 12:37:10 +00002707 /// Note:
2708 /// This action invalidates case_end(). Old case_end() iterator will
2709 /// point to the added case.
Chris Lattnerd1a32602005-02-24 05:32:09 +00002710 void addCase(ConstantInt *OnVal, BasicBlock *Dest);
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002711
2712 /// addCase - Add an entry to the switch instruction.
2713 /// Note:
2714 /// This action invalidates case_end(). Old case_end() iterator will
2715 /// point to the added case.
2716 void addCase(ConstantRangesSet& OnVal, BasicBlock *Dest);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002717
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00002718 /// removeCase - This method removes the specified case and its successor
2719 /// from the switch instruction. Note that this operation may reorder the
Jay Foad0faa6092011-02-01 09:22:34 +00002720 /// remaining cases at index idx and above.
Stepan Dyatkovskiyc347b6f2012-03-13 12:37:10 +00002721 /// Note:
2722 /// This action invalidates iterators for all cases following the one removed,
2723 /// including the case_end() iterator.
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00002724 void removeCase(CaseIt i);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002725
Chris Lattner454928e2005-01-29 00:31:36 +00002726 unsigned getNumSuccessors() const { return getNumOperands()/2; }
2727 BasicBlock *getSuccessor(unsigned idx) const {
2728 assert(idx < getNumSuccessors() &&"Successor idx out of range for switch!");
2729 return cast<BasicBlock>(getOperand(idx*2+1));
2730 }
2731 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002732 assert(idx < getNumSuccessors() && "Successor # out of range for switch!");
Chris Lattner4b122932009-10-27 16:49:53 +00002733 setOperand(idx*2+1, (Value*)NewSucc);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002734 }
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002735
Stepan Dyatkovskiy734dde82012-05-14 08:26:31 +00002736 uint16_t hash() const {
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002737 uint32_t NumberOfCases = (uint32_t)getNumCases();
2738 uint16_t Hash = (0xFFFF & NumberOfCases) ^ (NumberOfCases >> 16);
2739 for (ConstCaseIt i = case_begin(), e = case_end();
2740 i != e; ++i) {
2741 uint32_t NumItems = (uint32_t)i.getCaseValueEx().getNumItems();
2742 Hash = (Hash << 1) ^ (0xFFFF & NumItems) ^ (NumItems >> 16);
2743 }
2744 return Hash;
2745 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002746
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002747 // Methods for support type inquiry through isa, cast, and dyn_cast:
2748 static inline bool classof(const SwitchInst *) { return true; }
2749 static inline bool classof(const Instruction *I) {
Chris Lattnerd1a32602005-02-24 05:32:09 +00002750 return I->getOpcode() == Instruction::Switch;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002751 }
2752 static inline bool classof(const Value *V) {
2753 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2754 }
Chris Lattner454928e2005-01-29 00:31:36 +00002755private:
2756 virtual BasicBlock *getSuccessorV(unsigned idx) const;
2757 virtual unsigned getNumSuccessorsV() const;
2758 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002759};
2760
Gabor Greifefe65362008-05-10 08:32:32 +00002761template <>
Duncan Sands59bf4fc2009-09-06 08:55:57 +00002762struct OperandTraits<SwitchInst> : public HungoffOperandTraits<2> {
Gabor Greifefe65362008-05-10 08:32:32 +00002763};
2764
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00002765DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SwitchInst, Value)
Gabor Greifefe65362008-05-10 08:32:32 +00002766
2767
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002768//===----------------------------------------------------------------------===//
Chris Lattnerab21db72009-10-28 00:19:10 +00002769// IndirectBrInst Class
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002770//===----------------------------------------------------------------------===//
2771
2772//===---------------------------------------------------------------------------
Chris Lattnerab21db72009-10-28 00:19:10 +00002773/// IndirectBrInst - Indirect Branch Instruction.
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002774///
Chris Lattnerab21db72009-10-28 00:19:10 +00002775class IndirectBrInst : public TerminatorInst {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002776 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
2777 unsigned ReservedSpace;
2778 // Operand[0] = Value to switch on
2779 // Operand[1] = Default basic block destination
2780 // Operand[2n ] = Value to match
2781 // Operand[2n+1] = BasicBlock to go to on match
Chris Lattnerab21db72009-10-28 00:19:10 +00002782 IndirectBrInst(const IndirectBrInst &IBI);
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002783 void init(Value *Address, unsigned NumDests);
Jay Foad8891ed72011-04-01 08:00:58 +00002784 void growOperands();
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002785 // allocate space for exactly zero operands
2786 void *operator new(size_t s) {
2787 return User::operator new(s, 0);
2788 }
Chris Lattnerab21db72009-10-28 00:19:10 +00002789 /// IndirectBrInst ctor - Create a new indirectbr instruction, specifying an
2790 /// Address to jump to. The number of expected destinations can be specified
2791 /// here to make memory allocation more efficient. This constructor can also
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002792 /// autoinsert before another instruction.
Chris Lattnerab21db72009-10-28 00:19:10 +00002793 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore);
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00002794
Chris Lattnerab21db72009-10-28 00:19:10 +00002795 /// IndirectBrInst ctor - Create a new indirectbr instruction, specifying an
2796 /// Address to jump to. The number of expected destinations can be specified
2797 /// here to make memory allocation more efficient. This constructor also
2798 /// autoinserts at the end of the specified BasicBlock.
2799 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd);
Devang Patel50b6e332009-10-27 22:16:29 +00002800protected:
Chris Lattnerab21db72009-10-28 00:19:10 +00002801 virtual IndirectBrInst *clone_impl() const;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002802public:
Chris Lattnerab21db72009-10-28 00:19:10 +00002803 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
2804 Instruction *InsertBefore = 0) {
2805 return new IndirectBrInst(Address, NumDests, InsertBefore);
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002806 }
Chris Lattnerab21db72009-10-28 00:19:10 +00002807 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
2808 BasicBlock *InsertAtEnd) {
2809 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002810 }
Chris Lattnerab21db72009-10-28 00:19:10 +00002811 ~IndirectBrInst();
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00002812
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002813 /// Provide fast operand accessors.
2814 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00002815
Chris Lattnerab21db72009-10-28 00:19:10 +00002816 // Accessor Methods for IndirectBrInst instruction.
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002817 Value *getAddress() { return getOperand(0); }
2818 const Value *getAddress() const { return getOperand(0); }
2819 void setAddress(Value *V) { setOperand(0, V); }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00002820
2821
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002822 /// getNumDestinations - return the number of possible destinations in this
Chris Lattnerab21db72009-10-28 00:19:10 +00002823 /// indirectbr instruction.
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002824 unsigned getNumDestinations() const { return getNumOperands()-1; }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00002825
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002826 /// getDestination - Return the specified destination.
2827 BasicBlock *getDestination(unsigned i) { return getSuccessor(i); }
2828 const BasicBlock *getDestination(unsigned i) const { return getSuccessor(i); }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00002829
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002830 /// addDestination - Add a destination.
2831 ///
2832 void addDestination(BasicBlock *Dest);
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00002833
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002834 /// removeDestination - This method removes the specified successor from the
Chris Lattnerab21db72009-10-28 00:19:10 +00002835 /// indirectbr instruction.
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002836 void removeDestination(unsigned i);
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00002837
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002838 unsigned getNumSuccessors() const { return getNumOperands()-1; }
2839 BasicBlock *getSuccessor(unsigned i) const {
2840 return cast<BasicBlock>(getOperand(i+1));
2841 }
2842 void setSuccessor(unsigned i, BasicBlock *NewSucc) {
2843 setOperand(i+1, (Value*)NewSucc);
2844 }
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00002845
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002846 // Methods for support type inquiry through isa, cast, and dyn_cast:
Chris Lattnerab21db72009-10-28 00:19:10 +00002847 static inline bool classof(const IndirectBrInst *) { return true; }
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002848 static inline bool classof(const Instruction *I) {
Chris Lattnerab21db72009-10-28 00:19:10 +00002849 return I->getOpcode() == Instruction::IndirectBr;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002850 }
2851 static inline bool classof(const Value *V) {
2852 return isa<Instruction>(V) && classof(cast<Instruction>(V));
2853 }
2854private:
2855 virtual BasicBlock *getSuccessorV(unsigned idx) const;
2856 virtual unsigned getNumSuccessorsV() const;
2857 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
2858};
2859
2860template <>
Chris Lattnerab21db72009-10-28 00:19:10 +00002861struct OperandTraits<IndirectBrInst> : public HungoffOperandTraits<1> {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002862};
2863
Chris Lattnerab21db72009-10-28 00:19:10 +00002864DEFINE_TRANSPARENT_OPERAND_ACCESSORS(IndirectBrInst, Value)
Mikhail Glushenkov0da14f72010-10-27 07:39:48 +00002865
2866
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002867//===----------------------------------------------------------------------===//
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002868// InvokeInst Class
2869//===----------------------------------------------------------------------===//
2870
Chris Lattner3340ffe2005-05-06 20:26:26 +00002871/// InvokeInst - Invoke instruction. The SubclassData field is used to hold the
2872/// calling convention of the call.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002873///
2874class InvokeInst : public TerminatorInst {
Devang Patel05988662008-09-25 21:00:45 +00002875 AttrListPtr AttributeList;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00002876 InvokeInst(const InvokeInst &BI);
David Greenef1355a52007-08-27 19:04:21 +00002877 void init(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foada3efbb12011-07-15 08:37:34 +00002878 ArrayRef<Value *> Args, const Twine &NameStr);
David Greenef1355a52007-08-27 19:04:21 +00002879
David Greenef1355a52007-08-27 19:04:21 +00002880 /// Construct an InvokeInst given a range of arguments.
David Greenef1355a52007-08-27 19:04:21 +00002881 ///
2882 /// @brief Construct an InvokeInst from a range of arguments
Gabor Greifefe65362008-05-10 08:32:32 +00002883 inline InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foada3efbb12011-07-15 08:37:34 +00002884 ArrayRef<Value *> Args, unsigned Values,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002885 const Twine &NameStr, Instruction *InsertBefore);
David Greenef1355a52007-08-27 19:04:21 +00002886
2887 /// Construct an InvokeInst given a range of arguments.
David Greenef1355a52007-08-27 19:04:21 +00002888 ///
2889 /// @brief Construct an InvokeInst from a range of arguments
Gabor Greifefe65362008-05-10 08:32:32 +00002890 inline InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foada3efbb12011-07-15 08:37:34 +00002891 ArrayRef<Value *> Args, unsigned Values,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002892 const Twine &NameStr, BasicBlock *InsertAtEnd);
Devang Patel50b6e332009-10-27 22:16:29 +00002893protected:
2894 virtual InvokeInst *clone_impl() const;
Gabor Greif051a9502008-04-06 20:25:17 +00002895public:
Gabor Greifefe65362008-05-10 08:32:32 +00002896 static InvokeInst *Create(Value *Func,
2897 BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foada3efbb12011-07-15 08:37:34 +00002898 ArrayRef<Value *> Args, const Twine &NameStr = "",
Evan Chengd69bb1a2008-05-05 17:41:03 +00002899 Instruction *InsertBefore = 0) {
Jay Foada3efbb12011-07-15 08:37:34 +00002900 unsigned Values = unsigned(Args.size()) + 3;
2901 return new(Values) InvokeInst(Func, IfNormal, IfException, Args,
Evan Cheng1bf9a182008-07-24 00:08:56 +00002902 Values, NameStr, InsertBefore);
Gabor Greif051a9502008-04-06 20:25:17 +00002903 }
Gabor Greifefe65362008-05-10 08:32:32 +00002904 static InvokeInst *Create(Value *Func,
2905 BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foada3efbb12011-07-15 08:37:34 +00002906 ArrayRef<Value *> Args, const Twine &NameStr,
Evan Cheng1bf9a182008-07-24 00:08:56 +00002907 BasicBlock *InsertAtEnd) {
Jay Foada3efbb12011-07-15 08:37:34 +00002908 unsigned Values = unsigned(Args.size()) + 3;
2909 return new(Values) InvokeInst(Func, IfNormal, IfException, Args,
Evan Cheng1bf9a182008-07-24 00:08:56 +00002910 Values, NameStr, InsertAtEnd);
Gabor Greif051a9502008-04-06 20:25:17 +00002911 }
David Greenef1355a52007-08-27 19:04:21 +00002912
Gabor Greifefe65362008-05-10 08:32:32 +00002913 /// Provide fast operand accessors
2914 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00002915
Gabor Greif0114b992010-07-31 08:35:21 +00002916 /// getNumArgOperands - Return the number of invoke arguments.
2917 ///
Bill Wendling22a5b292010-06-07 19:05:06 +00002918 unsigned getNumArgOperands() const { return getNumOperands() - 3; }
Gabor Greif0114b992010-07-31 08:35:21 +00002919
2920 /// getArgOperand/setArgOperand - Return/set the i-th invoke argument.
2921 ///
Bill Wendling22a5b292010-06-07 19:05:06 +00002922 Value *getArgOperand(unsigned i) const { return getOperand(i); }
Gabor Greif710ac072010-06-28 12:23:36 +00002923 void setArgOperand(unsigned i, Value *v) { setOperand(i, v); }
Bill Wendling22a5b292010-06-07 19:05:06 +00002924
Chris Lattner3340ffe2005-05-06 20:26:26 +00002925 /// getCallingConv/setCallingConv - Get or set the calling convention of this
2926 /// function call.
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002927 CallingConv::ID getCallingConv() const {
Chris Lattnerb2406d92009-12-29 02:46:09 +00002928 return static_cast<CallingConv::ID>(getSubclassDataFromInstruction());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002929 }
2930 void setCallingConv(CallingConv::ID CC) {
Chris Lattnerb2406d92009-12-29 02:46:09 +00002931 setInstructionSubclassData(static_cast<unsigned>(CC));
Chris Lattner3340ffe2005-05-06 20:26:26 +00002932 }
2933
Devang Patel05988662008-09-25 21:00:45 +00002934 /// getAttributes - Return the parameter attributes for this invoke.
Chris Lattner58d74912008-03-12 17:45:29 +00002935 ///
Devang Patel05988662008-09-25 21:00:45 +00002936 const AttrListPtr &getAttributes() const { return AttributeList; }
Reid Spencerfa3e9122007-04-09 18:00:57 +00002937
Devang Patel05988662008-09-25 21:00:45 +00002938 /// setAttributes - Set the parameter attributes for this invoke.
Chris Lattner58d74912008-03-12 17:45:29 +00002939 ///
Devang Patel05988662008-09-25 21:00:45 +00002940 void setAttributes(const AttrListPtr &Attrs) { AttributeList = Attrs; }
Duncan Sandsdc024672007-11-27 13:23:08 +00002941
Devang Patel05988662008-09-25 21:00:45 +00002942 /// addAttribute - adds the attribute to the list of attributes.
2943 void addAttribute(unsigned i, Attributes attr);
Duncan Sandsafa3b6d2007-11-28 17:07:01 +00002944
Devang Patel05988662008-09-25 21:00:45 +00002945 /// removeAttribute - removes the attribute from the list of attributes.
2946 void removeAttribute(unsigned i, Attributes attr);
Duncan Sands2e033f32008-07-08 08:38:44 +00002947
Dan Gohmanf2752502008-09-26 21:38:45 +00002948 /// @brief Determine whether the call or the callee has the given attribute.
2949 bool paramHasAttr(unsigned i, Attributes attr) const;
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00002950
Dale Johannesen08e78b12008-02-22 17:49:45 +00002951 /// @brief Extract the alignment for a call or parameter (0=unknown).
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002952 unsigned getParamAlignment(unsigned i) const {
Devang Patel05988662008-09-25 21:00:45 +00002953 return AttributeList.getParamAlignment(i);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002954 }
Dale Johannesen08e78b12008-02-22 17:49:45 +00002955
Eric Christopherf27e6082010-03-25 04:49:10 +00002956 /// @brief Return true if the call should not be inlined.
2957 bool isNoInline() const { return paramHasAttr(~0, Attribute::NoInline); }
Nick Lewyckyb9933b82010-07-06 03:53:22 +00002958 void setIsNoInline(bool Value = true) {
Eric Christopherf27e6082010-03-25 04:49:10 +00002959 if (Value) addAttribute(~0, Attribute::NoInline);
2960 else removeAttribute(~0, Attribute::NoInline);
2961 }
Nick Lewyckyb9933b82010-07-06 03:53:22 +00002962
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002963 /// @brief Determine if the call does not access memory.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002964 bool doesNotAccessMemory() const {
Dan Gohmana62b5ed2009-07-17 16:12:36 +00002965 return paramHasAttr(~0, Attribute::ReadNone);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002966 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00002967 void setDoesNotAccessMemory(bool NotAccessMemory = true) {
Devang Patel19c87462008-09-26 22:53:05 +00002968 if (NotAccessMemory) addAttribute(~0, Attribute::ReadNone);
2969 else removeAttribute(~0, Attribute::ReadNone);
Duncan Sands2e033f32008-07-08 08:38:44 +00002970 }
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002971
2972 /// @brief Determine if the call does not access or only reads memory.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002973 bool onlyReadsMemory() const {
Devang Patel19c87462008-09-26 22:53:05 +00002974 return doesNotAccessMemory() || paramHasAttr(~0, Attribute::ReadOnly);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002975 }
Evan Cheng1bf9a182008-07-24 00:08:56 +00002976 void setOnlyReadsMemory(bool OnlyReadsMemory = true) {
Devang Patel19c87462008-09-26 22:53:05 +00002977 if (OnlyReadsMemory) addAttribute(~0, Attribute::ReadOnly);
2978 else removeAttribute(~0, Attribute::ReadOnly | Attribute::ReadNone);
Duncan Sands2e033f32008-07-08 08:38:44 +00002979 }
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002980
Duncan Sandscbb8bad2007-12-10 19:09:40 +00002981 /// @brief Determine if the call cannot return.
Nick Lewyckyb9933b82010-07-06 03:53:22 +00002982 bool doesNotReturn() const { return paramHasAttr(~0, Attribute::NoReturn); }
Evan Cheng1bf9a182008-07-24 00:08:56 +00002983 void setDoesNotReturn(bool DoesNotReturn = true) {
Devang Patel19c87462008-09-26 22:53:05 +00002984 if (DoesNotReturn) addAttribute(~0, Attribute::NoReturn);
2985 else removeAttribute(~0, Attribute::NoReturn);
Duncan Sands2e033f32008-07-08 08:38:44 +00002986 }
Duncan Sandscbb8bad2007-12-10 19:09:40 +00002987
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002988 /// @brief Determine if the call cannot unwind.
Nick Lewyckyb9933b82010-07-06 03:53:22 +00002989 bool doesNotThrow() const { return paramHasAttr(~0, Attribute::NoUnwind); }
Evan Cheng1bf9a182008-07-24 00:08:56 +00002990 void setDoesNotThrow(bool DoesNotThrow = true) {
Devang Patel19c87462008-09-26 22:53:05 +00002991 if (DoesNotThrow) addAttribute(~0, Attribute::NoUnwind);
2992 else removeAttribute(~0, Attribute::NoUnwind);
Duncan Sands2e033f32008-07-08 08:38:44 +00002993 }
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002994
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00002995 /// @brief Determine if the call returns a structure through first
Devang Patel41e23972008-03-03 21:46:28 +00002996 /// pointer argument.
Chris Lattnerd5d94df2008-03-13 05:00:21 +00002997 bool hasStructRetAttr() const {
2998 // Be friendly and also check the callee.
Devang Patel05988662008-09-25 21:00:45 +00002999 return paramHasAttr(1, Attribute::StructRet);
Chris Lattnerd5d94df2008-03-13 05:00:21 +00003000 }
Reid Spencerfa3e9122007-04-09 18:00:57 +00003001
Dan Gohmanf2752502008-09-26 21:38:45 +00003002 /// @brief Determine if any call argument is an aggregate passed by value.
3003 bool hasByValArgument() const {
3004 return AttributeList.hasAttrSomewhere(Attribute::ByVal);
3005 }
3006
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003007 /// getCalledFunction - Return the function called, or null if this is an
Chris Lattner721aef62004-11-18 17:46:57 +00003008 /// indirect function invocation.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003009 ///
Chris Lattner721aef62004-11-18 17:46:57 +00003010 Function *getCalledFunction() const {
Gabor Greifc9f75002010-03-24 13:21:49 +00003011 return dyn_cast<Function>(Op<-3>());
Chris Lattner721aef62004-11-18 17:46:57 +00003012 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003013
Mikhail Glushenkoved2c4532009-02-09 17:11:05 +00003014 /// getCalledValue - Get a pointer to the function that is invoked by this
Dan Gohmanf2752502008-09-26 21:38:45 +00003015 /// instruction
Gabor Greifc9f75002010-03-24 13:21:49 +00003016 const Value *getCalledValue() const { return Op<-3>(); }
3017 Value *getCalledValue() { return Op<-3>(); }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003018
Gabor Greif654c06f2010-03-20 21:00:25 +00003019 /// setCalledFunction - Set the function called.
3020 void setCalledFunction(Value* Fn) {
Gabor Greifc9f75002010-03-24 13:21:49 +00003021 Op<-3>() = Fn;
Gabor Greif654c06f2010-03-20 21:00:25 +00003022 }
3023
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003024 // get*Dest - Return the destination basic blocks...
Chris Lattner454928e2005-01-29 00:31:36 +00003025 BasicBlock *getNormalDest() const {
Gabor Greifc9f75002010-03-24 13:21:49 +00003026 return cast<BasicBlock>(Op<-2>());
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003027 }
Chris Lattner454928e2005-01-29 00:31:36 +00003028 BasicBlock *getUnwindDest() const {
Gabor Greifc9f75002010-03-24 13:21:49 +00003029 return cast<BasicBlock>(Op<-1>());
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003030 }
Chris Lattner454928e2005-01-29 00:31:36 +00003031 void setNormalDest(BasicBlock *B) {
Gabor Greifc9f75002010-03-24 13:21:49 +00003032 Op<-2>() = reinterpret_cast<Value*>(B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003033 }
Chris Lattner454928e2005-01-29 00:31:36 +00003034 void setUnwindDest(BasicBlock *B) {
Gabor Greifc9f75002010-03-24 13:21:49 +00003035 Op<-1>() = reinterpret_cast<Value*>(B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003036 }
3037
Bill Wendlinge6e88262011-08-12 20:24:12 +00003038 /// getLandingPadInst - Get the landingpad instruction from the landing pad
3039 /// block (the unwind destination).
3040 LandingPadInst *getLandingPadInst() const;
3041
Devang Patel4d4a5e02008-02-23 01:11:02 +00003042 BasicBlock *getSuccessor(unsigned i) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003043 assert(i < 2 && "Successor # out of range for invoke!");
3044 return i == 0 ? getNormalDest() : getUnwindDest();
3045 }
3046
Chris Lattner454928e2005-01-29 00:31:36 +00003047 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003048 assert(idx < 2 && "Successor # out of range for invoke!");
Gabor Greifc9f75002010-03-24 13:21:49 +00003049 *(&Op<-2>() + idx) = reinterpret_cast<Value*>(NewSucc);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003050 }
3051
Chris Lattner454928e2005-01-29 00:31:36 +00003052 unsigned getNumSuccessors() const { return 2; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003053
3054 // Methods for support type inquiry through isa, cast, and dyn_cast:
3055 static inline bool classof(const InvokeInst *) { return true; }
3056 static inline bool classof(const Instruction *I) {
3057 return (I->getOpcode() == Instruction::Invoke);
3058 }
3059 static inline bool classof(const Value *V) {
3060 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3061 }
Gabor Greifc9f75002010-03-24 13:21:49 +00003062
Chris Lattner454928e2005-01-29 00:31:36 +00003063private:
3064 virtual BasicBlock *getSuccessorV(unsigned idx) const;
3065 virtual unsigned getNumSuccessorsV() const;
3066 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Chris Lattnercafe9bb2009-12-29 02:14:09 +00003067
Chris Lattnerb2406d92009-12-29 02:46:09 +00003068 // Shadow Instruction::setInstructionSubclassData with a private forwarding
3069 // method so that subclasses cannot accidentally use it.
3070 void setInstructionSubclassData(unsigned short D) {
3071 Instruction::setInstructionSubclassData(D);
Chris Lattnercafe9bb2009-12-29 02:14:09 +00003072 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003073};
3074
Gabor Greifefe65362008-05-10 08:32:32 +00003075template <>
Jay Foad67c619b2011-01-11 15:07:38 +00003076struct OperandTraits<InvokeInst> : public VariadicOperandTraits<InvokeInst, 3> {
Gabor Greifefe65362008-05-10 08:32:32 +00003077};
3078
Gabor Greifefe65362008-05-10 08:32:32 +00003079InvokeInst::InvokeInst(Value *Func,
3080 BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foada3efbb12011-07-15 08:37:34 +00003081 ArrayRef<Value *> Args, unsigned Values,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00003082 const Twine &NameStr, Instruction *InsertBefore)
Gabor Greifefe65362008-05-10 08:32:32 +00003083 : TerminatorInst(cast<FunctionType>(cast<PointerType>(Func->getType())
3084 ->getElementType())->getReturnType(),
3085 Instruction::Invoke,
3086 OperandTraits<InvokeInst>::op_end(this) - Values,
3087 Values, InsertBefore) {
Jay Foada3efbb12011-07-15 08:37:34 +00003088 init(Func, IfNormal, IfException, Args, NameStr);
Gabor Greifefe65362008-05-10 08:32:32 +00003089}
Gabor Greifefe65362008-05-10 08:32:32 +00003090InvokeInst::InvokeInst(Value *Func,
3091 BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foada3efbb12011-07-15 08:37:34 +00003092 ArrayRef<Value *> Args, unsigned Values,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00003093 const Twine &NameStr, BasicBlock *InsertAtEnd)
Gabor Greifefe65362008-05-10 08:32:32 +00003094 : TerminatorInst(cast<FunctionType>(cast<PointerType>(Func->getType())
3095 ->getElementType())->getReturnType(),
3096 Instruction::Invoke,
3097 OperandTraits<InvokeInst>::op_end(this) - Values,
3098 Values, InsertAtEnd) {
Jay Foada3efbb12011-07-15 08:37:34 +00003099 init(Func, IfNormal, IfException, Args, NameStr);
Gabor Greifefe65362008-05-10 08:32:32 +00003100}
3101
3102DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InvokeInst, Value)
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003103
3104//===----------------------------------------------------------------------===//
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003105// ResumeInst Class
3106//===----------------------------------------------------------------------===//
3107
3108//===---------------------------------------------------------------------------
3109/// ResumeInst - Resume the propagation of an exception.
3110///
3111class ResumeInst : public TerminatorInst {
3112 ResumeInst(const ResumeInst &RI);
3113
3114 explicit ResumeInst(Value *Exn, Instruction *InsertBefore=0);
3115 ResumeInst(Value *Exn, BasicBlock *InsertAtEnd);
3116protected:
3117 virtual ResumeInst *clone_impl() const;
3118public:
3119 static ResumeInst *Create(Value *Exn, Instruction *InsertBefore = 0) {
3120 return new(1) ResumeInst(Exn, InsertBefore);
3121 }
3122 static ResumeInst *Create(Value *Exn, BasicBlock *InsertAtEnd) {
3123 return new(1) ResumeInst(Exn, InsertAtEnd);
3124 }
3125
3126 /// Provide fast operand accessors
3127 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
3128
3129 /// Convenience accessor.
3130 Value *getValue() const { return Op<0>(); }
3131
3132 unsigned getNumSuccessors() const { return 0; }
3133
3134 // Methods for support type inquiry through isa, cast, and dyn_cast:
3135 static inline bool classof(const ResumeInst *) { return true; }
3136 static inline bool classof(const Instruction *I) {
3137 return I->getOpcode() == Instruction::Resume;
3138 }
3139 static inline bool classof(const Value *V) {
3140 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3141 }
3142private:
3143 virtual BasicBlock *getSuccessorV(unsigned idx) const;
3144 virtual unsigned getNumSuccessorsV() const;
3145 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
3146};
3147
3148template <>
3149struct OperandTraits<ResumeInst> :
3150 public FixedNumOperandTraits<ResumeInst, 1> {
3151};
3152
3153DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ResumeInst, Value)
3154
3155//===----------------------------------------------------------------------===//
Chris Lattner076b3f12004-10-16 18:05:54 +00003156// UnreachableInst Class
3157//===----------------------------------------------------------------------===//
3158
3159//===---------------------------------------------------------------------------
3160/// UnreachableInst - This function has undefined behavior. In particular, the
3161/// presence of this instruction indicates some higher level knowledge that the
3162/// end of the block cannot be reached.
3163///
Chris Lattner1fca5ff2004-10-27 16:14:51 +00003164class UnreachableInst : public TerminatorInst {
Gabor Greif051a9502008-04-06 20:25:17 +00003165 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Devang Patel50b6e332009-10-27 22:16:29 +00003166protected:
3167 virtual UnreachableInst *clone_impl() const;
3168
Chris Lattner1fca5ff2004-10-27 16:14:51 +00003169public:
Gabor Greif051a9502008-04-06 20:25:17 +00003170 // allocate space for exactly zero operands
3171 void *operator new(size_t s) {
3172 return User::operator new(s, 0);
3173 }
Owen Anderson1d0be152009-08-13 21:58:54 +00003174 explicit UnreachableInst(LLVMContext &C, Instruction *InsertBefore = 0);
3175 explicit UnreachableInst(LLVMContext &C, BasicBlock *InsertAtEnd);
Chris Lattner076b3f12004-10-16 18:05:54 +00003176
Chris Lattner454928e2005-01-29 00:31:36 +00003177 unsigned getNumSuccessors() const { return 0; }
Chris Lattner076b3f12004-10-16 18:05:54 +00003178
3179 // Methods for support type inquiry through isa, cast, and dyn_cast:
3180 static inline bool classof(const UnreachableInst *) { return true; }
3181 static inline bool classof(const Instruction *I) {
3182 return I->getOpcode() == Instruction::Unreachable;
3183 }
3184 static inline bool classof(const Value *V) {
3185 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3186 }
Chris Lattner454928e2005-01-29 00:31:36 +00003187private:
3188 virtual BasicBlock *getSuccessorV(unsigned idx) const;
3189 virtual unsigned getNumSuccessorsV() const;
3190 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Chris Lattner076b3f12004-10-16 18:05:54 +00003191};
3192
Reid Spencer3da59db2006-11-27 01:05:10 +00003193//===----------------------------------------------------------------------===//
3194// TruncInst Class
3195//===----------------------------------------------------------------------===//
3196
3197/// @brief This class represents a truncation of integer types.
3198class TruncInst : public CastInst {
Devang Patel50b6e332009-10-27 22:16:29 +00003199protected:
3200 /// @brief Clone an identical TruncInst
3201 virtual TruncInst *clone_impl() const;
3202
Reid Spencer3da59db2006-11-27 01:05:10 +00003203public:
3204 /// @brief Constructor with insert-before-instruction semantics
3205 TruncInst(
3206 Value *S, ///< The value to be truncated
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003207 Type *Ty, ///< The (smaller) type to truncate to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003208 const Twine &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003209 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3210 );
3211
3212 /// @brief Constructor with insert-at-end-of-block semantics
3213 TruncInst(
3214 Value *S, ///< The value to be truncated
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003215 Type *Ty, ///< The (smaller) type to truncate to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003216 const Twine &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003217 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
3218 );
3219
Reid Spencer3da59db2006-11-27 01:05:10 +00003220 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
3221 static inline bool classof(const TruncInst *) { return true; }
3222 static inline bool classof(const Instruction *I) {
3223 return I->getOpcode() == Trunc;
3224 }
3225 static inline bool classof(const Value *V) {
3226 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3227 }
3228};
3229
3230//===----------------------------------------------------------------------===//
3231// ZExtInst Class
3232//===----------------------------------------------------------------------===//
3233
3234/// @brief This class represents zero extension of integer types.
3235class ZExtInst : public CastInst {
Devang Patel50b6e332009-10-27 22:16:29 +00003236protected:
3237 /// @brief Clone an identical ZExtInst
3238 virtual ZExtInst *clone_impl() const;
3239
Reid Spencer3da59db2006-11-27 01:05:10 +00003240public:
3241 /// @brief Constructor with insert-before-instruction semantics
3242 ZExtInst(
3243 Value *S, ///< The value to be zero extended
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003244 Type *Ty, ///< The type to zero extend to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003245 const Twine &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003246 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3247 );
3248
3249 /// @brief Constructor with insert-at-end semantics.
3250 ZExtInst(
3251 Value *S, ///< The value to be zero extended
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003252 Type *Ty, ///< The type to zero extend to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003253 const Twine &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003254 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
3255 );
3256
Reid Spencer3da59db2006-11-27 01:05:10 +00003257 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
3258 static inline bool classof(const ZExtInst *) { return true; }
3259 static inline bool classof(const Instruction *I) {
3260 return I->getOpcode() == ZExt;
3261 }
3262 static inline bool classof(const Value *V) {
3263 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3264 }
3265};
3266
3267//===----------------------------------------------------------------------===//
3268// SExtInst Class
3269//===----------------------------------------------------------------------===//
3270
3271/// @brief This class represents a sign extension of integer types.
3272class SExtInst : public CastInst {
Devang Patel50b6e332009-10-27 22:16:29 +00003273protected:
3274 /// @brief Clone an identical SExtInst
3275 virtual SExtInst *clone_impl() const;
3276
Reid Spencer3da59db2006-11-27 01:05:10 +00003277public:
3278 /// @brief Constructor with insert-before-instruction semantics
3279 SExtInst(
3280 Value *S, ///< The value to be sign extended
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003281 Type *Ty, ///< The type to sign extend to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003282 const Twine &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003283 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3284 );
3285
3286 /// @brief Constructor with insert-at-end-of-block semantics
3287 SExtInst(
3288 Value *S, ///< The value to be sign extended
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003289 Type *Ty, ///< The type to sign extend to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003290 const Twine &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003291 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
3292 );
3293
Reid Spencer3da59db2006-11-27 01:05:10 +00003294 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
3295 static inline bool classof(const SExtInst *) { return true; }
3296 static inline bool classof(const Instruction *I) {
3297 return I->getOpcode() == SExt;
3298 }
3299 static inline bool classof(const Value *V) {
3300 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3301 }
3302};
3303
3304//===----------------------------------------------------------------------===//
3305// FPTruncInst Class
3306//===----------------------------------------------------------------------===//
3307
3308/// @brief This class represents a truncation of floating point types.
3309class FPTruncInst : public CastInst {
Devang Patel50b6e332009-10-27 22:16:29 +00003310protected:
3311 /// @brief Clone an identical FPTruncInst
3312 virtual FPTruncInst *clone_impl() const;
3313
Reid Spencer3da59db2006-11-27 01:05:10 +00003314public:
3315 /// @brief Constructor with insert-before-instruction semantics
3316 FPTruncInst(
3317 Value *S, ///< The value to be truncated
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003318 Type *Ty, ///< The type to truncate to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003319 const Twine &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003320 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3321 );
3322
3323 /// @brief Constructor with insert-before-instruction semantics
3324 FPTruncInst(
3325 Value *S, ///< The value to be truncated
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003326 Type *Ty, ///< The type to truncate to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003327 const Twine &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003328 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
3329 );
3330
Reid Spencer3da59db2006-11-27 01:05:10 +00003331 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
3332 static inline bool classof(const FPTruncInst *) { return true; }
3333 static inline bool classof(const Instruction *I) {
3334 return I->getOpcode() == FPTrunc;
3335 }
3336 static inline bool classof(const Value *V) {
3337 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3338 }
3339};
3340
3341//===----------------------------------------------------------------------===//
3342// FPExtInst Class
3343//===----------------------------------------------------------------------===//
3344
3345/// @brief This class represents an extension of floating point types.
3346class FPExtInst : public CastInst {
Devang Patel50b6e332009-10-27 22:16:29 +00003347protected:
3348 /// @brief Clone an identical FPExtInst
3349 virtual FPExtInst *clone_impl() const;
3350
Reid Spencer3da59db2006-11-27 01:05:10 +00003351public:
3352 /// @brief Constructor with insert-before-instruction semantics
3353 FPExtInst(
3354 Value *S, ///< The value to be extended
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003355 Type *Ty, ///< The type to extend to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003356 const Twine &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003357 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3358 );
3359
3360 /// @brief Constructor with insert-at-end-of-block semantics
3361 FPExtInst(
3362 Value *S, ///< The value to be extended
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003363 Type *Ty, ///< The type to extend to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003364 const Twine &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003365 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
3366 );
3367
Reid Spencer3da59db2006-11-27 01:05:10 +00003368 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
3369 static inline bool classof(const FPExtInst *) { return true; }
3370 static inline bool classof(const Instruction *I) {
3371 return I->getOpcode() == FPExt;
3372 }
3373 static inline bool classof(const Value *V) {
3374 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3375 }
3376};
3377
3378//===----------------------------------------------------------------------===//
3379// UIToFPInst Class
3380//===----------------------------------------------------------------------===//
3381
3382/// @brief This class represents a cast unsigned integer to floating point.
3383class UIToFPInst : public CastInst {
Devang Patel50b6e332009-10-27 22:16:29 +00003384protected:
3385 /// @brief Clone an identical UIToFPInst
3386 virtual UIToFPInst *clone_impl() const;
3387
Reid Spencer3da59db2006-11-27 01:05:10 +00003388public:
3389 /// @brief Constructor with insert-before-instruction semantics
3390 UIToFPInst(
3391 Value *S, ///< The value to be converted
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003392 Type *Ty, ///< The type to convert to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003393 const Twine &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003394 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3395 );
3396
3397 /// @brief Constructor with insert-at-end-of-block semantics
3398 UIToFPInst(
3399 Value *S, ///< The value to be converted
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003400 Type *Ty, ///< The type to convert to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003401 const Twine &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003402 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
3403 );
3404
Reid Spencer3da59db2006-11-27 01:05:10 +00003405 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
3406 static inline bool classof(const UIToFPInst *) { return true; }
3407 static inline bool classof(const Instruction *I) {
3408 return I->getOpcode() == UIToFP;
3409 }
3410 static inline bool classof(const Value *V) {
3411 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3412 }
3413};
3414
3415//===----------------------------------------------------------------------===//
3416// SIToFPInst Class
3417//===----------------------------------------------------------------------===//
3418
3419/// @brief This class represents a cast from signed integer to floating point.
3420class SIToFPInst : public CastInst {
Devang Patel50b6e332009-10-27 22:16:29 +00003421protected:
3422 /// @brief Clone an identical SIToFPInst
3423 virtual SIToFPInst *clone_impl() const;
3424
Reid Spencer3da59db2006-11-27 01:05:10 +00003425public:
3426 /// @brief Constructor with insert-before-instruction semantics
3427 SIToFPInst(
3428 Value *S, ///< The value to be converted
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003429 Type *Ty, ///< The type to convert to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003430 const Twine &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003431 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3432 );
3433
3434 /// @brief Constructor with insert-at-end-of-block semantics
3435 SIToFPInst(
3436 Value *S, ///< The value to be converted
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003437 Type *Ty, ///< The type to convert to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003438 const Twine &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003439 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
3440 );
3441
Reid Spencer3da59db2006-11-27 01:05:10 +00003442 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
3443 static inline bool classof(const SIToFPInst *) { return true; }
3444 static inline bool classof(const Instruction *I) {
3445 return I->getOpcode() == SIToFP;
3446 }
3447 static inline bool classof(const Value *V) {
3448 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3449 }
3450};
3451
3452//===----------------------------------------------------------------------===//
3453// FPToUIInst Class
3454//===----------------------------------------------------------------------===//
3455
3456/// @brief This class represents a cast from floating point to unsigned integer
3457class FPToUIInst : public CastInst {
Devang Patel50b6e332009-10-27 22:16:29 +00003458protected:
3459 /// @brief Clone an identical FPToUIInst
3460 virtual FPToUIInst *clone_impl() const;
3461
Reid Spencer3da59db2006-11-27 01:05:10 +00003462public:
3463 /// @brief Constructor with insert-before-instruction semantics
3464 FPToUIInst(
3465 Value *S, ///< The value to be converted
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003466 Type *Ty, ///< The type to convert to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003467 const Twine &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003468 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3469 );
3470
3471 /// @brief Constructor with insert-at-end-of-block semantics
3472 FPToUIInst(
3473 Value *S, ///< The value to be converted
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003474 Type *Ty, ///< The type to convert to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003475 const Twine &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003476 BasicBlock *InsertAtEnd ///< Where to insert the new instruction
3477 );
3478
Reid Spencer3da59db2006-11-27 01:05:10 +00003479 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
3480 static inline bool classof(const FPToUIInst *) { return true; }
3481 static inline bool classof(const Instruction *I) {
3482 return I->getOpcode() == FPToUI;
3483 }
3484 static inline bool classof(const Value *V) {
3485 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3486 }
3487};
3488
3489//===----------------------------------------------------------------------===//
3490// FPToSIInst Class
3491//===----------------------------------------------------------------------===//
3492
3493/// @brief This class represents a cast from floating point to signed integer.
3494class FPToSIInst : public CastInst {
Devang Patel50b6e332009-10-27 22:16:29 +00003495protected:
3496 /// @brief Clone an identical FPToSIInst
3497 virtual FPToSIInst *clone_impl() const;
3498
Reid Spencer3da59db2006-11-27 01:05:10 +00003499public:
3500 /// @brief Constructor with insert-before-instruction semantics
3501 FPToSIInst(
3502 Value *S, ///< The value to be converted
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003503 Type *Ty, ///< The type to convert to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003504 const Twine &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003505 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3506 );
3507
3508 /// @brief Constructor with insert-at-end-of-block semantics
3509 FPToSIInst(
3510 Value *S, ///< The value to be converted
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003511 Type *Ty, ///< The type to convert to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003512 const Twine &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003513 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
3514 );
3515
Reid Spencer3da59db2006-11-27 01:05:10 +00003516 /// @brief Methods for support type inquiry through isa, cast, and dyn_cast:
3517 static inline bool classof(const FPToSIInst *) { return true; }
3518 static inline bool classof(const Instruction *I) {
3519 return I->getOpcode() == FPToSI;
3520 }
3521 static inline bool classof(const Value *V) {
3522 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3523 }
3524};
3525
3526//===----------------------------------------------------------------------===//
3527// IntToPtrInst Class
3528//===----------------------------------------------------------------------===//
3529
3530/// @brief This class represents a cast from an integer to a pointer.
3531class IntToPtrInst : public CastInst {
Reid Spencer3da59db2006-11-27 01:05:10 +00003532public:
3533 /// @brief Constructor with insert-before-instruction semantics
3534 IntToPtrInst(
3535 Value *S, ///< The value to be converted
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003536 Type *Ty, ///< The type to convert to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003537 const Twine &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003538 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3539 );
3540
3541 /// @brief Constructor with insert-at-end-of-block semantics
3542 IntToPtrInst(
3543 Value *S, ///< The value to be converted
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003544 Type *Ty, ///< The type to convert to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003545 const Twine &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003546 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
3547 );
3548
3549 /// @brief Clone an identical IntToPtrInst
Devang Patel50b6e332009-10-27 22:16:29 +00003550 virtual IntToPtrInst *clone_impl() const;
Reid Spencer3da59db2006-11-27 01:05:10 +00003551
3552 // Methods for support type inquiry through isa, cast, and dyn_cast:
3553 static inline bool classof(const IntToPtrInst *) { return true; }
3554 static inline bool classof(const Instruction *I) {
3555 return I->getOpcode() == IntToPtr;
3556 }
3557 static inline bool classof(const Value *V) {
3558 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3559 }
3560};
3561
3562//===----------------------------------------------------------------------===//
3563// PtrToIntInst Class
3564//===----------------------------------------------------------------------===//
3565
3566/// @brief This class represents a cast from a pointer to an integer
3567class PtrToIntInst : public CastInst {
Devang Patel50b6e332009-10-27 22:16:29 +00003568protected:
3569 /// @brief Clone an identical PtrToIntInst
3570 virtual PtrToIntInst *clone_impl() const;
3571
Reid Spencer3da59db2006-11-27 01:05:10 +00003572public:
3573 /// @brief Constructor with insert-before-instruction semantics
3574 PtrToIntInst(
3575 Value *S, ///< The value to be converted
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003576 Type *Ty, ///< The type to convert to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003577 const Twine &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003578 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3579 );
3580
3581 /// @brief Constructor with insert-at-end-of-block semantics
3582 PtrToIntInst(
3583 Value *S, ///< The value to be converted
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003584 Type *Ty, ///< The type to convert to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003585 const Twine &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003586 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
3587 );
3588
Reid Spencer3da59db2006-11-27 01:05:10 +00003589 // Methods for support type inquiry through isa, cast, and dyn_cast:
3590 static inline bool classof(const PtrToIntInst *) { return true; }
3591 static inline bool classof(const Instruction *I) {
3592 return I->getOpcode() == PtrToInt;
3593 }
3594 static inline bool classof(const Value *V) {
3595 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3596 }
3597};
3598
3599//===----------------------------------------------------------------------===//
3600// BitCastInst Class
3601//===----------------------------------------------------------------------===//
3602
3603/// @brief This class represents a no-op cast from one type to another.
3604class BitCastInst : public CastInst {
Devang Patel50b6e332009-10-27 22:16:29 +00003605protected:
3606 /// @brief Clone an identical BitCastInst
3607 virtual BitCastInst *clone_impl() const;
3608
Reid Spencer3da59db2006-11-27 01:05:10 +00003609public:
3610 /// @brief Constructor with insert-before-instruction semantics
3611 BitCastInst(
3612 Value *S, ///< The value to be casted
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003613 Type *Ty, ///< The type to casted to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003614 const Twine &NameStr = "", ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003615 Instruction *InsertBefore = 0 ///< Where to insert the new instruction
3616 );
3617
3618 /// @brief Constructor with insert-at-end-of-block semantics
3619 BitCastInst(
3620 Value *S, ///< The value to be casted
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003621 Type *Ty, ///< The type to casted to
Gabor Greifc61f6b42010-07-21 08:25:55 +00003622 const Twine &NameStr, ///< A name for the new instruction
Reid Spencer3da59db2006-11-27 01:05:10 +00003623 BasicBlock *InsertAtEnd ///< The block to insert the instruction into
3624 );
3625
Reid Spencer3da59db2006-11-27 01:05:10 +00003626 // Methods for support type inquiry through isa, cast, and dyn_cast:
3627 static inline bool classof(const BitCastInst *) { return true; }
3628 static inline bool classof(const Instruction *I) {
3629 return I->getOpcode() == BitCast;
3630 }
3631 static inline bool classof(const Value *V) {
3632 return isa<Instruction>(V) && classof(cast<Instruction>(V));
3633 }
3634};
3635
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00003636} // End llvm namespace
Chris Lattnera892a3a2003-01-27 22:08:52 +00003637
3638#endif