blob: a3d70f8f14624e407ae17e7bd11edf0ef0e3d2ea [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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/Instruction.h"
20#include "llvm/InstrTypes.h"
21
22namespace llvm {
23
Chris Lattner1fca5ff2004-10-27 16:14:51 +000024class BasicBlock;
Chris Lattnerd1a32602005-02-24 05:32:09 +000025class ConstantInt;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000026class PointerType;
Chris Lattner6a56ed42006-04-14 22:20:07 +000027class PackedType;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000028
29//===----------------------------------------------------------------------===//
30// AllocationInst Class
31//===----------------------------------------------------------------------===//
32
33/// AllocationInst - This class is the common base class of MallocInst and
34/// AllocaInst.
35///
Chris Lattner454928e2005-01-29 00:31:36 +000036class AllocationInst : public UnaryInstruction {
Nate Begeman14b05292005-11-05 09:21:28 +000037 unsigned Alignment;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000038protected:
Nate Begeman14b05292005-11-05 09:21:28 +000039 AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy, unsigned Align,
Misha Brukman91102862005-03-16 03:46:55 +000040 const std::string &Name = "", Instruction *InsertBefore = 0);
Nate Begeman14b05292005-11-05 09:21:28 +000041 AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy, unsigned Align,
Misha Brukman91102862005-03-16 03:46:55 +000042 const std::string &Name, BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000043public:
Chris Lattner70aa33e2006-06-21 16:53:47 +000044 // Out of line virtual method, so the vtable, etc has a home.
45 virtual ~AllocationInst();
46
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000047 /// isArrayAllocation - Return true if there is an allocation size parameter
48 /// to the allocation instruction that is not 1.
49 ///
50 bool isArrayAllocation() const;
51
52 /// getArraySize - Get the number of element allocated, for a simple
53 /// allocation of a single element, this will return a constant 1 value.
54 ///
Chris Lattner454928e2005-01-29 00:31:36 +000055 inline const Value *getArraySize() const { return getOperand(0); }
56 inline Value *getArraySize() { return getOperand(0); }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000057
58 /// getType - Overload to return most specific pointer type
59 ///
60 inline const PointerType *getType() const {
Misha Brukman9769ab22005-04-21 20:19:05 +000061 return reinterpret_cast<const PointerType*>(Instruction::getType());
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000062 }
63
64 /// getAllocatedType - Return the type that is being allocated by the
65 /// instruction.
66 ///
67 const Type *getAllocatedType() const;
68
Nate Begeman14b05292005-11-05 09:21:28 +000069 /// getAlignment - Return the alignment of the memory that is being allocated
70 /// by the instruction.
71 ///
72 unsigned getAlignment() const { return Alignment; }
Chris Lattner8ae779d2005-11-05 21:58:30 +000073 void setAlignment(unsigned Align) {
74 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
75 Alignment = Align;
76 }
Nate Begeman14b05292005-11-05 09:21:28 +000077
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000078 virtual Instruction *clone() const = 0;
79
80 // Methods for support type inquiry through isa, cast, and dyn_cast:
81 static inline bool classof(const AllocationInst *) { return true; }
82 static inline bool classof(const Instruction *I) {
83 return I->getOpcode() == Instruction::Alloca ||
84 I->getOpcode() == Instruction::Malloc;
85 }
86 static inline bool classof(const Value *V) {
87 return isa<Instruction>(V) && classof(cast<Instruction>(V));
88 }
89};
90
91
92//===----------------------------------------------------------------------===//
93// MallocInst Class
94//===----------------------------------------------------------------------===//
95
96/// MallocInst - an instruction to allocated memory on the heap
97///
98class MallocInst : public AllocationInst {
99 MallocInst(const MallocInst &MI);
100public:
101 explicit MallocInst(const Type *Ty, Value *ArraySize = 0,
102 const std::string &Name = "",
103 Instruction *InsertBefore = 0)
Nate Begeman14b05292005-11-05 09:21:28 +0000104 : AllocationInst(Ty, ArraySize, Malloc, 0, Name, InsertBefore) {}
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000105 MallocInst(const Type *Ty, Value *ArraySize, const std::string &Name,
106 BasicBlock *InsertAtEnd)
Nate Begeman14b05292005-11-05 09:21:28 +0000107 : AllocationInst(Ty, ArraySize, Malloc, 0, Name, InsertAtEnd) {}
Chris Lattnerb77780e2006-05-10 04:38:35 +0000108
109 explicit MallocInst(const Type *Ty, const std::string &Name,
110 Instruction *InsertBefore = 0)
111 : AllocationInst(Ty, 0, Malloc, 0, Name, InsertBefore) {}
112 MallocInst(const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd)
113 : AllocationInst(Ty, 0, Malloc, 0, Name, InsertAtEnd) {}
114
Nate Begeman14b05292005-11-05 09:21:28 +0000115 MallocInst(const Type *Ty, Value *ArraySize, unsigned Align,
116 const std::string &Name, BasicBlock *InsertAtEnd)
Chris Lattnerb77780e2006-05-10 04:38:35 +0000117 : AllocationInst(Ty, ArraySize, Malloc, Align, Name, InsertAtEnd) {}
118 MallocInst(const Type *Ty, Value *ArraySize, unsigned Align,
Nate Begeman14b05292005-11-05 09:21:28 +0000119 const std::string &Name = "",
120 Instruction *InsertBefore = 0)
Chris Lattnerb77780e2006-05-10 04:38:35 +0000121 : AllocationInst(Ty, ArraySize, Malloc, Align, Name, InsertBefore) {}
Nate Begeman14b05292005-11-05 09:21:28 +0000122
Chris Lattnerf319e832004-10-15 23:52:05 +0000123 virtual MallocInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000124
125 // Methods for support type inquiry through isa, cast, and dyn_cast:
126 static inline bool classof(const MallocInst *) { return true; }
127 static inline bool classof(const Instruction *I) {
128 return (I->getOpcode() == Instruction::Malloc);
129 }
130 static inline bool classof(const Value *V) {
131 return isa<Instruction>(V) && classof(cast<Instruction>(V));
132 }
133};
134
135
136//===----------------------------------------------------------------------===//
137// AllocaInst Class
138//===----------------------------------------------------------------------===//
139
140/// AllocaInst - an instruction to allocate memory on the stack
141///
142class AllocaInst : public AllocationInst {
143 AllocaInst(const AllocaInst &);
144public:
145 explicit AllocaInst(const Type *Ty, Value *ArraySize = 0,
146 const std::string &Name = "",
147 Instruction *InsertBefore = 0)
Nate Begeman14b05292005-11-05 09:21:28 +0000148 : AllocationInst(Ty, ArraySize, Alloca, 0, Name, InsertBefore) {}
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000149 AllocaInst(const Type *Ty, Value *ArraySize, const std::string &Name,
150 BasicBlock *InsertAtEnd)
Nate Begeman14b05292005-11-05 09:21:28 +0000151 : AllocationInst(Ty, ArraySize, Alloca, 0, Name, InsertAtEnd) {}
Chris Lattnerb77780e2006-05-10 04:38:35 +0000152
153 AllocaInst(const Type *Ty, const std::string &Name,
154 Instruction *InsertBefore = 0)
155 : AllocationInst(Ty, 0, Alloca, 0, Name, InsertBefore) {}
156 AllocaInst(const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd)
157 : AllocationInst(Ty, 0, Alloca, 0, Name, InsertAtEnd) {}
158
159 AllocaInst(const Type *Ty, Value *ArraySize, unsigned Align,
160 const std::string &Name = "", Instruction *InsertBefore = 0)
161 : AllocationInst(Ty, ArraySize, Alloca, Align, Name, InsertBefore) {}
Nate Begeman14b05292005-11-05 09:21:28 +0000162 AllocaInst(const Type *Ty, Value *ArraySize, unsigned Align,
163 const std::string &Name, BasicBlock *InsertAtEnd)
Chris Lattnerb77780e2006-05-10 04:38:35 +0000164 : AllocationInst(Ty, ArraySize, Alloca, Align, Name, InsertAtEnd) {}
Nate Begeman14b05292005-11-05 09:21:28 +0000165
Chris Lattnerf319e832004-10-15 23:52:05 +0000166 virtual AllocaInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000167
168 // Methods for support type inquiry through isa, cast, and dyn_cast:
169 static inline bool classof(const AllocaInst *) { return true; }
170 static inline bool classof(const Instruction *I) {
171 return (I->getOpcode() == Instruction::Alloca);
172 }
173 static inline bool classof(const Value *V) {
174 return isa<Instruction>(V) && classof(cast<Instruction>(V));
175 }
176};
177
178
179//===----------------------------------------------------------------------===//
180// FreeInst Class
181//===----------------------------------------------------------------------===//
182
183/// FreeInst - an instruction to deallocate memory
184///
Chris Lattner454928e2005-01-29 00:31:36 +0000185class FreeInst : public UnaryInstruction {
186 void AssertOK();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000187public:
188 explicit FreeInst(Value *Ptr, Instruction *InsertBefore = 0);
189 FreeInst(Value *Ptr, BasicBlock *InsertAfter);
190
Chris Lattnerf319e832004-10-15 23:52:05 +0000191 virtual FreeInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000192
193 virtual bool mayWriteToMemory() const { return true; }
194
195 // Methods for support type inquiry through isa, cast, and dyn_cast:
196 static inline bool classof(const FreeInst *) { return true; }
197 static inline bool classof(const Instruction *I) {
198 return (I->getOpcode() == Instruction::Free);
199 }
200 static inline bool classof(const Value *V) {
201 return isa<Instruction>(V) && classof(cast<Instruction>(V));
202 }
203};
204
205
206//===----------------------------------------------------------------------===//
207// LoadInst Class
208//===----------------------------------------------------------------------===//
209
Chris Lattner88fe29a2005-02-05 01:44:18 +0000210/// LoadInst - an instruction for reading from memory. This uses the
211/// SubclassData field in Value to store whether or not the load is volatile.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000212///
Chris Lattner454928e2005-01-29 00:31:36 +0000213class LoadInst : public UnaryInstruction {
Chris Lattner454928e2005-01-29 00:31:36 +0000214 LoadInst(const LoadInst &LI)
Chris Lattner88fe29a2005-02-05 01:44:18 +0000215 : UnaryInstruction(LI.getType(), Load, LI.getOperand(0)) {
216 setVolatile(LI.isVolatile());
Misha Brukman9769ab22005-04-21 20:19:05 +0000217
Chris Lattner454928e2005-01-29 00:31:36 +0000218#ifndef NDEBUG
219 AssertOK();
220#endif
221 }
222 void AssertOK();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000223public:
224 LoadInst(Value *Ptr, const std::string &Name, Instruction *InsertBefore);
225 LoadInst(Value *Ptr, const std::string &Name, BasicBlock *InsertAtEnd);
226 LoadInst(Value *Ptr, const std::string &Name = "", bool isVolatile = false,
227 Instruction *InsertBefore = 0);
228 LoadInst(Value *Ptr, const std::string &Name, bool isVolatile,
229 BasicBlock *InsertAtEnd);
230
231 /// isVolatile - Return true if this is a load from a volatile memory
232 /// location.
233 ///
Chris Lattner88fe29a2005-02-05 01:44:18 +0000234 bool isVolatile() const { return SubclassData; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000235
236 /// setVolatile - Specify whether this is a volatile load or not.
237 ///
Chris Lattner88fe29a2005-02-05 01:44:18 +0000238 void setVolatile(bool V) { SubclassData = V; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000239
Chris Lattnerf319e832004-10-15 23:52:05 +0000240 virtual LoadInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000241
242 virtual bool mayWriteToMemory() const { return isVolatile(); }
243
244 Value *getPointerOperand() { return getOperand(0); }
245 const Value *getPointerOperand() const { return getOperand(0); }
246 static unsigned getPointerOperandIndex() { return 0U; }
247
248 // Methods for support type inquiry through isa, cast, and dyn_cast:
249 static inline bool classof(const LoadInst *) { return true; }
250 static inline bool classof(const Instruction *I) {
251 return I->getOpcode() == Instruction::Load;
252 }
253 static inline bool classof(const Value *V) {
254 return isa<Instruction>(V) && classof(cast<Instruction>(V));
255 }
256};
257
258
259//===----------------------------------------------------------------------===//
260// StoreInst Class
261//===----------------------------------------------------------------------===//
262
Misha Brukman9769ab22005-04-21 20:19:05 +0000263/// StoreInst - an instruction for storing to memory
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000264///
265class StoreInst : public Instruction {
Chris Lattner454928e2005-01-29 00:31:36 +0000266 Use Ops[2];
Chris Lattner88fe29a2005-02-05 01:44:18 +0000267 StoreInst(const StoreInst &SI) : Instruction(SI.getType(), Store, Ops, 2) {
Chris Lattner454928e2005-01-29 00:31:36 +0000268 Ops[0].init(SI.Ops[0], this);
269 Ops[1].init(SI.Ops[1], this);
Chris Lattner88fe29a2005-02-05 01:44:18 +0000270 setVolatile(SI.isVolatile());
Chris Lattner454928e2005-01-29 00:31:36 +0000271#ifndef NDEBUG
272 AssertOK();
273#endif
274 }
275 void AssertOK();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000276public:
277 StoreInst(Value *Val, Value *Ptr, Instruction *InsertBefore);
278 StoreInst(Value *Val, Value *Ptr, BasicBlock *InsertAtEnd);
279 StoreInst(Value *Val, Value *Ptr, bool isVolatile = false,
280 Instruction *InsertBefore = 0);
281 StoreInst(Value *Val, Value *Ptr, bool isVolatile, BasicBlock *InsertAtEnd);
282
283
284 /// isVolatile - Return true if this is a load from a volatile memory
285 /// location.
286 ///
Chris Lattner88fe29a2005-02-05 01:44:18 +0000287 bool isVolatile() const { return SubclassData; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000288
289 /// setVolatile - Specify whether this is a volatile load or not.
290 ///
Chris Lattner88fe29a2005-02-05 01:44:18 +0000291 void setVolatile(bool V) { SubclassData = V; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000292
Chris Lattner454928e2005-01-29 00:31:36 +0000293 /// Transparently provide more efficient getOperand methods.
Misha Brukman9769ab22005-04-21 20:19:05 +0000294 Value *getOperand(unsigned i) const {
Chris Lattner454928e2005-01-29 00:31:36 +0000295 assert(i < 2 && "getOperand() out of range!");
296 return Ops[i];
297 }
298 void setOperand(unsigned i, Value *Val) {
299 assert(i < 2 && "setOperand() out of range!");
300 Ops[i] = Val;
301 }
302 unsigned getNumOperands() const { return 2; }
303
304
Chris Lattnerf319e832004-10-15 23:52:05 +0000305 virtual StoreInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000306
307 virtual bool mayWriteToMemory() const { return true; }
308
309 Value *getPointerOperand() { return getOperand(1); }
310 const Value *getPointerOperand() const { return getOperand(1); }
311 static unsigned getPointerOperandIndex() { return 1U; }
312
313 // Methods for support type inquiry through isa, cast, and dyn_cast:
314 static inline bool classof(const StoreInst *) { return true; }
315 static inline bool classof(const Instruction *I) {
316 return I->getOpcode() == Instruction::Store;
317 }
318 static inline bool classof(const Value *V) {
319 return isa<Instruction>(V) && classof(cast<Instruction>(V));
320 }
321};
322
323
324//===----------------------------------------------------------------------===//
325// GetElementPtrInst Class
326//===----------------------------------------------------------------------===//
327
328/// GetElementPtrInst - an instruction for type-safe pointer arithmetic to
329/// access elements of arrays and structs
330///
331class GetElementPtrInst : public Instruction {
Chris Lattner454928e2005-01-29 00:31:36 +0000332 GetElementPtrInst(const GetElementPtrInst &GEPI)
333 : Instruction(reinterpret_cast<const Type*>(GEPI.getType()), GetElementPtr,
334 0, GEPI.getNumOperands()) {
335 Use *OL = OperandList = new Use[NumOperands];
336 Use *GEPIOL = GEPI.OperandList;
337 for (unsigned i = 0, E = NumOperands; i != E; ++i)
338 OL[i].init(GEPIOL[i], this);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000339 }
340 void init(Value *Ptr, const std::vector<Value*> &Idx);
341 void init(Value *Ptr, Value *Idx0, Value *Idx1);
Chris Lattner38bacf22005-05-03 05:43:30 +0000342 void init(Value *Ptr, Value *Idx);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000343public:
344 /// Constructors - Create a getelementptr instruction with a base pointer an
345 /// list of indices. The first ctor can optionally insert before an existing
346 /// instruction, the second appends the new instruction to the specified
347 /// BasicBlock.
348 GetElementPtrInst(Value *Ptr, const std::vector<Value*> &Idx,
Misha Brukman91102862005-03-16 03:46:55 +0000349 const std::string &Name = "", Instruction *InsertBefore =0);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000350 GetElementPtrInst(Value *Ptr, const std::vector<Value*> &Idx,
Misha Brukman91102862005-03-16 03:46:55 +0000351 const std::string &Name, BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000352
Chris Lattner38bacf22005-05-03 05:43:30 +0000353 /// Constructors - These two constructors are convenience methods because one
354 /// and two index getelementptr instructions are so common.
355 GetElementPtrInst(Value *Ptr, Value *Idx,
356 const std::string &Name = "", Instruction *InsertBefore =0);
357 GetElementPtrInst(Value *Ptr, Value *Idx,
358 const std::string &Name, BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000359 GetElementPtrInst(Value *Ptr, Value *Idx0, Value *Idx1,
Misha Brukman91102862005-03-16 03:46:55 +0000360 const std::string &Name = "", Instruction *InsertBefore =0);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000361 GetElementPtrInst(Value *Ptr, Value *Idx0, Value *Idx1,
Misha Brukman91102862005-03-16 03:46:55 +0000362 const std::string &Name, BasicBlock *InsertAtEnd);
Chris Lattner454928e2005-01-29 00:31:36 +0000363 ~GetElementPtrInst();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000364
Chris Lattnerf319e832004-10-15 23:52:05 +0000365 virtual GetElementPtrInst *clone() const;
Misha Brukman9769ab22005-04-21 20:19:05 +0000366
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000367 // getType - Overload to return most specific pointer type...
368 inline const PointerType *getType() const {
369 return reinterpret_cast<const PointerType*>(Instruction::getType());
370 }
371
372 /// getIndexedType - Returns the type of the element that would be loaded with
373 /// a load instruction with the specified parameters.
374 ///
Misha Brukman9769ab22005-04-21 20:19:05 +0000375 /// A null type is returned if the indices are invalid for the specified
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000376 /// pointer type.
377 ///
Misha Brukman9769ab22005-04-21 20:19:05 +0000378 static const Type *getIndexedType(const Type *Ptr,
Misha Brukman91102862005-03-16 03:46:55 +0000379 const std::vector<Value*> &Indices,
380 bool AllowStructLeaf = false);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000381 static const Type *getIndexedType(const Type *Ptr, Value *Idx0, Value *Idx1,
Misha Brukman91102862005-03-16 03:46:55 +0000382 bool AllowStructLeaf = false);
Chris Lattner38bacf22005-05-03 05:43:30 +0000383 static const Type *getIndexedType(const Type *Ptr, Value *Idx);
Misha Brukman9769ab22005-04-21 20:19:05 +0000384
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000385 inline op_iterator idx_begin() { return op_begin()+1; }
386 inline const_op_iterator idx_begin() const { return op_begin()+1; }
387 inline op_iterator idx_end() { return op_end(); }
388 inline const_op_iterator idx_end() const { return op_end(); }
389
390 Value *getPointerOperand() {
391 return getOperand(0);
392 }
393 const Value *getPointerOperand() const {
394 return getOperand(0);
395 }
396 static unsigned getPointerOperandIndex() {
397 return 0U; // get index for modifying correct operand
398 }
399
400 inline unsigned getNumIndices() const { // Note: always non-negative
401 return getNumOperands() - 1;
402 }
Misha Brukman9769ab22005-04-21 20:19:05 +0000403
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000404 inline bool hasIndices() const {
405 return getNumOperands() > 1;
406 }
407
408 // Methods for support type inquiry through isa, cast, and dyn_cast:
409 static inline bool classof(const GetElementPtrInst *) { return true; }
410 static inline bool classof(const Instruction *I) {
411 return (I->getOpcode() == Instruction::GetElementPtr);
412 }
413 static inline bool classof(const Value *V) {
414 return isa<Instruction>(V) && classof(cast<Instruction>(V));
415 }
416};
417
418//===----------------------------------------------------------------------===//
419// SetCondInst Class
420//===----------------------------------------------------------------------===//
421
422/// SetCondInst class - Represent a setCC operator, where CC is eq, ne, lt, gt,
423/// le, or ge.
424///
425class SetCondInst : public BinaryOperator {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000426public:
427 SetCondInst(BinaryOps Opcode, Value *LHS, Value *RHS,
Misha Brukman91102862005-03-16 03:46:55 +0000428 const std::string &Name = "", Instruction *InsertBefore = 0);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000429 SetCondInst(BinaryOps Opcode, Value *LHS, Value *RHS,
Misha Brukman91102862005-03-16 03:46:55 +0000430 const std::string &Name, BasicBlock *InsertAtEnd);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000431
432 /// getInverseCondition - Return the inverse of the current condition opcode.
433 /// For example seteq -> setne, setgt -> setle, setlt -> setge, etc...
434 ///
435 BinaryOps getInverseCondition() const {
436 return getInverseCondition(getOpcode());
437 }
438
439 /// getInverseCondition - Static version that you can use without an
440 /// instruction available.
441 ///
442 static BinaryOps getInverseCondition(BinaryOps Opcode);
443
444 /// getSwappedCondition - Return the condition opcode that would be the result
445 /// of exchanging the two operands of the setcc instruction without changing
446 /// the result produced. Thus, seteq->seteq, setle->setge, setlt->setgt, etc.
447 ///
448 BinaryOps getSwappedCondition() const {
449 return getSwappedCondition(getOpcode());
450 }
451
452 /// getSwappedCondition - Static version that you can use without an
453 /// instruction available.
454 ///
455 static BinaryOps getSwappedCondition(BinaryOps Opcode);
456
457
458 // Methods for support type inquiry through isa, cast, and dyn_cast:
459 static inline bool classof(const SetCondInst *) { return true; }
460 static inline bool classof(const Instruction *I) {
461 return I->getOpcode() == SetEQ || I->getOpcode() == SetNE ||
462 I->getOpcode() == SetLE || I->getOpcode() == SetGE ||
463 I->getOpcode() == SetLT || I->getOpcode() == SetGT;
464 }
465 static inline bool classof(const Value *V) {
466 return isa<Instruction>(V) && classof(cast<Instruction>(V));
467 }
468};
469
470//===----------------------------------------------------------------------===//
471// CastInst Class
472//===----------------------------------------------------------------------===//
473
474/// CastInst - This class represents a cast from Operand[0] to the type of
475/// the instruction (i->getType()).
476///
Chris Lattner454928e2005-01-29 00:31:36 +0000477class CastInst : public UnaryInstruction {
Misha Brukman9769ab22005-04-21 20:19:05 +0000478 CastInst(const CastInst &CI)
Chris Lattner454928e2005-01-29 00:31:36 +0000479 : UnaryInstruction(CI.getType(), Cast, CI.getOperand(0)) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000480 }
481public:
482 CastInst(Value *S, const Type *Ty, const std::string &Name = "",
483 Instruction *InsertBefore = 0)
Chris Lattner454928e2005-01-29 00:31:36 +0000484 : UnaryInstruction(Ty, Cast, S, Name, InsertBefore) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000485 }
486 CastInst(Value *S, const Type *Ty, const std::string &Name,
487 BasicBlock *InsertAtEnd)
Chris Lattner454928e2005-01-29 00:31:36 +0000488 : UnaryInstruction(Ty, Cast, S, Name, InsertAtEnd) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000489 }
490
Chris Lattnerf319e832004-10-15 23:52:05 +0000491 virtual CastInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000492
493 // Methods for support type inquiry through isa, cast, and dyn_cast:
494 static inline bool classof(const CastInst *) { return true; }
495 static inline bool classof(const Instruction *I) {
496 return I->getOpcode() == Cast;
497 }
498 static inline bool classof(const Value *V) {
499 return isa<Instruction>(V) && classof(cast<Instruction>(V));
500 }
501};
502
503
504//===----------------------------------------------------------------------===//
505// CallInst Class
506//===----------------------------------------------------------------------===//
507
508/// CallInst - This class represents a function call, abstracting a target
Chris Lattner3340ffe2005-05-06 20:26:26 +0000509/// machine's calling convention. This class uses low bit of the SubClassData
510/// field to indicate whether or not this is a tail call. The rest of the bits
511/// hold the calling convention of the call.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000512///
513class CallInst : public Instruction {
514 CallInst(const CallInst &CI);
515 void init(Value *Func, const std::vector<Value*> &Params);
516 void init(Value *Func, Value *Actual1, Value *Actual2);
517 void init(Value *Func, Value *Actual);
518 void init(Value *Func);
519
520public:
521 CallInst(Value *F, const std::vector<Value*> &Par,
522 const std::string &Name = "", Instruction *InsertBefore = 0);
523 CallInst(Value *F, const std::vector<Value*> &Par,
524 const std::string &Name, BasicBlock *InsertAtEnd);
525
526 // Alternate CallInst ctors w/ two actuals, w/ one actual and no
527 // actuals, respectively.
528 CallInst(Value *F, Value *Actual1, Value *Actual2,
529 const std::string& Name = "", Instruction *InsertBefore = 0);
530 CallInst(Value *F, Value *Actual1, Value *Actual2,
531 const std::string& Name, BasicBlock *InsertAtEnd);
532 CallInst(Value *F, Value *Actual, const std::string& Name = "",
533 Instruction *InsertBefore = 0);
534 CallInst(Value *F, Value *Actual, const std::string& Name,
535 BasicBlock *InsertAtEnd);
Misha Brukman9769ab22005-04-21 20:19:05 +0000536 explicit CallInst(Value *F, const std::string &Name = "",
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000537 Instruction *InsertBefore = 0);
Misha Brukman9769ab22005-04-21 20:19:05 +0000538 explicit CallInst(Value *F, const std::string &Name,
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000539 BasicBlock *InsertAtEnd);
Chris Lattner454928e2005-01-29 00:31:36 +0000540 ~CallInst();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000541
Chris Lattnerf319e832004-10-15 23:52:05 +0000542 virtual CallInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000543 bool mayWriteToMemory() const { return true; }
544
Chris Lattner3340ffe2005-05-06 20:26:26 +0000545 bool isTailCall() const { return SubclassData & 1; }
546 void setTailCall(bool isTailCall = true) {
Jeff Cohen39cef602005-05-07 02:44:04 +0000547 SubclassData = (SubclassData & ~1) | unsigned(isTailCall);
Chris Lattner3340ffe2005-05-06 20:26:26 +0000548 }
549
550 /// getCallingConv/setCallingConv - Get or set the calling convention of this
551 /// function call.
552 unsigned getCallingConv() const { return SubclassData >> 1; }
553 void setCallingConv(unsigned CC) {
554 SubclassData = (SubclassData & 1) | (CC << 1);
555 }
Chris Lattnerddb6db42005-05-06 05:51:46 +0000556
Chris Lattner721aef62004-11-18 17:46:57 +0000557 /// getCalledFunction - Return the function being called by this instruction
558 /// if it is a direct call. If it is a call through a function pointer,
559 /// return null.
560 Function *getCalledFunction() const {
Reid Spenceredd5d9e2005-05-15 16:13:11 +0000561 return static_cast<Function*>(dyn_cast<Function>(getOperand(0)));
Chris Lattner721aef62004-11-18 17:46:57 +0000562 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000563
564 // getCalledValue - Get a pointer to a method that is invoked by this inst.
Chris Lattner454928e2005-01-29 00:31:36 +0000565 inline const Value *getCalledValue() const { return getOperand(0); }
566 inline Value *getCalledValue() { return getOperand(0); }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000567
568 // Methods for support type inquiry through isa, cast, and dyn_cast:
569 static inline bool classof(const CallInst *) { return true; }
570 static inline bool classof(const Instruction *I) {
Misha Brukman9769ab22005-04-21 20:19:05 +0000571 return I->getOpcode() == Instruction::Call;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000572 }
573 static inline bool classof(const Value *V) {
574 return isa<Instruction>(V) && classof(cast<Instruction>(V));
575 }
576};
577
578
579//===----------------------------------------------------------------------===//
580// ShiftInst Class
581//===----------------------------------------------------------------------===//
582
583/// ShiftInst - This class represents left and right shift instructions.
584///
585class ShiftInst : public Instruction {
Chris Lattner454928e2005-01-29 00:31:36 +0000586 Use Ops[2];
587 ShiftInst(const ShiftInst &SI)
588 : Instruction(SI.getType(), SI.getOpcode(), Ops, 2) {
589 Ops[0].init(SI.Ops[0], this);
590 Ops[1].init(SI.Ops[1], this);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000591 }
592 void init(OtherOps Opcode, Value *S, Value *SA) {
593 assert((Opcode == Shl || Opcode == Shr) && "ShiftInst Opcode invalid!");
Chris Lattner454928e2005-01-29 00:31:36 +0000594 Ops[0].init(S, this);
595 Ops[1].init(SA, this);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000596 }
597
598public:
599 ShiftInst(OtherOps Opcode, Value *S, Value *SA, const std::string &Name = "",
600 Instruction *InsertBefore = 0)
Chris Lattner454928e2005-01-29 00:31:36 +0000601 : Instruction(S->getType(), Opcode, Ops, 2, Name, InsertBefore) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000602 init(Opcode, S, SA);
603 }
604 ShiftInst(OtherOps Opcode, Value *S, Value *SA, const std::string &Name,
605 BasicBlock *InsertAtEnd)
Chris Lattner454928e2005-01-29 00:31:36 +0000606 : Instruction(S->getType(), Opcode, Ops, 2, Name, InsertAtEnd) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000607 init(Opcode, S, SA);
608 }
609
610 OtherOps getOpcode() const {
611 return static_cast<OtherOps>(Instruction::getOpcode());
612 }
613
Chris Lattner454928e2005-01-29 00:31:36 +0000614 /// Transparently provide more efficient getOperand methods.
615 Value *getOperand(unsigned i) const {
616 assert(i < 2 && "getOperand() out of range!");
617 return Ops[i];
618 }
619 void setOperand(unsigned i, Value *Val) {
620 assert(i < 2 && "setOperand() out of range!");
621 Ops[i] = Val;
622 }
623 unsigned getNumOperands() const { return 2; }
624
Chris Lattnerf319e832004-10-15 23:52:05 +0000625 virtual ShiftInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000626
627 // Methods for support type inquiry through isa, cast, and dyn_cast:
628 static inline bool classof(const ShiftInst *) { return true; }
629 static inline bool classof(const Instruction *I) {
Misha Brukman9769ab22005-04-21 20:19:05 +0000630 return (I->getOpcode() == Instruction::Shr) |
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000631 (I->getOpcode() == Instruction::Shl);
632 }
633 static inline bool classof(const Value *V) {
634 return isa<Instruction>(V) && classof(cast<Instruction>(V));
635 }
636};
637
638//===----------------------------------------------------------------------===//
639// SelectInst Class
640//===----------------------------------------------------------------------===//
641
642/// SelectInst - This class represents the LLVM 'select' instruction.
643///
644class SelectInst : public Instruction {
Chris Lattner454928e2005-01-29 00:31:36 +0000645 Use Ops[3];
646
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000647 void init(Value *C, Value *S1, Value *S2) {
Chris Lattner454928e2005-01-29 00:31:36 +0000648 Ops[0].init(C, this);
649 Ops[1].init(S1, this);
650 Ops[2].init(S2, this);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000651 }
652
Chris Lattner454928e2005-01-29 00:31:36 +0000653 SelectInst(const SelectInst &SI)
654 : Instruction(SI.getType(), SI.getOpcode(), Ops, 3) {
655 init(SI.Ops[0], SI.Ops[1], SI.Ops[2]);
656 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000657public:
658 SelectInst(Value *C, Value *S1, Value *S2, const std::string &Name = "",
659 Instruction *InsertBefore = 0)
Chris Lattner454928e2005-01-29 00:31:36 +0000660 : Instruction(S1->getType(), Instruction::Select, Ops, 3,
661 Name, InsertBefore) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000662 init(C, S1, S2);
663 }
664 SelectInst(Value *C, Value *S1, Value *S2, const std::string &Name,
665 BasicBlock *InsertAtEnd)
Chris Lattner454928e2005-01-29 00:31:36 +0000666 : Instruction(S1->getType(), Instruction::Select, Ops, 3,
667 Name, InsertAtEnd) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000668 init(C, S1, S2);
669 }
670
Chris Lattner454928e2005-01-29 00:31:36 +0000671 Value *getCondition() const { return Ops[0]; }
672 Value *getTrueValue() const { return Ops[1]; }
673 Value *getFalseValue() const { return Ops[2]; }
674
675 /// Transparently provide more efficient getOperand methods.
676 Value *getOperand(unsigned i) const {
677 assert(i < 3 && "getOperand() out of range!");
678 return Ops[i];
679 }
680 void setOperand(unsigned i, Value *Val) {
681 assert(i < 3 && "setOperand() out of range!");
682 Ops[i] = Val;
683 }
684 unsigned getNumOperands() const { return 3; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000685
686 OtherOps getOpcode() const {
687 return static_cast<OtherOps>(Instruction::getOpcode());
688 }
689
Chris Lattnerf319e832004-10-15 23:52:05 +0000690 virtual SelectInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000691
692 // Methods for support type inquiry through isa, cast, and dyn_cast:
693 static inline bool classof(const SelectInst *) { return true; }
694 static inline bool classof(const Instruction *I) {
695 return I->getOpcode() == Instruction::Select;
696 }
697 static inline bool classof(const Value *V) {
698 return isa<Instruction>(V) && classof(cast<Instruction>(V));
699 }
700};
701
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000702//===----------------------------------------------------------------------===//
703// VAArgInst Class
704//===----------------------------------------------------------------------===//
705
706/// VAArgInst - This class represents the va_arg llvm instruction, which returns
Andrew Lenharthf5428212005-06-18 18:31:30 +0000707/// an argument of the specified type given a va_list and increments that list
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000708///
Chris Lattner454928e2005-01-29 00:31:36 +0000709class VAArgInst : public UnaryInstruction {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000710 VAArgInst(const VAArgInst &VAA)
Chris Lattner454928e2005-01-29 00:31:36 +0000711 : UnaryInstruction(VAA.getType(), VAArg, VAA.getOperand(0)) {}
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000712public:
713 VAArgInst(Value *List, const Type *Ty, const std::string &Name = "",
714 Instruction *InsertBefore = 0)
Chris Lattner454928e2005-01-29 00:31:36 +0000715 : UnaryInstruction(Ty, VAArg, List, Name, InsertBefore) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000716 }
717 VAArgInst(Value *List, const Type *Ty, const std::string &Name,
718 BasicBlock *InsertAtEnd)
Chris Lattner454928e2005-01-29 00:31:36 +0000719 : UnaryInstruction(Ty, VAArg, List, Name, InsertAtEnd) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000720 }
721
Chris Lattnerf319e832004-10-15 23:52:05 +0000722 virtual VAArgInst *clone() const;
Andrew Lenharthc64b64a2005-06-19 14:46:20 +0000723 bool mayWriteToMemory() const { return true; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000724
725 // Methods for support type inquiry through isa, cast, and dyn_cast:
726 static inline bool classof(const VAArgInst *) { return true; }
727 static inline bool classof(const Instruction *I) {
728 return I->getOpcode() == VAArg;
729 }
730 static inline bool classof(const Value *V) {
731 return isa<Instruction>(V) && classof(cast<Instruction>(V));
732 }
733};
734
735//===----------------------------------------------------------------------===//
Robert Bocchino49b78a52006-01-10 19:04:13 +0000736// ExtractElementInst Class
737//===----------------------------------------------------------------------===//
738
739/// ExtractElementInst - This instruction extracts a single (scalar)
740/// element from a PackedType value
741///
742class ExtractElementInst : public Instruction {
743 Use Ops[2];
Robert Bocchinof9993442006-01-17 20:05:59 +0000744 ExtractElementInst(const ExtractElementInst &EE) :
745 Instruction(EE.getType(), ExtractElement, Ops, 2) {
746 Ops[0].init(EE.Ops[0], this);
747 Ops[1].init(EE.Ops[1], this);
Robert Bocchino49b78a52006-01-10 19:04:13 +0000748 }
749
750public:
Chris Lattner9fc18d22006-04-08 01:15:18 +0000751 ExtractElementInst(Value *Vec, Value *Idx, const std::string &Name = "",
752 Instruction *InsertBefore = 0);
753 ExtractElementInst(Value *Vec, Value *Idx, const std::string &Name,
754 BasicBlock *InsertAtEnd);
Robert Bocchino49b78a52006-01-10 19:04:13 +0000755
Chris Lattnerfa495842006-04-08 04:04:54 +0000756 /// isValidOperands - Return true if an extractelement instruction can be
757 /// formed with the specified operands.
758 static bool isValidOperands(const Value *Vec, const Value *Idx);
759
Robert Bocchino49b78a52006-01-10 19:04:13 +0000760 virtual ExtractElementInst *clone() const;
761
762 virtual bool mayWriteToMemory() const { return false; }
763
764 /// Transparently provide more efficient getOperand methods.
765 Value *getOperand(unsigned i) const {
766 assert(i < 2 && "getOperand() out of range!");
767 return Ops[i];
768 }
769 void setOperand(unsigned i, Value *Val) {
770 assert(i < 2 && "setOperand() out of range!");
771 Ops[i] = Val;
772 }
773 unsigned getNumOperands() const { return 2; }
774
775 // Methods for support type inquiry through isa, cast, and dyn_cast:
776 static inline bool classof(const ExtractElementInst *) { return true; }
777 static inline bool classof(const Instruction *I) {
778 return I->getOpcode() == Instruction::ExtractElement;
779 }
780 static inline bool classof(const Value *V) {
781 return isa<Instruction>(V) && classof(cast<Instruction>(V));
782 }
783};
784
785//===----------------------------------------------------------------------===//
Robert Bocchinof9993442006-01-17 20:05:59 +0000786// InsertElementInst Class
787//===----------------------------------------------------------------------===//
788
789/// InsertElementInst - This instruction inserts a single (scalar)
790/// element into a PackedType value
791///
792class InsertElementInst : public Instruction {
793 Use Ops[3];
Chris Lattner6a56ed42006-04-14 22:20:07 +0000794 InsertElementInst(const InsertElementInst &IE);
Robert Bocchinof9993442006-01-17 20:05:59 +0000795public:
Chris Lattner9fc18d22006-04-08 01:15:18 +0000796 InsertElementInst(Value *Vec, Value *NewElt, Value *Idx,
797 const std::string &Name = "",Instruction *InsertBefore = 0);
798 InsertElementInst(Value *Vec, Value *NewElt, Value *Idx,
Robert Bocchinof9993442006-01-17 20:05:59 +0000799 const std::string &Name, BasicBlock *InsertAtEnd);
800
Chris Lattnerfa495842006-04-08 04:04:54 +0000801 /// isValidOperands - Return true if an insertelement instruction can be
802 /// formed with the specified operands.
803 static bool isValidOperands(const Value *Vec, const Value *NewElt,
804 const Value *Idx);
805
Robert Bocchinof9993442006-01-17 20:05:59 +0000806 virtual InsertElementInst *clone() const;
807
808 virtual bool mayWriteToMemory() const { return false; }
809
Chris Lattner6a56ed42006-04-14 22:20:07 +0000810 /// getType - Overload to return most specific packed type.
811 ///
812 inline const PackedType *getType() const {
813 return reinterpret_cast<const PackedType*>(Instruction::getType());
814 }
815
Robert Bocchinof9993442006-01-17 20:05:59 +0000816 /// Transparently provide more efficient getOperand methods.
817 Value *getOperand(unsigned i) const {
818 assert(i < 3 && "getOperand() out of range!");
819 return Ops[i];
820 }
821 void setOperand(unsigned i, Value *Val) {
822 assert(i < 3 && "setOperand() out of range!");
823 Ops[i] = Val;
824 }
825 unsigned getNumOperands() const { return 3; }
826
827 // Methods for support type inquiry through isa, cast, and dyn_cast:
828 static inline bool classof(const InsertElementInst *) { return true; }
829 static inline bool classof(const Instruction *I) {
830 return I->getOpcode() == Instruction::InsertElement;
831 }
832 static inline bool classof(const Value *V) {
833 return isa<Instruction>(V) && classof(cast<Instruction>(V));
834 }
835};
836
837//===----------------------------------------------------------------------===//
Chris Lattner9fc18d22006-04-08 01:15:18 +0000838// ShuffleVectorInst Class
839//===----------------------------------------------------------------------===//
840
841/// ShuffleVectorInst - This instruction constructs a fixed permutation of two
842/// input vectors.
843///
844class ShuffleVectorInst : public Instruction {
845 Use Ops[3];
Chris Lattner6a56ed42006-04-14 22:20:07 +0000846 ShuffleVectorInst(const ShuffleVectorInst &IE);
Chris Lattner9fc18d22006-04-08 01:15:18 +0000847public:
848 ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
849 const std::string &Name = "", Instruction *InsertBefor = 0);
850 ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
851 const std::string &Name, BasicBlock *InsertAtEnd);
852
Chris Lattnerfa495842006-04-08 04:04:54 +0000853 /// isValidOperands - Return true if a shufflevector instruction can be
Chris Lattner9fc18d22006-04-08 01:15:18 +0000854 /// formed with the specified operands.
855 static bool isValidOperands(const Value *V1, const Value *V2,
856 const Value *Mask);
857
858 virtual ShuffleVectorInst *clone() const;
859
860 virtual bool mayWriteToMemory() const { return false; }
861
Chris Lattner6a56ed42006-04-14 22:20:07 +0000862 /// getType - Overload to return most specific packed type.
863 ///
864 inline const PackedType *getType() const {
865 return reinterpret_cast<const PackedType*>(Instruction::getType());
866 }
867
Chris Lattner9fc18d22006-04-08 01:15:18 +0000868 /// Transparently provide more efficient getOperand methods.
869 Value *getOperand(unsigned i) const {
870 assert(i < 3 && "getOperand() out of range!");
871 return Ops[i];
872 }
873 void setOperand(unsigned i, Value *Val) {
874 assert(i < 3 && "setOperand() out of range!");
875 Ops[i] = Val;
876 }
877 unsigned getNumOperands() const { return 3; }
878
879 // Methods for support type inquiry through isa, cast, and dyn_cast:
880 static inline bool classof(const ShuffleVectorInst *) { return true; }
881 static inline bool classof(const Instruction *I) {
882 return I->getOpcode() == Instruction::ShuffleVector;
883 }
884 static inline bool classof(const Value *V) {
885 return isa<Instruction>(V) && classof(cast<Instruction>(V));
886 }
887};
888
889
890//===----------------------------------------------------------------------===//
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000891// PHINode Class
892//===----------------------------------------------------------------------===//
893
894// PHINode - The PHINode class is used to represent the magical mystical PHI
895// node, that can not exist in nature, but can be synthesized in a computer
896// scientist's overactive imagination.
897//
898class PHINode : public Instruction {
Chris Lattner454928e2005-01-29 00:31:36 +0000899 /// ReservedSpace - The number of operands actually allocated. NumOperands is
900 /// the number actually in use.
901 unsigned ReservedSpace;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000902 PHINode(const PHINode &PN);
903public:
904 PHINode(const Type *Ty, const std::string &Name = "",
905 Instruction *InsertBefore = 0)
Chris Lattner454928e2005-01-29 00:31:36 +0000906 : Instruction(Ty, Instruction::PHI, 0, 0, Name, InsertBefore),
907 ReservedSpace(0) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000908 }
909
910 PHINode(const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd)
Chris Lattner454928e2005-01-29 00:31:36 +0000911 : Instruction(Ty, Instruction::PHI, 0, 0, Name, InsertAtEnd),
912 ReservedSpace(0) {
913 }
914
915 ~PHINode();
916
917 /// reserveOperandSpace - This method can be used to avoid repeated
918 /// reallocation of PHI operand lists by reserving space for the correct
919 /// number of operands before adding them. Unlike normal vector reserves,
920 /// this method can also be used to trim the operand space.
921 void reserveOperandSpace(unsigned NumValues) {
922 resizeOperands(NumValues*2);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000923 }
924
Chris Lattnerf319e832004-10-15 23:52:05 +0000925 virtual PHINode *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000926
927 /// getNumIncomingValues - Return the number of incoming edges
928 ///
Chris Lattner454928e2005-01-29 00:31:36 +0000929 unsigned getNumIncomingValues() const { return getNumOperands()/2; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000930
Reid Spencerc773de62006-05-19 19:07:54 +0000931 /// getIncomingValue - Return incoming value number x
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000932 ///
933 Value *getIncomingValue(unsigned i) const {
Chris Lattner454928e2005-01-29 00:31:36 +0000934 assert(i*2 < getNumOperands() && "Invalid value number!");
935 return getOperand(i*2);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000936 }
937 void setIncomingValue(unsigned i, Value *V) {
Chris Lattner454928e2005-01-29 00:31:36 +0000938 assert(i*2 < getNumOperands() && "Invalid value number!");
939 setOperand(i*2, V);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000940 }
Chris Lattner454928e2005-01-29 00:31:36 +0000941 unsigned getOperandNumForIncomingValue(unsigned i) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000942 return i*2;
943 }
944
Reid Spencerc773de62006-05-19 19:07:54 +0000945 /// getIncomingBlock - Return incoming basic block number x
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000946 ///
Misha Brukman9769ab22005-04-21 20:19:05 +0000947 BasicBlock *getIncomingBlock(unsigned i) const {
Chris Lattner454928e2005-01-29 00:31:36 +0000948 return reinterpret_cast<BasicBlock*>(getOperand(i*2+1));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000949 }
950 void setIncomingBlock(unsigned i, BasicBlock *BB) {
Chris Lattner454928e2005-01-29 00:31:36 +0000951 setOperand(i*2+1, reinterpret_cast<Value*>(BB));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000952 }
953 unsigned getOperandNumForIncomingBlock(unsigned i) {
954 return i*2+1;
955 }
956
957 /// addIncoming - Add an incoming value to the end of the PHI list
958 ///
959 void addIncoming(Value *V, BasicBlock *BB) {
960 assert(getType() == V->getType() &&
961 "All operands to PHI node must be the same type as the PHI node!");
Chris Lattner454928e2005-01-29 00:31:36 +0000962 unsigned OpNo = NumOperands;
963 if (OpNo+2 > ReservedSpace)
964 resizeOperands(0); // Get more space!
965 // Initialize some new operands.
966 NumOperands = OpNo+2;
967 OperandList[OpNo].init(V, this);
968 OperandList[OpNo+1].init(reinterpret_cast<Value*>(BB), this);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000969 }
Misha Brukman9769ab22005-04-21 20:19:05 +0000970
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000971 /// removeIncomingValue - Remove an incoming value. This is useful if a
972 /// predecessor basic block is deleted. The value removed is returned.
973 ///
974 /// If the last incoming value for a PHI node is removed (and DeletePHIIfEmpty
975 /// is true), the PHI node is destroyed and any uses of it are replaced with
976 /// dummy values. The only time there should be zero incoming values to a PHI
977 /// node is when the block is dead, so this strategy is sound.
978 ///
979 Value *removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty = true);
980
981 Value *removeIncomingValue(const BasicBlock *BB, bool DeletePHIIfEmpty =true){
982 int Idx = getBasicBlockIndex(BB);
983 assert(Idx >= 0 && "Invalid basic block argument to remove!");
984 return removeIncomingValue(Idx, DeletePHIIfEmpty);
985 }
986
Misha Brukman9769ab22005-04-21 20:19:05 +0000987 /// getBasicBlockIndex - Return the first index of the specified basic
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000988 /// block in the value list for this PHI. Returns -1 if no instance.
989 ///
990 int getBasicBlockIndex(const BasicBlock *BB) const {
Chris Lattner454928e2005-01-29 00:31:36 +0000991 Use *OL = OperandList;
Misha Brukman9769ab22005-04-21 20:19:05 +0000992 for (unsigned i = 0, e = getNumOperands(); i != e; i += 2)
Chris Lattner454928e2005-01-29 00:31:36 +0000993 if (OL[i+1] == reinterpret_cast<const Value*>(BB)) return i/2;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +0000994 return -1;
995 }
996
997 Value *getIncomingValueForBlock(const BasicBlock *BB) const {
998 return getIncomingValue(getBasicBlockIndex(BB));
999 }
1000
Nate Begemana83ba0f2005-08-04 23:24:19 +00001001 /// hasConstantValue - If the specified PHI node always merges together the
1002 /// same value, return the value, otherwise return null.
1003 ///
Chris Lattner9acbd612005-08-05 00:49:06 +00001004 Value *hasConstantValue(bool AllowNonDominatingInstruction = false) const;
Nate Begemana83ba0f2005-08-04 23:24:19 +00001005
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001006 /// Methods for support type inquiry through isa, cast, and dyn_cast:
1007 static inline bool classof(const PHINode *) { return true; }
1008 static inline bool classof(const Instruction *I) {
Misha Brukman9769ab22005-04-21 20:19:05 +00001009 return I->getOpcode() == Instruction::PHI;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001010 }
1011 static inline bool classof(const Value *V) {
1012 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1013 }
Chris Lattner454928e2005-01-29 00:31:36 +00001014 private:
1015 void resizeOperands(unsigned NumOperands);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001016};
1017
1018//===----------------------------------------------------------------------===//
1019// ReturnInst Class
1020//===----------------------------------------------------------------------===//
1021
1022//===---------------------------------------------------------------------------
1023/// ReturnInst - Return a value (possibly void), from a function. Execution
1024/// does not continue in this function any longer.
1025///
1026class ReturnInst : public TerminatorInst {
Chris Lattner454928e2005-01-29 00:31:36 +00001027 Use RetVal; // Possibly null retval.
1028 ReturnInst(const ReturnInst &RI) : TerminatorInst(Instruction::Ret, &RetVal,
1029 RI.getNumOperands()) {
1030 if (RI.getNumOperands())
1031 RetVal.init(RI.RetVal, this);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001032 }
1033
Alkis Evlogimenos859804f2004-11-17 21:02:25 +00001034 void init(Value *RetVal);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001035
1036public:
1037 // ReturnInst constructors:
1038 // ReturnInst() - 'ret void' instruction
Alkis Evlogimenos859804f2004-11-17 21:02:25 +00001039 // ReturnInst( null) - 'ret void' instruction
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001040 // ReturnInst(Value* X) - 'ret X' instruction
1041 // ReturnInst( null, Inst *) - 'ret void' instruction, insert before I
1042 // ReturnInst(Value* X, Inst *I) - 'ret X' instruction, insert before I
1043 // ReturnInst( null, BB *B) - 'ret void' instruction, insert @ end of BB
1044 // ReturnInst(Value* X, BB *B) - 'ret X' instruction, insert @ end of BB
Alkis Evlogimenos859804f2004-11-17 21:02:25 +00001045 //
1046 // NOTE: If the Value* passed is of type void then the constructor behaves as
1047 // if it was passed NULL.
Chris Lattner454928e2005-01-29 00:31:36 +00001048 ReturnInst(Value *retVal = 0, Instruction *InsertBefore = 0)
1049 : TerminatorInst(Instruction::Ret, &RetVal, 0, InsertBefore) {
1050 init(retVal);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001051 }
Chris Lattner454928e2005-01-29 00:31:36 +00001052 ReturnInst(Value *retVal, BasicBlock *InsertAtEnd)
1053 : TerminatorInst(Instruction::Ret, &RetVal, 0, InsertAtEnd) {
1054 init(retVal);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001055 }
1056 ReturnInst(BasicBlock *InsertAtEnd)
Chris Lattner454928e2005-01-29 00:31:36 +00001057 : TerminatorInst(Instruction::Ret, &RetVal, 0, InsertAtEnd) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001058 }
1059
Chris Lattnerf319e832004-10-15 23:52:05 +00001060 virtual ReturnInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001061
Chris Lattner454928e2005-01-29 00:31:36 +00001062 // Transparently provide more efficient getOperand methods.
1063 Value *getOperand(unsigned i) const {
1064 assert(i < getNumOperands() && "getOperand() out of range!");
1065 return RetVal;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001066 }
Chris Lattner454928e2005-01-29 00:31:36 +00001067 void setOperand(unsigned i, Value *Val) {
1068 assert(i < getNumOperands() && "setOperand() out of range!");
1069 RetVal = Val;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001070 }
1071
Chris Lattner454928e2005-01-29 00:31:36 +00001072 Value *getReturnValue() const { return RetVal; }
1073
1074 unsigned getNumSuccessors() const { return 0; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001075
1076 // Methods for support type inquiry through isa, cast, and dyn_cast:
1077 static inline bool classof(const ReturnInst *) { return true; }
1078 static inline bool classof(const Instruction *I) {
1079 return (I->getOpcode() == Instruction::Ret);
1080 }
1081 static inline bool classof(const Value *V) {
1082 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1083 }
Chris Lattner454928e2005-01-29 00:31:36 +00001084 private:
1085 virtual BasicBlock *getSuccessorV(unsigned idx) const;
1086 virtual unsigned getNumSuccessorsV() const;
1087 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001088};
1089
1090//===----------------------------------------------------------------------===//
1091// BranchInst Class
1092//===----------------------------------------------------------------------===//
1093
1094//===---------------------------------------------------------------------------
1095/// BranchInst - Conditional or Unconditional Branch instruction.
1096///
1097class BranchInst : public TerminatorInst {
Chris Lattner454928e2005-01-29 00:31:36 +00001098 /// Ops list - Branches are strange. The operands are ordered:
1099 /// TrueDest, FalseDest, Cond. This makes some accessors faster because
1100 /// they don't have to check for cond/uncond branchness.
1101 Use Ops[3];
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001102 BranchInst(const BranchInst &BI);
Chris Lattner454928e2005-01-29 00:31:36 +00001103 void AssertOK();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001104public:
1105 // BranchInst constructors (where {B, T, F} are blocks, and C is a condition):
1106 // BranchInst(BB *B) - 'br B'
1107 // BranchInst(BB* T, BB *F, Value *C) - 'br C, T, F'
1108 // BranchInst(BB* B, Inst *I) - 'br B' insert before I
1109 // BranchInst(BB* T, BB *F, Value *C, Inst *I) - 'br C, T, F', insert before I
1110 // BranchInst(BB* B, BB *I) - 'br B' insert at end
1111 // BranchInst(BB* T, BB *F, Value *C, BB *I) - 'br C, T, F', insert at end
1112 BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore = 0)
Chris Lattner454928e2005-01-29 00:31:36 +00001113 : TerminatorInst(Instruction::Br, Ops, 1, InsertBefore) {
1114 assert(IfTrue != 0 && "Branch destination may not be null!");
1115 Ops[0].init(reinterpret_cast<Value*>(IfTrue), this);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001116 }
1117 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
1118 Instruction *InsertBefore = 0)
Chris Lattner454928e2005-01-29 00:31:36 +00001119 : TerminatorInst(Instruction::Br, Ops, 3, InsertBefore) {
1120 Ops[0].init(reinterpret_cast<Value*>(IfTrue), this);
1121 Ops[1].init(reinterpret_cast<Value*>(IfFalse), this);
1122 Ops[2].init(Cond, this);
1123#ifndef NDEBUG
1124 AssertOK();
1125#endif
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001126 }
1127
1128 BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Chris Lattner454928e2005-01-29 00:31:36 +00001129 : TerminatorInst(Instruction::Br, Ops, 1, InsertAtEnd) {
1130 assert(IfTrue != 0 && "Branch destination may not be null!");
1131 Ops[0].init(reinterpret_cast<Value*>(IfTrue), this);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001132 }
1133
1134 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
1135 BasicBlock *InsertAtEnd)
Chris Lattner454928e2005-01-29 00:31:36 +00001136 : TerminatorInst(Instruction::Br, Ops, 3, InsertAtEnd) {
1137 Ops[0].init(reinterpret_cast<Value*>(IfTrue), this);
1138 Ops[1].init(reinterpret_cast<Value*>(IfFalse), this);
1139 Ops[2].init(Cond, this);
1140#ifndef NDEBUG
1141 AssertOK();
1142#endif
1143 }
1144
1145
1146 /// Transparently provide more efficient getOperand methods.
1147 Value *getOperand(unsigned i) const {
1148 assert(i < getNumOperands() && "getOperand() out of range!");
1149 return Ops[i];
1150 }
1151 void setOperand(unsigned i, Value *Val) {
1152 assert(i < getNumOperands() && "setOperand() out of range!");
1153 Ops[i] = Val;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001154 }
1155
Chris Lattnerf319e832004-10-15 23:52:05 +00001156 virtual BranchInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001157
Chris Lattner454928e2005-01-29 00:31:36 +00001158 inline bool isUnconditional() const { return getNumOperands() == 1; }
1159 inline bool isConditional() const { return getNumOperands() == 3; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001160
1161 inline Value *getCondition() const {
1162 assert(isConditional() && "Cannot get condition of an uncond branch!");
Chris Lattner454928e2005-01-29 00:31:36 +00001163 return getOperand(2);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001164 }
1165
1166 void setCondition(Value *V) {
1167 assert(isConditional() && "Cannot set condition of unconditional branch!");
1168 setOperand(2, V);
1169 }
1170
1171 // setUnconditionalDest - Change the current branch to an unconditional branch
1172 // targeting the specified block.
Chris Lattner454928e2005-01-29 00:31:36 +00001173 // FIXME: Eliminate this ugly method.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001174 void setUnconditionalDest(BasicBlock *Dest) {
Chris Lattner454928e2005-01-29 00:31:36 +00001175 if (isConditional()) { // Convert this to an uncond branch.
1176 NumOperands = 1;
1177 Ops[1].set(0);
1178 Ops[2].set(0);
1179 }
1180 setOperand(0, reinterpret_cast<Value*>(Dest));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001181 }
1182
Chris Lattner454928e2005-01-29 00:31:36 +00001183 unsigned getNumSuccessors() const { return 1+isConditional(); }
1184
1185 BasicBlock *getSuccessor(unsigned i) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001186 assert(i < getNumSuccessors() && "Successor # out of range for Branch!");
Misha Brukman9769ab22005-04-21 20:19:05 +00001187 return (i == 0) ? cast<BasicBlock>(getOperand(0)) :
Chris Lattner454928e2005-01-29 00:31:36 +00001188 cast<BasicBlock>(getOperand(1));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001189 }
1190
Chris Lattner454928e2005-01-29 00:31:36 +00001191 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001192 assert(idx < getNumSuccessors() && "Successor # out of range for Branch!");
Chris Lattner454928e2005-01-29 00:31:36 +00001193 setOperand(idx, reinterpret_cast<Value*>(NewSucc));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001194 }
1195
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001196 // Methods for support type inquiry through isa, cast, and dyn_cast:
1197 static inline bool classof(const BranchInst *) { return true; }
1198 static inline bool classof(const Instruction *I) {
1199 return (I->getOpcode() == Instruction::Br);
1200 }
1201 static inline bool classof(const Value *V) {
1202 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1203 }
Chris Lattner454928e2005-01-29 00:31:36 +00001204private:
1205 virtual BasicBlock *getSuccessorV(unsigned idx) const;
1206 virtual unsigned getNumSuccessorsV() const;
1207 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001208};
1209
1210//===----------------------------------------------------------------------===//
1211// SwitchInst Class
1212//===----------------------------------------------------------------------===//
1213
1214//===---------------------------------------------------------------------------
1215/// SwitchInst - Multiway switch
1216///
1217class SwitchInst : public TerminatorInst {
Chris Lattner454928e2005-01-29 00:31:36 +00001218 unsigned ReservedSpace;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001219 // Operand[0] = Value to switch on
1220 // Operand[1] = Default basic block destination
1221 // Operand[2n ] = Value to match
1222 // Operand[2n+1] = BasicBlock to go to on match
1223 SwitchInst(const SwitchInst &RI);
Chris Lattner454928e2005-01-29 00:31:36 +00001224 void init(Value *Value, BasicBlock *Default, unsigned NumCases);
1225 void resizeOperands(unsigned No);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001226public:
Chris Lattner454928e2005-01-29 00:31:36 +00001227 /// SwitchInst ctor - Create a new switch instruction, specifying a value to
1228 /// switch on and a default destination. The number of additional cases can
1229 /// be specified here to make memory allocation more efficient. This
1230 /// constructor can also autoinsert before another instruction.
1231 SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
Misha Brukman9769ab22005-04-21 20:19:05 +00001232 Instruction *InsertBefore = 0)
Chris Lattner454928e2005-01-29 00:31:36 +00001233 : TerminatorInst(Instruction::Switch, 0, 0, InsertBefore) {
1234 init(Value, Default, NumCases);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001235 }
1236
Chris Lattner454928e2005-01-29 00:31:36 +00001237 /// SwitchInst ctor - Create a new switch instruction, specifying a value to
1238 /// switch on and a default destination. The number of additional cases can
1239 /// be specified here to make memory allocation more efficient. This
1240 /// constructor also autoinserts at the end of the specified BasicBlock.
1241 SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
Misha Brukman9769ab22005-04-21 20:19:05 +00001242 BasicBlock *InsertAtEnd)
Chris Lattner454928e2005-01-29 00:31:36 +00001243 : TerminatorInst(Instruction::Switch, 0, 0, InsertAtEnd) {
1244 init(Value, Default, NumCases);
1245 }
1246 ~SwitchInst();
1247
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001248
1249 // Accessor Methods for Switch stmt
Chris Lattner454928e2005-01-29 00:31:36 +00001250 inline Value *getCondition() const { return getOperand(0); }
1251 void setCondition(Value *V) { setOperand(0, V); }
Chris Lattnerbfaf88a2004-12-10 20:35:47 +00001252
Chris Lattner454928e2005-01-29 00:31:36 +00001253 inline BasicBlock *getDefaultDest() const {
1254 return cast<BasicBlock>(getOperand(1));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001255 }
1256
1257 /// getNumCases - return the number of 'cases' in this switch instruction.
1258 /// Note that case #0 is always the default case.
1259 unsigned getNumCases() const {
Chris Lattner454928e2005-01-29 00:31:36 +00001260 return getNumOperands()/2;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001261 }
1262
1263 /// getCaseValue - Return the specified case value. Note that case #0, the
1264 /// default destination, does not have a case value.
Chris Lattnerd1a32602005-02-24 05:32:09 +00001265 ConstantInt *getCaseValue(unsigned i) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001266 assert(i && i < getNumCases() && "Illegal case value to get!");
1267 return getSuccessorValue(i);
1268 }
1269
1270 /// getCaseValue - Return the specified case value. Note that case #0, the
1271 /// default destination, does not have a case value.
Chris Lattnerd1a32602005-02-24 05:32:09 +00001272 const ConstantInt *getCaseValue(unsigned i) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001273 assert(i && i < getNumCases() && "Illegal case value to get!");
1274 return getSuccessorValue(i);
1275 }
1276
1277 /// findCaseValue - Search all of the case values for the specified constant.
1278 /// If it is explicitly handled, return the case number of it, otherwise
1279 /// return 0 to indicate that it is handled by the default handler.
Chris Lattnerd1a32602005-02-24 05:32:09 +00001280 unsigned findCaseValue(const ConstantInt *C) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001281 for (unsigned i = 1, e = getNumCases(); i != e; ++i)
1282 if (getCaseValue(i) == C)
1283 return i;
1284 return 0;
1285 }
1286
1287 /// addCase - Add an entry to the switch instruction...
1288 ///
Chris Lattnerd1a32602005-02-24 05:32:09 +00001289 void addCase(ConstantInt *OnVal, BasicBlock *Dest);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001290
1291 /// removeCase - This method removes the specified successor from the switch
1292 /// instruction. Note that this cannot be used to remove the default
1293 /// destination (successor #0).
1294 ///
1295 void removeCase(unsigned idx);
1296
Chris Lattner454928e2005-01-29 00:31:36 +00001297 virtual SwitchInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001298
Chris Lattner454928e2005-01-29 00:31:36 +00001299 unsigned getNumSuccessors() const { return getNumOperands()/2; }
1300 BasicBlock *getSuccessor(unsigned idx) const {
1301 assert(idx < getNumSuccessors() &&"Successor idx out of range for switch!");
1302 return cast<BasicBlock>(getOperand(idx*2+1));
1303 }
1304 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001305 assert(idx < getNumSuccessors() && "Successor # out of range for switch!");
Chris Lattner454928e2005-01-29 00:31:36 +00001306 setOperand(idx*2+1, reinterpret_cast<Value*>(NewSucc));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001307 }
1308
1309 // getSuccessorValue - Return the value associated with the specified
1310 // successor.
Chris Lattnerd1a32602005-02-24 05:32:09 +00001311 inline ConstantInt *getSuccessorValue(unsigned idx) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001312 assert(idx < getNumSuccessors() && "Successor # out of range!");
Reid Spenceredd5d9e2005-05-15 16:13:11 +00001313 return reinterpret_cast<ConstantInt*>(getOperand(idx*2));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001314 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001315
1316 // Methods for support type inquiry through isa, cast, and dyn_cast:
1317 static inline bool classof(const SwitchInst *) { return true; }
1318 static inline bool classof(const Instruction *I) {
Chris Lattnerd1a32602005-02-24 05:32:09 +00001319 return I->getOpcode() == Instruction::Switch;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001320 }
1321 static inline bool classof(const Value *V) {
1322 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1323 }
Chris Lattner454928e2005-01-29 00:31:36 +00001324private:
1325 virtual BasicBlock *getSuccessorV(unsigned idx) const;
1326 virtual unsigned getNumSuccessorsV() const;
1327 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001328};
1329
1330//===----------------------------------------------------------------------===//
1331// InvokeInst Class
1332//===----------------------------------------------------------------------===//
1333
1334//===---------------------------------------------------------------------------
Chris Lattner3340ffe2005-05-06 20:26:26 +00001335
1336/// InvokeInst - Invoke instruction. The SubclassData field is used to hold the
1337/// calling convention of the call.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001338///
1339class InvokeInst : public TerminatorInst {
1340 InvokeInst(const InvokeInst &BI);
1341 void init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
1342 const std::vector<Value*> &Params);
1343public:
1344 InvokeInst(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Misha Brukman91102862005-03-16 03:46:55 +00001345 const std::vector<Value*> &Params, const std::string &Name = "",
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001346 Instruction *InsertBefore = 0);
1347 InvokeInst(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Misha Brukman91102862005-03-16 03:46:55 +00001348 const std::vector<Value*> &Params, const std::string &Name,
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001349 BasicBlock *InsertAtEnd);
Chris Lattner454928e2005-01-29 00:31:36 +00001350 ~InvokeInst();
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001351
Chris Lattnerf319e832004-10-15 23:52:05 +00001352 virtual InvokeInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001353
1354 bool mayWriteToMemory() const { return true; }
1355
Chris Lattner3340ffe2005-05-06 20:26:26 +00001356 /// getCallingConv/setCallingConv - Get or set the calling convention of this
1357 /// function call.
1358 unsigned getCallingConv() const { return SubclassData; }
1359 void setCallingConv(unsigned CC) {
1360 SubclassData = CC;
1361 }
1362
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001363 /// getCalledFunction - Return the function called, or null if this is an
Chris Lattner721aef62004-11-18 17:46:57 +00001364 /// indirect function invocation.
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001365 ///
Chris Lattner721aef62004-11-18 17:46:57 +00001366 Function *getCalledFunction() const {
Chris Lattner454928e2005-01-29 00:31:36 +00001367 return dyn_cast<Function>(getOperand(0));
Chris Lattner721aef62004-11-18 17:46:57 +00001368 }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001369
1370 // getCalledValue - Get a pointer to a function that is invoked by this inst.
Chris Lattner454928e2005-01-29 00:31:36 +00001371 inline Value *getCalledValue() const { return getOperand(0); }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001372
1373 // get*Dest - Return the destination basic blocks...
Chris Lattner454928e2005-01-29 00:31:36 +00001374 BasicBlock *getNormalDest() const {
1375 return cast<BasicBlock>(getOperand(1));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001376 }
Chris Lattner454928e2005-01-29 00:31:36 +00001377 BasicBlock *getUnwindDest() const {
1378 return cast<BasicBlock>(getOperand(2));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001379 }
Chris Lattner454928e2005-01-29 00:31:36 +00001380 void setNormalDest(BasicBlock *B) {
1381 setOperand(1, reinterpret_cast<Value*>(B));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001382 }
1383
Chris Lattner454928e2005-01-29 00:31:36 +00001384 void setUnwindDest(BasicBlock *B) {
1385 setOperand(2, reinterpret_cast<Value*>(B));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001386 }
1387
Chris Lattner454928e2005-01-29 00:31:36 +00001388 inline BasicBlock *getSuccessor(unsigned i) const {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001389 assert(i < 2 && "Successor # out of range for invoke!");
1390 return i == 0 ? getNormalDest() : getUnwindDest();
1391 }
1392
Chris Lattner454928e2005-01-29 00:31:36 +00001393 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001394 assert(idx < 2 && "Successor # out of range for invoke!");
Chris Lattner454928e2005-01-29 00:31:36 +00001395 setOperand(idx+1, reinterpret_cast<Value*>(NewSucc));
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001396 }
1397
Chris Lattner454928e2005-01-29 00:31:36 +00001398 unsigned getNumSuccessors() const { return 2; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001399
1400 // Methods for support type inquiry through isa, cast, and dyn_cast:
1401 static inline bool classof(const InvokeInst *) { return true; }
1402 static inline bool classof(const Instruction *I) {
1403 return (I->getOpcode() == Instruction::Invoke);
1404 }
1405 static inline bool classof(const Value *V) {
1406 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1407 }
Chris Lattner454928e2005-01-29 00:31:36 +00001408private:
1409 virtual BasicBlock *getSuccessorV(unsigned idx) const;
1410 virtual unsigned getNumSuccessorsV() const;
1411 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001412};
1413
1414
1415//===----------------------------------------------------------------------===//
1416// UnwindInst Class
1417//===----------------------------------------------------------------------===//
1418
1419//===---------------------------------------------------------------------------
1420/// UnwindInst - Immediately exit the current function, unwinding the stack
1421/// until an invoke instruction is found.
1422///
Chris Lattner1fca5ff2004-10-27 16:14:51 +00001423class UnwindInst : public TerminatorInst {
1424public:
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001425 UnwindInst(Instruction *InsertBefore = 0)
Chris Lattner454928e2005-01-29 00:31:36 +00001426 : TerminatorInst(Instruction::Unwind, 0, 0, InsertBefore) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001427 }
1428 UnwindInst(BasicBlock *InsertAtEnd)
Chris Lattner454928e2005-01-29 00:31:36 +00001429 : TerminatorInst(Instruction::Unwind, 0, 0, InsertAtEnd) {
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001430 }
1431
Chris Lattnerf319e832004-10-15 23:52:05 +00001432 virtual UnwindInst *clone() const;
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001433
Chris Lattner454928e2005-01-29 00:31:36 +00001434 unsigned getNumSuccessors() const { return 0; }
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001435
1436 // Methods for support type inquiry through isa, cast, and dyn_cast:
1437 static inline bool classof(const UnwindInst *) { return true; }
1438 static inline bool classof(const Instruction *I) {
1439 return I->getOpcode() == Instruction::Unwind;
1440 }
1441 static inline bool classof(const Value *V) {
1442 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1443 }
Chris Lattner454928e2005-01-29 00:31:36 +00001444private:
1445 virtual BasicBlock *getSuccessorV(unsigned idx) const;
1446 virtual unsigned getNumSuccessorsV() const;
1447 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001448};
1449
Chris Lattner076b3f12004-10-16 18:05:54 +00001450//===----------------------------------------------------------------------===//
1451// UnreachableInst Class
1452//===----------------------------------------------------------------------===//
1453
1454//===---------------------------------------------------------------------------
1455/// UnreachableInst - This function has undefined behavior. In particular, the
1456/// presence of this instruction indicates some higher level knowledge that the
1457/// end of the block cannot be reached.
1458///
Chris Lattner1fca5ff2004-10-27 16:14:51 +00001459class UnreachableInst : public TerminatorInst {
1460public:
Chris Lattner076b3f12004-10-16 18:05:54 +00001461 UnreachableInst(Instruction *InsertBefore = 0)
Chris Lattner454928e2005-01-29 00:31:36 +00001462 : TerminatorInst(Instruction::Unreachable, 0, 0, InsertBefore) {
Chris Lattner076b3f12004-10-16 18:05:54 +00001463 }
1464 UnreachableInst(BasicBlock *InsertAtEnd)
Chris Lattner454928e2005-01-29 00:31:36 +00001465 : TerminatorInst(Instruction::Unreachable, 0, 0, InsertAtEnd) {
Chris Lattner076b3f12004-10-16 18:05:54 +00001466 }
1467
1468 virtual UnreachableInst *clone() const;
1469
Chris Lattner454928e2005-01-29 00:31:36 +00001470 unsigned getNumSuccessors() const { return 0; }
Chris Lattner076b3f12004-10-16 18:05:54 +00001471
1472 // Methods for support type inquiry through isa, cast, and dyn_cast:
1473 static inline bool classof(const UnreachableInst *) { return true; }
1474 static inline bool classof(const Instruction *I) {
1475 return I->getOpcode() == Instruction::Unreachable;
1476 }
1477 static inline bool classof(const Value *V) {
1478 return isa<Instruction>(V) && classof(cast<Instruction>(V));
1479 }
Chris Lattner454928e2005-01-29 00:31:36 +00001480private:
1481 virtual BasicBlock *getSuccessorV(unsigned idx) const;
1482 virtual unsigned getNumSuccessorsV() const;
1483 virtual void setSuccessorV(unsigned idx, BasicBlock *B);
Chris Lattner076b3f12004-10-16 18:05:54 +00001484};
1485
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +00001486} // End llvm namespace
Chris Lattnera892a3a2003-01-27 22:08:52 +00001487
1488#endif