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