Chris Lattner | a892a3a | 2003-01-27 22:08:52 +0000 | [diff] [blame] | 1 | //===-- llvm/Instructions.h - Instruction subclass definitions --*- C++ -*-===// |
Misha Brukman | 9769ab2 | 2005-04-21 20:19:05 +0000 | [diff] [blame] | 2 | // |
John Criswell | 6fbcc26 | 2003-10-20 20:19:47 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 7ed47a1 | 2007-12-29 19:59:42 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | 9769ab2 | 2005-04-21 20:19:05 +0000 | [diff] [blame] | 7 | // |
John Criswell | 6fbcc26 | 2003-10-20 20:19:47 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | a892a3a | 2003-01-27 22:08:52 +0000 | [diff] [blame] | 9 | // |
| 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 Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 19 | #include "llvm/InstrTypes.h" |
David Greene | 52eec54 | 2007-08-01 03:43:44 +0000 | [diff] [blame] | 20 | #include "llvm/DerivedTypes.h" |
Devang Patel | eaf42ab | 2008-09-23 23:03:40 +0000 | [diff] [blame] | 21 | #include "llvm/Attributes.h" |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 22 | #include "llvm/CallingConv.h" |
Stepan Dyatkovskiy | 0aa32d5 | 2012-05-29 12:26:47 +0000 | [diff] [blame] | 23 | #include "llvm/Support/IntegersSubset.h" |
| 24 | #include "llvm/Support/IntegersSubsetMapping.h" |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/ArrayRef.h" |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/SmallVector.h" |
Eli Friedman | 47f3513 | 2011-07-25 23:16:38 +0000 | [diff] [blame] | 27 | #include "llvm/Support/ErrorHandling.h" |
Dan Gohman | d68a076 | 2009-01-05 17:59:02 +0000 | [diff] [blame] | 28 | #include <iterator> |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 29 | |
| 30 | namespace llvm { |
| 31 | |
Chris Lattner | d1a3260 | 2005-02-24 05:32:09 +0000 | [diff] [blame] | 32 | class ConstantInt; |
Reid Spencer | 3da4384 | 2007-02-28 22:00:54 +0000 | [diff] [blame] | 33 | class ConstantRange; |
| 34 | class APInt; |
Benjamin Kramer | 12ddd40 | 2009-08-11 17:45:13 +0000 | [diff] [blame] | 35 | class LLVMContext; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 36 | |
Eli Friedman | 47f3513 | 2011-07-25 23:16:38 +0000 | [diff] [blame] | 37 | enum 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 | |
| 48 | enum SynchronizationScope { |
| 49 | SingleThread = 0, |
| 50 | CrossThread = 1 |
| 51 | }; |
| 52 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 53 | //===----------------------------------------------------------------------===// |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 54 | // AllocaInst Class |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 55 | //===----------------------------------------------------------------------===// |
| 56 | |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 57 | /// AllocaInst - an instruction to allocate memory on the stack |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 58 | /// |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 59 | class AllocaInst : public UnaryInstruction { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 60 | protected: |
| 61 | virtual AllocaInst *clone_impl() const; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 62 | public: |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 63 | explicit AllocaInst(Type *Ty, Value *ArraySize = 0, |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 64 | const Twine &Name = "", Instruction *InsertBefore = 0); |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 65 | AllocaInst(Type *Ty, Value *ArraySize, |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 66 | const Twine &Name, BasicBlock *InsertAtEnd); |
| 67 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 68 | AllocaInst(Type *Ty, const Twine &Name, Instruction *InsertBefore = 0); |
| 69 | AllocaInst(Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd); |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 70 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 71 | AllocaInst(Type *Ty, Value *ArraySize, unsigned Align, |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 72 | const Twine &Name = "", Instruction *InsertBefore = 0); |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 73 | AllocaInst(Type *Ty, Value *ArraySize, unsigned Align, |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 74 | const Twine &Name, BasicBlock *InsertAtEnd); |
| 75 | |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 76 | // Out of line virtual method, so the vtable, etc. has a home. |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 77 | virtual ~AllocaInst(); |
Gordon Henriksen | afba8fe | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 78 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 79 | /// 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 Gohman | 18476ee | 2009-07-07 20:47:48 +0000 | [diff] [blame] | 84 | /// getArraySize - Get the number of elements allocated. For a simple |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 85 | /// allocation of a single element, this will return a constant 1 value. |
| 86 | /// |
Devang Patel | 4d4a5e0 | 2008-02-23 01:11:02 +0000 | [diff] [blame] | 87 | const Value *getArraySize() const { return getOperand(0); } |
| 88 | Value *getArraySize() { return getOperand(0); } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 89 | |
| 90 | /// getType - Overload to return most specific pointer type |
| 91 | /// |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 92 | PointerType *getType() const { |
| 93 | return reinterpret_cast<PointerType*>(Instruction::getType()); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | /// getAllocatedType - Return the type that is being allocated by the |
| 97 | /// instruction. |
| 98 | /// |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 99 | Type *getAllocatedType() const; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 100 | |
Nate Begeman | 14b0529 | 2005-11-05 09:21:28 +0000 | [diff] [blame] | 101 | /// getAlignment - Return the alignment of the memory that is being allocated |
| 102 | /// by the instruction. |
| 103 | /// |
Chris Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 104 | unsigned getAlignment() const { |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 105 | return (1u << getSubclassDataFromInstruction()) >> 1; |
Chris Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 106 | } |
Dan Gohman | 5283707 | 2008-03-24 16:55:58 +0000 | [diff] [blame] | 107 | void setAlignment(unsigned Align); |
Chris Lattner | f56a8db | 2006-10-03 17:09:12 +0000 | [diff] [blame] | 108 | |
Chris Lattner | c5dd22a | 2008-11-26 02:54:17 +0000 | [diff] [blame] | 109 | /// 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 Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 113 | |
| 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 Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 122 | private: |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 123 | // 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 Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 127 | } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 128 | }; |
| 129 | |
| 130 | |
| 131 | //===----------------------------------------------------------------------===// |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 132 | // LoadInst Class |
| 133 | //===----------------------------------------------------------------------===// |
| 134 | |
Chris Lattner | 88fe29a | 2005-02-05 01:44:18 +0000 | [diff] [blame] | 135 | /// 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 Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 137 | /// |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 138 | class LoadInst : public UnaryInstruction { |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 139 | void AssertOK(); |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 140 | protected: |
| 141 | virtual LoadInst *clone_impl() const; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 142 | public: |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 143 | LoadInst(Value *Ptr, const Twine &NameStr, Instruction *InsertBefore); |
| 144 | LoadInst(Value *Ptr, const Twine &NameStr, BasicBlock *InsertAtEnd); |
Daniel Dunbar | 3603d7a | 2009-08-11 18:11:15 +0000 | [diff] [blame] | 145 | LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile = false, |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 146 | Instruction *InsertBefore = 0); |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 147 | LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile, |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 148 | BasicBlock *InsertAtEnd); |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 149 | LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile, |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 150 | unsigned Align, Instruction *InsertBefore = 0); |
| 151 | LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile, |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 152 | unsigned Align, BasicBlock *InsertAtEnd); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 153 | 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 Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 161 | |
Daniel Dunbar | 3603d7a | 2009-08-11 18:11:15 +0000 | [diff] [blame] | 162 | 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 Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 169 | /// isVolatile - Return true if this is a load from a volatile memory |
| 170 | /// location. |
| 171 | /// |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 172 | bool isVolatile() const { return getSubclassDataFromInstruction() & 1; } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 173 | |
| 174 | /// setVolatile - Specify whether this is a volatile load or not. |
| 175 | /// |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 176 | void setVolatile(bool V) { |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 177 | setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) | |
| 178 | (V ? 1 : 0)); |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 179 | } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 180 | |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 181 | /// getAlignment - Return the alignment of the access that is being performed |
| 182 | /// |
| 183 | unsigned getAlignment() const { |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 184 | return (1 << ((getSubclassDataFromInstruction() >> 1) & 31)) >> 1; |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 185 | } |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 186 | |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 187 | void setAlignment(unsigned Align); |
| 188 | |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 189 | /// 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 Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 225 | Value *getPointerOperand() { return getOperand(0); } |
| 226 | const Value *getPointerOperand() const { return getOperand(0); } |
| 227 | static unsigned getPointerOperandIndex() { return 0U; } |
| 228 | |
Chris Lattner | a07ae6b | 2009-08-30 19:45:21 +0000 | [diff] [blame] | 229 | unsigned getPointerAddressSpace() const { |
| 230 | return cast<PointerType>(getPointerOperand()->getType())->getAddressSpace(); |
| 231 | } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 232 | |
| 233 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 234 | // 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 Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 242 | private: |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 243 | // 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 Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 247 | } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 248 | }; |
| 249 | |
| 250 | |
| 251 | //===----------------------------------------------------------------------===// |
| 252 | // StoreInst Class |
| 253 | //===----------------------------------------------------------------------===// |
| 254 | |
Misha Brukman | 9769ab2 | 2005-04-21 20:19:05 +0000 | [diff] [blame] | 255 | /// StoreInst - an instruction for storing to memory |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 256 | /// |
| 257 | class StoreInst : public Instruction { |
Craig Topper | ef1623f | 2012-09-18 03:25:49 +0000 | [diff] [blame] | 258 | void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION; |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 259 | void AssertOK(); |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 260 | protected: |
| 261 | virtual StoreInst *clone_impl() const; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 262 | public: |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 263 | // allocate space for exactly two operands |
| 264 | void *operator new(size_t s) { |
| 265 | return User::operator new(s, 2); |
| 266 | } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 267 | 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 Gohman | 6ab2d18 | 2007-07-18 20:51:11 +0000 | [diff] [blame] | 272 | StoreInst(Value *Val, Value *Ptr, bool isVolatile, |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 273 | unsigned Align, Instruction *InsertBefore = 0); |
| 274 | StoreInst(Value *Val, Value *Ptr, bool isVolatile, |
Dan Gohman | 6ab2d18 | 2007-07-18 20:51:11 +0000 | [diff] [blame] | 275 | unsigned Align, BasicBlock *InsertAtEnd); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 276 | 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 Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 285 | |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 286 | /// isVolatile - Return true if this is a store to a volatile memory |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 287 | /// location. |
| 288 | /// |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 289 | bool isVolatile() const { return getSubclassDataFromInstruction() & 1; } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 290 | |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 291 | /// setVolatile - Specify whether this is a volatile store or not. |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 292 | /// |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 293 | void setVolatile(bool V) { |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 294 | setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) | |
| 295 | (V ? 1 : 0)); |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 296 | } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 297 | |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 298 | /// Transparently provide more efficient getOperand methods. |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 299 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 300 | |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 301 | /// getAlignment - Return the alignment of the access that is being performed |
| 302 | /// |
| 303 | unsigned getAlignment() const { |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 304 | return (1 << ((getSubclassDataFromInstruction() >> 1) & 31)) >> 1; |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 305 | } |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 306 | |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 307 | void setAlignment(unsigned Align); |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 308 | |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 309 | /// 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 Lattner | 41c9c0e | 2010-06-26 23:26:37 +0000 | [diff] [blame] | 345 | Value *getValueOperand() { return getOperand(0); } |
| 346 | const Value *getValueOperand() const { return getOperand(0); } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 347 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 348 | Value *getPointerOperand() { return getOperand(1); } |
| 349 | const Value *getPointerOperand() const { return getOperand(1); } |
| 350 | static unsigned getPointerOperandIndex() { return 1U; } |
| 351 | |
Chris Lattner | a07ae6b | 2009-08-30 19:45:21 +0000 | [diff] [blame] | 352 | unsigned getPointerAddressSpace() const { |
| 353 | return cast<PointerType>(getPointerOperand()->getType())->getAddressSpace(); |
| 354 | } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 355 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 356 | // 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 Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 364 | private: |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 365 | // 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 Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 369 | } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 370 | }; |
| 371 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 372 | template <> |
Jay Foad | 67c619b | 2011-01-11 15:07:38 +0000 | [diff] [blame] | 373 | struct OperandTraits<StoreInst> : public FixedNumOperandTraits<StoreInst, 2> { |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 374 | }; |
| 375 | |
| 376 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(StoreInst, Value) |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 377 | |
| 378 | //===----------------------------------------------------------------------===// |
Eli Friedman | 47f3513 | 2011-07-25 23:16:38 +0000 | [diff] [blame] | 379 | // FenceInst Class |
| 380 | //===----------------------------------------------------------------------===// |
| 381 | |
| 382 | /// FenceInst - an instruction for ordering other memory operations |
| 383 | /// |
| 384 | class FenceInst : public Instruction { |
Craig Topper | ef1623f | 2012-09-18 03:25:49 +0000 | [diff] [blame] | 385 | void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION; |
Eli Friedman | 47f3513 | 2011-07-25 23:16:38 +0000 | [diff] [blame] | 386 | void Init(AtomicOrdering Ordering, SynchronizationScope SynchScope); |
| 387 | protected: |
| 388 | virtual FenceInst *clone_impl() const; |
| 389 | public: |
| 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 Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 412 | setInstructionSubclassData((getSubclassDataFromInstruction() & 1) | |
| 413 | (Ordering << 1)); |
Eli Friedman | 47f3513 | 2011-07-25 23:16:38 +0000 | [diff] [blame] | 414 | } |
| 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 | } |
| 436 | private: |
| 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 Friedman | ff03048 | 2011-07-28 21:48:00 +0000 | [diff] [blame] | 445 | // 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 | /// |
| 452 | class AtomicCmpXchgInst : public Instruction { |
Craig Topper | ef1623f | 2012-09-18 03:25:49 +0000 | [diff] [blame] | 453 | void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION; |
Eli Friedman | ff03048 | 2011-07-28 21:48:00 +0000 | [diff] [blame] | 454 | void Init(Value *Ptr, Value *Cmp, Value *NewVal, |
| 455 | AtomicOrdering Ordering, SynchronizationScope SynchScope); |
| 456 | protected: |
| 457 | virtual AtomicCmpXchgInst *clone_impl() const; |
| 458 | public: |
| 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 | } |
| 536 | private: |
| 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 | |
| 544 | template <> |
| 545 | struct OperandTraits<AtomicCmpXchgInst> : |
| 546 | public FixedNumOperandTraits<AtomicCmpXchgInst, 3> { |
| 547 | }; |
| 548 | |
| 549 | DEFINE_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 | /// |
| 559 | class AtomicRMWInst : public Instruction { |
Craig Topper | ef1623f | 2012-09-18 03:25:49 +0000 | [diff] [blame] | 560 | void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION; |
Eli Friedman | ff03048 | 2011-07-28 21:48:00 +0000 | [diff] [blame] | 561 | protected: |
| 562 | virtual AtomicRMWInst *clone_impl() const; |
| 563 | public: |
| 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 Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 638 | setInstructionSubclassData((getSubclassDataFromInstruction() & ~(7 << 2)) | |
Eli Friedman | ff03048 | 2011-07-28 21:48:00 +0000 | [diff] [blame] | 639 | (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 Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 652 | return AtomicOrdering((getSubclassDataFromInstruction() >> 2) & 7); |
Eli Friedman | ff03048 | 2011-07-28 21:48:00 +0000 | [diff] [blame] | 653 | } |
| 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 | } |
| 680 | private: |
| 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 | |
| 690 | template <> |
| 691 | struct OperandTraits<AtomicRMWInst> |
| 692 | : public FixedNumOperandTraits<AtomicRMWInst,2> { |
| 693 | }; |
| 694 | |
| 695 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(AtomicRMWInst, Value) |
| 696 | |
| 697 | //===----------------------------------------------------------------------===// |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 698 | // GetElementPtrInst Class |
| 699 | //===----------------------------------------------------------------------===// |
| 700 | |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 701 | // checkGEPType - Simple wrapper function to give a better assertion failure |
David Greene | b8f7479 | 2007-09-04 15:46:09 +0000 | [diff] [blame] | 702 | // message on bad indexes for a gep instruction. |
| 703 | // |
Chandler Carruth | 305b515 | 2012-06-20 08:39:33 +0000 | [diff] [blame] | 704 | inline Type *checkGEPType(Type *Ty) { |
David Greene | b8f7479 | 2007-09-04 15:46:09 +0000 | [diff] [blame] | 705 | assert(Ty && "Invalid GetElementPtrInst indices for type!"); |
| 706 | return Ty; |
| 707 | } |
| 708 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 709 | /// GetElementPtrInst - an instruction for type-safe pointer arithmetic to |
| 710 | /// access elements of arrays and structs |
| 711 | /// |
| 712 | class GetElementPtrInst : public Instruction { |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 713 | GetElementPtrInst(const GetElementPtrInst &GEPI); |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 714 | void init(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &NameStr); |
David Greene | b8f7479 | 2007-09-04 15:46:09 +0000 | [diff] [blame] | 715 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 716 | /// Constructors - Create a getelementptr instruction with a base pointer an |
Mikhail Glushenkov | d33b77b | 2010-10-27 07:39:54 +0000 | [diff] [blame] | 717 | /// list of indices. The first ctor can optionally insert before an existing |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 718 | /// instruction, the second appends the new instruction to the specified |
| 719 | /// BasicBlock. |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 720 | inline GetElementPtrInst(Value *Ptr, ArrayRef<Value *> IdxList, |
| 721 | unsigned Values, const Twine &NameStr, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 722 | Instruction *InsertBefore); |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 723 | inline GetElementPtrInst(Value *Ptr, ArrayRef<Value *> IdxList, |
| 724 | unsigned Values, const Twine &NameStr, |
| 725 | BasicBlock *InsertAtEnd); |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 726 | protected: |
| 727 | virtual GetElementPtrInst *clone_impl() const; |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 728 | public: |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 729 | static GetElementPtrInst *Create(Value *Ptr, ArrayRef<Value *> IdxList, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 730 | const Twine &NameStr = "", |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 731 | Instruction *InsertBefore = 0) { |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 732 | unsigned Values = 1 + unsigned(IdxList.size()); |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 733 | return new(Values) |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 734 | GetElementPtrInst(Ptr, IdxList, Values, NameStr, InsertBefore); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 735 | } |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 736 | static GetElementPtrInst *Create(Value *Ptr, ArrayRef<Value *> IdxList, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 737 | const Twine &NameStr, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 738 | BasicBlock *InsertAtEnd) { |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 739 | unsigned Values = 1 + unsigned(IdxList.size()); |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 740 | return new(Values) |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 741 | GetElementPtrInst(Ptr, IdxList, Values, NameStr, InsertAtEnd); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 742 | } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 743 | |
Dan Gohman | e2574d3 | 2009-08-11 17:57:01 +0000 | [diff] [blame] | 744 | /// Create an "inbounds" getelementptr. See the documentation for the |
| 745 | /// "inbounds" flag in LangRef.html for details. |
Mikhail Glushenkov | d33b77b | 2010-10-27 07:39:54 +0000 | [diff] [blame] | 746 | static GetElementPtrInst *CreateInBounds(Value *Ptr, |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 747 | ArrayRef<Value *> IdxList, |
Dan Gohman | e2574d3 | 2009-08-11 17:57:01 +0000 | [diff] [blame] | 748 | const Twine &NameStr = "", |
| 749 | Instruction *InsertBefore = 0) { |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 750 | GetElementPtrInst *GEP = Create(Ptr, IdxList, NameStr, InsertBefore); |
Dan Gohman | f8dbee7 | 2009-09-07 23:54:19 +0000 | [diff] [blame] | 751 | GEP->setIsInBounds(true); |
Dan Gohman | e2574d3 | 2009-08-11 17:57:01 +0000 | [diff] [blame] | 752 | return GEP; |
| 753 | } |
Dan Gohman | e2574d3 | 2009-08-11 17:57:01 +0000 | [diff] [blame] | 754 | static GetElementPtrInst *CreateInBounds(Value *Ptr, |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 755 | ArrayRef<Value *> IdxList, |
Dan Gohman | e2574d3 | 2009-08-11 17:57:01 +0000 | [diff] [blame] | 756 | const Twine &NameStr, |
| 757 | BasicBlock *InsertAtEnd) { |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 758 | GetElementPtrInst *GEP = Create(Ptr, IdxList, NameStr, InsertAtEnd); |
Dan Gohman | f8dbee7 | 2009-09-07 23:54:19 +0000 | [diff] [blame] | 759 | GEP->setIsInBounds(true); |
Dan Gohman | e2574d3 | 2009-08-11 17:57:01 +0000 | [diff] [blame] | 760 | return GEP; |
| 761 | } |
| 762 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 763 | /// Transparently provide more efficient getOperand methods. |
| 764 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
| 765 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 766 | // getType - Overload to return most specific pointer type... |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 767 | PointerType *getType() const { |
| 768 | return reinterpret_cast<PointerType*>(Instruction::getType()); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 769 | } |
| 770 | |
| 771 | /// getIndexedType - Returns the type of the element that would be loaded with |
| 772 | /// a load instruction with the specified parameters. |
| 773 | /// |
Dan Gohman | e2d896f | 2008-05-15 23:35:32 +0000 | [diff] [blame] | 774 | /// Null is returned if the indices are invalid for the specified |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 775 | /// pointer type. |
| 776 | /// |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 777 | 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 Brukman | 9769ab2 | 2005-04-21 20:19:05 +0000 | [diff] [blame] | 780 | |
Nadav Rotem | 1608769 | 2011-12-05 06:29:09 +0000 | [diff] [blame] | 781 | /// getIndexedType - Returns the address space used by the GEP pointer. |
| 782 | /// |
| 783 | static unsigned getAddressSpace(Value *Ptr); |
| 784 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 785 | 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 Rotem | 1608769 | 2011-12-05 06:29:09 +0000 | [diff] [blame] | 797 | return 0U; // get index for modifying correct operand. |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 798 | } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 799 | |
Chris Lattner | 8a67ac5 | 2009-08-30 20:06:40 +0000 | [diff] [blame] | 800 | unsigned getPointerAddressSpace() const { |
| 801 | return cast<PointerType>(getType())->getAddressSpace(); |
| 802 | } |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 803 | |
Chris Lattner | 3bc6ced | 2009-01-09 05:27:40 +0000 | [diff] [blame] | 804 | /// getPointerOperandType - Method to return the pointer operand as a |
| 805 | /// PointerType. |
Nadav Rotem | 1608769 | 2011-12-05 06:29:09 +0000 | [diff] [blame] | 806 | Type *getPointerOperandType() const { |
| 807 | return getPointerOperand()->getType(); |
Chris Lattner | 3bc6ced | 2009-01-09 05:27:40 +0000 | [diff] [blame] | 808 | } |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 809 | |
Nadav Rotem | 1608769 | 2011-12-05 06:29:09 +0000 | [diff] [blame] | 810 | /// 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 Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 825 | |
Devang Patel | 4d4a5e0 | 2008-02-23 01:11:02 +0000 | [diff] [blame] | 826 | unsigned getNumIndices() const { // Note: always non-negative |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 827 | return getNumOperands() - 1; |
| 828 | } |
Misha Brukman | 9769ab2 | 2005-04-21 20:19:05 +0000 | [diff] [blame] | 829 | |
Devang Patel | 4d4a5e0 | 2008-02-23 01:11:02 +0000 | [diff] [blame] | 830 | bool hasIndices() const { |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 831 | return getNumOperands() > 1; |
| 832 | } |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 833 | |
Chris Lattner | 6f771d4 | 2007-04-14 00:12:57 +0000 | [diff] [blame] | 834 | /// 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 Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 838 | |
Chris Lattner | 6b0974c | 2007-04-27 20:35:56 +0000 | [diff] [blame] | 839 | /// 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 Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 843 | |
Dan Gohman | f8dbee7 | 2009-09-07 23:54:19 +0000 | [diff] [blame] | 844 | /// setIsInBounds - Set or clear the inbounds flag on this GEP instruction. |
| 845 | /// See LangRef.html for the meaning of inbounds on a getelementptr. |
Nick Lewycky | ae05e7d | 2009-09-27 21:33:04 +0000 | [diff] [blame] | 846 | void setIsInBounds(bool b = true); |
| 847 | |
| 848 | /// isInBounds - Determine whether the GEP has the inbounds flag. |
| 849 | bool isInBounds() const; |
Dan Gohman | f8dbee7 | 2009-09-07 23:54:19 +0000 | [diff] [blame] | 850 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 851 | // 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 Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 861 | template <> |
Jay Foad | 67c619b | 2011-01-11 15:07:38 +0000 | [diff] [blame] | 862 | struct OperandTraits<GetElementPtrInst> : |
| 863 | public VariadicOperandTraits<GetElementPtrInst, 1> { |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 864 | }; |
| 865 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 866 | GetElementPtrInst::GetElementPtrInst(Value *Ptr, |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 867 | ArrayRef<Value *> IdxList, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 868 | unsigned Values, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 869 | const Twine &NameStr, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 870 | Instruction *InsertBefore) |
Nadav Rotem | 1608769 | 2011-12-05 06:29:09 +0000 | [diff] [blame] | 871 | : Instruction(getGEPReturnType(Ptr, IdxList), |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 872 | GetElementPtr, |
| 873 | OperandTraits<GetElementPtrInst>::op_end(this) - Values, |
| 874 | Values, InsertBefore) { |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 875 | init(Ptr, IdxList, NameStr); |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 876 | } |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 877 | GetElementPtrInst::GetElementPtrInst(Value *Ptr, |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 878 | ArrayRef<Value *> IdxList, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 879 | unsigned Values, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 880 | const Twine &NameStr, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 881 | BasicBlock *InsertAtEnd) |
Nadav Rotem | 1608769 | 2011-12-05 06:29:09 +0000 | [diff] [blame] | 882 | : Instruction(getGEPReturnType(Ptr, IdxList), |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 883 | GetElementPtr, |
| 884 | OperandTraits<GetElementPtrInst>::op_end(this) - Values, |
| 885 | Values, InsertAtEnd) { |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 886 | init(Ptr, IdxList, NameStr); |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 887 | } |
| 888 | |
| 889 | |
| 890 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(GetElementPtrInst, Value) |
| 891 | |
| 892 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 893 | //===----------------------------------------------------------------------===// |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 894 | // ICmpInst Class |
| 895 | //===----------------------------------------------------------------------===// |
| 896 | |
| 897 | /// This instruction compares its operands according to the predicate given |
Nate Begeman | ac80ade | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 898 | /// to the constructor. It only operates on integers or pointers. The operands |
| 899 | /// must be identical types. |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 900 | /// @brief Represent an integer comparison operator. |
| 901 | class ICmpInst: public CmpInst { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 902 | protected: |
Chris Lattner | 7a2bdde | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 903 | /// @brief Clone an identical ICmpInst |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 904 | virtual ICmpInst *clone_impl() const; |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 905 | public: |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 906 | /// @brief Constructor with insert-before-instruction semantics. |
| 907 | ICmpInst( |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 908 | Instruction *InsertBefore, ///< Where to insert |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 909 | 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 Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 912 | const Twine &NameStr = "" ///< Name of the instruction |
Owen Anderson | debcb01 | 2009-07-29 22:17:13 +0000 | [diff] [blame] | 913 | ) : CmpInst(makeCmpResultType(LHS->getType()), |
Dan Gohman | f72fb67 | 2008-09-09 01:02:47 +0000 | [diff] [blame] | 914 | Instruction::ICmp, pred, LHS, RHS, NameStr, |
Nate Begeman | ac80ade | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 915 | InsertBefore) { |
| 916 | assert(pred >= CmpInst::FIRST_ICMP_PREDICATE && |
| 917 | pred <= CmpInst::LAST_ICMP_PREDICATE && |
| 918 | "Invalid ICmp predicate value"); |
Nate Begeman | 31cd33a | 2008-05-14 20:28:31 +0000 | [diff] [blame] | 919 | assert(getOperand(0)->getType() == getOperand(1)->getType() && |
Nate Begeman | ac80ade | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 920 | "Both operands to ICmp instruction are not of the same type!"); |
| 921 | // Check that the operands are the right type |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 922 | assert((getOperand(0)->getType()->isIntOrIntVectorTy() || |
Nadav Rotem | 1608769 | 2011-12-05 06:29:09 +0000 | [diff] [blame] | 923 | getOperand(0)->getType()->getScalarType()->isPointerTy()) && |
Nate Begeman | ac80ade | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 924 | "Invalid operand types for ICmp instruction"); |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 925 | } |
| 926 | |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 927 | /// @brief Constructor with insert-at-end semantics. |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 928 | ICmpInst( |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 929 | 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 Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 933 | const Twine &NameStr = "" ///< Name of the instruction |
Owen Anderson | debcb01 | 2009-07-29 22:17:13 +0000 | [diff] [blame] | 934 | ) : CmpInst(makeCmpResultType(LHS->getType()), |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 935 | 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 Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 943 | assert((getOperand(0)->getType()->isIntOrIntVectorTy() || |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 944 | getOperand(0)->getType()->isPointerTy()) && |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 945 | "Invalid operand types for ICmp instruction"); |
| 946 | } |
| 947 | |
| 948 | /// @brief Constructor with no-insertion semantics |
| 949 | ICmpInst( |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 950 | 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 Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 953 | const Twine &NameStr = "" ///< Name of the instruction |
Owen Anderson | debcb01 | 2009-07-29 22:17:13 +0000 | [diff] [blame] | 954 | ) : CmpInst(makeCmpResultType(LHS->getType()), |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 955 | Instruction::ICmp, pred, LHS, RHS, NameStr) { |
Nate Begeman | ac80ade | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 956 | assert(pred >= CmpInst::FIRST_ICMP_PREDICATE && |
| 957 | pred <= CmpInst::LAST_ICMP_PREDICATE && |
| 958 | "Invalid ICmp predicate value"); |
Nate Begeman | 31cd33a | 2008-05-14 20:28:31 +0000 | [diff] [blame] | 959 | assert(getOperand(0)->getType() == getOperand(1)->getType() && |
Nate Begeman | ac80ade | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 960 | "Both operands to ICmp instruction are not of the same type!"); |
| 961 | // Check that the operands are the right type |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 962 | assert((getOperand(0)->getType()->isIntOrIntVectorTy() || |
Nadav Rotem | 1608769 | 2011-12-05 06:29:09 +0000 | [diff] [blame] | 963 | getOperand(0)->getType()->getScalarType()->isPointerTy()) && |
Nate Begeman | ac80ade | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 964 | "Invalid operand types for ICmp instruction"); |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 965 | } |
| 966 | |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 967 | /// 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 Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 978 | |
Nick Lewycky | 4189a53 | 2008-01-28 03:48:02 +0000 | [diff] [blame] | 979 | /// 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 Lattner | c2bfadb | 2007-11-22 23:43:29 +0000 | [diff] [blame] | 991 | /// 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 Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 996 | |
Chris Lattner | c2bfadb | 2007-11-22 23:43:29 +0000 | [diff] [blame] | 997 | /// isEquality - Return true if this predicate is either EQ or NE. This also |
| 998 | /// tests for commutativity. |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 999 | bool isEquality() const { |
Chris Lattner | c2bfadb | 2007-11-22 23:43:29 +0000 | [diff] [blame] | 1000 | return isEquality(getPredicate()); |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1001 | } |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 1002 | |
| 1003 | /// @returns true if the predicate of this ICmpInst is commutative |
| 1004 | /// @brief Determine if this relation is commutative. |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1005 | bool isCommutative() const { return isEquality(); } |
| 1006 | |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1007 | /// isRelational - Return true if the predicate is relational (not EQ or NE). |
Chris Lattner | c2bfadb | 2007-11-22 23:43:29 +0000 | [diff] [blame] | 1008 | /// |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1009 | bool isRelational() const { |
| 1010 | return !isEquality(); |
| 1011 | } |
| 1012 | |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1013 | /// isRelational - Return true if the predicate is relational (not EQ or NE). |
Chris Lattner | c2bfadb | 2007-11-22 23:43:29 +0000 | [diff] [blame] | 1014 | /// |
| 1015 | static bool isRelational(Predicate P) { |
| 1016 | return !isEquality(P); |
| 1017 | } |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1018 | |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1019 | /// Initialize a set of values that all satisfy the predicate with C. |
Reid Spencer | 3da4384 | 2007-02-28 22:00:54 +0000 | [diff] [blame] | 1020 | /// @brief Make a ConstantRange for a relation with a constant value. |
| 1021 | static ConstantRange makeConstantRange(Predicate pred, const APInt &C); |
| 1022 | |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1023 | /// 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 Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1026 | /// (e.g. ult). |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1027 | /// @brief Swap operands and adjust predicate. |
| 1028 | void swapOperands() { |
Chris Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 1029 | setPredicate(getSwappedPredicate()); |
Gabor Greif | 94fb68b | 2008-05-13 22:51:52 +0000 | [diff] [blame] | 1030 | Op<0>().swap(Op<1>()); |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1031 | } |
| 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 Gohman | f72fb67 | 2008-09-09 01:02:47 +0000 | [diff] [blame] | 1041 | |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1042 | }; |
| 1043 | |
| 1044 | //===----------------------------------------------------------------------===// |
| 1045 | // FCmpInst Class |
| 1046 | //===----------------------------------------------------------------------===// |
| 1047 | |
| 1048 | /// This instruction compares its operands according to the predicate given |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1049 | /// to the constructor. It only operates on floating point values or packed |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1050 | /// vectors of floating point values. The operands must be identical types. |
| 1051 | /// @brief Represents a floating point comparison operator. |
| 1052 | class FCmpInst: public CmpInst { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 1053 | protected: |
Chris Lattner | 7a2bdde | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 1054 | /// @brief Clone an identical FCmpInst |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 1055 | virtual FCmpInst *clone_impl() const; |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1056 | public: |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1057 | /// @brief Constructor with insert-before-instruction semantics. |
| 1058 | FCmpInst( |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 1059 | Instruction *InsertBefore, ///< Where to insert |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1060 | 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 Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1063 | const Twine &NameStr = "" ///< Name of the instruction |
Owen Anderson | debcb01 | 2009-07-29 22:17:13 +0000 | [diff] [blame] | 1064 | ) : CmpInst(makeCmpResultType(LHS->getType()), |
Dan Gohman | f72fb67 | 2008-09-09 01:02:47 +0000 | [diff] [blame] | 1065 | Instruction::FCmp, pred, LHS, RHS, NameStr, |
Nate Begeman | ac80ade | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 1066 | InsertBefore) { |
| 1067 | assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && |
| 1068 | "Invalid FCmp predicate value"); |
Nate Begeman | 31cd33a | 2008-05-14 20:28:31 +0000 | [diff] [blame] | 1069 | assert(getOperand(0)->getType() == getOperand(1)->getType() && |
Nate Begeman | ac80ade | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 1070 | "Both operands to FCmp instruction are not of the same type!"); |
| 1071 | // Check that the operands are the right type |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1072 | assert(getOperand(0)->getType()->isFPOrFPVectorTy() && |
Nate Begeman | ac80ade | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 1073 | "Invalid operand types for FCmp instruction"); |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1074 | } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 1075 | |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 1076 | /// @brief Constructor with insert-at-end semantics. |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1077 | FCmpInst( |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 1078 | 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 Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1082 | const Twine &NameStr = "" ///< Name of the instruction |
Owen Anderson | debcb01 | 2009-07-29 22:17:13 +0000 | [diff] [blame] | 1083 | ) : CmpInst(makeCmpResultType(LHS->getType()), |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 1084 | 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 Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1091 | assert(getOperand(0)->getType()->isFPOrFPVectorTy() && |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 1092 | "Invalid operand types for FCmp instruction"); |
| 1093 | } |
| 1094 | |
| 1095 | /// @brief Constructor with no-insertion semantics |
| 1096 | FCmpInst( |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1097 | 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 Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1100 | const Twine &NameStr = "" ///< Name of the instruction |
Owen Anderson | debcb01 | 2009-07-29 22:17:13 +0000 | [diff] [blame] | 1101 | ) : CmpInst(makeCmpResultType(LHS->getType()), |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 1102 | Instruction::FCmp, pred, LHS, RHS, NameStr) { |
Nate Begeman | ac80ade | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 1103 | assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && |
| 1104 | "Invalid FCmp predicate value"); |
Nate Begeman | 31cd33a | 2008-05-14 20:28:31 +0000 | [diff] [blame] | 1105 | assert(getOperand(0)->getType() == getOperand(1)->getType() && |
Nate Begeman | ac80ade | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 1106 | "Both operands to FCmp instruction are not of the same type!"); |
| 1107 | // Check that the operands are the right type |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1108 | assert(getOperand(0)->getType()->isFPOrFPVectorTy() && |
Nate Begeman | ac80ade | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 1109 | "Invalid operand types for FCmp instruction"); |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1110 | } |
| 1111 | |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1112 | /// @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 Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 1115 | return getPredicate() == FCMP_OEQ || getPredicate() == FCMP_ONE || |
| 1116 | getPredicate() == FCMP_UEQ || getPredicate() == FCMP_UNE; |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1117 | } |
Dan Gohman | 793df07 | 2008-09-16 16:44:00 +0000 | [diff] [blame] | 1118 | |
| 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 Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 1123 | getPredicate() == FCMP_FALSE || |
| 1124 | getPredicate() == FCMP_TRUE || |
| 1125 | getPredicate() == FCMP_ORD || |
| 1126 | getPredicate() == FCMP_UNO; |
Dan Gohman | 793df07 | 2008-09-16 16:44:00 +0000 | [diff] [blame] | 1127 | } |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1128 | |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1129 | /// @returns true if the predicate is relational (not EQ or NE). |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1130 | /// @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 Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1136 | /// (e.g. ult). |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1137 | /// @brief Swap operands and adjust predicate. |
| 1138 | void swapOperands() { |
Chris Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 1139 | setPredicate(getSwappedPredicate()); |
Gabor Greif | 94fb68b | 2008-05-13 22:51:52 +0000 | [diff] [blame] | 1140 | Op<0>().swap(Op<1>()); |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 1141 | } |
| 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 Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1153 | //===----------------------------------------------------------------------===// |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1154 | /// CallInst - This class represents a function call, abstracting a target |
Chris Lattner | 3340ffe | 2005-05-06 20:26:26 +0000 | [diff] [blame] | 1155 | /// 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 Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1158 | /// |
| 1159 | class CallInst : public Instruction { |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1160 | AttrListPtr AttributeList; ///< parameter attributes for call |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1161 | CallInst(const CallInst &CI); |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1162 | void init(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr); |
| 1163 | void init(Value *Func, const Twine &NameStr); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1164 | |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1165 | /// Construct a CallInst given a range of arguments. |
David Greene | 52eec54 | 2007-08-01 03:43:44 +0000 | [diff] [blame] | 1166 | /// @brief Construct a CallInst from a range of arguments |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1167 | inline CallInst(Value *Func, ArrayRef<Value *> Args, |
| 1168 | const Twine &NameStr, Instruction *InsertBefore); |
David Greene | 52eec54 | 2007-08-01 03:43:44 +0000 | [diff] [blame] | 1169 | |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1170 | /// Construct a CallInst given a range of arguments. |
David Greene | 52eec54 | 2007-08-01 03:43:44 +0000 | [diff] [blame] | 1171 | /// @brief Construct a CallInst from a range of arguments |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1172 | inline CallInst(Value *Func, ArrayRef<Value *> Args, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1173 | const Twine &NameStr, BasicBlock *InsertAtEnd); |
David Greene | 52eec54 | 2007-08-01 03:43:44 +0000 | [diff] [blame] | 1174 | |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1175 | CallInst(Value *F, Value *Actual, const Twine &NameStr, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1176 | Instruction *InsertBefore); |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1177 | CallInst(Value *F, Value *Actual, const Twine &NameStr, |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1178 | BasicBlock *InsertAtEnd); |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1179 | explicit CallInst(Value *F, const Twine &NameStr, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1180 | Instruction *InsertBefore); |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1181 | CallInst(Value *F, const Twine &NameStr, BasicBlock *InsertAtEnd); |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 1182 | protected: |
| 1183 | virtual CallInst *clone_impl() const; |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1184 | public: |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1185 | static CallInst *Create(Value *Func, |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1186 | ArrayRef<Value *> Args, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1187 | const Twine &NameStr = "", |
Evan Cheng | d69bb1a | 2008-05-05 17:41:03 +0000 | [diff] [blame] | 1188 | Instruction *InsertBefore = 0) { |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1189 | return new(unsigned(Args.size() + 1)) |
| 1190 | CallInst(Func, Args, NameStr, InsertBefore); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1191 | } |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1192 | static CallInst *Create(Value *Func, |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1193 | ArrayRef<Value *> Args, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1194 | const Twine &NameStr, BasicBlock *InsertAtEnd) { |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1195 | return new(unsigned(Args.size() + 1)) |
| 1196 | CallInst(Func, Args, NameStr, InsertAtEnd); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1197 | } |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1198 | static CallInst *Create(Value *F, const Twine &NameStr = "", |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1199 | Instruction *InsertBefore = 0) { |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1200 | return new(1) CallInst(F, NameStr, InsertBefore); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1201 | } |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1202 | static CallInst *Create(Value *F, const Twine &NameStr, |
Evan Cheng | 34cd4a4 | 2008-05-05 18:30:58 +0000 | [diff] [blame] | 1203 | BasicBlock *InsertAtEnd) { |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1204 | return new(1) CallInst(F, NameStr, InsertAtEnd); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1205 | } |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 1206 | /// 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 Lewycky | 3fc35c5 | 2009-10-17 23:52:26 +0000 | [diff] [blame] | 1212 | static Instruction *CreateMalloc(Instruction *InsertBefore, |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1213 | Type *IntPtrTy, Type *AllocTy, |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 1214 | Value *AllocSize, Value *ArraySize = 0, |
Chris Lattner | 5a30a85 | 2010-07-12 00:57:28 +0000 | [diff] [blame] | 1215 | Function* MallocF = 0, |
Nick Lewycky | 3fc35c5 | 2009-10-17 23:52:26 +0000 | [diff] [blame] | 1216 | const Twine &Name = ""); |
| 1217 | static Instruction *CreateMalloc(BasicBlock *InsertAtEnd, |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1218 | Type *IntPtrTy, Type *AllocTy, |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 1219 | Value *AllocSize, Value *ArraySize = 0, |
| 1220 | Function* MallocF = 0, |
Nick Lewycky | 3fc35c5 | 2009-10-17 23:52:26 +0000 | [diff] [blame] | 1221 | const Twine &Name = ""); |
Victor Hernandez | 66284e0 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 1222 | /// CreateFree - Generate the IR for a call to the builtin free function. |
Chris Lattner | 5a30a85 | 2010-07-12 00:57:28 +0000 | [diff] [blame] | 1223 | static Instruction* CreateFree(Value* Source, Instruction *InsertBefore); |
Victor Hernandez | 66284e0 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 1224 | static Instruction* CreateFree(Value* Source, BasicBlock *InsertAtEnd); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1225 | |
Gordon Henriksen | afba8fe | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 1226 | ~CallInst(); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1227 | |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 1228 | bool isTailCall() const { return getSubclassDataFromInstruction() & 1; } |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1229 | void setTailCall(bool isTC = true) { |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 1230 | setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) | |
| 1231 | unsigned(isTC)); |
Chris Lattner | 3340ffe | 2005-05-06 20:26:26 +0000 | [diff] [blame] | 1232 | } |
| 1233 | |
Dan Gohman | f275250 | 2008-09-26 21:38:45 +0000 | [diff] [blame] | 1234 | /// Provide fast operand accessors |
| 1235 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1236 | |
Gabor Greif | 0114b99 | 2010-07-31 08:35:21 +0000 | [diff] [blame] | 1237 | /// getNumArgOperands - Return the number of call arguments. |
| 1238 | /// |
Bill Wendling | 22a5b29 | 2010-06-07 19:05:06 +0000 | [diff] [blame] | 1239 | unsigned getNumArgOperands() const { return getNumOperands() - 1; } |
Gabor Greif | 0114b99 | 2010-07-31 08:35:21 +0000 | [diff] [blame] | 1240 | |
| 1241 | /// getArgOperand/setArgOperand - Return/set the i-th call argument. |
| 1242 | /// |
Gabor Greif | a6aac4c | 2010-07-16 09:38:02 +0000 | [diff] [blame] | 1243 | Value *getArgOperand(unsigned i) const { return getOperand(i); } |
| 1244 | void setArgOperand(unsigned i, Value *v) { setOperand(i, v); } |
Bill Wendling | 22a5b29 | 2010-06-07 19:05:06 +0000 | [diff] [blame] | 1245 | |
Chris Lattner | 3340ffe | 2005-05-06 20:26:26 +0000 | [diff] [blame] | 1246 | /// getCallingConv/setCallingConv - Get or set the calling convention of this |
| 1247 | /// function call. |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 1248 | CallingConv::ID getCallingConv() const { |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 1249 | return static_cast<CallingConv::ID>(getSubclassDataFromInstruction() >> 1); |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 1250 | } |
| 1251 | void setCallingConv(CallingConv::ID CC) { |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 1252 | setInstructionSubclassData((getSubclassDataFromInstruction() & 1) | |
| 1253 | (static_cast<unsigned>(CC) << 1)); |
Chris Lattner | 3340ffe | 2005-05-06 20:26:26 +0000 | [diff] [blame] | 1254 | } |
Chris Lattner | ddb6db4 | 2005-05-06 05:51:46 +0000 | [diff] [blame] | 1255 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1256 | /// getAttributes - Return the parameter attributes for this call. |
Chris Lattner | 041221c | 2008-03-13 04:33:03 +0000 | [diff] [blame] | 1257 | /// |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1258 | const AttrListPtr &getAttributes() const { return AttributeList; } |
Reid Spencer | 4746ecf | 2007-04-09 15:01:12 +0000 | [diff] [blame] | 1259 | |
Dan Gohman | f275250 | 2008-09-26 21:38:45 +0000 | [diff] [blame] | 1260 | /// setAttributes - Set the parameter attributes for this call. |
| 1261 | /// |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1262 | void setAttributes(const AttrListPtr &Attrs) { AttributeList = Attrs; } |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1263 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1264 | /// addAttribute - adds the attribute to the list of attributes. |
| 1265 | void addAttribute(unsigned i, Attributes attr); |
Duncan Sands | dc02467 | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 1266 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1267 | /// removeAttribute - removes the attribute from the list of attributes. |
| 1268 | void removeAttribute(unsigned i, Attributes attr); |
Duncan Sands | 2e033f3 | 2008-07-08 08:38:44 +0000 | [diff] [blame] | 1269 | |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 1270 | /// @brief Determine whether this call has the given attribute. |
| 1271 | bool fnHasNoAliasAttr() const; |
| 1272 | bool fnHasNoInlineAttr() const; |
| 1273 | bool fnHasNoReturnAttr() const; |
| 1274 | bool fnHasNoUnwindAttr() const; |
| 1275 | bool fnHasReadNoneAttr() const; |
| 1276 | bool fnHasReadOnlyAttr() const; |
| 1277 | bool fnHasReturnsTwiceAttr() const; |
| 1278 | |
Nuno Lopes | 986da6c | 2012-06-25 16:16:58 +0000 | [diff] [blame] | 1279 | /// \brief Return true if this call has the given attribute. |
| 1280 | bool hasFnAttr(Attributes N) const { |
| 1281 | return paramHasAttr(~0, N); |
| 1282 | } |
| 1283 | |
Bill Wendling | 847d165 | 2012-10-03 17:54:26 +0000 | [diff] [blame] | 1284 | /// @brief Determine whether the call or the callee has the given attributes. |
Bill Wendling | 847d165 | 2012-10-03 17:54:26 +0000 | [diff] [blame] | 1285 | bool paramHasByValAttr(unsigned i) const; |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 1286 | bool paramHasInRegAttr(unsigned i) const; |
| 1287 | bool paramHasNestAttr(unsigned i) const; |
Bill Wendling | 5df15c6 | 2012-10-04 06:52:09 +0000 | [diff] [blame] | 1288 | bool paramHasNoAliasAttr(unsigned i) const; |
Bill Wendling | 365b9e0 | 2012-10-04 07:18:12 +0000 | [diff] [blame] | 1289 | bool paramHasNoCaptureAttr(unsigned i) const; |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 1290 | bool paramHasSExtAttr(unsigned i) const; |
| 1291 | bool paramHasStructRetAttr(unsigned i) const; |
| 1292 | bool paramHasZExtAttr(unsigned i) const; |
Bill Wendling | 847d165 | 2012-10-03 17:54:26 +0000 | [diff] [blame] | 1293 | |
Duncan Sands | afa3b6d | 2007-11-28 17:07:01 +0000 | [diff] [blame] | 1294 | /// @brief Determine whether the call or the callee has the given attribute. |
Dan Gohman | f275250 | 2008-09-26 21:38:45 +0000 | [diff] [blame] | 1295 | bool paramHasAttr(unsigned i, Attributes attr) const; |
Duncan Sands | afa3b6d | 2007-11-28 17:07:01 +0000 | [diff] [blame] | 1296 | |
Dale Johannesen | 08e78b1 | 2008-02-22 17:49:45 +0000 | [diff] [blame] | 1297 | /// @brief Extract the alignment for a call or parameter (0=unknown). |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 1298 | unsigned getParamAlignment(unsigned i) const { |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1299 | return AttributeList.getParamAlignment(i); |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 1300 | } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 1301 | |
Eric Christopher | f27e608 | 2010-03-25 04:49:10 +0000 | [diff] [blame] | 1302 | /// @brief Return true if the call should not be inlined. |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 1303 | bool isNoInline() const { return fnHasNoInlineAttr(); } |
Nick Lewycky | b9933b8 | 2010-07-06 03:53:22 +0000 | [diff] [blame] | 1304 | void setIsNoInline(bool Value = true) { |
Eric Christopher | f27e608 | 2010-03-25 04:49:10 +0000 | [diff] [blame] | 1305 | if (Value) addAttribute(~0, Attribute::NoInline); |
| 1306 | else removeAttribute(~0, Attribute::NoInline); |
| 1307 | } |
Dale Johannesen | 08e78b1 | 2008-02-22 17:49:45 +0000 | [diff] [blame] | 1308 | |
Rafael Espindola | 11f1a83 | 2011-10-05 20:05:13 +0000 | [diff] [blame] | 1309 | /// @brief Return true if the call can return twice |
| 1310 | bool canReturnTwice() const { |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 1311 | return fnHasReturnsTwiceAttr(); |
Rafael Espindola | 11f1a83 | 2011-10-05 20:05:13 +0000 | [diff] [blame] | 1312 | } |
| 1313 | void setCanReturnTwice(bool Value = true) { |
| 1314 | if (Value) addAttribute(~0, Attribute::ReturnsTwice); |
| 1315 | else removeAttribute(~0, Attribute::ReturnsTwice); |
| 1316 | } |
| 1317 | |
Duncan Sands | a3355ff | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 1318 | /// @brief Determine if the call does not access memory. |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 1319 | bool doesNotAccessMemory() const { |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 1320 | return fnHasReadNoneAttr(); |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 1321 | } |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1322 | void setDoesNotAccessMemory(bool NotAccessMemory = true) { |
Devang Patel | 19c8746 | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 1323 | if (NotAccessMemory) addAttribute(~0, Attribute::ReadNone); |
| 1324 | else removeAttribute(~0, Attribute::ReadNone); |
Duncan Sands | 2e033f3 | 2008-07-08 08:38:44 +0000 | [diff] [blame] | 1325 | } |
| 1326 | |
Duncan Sands | a3355ff | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 1327 | /// @brief Determine if the call does not access or only reads memory. |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 1328 | bool onlyReadsMemory() const { |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 1329 | return doesNotAccessMemory() || fnHasReadOnlyAttr(); |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 1330 | } |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1331 | void setOnlyReadsMemory(bool OnlyReadsMemory = true) { |
Devang Patel | 19c8746 | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 1332 | if (OnlyReadsMemory) addAttribute(~0, Attribute::ReadOnly); |
| 1333 | else removeAttribute(~0, Attribute::ReadOnly | Attribute::ReadNone); |
Duncan Sands | 2e033f3 | 2008-07-08 08:38:44 +0000 | [diff] [blame] | 1334 | } |
| 1335 | |
Duncan Sands | cbb8bad | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 1336 | /// @brief Determine if the call cannot return. |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 1337 | bool doesNotReturn() const { return fnHasNoReturnAttr(); } |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1338 | void setDoesNotReturn(bool DoesNotReturn = true) { |
Devang Patel | 19c8746 | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 1339 | if (DoesNotReturn) addAttribute(~0, Attribute::NoReturn); |
| 1340 | else removeAttribute(~0, Attribute::NoReturn); |
Duncan Sands | 2e033f3 | 2008-07-08 08:38:44 +0000 | [diff] [blame] | 1341 | } |
Duncan Sands | cbb8bad | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 1342 | |
Duncan Sands | a3355ff | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 1343 | /// @brief Determine if the call cannot unwind. |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 1344 | bool doesNotThrow() const { return fnHasNoUnwindAttr(); } |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1345 | void setDoesNotThrow(bool DoesNotThrow = true) { |
Devang Patel | 19c8746 | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 1346 | if (DoesNotThrow) addAttribute(~0, Attribute::NoUnwind); |
| 1347 | else removeAttribute(~0, Attribute::NoUnwind); |
Duncan Sands | 2e033f3 | 2008-07-08 08:38:44 +0000 | [diff] [blame] | 1348 | } |
Duncan Sands | a3355ff | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 1349 | |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1350 | /// @brief Determine if the call returns a structure through first |
Devang Patel | 41e2397 | 2008-03-03 21:46:28 +0000 | [diff] [blame] | 1351 | /// pointer argument. |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 1352 | bool hasStructRetAttr() const { |
| 1353 | // Be friendly and also check the callee. |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 1354 | return paramHasStructRetAttr(1); |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 1355 | } |
Reid Spencer | 4746ecf | 2007-04-09 15:01:12 +0000 | [diff] [blame] | 1356 | |
Evan Cheng | f4a5498 | 2008-01-12 18:57:32 +0000 | [diff] [blame] | 1357 | /// @brief Determine if any call argument is an aggregate passed by value. |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 1358 | bool hasByValArgument() const { |
Bill Wendling | 2fd7765 | 2012-10-09 01:03:48 +0000 | [diff] [blame^] | 1359 | for (unsigned I = 0, E = AttributeList.getNumAttrs(); I != E; ++I) |
| 1360 | if (AttributeList.getAttributesAtIndex(I).hasByValAttr()) |
| 1361 | return true; |
| 1362 | return false; |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 1363 | } |
Evan Cheng | f4a5498 | 2008-01-12 18:57:32 +0000 | [diff] [blame] | 1364 | |
Dan Gohman | f275250 | 2008-09-26 21:38:45 +0000 | [diff] [blame] | 1365 | /// getCalledFunction - Return the function called, or null if this is an |
| 1366 | /// indirect function invocation. |
| 1367 | /// |
Chris Lattner | 721aef6 | 2004-11-18 17:46:57 +0000 | [diff] [blame] | 1368 | Function *getCalledFunction() const { |
Gabor Greif | a6aac4c | 2010-07-16 09:38:02 +0000 | [diff] [blame] | 1369 | return dyn_cast<Function>(Op<-1>()); |
Chris Lattner | 721aef6 | 2004-11-18 17:46:57 +0000 | [diff] [blame] | 1370 | } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1371 | |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1372 | /// getCalledValue - Get a pointer to the function that is invoked by this |
Chris Lattner | 14d8038 | 2009-10-18 05:08:07 +0000 | [diff] [blame] | 1373 | /// instruction. |
Gabor Greif | a6aac4c | 2010-07-16 09:38:02 +0000 | [diff] [blame] | 1374 | const Value *getCalledValue() const { return Op<-1>(); } |
| 1375 | Value *getCalledValue() { return Op<-1>(); } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1376 | |
Chris Lattner | 14d8038 | 2009-10-18 05:08:07 +0000 | [diff] [blame] | 1377 | /// setCalledFunction - Set the function called. |
Victor Hernandez | 13ad5aa | 2009-10-17 00:00:19 +0000 | [diff] [blame] | 1378 | void setCalledFunction(Value* Fn) { |
Gabor Greif | a6aac4c | 2010-07-16 09:38:02 +0000 | [diff] [blame] | 1379 | Op<-1>() = Fn; |
Victor Hernandez | 13ad5aa | 2009-10-17 00:00:19 +0000 | [diff] [blame] | 1380 | } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 1381 | |
Owen Anderson | 6f615f8 | 2010-08-07 00:19:59 +0000 | [diff] [blame] | 1382 | /// isInlineAsm - Check if this call is an inline asm statement. |
| 1383 | bool isInlineAsm() const { |
| 1384 | return isa<InlineAsm>(Op<-1>()); |
| 1385 | } |
Victor Hernandez | 13ad5aa | 2009-10-17 00:00:19 +0000 | [diff] [blame] | 1386 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1387 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 1388 | static inline bool classof(const CallInst *) { return true; } |
| 1389 | static inline bool classof(const Instruction *I) { |
Misha Brukman | 9769ab2 | 2005-04-21 20:19:05 +0000 | [diff] [blame] | 1390 | return I->getOpcode() == Instruction::Call; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1391 | } |
| 1392 | static inline bool classof(const Value *V) { |
| 1393 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 1394 | } |
Chris Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 1395 | private: |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 1396 | // Shadow Instruction::setInstructionSubclassData with a private forwarding |
| 1397 | // method so that subclasses cannot accidentally use it. |
| 1398 | void setInstructionSubclassData(unsigned short D) { |
| 1399 | Instruction::setInstructionSubclassData(D); |
Chris Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 1400 | } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1401 | }; |
| 1402 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1403 | template <> |
Jay Foad | 67c619b | 2011-01-11 15:07:38 +0000 | [diff] [blame] | 1404 | struct OperandTraits<CallInst> : public VariadicOperandTraits<CallInst, 1> { |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1405 | }; |
| 1406 | |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1407 | CallInst::CallInst(Value *Func, ArrayRef<Value *> Args, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1408 | const Twine &NameStr, BasicBlock *InsertAtEnd) |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1409 | : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType()) |
| 1410 | ->getElementType())->getReturnType(), |
| 1411 | Instruction::Call, |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1412 | OperandTraits<CallInst>::op_end(this) - (Args.size() + 1), |
| 1413 | unsigned(Args.size() + 1), InsertAtEnd) { |
| 1414 | init(Func, Args, NameStr); |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1415 | } |
| 1416 | |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1417 | CallInst::CallInst(Value *Func, ArrayRef<Value *> Args, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1418 | const Twine &NameStr, Instruction *InsertBefore) |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1419 | : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType()) |
| 1420 | ->getElementType())->getReturnType(), |
| 1421 | Instruction::Call, |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1422 | OperandTraits<CallInst>::op_end(this) - (Args.size() + 1), |
| 1423 | unsigned(Args.size() + 1), InsertBefore) { |
| 1424 | init(Func, Args, NameStr); |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1425 | } |
| 1426 | |
Gabor Greif | e9e1215 | 2010-07-06 15:44:11 +0000 | [diff] [blame] | 1427 | |
| 1428 | // Note: if you get compile errors about private methods then |
| 1429 | // please update your code to use the high-level operand |
| 1430 | // interfaces. See line 943 above. |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1431 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CallInst, Value) |
| 1432 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1433 | //===----------------------------------------------------------------------===// |
| 1434 | // SelectInst Class |
| 1435 | //===----------------------------------------------------------------------===// |
| 1436 | |
| 1437 | /// SelectInst - This class represents the LLVM 'select' instruction. |
| 1438 | /// |
| 1439 | class SelectInst : public Instruction { |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1440 | void init(Value *C, Value *S1, Value *S2) { |
Chris Lattner | b76ec32 | 2008-12-29 00:12:50 +0000 | [diff] [blame] | 1441 | assert(!areInvalidOperands(C, S1, S2) && "Invalid operands for select"); |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1442 | Op<0>() = C; |
| 1443 | Op<1>() = S1; |
| 1444 | Op<2>() = S2; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1445 | } |
| 1446 | |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1447 | SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1448 | Instruction *InsertBefore) |
| 1449 | : Instruction(S1->getType(), Instruction::Select, |
| 1450 | &Op<0>(), 3, InsertBefore) { |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1451 | init(C, S1, S2); |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1452 | setName(NameStr); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1453 | } |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1454 | SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr, |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1455 | BasicBlock *InsertAtEnd) |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1456 | : Instruction(S1->getType(), Instruction::Select, |
| 1457 | &Op<0>(), 3, InsertAtEnd) { |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1458 | init(C, S1, S2); |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1459 | setName(NameStr); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1460 | } |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 1461 | protected: |
| 1462 | virtual SelectInst *clone_impl() const; |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1463 | public: |
Evan Cheng | d69bb1a | 2008-05-05 17:41:03 +0000 | [diff] [blame] | 1464 | static SelectInst *Create(Value *C, Value *S1, Value *S2, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1465 | const Twine &NameStr = "", |
Evan Cheng | d69bb1a | 2008-05-05 17:41:03 +0000 | [diff] [blame] | 1466 | Instruction *InsertBefore = 0) { |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1467 | return new(3) SelectInst(C, S1, S2, NameStr, InsertBefore); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1468 | } |
Evan Cheng | d69bb1a | 2008-05-05 17:41:03 +0000 | [diff] [blame] | 1469 | static SelectInst *Create(Value *C, Value *S1, Value *S2, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1470 | const Twine &NameStr, |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1471 | BasicBlock *InsertAtEnd) { |
| 1472 | return new(3) SelectInst(C, S1, S2, NameStr, InsertAtEnd); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1473 | } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1474 | |
Chris Lattner | 9715912 | 2009-09-08 03:32:53 +0000 | [diff] [blame] | 1475 | const Value *getCondition() const { return Op<0>(); } |
| 1476 | const Value *getTrueValue() const { return Op<1>(); } |
| 1477 | const Value *getFalseValue() const { return Op<2>(); } |
| 1478 | Value *getCondition() { return Op<0>(); } |
| 1479 | Value *getTrueValue() { return Op<1>(); } |
| 1480 | Value *getFalseValue() { return Op<2>(); } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 1481 | |
Chris Lattner | b76ec32 | 2008-12-29 00:12:50 +0000 | [diff] [blame] | 1482 | /// areInvalidOperands - Return a string if the specified operands are invalid |
| 1483 | /// for a select operation, otherwise return null. |
| 1484 | static const char *areInvalidOperands(Value *Cond, Value *True, Value *False); |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 1485 | |
| 1486 | /// Transparently provide more efficient getOperand methods. |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1487 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1488 | |
| 1489 | OtherOps getOpcode() const { |
| 1490 | return static_cast<OtherOps>(Instruction::getOpcode()); |
| 1491 | } |
| 1492 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1493 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 1494 | static inline bool classof(const SelectInst *) { return true; } |
| 1495 | static inline bool classof(const Instruction *I) { |
| 1496 | return I->getOpcode() == Instruction::Select; |
| 1497 | } |
| 1498 | static inline bool classof(const Value *V) { |
| 1499 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 1500 | } |
| 1501 | }; |
| 1502 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1503 | template <> |
Jay Foad | 67c619b | 2011-01-11 15:07:38 +0000 | [diff] [blame] | 1504 | struct OperandTraits<SelectInst> : public FixedNumOperandTraits<SelectInst, 3> { |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1505 | }; |
| 1506 | |
| 1507 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SelectInst, Value) |
| 1508 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1509 | //===----------------------------------------------------------------------===// |
| 1510 | // VAArgInst Class |
| 1511 | //===----------------------------------------------------------------------===// |
| 1512 | |
| 1513 | /// VAArgInst - This class represents the va_arg llvm instruction, which returns |
Andrew Lenharth | f542821 | 2005-06-18 18:31:30 +0000 | [diff] [blame] | 1514 | /// an argument of the specified type given a va_list and increments that list |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1515 | /// |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 1516 | class VAArgInst : public UnaryInstruction { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 1517 | protected: |
| 1518 | virtual VAArgInst *clone_impl() const; |
| 1519 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1520 | public: |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1521 | VAArgInst(Value *List, Type *Ty, const Twine &NameStr = "", |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1522 | Instruction *InsertBefore = 0) |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 1523 | : UnaryInstruction(Ty, VAArg, List, InsertBefore) { |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1524 | setName(NameStr); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1525 | } |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1526 | VAArgInst(Value *List, Type *Ty, const Twine &NameStr, |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1527 | BasicBlock *InsertAtEnd) |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 1528 | : UnaryInstruction(Ty, VAArg, List, InsertAtEnd) { |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1529 | setName(NameStr); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1530 | } |
| 1531 | |
Dan Gohman | e744541 | 2010-09-09 18:32:40 +0000 | [diff] [blame] | 1532 | Value *getPointerOperand() { return getOperand(0); } |
| 1533 | const Value *getPointerOperand() const { return getOperand(0); } |
| 1534 | static unsigned getPointerOperandIndex() { return 0U; } |
| 1535 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1536 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 1537 | static inline bool classof(const VAArgInst *) { return true; } |
| 1538 | static inline bool classof(const Instruction *I) { |
| 1539 | return I->getOpcode() == VAArg; |
| 1540 | } |
| 1541 | static inline bool classof(const Value *V) { |
| 1542 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 1543 | } |
| 1544 | }; |
| 1545 | |
| 1546 | //===----------------------------------------------------------------------===// |
Robert Bocchino | 49b78a5 | 2006-01-10 19:04:13 +0000 | [diff] [blame] | 1547 | // ExtractElementInst Class |
| 1548 | //===----------------------------------------------------------------------===// |
| 1549 | |
| 1550 | /// ExtractElementInst - This instruction extracts a single (scalar) |
Reid Spencer | 9d6565a | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 1551 | /// element from a VectorType value |
Robert Bocchino | 49b78a5 | 2006-01-10 19:04:13 +0000 | [diff] [blame] | 1552 | /// |
| 1553 | class ExtractElementInst : public Instruction { |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1554 | ExtractElementInst(Value *Vec, Value *Idx, const Twine &NameStr = "", |
Chris Lattner | 9fc18d2 | 2006-04-08 01:15:18 +0000 | [diff] [blame] | 1555 | Instruction *InsertBefore = 0); |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1556 | ExtractElementInst(Value *Vec, Value *Idx, const Twine &NameStr, |
Chris Lattner | 9fc18d2 | 2006-04-08 01:15:18 +0000 | [diff] [blame] | 1557 | BasicBlock *InsertAtEnd); |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 1558 | protected: |
| 1559 | virtual ExtractElementInst *clone_impl() const; |
| 1560 | |
Eric Christopher | a3500da | 2009-07-25 02:28:41 +0000 | [diff] [blame] | 1561 | public: |
Eric Christopher | a3500da | 2009-07-25 02:28:41 +0000 | [diff] [blame] | 1562 | static ExtractElementInst *Create(Value *Vec, Value *Idx, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1563 | const Twine &NameStr = "", |
Eric Christopher | a3500da | 2009-07-25 02:28:41 +0000 | [diff] [blame] | 1564 | Instruction *InsertBefore = 0) { |
| 1565 | return new(2) ExtractElementInst(Vec, Idx, NameStr, InsertBefore); |
| 1566 | } |
| 1567 | static ExtractElementInst *Create(Value *Vec, Value *Idx, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1568 | const Twine &NameStr, |
Eric Christopher | a3500da | 2009-07-25 02:28:41 +0000 | [diff] [blame] | 1569 | BasicBlock *InsertAtEnd) { |
| 1570 | return new(2) ExtractElementInst(Vec, Idx, NameStr, InsertAtEnd); |
| 1571 | } |
Robert Bocchino | 49b78a5 | 2006-01-10 19:04:13 +0000 | [diff] [blame] | 1572 | |
Chris Lattner | fa49584 | 2006-04-08 04:04:54 +0000 | [diff] [blame] | 1573 | /// isValidOperands - Return true if an extractelement instruction can be |
| 1574 | /// formed with the specified operands. |
| 1575 | static bool isValidOperands(const Value *Vec, const Value *Idx); |
Chris Lattner | f56a8db | 2006-10-03 17:09:12 +0000 | [diff] [blame] | 1576 | |
Chris Lattner | 9715912 | 2009-09-08 03:32:53 +0000 | [diff] [blame] | 1577 | Value *getVectorOperand() { return Op<0>(); } |
| 1578 | Value *getIndexOperand() { return Op<1>(); } |
| 1579 | const Value *getVectorOperand() const { return Op<0>(); } |
| 1580 | const Value *getIndexOperand() const { return Op<1>(); } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 1581 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1582 | VectorType *getVectorOperandType() const { |
| 1583 | return reinterpret_cast<VectorType*>(getVectorOperand()->getType()); |
Chris Lattner | 9715912 | 2009-09-08 03:32:53 +0000 | [diff] [blame] | 1584 | } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 1585 | |
| 1586 | |
Robert Bocchino | 49b78a5 | 2006-01-10 19:04:13 +0000 | [diff] [blame] | 1587 | /// Transparently provide more efficient getOperand methods. |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1588 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
Robert Bocchino | 49b78a5 | 2006-01-10 19:04:13 +0000 | [diff] [blame] | 1589 | |
| 1590 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 1591 | static inline bool classof(const ExtractElementInst *) { return true; } |
| 1592 | static inline bool classof(const Instruction *I) { |
| 1593 | return I->getOpcode() == Instruction::ExtractElement; |
| 1594 | } |
| 1595 | static inline bool classof(const Value *V) { |
| 1596 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 1597 | } |
| 1598 | }; |
| 1599 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1600 | template <> |
Jay Foad | 67c619b | 2011-01-11 15:07:38 +0000 | [diff] [blame] | 1601 | struct OperandTraits<ExtractElementInst> : |
| 1602 | public FixedNumOperandTraits<ExtractElementInst, 2> { |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1603 | }; |
| 1604 | |
| 1605 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractElementInst, Value) |
| 1606 | |
Robert Bocchino | 49b78a5 | 2006-01-10 19:04:13 +0000 | [diff] [blame] | 1607 | //===----------------------------------------------------------------------===// |
Robert Bocchino | f999344 | 2006-01-17 20:05:59 +0000 | [diff] [blame] | 1608 | // InsertElementInst Class |
| 1609 | //===----------------------------------------------------------------------===// |
| 1610 | |
| 1611 | /// InsertElementInst - This instruction inserts a single (scalar) |
Reid Spencer | 9d6565a | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 1612 | /// element into a VectorType value |
Robert Bocchino | f999344 | 2006-01-17 20:05:59 +0000 | [diff] [blame] | 1613 | /// |
| 1614 | class InsertElementInst : public Instruction { |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1615 | InsertElementInst(Value *Vec, Value *NewElt, Value *Idx, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1616 | const Twine &NameStr = "", |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1617 | Instruction *InsertBefore = 0); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1618 | InsertElementInst(Value *Vec, Value *NewElt, Value *Idx, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1619 | const Twine &NameStr, BasicBlock *InsertAtEnd); |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 1620 | protected: |
| 1621 | virtual InsertElementInst *clone_impl() const; |
| 1622 | |
Robert Bocchino | f999344 | 2006-01-17 20:05:59 +0000 | [diff] [blame] | 1623 | public: |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1624 | static InsertElementInst *Create(Value *Vec, Value *NewElt, Value *Idx, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1625 | const Twine &NameStr = "", |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1626 | Instruction *InsertBefore = 0) { |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1627 | return new(3) InsertElementInst(Vec, NewElt, Idx, NameStr, InsertBefore); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1628 | } |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1629 | static InsertElementInst *Create(Value *Vec, Value *NewElt, Value *Idx, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1630 | const Twine &NameStr, |
Evan Cheng | d69bb1a | 2008-05-05 17:41:03 +0000 | [diff] [blame] | 1631 | BasicBlock *InsertAtEnd) { |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1632 | return new(3) InsertElementInst(Vec, NewElt, Idx, NameStr, InsertAtEnd); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1633 | } |
Robert Bocchino | f999344 | 2006-01-17 20:05:59 +0000 | [diff] [blame] | 1634 | |
Chris Lattner | fa49584 | 2006-04-08 04:04:54 +0000 | [diff] [blame] | 1635 | /// isValidOperands - Return true if an insertelement instruction can be |
| 1636 | /// formed with the specified operands. |
| 1637 | static bool isValidOperands(const Value *Vec, const Value *NewElt, |
| 1638 | const Value *Idx); |
Chris Lattner | f56a8db | 2006-10-03 17:09:12 +0000 | [diff] [blame] | 1639 | |
Reid Spencer | ac9dcb9 | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 1640 | /// getType - Overload to return most specific vector type. |
Chris Lattner | 6a56ed4 | 2006-04-14 22:20:07 +0000 | [diff] [blame] | 1641 | /// |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1642 | VectorType *getType() const { |
| 1643 | return reinterpret_cast<VectorType*>(Instruction::getType()); |
Chris Lattner | 6a56ed4 | 2006-04-14 22:20:07 +0000 | [diff] [blame] | 1644 | } |
Chris Lattner | f56a8db | 2006-10-03 17:09:12 +0000 | [diff] [blame] | 1645 | |
Robert Bocchino | f999344 | 2006-01-17 20:05:59 +0000 | [diff] [blame] | 1646 | /// Transparently provide more efficient getOperand methods. |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1647 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
Robert Bocchino | f999344 | 2006-01-17 20:05:59 +0000 | [diff] [blame] | 1648 | |
| 1649 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 1650 | static inline bool classof(const InsertElementInst *) { return true; } |
| 1651 | static inline bool classof(const Instruction *I) { |
| 1652 | return I->getOpcode() == Instruction::InsertElement; |
| 1653 | } |
| 1654 | static inline bool classof(const Value *V) { |
| 1655 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 1656 | } |
| 1657 | }; |
| 1658 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1659 | template <> |
Jay Foad | 67c619b | 2011-01-11 15:07:38 +0000 | [diff] [blame] | 1660 | struct OperandTraits<InsertElementInst> : |
| 1661 | public FixedNumOperandTraits<InsertElementInst, 3> { |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1662 | }; |
| 1663 | |
| 1664 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertElementInst, Value) |
| 1665 | |
Robert Bocchino | f999344 | 2006-01-17 20:05:59 +0000 | [diff] [blame] | 1666 | //===----------------------------------------------------------------------===// |
Chris Lattner | 9fc18d2 | 2006-04-08 01:15:18 +0000 | [diff] [blame] | 1667 | // ShuffleVectorInst Class |
| 1668 | //===----------------------------------------------------------------------===// |
| 1669 | |
| 1670 | /// ShuffleVectorInst - This instruction constructs a fixed permutation of two |
| 1671 | /// input vectors. |
| 1672 | /// |
| 1673 | class ShuffleVectorInst : public Instruction { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 1674 | protected: |
| 1675 | virtual ShuffleVectorInst *clone_impl() const; |
| 1676 | |
Chris Lattner | 9fc18d2 | 2006-04-08 01:15:18 +0000 | [diff] [blame] | 1677 | public: |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1678 | // allocate space for exactly three operands |
| 1679 | void *operator new(size_t s) { |
| 1680 | return User::operator new(s, 3); |
| 1681 | } |
Chris Lattner | 9fc18d2 | 2006-04-08 01:15:18 +0000 | [diff] [blame] | 1682 | ShuffleVectorInst(Value *V1, Value *V2, Value *Mask, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1683 | const Twine &NameStr = "", |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 1684 | Instruction *InsertBefor = 0); |
Chris Lattner | 9fc18d2 | 2006-04-08 01:15:18 +0000 | [diff] [blame] | 1685 | ShuffleVectorInst(Value *V1, Value *V2, Value *Mask, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1686 | const Twine &NameStr, BasicBlock *InsertAtEnd); |
Chris Lattner | f56a8db | 2006-10-03 17:09:12 +0000 | [diff] [blame] | 1687 | |
Chris Lattner | fa49584 | 2006-04-08 04:04:54 +0000 | [diff] [blame] | 1688 | /// isValidOperands - Return true if a shufflevector instruction can be |
Chris Lattner | 9fc18d2 | 2006-04-08 01:15:18 +0000 | [diff] [blame] | 1689 | /// formed with the specified operands. |
| 1690 | static bool isValidOperands(const Value *V1, const Value *V2, |
| 1691 | const Value *Mask); |
Chris Lattner | f56a8db | 2006-10-03 17:09:12 +0000 | [diff] [blame] | 1692 | |
Reid Spencer | ac9dcb9 | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 1693 | /// getType - Overload to return most specific vector type. |
Chris Lattner | 6a56ed4 | 2006-04-14 22:20:07 +0000 | [diff] [blame] | 1694 | /// |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1695 | VectorType *getType() const { |
| 1696 | return reinterpret_cast<VectorType*>(Instruction::getType()); |
Chris Lattner | 6a56ed4 | 2006-04-14 22:20:07 +0000 | [diff] [blame] | 1697 | } |
Chris Lattner | f56a8db | 2006-10-03 17:09:12 +0000 | [diff] [blame] | 1698 | |
Chris Lattner | 9fc18d2 | 2006-04-08 01:15:18 +0000 | [diff] [blame] | 1699 | /// Transparently provide more efficient getOperand methods. |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1700 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1701 | |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1702 | Constant *getMask() const { |
| 1703 | return reinterpret_cast<Constant*>(getOperand(2)); |
| 1704 | } |
| 1705 | |
Chris Lattner | 8728f19 | 2008-03-02 05:28:33 +0000 | [diff] [blame] | 1706 | /// getMaskValue - Return the index from the shuffle mask for the specified |
| 1707 | /// output result. This is either -1 if the element is undef or a number less |
| 1708 | /// than 2*numelements. |
Chris Lattner | 56243b8 | 2012-01-26 02:51:13 +0000 | [diff] [blame] | 1709 | static int getMaskValue(Constant *Mask, unsigned i); |
| 1710 | |
| 1711 | int getMaskValue(unsigned i) const { |
| 1712 | return getMaskValue(getMask(), i); |
| 1713 | } |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1714 | |
| 1715 | /// getShuffleMask - Return the full mask for this instruction, where each |
| 1716 | /// element is the element number and undef's are returned as -1. |
Chris Lattner | 56243b8 | 2012-01-26 02:51:13 +0000 | [diff] [blame] | 1717 | static void getShuffleMask(Constant *Mask, SmallVectorImpl<int> &Result); |
| 1718 | |
| 1719 | void getShuffleMask(SmallVectorImpl<int> &Result) const { |
| 1720 | return getShuffleMask(getMask(), Result); |
| 1721 | } |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1722 | |
| 1723 | SmallVector<int, 16> getShuffleMask() const { |
| 1724 | SmallVector<int, 16> Mask; |
| 1725 | getShuffleMask(Mask); |
| 1726 | return Mask; |
| 1727 | } |
| 1728 | |
Chris Lattner | f56a8db | 2006-10-03 17:09:12 +0000 | [diff] [blame] | 1729 | |
Chris Lattner | 9fc18d2 | 2006-04-08 01:15:18 +0000 | [diff] [blame] | 1730 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 1731 | static inline bool classof(const ShuffleVectorInst *) { return true; } |
| 1732 | static inline bool classof(const Instruction *I) { |
| 1733 | return I->getOpcode() == Instruction::ShuffleVector; |
| 1734 | } |
| 1735 | static inline bool classof(const Value *V) { |
| 1736 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 1737 | } |
| 1738 | }; |
| 1739 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1740 | template <> |
Jay Foad | 67c619b | 2011-01-11 15:07:38 +0000 | [diff] [blame] | 1741 | struct OperandTraits<ShuffleVectorInst> : |
| 1742 | public FixedNumOperandTraits<ShuffleVectorInst, 3> { |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1743 | }; |
| 1744 | |
| 1745 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ShuffleVectorInst, Value) |
Chris Lattner | 9fc18d2 | 2006-04-08 01:15:18 +0000 | [diff] [blame] | 1746 | |
| 1747 | //===----------------------------------------------------------------------===// |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1748 | // ExtractValueInst Class |
| 1749 | //===----------------------------------------------------------------------===// |
| 1750 | |
Dan Gohman | e2d896f | 2008-05-15 23:35:32 +0000 | [diff] [blame] | 1751 | /// ExtractValueInst - This instruction extracts a struct member or array |
| 1752 | /// element value from an aggregate value. |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1753 | /// |
Gabor Greif | d4f268b | 2008-06-06 20:28:12 +0000 | [diff] [blame] | 1754 | class ExtractValueInst : public UnaryInstruction { |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1755 | SmallVector<unsigned, 4> Indices; |
| 1756 | |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1757 | ExtractValueInst(const ExtractValueInst &EVI); |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1758 | void init(ArrayRef<unsigned> Idxs, const Twine &NameStr); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1759 | |
Dan Gohman | e2d896f | 2008-05-15 23:35:32 +0000 | [diff] [blame] | 1760 | /// Constructors - Create a extractvalue instruction with a base aggregate |
| 1761 | /// value and a list of indices. The first ctor can optionally insert before |
| 1762 | /// an existing instruction, the second appends the new instruction to the |
| 1763 | /// specified BasicBlock. |
Mikhail Glushenkov | d33b77b | 2010-10-27 07:39:54 +0000 | [diff] [blame] | 1764 | inline ExtractValueInst(Value *Agg, |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1765 | ArrayRef<unsigned> Idxs, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1766 | const Twine &NameStr, |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1767 | Instruction *InsertBefore); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1768 | inline ExtractValueInst(Value *Agg, |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1769 | ArrayRef<unsigned> Idxs, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1770 | const Twine &NameStr, BasicBlock *InsertAtEnd); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1771 | |
Dan Gohman | 8e64041 | 2008-05-31 19:09:47 +0000 | [diff] [blame] | 1772 | // allocate space for exactly one operand |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1773 | void *operator new(size_t s) { |
| 1774 | return User::operator new(s, 1); |
| 1775 | } |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 1776 | protected: |
| 1777 | virtual ExtractValueInst *clone_impl() const; |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1778 | |
Gabor Greif | d4f268b | 2008-06-06 20:28:12 +0000 | [diff] [blame] | 1779 | public: |
Mikhail Glushenkov | d33b77b | 2010-10-27 07:39:54 +0000 | [diff] [blame] | 1780 | static ExtractValueInst *Create(Value *Agg, |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1781 | ArrayRef<unsigned> Idxs, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1782 | const Twine &NameStr = "", |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1783 | Instruction *InsertBefore = 0) { |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1784 | return new |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1785 | ExtractValueInst(Agg, Idxs, NameStr, InsertBefore); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1786 | } |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1787 | static ExtractValueInst *Create(Value *Agg, |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1788 | ArrayRef<unsigned> Idxs, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1789 | const Twine &NameStr, |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1790 | BasicBlock *InsertAtEnd) { |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1791 | return new ExtractValueInst(Agg, Idxs, NameStr, InsertAtEnd); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1792 | } |
| 1793 | |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1794 | /// getIndexedType - Returns the type of the element that would be extracted |
| 1795 | /// with an extractvalue instruction with the specified parameters. |
| 1796 | /// |
Frits van Bommel | af72c62 | 2010-12-03 14:54:33 +0000 | [diff] [blame] | 1797 | /// Null is returned if the indices are invalid for the specified type. |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1798 | static Type *getIndexedType(Type *Agg, ArrayRef<unsigned> Idxs); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1799 | |
Owen Anderson | 5678d6e | 2008-06-19 17:15:57 +0000 | [diff] [blame] | 1800 | typedef const unsigned* idx_iterator; |
| 1801 | inline idx_iterator idx_begin() const { return Indices.begin(); } |
| 1802 | inline idx_iterator idx_end() const { return Indices.end(); } |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1803 | |
| 1804 | Value *getAggregateOperand() { |
| 1805 | return getOperand(0); |
| 1806 | } |
| 1807 | const Value *getAggregateOperand() const { |
| 1808 | return getOperand(0); |
| 1809 | } |
| 1810 | static unsigned getAggregateOperandIndex() { |
| 1811 | return 0U; // get index for modifying correct operand |
| 1812 | } |
| 1813 | |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1814 | ArrayRef<unsigned> getIndices() const { |
| 1815 | return Indices; |
| 1816 | } |
| 1817 | |
| 1818 | unsigned getNumIndices() const { |
Bill Wendling | 67944fc | 2008-06-05 07:35:27 +0000 | [diff] [blame] | 1819 | return (unsigned)Indices.size(); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1820 | } |
| 1821 | |
| 1822 | bool hasIndices() const { |
Dan Gohman | 35651cd | 2008-05-31 19:09:08 +0000 | [diff] [blame] | 1823 | return true; |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1824 | } |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1825 | |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1826 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 1827 | static inline bool classof(const ExtractValueInst *) { return true; } |
| 1828 | static inline bool classof(const Instruction *I) { |
| 1829 | return I->getOpcode() == Instruction::ExtractValue; |
| 1830 | } |
| 1831 | static inline bool classof(const Value *V) { |
| 1832 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 1833 | } |
| 1834 | }; |
| 1835 | |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1836 | ExtractValueInst::ExtractValueInst(Value *Agg, |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1837 | ArrayRef<unsigned> Idxs, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1838 | const Twine &NameStr, |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1839 | Instruction *InsertBefore) |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1840 | : UnaryInstruction(checkGEPType(getIndexedType(Agg->getType(), Idxs)), |
Bill Wendling | 85f4054 | 2008-07-22 07:14:12 +0000 | [diff] [blame] | 1841 | ExtractValue, Agg, InsertBefore) { |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1842 | init(Idxs, NameStr); |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1843 | } |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1844 | ExtractValueInst::ExtractValueInst(Value *Agg, |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1845 | ArrayRef<unsigned> Idxs, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1846 | const Twine &NameStr, |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1847 | BasicBlock *InsertAtEnd) |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1848 | : UnaryInstruction(checkGEPType(getIndexedType(Agg->getType(), Idxs)), |
Bill Wendling | 85f4054 | 2008-07-22 07:14:12 +0000 | [diff] [blame] | 1849 | ExtractValue, Agg, InsertAtEnd) { |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1850 | init(Idxs, NameStr); |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1851 | } |
| 1852 | |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1853 | |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1854 | //===----------------------------------------------------------------------===// |
| 1855 | // InsertValueInst Class |
| 1856 | //===----------------------------------------------------------------------===// |
| 1857 | |
Dan Gohman | e2d896f | 2008-05-15 23:35:32 +0000 | [diff] [blame] | 1858 | /// InsertValueInst - This instruction inserts a struct field of array element |
| 1859 | /// value into an aggregate value. |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1860 | /// |
| 1861 | class InsertValueInst : public Instruction { |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1862 | SmallVector<unsigned, 4> Indices; |
| 1863 | |
Craig Topper | ef1623f | 2012-09-18 03:25:49 +0000 | [diff] [blame] | 1864 | void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION; |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1865 | InsertValueInst(const InsertValueInst &IVI); |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1866 | void init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1867 | const Twine &NameStr); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1868 | |
Dan Gohman | e2d896f | 2008-05-15 23:35:32 +0000 | [diff] [blame] | 1869 | /// Constructors - Create a insertvalue instruction with a base aggregate |
| 1870 | /// value, a value to insert, and a list of indices. The first ctor can |
| 1871 | /// optionally insert before an existing instruction, the second appends |
| 1872 | /// the new instruction to the specified BasicBlock. |
Mikhail Glushenkov | d33b77b | 2010-10-27 07:39:54 +0000 | [diff] [blame] | 1873 | inline InsertValueInst(Value *Agg, Value *Val, |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1874 | ArrayRef<unsigned> Idxs, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1875 | const Twine &NameStr, |
Dan Gohman | e2d896f | 2008-05-15 23:35:32 +0000 | [diff] [blame] | 1876 | Instruction *InsertBefore); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1877 | inline InsertValueInst(Value *Agg, Value *Val, |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1878 | ArrayRef<unsigned> Idxs, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1879 | const Twine &NameStr, BasicBlock *InsertAtEnd); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1880 | |
| 1881 | /// Constructors - These two constructors are convenience methods because one |
| 1882 | /// and two index insertvalue instructions are so common. |
| 1883 | InsertValueInst(Value *Agg, Value *Val, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1884 | unsigned Idx, const Twine &NameStr = "", |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1885 | Instruction *InsertBefore = 0); |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1886 | InsertValueInst(Value *Agg, Value *Val, unsigned Idx, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1887 | const Twine &NameStr, BasicBlock *InsertAtEnd); |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 1888 | protected: |
| 1889 | virtual InsertValueInst *clone_impl() const; |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1890 | public: |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1891 | // allocate space for exactly two operands |
| 1892 | void *operator new(size_t s) { |
| 1893 | return User::operator new(s, 2); |
| 1894 | } |
| 1895 | |
Mikhail Glushenkov | d33b77b | 2010-10-27 07:39:54 +0000 | [diff] [blame] | 1896 | static InsertValueInst *Create(Value *Agg, Value *Val, |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1897 | ArrayRef<unsigned> Idxs, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1898 | const Twine &NameStr = "", |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1899 | Instruction *InsertBefore = 0) { |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1900 | return new InsertValueInst(Agg, Val, Idxs, NameStr, InsertBefore); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1901 | } |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1902 | static InsertValueInst *Create(Value *Agg, Value *Val, |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1903 | ArrayRef<unsigned> Idxs, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1904 | const Twine &NameStr, |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1905 | BasicBlock *InsertAtEnd) { |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1906 | return new InsertValueInst(Agg, Val, Idxs, NameStr, InsertAtEnd); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1907 | } |
| 1908 | |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1909 | /// Transparently provide more efficient getOperand methods. |
| 1910 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
| 1911 | |
Owen Anderson | 5678d6e | 2008-06-19 17:15:57 +0000 | [diff] [blame] | 1912 | typedef const unsigned* idx_iterator; |
| 1913 | inline idx_iterator idx_begin() const { return Indices.begin(); } |
| 1914 | inline idx_iterator idx_end() const { return Indices.end(); } |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1915 | |
| 1916 | Value *getAggregateOperand() { |
| 1917 | return getOperand(0); |
| 1918 | } |
| 1919 | const Value *getAggregateOperand() const { |
| 1920 | return getOperand(0); |
| 1921 | } |
| 1922 | static unsigned getAggregateOperandIndex() { |
| 1923 | return 0U; // get index for modifying correct operand |
| 1924 | } |
| 1925 | |
| 1926 | Value *getInsertedValueOperand() { |
| 1927 | return getOperand(1); |
| 1928 | } |
| 1929 | const Value *getInsertedValueOperand() const { |
| 1930 | return getOperand(1); |
| 1931 | } |
| 1932 | static unsigned getInsertedValueOperandIndex() { |
| 1933 | return 1U; // get index for modifying correct operand |
| 1934 | } |
| 1935 | |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1936 | ArrayRef<unsigned> getIndices() const { |
| 1937 | return Indices; |
| 1938 | } |
| 1939 | |
| 1940 | unsigned getNumIndices() const { |
Bill Wendling | 67944fc | 2008-06-05 07:35:27 +0000 | [diff] [blame] | 1941 | return (unsigned)Indices.size(); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1942 | } |
| 1943 | |
| 1944 | bool hasIndices() const { |
Dan Gohman | 35651cd | 2008-05-31 19:09:08 +0000 | [diff] [blame] | 1945 | return true; |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1946 | } |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 1947 | |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1948 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 1949 | static inline bool classof(const InsertValueInst *) { return true; } |
| 1950 | static inline bool classof(const Instruction *I) { |
| 1951 | return I->getOpcode() == Instruction::InsertValue; |
| 1952 | } |
| 1953 | static inline bool classof(const Value *V) { |
| 1954 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 1955 | } |
| 1956 | }; |
| 1957 | |
| 1958 | template <> |
Jay Foad | 67c619b | 2011-01-11 15:07:38 +0000 | [diff] [blame] | 1959 | struct OperandTraits<InsertValueInst> : |
| 1960 | public FixedNumOperandTraits<InsertValueInst, 2> { |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1961 | }; |
| 1962 | |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1963 | InsertValueInst::InsertValueInst(Value *Agg, |
| 1964 | Value *Val, |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1965 | ArrayRef<unsigned> Idxs, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1966 | const Twine &NameStr, |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1967 | Instruction *InsertBefore) |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1968 | : Instruction(Agg->getType(), InsertValue, |
| 1969 | OperandTraits<InsertValueInst>::op_begin(this), |
| 1970 | 2, InsertBefore) { |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1971 | init(Agg, Val, Idxs, NameStr); |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1972 | } |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1973 | InsertValueInst::InsertValueInst(Value *Agg, |
| 1974 | Value *Val, |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1975 | ArrayRef<unsigned> Idxs, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1976 | const Twine &NameStr, |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1977 | BasicBlock *InsertAtEnd) |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1978 | : Instruction(Agg->getType(), InsertValue, |
| 1979 | OperandTraits<InsertValueInst>::op_begin(this), |
| 1980 | 2, InsertAtEnd) { |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1981 | init(Agg, Val, Idxs, NameStr); |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1982 | } |
| 1983 | |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1984 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertValueInst, Value) |
| 1985 | |
| 1986 | //===----------------------------------------------------------------------===// |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1987 | // PHINode Class |
| 1988 | //===----------------------------------------------------------------------===// |
| 1989 | |
| 1990 | // PHINode - The PHINode class is used to represent the magical mystical PHI |
| 1991 | // node, that can not exist in nature, but can be synthesized in a computer |
| 1992 | // scientist's overactive imagination. |
| 1993 | // |
| 1994 | class PHINode : public Instruction { |
Craig Topper | ef1623f | 2012-09-18 03:25:49 +0000 | [diff] [blame] | 1995 | void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION; |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 1996 | /// ReservedSpace - The number of operands actually allocated. NumOperands is |
| 1997 | /// the number actually in use. |
| 1998 | unsigned ReservedSpace; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 1999 | PHINode(const PHINode &PN); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2000 | // allocate space for exactly zero operands |
| 2001 | void *operator new(size_t s) { |
| 2002 | return User::operator new(s, 0); |
| 2003 | } |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2004 | explicit PHINode(Type *Ty, unsigned NumReservedValues, |
Jay Foad | 3ecfc86 | 2011-03-30 11:28:46 +0000 | [diff] [blame] | 2005 | const Twine &NameStr = "", Instruction *InsertBefore = 0) |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 2006 | : Instruction(Ty, Instruction::PHI, 0, 0, InsertBefore), |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2007 | ReservedSpace(NumReservedValues) { |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 2008 | setName(NameStr); |
Jay Foad | 3ecfc86 | 2011-03-30 11:28:46 +0000 | [diff] [blame] | 2009 | OperandList = allocHungoffUses(ReservedSpace); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2010 | } |
| 2011 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2012 | PHINode(Type *Ty, unsigned NumReservedValues, const Twine &NameStr, |
Jay Foad | 3ecfc86 | 2011-03-30 11:28:46 +0000 | [diff] [blame] | 2013 | BasicBlock *InsertAtEnd) |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 2014 | : Instruction(Ty, Instruction::PHI, 0, 0, InsertAtEnd), |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2015 | ReservedSpace(NumReservedValues) { |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 2016 | setName(NameStr); |
Jay Foad | 3ecfc86 | 2011-03-30 11:28:46 +0000 | [diff] [blame] | 2017 | OperandList = allocHungoffUses(ReservedSpace); |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2018 | } |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 2019 | protected: |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2020 | // allocHungoffUses - this is more complicated than the generic |
| 2021 | // User::allocHungoffUses, because we have to allocate Uses for the incoming |
| 2022 | // values and pointers to the incoming blocks, all in one allocation. |
| 2023 | Use *allocHungoffUses(unsigned) const; |
| 2024 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 2025 | virtual PHINode *clone_impl() const; |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2026 | public: |
Jay Foad | 4499176 | 2011-03-30 13:29:06 +0000 | [diff] [blame] | 2027 | /// Constructors - NumReservedValues is a hint for the number of incoming |
| 2028 | /// edges that this phi node will have (use 0 if you really have no idea). |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2029 | static PHINode *Create(Type *Ty, unsigned NumReservedValues, |
Jay Foad | 3ecfc86 | 2011-03-30 11:28:46 +0000 | [diff] [blame] | 2030 | const Twine &NameStr = "", |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2031 | Instruction *InsertBefore = 0) { |
Jay Foad | 3ecfc86 | 2011-03-30 11:28:46 +0000 | [diff] [blame] | 2032 | return new PHINode(Ty, NumReservedValues, NameStr, InsertBefore); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2033 | } |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2034 | static PHINode *Create(Type *Ty, unsigned NumReservedValues, |
Jay Foad | 3ecfc86 | 2011-03-30 11:28:46 +0000 | [diff] [blame] | 2035 | const Twine &NameStr, BasicBlock *InsertAtEnd) { |
| 2036 | return new PHINode(Ty, NumReservedValues, NameStr, InsertAtEnd); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2037 | } |
Gordon Henriksen | afba8fe | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 2038 | ~PHINode(); |
| 2039 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2040 | /// Provide fast operand accessors |
| 2041 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
| 2042 | |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2043 | // Block iterator interface. This provides access to the list of incoming |
| 2044 | // basic blocks, which parallels the list of incoming values. |
| 2045 | |
| 2046 | typedef BasicBlock **block_iterator; |
| 2047 | typedef BasicBlock * const *const_block_iterator; |
| 2048 | |
| 2049 | block_iterator block_begin() { |
| 2050 | Use::UserRef *ref = |
| 2051 | reinterpret_cast<Use::UserRef*>(op_begin() + ReservedSpace); |
| 2052 | return reinterpret_cast<block_iterator>(ref + 1); |
| 2053 | } |
| 2054 | |
| 2055 | const_block_iterator block_begin() const { |
| 2056 | const Use::UserRef *ref = |
| 2057 | reinterpret_cast<const Use::UserRef*>(op_begin() + ReservedSpace); |
| 2058 | return reinterpret_cast<const_block_iterator>(ref + 1); |
| 2059 | } |
| 2060 | |
| 2061 | block_iterator block_end() { |
| 2062 | return block_begin() + getNumOperands(); |
| 2063 | } |
| 2064 | |
| 2065 | const_block_iterator block_end() const { |
| 2066 | return block_begin() + getNumOperands(); |
| 2067 | } |
| 2068 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2069 | /// getNumIncomingValues - Return the number of incoming edges |
| 2070 | /// |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2071 | unsigned getNumIncomingValues() const { return getNumOperands(); } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2072 | |
Reid Spencer | c773de6 | 2006-05-19 19:07:54 +0000 | [diff] [blame] | 2073 | /// getIncomingValue - Return incoming value number x |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2074 | /// |
| 2075 | Value *getIncomingValue(unsigned i) const { |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2076 | return getOperand(i); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2077 | } |
| 2078 | void setIncomingValue(unsigned i, Value *V) { |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2079 | setOperand(i, V); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2080 | } |
Dan Gohman | b45088c | 2009-03-23 15:48:29 +0000 | [diff] [blame] | 2081 | static unsigned getOperandNumForIncomingValue(unsigned i) { |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2082 | return i; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2083 | } |
Dan Gohman | b45088c | 2009-03-23 15:48:29 +0000 | [diff] [blame] | 2084 | static unsigned getIncomingValueNumForOperand(unsigned i) { |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2085 | return i; |
Dan Gohman | b45088c | 2009-03-23 15:48:29 +0000 | [diff] [blame] | 2086 | } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2087 | |
Dan Gohman | fb76fe0 | 2010-02-22 04:10:52 +0000 | [diff] [blame] | 2088 | /// getIncomingBlock - Return incoming basic block number @p i. |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2089 | /// |
Misha Brukman | 9769ab2 | 2005-04-21 20:19:05 +0000 | [diff] [blame] | 2090 | BasicBlock *getIncomingBlock(unsigned i) const { |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2091 | return block_begin()[i]; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2092 | } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 2093 | |
Chris Lattner | ceaa457 | 2009-10-10 07:42:42 +0000 | [diff] [blame] | 2094 | /// getIncomingBlock - Return incoming basic block corresponding |
| 2095 | /// to an operand of the PHI. |
| 2096 | /// |
| 2097 | BasicBlock *getIncomingBlock(const Use &U) const { |
| 2098 | assert(this == U.getUser() && "Iterator doesn't point to PHI's Uses?"); |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2099 | return getIncomingBlock(unsigned(&U - op_begin())); |
Chris Lattner | ceaa457 | 2009-10-10 07:42:42 +0000 | [diff] [blame] | 2100 | } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 2101 | |
Chris Lattner | ceaa457 | 2009-10-10 07:42:42 +0000 | [diff] [blame] | 2102 | /// getIncomingBlock - Return incoming basic block corresponding |
| 2103 | /// to value use iterator. |
| 2104 | /// |
| 2105 | template <typename U> |
| 2106 | BasicBlock *getIncomingBlock(value_use_iterator<U> I) const { |
| 2107 | return getIncomingBlock(I.getUse()); |
| 2108 | } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 2109 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2110 | void setIncomingBlock(unsigned i, BasicBlock *BB) { |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2111 | block_begin()[i] = BB; |
Dan Gohman | b45088c | 2009-03-23 15:48:29 +0000 | [diff] [blame] | 2112 | } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2113 | |
| 2114 | /// addIncoming - Add an incoming value to the end of the PHI list |
| 2115 | /// |
| 2116 | void addIncoming(Value *V, BasicBlock *BB) { |
Anton Korobeynikov | 351b0d4 | 2008-02-27 22:37:28 +0000 | [diff] [blame] | 2117 | assert(V && "PHI node got a null value!"); |
| 2118 | assert(BB && "PHI node got a null basic block!"); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2119 | assert(getType() == V->getType() && |
| 2120 | "All operands to PHI node must be the same type as the PHI node!"); |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2121 | if (NumOperands == ReservedSpace) |
Jay Foad | 8891ed7 | 2011-04-01 08:00:58 +0000 | [diff] [blame] | 2122 | growOperands(); // Get more space! |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2123 | // Initialize some new operands. |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2124 | ++NumOperands; |
| 2125 | setIncomingValue(NumOperands - 1, V); |
| 2126 | setIncomingBlock(NumOperands - 1, BB); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2127 | } |
Misha Brukman | 9769ab2 | 2005-04-21 20:19:05 +0000 | [diff] [blame] | 2128 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2129 | /// removeIncomingValue - Remove an incoming value. This is useful if a |
| 2130 | /// predecessor basic block is deleted. The value removed is returned. |
| 2131 | /// |
| 2132 | /// If the last incoming value for a PHI node is removed (and DeletePHIIfEmpty |
| 2133 | /// is true), the PHI node is destroyed and any uses of it are replaced with |
| 2134 | /// dummy values. The only time there should be zero incoming values to a PHI |
| 2135 | /// node is when the block is dead, so this strategy is sound. |
| 2136 | /// |
| 2137 | Value *removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty = true); |
| 2138 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2139 | Value *removeIncomingValue(const BasicBlock *BB, bool DeletePHIIfEmpty=true) { |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2140 | int Idx = getBasicBlockIndex(BB); |
| 2141 | assert(Idx >= 0 && "Invalid basic block argument to remove!"); |
| 2142 | return removeIncomingValue(Idx, DeletePHIIfEmpty); |
| 2143 | } |
| 2144 | |
Misha Brukman | 9769ab2 | 2005-04-21 20:19:05 +0000 | [diff] [blame] | 2145 | /// getBasicBlockIndex - Return the first index of the specified basic |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2146 | /// block in the value list for this PHI. Returns -1 if no instance. |
| 2147 | /// |
| 2148 | int getBasicBlockIndex(const BasicBlock *BB) const { |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2149 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) |
| 2150 | if (block_begin()[i] == BB) |
| 2151 | return i; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2152 | return -1; |
| 2153 | } |
| 2154 | |
| 2155 | Value *getIncomingValueForBlock(const BasicBlock *BB) const { |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 2156 | int Idx = getBasicBlockIndex(BB); |
| 2157 | assert(Idx >= 0 && "Invalid basic block argument!"); |
| 2158 | return getIncomingValue(Idx); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2159 | } |
| 2160 | |
Chris Lattner | f56a8db | 2006-10-03 17:09:12 +0000 | [diff] [blame] | 2161 | /// hasConstantValue - If the specified PHI node always merges together the |
Nate Begeman | a83ba0f | 2005-08-04 23:24:19 +0000 | [diff] [blame] | 2162 | /// same value, return the value, otherwise return null. |
Duncan Sands | ff10341 | 2010-11-17 04:30:22 +0000 | [diff] [blame] | 2163 | Value *hasConstantValue() const; |
Chris Lattner | f56a8db | 2006-10-03 17:09:12 +0000 | [diff] [blame] | 2164 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2165 | /// Methods for support type inquiry through isa, cast, and dyn_cast: |
| 2166 | static inline bool classof(const PHINode *) { return true; } |
| 2167 | static inline bool classof(const Instruction *I) { |
Misha Brukman | 9769ab2 | 2005-04-21 20:19:05 +0000 | [diff] [blame] | 2168 | return I->getOpcode() == Instruction::PHI; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2169 | } |
| 2170 | static inline bool classof(const Value *V) { |
| 2171 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 2172 | } |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2173 | private: |
Jay Foad | 8891ed7 | 2011-04-01 08:00:58 +0000 | [diff] [blame] | 2174 | void growOperands(); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2175 | }; |
| 2176 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2177 | template <> |
Duncan Sands | 59bf4fc | 2009-09-06 08:55:57 +0000 | [diff] [blame] | 2178 | struct OperandTraits<PHINode> : public HungoffOperandTraits<2> { |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2179 | }; |
| 2180 | |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 2181 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(PHINode, Value) |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2182 | |
Bill Wendling | e6e8826 | 2011-08-12 20:24:12 +0000 | [diff] [blame] | 2183 | //===----------------------------------------------------------------------===// |
| 2184 | // LandingPadInst Class |
| 2185 | //===----------------------------------------------------------------------===// |
| 2186 | |
| 2187 | //===--------------------------------------------------------------------------- |
| 2188 | /// LandingPadInst - The landingpad instruction holds all of the information |
| 2189 | /// necessary to generate correct exception handling. The landingpad instruction |
| 2190 | /// cannot be moved from the top of a landing pad block, which itself is |
| 2191 | /// accessible only from the 'unwind' edge of an invoke. This uses the |
| 2192 | /// SubclassData field in Value to store whether or not the landingpad is a |
| 2193 | /// cleanup. |
| 2194 | /// |
| 2195 | class LandingPadInst : public Instruction { |
| 2196 | /// ReservedSpace - The number of operands actually allocated. NumOperands is |
| 2197 | /// the number actually in use. |
| 2198 | unsigned ReservedSpace; |
| 2199 | LandingPadInst(const LandingPadInst &LP); |
| 2200 | public: |
| 2201 | enum ClauseType { Catch, Filter }; |
| 2202 | private: |
Craig Topper | ef1623f | 2012-09-18 03:25:49 +0000 | [diff] [blame] | 2203 | void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION; |
Bill Wendling | e6e8826 | 2011-08-12 20:24:12 +0000 | [diff] [blame] | 2204 | // Allocate space for exactly zero operands. |
| 2205 | void *operator new(size_t s) { |
| 2206 | return User::operator new(s, 0); |
| 2207 | } |
| 2208 | void growOperands(unsigned Size); |
| 2209 | void init(Value *PersFn, unsigned NumReservedValues, const Twine &NameStr); |
| 2210 | |
| 2211 | explicit LandingPadInst(Type *RetTy, Value *PersonalityFn, |
| 2212 | unsigned NumReservedValues, const Twine &NameStr, |
| 2213 | Instruction *InsertBefore); |
| 2214 | explicit LandingPadInst(Type *RetTy, Value *PersonalityFn, |
| 2215 | unsigned NumReservedValues, const Twine &NameStr, |
| 2216 | BasicBlock *InsertAtEnd); |
| 2217 | protected: |
| 2218 | virtual LandingPadInst *clone_impl() const; |
| 2219 | public: |
| 2220 | /// Constructors - NumReservedClauses is a hint for the number of incoming |
| 2221 | /// clauses that this landingpad will have (use 0 if you really have no idea). |
| 2222 | static LandingPadInst *Create(Type *RetTy, Value *PersonalityFn, |
| 2223 | unsigned NumReservedClauses, |
| 2224 | const Twine &NameStr = "", |
| 2225 | Instruction *InsertBefore = 0); |
| 2226 | static LandingPadInst *Create(Type *RetTy, Value *PersonalityFn, |
| 2227 | unsigned NumReservedClauses, |
| 2228 | const Twine &NameStr, BasicBlock *InsertAtEnd); |
| 2229 | ~LandingPadInst(); |
| 2230 | |
| 2231 | /// Provide fast operand accessors |
| 2232 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
| 2233 | |
| 2234 | /// getPersonalityFn - Get the personality function associated with this |
| 2235 | /// landing pad. |
| 2236 | Value *getPersonalityFn() const { return getOperand(0); } |
| 2237 | |
| 2238 | /// isCleanup - Return 'true' if this landingpad instruction is a |
| 2239 | /// cleanup. I.e., it should be run when unwinding even if its landing pad |
| 2240 | /// doesn't catch the exception. |
| 2241 | bool isCleanup() const { return getSubclassDataFromInstruction() & 1; } |
| 2242 | |
| 2243 | /// setCleanup - Indicate that this landingpad instruction is a cleanup. |
| 2244 | void setCleanup(bool V) { |
| 2245 | setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) | |
| 2246 | (V ? 1 : 0)); |
| 2247 | } |
| 2248 | |
| 2249 | /// addClause - Add a catch or filter clause to the landing pad. |
| 2250 | void addClause(Value *ClauseVal); |
| 2251 | |
| 2252 | /// getClause - Get the value of the clause at index Idx. Use isCatch/isFilter |
| 2253 | /// to determine what type of clause this is. |
| 2254 | Value *getClause(unsigned Idx) const { return OperandList[Idx + 1]; } |
| 2255 | |
| 2256 | /// isCatch - Return 'true' if the clause and index Idx is a catch clause. |
| 2257 | bool isCatch(unsigned Idx) const { |
| 2258 | return !isa<ArrayType>(OperandList[Idx + 1]->getType()); |
| 2259 | } |
| 2260 | |
| 2261 | /// isFilter - Return 'true' if the clause and index Idx is a filter clause. |
| 2262 | bool isFilter(unsigned Idx) const { |
| 2263 | return isa<ArrayType>(OperandList[Idx + 1]->getType()); |
| 2264 | } |
| 2265 | |
| 2266 | /// getNumClauses - Get the number of clauses for this landing pad. |
| 2267 | unsigned getNumClauses() const { return getNumOperands() - 1; } |
| 2268 | |
Benjamin Kramer | d9b0b02 | 2012-06-02 10:20:22 +0000 | [diff] [blame] | 2269 | /// reserveClauses - Grow the size of the operand list to accommodate the new |
Bill Wendling | e6e8826 | 2011-08-12 20:24:12 +0000 | [diff] [blame] | 2270 | /// number of clauses. |
| 2271 | void reserveClauses(unsigned Size) { growOperands(Size); } |
| 2272 | |
| 2273 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 2274 | static inline bool classof(const LandingPadInst *) { return true; } |
| 2275 | static inline bool classof(const Instruction *I) { |
| 2276 | return I->getOpcode() == Instruction::LandingPad; |
| 2277 | } |
| 2278 | static inline bool classof(const Value *V) { |
| 2279 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 2280 | } |
| 2281 | }; |
| 2282 | |
| 2283 | template <> |
| 2284 | struct OperandTraits<LandingPadInst> : public HungoffOperandTraits<2> { |
| 2285 | }; |
| 2286 | |
| 2287 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(LandingPadInst, Value) |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2288 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2289 | //===----------------------------------------------------------------------===// |
| 2290 | // ReturnInst Class |
| 2291 | //===----------------------------------------------------------------------===// |
| 2292 | |
| 2293 | //===--------------------------------------------------------------------------- |
| 2294 | /// ReturnInst - Return a value (possibly void), from a function. Execution |
| 2295 | /// does not continue in this function any longer. |
| 2296 | /// |
| 2297 | class ReturnInst : public TerminatorInst { |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 2298 | ReturnInst(const ReturnInst &RI); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2299 | |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2300 | private: |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2301 | // ReturnInst constructors: |
| 2302 | // ReturnInst() - 'ret void' instruction |
Alkis Evlogimenos | 859804f | 2004-11-17 21:02:25 +0000 | [diff] [blame] | 2303 | // ReturnInst( null) - 'ret void' instruction |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2304 | // ReturnInst(Value* X) - 'ret X' instruction |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2305 | // ReturnInst( null, Inst *I) - 'ret void' instruction, insert before I |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2306 | // ReturnInst(Value* X, Inst *I) - 'ret X' instruction, insert before I |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2307 | // ReturnInst( null, BB *B) - 'ret void' instruction, insert @ end of B |
| 2308 | // ReturnInst(Value* X, BB *B) - 'ret X' instruction, insert @ end of B |
Alkis Evlogimenos | 859804f | 2004-11-17 21:02:25 +0000 | [diff] [blame] | 2309 | // |
| 2310 | // NOTE: If the Value* passed is of type void then the constructor behaves as |
| 2311 | // if it was passed NULL. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 2312 | explicit ReturnInst(LLVMContext &C, Value *retVal = 0, |
| 2313 | Instruction *InsertBefore = 0); |
| 2314 | ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd); |
| 2315 | explicit ReturnInst(LLVMContext &C, BasicBlock *InsertAtEnd); |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 2316 | protected: |
| 2317 | virtual ReturnInst *clone_impl() const; |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2318 | public: |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 2319 | static ReturnInst* Create(LLVMContext &C, Value *retVal = 0, |
| 2320 | Instruction *InsertBefore = 0) { |
| 2321 | return new(!!retVal) ReturnInst(C, retVal, InsertBefore); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2322 | } |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 2323 | static ReturnInst* Create(LLVMContext &C, Value *retVal, |
| 2324 | BasicBlock *InsertAtEnd) { |
| 2325 | return new(!!retVal) ReturnInst(C, retVal, InsertAtEnd); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2326 | } |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 2327 | static ReturnInst* Create(LLVMContext &C, BasicBlock *InsertAtEnd) { |
| 2328 | return new(0) ReturnInst(C, InsertAtEnd); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2329 | } |
Devang Patel | 57ef4f4 | 2008-02-23 00:35:18 +0000 | [diff] [blame] | 2330 | virtual ~ReturnInst(); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2331 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2332 | /// Provide fast operand accessors |
| 2333 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
Devang Patel | 64d4e61 | 2008-02-26 17:56:20 +0000 | [diff] [blame] | 2334 | |
Dan Gohman | 8faa6af | 2010-10-06 16:59:24 +0000 | [diff] [blame] | 2335 | /// Convenience accessor. Returns null if there is no return value. |
| 2336 | Value *getReturnValue() const { |
| 2337 | return getNumOperands() != 0 ? getOperand(0) : 0; |
Devang Patel | 1eafa06 | 2008-03-11 17:35:03 +0000 | [diff] [blame] | 2338 | } |
| 2339 | |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2340 | unsigned getNumSuccessors() const { return 0; } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2341 | |
| 2342 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 2343 | static inline bool classof(const ReturnInst *) { return true; } |
| 2344 | static inline bool classof(const Instruction *I) { |
| 2345 | return (I->getOpcode() == Instruction::Ret); |
| 2346 | } |
| 2347 | static inline bool classof(const Value *V) { |
| 2348 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 2349 | } |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2350 | private: |
| 2351 | virtual BasicBlock *getSuccessorV(unsigned idx) const; |
| 2352 | virtual unsigned getNumSuccessorsV() const; |
| 2353 | virtual void setSuccessorV(unsigned idx, BasicBlock *B); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2354 | }; |
| 2355 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2356 | template <> |
Jay Foad | 67c619b | 2011-01-11 15:07:38 +0000 | [diff] [blame] | 2357 | struct OperandTraits<ReturnInst> : public VariadicOperandTraits<ReturnInst> { |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2358 | }; |
| 2359 | |
| 2360 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ReturnInst, Value) |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2361 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2362 | //===----------------------------------------------------------------------===// |
| 2363 | // BranchInst Class |
| 2364 | //===----------------------------------------------------------------------===// |
| 2365 | |
| 2366 | //===--------------------------------------------------------------------------- |
| 2367 | /// BranchInst - Conditional or Unconditional Branch instruction. |
| 2368 | /// |
| 2369 | class BranchInst : public TerminatorInst { |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2370 | /// Ops list - Branches are strange. The operands are ordered: |
Gabor Greif | ae5a20a | 2009-03-12 18:34:49 +0000 | [diff] [blame] | 2371 | /// [Cond, FalseDest,] TrueDest. This makes some accessors faster because |
| 2372 | /// they don't have to check for cond/uncond branchness. These are mostly |
| 2373 | /// accessed relative from op_end(). |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2374 | BranchInst(const BranchInst &BI); |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2375 | void AssertOK(); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2376 | // BranchInst constructors (where {B, T, F} are blocks, and C is a condition): |
| 2377 | // BranchInst(BB *B) - 'br B' |
| 2378 | // BranchInst(BB* T, BB *F, Value *C) - 'br C, T, F' |
| 2379 | // BranchInst(BB* B, Inst *I) - 'br B' insert before I |
| 2380 | // BranchInst(BB* T, BB *F, Value *C, Inst *I) - 'br C, T, F', insert before I |
| 2381 | // BranchInst(BB* B, BB *I) - 'br B' insert at end |
| 2382 | // BranchInst(BB* T, BB *F, Value *C, BB *I) - 'br C, T, F', insert at end |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 2383 | explicit BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore = 0); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2384 | BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 2385 | Instruction *InsertBefore = 0); |
| 2386 | BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2387 | BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 2388 | BasicBlock *InsertAtEnd); |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 2389 | protected: |
| 2390 | virtual BranchInst *clone_impl() const; |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2391 | public: |
| 2392 | static BranchInst *Create(BasicBlock *IfTrue, Instruction *InsertBefore = 0) { |
Jay Foad | 8e3914d | 2011-01-07 20:29:02 +0000 | [diff] [blame] | 2393 | return new(1) BranchInst(IfTrue, InsertBefore); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2394 | } |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2395 | static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse, |
| 2396 | Value *Cond, Instruction *InsertBefore = 0) { |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2397 | return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertBefore); |
| 2398 | } |
| 2399 | static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) { |
Jay Foad | 8e3914d | 2011-01-07 20:29:02 +0000 | [diff] [blame] | 2400 | return new(1) BranchInst(IfTrue, InsertAtEnd); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2401 | } |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2402 | static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse, |
| 2403 | Value *Cond, BasicBlock *InsertAtEnd) { |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2404 | return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertAtEnd); |
| 2405 | } |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2406 | |
| 2407 | /// Transparently provide more efficient getOperand methods. |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2408 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2409 | |
Devang Patel | 4d4a5e0 | 2008-02-23 01:11:02 +0000 | [diff] [blame] | 2410 | bool isUnconditional() const { return getNumOperands() == 1; } |
| 2411 | bool isConditional() const { return getNumOperands() == 3; } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2412 | |
Devang Patel | 4d4a5e0 | 2008-02-23 01:11:02 +0000 | [diff] [blame] | 2413 | Value *getCondition() const { |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2414 | assert(isConditional() && "Cannot get condition of an uncond branch!"); |
Gabor Greif | ae5a20a | 2009-03-12 18:34:49 +0000 | [diff] [blame] | 2415 | return Op<-3>(); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2416 | } |
| 2417 | |
| 2418 | void setCondition(Value *V) { |
| 2419 | assert(isConditional() && "Cannot set condition of unconditional branch!"); |
Gabor Greif | ae5a20a | 2009-03-12 18:34:49 +0000 | [diff] [blame] | 2420 | Op<-3>() = V; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2421 | } |
| 2422 | |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2423 | unsigned getNumSuccessors() const { return 1+isConditional(); } |
| 2424 | |
| 2425 | BasicBlock *getSuccessor(unsigned i) const { |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2426 | assert(i < getNumSuccessors() && "Successor # out of range for Branch!"); |
Gabor Greif | ae5a20a | 2009-03-12 18:34:49 +0000 | [diff] [blame] | 2427 | return cast_or_null<BasicBlock>((&Op<-1>() - i)->get()); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2428 | } |
| 2429 | |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2430 | void setSuccessor(unsigned idx, BasicBlock *NewSucc) { |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2431 | assert(idx < getNumSuccessors() && "Successor # out of range for Branch!"); |
Chris Lattner | 4b12293 | 2009-10-27 16:49:53 +0000 | [diff] [blame] | 2432 | *(&Op<-1>() - idx) = (Value*)NewSucc; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2433 | } |
| 2434 | |
Chandler Carruth | 602650c | 2011-10-17 01:11:57 +0000 | [diff] [blame] | 2435 | /// \brief Swap the successors of this branch instruction. |
| 2436 | /// |
| 2437 | /// Swaps the successors of the branch instruction. This also swaps any |
| 2438 | /// branch weight metadata associated with the instruction so that it |
| 2439 | /// continues to map correctly to each operand. |
| 2440 | void swapSuccessors(); |
| 2441 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2442 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 2443 | static inline bool classof(const BranchInst *) { return true; } |
| 2444 | static inline bool classof(const Instruction *I) { |
| 2445 | return (I->getOpcode() == Instruction::Br); |
| 2446 | } |
| 2447 | static inline bool classof(const Value *V) { |
| 2448 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 2449 | } |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2450 | private: |
| 2451 | virtual BasicBlock *getSuccessorV(unsigned idx) const; |
| 2452 | virtual unsigned getNumSuccessorsV() const; |
| 2453 | virtual void setSuccessorV(unsigned idx, BasicBlock *B); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2454 | }; |
| 2455 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2456 | template <> |
Jay Foad | 67c619b | 2011-01-11 15:07:38 +0000 | [diff] [blame] | 2457 | struct OperandTraits<BranchInst> : public VariadicOperandTraits<BranchInst, 1> { |
| 2458 | }; |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2459 | |
| 2460 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BranchInst, Value) |
| 2461 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2462 | //===----------------------------------------------------------------------===// |
| 2463 | // SwitchInst Class |
| 2464 | //===----------------------------------------------------------------------===// |
| 2465 | |
| 2466 | //===--------------------------------------------------------------------------- |
| 2467 | /// SwitchInst - Multiway switch |
| 2468 | /// |
| 2469 | class SwitchInst : public TerminatorInst { |
Craig Topper | ef1623f | 2012-09-18 03:25:49 +0000 | [diff] [blame] | 2470 | void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION; |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2471 | unsigned ReservedSpace; |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2472 | // Operands format: |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2473 | // Operand[0] = Value to switch on |
| 2474 | // Operand[1] = Default basic block destination |
| 2475 | // Operand[2n ] = Value to match |
| 2476 | // Operand[2n+1] = BasicBlock to go to on match |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2477 | |
| 2478 | // Store case values separately from operands list. We needn't User-Use |
| 2479 | // concept here, since it is just a case value, it will always constant, |
| 2480 | // and case value couldn't reused with another instructions/values. |
| 2481 | // Additionally: |
| 2482 | // It allows us to use custom type for case values that is not inherited |
| 2483 | // from Value. Since case value is a complex type that implements |
| 2484 | // the subset of integers, we needn't extract sub-constants within |
| 2485 | // slow getAggregateElement method. |
| 2486 | // For case values we will use std::list to by two reasons: |
| 2487 | // 1. It allows to add/remove cases without whole collection reallocation. |
| 2488 | // 2. In most of cases we needn't random access. |
| 2489 | // Currently case values are also stored in Operands List, but it will moved |
| 2490 | // out in future commits. |
| 2491 | typedef std::list<IntegersSubset> Subsets; |
| 2492 | typedef Subsets::iterator SubsetsIt; |
| 2493 | typedef Subsets::const_iterator SubsetsConstIt; |
| 2494 | |
| 2495 | Subsets TheSubsets; |
| 2496 | |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2497 | SwitchInst(const SwitchInst &SI); |
Chris Lattner | aa6e350 | 2010-11-17 05:41:46 +0000 | [diff] [blame] | 2498 | void init(Value *Value, BasicBlock *Default, unsigned NumReserved); |
Jay Foad | 8891ed7 | 2011-04-01 08:00:58 +0000 | [diff] [blame] | 2499 | void growOperands(); |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2500 | // allocate space for exactly zero operands |
| 2501 | void *operator new(size_t s) { |
| 2502 | return User::operator new(s, 0); |
| 2503 | } |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2504 | /// SwitchInst ctor - Create a new switch instruction, specifying a value to |
| 2505 | /// switch on and a default destination. The number of additional cases can |
| 2506 | /// be specified here to make memory allocation more efficient. This |
| 2507 | /// constructor can also autoinsert before another instruction. |
| 2508 | SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases, |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2509 | Instruction *InsertBefore); |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 2510 | |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2511 | /// SwitchInst ctor - Create a new switch instruction, specifying a value to |
| 2512 | /// switch on and a default destination. The number of additional cases can |
| 2513 | /// be specified here to make memory allocation more efficient. This |
| 2514 | /// constructor also autoinserts at the end of the specified BasicBlock. |
| 2515 | SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases, |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 2516 | BasicBlock *InsertAtEnd); |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 2517 | protected: |
| 2518 | virtual SwitchInst *clone_impl() const; |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2519 | public: |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2520 | |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2521 | // FIXME: Currently there are a lot of unclean template parameters, |
| 2522 | // we need to make refactoring in future. |
| 2523 | // All these parameters are used to implement both iterator and const_iterator |
| 2524 | // without code duplication. |
| 2525 | // SwitchInstTy may be "const SwitchInst" or "SwitchInst" |
| 2526 | // ConstantIntTy may be "const ConstantInt" or "ConstantInt" |
| 2527 | // SubsetsItTy may be SubsetsConstIt or SubsetsIt |
| 2528 | // BasicBlockTy may be "const BasicBlock" or "BasicBlock" |
| 2529 | template <class SwitchInstTy, class ConstantIntTy, |
| 2530 | class SubsetsItTy, class BasicBlockTy> |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2531 | class CaseIteratorT; |
| 2532 | |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2533 | typedef CaseIteratorT<const SwitchInst, const ConstantInt, |
| 2534 | SubsetsConstIt, const BasicBlock> ConstCaseIt; |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2535 | class CaseIt; |
| 2536 | |
Aaron Ballman | a13fb62 | 2012-03-10 23:03:01 +0000 | [diff] [blame] | 2537 | // -2 |
| 2538 | static const unsigned DefaultPseudoIndex = static_cast<unsigned>(~0L-1); |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2539 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2540 | static SwitchInst *Create(Value *Value, BasicBlock *Default, |
| 2541 | unsigned NumCases, Instruction *InsertBefore = 0) { |
| 2542 | return new SwitchInst(Value, Default, NumCases, InsertBefore); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2543 | } |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2544 | static SwitchInst *Create(Value *Value, BasicBlock *Default, |
| 2545 | unsigned NumCases, BasicBlock *InsertAtEnd) { |
| 2546 | return new SwitchInst(Value, Default, NumCases, InsertAtEnd); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 2547 | } |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2548 | |
Gordon Henriksen | afba8fe | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 2549 | ~SwitchInst(); |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2550 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2551 | /// Provide fast operand accessors |
| 2552 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
| 2553 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2554 | // Accessor Methods for Switch stmt |
Devang Patel | 4d4a5e0 | 2008-02-23 01:11:02 +0000 | [diff] [blame] | 2555 | Value *getCondition() const { return getOperand(0); } |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2556 | void setCondition(Value *V) { setOperand(0, V); } |
Chris Lattner | bfaf88a | 2004-12-10 20:35:47 +0000 | [diff] [blame] | 2557 | |
Devang Patel | 4d4a5e0 | 2008-02-23 01:11:02 +0000 | [diff] [blame] | 2558 | BasicBlock *getDefaultDest() const { |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2559 | return cast<BasicBlock>(getOperand(1)); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2560 | } |
| 2561 | |
Stepan Dyatkovskiy | 2447312 | 2012-02-01 07:49:51 +0000 | [diff] [blame] | 2562 | void setDefaultDest(BasicBlock *DefaultCase) { |
| 2563 | setOperand(1, reinterpret_cast<Value*>(DefaultCase)); |
| 2564 | } |
| 2565 | |
| 2566 | /// getNumCases - return the number of 'cases' in this switch instruction, |
| 2567 | /// except the default case |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2568 | unsigned getNumCases() const { |
Stepan Dyatkovskiy | 2447312 | 2012-02-01 07:49:51 +0000 | [diff] [blame] | 2569 | return getNumOperands()/2 - 1; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2570 | } |
| 2571 | |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2572 | /// Returns a read/write iterator that points to the first |
| 2573 | /// case in SwitchInst. |
Stepan Dyatkovskiy | 3d3abe0 | 2012-03-11 06:09:17 +0000 | [diff] [blame] | 2574 | CaseIt case_begin() { |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2575 | return CaseIt(this, 0, TheSubsets.begin()); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2576 | } |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2577 | /// Returns a read-only iterator that points to the first |
| 2578 | /// case in the SwitchInst. |
Stepan Dyatkovskiy | 3d3abe0 | 2012-03-11 06:09:17 +0000 | [diff] [blame] | 2579 | ConstCaseIt case_begin() const { |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2580 | return ConstCaseIt(this, 0, TheSubsets.begin()); |
Stepan Dyatkovskiy | 2447312 | 2012-02-01 07:49:51 +0000 | [diff] [blame] | 2581 | } |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2582 | |
| 2583 | /// Returns a read/write iterator that points one past the last |
| 2584 | /// in the SwitchInst. |
Stepan Dyatkovskiy | 3d3abe0 | 2012-03-11 06:09:17 +0000 | [diff] [blame] | 2585 | CaseIt case_end() { |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2586 | return CaseIt(this, getNumCases(), TheSubsets.end()); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2587 | } |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2588 | /// Returns a read-only iterator that points one past the last |
| 2589 | /// in the SwitchInst. |
Stepan Dyatkovskiy | 3d3abe0 | 2012-03-11 06:09:17 +0000 | [diff] [blame] | 2590 | ConstCaseIt case_end() const { |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2591 | return ConstCaseIt(this, getNumCases(), TheSubsets.end()); |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2592 | } |
Stepan Dyatkovskiy | 3d3abe0 | 2012-03-11 06:09:17 +0000 | [diff] [blame] | 2593 | /// Returns an iterator that points to the default case. |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2594 | /// Note: this iterator allows to resolve successor only. Attempt |
| 2595 | /// to resolve case value causes an assertion. |
Stepan Dyatkovskiy | 3d3abe0 | 2012-03-11 06:09:17 +0000 | [diff] [blame] | 2596 | /// Also note, that increment and decrement also causes an assertion and |
| 2597 | /// makes iterator invalid. |
| 2598 | CaseIt case_default() { |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2599 | return CaseIt(this, DefaultPseudoIndex, TheSubsets.end()); |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2600 | } |
Stepan Dyatkovskiy | 3d3abe0 | 2012-03-11 06:09:17 +0000 | [diff] [blame] | 2601 | ConstCaseIt case_default() const { |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2602 | return ConstCaseIt(this, DefaultPseudoIndex, TheSubsets.end()); |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2603 | } |
| 2604 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2605 | /// findCaseValue - Search all of the case values for the specified constant. |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2606 | /// If it is explicitly handled, return the case iterator of it, otherwise |
| 2607 | /// return default case iterator to indicate |
| 2608 | /// that it is handled by the default handler. |
| 2609 | CaseIt findCaseValue(const ConstantInt *C) { |
Stepan Dyatkovskiy | 3d3abe0 | 2012-03-11 06:09:17 +0000 | [diff] [blame] | 2610 | for (CaseIt i = case_begin(), e = case_end(); i != e; ++i) |
Stepan Dyatkovskiy | f8d14c4 | 2012-06-01 10:06:14 +0000 | [diff] [blame] | 2611 | if (i.getCaseValueEx().isSatisfies(IntItem::fromConstantInt(C))) |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2612 | return i; |
Stepan Dyatkovskiy | 3d3abe0 | 2012-03-11 06:09:17 +0000 | [diff] [blame] | 2613 | return case_default(); |
Stepan Dyatkovskiy | 2447312 | 2012-02-01 07:49:51 +0000 | [diff] [blame] | 2614 | } |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2615 | ConstCaseIt findCaseValue(const ConstantInt *C) const { |
Stepan Dyatkovskiy | 3d3abe0 | 2012-03-11 06:09:17 +0000 | [diff] [blame] | 2616 | for (ConstCaseIt i = case_begin(), e = case_end(); i != e; ++i) |
Stepan Dyatkovskiy | f8d14c4 | 2012-06-01 10:06:14 +0000 | [diff] [blame] | 2617 | if (i.getCaseValueEx().isSatisfies(IntItem::fromConstantInt(C))) |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2618 | return i; |
Stepan Dyatkovskiy | 3d3abe0 | 2012-03-11 06:09:17 +0000 | [diff] [blame] | 2619 | return case_default(); |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2620 | } |
Stepan Dyatkovskiy | 2447312 | 2012-02-01 07:49:51 +0000 | [diff] [blame] | 2621 | |
Nick Lewycky | 011f184 | 2006-09-18 19:03:59 +0000 | [diff] [blame] | 2622 | /// findCaseDest - Finds the unique case value for a given successor. Returns |
| 2623 | /// null if the successor is not found, not unique, or is the default case. |
| 2624 | ConstantInt *findCaseDest(BasicBlock *BB) { |
Nick Lewycky | d791544 | 2006-09-18 20:44:37 +0000 | [diff] [blame] | 2625 | if (BB == getDefaultDest()) return NULL; |
| 2626 | |
Nick Lewycky | 011f184 | 2006-09-18 19:03:59 +0000 | [diff] [blame] | 2627 | ConstantInt *CI = NULL; |
Stepan Dyatkovskiy | 3d3abe0 | 2012-03-11 06:09:17 +0000 | [diff] [blame] | 2628 | for (CaseIt i = case_begin(), e = case_end(); i != e; ++i) { |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2629 | if (i.getCaseSuccessor() == BB) { |
Nick Lewycky | 011f184 | 2006-09-18 19:03:59 +0000 | [diff] [blame] | 2630 | if (CI) return NULL; // Multiple cases lead to BB. |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 2631 | else CI = i.getCaseValue(); |
Nick Lewycky | 011f184 | 2006-09-18 19:03:59 +0000 | [diff] [blame] | 2632 | } |
| 2633 | } |
| 2634 | return CI; |
| 2635 | } |
| 2636 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2637 | /// addCase - Add an entry to the switch instruction... |
Dmitri Gribenko | 67c8978 | 2012-09-12 16:59:47 +0000 | [diff] [blame] | 2638 | /// @deprecated |
Stepan Dyatkovskiy | c347b6f | 2012-03-13 12:37:10 +0000 | [diff] [blame] | 2639 | /// Note: |
| 2640 | /// This action invalidates case_end(). Old case_end() iterator will |
| 2641 | /// point to the added case. |
Chris Lattner | d1a3260 | 2005-02-24 05:32:09 +0000 | [diff] [blame] | 2642 | void addCase(ConstantInt *OnVal, BasicBlock *Dest); |
Stepan Dyatkovskiy | 1cce5bf | 2012-05-12 10:48:17 +0000 | [diff] [blame] | 2643 | |
| 2644 | /// addCase - Add an entry to the switch instruction. |
| 2645 | /// Note: |
| 2646 | /// This action invalidates case_end(). Old case_end() iterator will |
| 2647 | /// point to the added case. |
Stepan Dyatkovskiy | 0aa32d5 | 2012-05-29 12:26:47 +0000 | [diff] [blame] | 2648 | void addCase(IntegersSubset& OnVal, BasicBlock *Dest); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2649 | |
Stepan Dyatkovskiy | 2447312 | 2012-02-01 07:49:51 +0000 | [diff] [blame] | 2650 | /// removeCase - This method removes the specified case and its successor |
| 2651 | /// from the switch instruction. Note that this operation may reorder the |
Jay Foad | 0faa609 | 2011-02-01 09:22:34 +0000 | [diff] [blame] | 2652 | /// remaining cases at index idx and above. |
Stepan Dyatkovskiy | c347b6f | 2012-03-13 12:37:10 +0000 | [diff] [blame] | 2653 | /// Note: |
| 2654 | /// This action invalidates iterators for all cases following the one removed, |
| 2655 | /// including the case_end() iterator. |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2656 | void removeCase(CaseIt& i); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2657 | |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2658 | unsigned getNumSuccessors() const { return getNumOperands()/2; } |
| 2659 | BasicBlock *getSuccessor(unsigned idx) const { |
| 2660 | assert(idx < getNumSuccessors() &&"Successor idx out of range for switch!"); |
| 2661 | return cast<BasicBlock>(getOperand(idx*2+1)); |
| 2662 | } |
| 2663 | void setSuccessor(unsigned idx, BasicBlock *NewSucc) { |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2664 | assert(idx < getNumSuccessors() && "Successor # out of range for switch!"); |
Chris Lattner | 4b12293 | 2009-10-27 16:49:53 +0000 | [diff] [blame] | 2665 | setOperand(idx*2+1, (Value*)NewSucc); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2666 | } |
Stepan Dyatkovskiy | 1cce5bf | 2012-05-12 10:48:17 +0000 | [diff] [blame] | 2667 | |
Stepan Dyatkovskiy | 734dde8 | 2012-05-14 08:26:31 +0000 | [diff] [blame] | 2668 | uint16_t hash() const { |
Stepan Dyatkovskiy | 1cce5bf | 2012-05-12 10:48:17 +0000 | [diff] [blame] | 2669 | uint32_t NumberOfCases = (uint32_t)getNumCases(); |
| 2670 | uint16_t Hash = (0xFFFF & NumberOfCases) ^ (NumberOfCases >> 16); |
| 2671 | for (ConstCaseIt i = case_begin(), e = case_end(); |
| 2672 | i != e; ++i) { |
| 2673 | uint32_t NumItems = (uint32_t)i.getCaseValueEx().getNumItems(); |
| 2674 | Hash = (Hash << 1) ^ (0xFFFF & NumItems) ^ (NumItems >> 16); |
| 2675 | } |
| 2676 | return Hash; |
| 2677 | } |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2678 | |
| 2679 | // Case iterators definition. |
| 2680 | |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2681 | template <class SwitchInstTy, class ConstantIntTy, |
| 2682 | class SubsetsItTy, class BasicBlockTy> |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2683 | class CaseIteratorT { |
| 2684 | protected: |
| 2685 | |
| 2686 | SwitchInstTy *SI; |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2687 | unsigned long Index; |
| 2688 | SubsetsItTy SubsetIt; |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2689 | |
| 2690 | /// Initializes case iterator for given SwitchInst and for given |
| 2691 | /// case number. |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2692 | friend class SwitchInst; |
| 2693 | CaseIteratorT(SwitchInstTy *SI, unsigned SuccessorIndex, |
| 2694 | SubsetsItTy CaseValueIt) { |
Duncan Sands | 37eeb05 | 2012-06-22 10:35:06 +0000 | [diff] [blame] | 2695 | this->SI = SI; |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2696 | Index = SuccessorIndex; |
| 2697 | this->SubsetIt = CaseValueIt; |
Duncan Sands | 37eeb05 | 2012-06-22 10:35:06 +0000 | [diff] [blame] | 2698 | } |
Stepan Dyatkovskiy | 7351256 | 2012-06-22 07:35:13 +0000 | [diff] [blame] | 2699 | |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2700 | public: |
| 2701 | typedef typename SubsetsItTy::reference IntegersSubsetRef; |
| 2702 | typedef CaseIteratorT<SwitchInstTy, ConstantIntTy, |
| 2703 | SubsetsItTy, BasicBlockTy> Self; |
| 2704 | |
| 2705 | CaseIteratorT(SwitchInstTy *SI, unsigned CaseNum) { |
| 2706 | this->SI = SI; |
| 2707 | Index = CaseNum; |
| 2708 | SubsetIt = SI->TheSubsets.begin(); |
| 2709 | std::advance(SubsetIt, CaseNum); |
| 2710 | } |
| 2711 | |
| 2712 | |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2713 | /// Initializes case iterator for given SwitchInst and for given |
| 2714 | /// TerminatorInst's successor index. |
| 2715 | static Self fromSuccessorIndex(SwitchInstTy *SI, unsigned SuccessorIndex) { |
| 2716 | assert(SuccessorIndex < SI->getNumSuccessors() && |
| 2717 | "Successor index # out of range!"); |
| 2718 | return SuccessorIndex != 0 ? |
| 2719 | Self(SI, SuccessorIndex - 1) : |
| 2720 | Self(SI, DefaultPseudoIndex); |
| 2721 | } |
| 2722 | |
| 2723 | /// Resolves case value for current case. |
Dmitri Gribenko | 67c8978 | 2012-09-12 16:59:47 +0000 | [diff] [blame] | 2724 | /// @deprecated |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2725 | ConstantIntTy *getCaseValue() { |
| 2726 | assert(Index < SI->getNumCases() && "Index out the number of cases."); |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2727 | IntegersSubsetRef CaseRanges = *SubsetIt; |
Stepan Dyatkovskiy | 484fc93 | 2012-05-28 12:39:09 +0000 | [diff] [blame] | 2728 | |
| 2729 | // FIXME: Currently we work with ConstantInt based cases. |
| 2730 | // So return CaseValue as ConstantInt. |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2731 | return CaseRanges.getSingleNumber(0).toConstantInt(); |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2732 | } |
| 2733 | |
| 2734 | /// Resolves case value for current case. |
Stepan Dyatkovskiy | 47cbc4e | 2012-06-23 10:58:58 +0000 | [diff] [blame] | 2735 | IntegersSubsetRef getCaseValueEx() { |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2736 | assert(Index < SI->getNumCases() && "Index out the number of cases."); |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2737 | return *SubsetIt; |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2738 | } |
| 2739 | |
| 2740 | /// Resolves successor for current case. |
| 2741 | BasicBlockTy *getCaseSuccessor() { |
| 2742 | assert((Index < SI->getNumCases() || |
| 2743 | Index == DefaultPseudoIndex) && |
| 2744 | "Index out the number of cases."); |
| 2745 | return SI->getSuccessor(getSuccessorIndex()); |
| 2746 | } |
| 2747 | |
| 2748 | /// Returns number of current case. |
| 2749 | unsigned getCaseIndex() const { return Index; } |
| 2750 | |
| 2751 | /// Returns TerminatorInst's successor index for current case successor. |
| 2752 | unsigned getSuccessorIndex() const { |
| 2753 | assert((Index == DefaultPseudoIndex || Index < SI->getNumCases()) && |
| 2754 | "Index out the number of cases."); |
| 2755 | return Index != DefaultPseudoIndex ? Index + 1 : 0; |
| 2756 | } |
| 2757 | |
| 2758 | Self operator++() { |
| 2759 | // Check index correctness after increment. |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2760 | // Note: Index == getNumCases() means end(). |
Kaelyn Uhrain | 35ac4b0 | 2012-06-22 17:18:15 +0000 | [diff] [blame] | 2761 | assert(Index+1 <= SI->getNumCases() && "Index out the number of cases."); |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2762 | ++Index; |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2763 | if (Index == 0) |
| 2764 | SubsetIt = SI->TheSubsets.begin(); |
| 2765 | else |
| 2766 | ++SubsetIt; |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2767 | return *this; |
| 2768 | } |
| 2769 | Self operator++(int) { |
| 2770 | Self tmp = *this; |
| 2771 | ++(*this); |
| 2772 | return tmp; |
| 2773 | } |
| 2774 | Self operator--() { |
| 2775 | // Check index correctness after decrement. |
| 2776 | // Note: Index == getNumCases() means end(). |
| 2777 | // Also allow "-1" iterator here. That will became valid after ++. |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2778 | unsigned NumCases = SI->getNumCases(); |
| 2779 | assert((Index == 0 || Index-1 <= NumCases) && |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2780 | "Index out the number of cases."); |
| 2781 | --Index; |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2782 | if (Index == NumCases) { |
| 2783 | SubsetIt = SI->TheSubsets.end(); |
| 2784 | return *this; |
| 2785 | } |
| 2786 | |
| 2787 | if (Index != -1UL) |
| 2788 | --SubsetIt; |
| 2789 | |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2790 | return *this; |
| 2791 | } |
| 2792 | Self operator--(int) { |
| 2793 | Self tmp = *this; |
| 2794 | --(*this); |
| 2795 | return tmp; |
| 2796 | } |
| 2797 | bool operator==(const Self& RHS) const { |
| 2798 | assert(RHS.SI == SI && "Incompatible operators."); |
| 2799 | return RHS.Index == Index; |
| 2800 | } |
| 2801 | bool operator!=(const Self& RHS) const { |
| 2802 | assert(RHS.SI == SI && "Incompatible operators."); |
| 2803 | return RHS.Index != Index; |
| 2804 | } |
| 2805 | }; |
| 2806 | |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2807 | class CaseIt : public CaseIteratorT<SwitchInst, ConstantInt, |
| 2808 | SubsetsIt, BasicBlock> { |
| 2809 | typedef CaseIteratorT<SwitchInst, ConstantInt, SubsetsIt, BasicBlock> |
| 2810 | ParentTy; |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2811 | |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2812 | protected: |
| 2813 | friend class SwitchInst; |
| 2814 | CaseIt(SwitchInst *SI, unsigned CaseNum, SubsetsIt SubsetIt) : |
| 2815 | ParentTy(SI, CaseNum, SubsetIt) {} |
| 2816 | |
| 2817 | void updateCaseValueOperand(IntegersSubset& V) { |
| 2818 | SI->setOperand(2 + Index*2, reinterpret_cast<Value*>((Constant*)V)); |
| 2819 | } |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2820 | |
| 2821 | public: |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2822 | |
| 2823 | CaseIt(SwitchInst *SI, unsigned CaseNum) : ParentTy(SI, CaseNum) {} |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2824 | |
| 2825 | CaseIt(const ParentTy& Src) : ParentTy(Src) {} |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2826 | |
| 2827 | /// Sets the new value for current case. |
Dmitri Gribenko | 67c8978 | 2012-09-12 16:59:47 +0000 | [diff] [blame] | 2828 | /// @deprecated. |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2829 | void setValue(ConstantInt *V) { |
| 2830 | assert(Index < SI->getNumCases() && "Index out the number of cases."); |
Stepan Dyatkovskiy | 0aa32d5 | 2012-05-29 12:26:47 +0000 | [diff] [blame] | 2831 | IntegersSubsetToBB Mapping; |
Stepan Dyatkovskiy | 484fc93 | 2012-05-28 12:39:09 +0000 | [diff] [blame] | 2832 | // FIXME: Currently we work with ConstantInt based cases. |
| 2833 | // So inititalize IntItem container directly from ConstantInt. |
Stepan Dyatkovskiy | 0aa32d5 | 2012-05-29 12:26:47 +0000 | [diff] [blame] | 2834 | Mapping.add(IntItem::fromConstantInt(V)); |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2835 | *SubsetIt = Mapping.getCase(); |
| 2836 | updateCaseValueOperand(*SubsetIt); |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2837 | } |
| 2838 | |
| 2839 | /// Sets the new value for current case. |
Stepan Dyatkovskiy | 0aa32d5 | 2012-05-29 12:26:47 +0000 | [diff] [blame] | 2840 | void setValueEx(IntegersSubset& V) { |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2841 | assert(Index < SI->getNumCases() && "Index out the number of cases."); |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 2842 | *SubsetIt = V; |
| 2843 | updateCaseValueOperand(*SubsetIt); |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2844 | } |
| 2845 | |
| 2846 | /// Sets the new successor for current case. |
| 2847 | void setSuccessor(BasicBlock *S) { |
| 2848 | SI->setSuccessor(getSuccessorIndex(), S); |
| 2849 | } |
| 2850 | }; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2851 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2852 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
Stepan Dyatkovskiy | ff208a7 | 2012-05-28 10:11:27 +0000 | [diff] [blame] | 2853 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2854 | static inline bool classof(const SwitchInst *) { return true; } |
| 2855 | static inline bool classof(const Instruction *I) { |
Chris Lattner | d1a3260 | 2005-02-24 05:32:09 +0000 | [diff] [blame] | 2856 | return I->getOpcode() == Instruction::Switch; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2857 | } |
| 2858 | static inline bool classof(const Value *V) { |
| 2859 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 2860 | } |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 2861 | private: |
| 2862 | virtual BasicBlock *getSuccessorV(unsigned idx) const; |
| 2863 | virtual unsigned getNumSuccessorsV() const; |
| 2864 | virtual void setSuccessorV(unsigned idx, BasicBlock *B); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2865 | }; |
| 2866 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2867 | template <> |
Duncan Sands | 59bf4fc | 2009-09-06 08:55:57 +0000 | [diff] [blame] | 2868 | struct OperandTraits<SwitchInst> : public HungoffOperandTraits<2> { |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2869 | }; |
| 2870 | |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 2871 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SwitchInst, Value) |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2872 | |
| 2873 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2874 | //===----------------------------------------------------------------------===// |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2875 | // IndirectBrInst Class |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2876 | //===----------------------------------------------------------------------===// |
| 2877 | |
| 2878 | //===--------------------------------------------------------------------------- |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2879 | /// IndirectBrInst - Indirect Branch Instruction. |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2880 | /// |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2881 | class IndirectBrInst : public TerminatorInst { |
Craig Topper | ef1623f | 2012-09-18 03:25:49 +0000 | [diff] [blame] | 2882 | void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION; |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2883 | unsigned ReservedSpace; |
| 2884 | // Operand[0] = Value to switch on |
| 2885 | // Operand[1] = Default basic block destination |
| 2886 | // Operand[2n ] = Value to match |
| 2887 | // Operand[2n+1] = BasicBlock to go to on match |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2888 | IndirectBrInst(const IndirectBrInst &IBI); |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2889 | void init(Value *Address, unsigned NumDests); |
Jay Foad | 8891ed7 | 2011-04-01 08:00:58 +0000 | [diff] [blame] | 2890 | void growOperands(); |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2891 | // allocate space for exactly zero operands |
| 2892 | void *operator new(size_t s) { |
| 2893 | return User::operator new(s, 0); |
| 2894 | } |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2895 | /// IndirectBrInst ctor - Create a new indirectbr instruction, specifying an |
| 2896 | /// Address to jump to. The number of expected destinations can be specified |
| 2897 | /// here to make memory allocation more efficient. This constructor can also |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2898 | /// autoinsert before another instruction. |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2899 | IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore); |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 2900 | |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2901 | /// IndirectBrInst ctor - Create a new indirectbr instruction, specifying an |
| 2902 | /// Address to jump to. The number of expected destinations can be specified |
| 2903 | /// here to make memory allocation more efficient. This constructor also |
| 2904 | /// autoinserts at the end of the specified BasicBlock. |
| 2905 | IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd); |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 2906 | protected: |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2907 | virtual IndirectBrInst *clone_impl() const; |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2908 | public: |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2909 | static IndirectBrInst *Create(Value *Address, unsigned NumDests, |
| 2910 | Instruction *InsertBefore = 0) { |
| 2911 | return new IndirectBrInst(Address, NumDests, InsertBefore); |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2912 | } |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2913 | static IndirectBrInst *Create(Value *Address, unsigned NumDests, |
| 2914 | BasicBlock *InsertAtEnd) { |
| 2915 | return new IndirectBrInst(Address, NumDests, InsertAtEnd); |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2916 | } |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2917 | ~IndirectBrInst(); |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 2918 | |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2919 | /// Provide fast operand accessors. |
| 2920 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 2921 | |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2922 | // Accessor Methods for IndirectBrInst instruction. |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2923 | Value *getAddress() { return getOperand(0); } |
| 2924 | const Value *getAddress() const { return getOperand(0); } |
| 2925 | void setAddress(Value *V) { setOperand(0, V); } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 2926 | |
| 2927 | |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2928 | /// getNumDestinations - return the number of possible destinations in this |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2929 | /// indirectbr instruction. |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2930 | unsigned getNumDestinations() const { return getNumOperands()-1; } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 2931 | |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2932 | /// getDestination - Return the specified destination. |
| 2933 | BasicBlock *getDestination(unsigned i) { return getSuccessor(i); } |
| 2934 | const BasicBlock *getDestination(unsigned i) const { return getSuccessor(i); } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 2935 | |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2936 | /// addDestination - Add a destination. |
| 2937 | /// |
| 2938 | void addDestination(BasicBlock *Dest); |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 2939 | |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2940 | /// removeDestination - This method removes the specified successor from the |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2941 | /// indirectbr instruction. |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2942 | void removeDestination(unsigned i); |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 2943 | |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2944 | unsigned getNumSuccessors() const { return getNumOperands()-1; } |
| 2945 | BasicBlock *getSuccessor(unsigned i) const { |
| 2946 | return cast<BasicBlock>(getOperand(i+1)); |
| 2947 | } |
| 2948 | void setSuccessor(unsigned i, BasicBlock *NewSucc) { |
| 2949 | setOperand(i+1, (Value*)NewSucc); |
| 2950 | } |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 2951 | |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2952 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2953 | static inline bool classof(const IndirectBrInst *) { return true; } |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2954 | static inline bool classof(const Instruction *I) { |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2955 | return I->getOpcode() == Instruction::IndirectBr; |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2956 | } |
| 2957 | static inline bool classof(const Value *V) { |
| 2958 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 2959 | } |
| 2960 | private: |
| 2961 | virtual BasicBlock *getSuccessorV(unsigned idx) const; |
| 2962 | virtual unsigned getNumSuccessorsV() const; |
| 2963 | virtual void setSuccessorV(unsigned idx, BasicBlock *B); |
| 2964 | }; |
| 2965 | |
| 2966 | template <> |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2967 | struct OperandTraits<IndirectBrInst> : public HungoffOperandTraits<1> { |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2968 | }; |
| 2969 | |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 2970 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(IndirectBrInst, Value) |
Mikhail Glushenkov | 0da14f7 | 2010-10-27 07:39:48 +0000 | [diff] [blame] | 2971 | |
| 2972 | |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 2973 | //===----------------------------------------------------------------------===// |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2974 | // InvokeInst Class |
| 2975 | //===----------------------------------------------------------------------===// |
| 2976 | |
Chris Lattner | 3340ffe | 2005-05-06 20:26:26 +0000 | [diff] [blame] | 2977 | /// InvokeInst - Invoke instruction. The SubclassData field is used to hold the |
| 2978 | /// calling convention of the call. |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2979 | /// |
| 2980 | class InvokeInst : public TerminatorInst { |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 2981 | AttrListPtr AttributeList; |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 2982 | InvokeInst(const InvokeInst &BI); |
David Greene | f1355a5 | 2007-08-27 19:04:21 +0000 | [diff] [blame] | 2983 | void init(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException, |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 2984 | ArrayRef<Value *> Args, const Twine &NameStr); |
David Greene | f1355a5 | 2007-08-27 19:04:21 +0000 | [diff] [blame] | 2985 | |
David Greene | f1355a5 | 2007-08-27 19:04:21 +0000 | [diff] [blame] | 2986 | /// Construct an InvokeInst given a range of arguments. |
David Greene | f1355a5 | 2007-08-27 19:04:21 +0000 | [diff] [blame] | 2987 | /// |
| 2988 | /// @brief Construct an InvokeInst from a range of arguments |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2989 | inline InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException, |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 2990 | ArrayRef<Value *> Args, unsigned Values, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2991 | const Twine &NameStr, Instruction *InsertBefore); |
David Greene | f1355a5 | 2007-08-27 19:04:21 +0000 | [diff] [blame] | 2992 | |
| 2993 | /// Construct an InvokeInst given a range of arguments. |
David Greene | f1355a5 | 2007-08-27 19:04:21 +0000 | [diff] [blame] | 2994 | /// |
| 2995 | /// @brief Construct an InvokeInst from a range of arguments |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2996 | inline InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException, |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 2997 | ArrayRef<Value *> Args, unsigned Values, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2998 | const Twine &NameStr, BasicBlock *InsertAtEnd); |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 2999 | protected: |
| 3000 | virtual InvokeInst *clone_impl() const; |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 3001 | public: |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 3002 | static InvokeInst *Create(Value *Func, |
| 3003 | BasicBlock *IfNormal, BasicBlock *IfException, |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 3004 | ArrayRef<Value *> Args, const Twine &NameStr = "", |
Evan Cheng | d69bb1a | 2008-05-05 17:41:03 +0000 | [diff] [blame] | 3005 | Instruction *InsertBefore = 0) { |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 3006 | unsigned Values = unsigned(Args.size()) + 3; |
| 3007 | return new(Values) InvokeInst(Func, IfNormal, IfException, Args, |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 3008 | Values, NameStr, InsertBefore); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 3009 | } |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 3010 | static InvokeInst *Create(Value *Func, |
| 3011 | BasicBlock *IfNormal, BasicBlock *IfException, |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 3012 | ArrayRef<Value *> Args, const Twine &NameStr, |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 3013 | BasicBlock *InsertAtEnd) { |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 3014 | unsigned Values = unsigned(Args.size()) + 3; |
| 3015 | return new(Values) InvokeInst(Func, IfNormal, IfException, Args, |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 3016 | Values, NameStr, InsertAtEnd); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 3017 | } |
David Greene | f1355a5 | 2007-08-27 19:04:21 +0000 | [diff] [blame] | 3018 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 3019 | /// Provide fast operand accessors |
| 3020 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 3021 | |
Gabor Greif | 0114b99 | 2010-07-31 08:35:21 +0000 | [diff] [blame] | 3022 | /// getNumArgOperands - Return the number of invoke arguments. |
| 3023 | /// |
Bill Wendling | 22a5b29 | 2010-06-07 19:05:06 +0000 | [diff] [blame] | 3024 | unsigned getNumArgOperands() const { return getNumOperands() - 3; } |
Gabor Greif | 0114b99 | 2010-07-31 08:35:21 +0000 | [diff] [blame] | 3025 | |
| 3026 | /// getArgOperand/setArgOperand - Return/set the i-th invoke argument. |
| 3027 | /// |
Bill Wendling | 22a5b29 | 2010-06-07 19:05:06 +0000 | [diff] [blame] | 3028 | Value *getArgOperand(unsigned i) const { return getOperand(i); } |
Gabor Greif | 710ac07 | 2010-06-28 12:23:36 +0000 | [diff] [blame] | 3029 | void setArgOperand(unsigned i, Value *v) { setOperand(i, v); } |
Bill Wendling | 22a5b29 | 2010-06-07 19:05:06 +0000 | [diff] [blame] | 3030 | |
Chris Lattner | 3340ffe | 2005-05-06 20:26:26 +0000 | [diff] [blame] | 3031 | /// getCallingConv/setCallingConv - Get or set the calling convention of this |
| 3032 | /// function call. |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 3033 | CallingConv::ID getCallingConv() const { |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 3034 | return static_cast<CallingConv::ID>(getSubclassDataFromInstruction()); |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 3035 | } |
| 3036 | void setCallingConv(CallingConv::ID CC) { |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 3037 | setInstructionSubclassData(static_cast<unsigned>(CC)); |
Chris Lattner | 3340ffe | 2005-05-06 20:26:26 +0000 | [diff] [blame] | 3038 | } |
| 3039 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 3040 | /// getAttributes - Return the parameter attributes for this invoke. |
Chris Lattner | 58d7491 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 3041 | /// |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 3042 | const AttrListPtr &getAttributes() const { return AttributeList; } |
Reid Spencer | fa3e912 | 2007-04-09 18:00:57 +0000 | [diff] [blame] | 3043 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 3044 | /// setAttributes - Set the parameter attributes for this invoke. |
Chris Lattner | 58d7491 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 3045 | /// |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 3046 | void setAttributes(const AttrListPtr &Attrs) { AttributeList = Attrs; } |
Duncan Sands | dc02467 | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 3047 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 3048 | /// addAttribute - adds the attribute to the list of attributes. |
| 3049 | void addAttribute(unsigned i, Attributes attr); |
Duncan Sands | afa3b6d | 2007-11-28 17:07:01 +0000 | [diff] [blame] | 3050 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 3051 | /// removeAttribute - removes the attribute from the list of attributes. |
| 3052 | void removeAttribute(unsigned i, Attributes attr); |
Duncan Sands | 2e033f3 | 2008-07-08 08:38:44 +0000 | [diff] [blame] | 3053 | |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 3054 | /// @brief Determine whether this call has the NoAlias attribute. |
| 3055 | bool fnHasNoAliasAttr() const; |
| 3056 | bool fnHasNoInlineAttr() const; |
| 3057 | bool fnHasNoReturnAttr() const; |
| 3058 | bool fnHasNoUnwindAttr() const; |
| 3059 | bool fnHasReadNoneAttr() const; |
| 3060 | bool fnHasReadOnlyAttr() const; |
| 3061 | bool fnHasReturnsTwiceAttr() const; |
| 3062 | |
Nuno Lopes | 986da6c | 2012-06-25 16:16:58 +0000 | [diff] [blame] | 3063 | /// \brief Return true if this call has the given attribute. |
| 3064 | bool hasFnAttr(Attributes N) const { |
| 3065 | return paramHasAttr(~0, N); |
| 3066 | } |
| 3067 | |
Bill Wendling | 847d165 | 2012-10-03 17:54:26 +0000 | [diff] [blame] | 3068 | /// @brief Determine whether the call or the callee has the given attributes. |
| 3069 | bool paramHasSExtAttr(unsigned i) const; |
| 3070 | bool paramHasZExtAttr(unsigned i) const; |
| 3071 | bool paramHasInRegAttr(unsigned i) const; |
| 3072 | bool paramHasStructRetAttr(unsigned i) const; |
| 3073 | bool paramHasNestAttr(unsigned i) const; |
| 3074 | bool paramHasByValAttr(unsigned i) const; |
Bill Wendling | 5df15c6 | 2012-10-04 06:52:09 +0000 | [diff] [blame] | 3075 | bool paramHasNoAliasAttr(unsigned i) const; |
Bill Wendling | 365b9e0 | 2012-10-04 07:18:12 +0000 | [diff] [blame] | 3076 | bool paramHasNoCaptureAttr(unsigned i) const; |
Bill Wendling | 847d165 | 2012-10-03 17:54:26 +0000 | [diff] [blame] | 3077 | |
Dan Gohman | f275250 | 2008-09-26 21:38:45 +0000 | [diff] [blame] | 3078 | /// @brief Determine whether the call or the callee has the given attribute. |
| 3079 | bool paramHasAttr(unsigned i, Attributes attr) const; |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 3080 | |
Dale Johannesen | 08e78b1 | 2008-02-22 17:49:45 +0000 | [diff] [blame] | 3081 | /// @brief Extract the alignment for a call or parameter (0=unknown). |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 3082 | unsigned getParamAlignment(unsigned i) const { |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 3083 | return AttributeList.getParamAlignment(i); |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 3084 | } |
Dale Johannesen | 08e78b1 | 2008-02-22 17:49:45 +0000 | [diff] [blame] | 3085 | |
Eric Christopher | f27e608 | 2010-03-25 04:49:10 +0000 | [diff] [blame] | 3086 | /// @brief Return true if the call should not be inlined. |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 3087 | bool isNoInline() const { return fnHasNoInlineAttr(); } |
Nick Lewycky | b9933b8 | 2010-07-06 03:53:22 +0000 | [diff] [blame] | 3088 | void setIsNoInline(bool Value = true) { |
Eric Christopher | f27e608 | 2010-03-25 04:49:10 +0000 | [diff] [blame] | 3089 | if (Value) addAttribute(~0, Attribute::NoInline); |
| 3090 | else removeAttribute(~0, Attribute::NoInline); |
| 3091 | } |
Nick Lewycky | b9933b8 | 2010-07-06 03:53:22 +0000 | [diff] [blame] | 3092 | |
Duncan Sands | a3355ff | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 3093 | /// @brief Determine if the call does not access memory. |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 3094 | bool doesNotAccessMemory() const { |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 3095 | return fnHasReadNoneAttr(); |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 3096 | } |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 3097 | void setDoesNotAccessMemory(bool NotAccessMemory = true) { |
Devang Patel | 19c8746 | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 3098 | if (NotAccessMemory) addAttribute(~0, Attribute::ReadNone); |
| 3099 | else removeAttribute(~0, Attribute::ReadNone); |
Duncan Sands | 2e033f3 | 2008-07-08 08:38:44 +0000 | [diff] [blame] | 3100 | } |
Duncan Sands | a3355ff | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 3101 | |
| 3102 | /// @brief Determine if the call does not access or only reads memory. |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 3103 | bool onlyReadsMemory() const { |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 3104 | return doesNotAccessMemory() || fnHasReadOnlyAttr(); |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 3105 | } |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 3106 | void setOnlyReadsMemory(bool OnlyReadsMemory = true) { |
Devang Patel | 19c8746 | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 3107 | if (OnlyReadsMemory) addAttribute(~0, Attribute::ReadOnly); |
| 3108 | else removeAttribute(~0, Attribute::ReadOnly | Attribute::ReadNone); |
Duncan Sands | 2e033f3 | 2008-07-08 08:38:44 +0000 | [diff] [blame] | 3109 | } |
Duncan Sands | a3355ff | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 3110 | |
Duncan Sands | cbb8bad | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 3111 | /// @brief Determine if the call cannot return. |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 3112 | bool doesNotReturn() const { return fnHasNoReturnAttr(); } |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 3113 | void setDoesNotReturn(bool DoesNotReturn = true) { |
Devang Patel | 19c8746 | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 3114 | if (DoesNotReturn) addAttribute(~0, Attribute::NoReturn); |
| 3115 | else removeAttribute(~0, Attribute::NoReturn); |
Duncan Sands | 2e033f3 | 2008-07-08 08:38:44 +0000 | [diff] [blame] | 3116 | } |
Duncan Sands | cbb8bad | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 3117 | |
Duncan Sands | a3355ff | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 3118 | /// @brief Determine if the call cannot unwind. |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 3119 | bool doesNotThrow() const { return fnHasNoUnwindAttr(); } |
Evan Cheng | 1bf9a18 | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 3120 | void setDoesNotThrow(bool DoesNotThrow = true) { |
Devang Patel | 19c8746 | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 3121 | if (DoesNotThrow) addAttribute(~0, Attribute::NoUnwind); |
| 3122 | else removeAttribute(~0, Attribute::NoUnwind); |
Duncan Sands | 2e033f3 | 2008-07-08 08:38:44 +0000 | [diff] [blame] | 3123 | } |
Duncan Sands | a3355ff | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 3124 | |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 3125 | /// @brief Determine if the call returns a structure through first |
Devang Patel | 41e2397 | 2008-03-03 21:46:28 +0000 | [diff] [blame] | 3126 | /// pointer argument. |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 3127 | bool hasStructRetAttr() const { |
| 3128 | // Be friendly and also check the callee. |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 3129 | return paramHasStructRetAttr(1); |
Chris Lattner | d5d94df | 2008-03-13 05:00:21 +0000 | [diff] [blame] | 3130 | } |
Reid Spencer | fa3e912 | 2007-04-09 18:00:57 +0000 | [diff] [blame] | 3131 | |
Dan Gohman | f275250 | 2008-09-26 21:38:45 +0000 | [diff] [blame] | 3132 | /// @brief Determine if any call argument is an aggregate passed by value. |
| 3133 | bool hasByValArgument() const { |
Bill Wendling | 2fd7765 | 2012-10-09 01:03:48 +0000 | [diff] [blame^] | 3134 | for (unsigned I = 0, E = AttributeList.getNumAttrs(); I != E; ++I) |
| 3135 | if (AttributeList.getAttributesAtIndex(I).hasByValAttr()) |
| 3136 | return true; |
| 3137 | return false; |
Dan Gohman | f275250 | 2008-09-26 21:38:45 +0000 | [diff] [blame] | 3138 | } |
| 3139 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3140 | /// getCalledFunction - Return the function called, or null if this is an |
Chris Lattner | 721aef6 | 2004-11-18 17:46:57 +0000 | [diff] [blame] | 3141 | /// indirect function invocation. |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3142 | /// |
Chris Lattner | 721aef6 | 2004-11-18 17:46:57 +0000 | [diff] [blame] | 3143 | Function *getCalledFunction() const { |
Gabor Greif | c9f7500 | 2010-03-24 13:21:49 +0000 | [diff] [blame] | 3144 | return dyn_cast<Function>(Op<-3>()); |
Chris Lattner | 721aef6 | 2004-11-18 17:46:57 +0000 | [diff] [blame] | 3145 | } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3146 | |
Mikhail Glushenkov | ed2c453 | 2009-02-09 17:11:05 +0000 | [diff] [blame] | 3147 | /// getCalledValue - Get a pointer to the function that is invoked by this |
Dan Gohman | f275250 | 2008-09-26 21:38:45 +0000 | [diff] [blame] | 3148 | /// instruction |
Gabor Greif | c9f7500 | 2010-03-24 13:21:49 +0000 | [diff] [blame] | 3149 | const Value *getCalledValue() const { return Op<-3>(); } |
| 3150 | Value *getCalledValue() { return Op<-3>(); } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3151 | |
Gabor Greif | 654c06f | 2010-03-20 21:00:25 +0000 | [diff] [blame] | 3152 | /// setCalledFunction - Set the function called. |
| 3153 | void setCalledFunction(Value* Fn) { |
Gabor Greif | c9f7500 | 2010-03-24 13:21:49 +0000 | [diff] [blame] | 3154 | Op<-3>() = Fn; |
Gabor Greif | 654c06f | 2010-03-20 21:00:25 +0000 | [diff] [blame] | 3155 | } |
| 3156 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3157 | // get*Dest - Return the destination basic blocks... |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 3158 | BasicBlock *getNormalDest() const { |
Gabor Greif | c9f7500 | 2010-03-24 13:21:49 +0000 | [diff] [blame] | 3159 | return cast<BasicBlock>(Op<-2>()); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3160 | } |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 3161 | BasicBlock *getUnwindDest() const { |
Gabor Greif | c9f7500 | 2010-03-24 13:21:49 +0000 | [diff] [blame] | 3162 | return cast<BasicBlock>(Op<-1>()); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3163 | } |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 3164 | void setNormalDest(BasicBlock *B) { |
Gabor Greif | c9f7500 | 2010-03-24 13:21:49 +0000 | [diff] [blame] | 3165 | Op<-2>() = reinterpret_cast<Value*>(B); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3166 | } |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 3167 | void setUnwindDest(BasicBlock *B) { |
Gabor Greif | c9f7500 | 2010-03-24 13:21:49 +0000 | [diff] [blame] | 3168 | Op<-1>() = reinterpret_cast<Value*>(B); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3169 | } |
| 3170 | |
Bill Wendling | e6e8826 | 2011-08-12 20:24:12 +0000 | [diff] [blame] | 3171 | /// getLandingPadInst - Get the landingpad instruction from the landing pad |
| 3172 | /// block (the unwind destination). |
| 3173 | LandingPadInst *getLandingPadInst() const; |
| 3174 | |
Devang Patel | 4d4a5e0 | 2008-02-23 01:11:02 +0000 | [diff] [blame] | 3175 | BasicBlock *getSuccessor(unsigned i) const { |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3176 | assert(i < 2 && "Successor # out of range for invoke!"); |
| 3177 | return i == 0 ? getNormalDest() : getUnwindDest(); |
| 3178 | } |
| 3179 | |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 3180 | void setSuccessor(unsigned idx, BasicBlock *NewSucc) { |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3181 | assert(idx < 2 && "Successor # out of range for invoke!"); |
Gabor Greif | c9f7500 | 2010-03-24 13:21:49 +0000 | [diff] [blame] | 3182 | *(&Op<-2>() + idx) = reinterpret_cast<Value*>(NewSucc); |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3183 | } |
| 3184 | |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 3185 | unsigned getNumSuccessors() const { return 2; } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3186 | |
| 3187 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 3188 | static inline bool classof(const InvokeInst *) { return true; } |
| 3189 | static inline bool classof(const Instruction *I) { |
| 3190 | return (I->getOpcode() == Instruction::Invoke); |
| 3191 | } |
| 3192 | static inline bool classof(const Value *V) { |
| 3193 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 3194 | } |
Gabor Greif | c9f7500 | 2010-03-24 13:21:49 +0000 | [diff] [blame] | 3195 | |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 3196 | private: |
| 3197 | virtual BasicBlock *getSuccessorV(unsigned idx) const; |
| 3198 | virtual unsigned getNumSuccessorsV() const; |
| 3199 | virtual void setSuccessorV(unsigned idx, BasicBlock *B); |
Chris Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 3200 | |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 3201 | // Shadow Instruction::setInstructionSubclassData with a private forwarding |
| 3202 | // method so that subclasses cannot accidentally use it. |
| 3203 | void setInstructionSubclassData(unsigned short D) { |
| 3204 | Instruction::setInstructionSubclassData(D); |
Chris Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 3205 | } |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3206 | }; |
| 3207 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 3208 | template <> |
Jay Foad | 67c619b | 2011-01-11 15:07:38 +0000 | [diff] [blame] | 3209 | struct OperandTraits<InvokeInst> : public VariadicOperandTraits<InvokeInst, 3> { |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 3210 | }; |
| 3211 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 3212 | InvokeInst::InvokeInst(Value *Func, |
| 3213 | BasicBlock *IfNormal, BasicBlock *IfException, |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 3214 | ArrayRef<Value *> Args, unsigned Values, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 3215 | const Twine &NameStr, Instruction *InsertBefore) |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 3216 | : TerminatorInst(cast<FunctionType>(cast<PointerType>(Func->getType()) |
| 3217 | ->getElementType())->getReturnType(), |
| 3218 | Instruction::Invoke, |
| 3219 | OperandTraits<InvokeInst>::op_end(this) - Values, |
| 3220 | Values, InsertBefore) { |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 3221 | init(Func, IfNormal, IfException, Args, NameStr); |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 3222 | } |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 3223 | InvokeInst::InvokeInst(Value *Func, |
| 3224 | BasicBlock *IfNormal, BasicBlock *IfException, |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 3225 | ArrayRef<Value *> Args, unsigned Values, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 3226 | const Twine &NameStr, BasicBlock *InsertAtEnd) |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 3227 | : TerminatorInst(cast<FunctionType>(cast<PointerType>(Func->getType()) |
| 3228 | ->getElementType())->getReturnType(), |
| 3229 | Instruction::Invoke, |
| 3230 | OperandTraits<InvokeInst>::op_end(this) - Values, |
| 3231 | Values, InsertAtEnd) { |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 3232 | init(Func, IfNormal, IfException, Args, NameStr); |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 3233 | } |
| 3234 | |
| 3235 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InvokeInst, Value) |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3236 | |
| 3237 | //===----------------------------------------------------------------------===// |
Bill Wendling | dccc03b | 2011-07-31 06:30:59 +0000 | [diff] [blame] | 3238 | // ResumeInst Class |
| 3239 | //===----------------------------------------------------------------------===// |
| 3240 | |
| 3241 | //===--------------------------------------------------------------------------- |
| 3242 | /// ResumeInst - Resume the propagation of an exception. |
| 3243 | /// |
| 3244 | class ResumeInst : public TerminatorInst { |
| 3245 | ResumeInst(const ResumeInst &RI); |
| 3246 | |
| 3247 | explicit ResumeInst(Value *Exn, Instruction *InsertBefore=0); |
| 3248 | ResumeInst(Value *Exn, BasicBlock *InsertAtEnd); |
| 3249 | protected: |
| 3250 | virtual ResumeInst *clone_impl() const; |
| 3251 | public: |
| 3252 | static ResumeInst *Create(Value *Exn, Instruction *InsertBefore = 0) { |
| 3253 | return new(1) ResumeInst(Exn, InsertBefore); |
| 3254 | } |
| 3255 | static ResumeInst *Create(Value *Exn, BasicBlock *InsertAtEnd) { |
| 3256 | return new(1) ResumeInst(Exn, InsertAtEnd); |
| 3257 | } |
| 3258 | |
| 3259 | /// Provide fast operand accessors |
| 3260 | DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); |
| 3261 | |
| 3262 | /// Convenience accessor. |
| 3263 | Value *getValue() const { return Op<0>(); } |
| 3264 | |
| 3265 | unsigned getNumSuccessors() const { return 0; } |
| 3266 | |
| 3267 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 3268 | static inline bool classof(const ResumeInst *) { return true; } |
| 3269 | static inline bool classof(const Instruction *I) { |
| 3270 | return I->getOpcode() == Instruction::Resume; |
| 3271 | } |
| 3272 | static inline bool classof(const Value *V) { |
| 3273 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 3274 | } |
| 3275 | private: |
| 3276 | virtual BasicBlock *getSuccessorV(unsigned idx) const; |
| 3277 | virtual unsigned getNumSuccessorsV() const; |
| 3278 | virtual void setSuccessorV(unsigned idx, BasicBlock *B); |
| 3279 | }; |
| 3280 | |
| 3281 | template <> |
| 3282 | struct OperandTraits<ResumeInst> : |
| 3283 | public FixedNumOperandTraits<ResumeInst, 1> { |
| 3284 | }; |
| 3285 | |
| 3286 | DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ResumeInst, Value) |
| 3287 | |
| 3288 | //===----------------------------------------------------------------------===// |
Chris Lattner | 076b3f1 | 2004-10-16 18:05:54 +0000 | [diff] [blame] | 3289 | // UnreachableInst Class |
| 3290 | //===----------------------------------------------------------------------===// |
| 3291 | |
| 3292 | //===--------------------------------------------------------------------------- |
| 3293 | /// UnreachableInst - This function has undefined behavior. In particular, the |
| 3294 | /// presence of this instruction indicates some higher level knowledge that the |
| 3295 | /// end of the block cannot be reached. |
| 3296 | /// |
Chris Lattner | 1fca5ff | 2004-10-27 16:14:51 +0000 | [diff] [blame] | 3297 | class UnreachableInst : public TerminatorInst { |
Craig Topper | ef1623f | 2012-09-18 03:25:49 +0000 | [diff] [blame] | 3298 | void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION; |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3299 | protected: |
| 3300 | virtual UnreachableInst *clone_impl() const; |
| 3301 | |
Chris Lattner | 1fca5ff | 2004-10-27 16:14:51 +0000 | [diff] [blame] | 3302 | public: |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 3303 | // allocate space for exactly zero operands |
| 3304 | void *operator new(size_t s) { |
| 3305 | return User::operator new(s, 0); |
| 3306 | } |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 3307 | explicit UnreachableInst(LLVMContext &C, Instruction *InsertBefore = 0); |
| 3308 | explicit UnreachableInst(LLVMContext &C, BasicBlock *InsertAtEnd); |
Chris Lattner | 076b3f1 | 2004-10-16 18:05:54 +0000 | [diff] [blame] | 3309 | |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 3310 | unsigned getNumSuccessors() const { return 0; } |
Chris Lattner | 076b3f1 | 2004-10-16 18:05:54 +0000 | [diff] [blame] | 3311 | |
| 3312 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 3313 | static inline bool classof(const UnreachableInst *) { return true; } |
| 3314 | static inline bool classof(const Instruction *I) { |
| 3315 | return I->getOpcode() == Instruction::Unreachable; |
| 3316 | } |
| 3317 | static inline bool classof(const Value *V) { |
| 3318 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 3319 | } |
Chris Lattner | 454928e | 2005-01-29 00:31:36 +0000 | [diff] [blame] | 3320 | private: |
| 3321 | virtual BasicBlock *getSuccessorV(unsigned idx) const; |
| 3322 | virtual unsigned getNumSuccessorsV() const; |
| 3323 | virtual void setSuccessorV(unsigned idx, BasicBlock *B); |
Chris Lattner | 076b3f1 | 2004-10-16 18:05:54 +0000 | [diff] [blame] | 3324 | }; |
| 3325 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3326 | //===----------------------------------------------------------------------===// |
| 3327 | // TruncInst Class |
| 3328 | //===----------------------------------------------------------------------===// |
| 3329 | |
| 3330 | /// @brief This class represents a truncation of integer types. |
| 3331 | class TruncInst : public CastInst { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3332 | protected: |
| 3333 | /// @brief Clone an identical TruncInst |
| 3334 | virtual TruncInst *clone_impl() const; |
| 3335 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3336 | public: |
| 3337 | /// @brief Constructor with insert-before-instruction semantics |
| 3338 | TruncInst( |
| 3339 | Value *S, ///< The value to be truncated |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3340 | Type *Ty, ///< The (smaller) type to truncate to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3341 | const Twine &NameStr = "", ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3342 | Instruction *InsertBefore = 0 ///< Where to insert the new instruction |
| 3343 | ); |
| 3344 | |
| 3345 | /// @brief Constructor with insert-at-end-of-block semantics |
| 3346 | TruncInst( |
| 3347 | Value *S, ///< The value to be truncated |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3348 | Type *Ty, ///< The (smaller) type to truncate to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3349 | const Twine &NameStr, ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3350 | BasicBlock *InsertAtEnd ///< The block to insert the instruction into |
| 3351 | ); |
| 3352 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3353 | /// @brief Methods for support type inquiry through isa, cast, and dyn_cast: |
| 3354 | static inline bool classof(const TruncInst *) { return true; } |
| 3355 | static inline bool classof(const Instruction *I) { |
| 3356 | return I->getOpcode() == Trunc; |
| 3357 | } |
| 3358 | static inline bool classof(const Value *V) { |
| 3359 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 3360 | } |
| 3361 | }; |
| 3362 | |
| 3363 | //===----------------------------------------------------------------------===// |
| 3364 | // ZExtInst Class |
| 3365 | //===----------------------------------------------------------------------===// |
| 3366 | |
| 3367 | /// @brief This class represents zero extension of integer types. |
| 3368 | class ZExtInst : public CastInst { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3369 | protected: |
| 3370 | /// @brief Clone an identical ZExtInst |
| 3371 | virtual ZExtInst *clone_impl() const; |
| 3372 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3373 | public: |
| 3374 | /// @brief Constructor with insert-before-instruction semantics |
| 3375 | ZExtInst( |
| 3376 | Value *S, ///< The value to be zero extended |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3377 | Type *Ty, ///< The type to zero extend to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3378 | const Twine &NameStr = "", ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3379 | Instruction *InsertBefore = 0 ///< Where to insert the new instruction |
| 3380 | ); |
| 3381 | |
| 3382 | /// @brief Constructor with insert-at-end semantics. |
| 3383 | ZExtInst( |
| 3384 | Value *S, ///< The value to be zero extended |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3385 | Type *Ty, ///< The type to zero extend to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3386 | const Twine &NameStr, ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3387 | BasicBlock *InsertAtEnd ///< The block to insert the instruction into |
| 3388 | ); |
| 3389 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3390 | /// @brief Methods for support type inquiry through isa, cast, and dyn_cast: |
| 3391 | static inline bool classof(const ZExtInst *) { return true; } |
| 3392 | static inline bool classof(const Instruction *I) { |
| 3393 | return I->getOpcode() == ZExt; |
| 3394 | } |
| 3395 | static inline bool classof(const Value *V) { |
| 3396 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 3397 | } |
| 3398 | }; |
| 3399 | |
| 3400 | //===----------------------------------------------------------------------===// |
| 3401 | // SExtInst Class |
| 3402 | //===----------------------------------------------------------------------===// |
| 3403 | |
| 3404 | /// @brief This class represents a sign extension of integer types. |
| 3405 | class SExtInst : public CastInst { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3406 | protected: |
| 3407 | /// @brief Clone an identical SExtInst |
| 3408 | virtual SExtInst *clone_impl() const; |
| 3409 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3410 | public: |
| 3411 | /// @brief Constructor with insert-before-instruction semantics |
| 3412 | SExtInst( |
| 3413 | Value *S, ///< The value to be sign extended |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3414 | Type *Ty, ///< The type to sign extend to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3415 | const Twine &NameStr = "", ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3416 | Instruction *InsertBefore = 0 ///< Where to insert the new instruction |
| 3417 | ); |
| 3418 | |
| 3419 | /// @brief Constructor with insert-at-end-of-block semantics |
| 3420 | SExtInst( |
| 3421 | Value *S, ///< The value to be sign extended |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3422 | Type *Ty, ///< The type to sign extend to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3423 | const Twine &NameStr, ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3424 | BasicBlock *InsertAtEnd ///< The block to insert the instruction into |
| 3425 | ); |
| 3426 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3427 | /// @brief Methods for support type inquiry through isa, cast, and dyn_cast: |
| 3428 | static inline bool classof(const SExtInst *) { return true; } |
| 3429 | static inline bool classof(const Instruction *I) { |
| 3430 | return I->getOpcode() == SExt; |
| 3431 | } |
| 3432 | static inline bool classof(const Value *V) { |
| 3433 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 3434 | } |
| 3435 | }; |
| 3436 | |
| 3437 | //===----------------------------------------------------------------------===// |
| 3438 | // FPTruncInst Class |
| 3439 | //===----------------------------------------------------------------------===// |
| 3440 | |
| 3441 | /// @brief This class represents a truncation of floating point types. |
| 3442 | class FPTruncInst : public CastInst { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3443 | protected: |
| 3444 | /// @brief Clone an identical FPTruncInst |
| 3445 | virtual FPTruncInst *clone_impl() const; |
| 3446 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3447 | public: |
| 3448 | /// @brief Constructor with insert-before-instruction semantics |
| 3449 | FPTruncInst( |
| 3450 | Value *S, ///< The value to be truncated |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3451 | Type *Ty, ///< The type to truncate to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3452 | const Twine &NameStr = "", ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3453 | Instruction *InsertBefore = 0 ///< Where to insert the new instruction |
| 3454 | ); |
| 3455 | |
| 3456 | /// @brief Constructor with insert-before-instruction semantics |
| 3457 | FPTruncInst( |
| 3458 | Value *S, ///< The value to be truncated |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3459 | Type *Ty, ///< The type to truncate to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3460 | const Twine &NameStr, ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3461 | BasicBlock *InsertAtEnd ///< The block to insert the instruction into |
| 3462 | ); |
| 3463 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3464 | /// @brief Methods for support type inquiry through isa, cast, and dyn_cast: |
| 3465 | static inline bool classof(const FPTruncInst *) { return true; } |
| 3466 | static inline bool classof(const Instruction *I) { |
| 3467 | return I->getOpcode() == FPTrunc; |
| 3468 | } |
| 3469 | static inline bool classof(const Value *V) { |
| 3470 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 3471 | } |
| 3472 | }; |
| 3473 | |
| 3474 | //===----------------------------------------------------------------------===// |
| 3475 | // FPExtInst Class |
| 3476 | //===----------------------------------------------------------------------===// |
| 3477 | |
| 3478 | /// @brief This class represents an extension of floating point types. |
| 3479 | class FPExtInst : public CastInst { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3480 | protected: |
| 3481 | /// @brief Clone an identical FPExtInst |
| 3482 | virtual FPExtInst *clone_impl() const; |
| 3483 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3484 | public: |
| 3485 | /// @brief Constructor with insert-before-instruction semantics |
| 3486 | FPExtInst( |
| 3487 | Value *S, ///< The value to be extended |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3488 | Type *Ty, ///< The type to extend to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3489 | const Twine &NameStr = "", ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3490 | Instruction *InsertBefore = 0 ///< Where to insert the new instruction |
| 3491 | ); |
| 3492 | |
| 3493 | /// @brief Constructor with insert-at-end-of-block semantics |
| 3494 | FPExtInst( |
| 3495 | Value *S, ///< The value to be extended |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3496 | Type *Ty, ///< The type to extend to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3497 | const Twine &NameStr, ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3498 | BasicBlock *InsertAtEnd ///< The block to insert the instruction into |
| 3499 | ); |
| 3500 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3501 | /// @brief Methods for support type inquiry through isa, cast, and dyn_cast: |
| 3502 | static inline bool classof(const FPExtInst *) { return true; } |
| 3503 | static inline bool classof(const Instruction *I) { |
| 3504 | return I->getOpcode() == FPExt; |
| 3505 | } |
| 3506 | static inline bool classof(const Value *V) { |
| 3507 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 3508 | } |
| 3509 | }; |
| 3510 | |
| 3511 | //===----------------------------------------------------------------------===// |
| 3512 | // UIToFPInst Class |
| 3513 | //===----------------------------------------------------------------------===// |
| 3514 | |
| 3515 | /// @brief This class represents a cast unsigned integer to floating point. |
| 3516 | class UIToFPInst : public CastInst { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3517 | protected: |
| 3518 | /// @brief Clone an identical UIToFPInst |
| 3519 | virtual UIToFPInst *clone_impl() const; |
| 3520 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3521 | public: |
| 3522 | /// @brief Constructor with insert-before-instruction semantics |
| 3523 | UIToFPInst( |
| 3524 | Value *S, ///< The value to be converted |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3525 | Type *Ty, ///< The type to convert to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3526 | const Twine &NameStr = "", ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3527 | Instruction *InsertBefore = 0 ///< Where to insert the new instruction |
| 3528 | ); |
| 3529 | |
| 3530 | /// @brief Constructor with insert-at-end-of-block semantics |
| 3531 | UIToFPInst( |
| 3532 | Value *S, ///< The value to be converted |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3533 | Type *Ty, ///< The type to convert to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3534 | const Twine &NameStr, ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3535 | BasicBlock *InsertAtEnd ///< The block to insert the instruction into |
| 3536 | ); |
| 3537 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3538 | /// @brief Methods for support type inquiry through isa, cast, and dyn_cast: |
| 3539 | static inline bool classof(const UIToFPInst *) { return true; } |
| 3540 | static inline bool classof(const Instruction *I) { |
| 3541 | return I->getOpcode() == UIToFP; |
| 3542 | } |
| 3543 | static inline bool classof(const Value *V) { |
| 3544 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 3545 | } |
| 3546 | }; |
| 3547 | |
| 3548 | //===----------------------------------------------------------------------===// |
| 3549 | // SIToFPInst Class |
| 3550 | //===----------------------------------------------------------------------===// |
| 3551 | |
| 3552 | /// @brief This class represents a cast from signed integer to floating point. |
| 3553 | class SIToFPInst : public CastInst { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3554 | protected: |
| 3555 | /// @brief Clone an identical SIToFPInst |
| 3556 | virtual SIToFPInst *clone_impl() const; |
| 3557 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3558 | public: |
| 3559 | /// @brief Constructor with insert-before-instruction semantics |
| 3560 | SIToFPInst( |
| 3561 | Value *S, ///< The value to be converted |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3562 | Type *Ty, ///< The type to convert to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3563 | const Twine &NameStr = "", ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3564 | Instruction *InsertBefore = 0 ///< Where to insert the new instruction |
| 3565 | ); |
| 3566 | |
| 3567 | /// @brief Constructor with insert-at-end-of-block semantics |
| 3568 | SIToFPInst( |
| 3569 | Value *S, ///< The value to be converted |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3570 | Type *Ty, ///< The type to convert to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3571 | const Twine &NameStr, ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3572 | BasicBlock *InsertAtEnd ///< The block to insert the instruction into |
| 3573 | ); |
| 3574 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3575 | /// @brief Methods for support type inquiry through isa, cast, and dyn_cast: |
| 3576 | static inline bool classof(const SIToFPInst *) { return true; } |
| 3577 | static inline bool classof(const Instruction *I) { |
| 3578 | return I->getOpcode() == SIToFP; |
| 3579 | } |
| 3580 | static inline bool classof(const Value *V) { |
| 3581 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 3582 | } |
| 3583 | }; |
| 3584 | |
| 3585 | //===----------------------------------------------------------------------===// |
| 3586 | // FPToUIInst Class |
| 3587 | //===----------------------------------------------------------------------===// |
| 3588 | |
| 3589 | /// @brief This class represents a cast from floating point to unsigned integer |
| 3590 | class FPToUIInst : public CastInst { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3591 | protected: |
| 3592 | /// @brief Clone an identical FPToUIInst |
| 3593 | virtual FPToUIInst *clone_impl() const; |
| 3594 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3595 | public: |
| 3596 | /// @brief Constructor with insert-before-instruction semantics |
| 3597 | FPToUIInst( |
| 3598 | Value *S, ///< The value to be converted |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3599 | Type *Ty, ///< The type to convert to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3600 | const Twine &NameStr = "", ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3601 | Instruction *InsertBefore = 0 ///< Where to insert the new instruction |
| 3602 | ); |
| 3603 | |
| 3604 | /// @brief Constructor with insert-at-end-of-block semantics |
| 3605 | FPToUIInst( |
| 3606 | Value *S, ///< The value to be converted |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3607 | Type *Ty, ///< The type to convert to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3608 | const Twine &NameStr, ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3609 | BasicBlock *InsertAtEnd ///< Where to insert the new instruction |
| 3610 | ); |
| 3611 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3612 | /// @brief Methods for support type inquiry through isa, cast, and dyn_cast: |
| 3613 | static inline bool classof(const FPToUIInst *) { return true; } |
| 3614 | static inline bool classof(const Instruction *I) { |
| 3615 | return I->getOpcode() == FPToUI; |
| 3616 | } |
| 3617 | static inline bool classof(const Value *V) { |
| 3618 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 3619 | } |
| 3620 | }; |
| 3621 | |
| 3622 | //===----------------------------------------------------------------------===// |
| 3623 | // FPToSIInst Class |
| 3624 | //===----------------------------------------------------------------------===// |
| 3625 | |
| 3626 | /// @brief This class represents a cast from floating point to signed integer. |
| 3627 | class FPToSIInst : public CastInst { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3628 | protected: |
| 3629 | /// @brief Clone an identical FPToSIInst |
| 3630 | virtual FPToSIInst *clone_impl() const; |
| 3631 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3632 | public: |
| 3633 | /// @brief Constructor with insert-before-instruction semantics |
| 3634 | FPToSIInst( |
| 3635 | Value *S, ///< The value to be converted |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3636 | Type *Ty, ///< The type to convert to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3637 | const Twine &NameStr = "", ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3638 | Instruction *InsertBefore = 0 ///< Where to insert the new instruction |
| 3639 | ); |
| 3640 | |
| 3641 | /// @brief Constructor with insert-at-end-of-block semantics |
| 3642 | FPToSIInst( |
| 3643 | Value *S, ///< The value to be converted |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3644 | Type *Ty, ///< The type to convert to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3645 | const Twine &NameStr, ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3646 | BasicBlock *InsertAtEnd ///< The block to insert the instruction into |
| 3647 | ); |
| 3648 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3649 | /// @brief Methods for support type inquiry through isa, cast, and dyn_cast: |
| 3650 | static inline bool classof(const FPToSIInst *) { return true; } |
| 3651 | static inline bool classof(const Instruction *I) { |
| 3652 | return I->getOpcode() == FPToSI; |
| 3653 | } |
| 3654 | static inline bool classof(const Value *V) { |
| 3655 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 3656 | } |
| 3657 | }; |
| 3658 | |
| 3659 | //===----------------------------------------------------------------------===// |
| 3660 | // IntToPtrInst Class |
| 3661 | //===----------------------------------------------------------------------===// |
| 3662 | |
| 3663 | /// @brief This class represents a cast from an integer to a pointer. |
| 3664 | class IntToPtrInst : public CastInst { |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3665 | public: |
| 3666 | /// @brief Constructor with insert-before-instruction semantics |
| 3667 | IntToPtrInst( |
| 3668 | Value *S, ///< The value to be converted |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3669 | Type *Ty, ///< The type to convert to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3670 | const Twine &NameStr = "", ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3671 | Instruction *InsertBefore = 0 ///< Where to insert the new instruction |
| 3672 | ); |
| 3673 | |
| 3674 | /// @brief Constructor with insert-at-end-of-block semantics |
| 3675 | IntToPtrInst( |
| 3676 | Value *S, ///< The value to be converted |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3677 | Type *Ty, ///< The type to convert to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3678 | const Twine &NameStr, ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3679 | BasicBlock *InsertAtEnd ///< The block to insert the instruction into |
| 3680 | ); |
| 3681 | |
| 3682 | /// @brief Clone an identical IntToPtrInst |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3683 | virtual IntToPtrInst *clone_impl() const; |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3684 | |
| 3685 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 3686 | static inline bool classof(const IntToPtrInst *) { return true; } |
| 3687 | static inline bool classof(const Instruction *I) { |
| 3688 | return I->getOpcode() == IntToPtr; |
| 3689 | } |
| 3690 | static inline bool classof(const Value *V) { |
| 3691 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 3692 | } |
| 3693 | }; |
| 3694 | |
| 3695 | //===----------------------------------------------------------------------===// |
| 3696 | // PtrToIntInst Class |
| 3697 | //===----------------------------------------------------------------------===// |
| 3698 | |
| 3699 | /// @brief This class represents a cast from a pointer to an integer |
| 3700 | class PtrToIntInst : public CastInst { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3701 | protected: |
| 3702 | /// @brief Clone an identical PtrToIntInst |
| 3703 | virtual PtrToIntInst *clone_impl() const; |
| 3704 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3705 | public: |
| 3706 | /// @brief Constructor with insert-before-instruction semantics |
| 3707 | PtrToIntInst( |
| 3708 | Value *S, ///< The value to be converted |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3709 | Type *Ty, ///< The type to convert to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3710 | const Twine &NameStr = "", ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3711 | Instruction *InsertBefore = 0 ///< Where to insert the new instruction |
| 3712 | ); |
| 3713 | |
| 3714 | /// @brief Constructor with insert-at-end-of-block semantics |
| 3715 | PtrToIntInst( |
| 3716 | Value *S, ///< The value to be converted |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3717 | Type *Ty, ///< The type to convert to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3718 | const Twine &NameStr, ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3719 | BasicBlock *InsertAtEnd ///< The block to insert the instruction into |
| 3720 | ); |
| 3721 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3722 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 3723 | static inline bool classof(const PtrToIntInst *) { return true; } |
| 3724 | static inline bool classof(const Instruction *I) { |
| 3725 | return I->getOpcode() == PtrToInt; |
| 3726 | } |
| 3727 | static inline bool classof(const Value *V) { |
| 3728 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 3729 | } |
| 3730 | }; |
| 3731 | |
| 3732 | //===----------------------------------------------------------------------===// |
| 3733 | // BitCastInst Class |
| 3734 | //===----------------------------------------------------------------------===// |
| 3735 | |
| 3736 | /// @brief This class represents a no-op cast from one type to another. |
| 3737 | class BitCastInst : public CastInst { |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3738 | protected: |
| 3739 | /// @brief Clone an identical BitCastInst |
| 3740 | virtual BitCastInst *clone_impl() const; |
| 3741 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3742 | public: |
| 3743 | /// @brief Constructor with insert-before-instruction semantics |
| 3744 | BitCastInst( |
| 3745 | Value *S, ///< The value to be casted |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3746 | Type *Ty, ///< The type to casted to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3747 | const Twine &NameStr = "", ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3748 | Instruction *InsertBefore = 0 ///< Where to insert the new instruction |
| 3749 | ); |
| 3750 | |
| 3751 | /// @brief Constructor with insert-at-end-of-block semantics |
| 3752 | BitCastInst( |
| 3753 | Value *S, ///< The value to be casted |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3754 | Type *Ty, ///< The type to casted to |
Gabor Greif | c61f6b4 | 2010-07-21 08:25:55 +0000 | [diff] [blame] | 3755 | const Twine &NameStr, ///< A name for the new instruction |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3756 | BasicBlock *InsertAtEnd ///< The block to insert the instruction into |
| 3757 | ); |
| 3758 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3759 | // Methods for support type inquiry through isa, cast, and dyn_cast: |
| 3760 | static inline bool classof(const BitCastInst *) { return true; } |
| 3761 | static inline bool classof(const Instruction *I) { |
| 3762 | return I->getOpcode() == BitCast; |
| 3763 | } |
| 3764 | static inline bool classof(const Value *V) { |
| 3765 | return isa<Instruction>(V) && classof(cast<Instruction>(V)); |
| 3766 | } |
| 3767 | }; |
| 3768 | |
Alkis Evlogimenos | eb62bc7 | 2004-07-29 12:17:34 +0000 | [diff] [blame] | 3769 | } // End llvm namespace |
Chris Lattner | a892a3a | 2003-01-27 22:08:52 +0000 | [diff] [blame] | 3770 | |
| 3771 | #endif |