Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1 | //===-- Instructions.cpp - Implement the LLVM instructions ----------------===// |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 10 | // This file implements all of the non-inline methods for the LLVM instruction |
| 11 | // classes. |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 15 | #include "llvm/IR/Instructions.h" |
Devang Patel | 6c6c016 | 2009-09-23 18:32:25 +0000 | [diff] [blame] | 16 | #include "LLVMContextImpl.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 17 | #include "llvm/IR/Constants.h" |
| 18 | #include "llvm/IR/DataLayout.h" |
| 19 | #include "llvm/IR/DerivedTypes.h" |
| 20 | #include "llvm/IR/Function.h" |
| 21 | #include "llvm/IR/Module.h" |
| 22 | #include "llvm/IR/Operator.h" |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 23 | #include "llvm/Support/CallSite.h" |
Reid Spencer | 3da4384 | 2007-02-28 22:00:54 +0000 | [diff] [blame] | 24 | #include "llvm/Support/ConstantRange.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 25 | #include "llvm/Support/ErrorHandling.h" |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 26 | #include "llvm/Support/MathExtras.h" |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 27 | using namespace llvm; |
| 28 | |
Chris Lattner | 50ee9dd | 2008-01-02 23:42:30 +0000 | [diff] [blame] | 29 | //===----------------------------------------------------------------------===// |
| 30 | // CallSite Class |
| 31 | //===----------------------------------------------------------------------===// |
| 32 | |
Gabor Greif | c9f7500 | 2010-03-24 13:21:49 +0000 | [diff] [blame] | 33 | User::op_iterator CallSite::getCallee() const { |
| 34 | Instruction *II(getInstruction()); |
| 35 | return isCall() |
Gabor Greif | 3ecf355 | 2010-08-05 21:25:49 +0000 | [diff] [blame] | 36 | ? cast<CallInst>(II)->op_end() - 1 // Skip Callee |
Gabor Greif | a6aac4c | 2010-07-16 09:38:02 +0000 | [diff] [blame] | 37 | : cast<InvokeInst>(II)->op_end() - 3; // Skip BB, BB, Callee |
Gabor Greif | c9f7500 | 2010-03-24 13:21:49 +0000 | [diff] [blame] | 38 | } |
| 39 | |
Gordon Henriksen | afba8fe | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 40 | //===----------------------------------------------------------------------===// |
| 41 | // TerminatorInst Class |
| 42 | //===----------------------------------------------------------------------===// |
| 43 | |
| 44 | // Out of line virtual method, so the vtable, etc has a home. |
| 45 | TerminatorInst::~TerminatorInst() { |
| 46 | } |
| 47 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 48 | //===----------------------------------------------------------------------===// |
| 49 | // UnaryInstruction Class |
| 50 | //===----------------------------------------------------------------------===// |
| 51 | |
Gordon Henriksen | afba8fe | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 52 | // Out of line virtual method, so the vtable, etc has a home. |
| 53 | UnaryInstruction::~UnaryInstruction() { |
| 54 | } |
| 55 | |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 56 | //===----------------------------------------------------------------------===// |
Chris Lattner | b76ec32 | 2008-12-29 00:12:50 +0000 | [diff] [blame] | 57 | // SelectInst Class |
| 58 | //===----------------------------------------------------------------------===// |
| 59 | |
| 60 | /// areInvalidOperands - Return a string if the specified operands are invalid |
| 61 | /// for a select operation, otherwise return null. |
| 62 | const char *SelectInst::areInvalidOperands(Value *Op0, Value *Op1, Value *Op2) { |
| 63 | if (Op1->getType() != Op2->getType()) |
| 64 | return "both values to select must have same type"; |
| 65 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 66 | if (VectorType *VT = dyn_cast<VectorType>(Op0->getType())) { |
Chris Lattner | b76ec32 | 2008-12-29 00:12:50 +0000 | [diff] [blame] | 67 | // Vector select. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 68 | if (VT->getElementType() != Type::getInt1Ty(Op0->getContext())) |
Chris Lattner | b76ec32 | 2008-12-29 00:12:50 +0000 | [diff] [blame] | 69 | return "vector select condition element type must be i1"; |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 70 | VectorType *ET = dyn_cast<VectorType>(Op1->getType()); |
Chris Lattner | b76ec32 | 2008-12-29 00:12:50 +0000 | [diff] [blame] | 71 | if (ET == 0) |
| 72 | return "selected values for vector select must be vectors"; |
| 73 | if (ET->getNumElements() != VT->getNumElements()) |
| 74 | return "vector select requires selected vectors to have " |
| 75 | "the same vector length as select condition"; |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 76 | } else if (Op0->getType() != Type::getInt1Ty(Op0->getContext())) { |
Chris Lattner | b76ec32 | 2008-12-29 00:12:50 +0000 | [diff] [blame] | 77 | return "select condition must be i1 or <n x i1>"; |
| 78 | } |
| 79 | return 0; |
| 80 | } |
| 81 | |
| 82 | |
| 83 | //===----------------------------------------------------------------------===// |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 84 | // PHINode Class |
| 85 | //===----------------------------------------------------------------------===// |
| 86 | |
| 87 | PHINode::PHINode(const PHINode &PN) |
| 88 | : Instruction(PN.getType(), Instruction::PHI, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 89 | allocHungoffUses(PN.getNumOperands()), PN.getNumOperands()), |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 90 | ReservedSpace(PN.getNumOperands()) { |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 91 | std::copy(PN.op_begin(), PN.op_end(), op_begin()); |
| 92 | std::copy(PN.block_begin(), PN.block_end(), block_begin()); |
Dan Gohman | 58cfa3b | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 93 | SubclassOptionalData = PN.SubclassOptionalData; |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 94 | } |
| 95 | |
Gordon Henriksen | afba8fe | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 96 | PHINode::~PHINode() { |
Jay Foad | 1ed26ac | 2011-01-16 15:30:52 +0000 | [diff] [blame] | 97 | dropHungoffUses(); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 98 | } |
| 99 | |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 100 | Use *PHINode::allocHungoffUses(unsigned N) const { |
| 101 | // Allocate the array of Uses of the incoming values, followed by a pointer |
| 102 | // (with bottom bit set) to the User, followed by the array of pointers to |
| 103 | // the incoming basic blocks. |
| 104 | size_t size = N * sizeof(Use) + sizeof(Use::UserRef) |
| 105 | + N * sizeof(BasicBlock*); |
| 106 | Use *Begin = static_cast<Use*>(::operator new(size)); |
| 107 | Use *End = Begin + N; |
| 108 | (void) new(End) Use::UserRef(const_cast<PHINode*>(this), 1); |
| 109 | return Use::initTags(Begin, End); |
| 110 | } |
| 111 | |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 112 | // removeIncomingValue - Remove an incoming value. This is useful if a |
| 113 | // predecessor basic block is deleted. |
| 114 | Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) { |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 115 | Value *Removed = getIncomingValue(Idx); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 116 | |
| 117 | // Move everything after this operand down. |
| 118 | // |
| 119 | // FIXME: we could just swap with the end of the list, then erase. However, |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 120 | // clients might not expect this to happen. The code as it is thrashes the |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 121 | // use/def lists, which is kinda lame. |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 122 | std::copy(op_begin() + Idx + 1, op_end(), op_begin() + Idx); |
| 123 | std::copy(block_begin() + Idx + 1, block_end(), block_begin() + Idx); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 124 | |
| 125 | // Nuke the last value. |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 126 | Op<-1>().set(0); |
| 127 | --NumOperands; |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 128 | |
| 129 | // If the PHI node is dead, because it has zero entries, nuke it now. |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 130 | if (getNumOperands() == 0 && DeletePHIIfEmpty) { |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 131 | // If anyone is using this PHI, make them use a dummy value instead... |
Owen Anderson | 9e9a0d5 | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 132 | replaceAllUsesWith(UndefValue::get(getType())); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 133 | eraseFromParent(); |
| 134 | } |
| 135 | return Removed; |
| 136 | } |
| 137 | |
Jay Foad | 8891ed7 | 2011-04-01 08:00:58 +0000 | [diff] [blame] | 138 | /// growOperands - grow operands - This grows the operand list in response |
| 139 | /// to a push_back style of operation. This grows the number of ops by 1.5 |
| 140 | /// times. |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 141 | /// |
Jay Foad | 8891ed7 | 2011-04-01 08:00:58 +0000 | [diff] [blame] | 142 | void PHINode::growOperands() { |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 143 | unsigned e = getNumOperands(); |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 144 | unsigned NumOps = e + e / 2; |
| 145 | if (NumOps < 2) NumOps = 2; // 2 op PHI nodes are VERY common. |
| 146 | |
| 147 | Use *OldOps = op_begin(); |
| 148 | BasicBlock **OldBlocks = block_begin(); |
Jay Foad | 72f5f31 | 2011-06-20 14:38:01 +0000 | [diff] [blame] | 149 | |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 150 | ReservedSpace = NumOps; |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 151 | OperandList = allocHungoffUses(ReservedSpace); |
| 152 | |
| 153 | std::copy(OldOps, OldOps + e, op_begin()); |
| 154 | std::copy(OldBlocks, OldBlocks + e, block_begin()); |
| 155 | |
Jay Foad | 1ed26ac | 2011-01-16 15:30:52 +0000 | [diff] [blame] | 156 | Use::zap(OldOps, OldOps + e, true); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 157 | } |
| 158 | |
Nate Begeman | a83ba0f | 2005-08-04 23:24:19 +0000 | [diff] [blame] | 159 | /// hasConstantValue - If the specified PHI node always merges together the same |
| 160 | /// value, return the value, otherwise return null. |
Duncan Sands | ff10341 | 2010-11-17 04:30:22 +0000 | [diff] [blame] | 161 | Value *PHINode::hasConstantValue() const { |
| 162 | // Exploit the fact that phi nodes always have at least one entry. |
| 163 | Value *ConstantValue = getIncomingValue(0); |
| 164 | for (unsigned i = 1, e = getNumIncomingValues(); i != e; ++i) |
Nuno Lopes | 44d5c06 | 2012-07-03 17:10:28 +0000 | [diff] [blame] | 165 | if (getIncomingValue(i) != ConstantValue && getIncomingValue(i) != this) { |
| 166 | if (ConstantValue != this) |
| 167 | return 0; // Incoming values not all the same. |
| 168 | // The case where the first value is this PHI. |
| 169 | ConstantValue = getIncomingValue(i); |
| 170 | } |
Nuno Lopes | 0fd518b | 2012-07-03 21:15:40 +0000 | [diff] [blame] | 171 | if (ConstantValue == this) |
| 172 | return UndefValue::get(getType()); |
Duncan Sands | ff10341 | 2010-11-17 04:30:22 +0000 | [diff] [blame] | 173 | return ConstantValue; |
Nate Begeman | a83ba0f | 2005-08-04 23:24:19 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Bill Wendling | e6e8826 | 2011-08-12 20:24:12 +0000 | [diff] [blame] | 176 | //===----------------------------------------------------------------------===// |
| 177 | // LandingPadInst Implementation |
| 178 | //===----------------------------------------------------------------------===// |
| 179 | |
| 180 | LandingPadInst::LandingPadInst(Type *RetTy, Value *PersonalityFn, |
| 181 | unsigned NumReservedValues, const Twine &NameStr, |
| 182 | Instruction *InsertBefore) |
| 183 | : Instruction(RetTy, Instruction::LandingPad, 0, 0, InsertBefore) { |
| 184 | init(PersonalityFn, 1 + NumReservedValues, NameStr); |
| 185 | } |
| 186 | |
| 187 | LandingPadInst::LandingPadInst(Type *RetTy, Value *PersonalityFn, |
| 188 | unsigned NumReservedValues, const Twine &NameStr, |
| 189 | BasicBlock *InsertAtEnd) |
| 190 | : Instruction(RetTy, Instruction::LandingPad, 0, 0, InsertAtEnd) { |
| 191 | init(PersonalityFn, 1 + NumReservedValues, NameStr); |
| 192 | } |
| 193 | |
| 194 | LandingPadInst::LandingPadInst(const LandingPadInst &LP) |
| 195 | : Instruction(LP.getType(), Instruction::LandingPad, |
| 196 | allocHungoffUses(LP.getNumOperands()), LP.getNumOperands()), |
| 197 | ReservedSpace(LP.getNumOperands()) { |
| 198 | Use *OL = OperandList, *InOL = LP.OperandList; |
| 199 | for (unsigned I = 0, E = ReservedSpace; I != E; ++I) |
| 200 | OL[I] = InOL[I]; |
| 201 | |
| 202 | setCleanup(LP.isCleanup()); |
| 203 | } |
| 204 | |
| 205 | LandingPadInst::~LandingPadInst() { |
| 206 | dropHungoffUses(); |
| 207 | } |
| 208 | |
| 209 | LandingPadInst *LandingPadInst::Create(Type *RetTy, Value *PersonalityFn, |
| 210 | unsigned NumReservedClauses, |
| 211 | const Twine &NameStr, |
| 212 | Instruction *InsertBefore) { |
| 213 | return new LandingPadInst(RetTy, PersonalityFn, NumReservedClauses, NameStr, |
| 214 | InsertBefore); |
| 215 | } |
| 216 | |
| 217 | LandingPadInst *LandingPadInst::Create(Type *RetTy, Value *PersonalityFn, |
| 218 | unsigned NumReservedClauses, |
| 219 | const Twine &NameStr, |
| 220 | BasicBlock *InsertAtEnd) { |
| 221 | return new LandingPadInst(RetTy, PersonalityFn, NumReservedClauses, NameStr, |
| 222 | InsertAtEnd); |
| 223 | } |
| 224 | |
| 225 | void LandingPadInst::init(Value *PersFn, unsigned NumReservedValues, |
| 226 | const Twine &NameStr) { |
| 227 | ReservedSpace = NumReservedValues; |
| 228 | NumOperands = 1; |
| 229 | OperandList = allocHungoffUses(ReservedSpace); |
| 230 | OperandList[0] = PersFn; |
| 231 | setName(NameStr); |
| 232 | setCleanup(false); |
| 233 | } |
| 234 | |
| 235 | /// growOperands - grow operands - This grows the operand list in response to a |
| 236 | /// push_back style of operation. This grows the number of ops by 2 times. |
| 237 | void LandingPadInst::growOperands(unsigned Size) { |
| 238 | unsigned e = getNumOperands(); |
| 239 | if (ReservedSpace >= e + Size) return; |
| 240 | ReservedSpace = (e + Size / 2) * 2; |
| 241 | |
| 242 | Use *NewOps = allocHungoffUses(ReservedSpace); |
| 243 | Use *OldOps = OperandList; |
| 244 | for (unsigned i = 0; i != e; ++i) |
| 245 | NewOps[i] = OldOps[i]; |
| 246 | |
| 247 | OperandList = NewOps; |
| 248 | Use::zap(OldOps, OldOps + e, true); |
| 249 | } |
| 250 | |
| 251 | void LandingPadInst::addClause(Value *Val) { |
| 252 | unsigned OpNo = getNumOperands(); |
| 253 | growOperands(1); |
| 254 | assert(OpNo < ReservedSpace && "Growing didn't work!"); |
| 255 | ++NumOperands; |
| 256 | OperandList[OpNo] = Val; |
| 257 | } |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 258 | |
| 259 | //===----------------------------------------------------------------------===// |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 260 | // CallInst Implementation |
| 261 | //===----------------------------------------------------------------------===// |
| 262 | |
Gordon Henriksen | afba8fe | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 263 | CallInst::~CallInst() { |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 264 | } |
| 265 | |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 266 | void CallInst::init(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr) { |
| 267 | assert(NumOperands == Args.size() + 1 && "NumOperands not set up?"); |
Gabor Greif | a6aac4c | 2010-07-16 09:38:02 +0000 | [diff] [blame] | 268 | Op<-1>() = Func; |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 269 | |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 270 | #ifndef NDEBUG |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 271 | FunctionType *FTy = |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 272 | cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType()); |
| 273 | |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 274 | assert((Args.size() == FTy->getNumParams() || |
| 275 | (FTy->isVarArg() && Args.size() > FTy->getNumParams())) && |
Chris Lattner | 9b4c96d | 2006-05-03 00:48:22 +0000 | [diff] [blame] | 276 | "Calling a function with bad signature!"); |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 277 | |
| 278 | for (unsigned i = 0; i != Args.size(); ++i) |
Chris Lattner | 9b4c96d | 2006-05-03 00:48:22 +0000 | [diff] [blame] | 279 | assert((i >= FTy->getNumParams() || |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 280 | FTy->getParamType(i) == Args[i]->getType()) && |
Chris Lattner | 9b4c96d | 2006-05-03 00:48:22 +0000 | [diff] [blame] | 281 | "Calling a function with a bad signature!"); |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 282 | #endif |
| 283 | |
| 284 | std::copy(Args.begin(), Args.end(), op_begin()); |
| 285 | setName(NameStr); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 286 | } |
| 287 | |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 288 | void CallInst::init(Value *Func, const Twine &NameStr) { |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 289 | assert(NumOperands == 1 && "NumOperands not set up?"); |
Gabor Greif | a6aac4c | 2010-07-16 09:38:02 +0000 | [diff] [blame] | 290 | Op<-1>() = Func; |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 291 | |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 292 | #ifndef NDEBUG |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 293 | FunctionType *FTy = |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 294 | cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType()); |
| 295 | |
Chris Lattner | 2e21fce | 2007-02-01 04:59:37 +0000 | [diff] [blame] | 296 | assert(FTy->getNumParams() == 0 && "Calling a function with bad signature"); |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 297 | #endif |
| 298 | |
| 299 | setName(NameStr); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 300 | } |
| 301 | |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 302 | CallInst::CallInst(Value *Func, const Twine &Name, |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 303 | Instruction *InsertBefore) |
| 304 | : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType()) |
| 305 | ->getElementType())->getReturnType(), |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 306 | Instruction::Call, |
| 307 | OperandTraits<CallInst>::op_end(this) - 1, |
| 308 | 1, InsertBefore) { |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 309 | init(Func, Name); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 310 | } |
| 311 | |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 312 | CallInst::CallInst(Value *Func, const Twine &Name, |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 313 | BasicBlock *InsertAtEnd) |
| 314 | : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType()) |
| 315 | ->getElementType())->getReturnType(), |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 316 | Instruction::Call, |
| 317 | OperandTraits<CallInst>::op_end(this) - 1, |
| 318 | 1, InsertAtEnd) { |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 319 | init(Func, Name); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 320 | } |
| 321 | |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 322 | CallInst::CallInst(const CallInst &CI) |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 323 | : Instruction(CI.getType(), Instruction::Call, |
| 324 | OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(), |
Chris Lattner | 58d7491 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 325 | CI.getNumOperands()) { |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 326 | setAttributes(CI.getAttributes()); |
Chris Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 327 | setTailCall(CI.isTailCall()); |
| 328 | setCallingConv(CI.getCallingConv()); |
| 329 | |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 330 | std::copy(CI.op_begin(), CI.op_end(), op_begin()); |
Dan Gohman | 58cfa3b | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 331 | SubclassOptionalData = CI.SubclassOptionalData; |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 332 | } |
| 333 | |
Bill Wendling | 034b94b | 2012-12-19 07:18:57 +0000 | [diff] [blame] | 334 | void CallInst::addAttribute(unsigned i, Attribute attr) { |
Bill Wendling | 99faa3b | 2012-12-07 23:16:57 +0000 | [diff] [blame] | 335 | AttributeSet PAL = getAttributes(); |
Bill Wendling | defaca0 | 2013-01-22 21:15:51 +0000 | [diff] [blame^] | 336 | AttrBuilder B(attr); |
| 337 | PAL = PAL.addAttributes(getContext(), i, |
| 338 | AttributeSet::get(getContext(), i, B)); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 339 | setAttributes(PAL); |
Eric Christopher | 0bf7b41 | 2008-05-16 20:39:43 +0000 | [diff] [blame] | 340 | } |
| 341 | |
Bill Wendling | 034b94b | 2012-12-19 07:18:57 +0000 | [diff] [blame] | 342 | void CallInst::removeAttribute(unsigned i, Attribute attr) { |
Bill Wendling | 99faa3b | 2012-12-07 23:16:57 +0000 | [diff] [blame] | 343 | AttributeSet PAL = getAttributes(); |
Bill Wendling | 5886b7b | 2012-10-14 06:39:53 +0000 | [diff] [blame] | 344 | PAL = PAL.removeAttr(getContext(), i, attr); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 345 | setAttributes(PAL); |
Duncan Sands | 2e033f3 | 2008-07-08 08:38:44 +0000 | [diff] [blame] | 346 | } |
| 347 | |
Bill Wendling | 629fb82 | 2012-12-22 00:37:52 +0000 | [diff] [blame] | 348 | bool CallInst::hasFnAttr(Attribute::AttrKind A) const { |
Bill Wendling | 94e94b3 | 2012-12-30 13:50:49 +0000 | [diff] [blame] | 349 | if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A)) |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 350 | return true; |
| 351 | if (const Function *F = getCalledFunction()) |
Bill Wendling | 39cd0c8 | 2012-12-30 12:45:13 +0000 | [diff] [blame] | 352 | return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A); |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 353 | return false; |
| 354 | } |
| 355 | |
Bill Wendling | 629fb82 | 2012-12-22 00:37:52 +0000 | [diff] [blame] | 356 | bool CallInst::paramHasAttr(unsigned i, Attribute::AttrKind A) const { |
Bill Wendling | 94e94b3 | 2012-12-30 13:50:49 +0000 | [diff] [blame] | 357 | if (AttributeList.hasAttribute(i, A)) |
Bill Wendling | 847d165 | 2012-10-03 17:54:26 +0000 | [diff] [blame] | 358 | return true; |
| 359 | if (const Function *F = getCalledFunction()) |
Bill Wendling | 39cd0c8 | 2012-12-30 12:45:13 +0000 | [diff] [blame] | 360 | return F->getAttributes().hasAttribute(i, A); |
Bill Wendling | 365b9e0 | 2012-10-04 07:18:12 +0000 | [diff] [blame] | 361 | return false; |
| 362 | } |
| 363 | |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 364 | /// IsConstantOne - Return true only if val is constant int 1 |
| 365 | static bool IsConstantOne(Value *val) { |
| 366 | assert(val && "IsConstantOne does not work with NULL val"); |
| 367 | return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne(); |
| 368 | } |
| 369 | |
Nick Lewycky | 3fc35c5 | 2009-10-17 23:52:26 +0000 | [diff] [blame] | 370 | static Instruction *createMalloc(Instruction *InsertBefore, |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 371 | BasicBlock *InsertAtEnd, Type *IntPtrTy, |
| 372 | Type *AllocTy, Value *AllocSize, |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 373 | Value *ArraySize, Function *MallocF, |
| 374 | const Twine &Name) { |
Benjamin Kramer | b84c5ae | 2009-09-10 11:31:39 +0000 | [diff] [blame] | 375 | assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) && |
Victor Hernandez | 88d9839 | 2009-09-18 19:20:02 +0000 | [diff] [blame] | 376 | "createMalloc needs either InsertBefore or InsertAtEnd"); |
| 377 | |
| 378 | // malloc(type) becomes: |
| 379 | // bitcast (i8* malloc(typeSize)) to type* |
| 380 | // malloc(type, arraySize) becomes: |
| 381 | // bitcast (i8 *malloc(typeSize*arraySize)) to type* |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 382 | if (!ArraySize) |
| 383 | ArraySize = ConstantInt::get(IntPtrTy, 1); |
| 384 | else if (ArraySize->getType() != IntPtrTy) { |
| 385 | if (InsertBefore) |
Victor Hernandez | 4d81d97 | 2009-11-07 00:36:50 +0000 | [diff] [blame] | 386 | ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false, |
| 387 | "", InsertBefore); |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 388 | else |
Victor Hernandez | 4d81d97 | 2009-11-07 00:36:50 +0000 | [diff] [blame] | 389 | ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false, |
| 390 | "", InsertAtEnd); |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 391 | } |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 392 | |
Benjamin Kramer | b84c5ae | 2009-09-10 11:31:39 +0000 | [diff] [blame] | 393 | if (!IsConstantOne(ArraySize)) { |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 394 | if (IsConstantOne(AllocSize)) { |
| 395 | AllocSize = ArraySize; // Operand * 1 = Operand |
| 396 | } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) { |
| 397 | Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy, |
| 398 | false /*ZExt*/); |
| 399 | // Malloc arg is constant product of type size and array size |
| 400 | AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize)); |
| 401 | } else { |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 402 | // Multiply type size by the array size... |
| 403 | if (InsertBefore) |
Victor Hernandez | 88d9839 | 2009-09-18 19:20:02 +0000 | [diff] [blame] | 404 | AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize, |
| 405 | "mallocsize", InsertBefore); |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 406 | else |
Victor Hernandez | 88d9839 | 2009-09-18 19:20:02 +0000 | [diff] [blame] | 407 | AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize, |
| 408 | "mallocsize", InsertAtEnd); |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 409 | } |
Benjamin Kramer | b84c5ae | 2009-09-10 11:31:39 +0000 | [diff] [blame] | 410 | } |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 411 | |
Victor Hernandez | 88d9839 | 2009-09-18 19:20:02 +0000 | [diff] [blame] | 412 | assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size"); |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 413 | // Create the call to Malloc. |
| 414 | BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd; |
| 415 | Module* M = BB->getParent()->getParent(); |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 416 | Type *BPTy = Type::getInt8PtrTy(BB->getContext()); |
Victor Hernandez | f06dca2 | 2009-11-10 19:53:28 +0000 | [diff] [blame] | 417 | Value *MallocFunc = MallocF; |
| 418 | if (!MallocFunc) |
Victor Hernandez | 13ad5aa | 2009-10-17 00:00:19 +0000 | [diff] [blame] | 419 | // prototype malloc as "void *malloc(size_t)" |
Victor Hernandez | f06dca2 | 2009-11-10 19:53:28 +0000 | [diff] [blame] | 420 | MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, NULL); |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 421 | PointerType *AllocPtrType = PointerType::getUnqual(AllocTy); |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 422 | CallInst *MCall = NULL; |
Nick Lewycky | 3fc35c5 | 2009-10-17 23:52:26 +0000 | [diff] [blame] | 423 | Instruction *Result = NULL; |
Victor Hernandez | 88d9839 | 2009-09-18 19:20:02 +0000 | [diff] [blame] | 424 | if (InsertBefore) { |
Victor Hernandez | f06dca2 | 2009-11-10 19:53:28 +0000 | [diff] [blame] | 425 | MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore); |
Victor Hernandez | 13ad5aa | 2009-10-17 00:00:19 +0000 | [diff] [blame] | 426 | Result = MCall; |
| 427 | if (Result->getType() != AllocPtrType) |
| 428 | // Create a cast instruction to convert to the right type... |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 429 | Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore); |
Victor Hernandez | 88d9839 | 2009-09-18 19:20:02 +0000 | [diff] [blame] | 430 | } else { |
Victor Hernandez | f06dca2 | 2009-11-10 19:53:28 +0000 | [diff] [blame] | 431 | MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall"); |
Victor Hernandez | 13ad5aa | 2009-10-17 00:00:19 +0000 | [diff] [blame] | 432 | Result = MCall; |
| 433 | if (Result->getType() != AllocPtrType) { |
| 434 | InsertAtEnd->getInstList().push_back(MCall); |
| 435 | // Create a cast instruction to convert to the right type... |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 436 | Result = new BitCastInst(MCall, AllocPtrType, Name); |
Victor Hernandez | 13ad5aa | 2009-10-17 00:00:19 +0000 | [diff] [blame] | 437 | } |
Victor Hernandez | 88d9839 | 2009-09-18 19:20:02 +0000 | [diff] [blame] | 438 | } |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 439 | MCall->setTailCall(); |
Victor Hernandez | f06dca2 | 2009-11-10 19:53:28 +0000 | [diff] [blame] | 440 | if (Function *F = dyn_cast<Function>(MallocFunc)) { |
| 441 | MCall->setCallingConv(F->getCallingConv()); |
| 442 | if (!F->doesNotAlias(0)) F->setDoesNotAlias(0); |
| 443 | } |
Benjamin Kramer | f012705 | 2010-01-05 13:12:22 +0000 | [diff] [blame] | 444 | assert(!MCall->getType()->isVoidTy() && "Malloc has void return type"); |
Victor Hernandez | 88d9839 | 2009-09-18 19:20:02 +0000 | [diff] [blame] | 445 | |
Victor Hernandez | 13ad5aa | 2009-10-17 00:00:19 +0000 | [diff] [blame] | 446 | return Result; |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 447 | } |
| 448 | |
| 449 | /// CreateMalloc - Generate the IR for a call to malloc: |
| 450 | /// 1. Compute the malloc call's argument as the specified type's size, |
| 451 | /// possibly multiplied by the array size if the array size is not |
| 452 | /// constant 1. |
| 453 | /// 2. Call malloc with that argument. |
| 454 | /// 3. Bitcast the result of the malloc call to the specified type. |
Nick Lewycky | 3fc35c5 | 2009-10-17 23:52:26 +0000 | [diff] [blame] | 455 | Instruction *CallInst::CreateMalloc(Instruction *InsertBefore, |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 456 | Type *IntPtrTy, Type *AllocTy, |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 457 | Value *AllocSize, Value *ArraySize, |
Duncan Sands | 3472766 | 2010-07-12 08:16:59 +0000 | [diff] [blame] | 458 | Function * MallocF, |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 459 | const Twine &Name) { |
| 460 | return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, AllocSize, |
Chris Lattner | 5a30a85 | 2010-07-12 00:57:28 +0000 | [diff] [blame] | 461 | ArraySize, MallocF, Name); |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | /// CreateMalloc - Generate the IR for a call to malloc: |
| 465 | /// 1. Compute the malloc call's argument as the specified type's size, |
| 466 | /// possibly multiplied by the array size if the array size is not |
| 467 | /// constant 1. |
| 468 | /// 2. Call malloc with that argument. |
| 469 | /// 3. Bitcast the result of the malloc call to the specified type. |
| 470 | /// Note: This function does not add the bitcast to the basic block, that is the |
| 471 | /// responsibility of the caller. |
Nick Lewycky | 3fc35c5 | 2009-10-17 23:52:26 +0000 | [diff] [blame] | 472 | Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd, |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 473 | Type *IntPtrTy, Type *AllocTy, |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 474 | Value *AllocSize, Value *ArraySize, |
| 475 | Function *MallocF, const Twine &Name) { |
| 476 | return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, AllocSize, |
Victor Hernandez | 13ad5aa | 2009-10-17 00:00:19 +0000 | [diff] [blame] | 477 | ArraySize, MallocF, Name); |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 478 | } |
Duncan Sands | afa3b6d | 2007-11-28 17:07:01 +0000 | [diff] [blame] | 479 | |
Victor Hernandez | 66284e0 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 480 | static Instruction* createFree(Value* Source, Instruction *InsertBefore, |
| 481 | BasicBlock *InsertAtEnd) { |
| 482 | assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) && |
| 483 | "createFree needs either InsertBefore or InsertAtEnd"); |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 484 | assert(Source->getType()->isPointerTy() && |
Victor Hernandez | 66284e0 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 485 | "Can not free something of nonpointer type!"); |
| 486 | |
| 487 | BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd; |
| 488 | Module* M = BB->getParent()->getParent(); |
| 489 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 490 | Type *VoidTy = Type::getVoidTy(M->getContext()); |
| 491 | Type *IntPtrTy = Type::getInt8PtrTy(M->getContext()); |
Victor Hernandez | 66284e0 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 492 | // prototype free as "void free(void*)" |
Chris Lattner | 47fc9d3 | 2009-11-09 07:12:01 +0000 | [diff] [blame] | 493 | Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, NULL); |
Victor Hernandez | 66284e0 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 494 | CallInst* Result = NULL; |
| 495 | Value *PtrCast = Source; |
| 496 | if (InsertBefore) { |
| 497 | if (Source->getType() != IntPtrTy) |
| 498 | PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore); |
| 499 | Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore); |
| 500 | } else { |
| 501 | if (Source->getType() != IntPtrTy) |
| 502 | PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd); |
| 503 | Result = CallInst::Create(FreeFunc, PtrCast, ""); |
| 504 | } |
| 505 | Result->setTailCall(); |
Chris Lattner | 47fc9d3 | 2009-11-09 07:12:01 +0000 | [diff] [blame] | 506 | if (Function *F = dyn_cast<Function>(FreeFunc)) |
| 507 | Result->setCallingConv(F->getCallingConv()); |
Victor Hernandez | 66284e0 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 508 | |
| 509 | return Result; |
| 510 | } |
| 511 | |
| 512 | /// CreateFree - Generate the IR for a call to the builtin free function. |
Chris Lattner | 5a30a85 | 2010-07-12 00:57:28 +0000 | [diff] [blame] | 513 | Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) { |
| 514 | return createFree(Source, InsertBefore, NULL); |
Victor Hernandez | 66284e0 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | /// CreateFree - Generate the IR for a call to the builtin free function. |
| 518 | /// Note: This function does not add the call to the basic block, that is the |
| 519 | /// responsibility of the caller. |
| 520 | Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) { |
| 521 | Instruction* FreeCall = createFree(Source, NULL, InsertAtEnd); |
| 522 | assert(FreeCall && "CreateFree did not create a CallInst"); |
| 523 | return FreeCall; |
| 524 | } |
| 525 | |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 526 | //===----------------------------------------------------------------------===// |
| 527 | // InvokeInst Implementation |
| 528 | //===----------------------------------------------------------------------===// |
| 529 | |
| 530 | void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException, |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 531 | ArrayRef<Value *> Args, const Twine &NameStr) { |
| 532 | assert(NumOperands == 3 + Args.size() && "NumOperands not set up?"); |
Gabor Greif | c9f7500 | 2010-03-24 13:21:49 +0000 | [diff] [blame] | 533 | Op<-3>() = Fn; |
| 534 | Op<-2>() = IfNormal; |
| 535 | Op<-1>() = IfException; |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 536 | |
| 537 | #ifndef NDEBUG |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 538 | FunctionType *FTy = |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 539 | cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType()); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 540 | |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 541 | assert(((Args.size() == FTy->getNumParams()) || |
| 542 | (FTy->isVarArg() && Args.size() > FTy->getNumParams())) && |
Gabor Greif | 050560e | 2010-03-23 13:45:54 +0000 | [diff] [blame] | 543 | "Invoking a function with bad signature"); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 544 | |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 545 | for (unsigned i = 0, e = Args.size(); i != e; i++) |
Chris Lattner | 9b4c96d | 2006-05-03 00:48:22 +0000 | [diff] [blame] | 546 | assert((i >= FTy->getNumParams() || |
Chris Lattner | d2dd150 | 2007-02-13 01:04:01 +0000 | [diff] [blame] | 547 | FTy->getParamType(i) == Args[i]->getType()) && |
Chris Lattner | 9b4c96d | 2006-05-03 00:48:22 +0000 | [diff] [blame] | 548 | "Invoking a function with a bad signature!"); |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 549 | #endif |
| 550 | |
| 551 | std::copy(Args.begin(), Args.end(), op_begin()); |
| 552 | setName(NameStr); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 553 | } |
| 554 | |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 555 | InvokeInst::InvokeInst(const InvokeInst &II) |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 556 | : TerminatorInst(II.getType(), Instruction::Invoke, |
Gabor Greif | b1dbcd8 | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 557 | OperandTraits<InvokeInst>::op_end(this) |
| 558 | - II.getNumOperands(), |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 559 | II.getNumOperands()) { |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 560 | setAttributes(II.getAttributes()); |
Chris Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 561 | setCallingConv(II.getCallingConv()); |
Jay Foad | a3efbb1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 562 | std::copy(II.op_begin(), II.op_end(), op_begin()); |
Dan Gohman | 58cfa3b | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 563 | SubclassOptionalData = II.SubclassOptionalData; |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 564 | } |
| 565 | |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 566 | BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const { |
| 567 | return getSuccessor(idx); |
| 568 | } |
| 569 | unsigned InvokeInst::getNumSuccessorsV() const { |
| 570 | return getNumSuccessors(); |
| 571 | } |
| 572 | void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) { |
| 573 | return setSuccessor(idx, B); |
| 574 | } |
| 575 | |
Bill Wendling | 629fb82 | 2012-12-22 00:37:52 +0000 | [diff] [blame] | 576 | bool InvokeInst::hasFnAttr(Attribute::AttrKind A) const { |
Bill Wendling | 94e94b3 | 2012-12-30 13:50:49 +0000 | [diff] [blame] | 577 | if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A)) |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 578 | return true; |
| 579 | if (const Function *F = getCalledFunction()) |
Bill Wendling | 39cd0c8 | 2012-12-30 12:45:13 +0000 | [diff] [blame] | 580 | return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A); |
Bill Wendling | 060f20a | 2012-10-09 00:28:54 +0000 | [diff] [blame] | 581 | return false; |
| 582 | } |
| 583 | |
Bill Wendling | 629fb82 | 2012-12-22 00:37:52 +0000 | [diff] [blame] | 584 | bool InvokeInst::paramHasAttr(unsigned i, Attribute::AttrKind A) const { |
Bill Wendling | 94e94b3 | 2012-12-30 13:50:49 +0000 | [diff] [blame] | 585 | if (AttributeList.hasAttribute(i, A)) |
Bill Wendling | 847d165 | 2012-10-03 17:54:26 +0000 | [diff] [blame] | 586 | return true; |
| 587 | if (const Function *F = getCalledFunction()) |
Bill Wendling | 39cd0c8 | 2012-12-30 12:45:13 +0000 | [diff] [blame] | 588 | return F->getAttributes().hasAttribute(i, A); |
Bill Wendling | 365b9e0 | 2012-10-04 07:18:12 +0000 | [diff] [blame] | 589 | return false; |
| 590 | } |
| 591 | |
Bill Wendling | 034b94b | 2012-12-19 07:18:57 +0000 | [diff] [blame] | 592 | void InvokeInst::addAttribute(unsigned i, Attribute attr) { |
Bill Wendling | 99faa3b | 2012-12-07 23:16:57 +0000 | [diff] [blame] | 593 | AttributeSet PAL = getAttributes(); |
Bill Wendling | defaca0 | 2013-01-22 21:15:51 +0000 | [diff] [blame^] | 594 | AttrBuilder B(attr); |
| 595 | PAL = PAL.addAttributes(getContext(), i, |
| 596 | AttributeSet::get(getContext(), i, B)); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 597 | setAttributes(PAL); |
Eric Christopher | 0bf7b41 | 2008-05-16 20:39:43 +0000 | [diff] [blame] | 598 | } |
| 599 | |
Bill Wendling | 034b94b | 2012-12-19 07:18:57 +0000 | [diff] [blame] | 600 | void InvokeInst::removeAttribute(unsigned i, Attribute attr) { |
Bill Wendling | 99faa3b | 2012-12-07 23:16:57 +0000 | [diff] [blame] | 601 | AttributeSet PAL = getAttributes(); |
Bill Wendling | 5886b7b | 2012-10-14 06:39:53 +0000 | [diff] [blame] | 602 | PAL = PAL.removeAttr(getContext(), i, attr); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 603 | setAttributes(PAL); |
Duncan Sands | f0c3354 | 2007-12-19 21:13:37 +0000 | [diff] [blame] | 604 | } |
| 605 | |
Bill Wendling | e6e8826 | 2011-08-12 20:24:12 +0000 | [diff] [blame] | 606 | LandingPadInst *InvokeInst::getLandingPadInst() const { |
| 607 | return cast<LandingPadInst>(getUnwindDest()->getFirstNonPHI()); |
| 608 | } |
Duncan Sands | afa3b6d | 2007-11-28 17:07:01 +0000 | [diff] [blame] | 609 | |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 610 | //===----------------------------------------------------------------------===// |
| 611 | // ReturnInst Implementation |
| 612 | //===----------------------------------------------------------------------===// |
| 613 | |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 614 | ReturnInst::ReturnInst(const ReturnInst &RI) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 615 | : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret, |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 616 | OperandTraits<ReturnInst>::op_end(this) - |
| 617 | RI.getNumOperands(), |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 618 | RI.getNumOperands()) { |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 619 | if (RI.getNumOperands()) |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 620 | Op<0>() = RI.Op<0>(); |
Dan Gohman | 58cfa3b | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 621 | SubclassOptionalData = RI.SubclassOptionalData; |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 622 | } |
| 623 | |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 624 | ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore) |
| 625 | : TerminatorInst(Type::getVoidTy(C), Instruction::Ret, |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 626 | OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal, |
| 627 | InsertBefore) { |
Devang Patel | 814ebd7 | 2008-02-26 18:49:29 +0000 | [diff] [blame] | 628 | if (retVal) |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 629 | Op<0>() = retVal; |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 630 | } |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 631 | ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd) |
| 632 | : TerminatorInst(Type::getVoidTy(C), Instruction::Ret, |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 633 | OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal, |
| 634 | InsertAtEnd) { |
Devang Patel | 814ebd7 | 2008-02-26 18:49:29 +0000 | [diff] [blame] | 635 | if (retVal) |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 636 | Op<0>() = retVal; |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 637 | } |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 638 | ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd) |
| 639 | : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret, |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 640 | OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) { |
Devang Patel | 57ef4f4 | 2008-02-23 00:35:18 +0000 | [diff] [blame] | 641 | } |
| 642 | |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 643 | unsigned ReturnInst::getNumSuccessorsV() const { |
| 644 | return getNumSuccessors(); |
| 645 | } |
| 646 | |
Devang Patel | 64d4e61 | 2008-02-26 17:56:20 +0000 | [diff] [blame] | 647 | /// Out-of-line ReturnInst method, put here so the C++ compiler can choose to |
| 648 | /// emit the vtable for the class in this translation unit. |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 649 | void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 650 | llvm_unreachable("ReturnInst has no successors!"); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 651 | } |
| 652 | |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 653 | BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 654 | llvm_unreachable("ReturnInst has no successors!"); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 655 | } |
| 656 | |
Devang Patel | 57ef4f4 | 2008-02-23 00:35:18 +0000 | [diff] [blame] | 657 | ReturnInst::~ReturnInst() { |
Devang Patel | 57ef4f4 | 2008-02-23 00:35:18 +0000 | [diff] [blame] | 658 | } |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 659 | |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 660 | //===----------------------------------------------------------------------===// |
Bill Wendling | dccc03b | 2011-07-31 06:30:59 +0000 | [diff] [blame] | 661 | // ResumeInst Implementation |
| 662 | //===----------------------------------------------------------------------===// |
| 663 | |
| 664 | ResumeInst::ResumeInst(const ResumeInst &RI) |
| 665 | : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Resume, |
| 666 | OperandTraits<ResumeInst>::op_begin(this), 1) { |
| 667 | Op<0>() = RI.Op<0>(); |
| 668 | } |
| 669 | |
| 670 | ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore) |
| 671 | : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume, |
| 672 | OperandTraits<ResumeInst>::op_begin(this), 1, InsertBefore) { |
| 673 | Op<0>() = Exn; |
| 674 | } |
| 675 | |
| 676 | ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd) |
| 677 | : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume, |
| 678 | OperandTraits<ResumeInst>::op_begin(this), 1, InsertAtEnd) { |
| 679 | Op<0>() = Exn; |
| 680 | } |
| 681 | |
| 682 | unsigned ResumeInst::getNumSuccessorsV() const { |
| 683 | return getNumSuccessors(); |
| 684 | } |
| 685 | |
| 686 | void ResumeInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { |
| 687 | llvm_unreachable("ResumeInst has no successors!"); |
| 688 | } |
| 689 | |
| 690 | BasicBlock *ResumeInst::getSuccessorV(unsigned idx) const { |
| 691 | llvm_unreachable("ResumeInst has no successors!"); |
Bill Wendling | dccc03b | 2011-07-31 06:30:59 +0000 | [diff] [blame] | 692 | } |
| 693 | |
| 694 | //===----------------------------------------------------------------------===// |
Chris Lattner | b976e66 | 2004-10-16 18:08:06 +0000 | [diff] [blame] | 695 | // UnreachableInst Implementation |
| 696 | //===----------------------------------------------------------------------===// |
| 697 | |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 698 | UnreachableInst::UnreachableInst(LLVMContext &Context, |
| 699 | Instruction *InsertBefore) |
| 700 | : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable, |
| 701 | 0, 0, InsertBefore) { |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 702 | } |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 703 | UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd) |
| 704 | : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable, |
| 705 | 0, 0, InsertAtEnd) { |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 706 | } |
| 707 | |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 708 | unsigned UnreachableInst::getNumSuccessorsV() const { |
| 709 | return getNumSuccessors(); |
| 710 | } |
| 711 | |
| 712 | void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { |
Bill Wendling | 8833ef0 | 2012-02-06 21:44:22 +0000 | [diff] [blame] | 713 | llvm_unreachable("UnreachableInst has no successors!"); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 714 | } |
| 715 | |
| 716 | BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const { |
Bill Wendling | 8833ef0 | 2012-02-06 21:44:22 +0000 | [diff] [blame] | 717 | llvm_unreachable("UnreachableInst has no successors!"); |
Chris Lattner | b976e66 | 2004-10-16 18:08:06 +0000 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | //===----------------------------------------------------------------------===// |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 721 | // BranchInst Implementation |
| 722 | //===----------------------------------------------------------------------===// |
| 723 | |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 724 | void BranchInst::AssertOK() { |
| 725 | if (isConditional()) |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 726 | assert(getCondition()->getType()->isIntegerTy(1) && |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 727 | "May only branch on boolean predicates!"); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 728 | } |
| 729 | |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 730 | BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 731 | : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 732 | OperandTraits<BranchInst>::op_end(this) - 1, |
| 733 | 1, InsertBefore) { |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 734 | assert(IfTrue != 0 && "Branch destination may not be null!"); |
Gabor Greif | ae5a20a | 2009-03-12 18:34:49 +0000 | [diff] [blame] | 735 | Op<-1>() = IfTrue; |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 736 | } |
| 737 | BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, |
| 738 | Instruction *InsertBefore) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 739 | : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 740 | OperandTraits<BranchInst>::op_end(this) - 3, |
| 741 | 3, InsertBefore) { |
Gabor Greif | ae5a20a | 2009-03-12 18:34:49 +0000 | [diff] [blame] | 742 | Op<-1>() = IfTrue; |
| 743 | Op<-2>() = IfFalse; |
| 744 | Op<-3>() = Cond; |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 745 | #ifndef NDEBUG |
| 746 | AssertOK(); |
| 747 | #endif |
| 748 | } |
| 749 | |
| 750 | BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 751 | : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 752 | OperandTraits<BranchInst>::op_end(this) - 1, |
| 753 | 1, InsertAtEnd) { |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 754 | assert(IfTrue != 0 && "Branch destination may not be null!"); |
Gabor Greif | ae5a20a | 2009-03-12 18:34:49 +0000 | [diff] [blame] | 755 | Op<-1>() = IfTrue; |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 756 | } |
| 757 | |
| 758 | BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, |
| 759 | BasicBlock *InsertAtEnd) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 760 | : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 761 | OperandTraits<BranchInst>::op_end(this) - 3, |
| 762 | 3, InsertAtEnd) { |
Gabor Greif | ae5a20a | 2009-03-12 18:34:49 +0000 | [diff] [blame] | 763 | Op<-1>() = IfTrue; |
| 764 | Op<-2>() = IfFalse; |
| 765 | Op<-3>() = Cond; |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 766 | #ifndef NDEBUG |
| 767 | AssertOK(); |
| 768 | #endif |
| 769 | } |
| 770 | |
| 771 | |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 772 | BranchInst::BranchInst(const BranchInst &BI) : |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 773 | TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 774 | OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(), |
| 775 | BI.getNumOperands()) { |
Gabor Greif | ae5a20a | 2009-03-12 18:34:49 +0000 | [diff] [blame] | 776 | Op<-1>() = BI.Op<-1>(); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 777 | if (BI.getNumOperands() != 1) { |
| 778 | assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!"); |
Gabor Greif | ae5a20a | 2009-03-12 18:34:49 +0000 | [diff] [blame] | 779 | Op<-3>() = BI.Op<-3>(); |
| 780 | Op<-2>() = BI.Op<-2>(); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 781 | } |
Dan Gohman | 58cfa3b | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 782 | SubclassOptionalData = BI.SubclassOptionalData; |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 783 | } |
| 784 | |
Chandler Carruth | 602650c | 2011-10-17 01:11:57 +0000 | [diff] [blame] | 785 | void BranchInst::swapSuccessors() { |
| 786 | assert(isConditional() && |
| 787 | "Cannot swap successors of an unconditional branch"); |
| 788 | Op<-1>().swap(Op<-2>()); |
| 789 | |
| 790 | // Update profile metadata if present and it matches our structural |
| 791 | // expectations. |
| 792 | MDNode *ProfileData = getMetadata(LLVMContext::MD_prof); |
| 793 | if (!ProfileData || ProfileData->getNumOperands() != 3) |
| 794 | return; |
| 795 | |
| 796 | // The first operand is the name. Fetch them backwards and build a new one. |
| 797 | Value *Ops[] = { |
| 798 | ProfileData->getOperand(0), |
| 799 | ProfileData->getOperand(2), |
| 800 | ProfileData->getOperand(1) |
| 801 | }; |
| 802 | setMetadata(LLVMContext::MD_prof, |
| 803 | MDNode::get(ProfileData->getContext(), Ops)); |
| 804 | } |
| 805 | |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 806 | BasicBlock *BranchInst::getSuccessorV(unsigned idx) const { |
| 807 | return getSuccessor(idx); |
| 808 | } |
| 809 | unsigned BranchInst::getNumSuccessorsV() const { |
| 810 | return getNumSuccessors(); |
| 811 | } |
| 812 | void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) { |
| 813 | setSuccessor(idx, B); |
| 814 | } |
| 815 | |
| 816 | |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 817 | //===----------------------------------------------------------------------===// |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 818 | // AllocaInst Implementation |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 819 | //===----------------------------------------------------------------------===// |
| 820 | |
Owen Anderson | 9adc0ab | 2009-07-14 23:09:55 +0000 | [diff] [blame] | 821 | static Value *getAISize(LLVMContext &Context, Value *Amt) { |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 822 | if (!Amt) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 823 | Amt = ConstantInt::get(Type::getInt32Ty(Context), 1); |
Chris Lattner | e46749c | 2006-05-10 04:32:43 +0000 | [diff] [blame] | 824 | else { |
| 825 | assert(!isa<BasicBlock>(Amt) && |
Chris Lattner | 53336cb | 2007-10-18 16:10:48 +0000 | [diff] [blame] | 826 | "Passed basic block into allocation size parameter! Use other ctor"); |
Dan Gohman | f75a7d3 | 2010-05-28 01:14:11 +0000 | [diff] [blame] | 827 | assert(Amt->getType()->isIntegerTy() && |
| 828 | "Allocation array size is not an integer!"); |
Chris Lattner | e46749c | 2006-05-10 04:32:43 +0000 | [diff] [blame] | 829 | } |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 830 | return Amt; |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 831 | } |
| 832 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 833 | AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 834 | const Twine &Name, Instruction *InsertBefore) |
| 835 | : UnaryInstruction(PointerType::getUnqual(Ty), Alloca, |
| 836 | getAISize(Ty->getContext(), ArraySize), InsertBefore) { |
| 837 | setAlignment(0); |
Benjamin Kramer | f012705 | 2010-01-05 13:12:22 +0000 | [diff] [blame] | 838 | assert(!Ty->isVoidTy() && "Cannot allocate void!"); |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 839 | setName(Name); |
| 840 | } |
| 841 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 842 | AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 843 | const Twine &Name, BasicBlock *InsertAtEnd) |
| 844 | : UnaryInstruction(PointerType::getUnqual(Ty), Alloca, |
| 845 | getAISize(Ty->getContext(), ArraySize), InsertAtEnd) { |
| 846 | setAlignment(0); |
Benjamin Kramer | f012705 | 2010-01-05 13:12:22 +0000 | [diff] [blame] | 847 | assert(!Ty->isVoidTy() && "Cannot allocate void!"); |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 848 | setName(Name); |
| 849 | } |
| 850 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 851 | AllocaInst::AllocaInst(Type *Ty, const Twine &Name, |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 852 | Instruction *InsertBefore) |
| 853 | : UnaryInstruction(PointerType::getUnqual(Ty), Alloca, |
| 854 | getAISize(Ty->getContext(), 0), InsertBefore) { |
| 855 | setAlignment(0); |
Benjamin Kramer | f012705 | 2010-01-05 13:12:22 +0000 | [diff] [blame] | 856 | assert(!Ty->isVoidTy() && "Cannot allocate void!"); |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 857 | setName(Name); |
| 858 | } |
| 859 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 860 | AllocaInst::AllocaInst(Type *Ty, const Twine &Name, |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 861 | BasicBlock *InsertAtEnd) |
| 862 | : UnaryInstruction(PointerType::getUnqual(Ty), Alloca, |
| 863 | getAISize(Ty->getContext(), 0), InsertAtEnd) { |
| 864 | setAlignment(0); |
Benjamin Kramer | f012705 | 2010-01-05 13:12:22 +0000 | [diff] [blame] | 865 | assert(!Ty->isVoidTy() && "Cannot allocate void!"); |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 866 | setName(Name); |
| 867 | } |
| 868 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 869 | AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align, |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 870 | const Twine &Name, Instruction *InsertBefore) |
| 871 | : UnaryInstruction(PointerType::getUnqual(Ty), Alloca, |
Owen Anderson | 50dead0 | 2009-07-15 23:53:25 +0000 | [diff] [blame] | 872 | getAISize(Ty->getContext(), ArraySize), InsertBefore) { |
Dan Gohman | 5283707 | 2008-03-24 16:55:58 +0000 | [diff] [blame] | 873 | setAlignment(Align); |
Benjamin Kramer | f012705 | 2010-01-05 13:12:22 +0000 | [diff] [blame] | 874 | assert(!Ty->isVoidTy() && "Cannot allocate void!"); |
Chris Lattner | f00042a | 2007-02-13 07:54:42 +0000 | [diff] [blame] | 875 | setName(Name); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 876 | } |
| 877 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 878 | AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align, |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 879 | const Twine &Name, BasicBlock *InsertAtEnd) |
| 880 | : UnaryInstruction(PointerType::getUnqual(Ty), Alloca, |
Owen Anderson | 50dead0 | 2009-07-15 23:53:25 +0000 | [diff] [blame] | 881 | getAISize(Ty->getContext(), ArraySize), InsertAtEnd) { |
Dan Gohman | 5283707 | 2008-03-24 16:55:58 +0000 | [diff] [blame] | 882 | setAlignment(Align); |
Benjamin Kramer | f012705 | 2010-01-05 13:12:22 +0000 | [diff] [blame] | 883 | assert(!Ty->isVoidTy() && "Cannot allocate void!"); |
Chris Lattner | f00042a | 2007-02-13 07:54:42 +0000 | [diff] [blame] | 884 | setName(Name); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 885 | } |
| 886 | |
Gordon Henriksen | afba8fe | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 887 | // Out of line virtual method, so the vtable, etc has a home. |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 888 | AllocaInst::~AllocaInst() { |
Gordon Henriksen | afba8fe | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 889 | } |
| 890 | |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 891 | void AllocaInst::setAlignment(unsigned Align) { |
Dan Gohman | 5283707 | 2008-03-24 16:55:58 +0000 | [diff] [blame] | 892 | assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!"); |
Dan Gohman | 138aa2a | 2010-07-28 20:12:04 +0000 | [diff] [blame] | 893 | assert(Align <= MaximumAlignment && |
| 894 | "Alignment is greater than MaximumAlignment!"); |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 895 | setInstructionSubclassData(Log2_32(Align) + 1); |
Dan Gohman | 5283707 | 2008-03-24 16:55:58 +0000 | [diff] [blame] | 896 | assert(getAlignment() == Align && "Alignment representation error!"); |
| 897 | } |
| 898 | |
Victor Hernandez | 7b929da | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 899 | bool AllocaInst::isArrayAllocation() const { |
Reid Spencer | bb9723b | 2007-03-01 20:27:41 +0000 | [diff] [blame] | 900 | if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0))) |
Dan Gohman | e0214d5 | 2010-09-27 15:15:44 +0000 | [diff] [blame] | 901 | return !CI->isOne(); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 902 | return true; |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 903 | } |
| 904 | |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 905 | Type *AllocaInst::getAllocatedType() const { |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 906 | return getType()->getElementType(); |
| 907 | } |
| 908 | |
Chris Lattner | c5dd22a | 2008-11-26 02:54:17 +0000 | [diff] [blame] | 909 | /// isStaticAlloca - Return true if this alloca is in the entry block of the |
| 910 | /// function and is a constant size. If so, the code generator will fold it |
| 911 | /// into the prolog/epilog code, so it is basically free. |
| 912 | bool AllocaInst::isStaticAlloca() const { |
| 913 | // Must be constant size. |
| 914 | if (!isa<ConstantInt>(getArraySize())) return false; |
| 915 | |
| 916 | // Must be in the entry block. |
| 917 | const BasicBlock *Parent = getParent(); |
| 918 | return Parent == &Parent->getParent()->front(); |
| 919 | } |
| 920 | |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 921 | //===----------------------------------------------------------------------===// |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 922 | // LoadInst Implementation |
| 923 | //===----------------------------------------------------------------------===// |
| 924 | |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 925 | void LoadInst::AssertOK() { |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 926 | assert(getOperand(0)->getType()->isPointerTy() && |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 927 | "Ptr must have pointer type."); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 928 | assert(!(isAtomic() && getAlignment() == 0) && |
| 929 | "Alignment required for atomic load"); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 930 | } |
| 931 | |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 932 | LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef) |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 933 | : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(), |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 934 | Load, Ptr, InsertBef) { |
Chris Lattner | 2866297 | 2005-02-05 01:38:38 +0000 | [diff] [blame] | 935 | setVolatile(false); |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 936 | setAlignment(0); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 937 | setAtomic(NotAtomic); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 938 | AssertOK(); |
Chris Lattner | f00042a | 2007-02-13 07:54:42 +0000 | [diff] [blame] | 939 | setName(Name); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 940 | } |
| 941 | |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 942 | LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE) |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 943 | : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(), |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 944 | Load, Ptr, InsertAE) { |
Chris Lattner | 2866297 | 2005-02-05 01:38:38 +0000 | [diff] [blame] | 945 | setVolatile(false); |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 946 | setAlignment(0); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 947 | setAtomic(NotAtomic); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 948 | AssertOK(); |
Chris Lattner | f00042a | 2007-02-13 07:54:42 +0000 | [diff] [blame] | 949 | setName(Name); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 950 | } |
| 951 | |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 952 | LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 953 | Instruction *InsertBef) |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 954 | : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(), |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 955 | Load, Ptr, InsertBef) { |
Chris Lattner | 2866297 | 2005-02-05 01:38:38 +0000 | [diff] [blame] | 956 | setVolatile(isVolatile); |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 957 | setAlignment(0); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 958 | setAtomic(NotAtomic); |
| 959 | AssertOK(); |
| 960 | setName(Name); |
| 961 | } |
| 962 | |
| 963 | LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, |
| 964 | BasicBlock *InsertAE) |
| 965 | : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(), |
| 966 | Load, Ptr, InsertAE) { |
| 967 | setVolatile(isVolatile); |
| 968 | setAlignment(0); |
| 969 | setAtomic(NotAtomic); |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 970 | AssertOK(); |
| 971 | setName(Name); |
| 972 | } |
| 973 | |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 974 | LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 975 | unsigned Align, Instruction *InsertBef) |
| 976 | : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(), |
| 977 | Load, Ptr, InsertBef) { |
| 978 | setVolatile(isVolatile); |
| 979 | setAlignment(Align); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 980 | setAtomic(NotAtomic); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 981 | AssertOK(); |
Chris Lattner | f00042a | 2007-02-13 07:54:42 +0000 | [diff] [blame] | 982 | setName(Name); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 983 | } |
| 984 | |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 985 | LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, |
Dan Gohman | 6ab2d18 | 2007-07-18 20:51:11 +0000 | [diff] [blame] | 986 | unsigned Align, BasicBlock *InsertAE) |
| 987 | : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(), |
| 988 | Load, Ptr, InsertAE) { |
| 989 | setVolatile(isVolatile); |
| 990 | setAlignment(Align); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 991 | setAtomic(NotAtomic); |
Dan Gohman | 6ab2d18 | 2007-07-18 20:51:11 +0000 | [diff] [blame] | 992 | AssertOK(); |
| 993 | setName(Name); |
| 994 | } |
| 995 | |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 996 | LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, |
| 997 | unsigned Align, AtomicOrdering Order, |
| 998 | SynchronizationScope SynchScope, |
| 999 | Instruction *InsertBef) |
| 1000 | : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(), |
| 1001 | Load, Ptr, InsertBef) { |
| 1002 | setVolatile(isVolatile); |
| 1003 | setAlignment(Align); |
| 1004 | setAtomic(Order, SynchScope); |
| 1005 | AssertOK(); |
| 1006 | setName(Name); |
| 1007 | } |
| 1008 | |
| 1009 | LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, |
| 1010 | unsigned Align, AtomicOrdering Order, |
| 1011 | SynchronizationScope SynchScope, |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1012 | BasicBlock *InsertAE) |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 1013 | : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(), |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 1014 | Load, Ptr, InsertAE) { |
Chris Lattner | f00042a | 2007-02-13 07:54:42 +0000 | [diff] [blame] | 1015 | setVolatile(isVolatile); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1016 | setAlignment(Align); |
| 1017 | setAtomic(Order, SynchScope); |
Chris Lattner | f00042a | 2007-02-13 07:54:42 +0000 | [diff] [blame] | 1018 | AssertOK(); |
| 1019 | setName(Name); |
| 1020 | } |
| 1021 | |
Daniel Dunbar | 3603d7a | 2009-08-11 18:11:15 +0000 | [diff] [blame] | 1022 | LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef) |
| 1023 | : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(), |
| 1024 | Load, Ptr, InsertBef) { |
| 1025 | setVolatile(false); |
| 1026 | setAlignment(0); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1027 | setAtomic(NotAtomic); |
Daniel Dunbar | 3603d7a | 2009-08-11 18:11:15 +0000 | [diff] [blame] | 1028 | AssertOK(); |
| 1029 | if (Name && Name[0]) setName(Name); |
| 1030 | } |
| 1031 | |
| 1032 | LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE) |
| 1033 | : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(), |
| 1034 | Load, Ptr, InsertAE) { |
| 1035 | setVolatile(false); |
| 1036 | setAlignment(0); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1037 | setAtomic(NotAtomic); |
Daniel Dunbar | 3603d7a | 2009-08-11 18:11:15 +0000 | [diff] [blame] | 1038 | AssertOK(); |
| 1039 | if (Name && Name[0]) setName(Name); |
| 1040 | } |
| 1041 | |
| 1042 | LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile, |
| 1043 | Instruction *InsertBef) |
| 1044 | : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(), |
| 1045 | Load, Ptr, InsertBef) { |
| 1046 | setVolatile(isVolatile); |
| 1047 | setAlignment(0); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1048 | setAtomic(NotAtomic); |
Daniel Dunbar | 3603d7a | 2009-08-11 18:11:15 +0000 | [diff] [blame] | 1049 | AssertOK(); |
| 1050 | if (Name && Name[0]) setName(Name); |
| 1051 | } |
| 1052 | |
| 1053 | LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile, |
| 1054 | BasicBlock *InsertAE) |
| 1055 | : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(), |
| 1056 | Load, Ptr, InsertAE) { |
| 1057 | setVolatile(isVolatile); |
| 1058 | setAlignment(0); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1059 | setAtomic(NotAtomic); |
Daniel Dunbar | 3603d7a | 2009-08-11 18:11:15 +0000 | [diff] [blame] | 1060 | AssertOK(); |
| 1061 | if (Name && Name[0]) setName(Name); |
| 1062 | } |
| 1063 | |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 1064 | void LoadInst::setAlignment(unsigned Align) { |
| 1065 | assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!"); |
Dan Gohman | 138aa2a | 2010-07-28 20:12:04 +0000 | [diff] [blame] | 1066 | assert(Align <= MaximumAlignment && |
| 1067 | "Alignment is greater than MaximumAlignment!"); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1068 | setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) | |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 1069 | ((Log2_32(Align)+1)<<1)); |
Dan Gohman | 138aa2a | 2010-07-28 20:12:04 +0000 | [diff] [blame] | 1070 | assert(getAlignment() == Align && "Alignment representation error!"); |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 1071 | } |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1072 | |
| 1073 | //===----------------------------------------------------------------------===// |
| 1074 | // StoreInst Implementation |
| 1075 | //===----------------------------------------------------------------------===// |
| 1076 | |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 1077 | void StoreInst::AssertOK() { |
Nate Begeman | 5bc1ea0 | 2008-07-29 15:49:41 +0000 | [diff] [blame] | 1078 | assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!"); |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1079 | assert(getOperand(1)->getType()->isPointerTy() && |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 1080 | "Ptr must have pointer type!"); |
| 1081 | assert(getOperand(0)->getType() == |
| 1082 | cast<PointerType>(getOperand(1)->getType())->getElementType() |
Alkis Evlogimenos | 8fabb62 | 2004-08-06 14:33:37 +0000 | [diff] [blame] | 1083 | && "Ptr must be a pointer to Val type!"); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1084 | assert(!(isAtomic() && getAlignment() == 0) && |
| 1085 | "Alignment required for atomic load"); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 1086 | } |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1087 | |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 1088 | |
| 1089 | StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1090 | : Instruction(Type::getVoidTy(val->getContext()), Store, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1091 | OperandTraits<StoreInst>::op_begin(this), |
| 1092 | OperandTraits<StoreInst>::operands(this), |
| 1093 | InsertBefore) { |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 1094 | Op<0>() = val; |
| 1095 | Op<1>() = addr; |
Chris Lattner | 2866297 | 2005-02-05 01:38:38 +0000 | [diff] [blame] | 1096 | setVolatile(false); |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 1097 | setAlignment(0); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1098 | setAtomic(NotAtomic); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 1099 | AssertOK(); |
| 1100 | } |
| 1101 | |
| 1102 | StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1103 | : Instruction(Type::getVoidTy(val->getContext()), Store, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1104 | OperandTraits<StoreInst>::op_begin(this), |
| 1105 | OperandTraits<StoreInst>::operands(this), |
| 1106 | InsertAtEnd) { |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 1107 | Op<0>() = val; |
| 1108 | Op<1>() = addr; |
Chris Lattner | 2866297 | 2005-02-05 01:38:38 +0000 | [diff] [blame] | 1109 | setVolatile(false); |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 1110 | setAlignment(0); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1111 | setAtomic(NotAtomic); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 1112 | AssertOK(); |
| 1113 | } |
| 1114 | |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1115 | StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 1116 | Instruction *InsertBefore) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1117 | : Instruction(Type::getVoidTy(val->getContext()), Store, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1118 | OperandTraits<StoreInst>::op_begin(this), |
| 1119 | OperandTraits<StoreInst>::operands(this), |
| 1120 | InsertBefore) { |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 1121 | Op<0>() = val; |
| 1122 | Op<1>() = addr; |
Chris Lattner | 2866297 | 2005-02-05 01:38:38 +0000 | [diff] [blame] | 1123 | setVolatile(isVolatile); |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 1124 | setAlignment(0); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1125 | setAtomic(NotAtomic); |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 1126 | AssertOK(); |
| 1127 | } |
| 1128 | |
| 1129 | StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, |
| 1130 | unsigned Align, Instruction *InsertBefore) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1131 | : Instruction(Type::getVoidTy(val->getContext()), Store, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1132 | OperandTraits<StoreInst>::op_begin(this), |
| 1133 | OperandTraits<StoreInst>::operands(this), |
| 1134 | InsertBefore) { |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 1135 | Op<0>() = val; |
| 1136 | Op<1>() = addr; |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 1137 | setVolatile(isVolatile); |
| 1138 | setAlignment(Align); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1139 | setAtomic(NotAtomic); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 1140 | AssertOK(); |
| 1141 | } |
| 1142 | |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1143 | StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1144 | unsigned Align, AtomicOrdering Order, |
| 1145 | SynchronizationScope SynchScope, |
| 1146 | Instruction *InsertBefore) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1147 | : Instruction(Type::getVoidTy(val->getContext()), Store, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1148 | OperandTraits<StoreInst>::op_begin(this), |
| 1149 | OperandTraits<StoreInst>::operands(this), |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1150 | InsertBefore) { |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 1151 | Op<0>() = val; |
| 1152 | Op<1>() = addr; |
Dan Gohman | 6ab2d18 | 2007-07-18 20:51:11 +0000 | [diff] [blame] | 1153 | setVolatile(isVolatile); |
| 1154 | setAlignment(Align); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1155 | setAtomic(Order, SynchScope); |
Dan Gohman | 6ab2d18 | 2007-07-18 20:51:11 +0000 | [diff] [blame] | 1156 | AssertOK(); |
| 1157 | } |
| 1158 | |
| 1159 | StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 1160 | BasicBlock *InsertAtEnd) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1161 | : Instruction(Type::getVoidTy(val->getContext()), Store, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1162 | OperandTraits<StoreInst>::op_begin(this), |
| 1163 | OperandTraits<StoreInst>::operands(this), |
| 1164 | InsertAtEnd) { |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 1165 | Op<0>() = val; |
| 1166 | Op<1>() = addr; |
Chris Lattner | 2866297 | 2005-02-05 01:38:38 +0000 | [diff] [blame] | 1167 | setVolatile(isVolatile); |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 1168 | setAlignment(0); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1169 | setAtomic(NotAtomic); |
| 1170 | AssertOK(); |
| 1171 | } |
| 1172 | |
| 1173 | StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, |
| 1174 | unsigned Align, BasicBlock *InsertAtEnd) |
| 1175 | : Instruction(Type::getVoidTy(val->getContext()), Store, |
| 1176 | OperandTraits<StoreInst>::op_begin(this), |
| 1177 | OperandTraits<StoreInst>::operands(this), |
| 1178 | InsertAtEnd) { |
| 1179 | Op<0>() = val; |
| 1180 | Op<1>() = addr; |
| 1181 | setVolatile(isVolatile); |
| 1182 | setAlignment(Align); |
| 1183 | setAtomic(NotAtomic); |
| 1184 | AssertOK(); |
| 1185 | } |
| 1186 | |
| 1187 | StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, |
| 1188 | unsigned Align, AtomicOrdering Order, |
| 1189 | SynchronizationScope SynchScope, |
| 1190 | BasicBlock *InsertAtEnd) |
| 1191 | : Instruction(Type::getVoidTy(val->getContext()), Store, |
| 1192 | OperandTraits<StoreInst>::op_begin(this), |
| 1193 | OperandTraits<StoreInst>::operands(this), |
| 1194 | InsertAtEnd) { |
| 1195 | Op<0>() = val; |
| 1196 | Op<1>() = addr; |
| 1197 | setVolatile(isVolatile); |
| 1198 | setAlignment(Align); |
| 1199 | setAtomic(Order, SynchScope); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 1200 | AssertOK(); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1201 | } |
| 1202 | |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 1203 | void StoreInst::setAlignment(unsigned Align) { |
| 1204 | assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!"); |
Dan Gohman | 138aa2a | 2010-07-28 20:12:04 +0000 | [diff] [blame] | 1205 | assert(Align <= MaximumAlignment && |
| 1206 | "Alignment is greater than MaximumAlignment!"); |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 1207 | setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) | |
Chris Lattner | b2406d9 | 2009-12-29 02:46:09 +0000 | [diff] [blame] | 1208 | ((Log2_32(Align)+1) << 1)); |
Dan Gohman | 138aa2a | 2010-07-28 20:12:04 +0000 | [diff] [blame] | 1209 | assert(getAlignment() == Align && "Alignment representation error!"); |
Christopher Lamb | 43c7f37 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 1210 | } |
| 1211 | |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1212 | //===----------------------------------------------------------------------===// |
Eli Friedman | ff03048 | 2011-07-28 21:48:00 +0000 | [diff] [blame] | 1213 | // AtomicCmpXchgInst Implementation |
| 1214 | //===----------------------------------------------------------------------===// |
| 1215 | |
| 1216 | void AtomicCmpXchgInst::Init(Value *Ptr, Value *Cmp, Value *NewVal, |
| 1217 | AtomicOrdering Ordering, |
| 1218 | SynchronizationScope SynchScope) { |
| 1219 | Op<0>() = Ptr; |
| 1220 | Op<1>() = Cmp; |
| 1221 | Op<2>() = NewVal; |
| 1222 | setOrdering(Ordering); |
| 1223 | setSynchScope(SynchScope); |
| 1224 | |
| 1225 | assert(getOperand(0) && getOperand(1) && getOperand(2) && |
| 1226 | "All operands must be non-null!"); |
| 1227 | assert(getOperand(0)->getType()->isPointerTy() && |
| 1228 | "Ptr must have pointer type!"); |
| 1229 | assert(getOperand(1)->getType() == |
| 1230 | cast<PointerType>(getOperand(0)->getType())->getElementType() |
| 1231 | && "Ptr must be a pointer to Cmp type!"); |
| 1232 | assert(getOperand(2)->getType() == |
| 1233 | cast<PointerType>(getOperand(0)->getType())->getElementType() |
| 1234 | && "Ptr must be a pointer to NewVal type!"); |
| 1235 | assert(Ordering != NotAtomic && |
| 1236 | "AtomicCmpXchg instructions must be atomic!"); |
| 1237 | } |
| 1238 | |
| 1239 | AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal, |
| 1240 | AtomicOrdering Ordering, |
| 1241 | SynchronizationScope SynchScope, |
| 1242 | Instruction *InsertBefore) |
| 1243 | : Instruction(Cmp->getType(), AtomicCmpXchg, |
| 1244 | OperandTraits<AtomicCmpXchgInst>::op_begin(this), |
| 1245 | OperandTraits<AtomicCmpXchgInst>::operands(this), |
| 1246 | InsertBefore) { |
| 1247 | Init(Ptr, Cmp, NewVal, Ordering, SynchScope); |
| 1248 | } |
| 1249 | |
| 1250 | AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal, |
| 1251 | AtomicOrdering Ordering, |
| 1252 | SynchronizationScope SynchScope, |
| 1253 | BasicBlock *InsertAtEnd) |
| 1254 | : Instruction(Cmp->getType(), AtomicCmpXchg, |
| 1255 | OperandTraits<AtomicCmpXchgInst>::op_begin(this), |
| 1256 | OperandTraits<AtomicCmpXchgInst>::operands(this), |
| 1257 | InsertAtEnd) { |
| 1258 | Init(Ptr, Cmp, NewVal, Ordering, SynchScope); |
| 1259 | } |
| 1260 | |
| 1261 | //===----------------------------------------------------------------------===// |
| 1262 | // AtomicRMWInst Implementation |
| 1263 | //===----------------------------------------------------------------------===// |
| 1264 | |
| 1265 | void AtomicRMWInst::Init(BinOp Operation, Value *Ptr, Value *Val, |
| 1266 | AtomicOrdering Ordering, |
| 1267 | SynchronizationScope SynchScope) { |
| 1268 | Op<0>() = Ptr; |
| 1269 | Op<1>() = Val; |
| 1270 | setOperation(Operation); |
| 1271 | setOrdering(Ordering); |
| 1272 | setSynchScope(SynchScope); |
| 1273 | |
| 1274 | assert(getOperand(0) && getOperand(1) && |
| 1275 | "All operands must be non-null!"); |
| 1276 | assert(getOperand(0)->getType()->isPointerTy() && |
| 1277 | "Ptr must have pointer type!"); |
| 1278 | assert(getOperand(1)->getType() == |
| 1279 | cast<PointerType>(getOperand(0)->getType())->getElementType() |
| 1280 | && "Ptr must be a pointer to Val type!"); |
| 1281 | assert(Ordering != NotAtomic && |
| 1282 | "AtomicRMW instructions must be atomic!"); |
| 1283 | } |
| 1284 | |
| 1285 | AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val, |
| 1286 | AtomicOrdering Ordering, |
| 1287 | SynchronizationScope SynchScope, |
| 1288 | Instruction *InsertBefore) |
| 1289 | : Instruction(Val->getType(), AtomicRMW, |
| 1290 | OperandTraits<AtomicRMWInst>::op_begin(this), |
| 1291 | OperandTraits<AtomicRMWInst>::operands(this), |
| 1292 | InsertBefore) { |
| 1293 | Init(Operation, Ptr, Val, Ordering, SynchScope); |
| 1294 | } |
| 1295 | |
| 1296 | AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val, |
| 1297 | AtomicOrdering Ordering, |
| 1298 | SynchronizationScope SynchScope, |
| 1299 | BasicBlock *InsertAtEnd) |
| 1300 | : Instruction(Val->getType(), AtomicRMW, |
| 1301 | OperandTraits<AtomicRMWInst>::op_begin(this), |
| 1302 | OperandTraits<AtomicRMWInst>::operands(this), |
| 1303 | InsertAtEnd) { |
| 1304 | Init(Operation, Ptr, Val, Ordering, SynchScope); |
| 1305 | } |
| 1306 | |
| 1307 | //===----------------------------------------------------------------------===// |
Eli Friedman | 47f3513 | 2011-07-25 23:16:38 +0000 | [diff] [blame] | 1308 | // FenceInst Implementation |
| 1309 | //===----------------------------------------------------------------------===// |
| 1310 | |
| 1311 | FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering, |
| 1312 | SynchronizationScope SynchScope, |
| 1313 | Instruction *InsertBefore) |
| 1314 | : Instruction(Type::getVoidTy(C), Fence, 0, 0, InsertBefore) { |
| 1315 | setOrdering(Ordering); |
| 1316 | setSynchScope(SynchScope); |
| 1317 | } |
| 1318 | |
| 1319 | FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering, |
| 1320 | SynchronizationScope SynchScope, |
| 1321 | BasicBlock *InsertAtEnd) |
| 1322 | : Instruction(Type::getVoidTy(C), Fence, 0, 0, InsertAtEnd) { |
| 1323 | setOrdering(Ordering); |
| 1324 | setSynchScope(SynchScope); |
| 1325 | } |
| 1326 | |
| 1327 | //===----------------------------------------------------------------------===// |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1328 | // GetElementPtrInst Implementation |
| 1329 | //===----------------------------------------------------------------------===// |
| 1330 | |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 1331 | void GetElementPtrInst::init(Value *Ptr, ArrayRef<Value *> IdxList, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1332 | const Twine &Name) { |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 1333 | assert(NumOperands == 1 + IdxList.size() && "NumOperands not initialized?"); |
| 1334 | OperandList[0] = Ptr; |
| 1335 | std::copy(IdxList.begin(), IdxList.end(), op_begin() + 1); |
Matthijs Kooijman | 338169d | 2008-06-04 16:14:12 +0000 | [diff] [blame] | 1336 | setName(Name); |
Chris Lattner | 38bacf2 | 2005-05-03 05:43:30 +0000 | [diff] [blame] | 1337 | } |
| 1338 | |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1339 | GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI) |
Gabor Greif | b9d9eba | 2008-05-27 11:03:29 +0000 | [diff] [blame] | 1340 | : Instruction(GEPI.getType(), GetElementPtr, |
Gabor Greif | b1dbcd8 | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 1341 | OperandTraits<GetElementPtrInst>::op_end(this) |
| 1342 | - GEPI.getNumOperands(), |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1343 | GEPI.getNumOperands()) { |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 1344 | std::copy(GEPI.op_begin(), GEPI.op_end(), op_begin()); |
Dan Gohman | 58cfa3b | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 1345 | SubclassOptionalData = GEPI.SubclassOptionalData; |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1346 | } |
| 1347 | |
Chris Lattner | c66996a | 2009-03-09 04:46:40 +0000 | [diff] [blame] | 1348 | /// getIndexedType - Returns the type of the element that would be accessed with |
| 1349 | /// a gep instruction with the specified parameters. |
| 1350 | /// |
| 1351 | /// The Idxs pointer should point to a continuous piece of memory containing the |
| 1352 | /// indices, either as Value* or uint64_t. |
| 1353 | /// |
| 1354 | /// A null type is returned if the indices are invalid for the specified |
| 1355 | /// pointer type. |
| 1356 | /// |
Matthijs Kooijman | e2afded | 2008-07-29 08:46:11 +0000 | [diff] [blame] | 1357 | template <typename IndexTy> |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 1358 | static Type *getIndexedTypeInternal(Type *Ptr, ArrayRef<IndexTy> IdxList) { |
Duncan Sands | 2333e29 | 2012-11-13 12:59:33 +0000 | [diff] [blame] | 1359 | PointerType *PTy = dyn_cast<PointerType>(Ptr->getScalarType()); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1360 | if (!PTy) return 0; // Type isn't a pointer type! |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1361 | Type *Agg = PTy->getElementType(); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1362 | |
Chris Lattner | c66996a | 2009-03-09 04:46:40 +0000 | [diff] [blame] | 1363 | // Handle the special case of the empty set index set, which is always valid. |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 1364 | if (IdxList.empty()) |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1365 | return Agg; |
Nadav Rotem | 1608769 | 2011-12-05 06:29:09 +0000 | [diff] [blame] | 1366 | |
Chris Lattner | c66996a | 2009-03-09 04:46:40 +0000 | [diff] [blame] | 1367 | // If there is at least one index, the top level type must be sized, otherwise |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1368 | // it cannot be 'stepped over'. |
| 1369 | if (!Agg->isSized()) |
Chris Lattner | c66996a | 2009-03-09 04:46:40 +0000 | [diff] [blame] | 1370 | return 0; |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1371 | |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1372 | unsigned CurIdx = 1; |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 1373 | for (; CurIdx != IdxList.size(); ++CurIdx) { |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1374 | CompositeType *CT = dyn_cast<CompositeType>(Agg); |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1375 | if (!CT || CT->isPointerTy()) return 0; |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 1376 | IndexTy Index = IdxList[CurIdx]; |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1377 | if (!CT->indexValid(Index)) return 0; |
| 1378 | Agg = CT->getTypeAtIndex(Index); |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1379 | } |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 1380 | return CurIdx == IdxList.size() ? Agg : 0; |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1381 | } |
| 1382 | |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 1383 | Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<Value *> IdxList) { |
| 1384 | return getIndexedTypeInternal(Ptr, IdxList); |
Matthijs Kooijman | e2afded | 2008-07-29 08:46:11 +0000 | [diff] [blame] | 1385 | } |
| 1386 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1387 | Type *GetElementPtrInst::getIndexedType(Type *Ptr, |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 1388 | ArrayRef<Constant *> IdxList) { |
| 1389 | return getIndexedTypeInternal(Ptr, IdxList); |
Jay Foad | 25052d8 | 2011-01-14 08:07:43 +0000 | [diff] [blame] | 1390 | } |
| 1391 | |
Jay Foad | a920310 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 1392 | Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<uint64_t> IdxList) { |
| 1393 | return getIndexedTypeInternal(Ptr, IdxList); |
Matthijs Kooijman | e2afded | 2008-07-29 08:46:11 +0000 | [diff] [blame] | 1394 | } |
| 1395 | |
Chris Lattner | 6f771d4 | 2007-04-14 00:12:57 +0000 | [diff] [blame] | 1396 | /// hasAllZeroIndices - Return true if all of the indices of this GEP are |
| 1397 | /// zeros. If so, the result pointer and the first operand have the same |
| 1398 | /// value, just potentially different types. |
| 1399 | bool GetElementPtrInst::hasAllZeroIndices() const { |
| 1400 | for (unsigned i = 1, e = getNumOperands(); i != e; ++i) { |
| 1401 | if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) { |
| 1402 | if (!CI->isZero()) return false; |
| 1403 | } else { |
| 1404 | return false; |
| 1405 | } |
| 1406 | } |
| 1407 | return true; |
| 1408 | } |
| 1409 | |
Chris Lattner | 6b0974c | 2007-04-27 20:35:56 +0000 | [diff] [blame] | 1410 | /// hasAllConstantIndices - Return true if all of the indices of this GEP are |
| 1411 | /// constant integers. If so, the result pointer and the first operand have |
| 1412 | /// a constant offset between them. |
| 1413 | bool GetElementPtrInst::hasAllConstantIndices() const { |
| 1414 | for (unsigned i = 1, e = getNumOperands(); i != e; ++i) { |
| 1415 | if (!isa<ConstantInt>(getOperand(i))) |
| 1416 | return false; |
| 1417 | } |
| 1418 | return true; |
| 1419 | } |
| 1420 | |
Dan Gohman | f8dbee7 | 2009-09-07 23:54:19 +0000 | [diff] [blame] | 1421 | void GetElementPtrInst::setIsInBounds(bool B) { |
| 1422 | cast<GEPOperator>(this)->setIsInBounds(B); |
| 1423 | } |
Chris Lattner | 6f771d4 | 2007-04-14 00:12:57 +0000 | [diff] [blame] | 1424 | |
Nick Lewycky | ae05e7d | 2009-09-27 21:33:04 +0000 | [diff] [blame] | 1425 | bool GetElementPtrInst::isInBounds() const { |
| 1426 | return cast<GEPOperator>(this)->isInBounds(); |
| 1427 | } |
| 1428 | |
Chandler Carruth | 4ced4ee | 2012-12-11 10:29:10 +0000 | [diff] [blame] | 1429 | bool GetElementPtrInst::accumulateConstantOffset(const DataLayout &DL, |
| 1430 | APInt &Offset) const { |
Chandler Carruth | 7550f96 | 2012-12-11 11:05:15 +0000 | [diff] [blame] | 1431 | // Delegate to the generic GEPOperator implementation. |
| 1432 | return cast<GEPOperator>(this)->accumulateConstantOffset(DL, Offset); |
Chandler Carruth | 4ced4ee | 2012-12-11 10:29:10 +0000 | [diff] [blame] | 1433 | } |
| 1434 | |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1435 | //===----------------------------------------------------------------------===// |
Robert Bocchino | b52ee7f | 2006-01-10 19:05:34 +0000 | [diff] [blame] | 1436 | // ExtractElementInst Implementation |
| 1437 | //===----------------------------------------------------------------------===// |
| 1438 | |
| 1439 | ExtractElementInst::ExtractElementInst(Value *Val, Value *Index, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1440 | const Twine &Name, |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 1441 | Instruction *InsertBef) |
Reid Spencer | 9d6565a | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 1442 | : Instruction(cast<VectorType>(Val->getType())->getElementType(), |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1443 | ExtractElement, |
| 1444 | OperandTraits<ExtractElementInst>::op_begin(this), |
| 1445 | 2, InsertBef) { |
Chris Lattner | d2325d0 | 2006-04-08 04:05:48 +0000 | [diff] [blame] | 1446 | assert(isValidOperands(Val, Index) && |
| 1447 | "Invalid extractelement instruction operands!"); |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 1448 | Op<0>() = Val; |
| 1449 | Op<1>() = Index; |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 1450 | setName(Name); |
Robert Bocchino | b52ee7f | 2006-01-10 19:05:34 +0000 | [diff] [blame] | 1451 | } |
| 1452 | |
| 1453 | ExtractElementInst::ExtractElementInst(Value *Val, Value *Index, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1454 | const Twine &Name, |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 1455 | BasicBlock *InsertAE) |
Reid Spencer | 9d6565a | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 1456 | : Instruction(cast<VectorType>(Val->getType())->getElementType(), |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1457 | ExtractElement, |
| 1458 | OperandTraits<ExtractElementInst>::op_begin(this), |
| 1459 | 2, InsertAE) { |
Chris Lattner | d2325d0 | 2006-04-08 04:05:48 +0000 | [diff] [blame] | 1460 | assert(isValidOperands(Val, Index) && |
| 1461 | "Invalid extractelement instruction operands!"); |
| 1462 | |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 1463 | Op<0>() = Val; |
| 1464 | Op<1>() = Index; |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 1465 | setName(Name); |
Robert Bocchino | b52ee7f | 2006-01-10 19:05:34 +0000 | [diff] [blame] | 1466 | } |
| 1467 | |
Chris Lattner | 06a248c2 | 2006-10-05 06:24:58 +0000 | [diff] [blame] | 1468 | |
Chris Lattner | d2325d0 | 2006-04-08 04:05:48 +0000 | [diff] [blame] | 1469 | bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) { |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1470 | if (!Val->getType()->isVectorTy() || !Index->getType()->isIntegerTy(32)) |
Chris Lattner | d2325d0 | 2006-04-08 04:05:48 +0000 | [diff] [blame] | 1471 | return false; |
| 1472 | return true; |
| 1473 | } |
| 1474 | |
| 1475 | |
Robert Bocchino | b52ee7f | 2006-01-10 19:05:34 +0000 | [diff] [blame] | 1476 | //===----------------------------------------------------------------------===// |
Robert Bocchino | c152f9c | 2006-01-17 20:07:22 +0000 | [diff] [blame] | 1477 | // InsertElementInst Implementation |
| 1478 | //===----------------------------------------------------------------------===// |
| 1479 | |
Chris Lattner | d2325d0 | 2006-04-08 04:05:48 +0000 | [diff] [blame] | 1480 | InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1481 | const Twine &Name, |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 1482 | Instruction *InsertBef) |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1483 | : Instruction(Vec->getType(), InsertElement, |
| 1484 | OperandTraits<InsertElementInst>::op_begin(this), |
| 1485 | 3, InsertBef) { |
Chris Lattner | d2325d0 | 2006-04-08 04:05:48 +0000 | [diff] [blame] | 1486 | assert(isValidOperands(Vec, Elt, Index) && |
| 1487 | "Invalid insertelement instruction operands!"); |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 1488 | Op<0>() = Vec; |
| 1489 | Op<1>() = Elt; |
| 1490 | Op<2>() = Index; |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 1491 | setName(Name); |
Robert Bocchino | c152f9c | 2006-01-17 20:07:22 +0000 | [diff] [blame] | 1492 | } |
| 1493 | |
Chris Lattner | d2325d0 | 2006-04-08 04:05:48 +0000 | [diff] [blame] | 1494 | InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1495 | const Twine &Name, |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 1496 | BasicBlock *InsertAE) |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1497 | : Instruction(Vec->getType(), InsertElement, |
| 1498 | OperandTraits<InsertElementInst>::op_begin(this), |
| 1499 | 3, InsertAE) { |
Chris Lattner | d2325d0 | 2006-04-08 04:05:48 +0000 | [diff] [blame] | 1500 | assert(isValidOperands(Vec, Elt, Index) && |
| 1501 | "Invalid insertelement instruction operands!"); |
| 1502 | |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 1503 | Op<0>() = Vec; |
| 1504 | Op<1>() = Elt; |
| 1505 | Op<2>() = Index; |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 1506 | setName(Name); |
Robert Bocchino | c152f9c | 2006-01-17 20:07:22 +0000 | [diff] [blame] | 1507 | } |
| 1508 | |
Chris Lattner | d2325d0 | 2006-04-08 04:05:48 +0000 | [diff] [blame] | 1509 | bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt, |
| 1510 | const Value *Index) { |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1511 | if (!Vec->getType()->isVectorTy()) |
Reid Spencer | ac9dcb9 | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 1512 | return false; // First operand of insertelement must be vector type. |
Chris Lattner | d2325d0 | 2006-04-08 04:05:48 +0000 | [diff] [blame] | 1513 | |
Reid Spencer | 9d6565a | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 1514 | if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType()) |
Dan Gohman | 86296cc | 2007-05-11 21:43:24 +0000 | [diff] [blame] | 1515 | return false;// Second operand of insertelement must be vector element type. |
Chris Lattner | d2325d0 | 2006-04-08 04:05:48 +0000 | [diff] [blame] | 1516 | |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1517 | if (!Index->getType()->isIntegerTy(32)) |
Dan Gohman | a119de8 | 2009-06-14 23:30:43 +0000 | [diff] [blame] | 1518 | return false; // Third operand of insertelement must be i32. |
Chris Lattner | d2325d0 | 2006-04-08 04:05:48 +0000 | [diff] [blame] | 1519 | return true; |
| 1520 | } |
| 1521 | |
| 1522 | |
Robert Bocchino | c152f9c | 2006-01-17 20:07:22 +0000 | [diff] [blame] | 1523 | //===----------------------------------------------------------------------===// |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 1524 | // ShuffleVectorInst Implementation |
| 1525 | //===----------------------------------------------------------------------===// |
| 1526 | |
| 1527 | ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1528 | const Twine &Name, |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 1529 | Instruction *InsertBefore) |
Owen Anderson | debcb01 | 2009-07-29 22:17:13 +0000 | [diff] [blame] | 1530 | : Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(), |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 1531 | cast<VectorType>(Mask->getType())->getNumElements()), |
| 1532 | ShuffleVector, |
| 1533 | OperandTraits<ShuffleVectorInst>::op_begin(this), |
| 1534 | OperandTraits<ShuffleVectorInst>::operands(this), |
| 1535 | InsertBefore) { |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 1536 | assert(isValidOperands(V1, V2, Mask) && |
| 1537 | "Invalid shuffle vector instruction operands!"); |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 1538 | Op<0>() = V1; |
| 1539 | Op<1>() = V2; |
| 1540 | Op<2>() = Mask; |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 1541 | setName(Name); |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 1542 | } |
| 1543 | |
| 1544 | ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1545 | const Twine &Name, |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 1546 | BasicBlock *InsertAtEnd) |
Dan Gohman | 638d853 | 2009-08-25 23:27:45 +0000 | [diff] [blame] | 1547 | : Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(), |
| 1548 | cast<VectorType>(Mask->getType())->getNumElements()), |
| 1549 | ShuffleVector, |
| 1550 | OperandTraits<ShuffleVectorInst>::op_begin(this), |
| 1551 | OperandTraits<ShuffleVectorInst>::operands(this), |
| 1552 | InsertAtEnd) { |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 1553 | assert(isValidOperands(V1, V2, Mask) && |
| 1554 | "Invalid shuffle vector instruction operands!"); |
| 1555 | |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 1556 | Op<0>() = V1; |
| 1557 | Op<1>() = V2; |
| 1558 | Op<2>() = Mask; |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 1559 | setName(Name); |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 1560 | } |
| 1561 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 1562 | bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2, |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 1563 | const Value *Mask) { |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1564 | // V1 and V2 must be vectors of the same type. |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1565 | if (!V1->getType()->isVectorTy() || V1->getType() != V2->getType()) |
Chris Lattner | 8728f19 | 2008-03-02 05:28:33 +0000 | [diff] [blame] | 1566 | return false; |
| 1567 | |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1568 | // Mask must be vector of i32. |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1569 | VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType()); |
Nate Begeman | a966af2 | 2010-08-13 00:16:46 +0000 | [diff] [blame] | 1570 | if (MaskTy == 0 || !MaskTy->getElementType()->isIntegerTy(32)) |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 1571 | return false; |
Nate Begeman | a966af2 | 2010-08-13 00:16:46 +0000 | [diff] [blame] | 1572 | |
| 1573 | // Check to see if Mask is valid. |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1574 | if (isa<UndefValue>(Mask) || isa<ConstantAggregateZero>(Mask)) |
| 1575 | return true; |
| 1576 | |
Nate Begeman | a966af2 | 2010-08-13 00:16:46 +0000 | [diff] [blame] | 1577 | if (const ConstantVector *MV = dyn_cast<ConstantVector>(Mask)) { |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1578 | unsigned V1Size = cast<VectorType>(V1->getType())->getNumElements(); |
Nate Begeman | a966af2 | 2010-08-13 00:16:46 +0000 | [diff] [blame] | 1579 | for (unsigned i = 0, e = MV->getNumOperands(); i != e; ++i) { |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1580 | if (ConstantInt *CI = dyn_cast<ConstantInt>(MV->getOperand(i))) { |
| 1581 | if (CI->uge(V1Size*2)) |
Nate Begeman | a966af2 | 2010-08-13 00:16:46 +0000 | [diff] [blame] | 1582 | return false; |
| 1583 | } else if (!isa<UndefValue>(MV->getOperand(i))) { |
| 1584 | return false; |
| 1585 | } |
| 1586 | } |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1587 | return true; |
Mon P Wang | cf62b37 | 2011-10-26 00:34:48 +0000 | [diff] [blame] | 1588 | } |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1589 | |
| 1590 | if (const ConstantDataSequential *CDS = |
| 1591 | dyn_cast<ConstantDataSequential>(Mask)) { |
| 1592 | unsigned V1Size = cast<VectorType>(V1->getType())->getNumElements(); |
| 1593 | for (unsigned i = 0, e = MaskTy->getNumElements(); i != e; ++i) |
| 1594 | if (CDS->getElementAsInteger(i) >= V1Size*2) |
| 1595 | return false; |
| 1596 | return true; |
| 1597 | } |
| 1598 | |
| 1599 | // The bitcode reader can create a place holder for a forward reference |
| 1600 | // used as the shuffle mask. When this occurs, the shuffle mask will |
| 1601 | // fall into this case and fail. To avoid this error, do this bit of |
| 1602 | // ugliness to allow such a mask pass. |
| 1603 | if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(Mask)) |
| 1604 | if (CE->getOpcode() == Instruction::UserOp1) |
| 1605 | return true; |
| 1606 | |
| 1607 | return false; |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 1608 | } |
| 1609 | |
Chris Lattner | 8728f19 | 2008-03-02 05:28:33 +0000 | [diff] [blame] | 1610 | /// getMaskValue - Return the index from the shuffle mask for the specified |
| 1611 | /// output result. This is either -1 if the element is undef or a number less |
| 1612 | /// than 2*numelements. |
Chris Lattner | 56243b8 | 2012-01-26 02:51:13 +0000 | [diff] [blame] | 1613 | int ShuffleVectorInst::getMaskValue(Constant *Mask, unsigned i) { |
| 1614 | assert(i < Mask->getType()->getVectorNumElements() && "Index out of range"); |
| 1615 | if (ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(Mask)) |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1616 | return CDS->getElementAsInteger(i); |
Chris Lattner | 56243b8 | 2012-01-26 02:51:13 +0000 | [diff] [blame] | 1617 | Constant *C = Mask->getAggregateElement(i); |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1618 | if (isa<UndefValue>(C)) |
Chris Lattner | 8728f19 | 2008-03-02 05:28:33 +0000 | [diff] [blame] | 1619 | return -1; |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1620 | return cast<ConstantInt>(C)->getZExtValue(); |
Chris Lattner | 8728f19 | 2008-03-02 05:28:33 +0000 | [diff] [blame] | 1621 | } |
| 1622 | |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1623 | /// getShuffleMask - Return the full mask for this instruction, where each |
| 1624 | /// element is the element number and undef's are returned as -1. |
Chris Lattner | 56243b8 | 2012-01-26 02:51:13 +0000 | [diff] [blame] | 1625 | void ShuffleVectorInst::getShuffleMask(Constant *Mask, |
| 1626 | SmallVectorImpl<int> &Result) { |
| 1627 | unsigned NumElts = Mask->getType()->getVectorNumElements(); |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1628 | |
Chris Lattner | 56243b8 | 2012-01-26 02:51:13 +0000 | [diff] [blame] | 1629 | if (ConstantDataSequential *CDS=dyn_cast<ConstantDataSequential>(Mask)) { |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1630 | for (unsigned i = 0; i != NumElts; ++i) |
| 1631 | Result.push_back(CDS->getElementAsInteger(i)); |
| 1632 | return; |
| 1633 | } |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1634 | for (unsigned i = 0; i != NumElts; ++i) { |
| 1635 | Constant *C = Mask->getAggregateElement(i); |
| 1636 | Result.push_back(isa<UndefValue>(C) ? -1 : |
Chris Lattner | 220dfa7 | 2012-01-26 00:41:50 +0000 | [diff] [blame] | 1637 | cast<ConstantInt>(C)->getZExtValue()); |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 1638 | } |
| 1639 | } |
| 1640 | |
| 1641 | |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1642 | //===----------------------------------------------------------------------===// |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1643 | // InsertValueInst Class |
| 1644 | //===----------------------------------------------------------------------===// |
| 1645 | |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1646 | void InsertValueInst::init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs, |
| 1647 | const Twine &Name) { |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1648 | assert(NumOperands == 2 && "NumOperands not initialized?"); |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1649 | |
| 1650 | // There's no fundamental reason why we require at least one index |
| 1651 | // (other than weirdness with &*IdxBegin being invalid; see |
| 1652 | // getelementptr's init routine for example). But there's no |
| 1653 | // present need to support it. |
| 1654 | assert(Idxs.size() > 0 && "InsertValueInst must have at least one index"); |
| 1655 | |
| 1656 | assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs) == |
Frits van Bommel | a4805cf | 2010-12-05 20:50:26 +0000 | [diff] [blame] | 1657 | Val->getType() && "Inserted value must match indexed type!"); |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1658 | Op<0>() = Agg; |
| 1659 | Op<1>() = Val; |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1660 | |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1661 | Indices.append(Idxs.begin(), Idxs.end()); |
Matthijs Kooijman | 444099f6 | 2008-06-04 14:40:55 +0000 | [diff] [blame] | 1662 | setName(Name); |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1663 | } |
| 1664 | |
| 1665 | InsertValueInst::InsertValueInst(const InsertValueInst &IVI) |
Gabor Greif | b9d9eba | 2008-05-27 11:03:29 +0000 | [diff] [blame] | 1666 | : Instruction(IVI.getType(), InsertValue, |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1667 | OperandTraits<InsertValueInst>::op_begin(this), 2), |
| 1668 | Indices(IVI.Indices) { |
Dan Gohman | 80b9626 | 2008-06-17 23:25:49 +0000 | [diff] [blame] | 1669 | Op<0>() = IVI.getOperand(0); |
| 1670 | Op<1>() = IVI.getOperand(1); |
Dan Gohman | 58cfa3b | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 1671 | SubclassOptionalData = IVI.SubclassOptionalData; |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1672 | } |
| 1673 | |
| 1674 | //===----------------------------------------------------------------------===// |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1675 | // ExtractValueInst Class |
| 1676 | //===----------------------------------------------------------------------===// |
| 1677 | |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1678 | void ExtractValueInst::init(ArrayRef<unsigned> Idxs, const Twine &Name) { |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1679 | assert(NumOperands == 1 && "NumOperands not initialized?"); |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1680 | |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1681 | // There's no fundamental reason why we require at least one index. |
| 1682 | // But there's no present need to support it. |
| 1683 | assert(Idxs.size() > 0 && "ExtractValueInst must have at least one index"); |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1684 | |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1685 | Indices.append(Idxs.begin(), Idxs.end()); |
Matthijs Kooijman | 444099f6 | 2008-06-04 14:40:55 +0000 | [diff] [blame] | 1686 | setName(Name); |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1687 | } |
| 1688 | |
| 1689 | ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI) |
Gabor Greif | d4f268b | 2008-06-06 20:28:12 +0000 | [diff] [blame] | 1690 | : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0)), |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1691 | Indices(EVI.Indices) { |
Dan Gohman | 58cfa3b | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 1692 | SubclassOptionalData = EVI.SubclassOptionalData; |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 1693 | } |
| 1694 | |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1695 | // getIndexedType - Returns the type of the element that would be extracted |
| 1696 | // with an extractvalue instruction with the specified parameters. |
| 1697 | // |
| 1698 | // A null type is returned if the indices are invalid for the specified |
| 1699 | // pointer type. |
| 1700 | // |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1701 | Type *ExtractValueInst::getIndexedType(Type *Agg, |
Jay Foad | fc6d3a4 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 1702 | ArrayRef<unsigned> Idxs) { |
| 1703 | for (unsigned CurIdx = 0; CurIdx != Idxs.size(); ++CurIdx) { |
Dan Gohman | 81a0c0b | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1704 | unsigned Index = Idxs[CurIdx]; |
Frits van Bommel | a4805cf | 2010-12-05 20:50:26 +0000 | [diff] [blame] | 1705 | // We can't use CompositeType::indexValid(Index) here. |
| 1706 | // indexValid() always returns true for arrays because getelementptr allows |
| 1707 | // out-of-bounds indices. Since we don't allow those for extractvalue and |
| 1708 | // insertvalue we need to check array indexing manually. |
| 1709 | // Since the only other types we can index into are struct types it's just |
| 1710 | // as easy to check those manually as well. |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1711 | if (ArrayType *AT = dyn_cast<ArrayType>(Agg)) { |
Frits van Bommel | a4805cf | 2010-12-05 20:50:26 +0000 | [diff] [blame] | 1712 | if (Index >= AT->getNumElements()) |
| 1713 | return 0; |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1714 | } else if (StructType *ST = dyn_cast<StructType>(Agg)) { |
Frits van Bommel | a4805cf | 2010-12-05 20:50:26 +0000 | [diff] [blame] | 1715 | if (Index >= ST->getNumElements()) |
| 1716 | return 0; |
| 1717 | } else { |
| 1718 | // Not a valid type to index into. |
| 1719 | return 0; |
| 1720 | } |
| 1721 | |
| 1722 | Agg = cast<CompositeType>(Agg)->getTypeAtIndex(Index); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1723 | } |
Chris Lattner | 1afcace | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1724 | return const_cast<Type*>(Agg); |
Dan Gohman | 041e2eb | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 1725 | } |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 1726 | |
| 1727 | //===----------------------------------------------------------------------===// |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1728 | // BinaryOperator Class |
| 1729 | //===----------------------------------------------------------------------===// |
| 1730 | |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 1731 | BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2, |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1732 | Type *Ty, const Twine &Name, |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 1733 | Instruction *InsertBefore) |
Dan Gohman | 1eaac53 | 2010-05-03 22:44:19 +0000 | [diff] [blame] | 1734 | : Instruction(Ty, iType, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1735 | OperandTraits<BinaryOperator>::op_begin(this), |
| 1736 | OperandTraits<BinaryOperator>::operands(this), |
| 1737 | InsertBefore) { |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 1738 | Op<0>() = S1; |
| 1739 | Op<1>() = S2; |
Dan Gohman | 1eaac53 | 2010-05-03 22:44:19 +0000 | [diff] [blame] | 1740 | init(iType); |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 1741 | setName(Name); |
| 1742 | } |
| 1743 | |
| 1744 | BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2, |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1745 | Type *Ty, const Twine &Name, |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 1746 | BasicBlock *InsertAtEnd) |
Dan Gohman | 1eaac53 | 2010-05-03 22:44:19 +0000 | [diff] [blame] | 1747 | : Instruction(Ty, iType, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1748 | OperandTraits<BinaryOperator>::op_begin(this), |
| 1749 | OperandTraits<BinaryOperator>::operands(this), |
| 1750 | InsertAtEnd) { |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 1751 | Op<0>() = S1; |
| 1752 | Op<1>() = S2; |
Dan Gohman | 1eaac53 | 2010-05-03 22:44:19 +0000 | [diff] [blame] | 1753 | init(iType); |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 1754 | setName(Name); |
| 1755 | } |
| 1756 | |
| 1757 | |
| 1758 | void BinaryOperator::init(BinaryOps iType) { |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 1759 | Value *LHS = getOperand(0), *RHS = getOperand(1); |
Jeffrey Yasskin | 8e68c38 | 2010-12-23 00:58:24 +0000 | [diff] [blame] | 1760 | (void)LHS; (void)RHS; // Silence warnings. |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 1761 | assert(LHS->getType() == RHS->getType() && |
| 1762 | "Binary operator operand types must match!"); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1763 | #ifndef NDEBUG |
| 1764 | switch (iType) { |
| 1765 | case Add: case Sub: |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1766 | case Mul: |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 1767 | assert(getType() == LHS->getType() && |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1768 | "Arithmetic operation should return same type as operands!"); |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1769 | assert(getType()->isIntOrIntVectorTy() && |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1770 | "Tried to create an integer operation on a non-integer type!"); |
| 1771 | break; |
| 1772 | case FAdd: case FSub: |
| 1773 | case FMul: |
| 1774 | assert(getType() == LHS->getType() && |
| 1775 | "Arithmetic operation should return same type as operands!"); |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1776 | assert(getType()->isFPOrFPVectorTy() && |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1777 | "Tried to create a floating-point operation on a " |
| 1778 | "non-floating-point type!"); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1779 | break; |
Reid Spencer | 1628cec | 2006-10-26 06:15:43 +0000 | [diff] [blame] | 1780 | case UDiv: |
| 1781 | case SDiv: |
| 1782 | assert(getType() == LHS->getType() && |
| 1783 | "Arithmetic operation should return same type as operands!"); |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1784 | assert((getType()->isIntegerTy() || (getType()->isVectorTy() && |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1785 | cast<VectorType>(getType())->getElementType()->isIntegerTy())) && |
Reid Spencer | 1628cec | 2006-10-26 06:15:43 +0000 | [diff] [blame] | 1786 | "Incorrect operand type (not integer) for S/UDIV"); |
| 1787 | break; |
| 1788 | case FDiv: |
| 1789 | assert(getType() == LHS->getType() && |
| 1790 | "Arithmetic operation should return same type as operands!"); |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1791 | assert(getType()->isFPOrFPVectorTy() && |
Dan Gohman | f57478f | 2009-06-15 22:25:12 +0000 | [diff] [blame] | 1792 | "Incorrect operand type (not floating point) for FDIV"); |
Reid Spencer | 1628cec | 2006-10-26 06:15:43 +0000 | [diff] [blame] | 1793 | break; |
Reid Spencer | 0a783f7 | 2006-11-02 01:53:59 +0000 | [diff] [blame] | 1794 | case URem: |
| 1795 | case SRem: |
| 1796 | assert(getType() == LHS->getType() && |
| 1797 | "Arithmetic operation should return same type as operands!"); |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1798 | assert((getType()->isIntegerTy() || (getType()->isVectorTy() && |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1799 | cast<VectorType>(getType())->getElementType()->isIntegerTy())) && |
Reid Spencer | 0a783f7 | 2006-11-02 01:53:59 +0000 | [diff] [blame] | 1800 | "Incorrect operand type (not integer) for S/UREM"); |
| 1801 | break; |
| 1802 | case FRem: |
| 1803 | assert(getType() == LHS->getType() && |
| 1804 | "Arithmetic operation should return same type as operands!"); |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1805 | assert(getType()->isFPOrFPVectorTy() && |
Dan Gohman | f57478f | 2009-06-15 22:25:12 +0000 | [diff] [blame] | 1806 | "Incorrect operand type (not floating point) for FREM"); |
Reid Spencer | 0a783f7 | 2006-11-02 01:53:59 +0000 | [diff] [blame] | 1807 | break; |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 1808 | case Shl: |
| 1809 | case LShr: |
| 1810 | case AShr: |
| 1811 | assert(getType() == LHS->getType() && |
| 1812 | "Shift operation should return same type as operands!"); |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1813 | assert((getType()->isIntegerTy() || |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1814 | (getType()->isVectorTy() && |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1815 | cast<VectorType>(getType())->getElementType()->isIntegerTy())) && |
Nate Begeman | 5bc1ea0 | 2008-07-29 15:49:41 +0000 | [diff] [blame] | 1816 | "Tried to create a shift operation on a non-integral type!"); |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 1817 | break; |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1818 | case And: case Or: |
| 1819 | case Xor: |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 1820 | assert(getType() == LHS->getType() && |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1821 | "Logical operation should return same type as operands!"); |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1822 | assert((getType()->isIntegerTy() || |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1823 | (getType()->isVectorTy() && |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1824 | cast<VectorType>(getType())->getElementType()->isIntegerTy())) && |
Misha Brukman | 1bae291 | 2005-01-27 06:46:38 +0000 | [diff] [blame] | 1825 | "Tried to create a logical operation on a non-integral type!"); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1826 | break; |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1827 | default: |
| 1828 | break; |
| 1829 | } |
| 1830 | #endif |
| 1831 | } |
| 1832 | |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 1833 | BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1834 | const Twine &Name, |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1835 | Instruction *InsertBefore) { |
| 1836 | assert(S1->getType() == S2->getType() && |
| 1837 | "Cannot create binary operator with two operands of differing type!"); |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 1838 | return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1839 | } |
| 1840 | |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 1841 | BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 1842 | const Twine &Name, |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1843 | BasicBlock *InsertAtEnd) { |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 1844 | BinaryOperator *Res = Create(Op, S1, S2, Name); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1845 | InsertAtEnd->getInstList().push_back(Res); |
| 1846 | return Res; |
| 1847 | } |
| 1848 | |
Dan Gohman | 4ae5126 | 2009-08-12 16:23:25 +0000 | [diff] [blame] | 1849 | BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name, |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1850 | Instruction *InsertBefore) { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 1851 | Value *zero = ConstantFP::getZeroValueForNegation(Op->getType()); |
Reid Spencer | 24d6da5 | 2007-01-21 00:29:26 +0000 | [diff] [blame] | 1852 | return new BinaryOperator(Instruction::Sub, |
| 1853 | zero, Op, |
| 1854 | Op->getType(), Name, InsertBefore); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1855 | } |
| 1856 | |
Dan Gohman | 4ae5126 | 2009-08-12 16:23:25 +0000 | [diff] [blame] | 1857 | BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name, |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1858 | BasicBlock *InsertAtEnd) { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 1859 | Value *zero = ConstantFP::getZeroValueForNegation(Op->getType()); |
Reid Spencer | 24d6da5 | 2007-01-21 00:29:26 +0000 | [diff] [blame] | 1860 | return new BinaryOperator(Instruction::Sub, |
| 1861 | zero, Op, |
| 1862 | Op->getType(), Name, InsertAtEnd); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1863 | } |
| 1864 | |
Dan Gohman | bdc46c6 | 2009-12-18 02:58:50 +0000 | [diff] [blame] | 1865 | BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name, |
| 1866 | Instruction *InsertBefore) { |
| 1867 | Value *zero = ConstantFP::getZeroValueForNegation(Op->getType()); |
| 1868 | return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertBefore); |
| 1869 | } |
| 1870 | |
| 1871 | BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name, |
| 1872 | BasicBlock *InsertAtEnd) { |
| 1873 | Value *zero = ConstantFP::getZeroValueForNegation(Op->getType()); |
| 1874 | return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertAtEnd); |
| 1875 | } |
| 1876 | |
Duncan Sands | 8991d51 | 2010-02-02 12:53:04 +0000 | [diff] [blame] | 1877 | BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name, |
| 1878 | Instruction *InsertBefore) { |
| 1879 | Value *zero = ConstantFP::getZeroValueForNegation(Op->getType()); |
| 1880 | return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertBefore); |
| 1881 | } |
| 1882 | |
| 1883 | BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name, |
| 1884 | BasicBlock *InsertAtEnd) { |
| 1885 | Value *zero = ConstantFP::getZeroValueForNegation(Op->getType()); |
| 1886 | return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertAtEnd); |
| 1887 | } |
| 1888 | |
Dan Gohman | 4ae5126 | 2009-08-12 16:23:25 +0000 | [diff] [blame] | 1889 | BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name, |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1890 | Instruction *InsertBefore) { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 1891 | Value *zero = ConstantFP::getZeroValueForNegation(Op->getType()); |
Chris Lattner | 4ca829e | 2012-01-25 06:02:56 +0000 | [diff] [blame] | 1892 | return new BinaryOperator(Instruction::FSub, zero, Op, |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1893 | Op->getType(), Name, InsertBefore); |
| 1894 | } |
| 1895 | |
Dan Gohman | 4ae5126 | 2009-08-12 16:23:25 +0000 | [diff] [blame] | 1896 | BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name, |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1897 | BasicBlock *InsertAtEnd) { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 1898 | Value *zero = ConstantFP::getZeroValueForNegation(Op->getType()); |
Chris Lattner | 4ca829e | 2012-01-25 06:02:56 +0000 | [diff] [blame] | 1899 | return new BinaryOperator(Instruction::FSub, zero, Op, |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1900 | Op->getType(), Name, InsertAtEnd); |
| 1901 | } |
| 1902 | |
Dan Gohman | 4ae5126 | 2009-08-12 16:23:25 +0000 | [diff] [blame] | 1903 | BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name, |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1904 | Instruction *InsertBefore) { |
Chris Lattner | 4ca829e | 2012-01-25 06:02:56 +0000 | [diff] [blame] | 1905 | Constant *C = Constant::getAllOnesValue(Op->getType()); |
Chris Lattner | fdbc82a | 2006-03-25 21:54:21 +0000 | [diff] [blame] | 1906 | return new BinaryOperator(Instruction::Xor, Op, C, |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1907 | Op->getType(), Name, InsertBefore); |
| 1908 | } |
| 1909 | |
Dan Gohman | 4ae5126 | 2009-08-12 16:23:25 +0000 | [diff] [blame] | 1910 | BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name, |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1911 | BasicBlock *InsertAtEnd) { |
Chris Lattner | 4ca829e | 2012-01-25 06:02:56 +0000 | [diff] [blame] | 1912 | Constant *AllOnes = Constant::getAllOnesValue(Op->getType()); |
Chris Lattner | b9d4100 | 2005-12-21 18:22:19 +0000 | [diff] [blame] | 1913 | return new BinaryOperator(Instruction::Xor, Op, AllOnes, |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1914 | Op->getType(), Name, InsertAtEnd); |
| 1915 | } |
| 1916 | |
| 1917 | |
| 1918 | // isConstantAllOnes - Helper function for several functions below |
| 1919 | static inline bool isConstantAllOnes(const Value *V) { |
Chris Lattner | a78fa8c | 2012-01-27 03:08:05 +0000 | [diff] [blame] | 1920 | if (const Constant *C = dyn_cast<Constant>(V)) |
| 1921 | return C->isAllOnesValue(); |
Chris Lattner | e20b7be | 2007-06-15 06:04:24 +0000 | [diff] [blame] | 1922 | return false; |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1923 | } |
| 1924 | |
Owen Anderson | fa82b6e | 2009-07-13 22:18:28 +0000 | [diff] [blame] | 1925 | bool BinaryOperator::isNeg(const Value *V) { |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1926 | if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V)) |
| 1927 | if (Bop->getOpcode() == Instruction::Sub) |
Owen Anderson | fa82b6e | 2009-07-13 22:18:28 +0000 | [diff] [blame] | 1928 | if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0))) |
| 1929 | return C->isNegativeZeroValue(); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1930 | return false; |
| 1931 | } |
| 1932 | |
Shuxin Yang | 935e35d | 2013-01-09 00:13:41 +0000 | [diff] [blame] | 1933 | bool BinaryOperator::isFNeg(const Value *V, bool IgnoreZeroSign) { |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1934 | if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V)) |
| 1935 | if (Bop->getOpcode() == Instruction::FSub) |
Shuxin Yang | 935e35d | 2013-01-09 00:13:41 +0000 | [diff] [blame] | 1936 | if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0))) { |
| 1937 | if (!IgnoreZeroSign) |
| 1938 | IgnoreZeroSign = cast<Instruction>(V)->hasNoSignedZeros(); |
| 1939 | return !IgnoreZeroSign ? C->isNegativeZeroValue() : C->isZeroValue(); |
| 1940 | } |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1941 | return false; |
| 1942 | } |
| 1943 | |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1944 | bool BinaryOperator::isNot(const Value *V) { |
| 1945 | if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V)) |
| 1946 | return (Bop->getOpcode() == Instruction::Xor && |
| 1947 | (isConstantAllOnes(Bop->getOperand(1)) || |
| 1948 | isConstantAllOnes(Bop->getOperand(0)))); |
| 1949 | return false; |
| 1950 | } |
| 1951 | |
Chris Lattner | 64001d0 | 2005-04-24 07:28:37 +0000 | [diff] [blame] | 1952 | Value *BinaryOperator::getNegArgument(Value *BinOp) { |
Chris Lattner | 64001d0 | 2005-04-24 07:28:37 +0000 | [diff] [blame] | 1953 | return cast<BinaryOperator>(BinOp)->getOperand(1); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1954 | } |
| 1955 | |
Chris Lattner | 64001d0 | 2005-04-24 07:28:37 +0000 | [diff] [blame] | 1956 | const Value *BinaryOperator::getNegArgument(const Value *BinOp) { |
| 1957 | return getNegArgument(const_cast<Value*>(BinOp)); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1958 | } |
| 1959 | |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1960 | Value *BinaryOperator::getFNegArgument(Value *BinOp) { |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1961 | return cast<BinaryOperator>(BinOp)->getOperand(1); |
| 1962 | } |
| 1963 | |
| 1964 | const Value *BinaryOperator::getFNegArgument(const Value *BinOp) { |
| 1965 | return getFNegArgument(const_cast<Value*>(BinOp)); |
| 1966 | } |
| 1967 | |
Chris Lattner | 64001d0 | 2005-04-24 07:28:37 +0000 | [diff] [blame] | 1968 | Value *BinaryOperator::getNotArgument(Value *BinOp) { |
| 1969 | assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!"); |
| 1970 | BinaryOperator *BO = cast<BinaryOperator>(BinOp); |
| 1971 | Value *Op0 = BO->getOperand(0); |
| 1972 | Value *Op1 = BO->getOperand(1); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1973 | if (isConstantAllOnes(Op0)) return Op1; |
| 1974 | |
| 1975 | assert(isConstantAllOnes(Op1)); |
| 1976 | return Op0; |
| 1977 | } |
| 1978 | |
Chris Lattner | 64001d0 | 2005-04-24 07:28:37 +0000 | [diff] [blame] | 1979 | const Value *BinaryOperator::getNotArgument(const Value *BinOp) { |
| 1980 | return getNotArgument(const_cast<Value*>(BinOp)); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1981 | } |
| 1982 | |
| 1983 | |
| 1984 | // swapOperands - Exchange the two operands to this instruction. This |
| 1985 | // instruction is safe to use on any binary instruction and does not |
| 1986 | // modify the semantics of the instruction. If the instruction is |
| 1987 | // order dependent (SetLT f.e.) the opcode is changed. |
| 1988 | // |
| 1989 | bool BinaryOperator::swapOperands() { |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 1990 | if (!isCommutative()) |
| 1991 | return true; // Can't commute operands |
Gabor Greif | 94fb68b | 2008-05-13 22:51:52 +0000 | [diff] [blame] | 1992 | Op<0>().swap(Op<1>()); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 1993 | return false; |
| 1994 | } |
| 1995 | |
Dan Gohman | f8dbee7 | 2009-09-07 23:54:19 +0000 | [diff] [blame] | 1996 | void BinaryOperator::setHasNoUnsignedWrap(bool b) { |
| 1997 | cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b); |
| 1998 | } |
| 1999 | |
| 2000 | void BinaryOperator::setHasNoSignedWrap(bool b) { |
| 2001 | cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b); |
| 2002 | } |
| 2003 | |
| 2004 | void BinaryOperator::setIsExact(bool b) { |
Chris Lattner | 35bda89 | 2011-02-06 21:44:57 +0000 | [diff] [blame] | 2005 | cast<PossiblyExactOperator>(this)->setIsExact(b); |
Dan Gohman | f8dbee7 | 2009-09-07 23:54:19 +0000 | [diff] [blame] | 2006 | } |
| 2007 | |
Nick Lewycky | ae05e7d | 2009-09-27 21:33:04 +0000 | [diff] [blame] | 2008 | bool BinaryOperator::hasNoUnsignedWrap() const { |
| 2009 | return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap(); |
| 2010 | } |
| 2011 | |
| 2012 | bool BinaryOperator::hasNoSignedWrap() const { |
| 2013 | return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap(); |
| 2014 | } |
| 2015 | |
| 2016 | bool BinaryOperator::isExact() const { |
Chris Lattner | 35bda89 | 2011-02-06 21:44:57 +0000 | [diff] [blame] | 2017 | return cast<PossiblyExactOperator>(this)->isExact(); |
Nick Lewycky | ae05e7d | 2009-09-27 21:33:04 +0000 | [diff] [blame] | 2018 | } |
| 2019 | |
Chris Lattner | 79bc332 | 2006-09-18 04:54:57 +0000 | [diff] [blame] | 2020 | //===----------------------------------------------------------------------===// |
Duncan Sands | 8883c43 | 2012-04-16 16:28:59 +0000 | [diff] [blame] | 2021 | // FPMathOperator Class |
| 2022 | //===----------------------------------------------------------------------===// |
| 2023 | |
| 2024 | /// getFPAccuracy - Get the maximum error permitted by this operation in ULPs. |
| 2025 | /// An accuracy of 0.0 means that the operation should be performed with the |
Duncan Sands | 2867c85 | 2012-04-16 19:39:33 +0000 | [diff] [blame] | 2026 | /// default precision. |
Duncan Sands | 8883c43 | 2012-04-16 16:28:59 +0000 | [diff] [blame] | 2027 | float FPMathOperator::getFPAccuracy() const { |
| 2028 | const MDNode *MD = |
| 2029 | cast<Instruction>(this)->getMetadata(LLVMContext::MD_fpmath); |
| 2030 | if (!MD) |
| 2031 | return 0.0; |
Duncan Sands | 2867c85 | 2012-04-16 19:39:33 +0000 | [diff] [blame] | 2032 | ConstantFP *Accuracy = cast<ConstantFP>(MD->getOperand(0)); |
| 2033 | return Accuracy->getValueAPF().convertToFloat(); |
Duncan Sands | 8883c43 | 2012-04-16 16:28:59 +0000 | [diff] [blame] | 2034 | } |
| 2035 | |
| 2036 | |
| 2037 | //===----------------------------------------------------------------------===// |
Chris Lattner | 79bc332 | 2006-09-18 04:54:57 +0000 | [diff] [blame] | 2038 | // CastInst Class |
| 2039 | //===----------------------------------------------------------------------===// |
| 2040 | |
David Blaikie | 0becc96 | 2011-12-01 08:00:17 +0000 | [diff] [blame] | 2041 | void CastInst::anchor() {} |
| 2042 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2043 | // Just determine if this cast only deals with integral->integral conversion. |
| 2044 | bool CastInst::isIntegerCast() const { |
| 2045 | switch (getOpcode()) { |
| 2046 | default: return false; |
| 2047 | case Instruction::ZExt: |
| 2048 | case Instruction::SExt: |
| 2049 | case Instruction::Trunc: |
| 2050 | return true; |
| 2051 | case Instruction::BitCast: |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2052 | return getOperand(0)->getType()->isIntegerTy() && |
| 2053 | getType()->isIntegerTy(); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2054 | } |
Chris Lattner | 79bc332 | 2006-09-18 04:54:57 +0000 | [diff] [blame] | 2055 | } |
| 2056 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2057 | bool CastInst::isLosslessCast() const { |
| 2058 | // Only BitCast can be lossless, exit fast if we're not BitCast |
| 2059 | if (getOpcode() != Instruction::BitCast) |
| 2060 | return false; |
| 2061 | |
| 2062 | // Identity cast is always lossless |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2063 | Type* SrcTy = getOperand(0)->getType(); |
| 2064 | Type* DstTy = getType(); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2065 | if (SrcTy == DstTy) |
| 2066 | return true; |
| 2067 | |
Reid Spencer | 79e21d3 | 2006-12-31 05:26:44 +0000 | [diff] [blame] | 2068 | // Pointer to pointer is always lossless. |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 2069 | if (SrcTy->isPointerTy()) |
| 2070 | return DstTy->isPointerTy(); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2071 | return false; // Other types have no identity values |
| 2072 | } |
| 2073 | |
| 2074 | /// This function determines if the CastInst does not require any bits to be |
| 2075 | /// changed in order to effect the cast. Essentially, it identifies cases where |
| 2076 | /// no code gen is necessary for the cast, hence the name no-op cast. For |
| 2077 | /// example, the following are all no-op casts: |
Dan Gohman | 9b38d7d | 2008-05-12 16:34:30 +0000 | [diff] [blame] | 2078 | /// # bitcast i32* %x to i8* |
| 2079 | /// # bitcast <2 x i32> %x to <4 x i16> |
| 2080 | /// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only |
Dan Gohman | 2c048ea | 2010-05-28 21:41:37 +0000 | [diff] [blame] | 2081 | /// @brief Determine if the described cast is a no-op. |
| 2082 | bool CastInst::isNoopCast(Instruction::CastOps Opcode, |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2083 | Type *SrcTy, |
| 2084 | Type *DestTy, |
| 2085 | Type *IntPtrTy) { |
Dan Gohman | 2c048ea | 2010-05-28 21:41:37 +0000 | [diff] [blame] | 2086 | switch (Opcode) { |
Craig Topper | 50bee42 | 2012-02-05 22:14:15 +0000 | [diff] [blame] | 2087 | default: llvm_unreachable("Invalid CastOp"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2088 | case Instruction::Trunc: |
| 2089 | case Instruction::ZExt: |
| 2090 | case Instruction::SExt: |
| 2091 | case Instruction::FPTrunc: |
| 2092 | case Instruction::FPExt: |
| 2093 | case Instruction::UIToFP: |
| 2094 | case Instruction::SIToFP: |
| 2095 | case Instruction::FPToUI: |
| 2096 | case Instruction::FPToSI: |
| 2097 | return false; // These always modify bits |
| 2098 | case Instruction::BitCast: |
| 2099 | return true; // BitCast never modifies bits. |
| 2100 | case Instruction::PtrToInt: |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2101 | return IntPtrTy->getScalarSizeInBits() == |
Dan Gohman | 2c048ea | 2010-05-28 21:41:37 +0000 | [diff] [blame] | 2102 | DestTy->getScalarSizeInBits(); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2103 | case Instruction::IntToPtr: |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2104 | return IntPtrTy->getScalarSizeInBits() == |
Dan Gohman | 2c048ea | 2010-05-28 21:41:37 +0000 | [diff] [blame] | 2105 | SrcTy->getScalarSizeInBits(); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2106 | } |
| 2107 | } |
| 2108 | |
Dan Gohman | 2c048ea | 2010-05-28 21:41:37 +0000 | [diff] [blame] | 2109 | /// @brief Determine if a cast is a no-op. |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2110 | bool CastInst::isNoopCast(Type *IntPtrTy) const { |
Dan Gohman | 2c048ea | 2010-05-28 21:41:37 +0000 | [diff] [blame] | 2111 | return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy); |
| 2112 | } |
| 2113 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2114 | /// This function determines if a pair of casts can be eliminated and what |
| 2115 | /// opcode should be used in the elimination. This assumes that there are two |
| 2116 | /// instructions like this: |
| 2117 | /// * %F = firstOpcode SrcTy %x to MidTy |
| 2118 | /// * %S = secondOpcode MidTy %F to DstTy |
| 2119 | /// The function returns a resultOpcode so these two casts can be replaced with: |
| 2120 | /// * %Replacement = resultOpcode %SrcTy %x to DstTy |
| 2121 | /// If no such cast is permited, the function returns 0. |
| 2122 | unsigned CastInst::isEliminableCastPair( |
| 2123 | Instruction::CastOps firstOp, Instruction::CastOps secondOp, |
Duncan Sands | 446cf94 | 2012-10-30 16:03:32 +0000 | [diff] [blame] | 2124 | Type *SrcTy, Type *MidTy, Type *DstTy, Type *SrcIntPtrTy, Type *MidIntPtrTy, |
| 2125 | Type *DstIntPtrTy) { |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2126 | // Define the 144 possibilities for these two cast instructions. The values |
| 2127 | // in this matrix determine what to do in a given situation and select the |
| 2128 | // case in the switch below. The rows correspond to firstOp, the columns |
| 2129 | // correspond to secondOp. In looking at the table below, keep in mind |
| 2130 | // the following cast properties: |
| 2131 | // |
| 2132 | // Size Compare Source Destination |
| 2133 | // Operator Src ? Size Type Sign Type Sign |
| 2134 | // -------- ------------ ------------------- --------------------- |
| 2135 | // TRUNC > Integer Any Integral Any |
| 2136 | // ZEXT < Integral Unsigned Integer Any |
| 2137 | // SEXT < Integral Signed Integer Any |
| 2138 | // FPTOUI n/a FloatPt n/a Integral Unsigned |
| 2139 | // FPTOSI n/a FloatPt n/a Integral Signed |
| 2140 | // UITOFP n/a Integral Unsigned FloatPt n/a |
| 2141 | // SITOFP n/a Integral Signed FloatPt n/a |
| 2142 | // FPTRUNC > FloatPt n/a FloatPt n/a |
| 2143 | // FPEXT < FloatPt n/a FloatPt n/a |
| 2144 | // PTRTOINT n/a Pointer n/a Integral Unsigned |
| 2145 | // INTTOPTR n/a Integral Unsigned Pointer n/a |
Dan Gohman | a5ced59 | 2010-04-07 23:22:42 +0000 | [diff] [blame] | 2146 | // BITCAST = FirstClass n/a FirstClass n/a |
Chris Lattner | 518f6fa | 2006-12-05 23:43:59 +0000 | [diff] [blame] | 2147 | // |
| 2148 | // NOTE: some transforms are safe, but we consider them to be non-profitable. |
Dan Gohman | a119de8 | 2009-06-14 23:30:43 +0000 | [diff] [blame] | 2149 | // For example, we could merge "fptoui double to i32" + "zext i32 to i64", |
| 2150 | // into "fptoui double to i64", but this loses information about the range |
Chris Lattner | 518f6fa | 2006-12-05 23:43:59 +0000 | [diff] [blame] | 2151 | // of the produced value (we no longer know the top-part is all zeros). |
| 2152 | // Further this conversion is often much more expensive for typical hardware, |
| 2153 | // and causes issues when building libgcc. We disallow fptosi+sext for the |
| 2154 | // same reason. |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2155 | const unsigned numCastOps = |
| 2156 | Instruction::CastOpsEnd - Instruction::CastOpsBegin; |
| 2157 | static const uint8_t CastResults[numCastOps][numCastOps] = { |
| 2158 | // T F F U S F F P I B -+ |
| 2159 | // R Z S P P I I T P 2 N T | |
| 2160 | // U E E 2 2 2 2 R E I T C +- secondOp |
| 2161 | // N X X U S F F N X N 2 V | |
| 2162 | // C T T I I P P C T T P T -+ |
| 2163 | { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // Trunc -+ |
| 2164 | { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3 }, // ZExt | |
| 2165 | { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3 }, // SExt | |
Chris Lattner | 518f6fa | 2006-12-05 23:43:59 +0000 | [diff] [blame] | 2166 | { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToUI | |
| 2167 | { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToSI | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2168 | { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // UIToFP +- firstOp |
| 2169 | { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // SIToFP | |
| 2170 | { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4 }, // FPTrunc | |
| 2171 | { 99,99,99, 2, 2,99,99,10, 2,99,99, 4 }, // FPExt | |
| 2172 | { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3 }, // PtrToInt | |
| 2173 | { 99,99,99,99,99,99,99,99,99,13,99,12 }, // IntToPtr | |
| 2174 | { 5, 5, 5, 6, 6, 5, 5, 6, 6,11, 5, 1 }, // BitCast -+ |
| 2175 | }; |
Chris Lattner | dfd3626 | 2010-07-12 01:19:22 +0000 | [diff] [blame] | 2176 | |
| 2177 | // If either of the casts are a bitcast from scalar to vector, disallow the |
Nadav Rotem | 89879ec | 2011-08-29 19:58:36 +0000 | [diff] [blame] | 2178 | // merging. However, bitcast of A->B->A are allowed. |
| 2179 | bool isFirstBitcast = (firstOp == Instruction::BitCast); |
| 2180 | bool isSecondBitcast = (secondOp == Instruction::BitCast); |
| 2181 | bool chainedBitcast = (SrcTy == DstTy && isFirstBitcast && isSecondBitcast); |
| 2182 | |
| 2183 | // Check if any of the bitcasts convert scalars<->vectors. |
| 2184 | if ((isFirstBitcast && isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) || |
| 2185 | (isSecondBitcast && isa<VectorType>(MidTy) != isa<VectorType>(DstTy))) |
| 2186 | // Unless we are bitcasing to the original type, disallow optimizations. |
| 2187 | if (!chainedBitcast) return 0; |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2188 | |
| 2189 | int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin] |
| 2190 | [secondOp-Instruction::CastOpsBegin]; |
| 2191 | switch (ElimCase) { |
| 2192 | case 0: |
| 2193 | // categorically disallowed |
| 2194 | return 0; |
| 2195 | case 1: |
| 2196 | // allowed, use first cast's opcode |
| 2197 | return firstOp; |
| 2198 | case 2: |
| 2199 | // allowed, use second cast's opcode |
| 2200 | return secondOp; |
| 2201 | case 3: |
| 2202 | // no-op cast in second op implies firstOp as long as the DestTy |
Mon P Wang | e4a0a15 | 2010-01-23 04:35:57 +0000 | [diff] [blame] | 2203 | // is integer and we are not converting between a vector and a |
Chris Lattner | 33b1758 | 2010-01-23 04:42:42 +0000 | [diff] [blame] | 2204 | // non vector type. |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 2205 | if (!SrcTy->isVectorTy() && DstTy->isIntegerTy()) |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2206 | return firstOp; |
| 2207 | return 0; |
| 2208 | case 4: |
| 2209 | // no-op cast in second op implies firstOp as long as the DestTy |
Chris Lattner | 33b1758 | 2010-01-23 04:42:42 +0000 | [diff] [blame] | 2210 | // is floating point. |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2211 | if (DstTy->isFloatingPointTy()) |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2212 | return firstOp; |
| 2213 | return 0; |
| 2214 | case 5: |
| 2215 | // no-op cast in first op implies secondOp as long as the SrcTy |
Chris Lattner | 33b1758 | 2010-01-23 04:42:42 +0000 | [diff] [blame] | 2216 | // is an integer. |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2217 | if (SrcTy->isIntegerTy()) |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2218 | return secondOp; |
| 2219 | return 0; |
| 2220 | case 6: |
| 2221 | // no-op cast in first op implies secondOp as long as the SrcTy |
Chris Lattner | 33b1758 | 2010-01-23 04:42:42 +0000 | [diff] [blame] | 2222 | // is a floating point. |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2223 | if (SrcTy->isFloatingPointTy()) |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2224 | return secondOp; |
| 2225 | return 0; |
| 2226 | case 7: { |
| 2227 | // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size |
Duncan Sands | 446cf94 | 2012-10-30 16:03:32 +0000 | [diff] [blame] | 2228 | if (!SrcIntPtrTy || DstIntPtrTy != SrcIntPtrTy) |
Dan Gohman | 295643b | 2009-07-21 23:19:40 +0000 | [diff] [blame] | 2229 | return 0; |
Duncan Sands | 446cf94 | 2012-10-30 16:03:32 +0000 | [diff] [blame] | 2230 | unsigned PtrSize = SrcIntPtrTy->getScalarSizeInBits(); |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2231 | unsigned MidSize = MidTy->getScalarSizeInBits(); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2232 | if (MidSize >= PtrSize) |
| 2233 | return Instruction::BitCast; |
| 2234 | return 0; |
| 2235 | } |
| 2236 | case 8: { |
| 2237 | // ext, trunc -> bitcast, if the SrcTy and DstTy are same size |
| 2238 | // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy) |
| 2239 | // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy) |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2240 | unsigned SrcSize = SrcTy->getScalarSizeInBits(); |
| 2241 | unsigned DstSize = DstTy->getScalarSizeInBits(); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2242 | if (SrcSize == DstSize) |
| 2243 | return Instruction::BitCast; |
| 2244 | else if (SrcSize < DstSize) |
| 2245 | return firstOp; |
| 2246 | return secondOp; |
| 2247 | } |
| 2248 | case 9: // zext, sext -> zext, because sext can't sign extend after zext |
| 2249 | return Instruction::ZExt; |
| 2250 | case 10: |
| 2251 | // fpext followed by ftrunc is allowed if the bit size returned to is |
| 2252 | // the same as the original, in which case its just a bitcast |
| 2253 | if (SrcTy == DstTy) |
| 2254 | return Instruction::BitCast; |
| 2255 | return 0; // If the types are not the same we can't eliminate it. |
| 2256 | case 11: |
| 2257 | // bitcast followed by ptrtoint is allowed as long as the bitcast |
| 2258 | // is a pointer to pointer cast. |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 2259 | if (SrcTy->isPointerTy() && MidTy->isPointerTy()) |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2260 | return secondOp; |
| 2261 | return 0; |
| 2262 | case 12: |
| 2263 | // inttoptr, bitcast -> intptr if bitcast is a ptr to ptr cast |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 2264 | if (MidTy->isPointerTy() && DstTy->isPointerTy()) |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2265 | return firstOp; |
| 2266 | return 0; |
| 2267 | case 13: { |
| 2268 | // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize |
Duncan Sands | 446cf94 | 2012-10-30 16:03:32 +0000 | [diff] [blame] | 2269 | if (!MidIntPtrTy) |
Dan Gohman | 295643b | 2009-07-21 23:19:40 +0000 | [diff] [blame] | 2270 | return 0; |
Duncan Sands | 446cf94 | 2012-10-30 16:03:32 +0000 | [diff] [blame] | 2271 | unsigned PtrSize = MidIntPtrTy->getScalarSizeInBits(); |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2272 | unsigned SrcSize = SrcTy->getScalarSizeInBits(); |
| 2273 | unsigned DstSize = DstTy->getScalarSizeInBits(); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2274 | if (SrcSize <= PtrSize && SrcSize == DstSize) |
| 2275 | return Instruction::BitCast; |
| 2276 | return 0; |
| 2277 | } |
| 2278 | case 99: |
| 2279 | // cast combination can't happen (error in input). This is for all cases |
| 2280 | // where the MidTy is not the same for the two cast instructions. |
Craig Topper | 50bee42 | 2012-02-05 22:14:15 +0000 | [diff] [blame] | 2281 | llvm_unreachable("Invalid Cast Combination"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2282 | default: |
Craig Topper | 50bee42 | 2012-02-05 22:14:15 +0000 | [diff] [blame] | 2283 | llvm_unreachable("Error in CastResults table!!!"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2284 | } |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2285 | } |
| 2286 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2287 | CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2288 | const Twine &Name, Instruction *InsertBefore) { |
Duncan Sands | bb1695e | 2011-05-18 09:21:57 +0000 | [diff] [blame] | 2289 | assert(castIsValid(op, S, Ty) && "Invalid cast!"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2290 | // Construct and return the appropriate CastInst subclass |
| 2291 | switch (op) { |
| 2292 | case Trunc: return new TruncInst (S, Ty, Name, InsertBefore); |
| 2293 | case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore); |
| 2294 | case SExt: return new SExtInst (S, Ty, Name, InsertBefore); |
| 2295 | case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore); |
| 2296 | case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore); |
| 2297 | case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore); |
| 2298 | case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore); |
| 2299 | case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore); |
| 2300 | case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore); |
| 2301 | case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore); |
| 2302 | case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore); |
| 2303 | case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore); |
Craig Topper | 50bee42 | 2012-02-05 22:14:15 +0000 | [diff] [blame] | 2304 | default: llvm_unreachable("Invalid opcode provided"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2305 | } |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2306 | } |
| 2307 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2308 | CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2309 | const Twine &Name, BasicBlock *InsertAtEnd) { |
Duncan Sands | bb1695e | 2011-05-18 09:21:57 +0000 | [diff] [blame] | 2310 | assert(castIsValid(op, S, Ty) && "Invalid cast!"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2311 | // Construct and return the appropriate CastInst subclass |
| 2312 | switch (op) { |
| 2313 | case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd); |
| 2314 | case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd); |
| 2315 | case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd); |
| 2316 | case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd); |
| 2317 | case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd); |
| 2318 | case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd); |
| 2319 | case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd); |
| 2320 | case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd); |
| 2321 | case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd); |
| 2322 | case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd); |
| 2323 | case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd); |
| 2324 | case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd); |
Craig Topper | 50bee42 | 2012-02-05 22:14:15 +0000 | [diff] [blame] | 2325 | default: llvm_unreachable("Invalid opcode provided"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2326 | } |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2327 | } |
| 2328 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2329 | CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2330 | const Twine &Name, |
Reid Spencer | 848414e | 2006-12-04 20:17:56 +0000 | [diff] [blame] | 2331 | Instruction *InsertBefore) { |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2332 | if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits()) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 2333 | return Create(Instruction::BitCast, S, Ty, Name, InsertBefore); |
| 2334 | return Create(Instruction::ZExt, S, Ty, Name, InsertBefore); |
Reid Spencer | 848414e | 2006-12-04 20:17:56 +0000 | [diff] [blame] | 2335 | } |
| 2336 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2337 | CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2338 | const Twine &Name, |
Reid Spencer | 848414e | 2006-12-04 20:17:56 +0000 | [diff] [blame] | 2339 | BasicBlock *InsertAtEnd) { |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2340 | if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits()) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 2341 | return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd); |
| 2342 | return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd); |
Reid Spencer | 848414e | 2006-12-04 20:17:56 +0000 | [diff] [blame] | 2343 | } |
| 2344 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2345 | CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2346 | const Twine &Name, |
Reid Spencer | 848414e | 2006-12-04 20:17:56 +0000 | [diff] [blame] | 2347 | Instruction *InsertBefore) { |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2348 | if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits()) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 2349 | return Create(Instruction::BitCast, S, Ty, Name, InsertBefore); |
| 2350 | return Create(Instruction::SExt, S, Ty, Name, InsertBefore); |
Reid Spencer | 848414e | 2006-12-04 20:17:56 +0000 | [diff] [blame] | 2351 | } |
| 2352 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2353 | CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2354 | const Twine &Name, |
Reid Spencer | 848414e | 2006-12-04 20:17:56 +0000 | [diff] [blame] | 2355 | BasicBlock *InsertAtEnd) { |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2356 | if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits()) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 2357 | return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd); |
| 2358 | return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd); |
Reid Spencer | 848414e | 2006-12-04 20:17:56 +0000 | [diff] [blame] | 2359 | } |
| 2360 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2361 | CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2362 | const Twine &Name, |
Reid Spencer | 848414e | 2006-12-04 20:17:56 +0000 | [diff] [blame] | 2363 | Instruction *InsertBefore) { |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2364 | if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits()) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 2365 | return Create(Instruction::BitCast, S, Ty, Name, InsertBefore); |
| 2366 | return Create(Instruction::Trunc, S, Ty, Name, InsertBefore); |
Reid Spencer | 848414e | 2006-12-04 20:17:56 +0000 | [diff] [blame] | 2367 | } |
| 2368 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2369 | CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2370 | const Twine &Name, |
Reid Spencer | 848414e | 2006-12-04 20:17:56 +0000 | [diff] [blame] | 2371 | BasicBlock *InsertAtEnd) { |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2372 | if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits()) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 2373 | return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd); |
| 2374 | return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd); |
Reid Spencer | 848414e | 2006-12-04 20:17:56 +0000 | [diff] [blame] | 2375 | } |
| 2376 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2377 | CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2378 | const Twine &Name, |
Reid Spencer | 330d86d | 2006-12-05 03:28:26 +0000 | [diff] [blame] | 2379 | BasicBlock *InsertAtEnd) { |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 2380 | assert(S->getType()->isPointerTy() && "Invalid cast"); |
| 2381 | assert((Ty->isIntegerTy() || Ty->isPointerTy()) && |
Reid Spencer | 330d86d | 2006-12-05 03:28:26 +0000 | [diff] [blame] | 2382 | "Invalid cast"); |
| 2383 | |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2384 | if (Ty->isIntegerTy()) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 2385 | return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd); |
| 2386 | return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd); |
Reid Spencer | 330d86d | 2006-12-05 03:28:26 +0000 | [diff] [blame] | 2387 | } |
| 2388 | |
| 2389 | /// @brief Create a BitCast or a PtrToInt cast instruction |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2390 | CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2391 | const Twine &Name, |
Reid Spencer | 330d86d | 2006-12-05 03:28:26 +0000 | [diff] [blame] | 2392 | Instruction *InsertBefore) { |
Evgeniy Stepanov | 344d3fb | 2013-01-15 16:43:00 +0000 | [diff] [blame] | 2393 | assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast"); |
| 2394 | assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) && |
Reid Spencer | 330d86d | 2006-12-05 03:28:26 +0000 | [diff] [blame] | 2395 | "Invalid cast"); |
| 2396 | |
Evgeniy Stepanov | 344d3fb | 2013-01-15 16:43:00 +0000 | [diff] [blame] | 2397 | if (Ty->isIntOrIntVectorTy()) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 2398 | return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore); |
| 2399 | return Create(Instruction::BitCast, S, Ty, Name, InsertBefore); |
Reid Spencer | 330d86d | 2006-12-05 03:28:26 +0000 | [diff] [blame] | 2400 | } |
| 2401 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2402 | CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2403 | bool isSigned, const Twine &Name, |
Reid Spencer | 6d81a7d | 2006-12-12 00:49:44 +0000 | [diff] [blame] | 2404 | Instruction *InsertBefore) { |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2405 | assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() && |
Chris Lattner | 859c372 | 2010-01-10 20:21:42 +0000 | [diff] [blame] | 2406 | "Invalid integer cast"); |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2407 | unsigned SrcBits = C->getType()->getScalarSizeInBits(); |
| 2408 | unsigned DstBits = Ty->getScalarSizeInBits(); |
Reid Spencer | 6d81a7d | 2006-12-12 00:49:44 +0000 | [diff] [blame] | 2409 | Instruction::CastOps opcode = |
| 2410 | (SrcBits == DstBits ? Instruction::BitCast : |
| 2411 | (SrcBits > DstBits ? Instruction::Trunc : |
| 2412 | (isSigned ? Instruction::SExt : Instruction::ZExt))); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 2413 | return Create(opcode, C, Ty, Name, InsertBefore); |
Reid Spencer | 6d81a7d | 2006-12-12 00:49:44 +0000 | [diff] [blame] | 2414 | } |
| 2415 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2416 | CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2417 | bool isSigned, const Twine &Name, |
Reid Spencer | 6d81a7d | 2006-12-12 00:49:44 +0000 | [diff] [blame] | 2418 | BasicBlock *InsertAtEnd) { |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2419 | assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() && |
Dan Gohman | f57478f | 2009-06-15 22:25:12 +0000 | [diff] [blame] | 2420 | "Invalid cast"); |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2421 | unsigned SrcBits = C->getType()->getScalarSizeInBits(); |
| 2422 | unsigned DstBits = Ty->getScalarSizeInBits(); |
Reid Spencer | 6d81a7d | 2006-12-12 00:49:44 +0000 | [diff] [blame] | 2423 | Instruction::CastOps opcode = |
| 2424 | (SrcBits == DstBits ? Instruction::BitCast : |
| 2425 | (SrcBits > DstBits ? Instruction::Trunc : |
| 2426 | (isSigned ? Instruction::SExt : Instruction::ZExt))); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 2427 | return Create(opcode, C, Ty, Name, InsertAtEnd); |
Reid Spencer | 6d81a7d | 2006-12-12 00:49:44 +0000 | [diff] [blame] | 2428 | } |
| 2429 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2430 | CastInst *CastInst::CreateFPCast(Value *C, Type *Ty, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2431 | const Twine &Name, |
Reid Spencer | 6d81a7d | 2006-12-12 00:49:44 +0000 | [diff] [blame] | 2432 | Instruction *InsertBefore) { |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2433 | assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() && |
Reid Spencer | 6d81a7d | 2006-12-12 00:49:44 +0000 | [diff] [blame] | 2434 | "Invalid cast"); |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2435 | unsigned SrcBits = C->getType()->getScalarSizeInBits(); |
| 2436 | unsigned DstBits = Ty->getScalarSizeInBits(); |
Reid Spencer | 6d81a7d | 2006-12-12 00:49:44 +0000 | [diff] [blame] | 2437 | Instruction::CastOps opcode = |
| 2438 | (SrcBits == DstBits ? Instruction::BitCast : |
| 2439 | (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt)); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 2440 | return Create(opcode, C, Ty, Name, InsertBefore); |
Reid Spencer | 6d81a7d | 2006-12-12 00:49:44 +0000 | [diff] [blame] | 2441 | } |
| 2442 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2443 | CastInst *CastInst::CreateFPCast(Value *C, Type *Ty, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2444 | const Twine &Name, |
Reid Spencer | 6d81a7d | 2006-12-12 00:49:44 +0000 | [diff] [blame] | 2445 | BasicBlock *InsertAtEnd) { |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2446 | assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() && |
Reid Spencer | 6d81a7d | 2006-12-12 00:49:44 +0000 | [diff] [blame] | 2447 | "Invalid cast"); |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2448 | unsigned SrcBits = C->getType()->getScalarSizeInBits(); |
| 2449 | unsigned DstBits = Ty->getScalarSizeInBits(); |
Reid Spencer | 6d81a7d | 2006-12-12 00:49:44 +0000 | [diff] [blame] | 2450 | Instruction::CastOps opcode = |
| 2451 | (SrcBits == DstBits ? Instruction::BitCast : |
| 2452 | (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt)); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 2453 | return Create(opcode, C, Ty, Name, InsertAtEnd); |
Reid Spencer | 6d81a7d | 2006-12-12 00:49:44 +0000 | [diff] [blame] | 2454 | } |
| 2455 | |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2456 | // Check whether it is valid to call getCastOpcode for these types. |
| 2457 | // This routine must be kept in sync with getCastOpcode. |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2458 | bool CastInst::isCastable(Type *SrcTy, Type *DestTy) { |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2459 | if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType()) |
| 2460 | return false; |
| 2461 | |
| 2462 | if (SrcTy == DestTy) |
| 2463 | return true; |
| 2464 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2465 | if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) |
| 2466 | if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy)) |
Duncan Sands | 117feba | 2011-05-18 07:13:41 +0000 | [diff] [blame] | 2467 | if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) { |
| 2468 | // An element by element cast. Valid if casting the elements is valid. |
| 2469 | SrcTy = SrcVecTy->getElementType(); |
| 2470 | DestTy = DestVecTy->getElementType(); |
| 2471 | } |
| 2472 | |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2473 | // Get the bit sizes, we'll need these |
Duncan Sands | bb1695e | 2011-05-18 09:21:57 +0000 | [diff] [blame] | 2474 | unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr |
| 2475 | unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2476 | |
| 2477 | // Run through the possibilities ... |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2478 | if (DestTy->isIntegerTy()) { // Casting to integral |
| 2479 | if (SrcTy->isIntegerTy()) { // Casting from integral |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2480 | return true; |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2481 | } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2482 | return true; |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2483 | } else if (SrcTy->isVectorTy()) { // Casting from vector |
| 2484 | return DestBits == SrcBits; |
Gabor Greif | b1dbcd8 | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 2485 | } else { // Casting from something else |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 2486 | return SrcTy->isPointerTy(); |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2487 | } |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2488 | } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt |
| 2489 | if (SrcTy->isIntegerTy()) { // Casting from integral |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2490 | return true; |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2491 | } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2492 | return true; |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2493 | } else if (SrcTy->isVectorTy()) { // Casting from vector |
| 2494 | return DestBits == SrcBits; |
Gabor Greif | b1dbcd8 | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 2495 | } else { // Casting from something else |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2496 | return false; |
| 2497 | } |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2498 | } else if (DestTy->isVectorTy()) { // Casting to vector |
| 2499 | return DestBits == SrcBits; |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 2500 | } else if (DestTy->isPointerTy()) { // Casting to pointer |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2501 | if (SrcTy->isPointerTy()) { // Casting from pointer |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2502 | return true; |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2503 | } else if (SrcTy->isIntegerTy()) { // Casting from integral |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2504 | return true; |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2505 | } else { // Casting from something else |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2506 | return false; |
| 2507 | } |
Duncan Sands | 6079465 | 2011-04-01 03:34:54 +0000 | [diff] [blame] | 2508 | } else if (DestTy->isX86_MMXTy()) { |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2509 | if (SrcTy->isVectorTy()) { |
| 2510 | return DestBits == SrcBits; // 64-bit vector to MMX |
Duncan Sands | 6079465 | 2011-04-01 03:34:54 +0000 | [diff] [blame] | 2511 | } else { |
| 2512 | return false; |
| 2513 | } |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2514 | } else { // Casting to something else |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2515 | return false; |
| 2516 | } |
| 2517 | } |
| 2518 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2519 | // Provide a way to get a "cast" where the cast opcode is inferred from the |
| 2520 | // types and size of the operand. This, basically, is a parallel of the |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2521 | // logic in the castIsValid function below. This axiom should hold: |
| 2522 | // castIsValid( getCastOpcode(Val, Ty), Val, Ty) |
| 2523 | // should not assert in castIsValid. In other words, this produces a "correct" |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2524 | // casting opcode for the arguments passed to it. |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2525 | // This routine must be kept in sync with isCastable. |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2526 | Instruction::CastOps |
Reid Spencer | 5666712 | 2006-12-04 02:43:42 +0000 | [diff] [blame] | 2527 | CastInst::getCastOpcode( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2528 | const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) { |
| 2529 | Type *SrcTy = Src->getType(); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2530 | |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2531 | assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() && |
| 2532 | "Only first class types are castable!"); |
| 2533 | |
Duncan Sands | 117feba | 2011-05-18 07:13:41 +0000 | [diff] [blame] | 2534 | if (SrcTy == DestTy) |
| 2535 | return BitCast; |
| 2536 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2537 | if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) |
| 2538 | if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy)) |
Duncan Sands | 117feba | 2011-05-18 07:13:41 +0000 | [diff] [blame] | 2539 | if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) { |
| 2540 | // An element by element cast. Find the appropriate opcode based on the |
| 2541 | // element types. |
| 2542 | SrcTy = SrcVecTy->getElementType(); |
| 2543 | DestTy = DestVecTy->getElementType(); |
| 2544 | } |
| 2545 | |
| 2546 | // Get the bit sizes, we'll need these |
Duncan Sands | bb1695e | 2011-05-18 09:21:57 +0000 | [diff] [blame] | 2547 | unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr |
| 2548 | unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr |
Duncan Sands | 117feba | 2011-05-18 07:13:41 +0000 | [diff] [blame] | 2549 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2550 | // Run through the possibilities ... |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2551 | if (DestTy->isIntegerTy()) { // Casting to integral |
| 2552 | if (SrcTy->isIntegerTy()) { // Casting from integral |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2553 | if (DestBits < SrcBits) |
| 2554 | return Trunc; // int -> smaller int |
| 2555 | else if (DestBits > SrcBits) { // its an extension |
Reid Spencer | 5666712 | 2006-12-04 02:43:42 +0000 | [diff] [blame] | 2556 | if (SrcIsSigned) |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2557 | return SExt; // signed -> SEXT |
| 2558 | else |
| 2559 | return ZExt; // unsigned -> ZEXT |
| 2560 | } else { |
| 2561 | return BitCast; // Same size, No-op cast |
| 2562 | } |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2563 | } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt |
Reid Spencer | 5666712 | 2006-12-04 02:43:42 +0000 | [diff] [blame] | 2564 | if (DestIsSigned) |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2565 | return FPToSI; // FP -> sint |
| 2566 | else |
| 2567 | return FPToUI; // FP -> uint |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2568 | } else if (SrcTy->isVectorTy()) { |
| 2569 | assert(DestBits == SrcBits && |
| 2570 | "Casting vector to integer of different width"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2571 | return BitCast; // Same size, no-op cast |
| 2572 | } else { |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 2573 | assert(SrcTy->isPointerTy() && |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2574 | "Casting from a value that is not first-class type"); |
| 2575 | return PtrToInt; // ptr -> int |
| 2576 | } |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2577 | } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt |
| 2578 | if (SrcTy->isIntegerTy()) { // Casting from integral |
Reid Spencer | 5666712 | 2006-12-04 02:43:42 +0000 | [diff] [blame] | 2579 | if (SrcIsSigned) |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2580 | return SIToFP; // sint -> FP |
| 2581 | else |
| 2582 | return UIToFP; // uint -> FP |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2583 | } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2584 | if (DestBits < SrcBits) { |
| 2585 | return FPTrunc; // FP -> smaller FP |
| 2586 | } else if (DestBits > SrcBits) { |
| 2587 | return FPExt; // FP -> larger FP |
| 2588 | } else { |
| 2589 | return BitCast; // same size, no-op cast |
| 2590 | } |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2591 | } else if (SrcTy->isVectorTy()) { |
| 2592 | assert(DestBits == SrcBits && |
Dan Gohman | 86296cc | 2007-05-11 21:43:24 +0000 | [diff] [blame] | 2593 | "Casting vector to floating point of different width"); |
Devang Patel | 8c3b47f | 2008-11-05 01:37:40 +0000 | [diff] [blame] | 2594 | return BitCast; // same size, no-op cast |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2595 | } |
Ahmed Charles | b0934ab | 2012-02-19 11:37:01 +0000 | [diff] [blame] | 2596 | llvm_unreachable("Casting pointer or non-first class to float"); |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2597 | } else if (DestTy->isVectorTy()) { |
| 2598 | assert(DestBits == SrcBits && |
| 2599 | "Illegal cast to vector (wrong type or size)"); |
| 2600 | return BitCast; |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 2601 | } else if (DestTy->isPointerTy()) { |
| 2602 | if (SrcTy->isPointerTy()) { |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2603 | return BitCast; // ptr -> ptr |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2604 | } else if (SrcTy->isIntegerTy()) { |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2605 | return IntToPtr; // int -> ptr |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2606 | } |
Ahmed Charles | b0934ab | 2012-02-19 11:37:01 +0000 | [diff] [blame] | 2607 | llvm_unreachable("Casting pointer to other than pointer or int"); |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 2608 | } else if (DestTy->isX86_MMXTy()) { |
Duncan Sands | 7016ec1 | 2011-05-18 10:59:25 +0000 | [diff] [blame] | 2609 | if (SrcTy->isVectorTy()) { |
| 2610 | assert(DestBits == SrcBits && "Casting vector of wrong width to X86_MMX"); |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 2611 | return BitCast; // 64-bit vector to MMX |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 2612 | } |
Ahmed Charles | b0934ab | 2012-02-19 11:37:01 +0000 | [diff] [blame] | 2613 | llvm_unreachable("Illegal cast to X86_MMX"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2614 | } |
Ahmed Charles | b0934ab | 2012-02-19 11:37:01 +0000 | [diff] [blame] | 2615 | llvm_unreachable("Casting to type that is not first-class"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2616 | } |
| 2617 | |
| 2618 | //===----------------------------------------------------------------------===// |
| 2619 | // CastInst SubClass Constructors |
| 2620 | //===----------------------------------------------------------------------===// |
| 2621 | |
| 2622 | /// Check that the construction parameters for a CastInst are correct. This |
| 2623 | /// could be broken out into the separate constructors but it is useful to have |
| 2624 | /// it in one place and to eliminate the redundant code for getting the sizes |
| 2625 | /// of the types involved. |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2626 | bool |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2627 | CastInst::castIsValid(Instruction::CastOps op, Value *S, Type *DstTy) { |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2628 | |
| 2629 | // Check for type sanity on the arguments |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2630 | Type *SrcTy = S->getType(); |
Evan Cheng | 582e4f2 | 2013-01-10 23:22:53 +0000 | [diff] [blame] | 2631 | |
| 2632 | // If this is a cast to the same type then it's trivially true. |
| 2633 | if (SrcTy == DstTy) |
| 2634 | return true; |
| 2635 | |
Chris Lattner | 0b68a00 | 2010-01-26 21:51:43 +0000 | [diff] [blame] | 2636 | if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType() || |
| 2637 | SrcTy->isAggregateType() || DstTy->isAggregateType()) |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2638 | return false; |
| 2639 | |
| 2640 | // Get the size of the types in bits, we'll need this later |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2641 | unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); |
| 2642 | unsigned DstBitSize = DstTy->getScalarSizeInBits(); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2643 | |
Duncan Sands | bb1695e | 2011-05-18 09:21:57 +0000 | [diff] [blame] | 2644 | // If these are vector types, get the lengths of the vectors (using zero for |
| 2645 | // scalar types means that checking that vector lengths match also checks that |
| 2646 | // scalars are not being converted to vectors or vectors to scalars). |
| 2647 | unsigned SrcLength = SrcTy->isVectorTy() ? |
| 2648 | cast<VectorType>(SrcTy)->getNumElements() : 0; |
| 2649 | unsigned DstLength = DstTy->isVectorTy() ? |
| 2650 | cast<VectorType>(DstTy)->getNumElements() : 0; |
| 2651 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2652 | // Switch on the opcode provided |
| 2653 | switch (op) { |
| 2654 | default: return false; // This is an input error |
| 2655 | case Instruction::Trunc: |
Duncan Sands | bb1695e | 2011-05-18 09:21:57 +0000 | [diff] [blame] | 2656 | return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() && |
| 2657 | SrcLength == DstLength && SrcBitSize > DstBitSize; |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2658 | case Instruction::ZExt: |
Duncan Sands | bb1695e | 2011-05-18 09:21:57 +0000 | [diff] [blame] | 2659 | return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() && |
| 2660 | SrcLength == DstLength && SrcBitSize < DstBitSize; |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2661 | case Instruction::SExt: |
Duncan Sands | bb1695e | 2011-05-18 09:21:57 +0000 | [diff] [blame] | 2662 | return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() && |
| 2663 | SrcLength == DstLength && SrcBitSize < DstBitSize; |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2664 | case Instruction::FPTrunc: |
Duncan Sands | bb1695e | 2011-05-18 09:21:57 +0000 | [diff] [blame] | 2665 | return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() && |
| 2666 | SrcLength == DstLength && SrcBitSize > DstBitSize; |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2667 | case Instruction::FPExt: |
Duncan Sands | bb1695e | 2011-05-18 09:21:57 +0000 | [diff] [blame] | 2668 | return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() && |
| 2669 | SrcLength == DstLength && SrcBitSize < DstBitSize; |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2670 | case Instruction::UIToFP: |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2671 | case Instruction::SIToFP: |
Duncan Sands | bb1695e | 2011-05-18 09:21:57 +0000 | [diff] [blame] | 2672 | return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy() && |
| 2673 | SrcLength == DstLength; |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2674 | case Instruction::FPToUI: |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2675 | case Instruction::FPToSI: |
Duncan Sands | bb1695e | 2011-05-18 09:21:57 +0000 | [diff] [blame] | 2676 | return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy() && |
| 2677 | SrcLength == DstLength; |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2678 | case Instruction::PtrToInt: |
Chris Lattner | af7b4fb | 2012-01-25 01:32:59 +0000 | [diff] [blame] | 2679 | if (isa<VectorType>(SrcTy) != isa<VectorType>(DstTy)) |
Nadav Rotem | 1608769 | 2011-12-05 06:29:09 +0000 | [diff] [blame] | 2680 | return false; |
Chris Lattner | af7b4fb | 2012-01-25 01:32:59 +0000 | [diff] [blame] | 2681 | if (VectorType *VT = dyn_cast<VectorType>(SrcTy)) |
| 2682 | if (VT->getNumElements() != cast<VectorType>(DstTy)->getNumElements()) |
| 2683 | return false; |
Nadav Rotem | 1608769 | 2011-12-05 06:29:09 +0000 | [diff] [blame] | 2684 | return SrcTy->getScalarType()->isPointerTy() && |
| 2685 | DstTy->getScalarType()->isIntegerTy(); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2686 | case Instruction::IntToPtr: |
Chris Lattner | af7b4fb | 2012-01-25 01:32:59 +0000 | [diff] [blame] | 2687 | if (isa<VectorType>(SrcTy) != isa<VectorType>(DstTy)) |
Nadav Rotem | 1608769 | 2011-12-05 06:29:09 +0000 | [diff] [blame] | 2688 | return false; |
Chris Lattner | af7b4fb | 2012-01-25 01:32:59 +0000 | [diff] [blame] | 2689 | if (VectorType *VT = dyn_cast<VectorType>(SrcTy)) |
| 2690 | if (VT->getNumElements() != cast<VectorType>(DstTy)->getNumElements()) |
| 2691 | return false; |
Nadav Rotem | 1608769 | 2011-12-05 06:29:09 +0000 | [diff] [blame] | 2692 | return SrcTy->getScalarType()->isIntegerTy() && |
| 2693 | DstTy->getScalarType()->isPointerTy(); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2694 | case Instruction::BitCast: |
| 2695 | // BitCast implies a no-op cast of type only. No bits change. |
| 2696 | // However, you can't cast pointers to anything but pointers. |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 2697 | if (SrcTy->isPointerTy() != DstTy->isPointerTy()) |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2698 | return false; |
| 2699 | |
Duncan Sands | a9d0c9d | 2008-01-06 10:12:28 +0000 | [diff] [blame] | 2700 | // Now we know we're not dealing with a pointer/non-pointer mismatch. In all |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2701 | // these cases, the cast is okay if the source and destination bit widths |
| 2702 | // are identical. |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 2703 | return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits(); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2704 | } |
| 2705 | } |
| 2706 | |
| 2707 | TruncInst::TruncInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2708 | Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2709 | ) : CastInst(Ty, Trunc, S, Name, InsertBefore) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2710 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2711 | } |
| 2712 | |
| 2713 | TruncInst::TruncInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2714 | Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2715 | ) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2716 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2717 | } |
| 2718 | |
| 2719 | ZExtInst::ZExtInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2720 | Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2721 | ) : CastInst(Ty, ZExt, S, Name, InsertBefore) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2722 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2723 | } |
| 2724 | |
| 2725 | ZExtInst::ZExtInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2726 | Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2727 | ) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2728 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2729 | } |
| 2730 | SExtInst::SExtInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2731 | Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2732 | ) : CastInst(Ty, SExt, S, Name, InsertBefore) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2733 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2734 | } |
| 2735 | |
Jeff Cohen | 97af751 | 2006-12-02 02:22:01 +0000 | [diff] [blame] | 2736 | SExtInst::SExtInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2737 | Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2738 | ) : CastInst(Ty, SExt, S, Name, InsertAtEnd) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2739 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2740 | } |
| 2741 | |
| 2742 | FPTruncInst::FPTruncInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2743 | Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2744 | ) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2745 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2746 | } |
| 2747 | |
| 2748 | FPTruncInst::FPTruncInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2749 | Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2750 | ) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2751 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2752 | } |
| 2753 | |
| 2754 | FPExtInst::FPExtInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2755 | Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2756 | ) : CastInst(Ty, FPExt, S, Name, InsertBefore) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2757 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2758 | } |
| 2759 | |
| 2760 | FPExtInst::FPExtInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2761 | Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2762 | ) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2763 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2764 | } |
| 2765 | |
| 2766 | UIToFPInst::UIToFPInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2767 | Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2768 | ) : CastInst(Ty, UIToFP, S, Name, InsertBefore) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2769 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2770 | } |
| 2771 | |
| 2772 | UIToFPInst::UIToFPInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2773 | Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2774 | ) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2775 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2776 | } |
| 2777 | |
| 2778 | SIToFPInst::SIToFPInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2779 | Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2780 | ) : CastInst(Ty, SIToFP, S, Name, InsertBefore) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2781 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2782 | } |
| 2783 | |
| 2784 | SIToFPInst::SIToFPInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2785 | Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2786 | ) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2787 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2788 | } |
| 2789 | |
| 2790 | FPToUIInst::FPToUIInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2791 | Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2792 | ) : CastInst(Ty, FPToUI, S, Name, InsertBefore) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2793 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2794 | } |
| 2795 | |
| 2796 | FPToUIInst::FPToUIInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2797 | Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2798 | ) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2799 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2800 | } |
| 2801 | |
| 2802 | FPToSIInst::FPToSIInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2803 | Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2804 | ) : CastInst(Ty, FPToSI, S, Name, InsertBefore) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2805 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2806 | } |
| 2807 | |
| 2808 | FPToSIInst::FPToSIInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2809 | Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2810 | ) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2811 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2812 | } |
| 2813 | |
| 2814 | PtrToIntInst::PtrToIntInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2815 | Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2816 | ) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2817 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2818 | } |
| 2819 | |
| 2820 | PtrToIntInst::PtrToIntInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2821 | Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2822 | ) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2823 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2824 | } |
| 2825 | |
| 2826 | IntToPtrInst::IntToPtrInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2827 | Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2828 | ) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2829 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2830 | } |
| 2831 | |
| 2832 | IntToPtrInst::IntToPtrInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2833 | Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2834 | ) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2835 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2836 | } |
| 2837 | |
| 2838 | BitCastInst::BitCastInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2839 | Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2840 | ) : CastInst(Ty, BitCast, S, Name, InsertBefore) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2841 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2842 | } |
| 2843 | |
| 2844 | BitCastInst::BitCastInst( |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2845 | Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2846 | ) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) { |
Reid Spencer | 0a11af1 | 2007-01-17 02:46:11 +0000 | [diff] [blame] | 2847 | assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast"); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 2848 | } |
Chris Lattner | 2f46386 | 2006-09-17 19:29:56 +0000 | [diff] [blame] | 2849 | |
| 2850 | //===----------------------------------------------------------------------===// |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 2851 | // CmpInst Classes |
| 2852 | //===----------------------------------------------------------------------===// |
| 2853 | |
Craig Topper | a96a182 | 2012-09-23 02:12:10 +0000 | [diff] [blame] | 2854 | void CmpInst::anchor() {} |
Chris Lattner | 36fe198 | 2010-01-22 06:25:37 +0000 | [diff] [blame] | 2855 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2856 | CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2857 | Value *LHS, Value *RHS, const Twine &Name, |
Nate Begeman | ac80ade | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 2858 | Instruction *InsertBefore) |
Nate Begeman | c83ad0d | 2008-05-12 20:11:05 +0000 | [diff] [blame] | 2859 | : Instruction(ty, op, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2860 | OperandTraits<CmpInst>::op_begin(this), |
| 2861 | OperandTraits<CmpInst>::operands(this), |
| 2862 | InsertBefore) { |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 2863 | Op<0>() = LHS; |
| 2864 | Op<1>() = RHS; |
Chris Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 2865 | setPredicate((Predicate)predicate); |
Reid Spencer | 97c0e21 | 2007-04-11 13:04:48 +0000 | [diff] [blame] | 2866 | setName(Name); |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 2867 | } |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2868 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2869 | CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2870 | Value *LHS, Value *RHS, const Twine &Name, |
Nate Begeman | ac80ade | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 2871 | BasicBlock *InsertAtEnd) |
Nate Begeman | c83ad0d | 2008-05-12 20:11:05 +0000 | [diff] [blame] | 2872 | : Instruction(ty, op, |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 2873 | OperandTraits<CmpInst>::op_begin(this), |
| 2874 | OperandTraits<CmpInst>::operands(this), |
| 2875 | InsertAtEnd) { |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 2876 | Op<0>() = LHS; |
| 2877 | Op<1>() = RHS; |
Chris Lattner | cafe9bb | 2009-12-29 02:14:09 +0000 | [diff] [blame] | 2878 | setPredicate((Predicate)predicate); |
Reid Spencer | 97c0e21 | 2007-04-11 13:04:48 +0000 | [diff] [blame] | 2879 | setName(Name); |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 2880 | } |
| 2881 | |
| 2882 | CmpInst * |
Dan Gohman | 1c8a23c | 2009-08-25 23:17:54 +0000 | [diff] [blame] | 2883 | CmpInst::Create(OtherOps Op, unsigned short predicate, |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 2884 | Value *S1, Value *S2, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2885 | const Twine &Name, Instruction *InsertBefore) { |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 2886 | if (Op == Instruction::ICmp) { |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 2887 | if (InsertBefore) |
| 2888 | return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate), |
| 2889 | S1, S2, Name); |
| 2890 | else |
Dan Gohman | 1c8a23c | 2009-08-25 23:17:54 +0000 | [diff] [blame] | 2891 | return new ICmpInst(CmpInst::Predicate(predicate), |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 2892 | S1, S2, Name); |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 2893 | } |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 2894 | |
| 2895 | if (InsertBefore) |
| 2896 | return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate), |
| 2897 | S1, S2, Name); |
| 2898 | else |
Dan Gohman | 1c8a23c | 2009-08-25 23:17:54 +0000 | [diff] [blame] | 2899 | return new FCmpInst(CmpInst::Predicate(predicate), |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 2900 | S1, S2, Name); |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 2901 | } |
| 2902 | |
| 2903 | CmpInst * |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 2904 | CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2, |
Daniel Dunbar | 6e0d1cb | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 2905 | const Twine &Name, BasicBlock *InsertAtEnd) { |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 2906 | if (Op == Instruction::ICmp) { |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 2907 | return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate), |
| 2908 | S1, S2, Name); |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 2909 | } |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 2910 | return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate), |
| 2911 | S1, S2, Name); |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 2912 | } |
| 2913 | |
| 2914 | void CmpInst::swapOperands() { |
| 2915 | if (ICmpInst *IC = dyn_cast<ICmpInst>(this)) |
| 2916 | IC->swapOperands(); |
| 2917 | else |
| 2918 | cast<FCmpInst>(this)->swapOperands(); |
| 2919 | } |
| 2920 | |
Duncan Sands | c449a22 | 2011-01-04 12:52:29 +0000 | [diff] [blame] | 2921 | bool CmpInst::isCommutative() const { |
| 2922 | if (const ICmpInst *IC = dyn_cast<ICmpInst>(this)) |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 2923 | return IC->isCommutative(); |
| 2924 | return cast<FCmpInst>(this)->isCommutative(); |
| 2925 | } |
| 2926 | |
Duncan Sands | c449a22 | 2011-01-04 12:52:29 +0000 | [diff] [blame] | 2927 | bool CmpInst::isEquality() const { |
| 2928 | if (const ICmpInst *IC = dyn_cast<ICmpInst>(this)) |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 2929 | return IC->isEquality(); |
| 2930 | return cast<FCmpInst>(this)->isEquality(); |
| 2931 | } |
| 2932 | |
| 2933 | |
Dan Gohman | 7e2dd66 | 2008-05-31 02:47:54 +0000 | [diff] [blame] | 2934 | CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) { |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 2935 | switch (pred) { |
Craig Topper | 50bee42 | 2012-02-05 22:14:15 +0000 | [diff] [blame] | 2936 | default: llvm_unreachable("Unknown cmp predicate!"); |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 2937 | case ICMP_EQ: return ICMP_NE; |
| 2938 | case ICMP_NE: return ICMP_EQ; |
| 2939 | case ICMP_UGT: return ICMP_ULE; |
| 2940 | case ICMP_ULT: return ICMP_UGE; |
| 2941 | case ICMP_UGE: return ICMP_ULT; |
| 2942 | case ICMP_ULE: return ICMP_UGT; |
| 2943 | case ICMP_SGT: return ICMP_SLE; |
| 2944 | case ICMP_SLT: return ICMP_SGE; |
| 2945 | case ICMP_SGE: return ICMP_SLT; |
| 2946 | case ICMP_SLE: return ICMP_SGT; |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 2947 | |
Dan Gohman | 7e2dd66 | 2008-05-31 02:47:54 +0000 | [diff] [blame] | 2948 | case FCMP_OEQ: return FCMP_UNE; |
| 2949 | case FCMP_ONE: return FCMP_UEQ; |
| 2950 | case FCMP_OGT: return FCMP_ULE; |
| 2951 | case FCMP_OLT: return FCMP_UGE; |
| 2952 | case FCMP_OGE: return FCMP_ULT; |
| 2953 | case FCMP_OLE: return FCMP_UGT; |
| 2954 | case FCMP_UEQ: return FCMP_ONE; |
| 2955 | case FCMP_UNE: return FCMP_OEQ; |
| 2956 | case FCMP_UGT: return FCMP_OLE; |
| 2957 | case FCMP_ULT: return FCMP_OGE; |
| 2958 | case FCMP_UGE: return FCMP_OLT; |
| 2959 | case FCMP_ULE: return FCMP_OGT; |
| 2960 | case FCMP_ORD: return FCMP_UNO; |
| 2961 | case FCMP_UNO: return FCMP_ORD; |
| 2962 | case FCMP_TRUE: return FCMP_FALSE; |
| 2963 | case FCMP_FALSE: return FCMP_TRUE; |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 2964 | } |
| 2965 | } |
| 2966 | |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 2967 | ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) { |
| 2968 | switch (pred) { |
Craig Topper | 50bee42 | 2012-02-05 22:14:15 +0000 | [diff] [blame] | 2969 | default: llvm_unreachable("Unknown icmp predicate!"); |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 2970 | case ICMP_EQ: case ICMP_NE: |
| 2971 | case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE: |
| 2972 | return pred; |
| 2973 | case ICMP_UGT: return ICMP_SGT; |
| 2974 | case ICMP_ULT: return ICMP_SLT; |
| 2975 | case ICMP_UGE: return ICMP_SGE; |
| 2976 | case ICMP_ULE: return ICMP_SLE; |
| 2977 | } |
| 2978 | } |
| 2979 | |
Nick Lewycky | 4189a53 | 2008-01-28 03:48:02 +0000 | [diff] [blame] | 2980 | ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) { |
| 2981 | switch (pred) { |
Craig Topper | 50bee42 | 2012-02-05 22:14:15 +0000 | [diff] [blame] | 2982 | default: llvm_unreachable("Unknown icmp predicate!"); |
Nick Lewycky | 4189a53 | 2008-01-28 03:48:02 +0000 | [diff] [blame] | 2983 | case ICMP_EQ: case ICMP_NE: |
| 2984 | case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE: |
| 2985 | return pred; |
| 2986 | case ICMP_SGT: return ICMP_UGT; |
| 2987 | case ICMP_SLT: return ICMP_ULT; |
| 2988 | case ICMP_SGE: return ICMP_UGE; |
| 2989 | case ICMP_SLE: return ICMP_ULE; |
| 2990 | } |
| 2991 | } |
| 2992 | |
Reid Spencer | 3da4384 | 2007-02-28 22:00:54 +0000 | [diff] [blame] | 2993 | /// Initialize a set of values that all satisfy the condition with C. |
| 2994 | /// |
| 2995 | ConstantRange |
| 2996 | ICmpInst::makeConstantRange(Predicate pred, const APInt &C) { |
| 2997 | APInt Lower(C); |
| 2998 | APInt Upper(C); |
| 2999 | uint32_t BitWidth = C.getBitWidth(); |
| 3000 | switch (pred) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 3001 | default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!"); |
Reid Spencer | 3da4384 | 2007-02-28 22:00:54 +0000 | [diff] [blame] | 3002 | case ICmpInst::ICMP_EQ: Upper++; break; |
| 3003 | case ICmpInst::ICMP_NE: Lower++; break; |
Dan Gohman | f21107c | 2010-01-26 16:04:20 +0000 | [diff] [blame] | 3004 | case ICmpInst::ICMP_ULT: |
| 3005 | Lower = APInt::getMinValue(BitWidth); |
| 3006 | // Check for an empty-set condition. |
| 3007 | if (Lower == Upper) |
| 3008 | return ConstantRange(BitWidth, /*isFullSet=*/false); |
| 3009 | break; |
| 3010 | case ICmpInst::ICMP_SLT: |
| 3011 | Lower = APInt::getSignedMinValue(BitWidth); |
| 3012 | // Check for an empty-set condition. |
| 3013 | if (Lower == Upper) |
| 3014 | return ConstantRange(BitWidth, /*isFullSet=*/false); |
| 3015 | break; |
Reid Spencer | 3da4384 | 2007-02-28 22:00:54 +0000 | [diff] [blame] | 3016 | case ICmpInst::ICMP_UGT: |
| 3017 | Lower++; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max) |
Dan Gohman | f21107c | 2010-01-26 16:04:20 +0000 | [diff] [blame] | 3018 | // Check for an empty-set condition. |
| 3019 | if (Lower == Upper) |
| 3020 | return ConstantRange(BitWidth, /*isFullSet=*/false); |
Reid Spencer | 3da4384 | 2007-02-28 22:00:54 +0000 | [diff] [blame] | 3021 | break; |
| 3022 | case ICmpInst::ICMP_SGT: |
| 3023 | Lower++; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max) |
Dan Gohman | f21107c | 2010-01-26 16:04:20 +0000 | [diff] [blame] | 3024 | // Check for an empty-set condition. |
| 3025 | if (Lower == Upper) |
| 3026 | return ConstantRange(BitWidth, /*isFullSet=*/false); |
Reid Spencer | 3da4384 | 2007-02-28 22:00:54 +0000 | [diff] [blame] | 3027 | break; |
| 3028 | case ICmpInst::ICMP_ULE: |
| 3029 | Lower = APInt::getMinValue(BitWidth); Upper++; |
Dan Gohman | f21107c | 2010-01-26 16:04:20 +0000 | [diff] [blame] | 3030 | // Check for a full-set condition. |
| 3031 | if (Lower == Upper) |
| 3032 | return ConstantRange(BitWidth, /*isFullSet=*/true); |
Reid Spencer | 3da4384 | 2007-02-28 22:00:54 +0000 | [diff] [blame] | 3033 | break; |
| 3034 | case ICmpInst::ICMP_SLE: |
| 3035 | Lower = APInt::getSignedMinValue(BitWidth); Upper++; |
Dan Gohman | f21107c | 2010-01-26 16:04:20 +0000 | [diff] [blame] | 3036 | // Check for a full-set condition. |
| 3037 | if (Lower == Upper) |
| 3038 | return ConstantRange(BitWidth, /*isFullSet=*/true); |
Reid Spencer | 3da4384 | 2007-02-28 22:00:54 +0000 | [diff] [blame] | 3039 | break; |
| 3040 | case ICmpInst::ICMP_UGE: |
| 3041 | Upper = APInt::getMinValue(BitWidth); // Min = Next(Max) |
Dan Gohman | f21107c | 2010-01-26 16:04:20 +0000 | [diff] [blame] | 3042 | // Check for a full-set condition. |
| 3043 | if (Lower == Upper) |
| 3044 | return ConstantRange(BitWidth, /*isFullSet=*/true); |
Reid Spencer | 3da4384 | 2007-02-28 22:00:54 +0000 | [diff] [blame] | 3045 | break; |
| 3046 | case ICmpInst::ICMP_SGE: |
| 3047 | Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max) |
Dan Gohman | f21107c | 2010-01-26 16:04:20 +0000 | [diff] [blame] | 3048 | // Check for a full-set condition. |
| 3049 | if (Lower == Upper) |
| 3050 | return ConstantRange(BitWidth, /*isFullSet=*/true); |
Reid Spencer | 3da4384 | 2007-02-28 22:00:54 +0000 | [diff] [blame] | 3051 | break; |
| 3052 | } |
| 3053 | return ConstantRange(Lower, Upper); |
| 3054 | } |
| 3055 | |
Dan Gohman | 7e2dd66 | 2008-05-31 02:47:54 +0000 | [diff] [blame] | 3056 | CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) { |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 3057 | switch (pred) { |
Craig Topper | 50bee42 | 2012-02-05 22:14:15 +0000 | [diff] [blame] | 3058 | default: llvm_unreachable("Unknown cmp predicate!"); |
Dan Gohman | 7e2dd66 | 2008-05-31 02:47:54 +0000 | [diff] [blame] | 3059 | case ICMP_EQ: case ICMP_NE: |
| 3060 | return pred; |
| 3061 | case ICMP_SGT: return ICMP_SLT; |
| 3062 | case ICMP_SLT: return ICMP_SGT; |
| 3063 | case ICMP_SGE: return ICMP_SLE; |
| 3064 | case ICMP_SLE: return ICMP_SGE; |
| 3065 | case ICMP_UGT: return ICMP_ULT; |
| 3066 | case ICMP_ULT: return ICMP_UGT; |
| 3067 | case ICMP_UGE: return ICMP_ULE; |
| 3068 | case ICMP_ULE: return ICMP_UGE; |
| 3069 | |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 3070 | case FCMP_FALSE: case FCMP_TRUE: |
| 3071 | case FCMP_OEQ: case FCMP_ONE: |
| 3072 | case FCMP_UEQ: case FCMP_UNE: |
| 3073 | case FCMP_ORD: case FCMP_UNO: |
| 3074 | return pred; |
| 3075 | case FCMP_OGT: return FCMP_OLT; |
| 3076 | case FCMP_OLT: return FCMP_OGT; |
| 3077 | case FCMP_OGE: return FCMP_OLE; |
| 3078 | case FCMP_OLE: return FCMP_OGE; |
| 3079 | case FCMP_UGT: return FCMP_ULT; |
| 3080 | case FCMP_ULT: return FCMP_UGT; |
| 3081 | case FCMP_UGE: return FCMP_ULE; |
| 3082 | case FCMP_ULE: return FCMP_UGE; |
| 3083 | } |
| 3084 | } |
| 3085 | |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 3086 | bool CmpInst::isUnsigned(unsigned short predicate) { |
| 3087 | switch (predicate) { |
| 3088 | default: return false; |
| 3089 | case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT: |
| 3090 | case ICmpInst::ICMP_UGE: return true; |
| 3091 | } |
| 3092 | } |
| 3093 | |
Nick Lewycky | 44df023 | 2009-10-25 03:50:03 +0000 | [diff] [blame] | 3094 | bool CmpInst::isSigned(unsigned short predicate) { |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 3095 | switch (predicate) { |
| 3096 | default: return false; |
| 3097 | case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT: |
| 3098 | case ICmpInst::ICMP_SGE: return true; |
| 3099 | } |
| 3100 | } |
| 3101 | |
| 3102 | bool CmpInst::isOrdered(unsigned short predicate) { |
| 3103 | switch (predicate) { |
| 3104 | default: return false; |
| 3105 | case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT: |
| 3106 | case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE: |
| 3107 | case FCmpInst::FCMP_ORD: return true; |
| 3108 | } |
| 3109 | } |
| 3110 | |
| 3111 | bool CmpInst::isUnordered(unsigned short predicate) { |
| 3112 | switch (predicate) { |
| 3113 | default: return false; |
| 3114 | case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT: |
| 3115 | case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE: |
| 3116 | case FCmpInst::FCMP_UNO: return true; |
| 3117 | } |
| 3118 | } |
| 3119 | |
Nick Lewycky | 44df023 | 2009-10-25 03:50:03 +0000 | [diff] [blame] | 3120 | bool CmpInst::isTrueWhenEqual(unsigned short predicate) { |
| 3121 | switch(predicate) { |
| 3122 | default: return false; |
| 3123 | case ICMP_EQ: case ICMP_UGE: case ICMP_ULE: case ICMP_SGE: case ICMP_SLE: |
| 3124 | case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true; |
| 3125 | } |
| 3126 | } |
| 3127 | |
| 3128 | bool CmpInst::isFalseWhenEqual(unsigned short predicate) { |
| 3129 | switch(predicate) { |
| 3130 | case ICMP_NE: case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT: |
| 3131 | case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true; |
| 3132 | default: return false; |
| 3133 | } |
| 3134 | } |
| 3135 | |
| 3136 | |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 3137 | //===----------------------------------------------------------------------===// |
| 3138 | // SwitchInst Implementation |
| 3139 | //===----------------------------------------------------------------------===// |
| 3140 | |
Chris Lattner | aa6e350 | 2010-11-17 05:41:46 +0000 | [diff] [blame] | 3141 | void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumReserved) { |
| 3142 | assert(Value && Default && NumReserved); |
| 3143 | ReservedSpace = NumReserved; |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3144 | NumOperands = 2; |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 3145 | OperandList = allocHungoffUses(ReservedSpace); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3146 | |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 3147 | OperandList[0] = Value; |
| 3148 | OperandList[1] = Default; |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 3149 | } |
| 3150 | |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 3151 | /// SwitchInst ctor - Create a new switch instruction, specifying a value to |
| 3152 | /// switch on and a default destination. The number of additional cases can |
| 3153 | /// be specified here to make memory allocation more efficient. This |
| 3154 | /// constructor can also autoinsert before another instruction. |
| 3155 | SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases, |
| 3156 | Instruction *InsertBefore) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 3157 | : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch, |
| 3158 | 0, 0, InsertBefore) { |
Chris Lattner | aa6e350 | 2010-11-17 05:41:46 +0000 | [diff] [blame] | 3159 | init(Value, Default, 2+NumCases*2); |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 3160 | } |
| 3161 | |
| 3162 | /// SwitchInst ctor - Create a new switch instruction, specifying a value to |
| 3163 | /// switch on and a default destination. The number of additional cases can |
| 3164 | /// be specified here to make memory allocation more efficient. This |
| 3165 | /// constructor also autoinserts at the end of the specified BasicBlock. |
| 3166 | SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases, |
| 3167 | BasicBlock *InsertAtEnd) |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 3168 | : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch, |
| 3169 | 0, 0, InsertAtEnd) { |
Chris Lattner | aa6e350 | 2010-11-17 05:41:46 +0000 | [diff] [blame] | 3170 | init(Value, Default, 2+NumCases*2); |
Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 3171 | } |
| 3172 | |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 3173 | SwitchInst::SwitchInst(const SwitchInst &SI) |
Chris Lattner | aa6e350 | 2010-11-17 05:41:46 +0000 | [diff] [blame] | 3174 | : TerminatorInst(SI.getType(), Instruction::Switch, 0, 0) { |
| 3175 | init(SI.getCondition(), SI.getDefaultDest(), SI.getNumOperands()); |
| 3176 | NumOperands = SI.getNumOperands(); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3177 | Use *OL = OperandList, *InOL = SI.OperandList; |
Chris Lattner | aa6e350 | 2010-11-17 05:41:46 +0000 | [diff] [blame] | 3178 | for (unsigned i = 2, E = SI.getNumOperands(); i != E; i += 2) { |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 3179 | OL[i] = InOL[i]; |
| 3180 | OL[i+1] = InOL[i+1]; |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 3181 | } |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 3182 | TheSubsets = SI.TheSubsets; |
Dan Gohman | 58cfa3b | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 3183 | SubclassOptionalData = SI.SubclassOptionalData; |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 3184 | } |
| 3185 | |
Gordon Henriksen | afba8fe | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 3186 | SwitchInst::~SwitchInst() { |
Jay Foad | 1ed26ac | 2011-01-16 15:30:52 +0000 | [diff] [blame] | 3187 | dropHungoffUses(); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3188 | } |
| 3189 | |
| 3190 | |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 3191 | /// addCase - Add an entry to the switch instruction... |
| 3192 | /// |
Chris Lattner | d1a3260 | 2005-02-24 05:32:09 +0000 | [diff] [blame] | 3193 | void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) { |
Stepan Dyatkovskiy | 0aa32d5 | 2012-05-29 12:26:47 +0000 | [diff] [blame] | 3194 | IntegersSubsetToBB Mapping; |
Stepan Dyatkovskiy | 484fc93 | 2012-05-28 12:39:09 +0000 | [diff] [blame] | 3195 | |
| 3196 | // FIXME: Currently we work with ConstantInt based cases. |
| 3197 | // So inititalize IntItem container directly from ConstantInt. |
Stepan Dyatkovskiy | 0aa32d5 | 2012-05-29 12:26:47 +0000 | [diff] [blame] | 3198 | Mapping.add(IntItem::fromConstantInt(OnVal)); |
| 3199 | IntegersSubset CaseRanges = Mapping.getCase(); |
| 3200 | addCase(CaseRanges, Dest); |
Stepan Dyatkovskiy | 1cce5bf | 2012-05-12 10:48:17 +0000 | [diff] [blame] | 3201 | } |
| 3202 | |
Stepan Dyatkovskiy | 0aa32d5 | 2012-05-29 12:26:47 +0000 | [diff] [blame] | 3203 | void SwitchInst::addCase(IntegersSubset& OnVal, BasicBlock *Dest) { |
Stepan Dyatkovskiy | 2447312 | 2012-02-01 07:49:51 +0000 | [diff] [blame] | 3204 | unsigned NewCaseIdx = getNumCases(); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3205 | unsigned OpNo = NumOperands; |
| 3206 | if (OpNo+2 > ReservedSpace) |
Jay Foad | 8891ed7 | 2011-04-01 08:00:58 +0000 | [diff] [blame] | 3207 | growOperands(); // Get more space! |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3208 | // Initialize some new operands. |
Chris Lattner | 1f377fc | 2005-01-29 01:05:12 +0000 | [diff] [blame] | 3209 | assert(OpNo+1 < ReservedSpace && "Growing didn't work!"); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3210 | NumOperands = OpNo+2; |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 3211 | |
| 3212 | SubsetsIt TheSubsetsIt = TheSubsets.insert(TheSubsets.end(), OnVal); |
| 3213 | |
| 3214 | CaseIt Case(this, NewCaseIdx, TheSubsetsIt); |
| 3215 | Case.updateCaseValueOperand(OnVal); |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 3216 | Case.setSuccessor(Dest); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 3217 | } |
| 3218 | |
Stepan Dyatkovskiy | 2447312 | 2012-02-01 07:49:51 +0000 | [diff] [blame] | 3219 | /// removeCase - This method removes the specified case and its successor |
| 3220 | /// from the switch instruction. |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 3221 | void SwitchInst::removeCase(CaseIt& i) { |
Stepan Dyatkovskiy | c10fa6c | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 3222 | unsigned idx = i.getCaseIndex(); |
| 3223 | |
Stepan Dyatkovskiy | 2447312 | 2012-02-01 07:49:51 +0000 | [diff] [blame] | 3224 | assert(2 + idx*2 < getNumOperands() && "Case index out of range!!!"); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3225 | |
| 3226 | unsigned NumOps = getNumOperands(); |
| 3227 | Use *OL = OperandList; |
| 3228 | |
Jay Foad | 0faa609 | 2011-02-01 09:22:34 +0000 | [diff] [blame] | 3229 | // Overwrite this case with the end of the list. |
Stepan Dyatkovskiy | 2447312 | 2012-02-01 07:49:51 +0000 | [diff] [blame] | 3230 | if (2 + (idx + 1) * 2 != NumOps) { |
| 3231 | OL[2 + idx * 2] = OL[NumOps - 2]; |
| 3232 | OL[2 + idx * 2 + 1] = OL[NumOps - 1]; |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3233 | } |
| 3234 | |
| 3235 | // Nuke the last value. |
| 3236 | OL[NumOps-2].set(0); |
| 3237 | OL[NumOps-2+1].set(0); |
Stepan Dyatkovskiy | 43c3a4a | 2012-06-22 14:53:30 +0000 | [diff] [blame] | 3238 | |
| 3239 | // Do the same with TheCases collection: |
| 3240 | if (i.SubsetIt != --TheSubsets.end()) { |
| 3241 | *i.SubsetIt = TheSubsets.back(); |
| 3242 | TheSubsets.pop_back(); |
| 3243 | } else { |
| 3244 | TheSubsets.pop_back(); |
| 3245 | i.SubsetIt = TheSubsets.end(); |
| 3246 | } |
| 3247 | |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3248 | NumOperands = NumOps-2; |
| 3249 | } |
| 3250 | |
Jay Foad | 8891ed7 | 2011-04-01 08:00:58 +0000 | [diff] [blame] | 3251 | /// growOperands - grow operands - This grows the operand list in response |
| 3252 | /// to a push_back style of operation. This grows the number of ops by 3 times. |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3253 | /// |
Jay Foad | 8891ed7 | 2011-04-01 08:00:58 +0000 | [diff] [blame] | 3254 | void SwitchInst::growOperands() { |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 3255 | unsigned e = getNumOperands(); |
Jay Foad | 8891ed7 | 2011-04-01 08:00:58 +0000 | [diff] [blame] | 3256 | unsigned NumOps = e*3; |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3257 | |
| 3258 | ReservedSpace = NumOps; |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 3259 | Use *NewOps = allocHungoffUses(NumOps); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3260 | Use *OldOps = OperandList; |
Gabor Greif | efe6536 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 3261 | for (unsigned i = 0; i != e; ++i) { |
Gabor Greif | 6c80c38 | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 3262 | NewOps[i] = OldOps[i]; |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3263 | } |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3264 | OperandList = NewOps; |
Jay Foad | 1ed26ac | 2011-01-16 15:30:52 +0000 | [diff] [blame] | 3265 | Use::zap(OldOps, OldOps + e, true); |
Chris Lattner | b12261a | 2005-01-29 00:35:16 +0000 | [diff] [blame] | 3266 | } |
| 3267 | |
| 3268 | |
| 3269 | BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const { |
| 3270 | return getSuccessor(idx); |
| 3271 | } |
| 3272 | unsigned SwitchInst::getNumSuccessorsV() const { |
| 3273 | return getNumSuccessors(); |
| 3274 | } |
| 3275 | void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) { |
| 3276 | setSuccessor(idx, B); |
Alkis Evlogimenos | 91366a8 | 2004-07-29 12:33:25 +0000 | [diff] [blame] | 3277 | } |
Chris Lattner | 795948a | 2004-10-15 23:52:53 +0000 | [diff] [blame] | 3278 | |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3279 | //===----------------------------------------------------------------------===// |
Jay Foad | 1ed26ac | 2011-01-16 15:30:52 +0000 | [diff] [blame] | 3280 | // IndirectBrInst Implementation |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3281 | //===----------------------------------------------------------------------===// |
| 3282 | |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 3283 | void IndirectBrInst::init(Value *Address, unsigned NumDests) { |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 3284 | assert(Address && Address->getType()->isPointerTy() && |
Chris Lattner | a4c206f | 2009-10-29 05:53:32 +0000 | [diff] [blame] | 3285 | "Address of indirectbr must be a pointer"); |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3286 | ReservedSpace = 1+NumDests; |
| 3287 | NumOperands = 1; |
| 3288 | OperandList = allocHungoffUses(ReservedSpace); |
| 3289 | |
| 3290 | OperandList[0] = Address; |
| 3291 | } |
| 3292 | |
| 3293 | |
Jay Foad | 8891ed7 | 2011-04-01 08:00:58 +0000 | [diff] [blame] | 3294 | /// growOperands - grow operands - This grows the operand list in response |
| 3295 | /// to a push_back style of operation. This grows the number of ops by 2 times. |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3296 | /// |
Jay Foad | 8891ed7 | 2011-04-01 08:00:58 +0000 | [diff] [blame] | 3297 | void IndirectBrInst::growOperands() { |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3298 | unsigned e = getNumOperands(); |
Jay Foad | 8891ed7 | 2011-04-01 08:00:58 +0000 | [diff] [blame] | 3299 | unsigned NumOps = e*2; |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3300 | |
| 3301 | ReservedSpace = NumOps; |
| 3302 | Use *NewOps = allocHungoffUses(NumOps); |
| 3303 | Use *OldOps = OperandList; |
| 3304 | for (unsigned i = 0; i != e; ++i) |
| 3305 | NewOps[i] = OldOps[i]; |
| 3306 | OperandList = NewOps; |
Jay Foad | 1ed26ac | 2011-01-16 15:30:52 +0000 | [diff] [blame] | 3307 | Use::zap(OldOps, OldOps + e, true); |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3308 | } |
| 3309 | |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 3310 | IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases, |
| 3311 | Instruction *InsertBefore) |
| 3312 | : TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr, |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3313 | 0, 0, InsertBefore) { |
| 3314 | init(Address, NumCases); |
| 3315 | } |
| 3316 | |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 3317 | IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases, |
| 3318 | BasicBlock *InsertAtEnd) |
| 3319 | : TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr, |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3320 | 0, 0, InsertAtEnd) { |
| 3321 | init(Address, NumCases); |
| 3322 | } |
| 3323 | |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 3324 | IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI) |
| 3325 | : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr, |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3326 | allocHungoffUses(IBI.getNumOperands()), |
| 3327 | IBI.getNumOperands()) { |
| 3328 | Use *OL = OperandList, *InOL = IBI.OperandList; |
| 3329 | for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i) |
| 3330 | OL[i] = InOL[i]; |
| 3331 | SubclassOptionalData = IBI.SubclassOptionalData; |
| 3332 | } |
| 3333 | |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 3334 | IndirectBrInst::~IndirectBrInst() { |
Jay Foad | 1ed26ac | 2011-01-16 15:30:52 +0000 | [diff] [blame] | 3335 | dropHungoffUses(); |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3336 | } |
| 3337 | |
| 3338 | /// addDestination - Add a destination. |
| 3339 | /// |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 3340 | void IndirectBrInst::addDestination(BasicBlock *DestBB) { |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3341 | unsigned OpNo = NumOperands; |
| 3342 | if (OpNo+1 > ReservedSpace) |
Jay Foad | 8891ed7 | 2011-04-01 08:00:58 +0000 | [diff] [blame] | 3343 | growOperands(); // Get more space! |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3344 | // Initialize some new operands. |
| 3345 | assert(OpNo < ReservedSpace && "Growing didn't work!"); |
| 3346 | NumOperands = OpNo+1; |
| 3347 | OperandList[OpNo] = DestBB; |
| 3348 | } |
| 3349 | |
| 3350 | /// removeDestination - This method removes the specified successor from the |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 3351 | /// indirectbr instruction. |
| 3352 | void IndirectBrInst::removeDestination(unsigned idx) { |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3353 | assert(idx < getNumOperands()-1 && "Successor index out of range!"); |
| 3354 | |
| 3355 | unsigned NumOps = getNumOperands(); |
| 3356 | Use *OL = OperandList; |
| 3357 | |
| 3358 | // Replace this value with the last one. |
| 3359 | OL[idx+1] = OL[NumOps-1]; |
| 3360 | |
| 3361 | // Nuke the last value. |
| 3362 | OL[NumOps-1].set(0); |
| 3363 | NumOperands = NumOps-1; |
| 3364 | } |
| 3365 | |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 3366 | BasicBlock *IndirectBrInst::getSuccessorV(unsigned idx) const { |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3367 | return getSuccessor(idx); |
| 3368 | } |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 3369 | unsigned IndirectBrInst::getNumSuccessorsV() const { |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3370 | return getNumSuccessors(); |
| 3371 | } |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 3372 | void IndirectBrInst::setSuccessorV(unsigned idx, BasicBlock *B) { |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3373 | setSuccessor(idx, B); |
| 3374 | } |
| 3375 | |
| 3376 | //===----------------------------------------------------------------------===// |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3377 | // clone_impl() implementations |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3378 | //===----------------------------------------------------------------------===// |
| 3379 | |
Chris Lattner | 795948a | 2004-10-15 23:52:53 +0000 | [diff] [blame] | 3380 | // Define these methods here so vtables don't get emitted into every translation |
| 3381 | // unit that uses these classes. |
| 3382 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3383 | GetElementPtrInst *GetElementPtrInst::clone_impl() const { |
| 3384 | return new (getNumOperands()) GetElementPtrInst(*this); |
Chris Lattner | 795948a | 2004-10-15 23:52:53 +0000 | [diff] [blame] | 3385 | } |
| 3386 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3387 | BinaryOperator *BinaryOperator::clone_impl() const { |
| 3388 | return Create(getOpcode(), Op<0>(), Op<1>()); |
Chris Lattner | 795948a | 2004-10-15 23:52:53 +0000 | [diff] [blame] | 3389 | } |
| 3390 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3391 | FCmpInst* FCmpInst::clone_impl() const { |
| 3392 | return new FCmpInst(getPredicate(), Op<0>(), Op<1>()); |
Reid Spencer | 45fb3f3 | 2006-11-20 01:22:35 +0000 | [diff] [blame] | 3393 | } |
| 3394 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3395 | ICmpInst* ICmpInst::clone_impl() const { |
| 3396 | return new ICmpInst(getPredicate(), Op<0>(), Op<1>()); |
Dan Gohman | e456994 | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 3397 | } |
| 3398 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3399 | ExtractValueInst *ExtractValueInst::clone_impl() const { |
| 3400 | return new ExtractValueInst(*this); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3401 | } |
| 3402 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3403 | InsertValueInst *InsertValueInst::clone_impl() const { |
| 3404 | return new InsertValueInst(*this); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3405 | } |
| 3406 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3407 | AllocaInst *AllocaInst::clone_impl() const { |
| 3408 | return new AllocaInst(getAllocatedType(), |
| 3409 | (Value*)getOperand(0), |
| 3410 | getAlignment()); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3411 | } |
| 3412 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3413 | LoadInst *LoadInst::clone_impl() const { |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 3414 | return new LoadInst(getOperand(0), Twine(), isVolatile(), |
| 3415 | getAlignment(), getOrdering(), getSynchScope()); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3416 | } |
| 3417 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3418 | StoreInst *StoreInst::clone_impl() const { |
Eli Friedman | 1cc5e38 | 2011-08-10 17:39:11 +0000 | [diff] [blame] | 3419 | return new StoreInst(getOperand(0), getOperand(1), isVolatile(), |
Eli Friedman | 21006d4 | 2011-08-09 23:02:53 +0000 | [diff] [blame] | 3420 | getAlignment(), getOrdering(), getSynchScope()); |
| 3421 | |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3422 | } |
| 3423 | |
Eli Friedman | ff03048 | 2011-07-28 21:48:00 +0000 | [diff] [blame] | 3424 | AtomicCmpXchgInst *AtomicCmpXchgInst::clone_impl() const { |
| 3425 | AtomicCmpXchgInst *Result = |
| 3426 | new AtomicCmpXchgInst(getOperand(0), getOperand(1), getOperand(2), |
| 3427 | getOrdering(), getSynchScope()); |
| 3428 | Result->setVolatile(isVolatile()); |
| 3429 | return Result; |
| 3430 | } |
| 3431 | |
| 3432 | AtomicRMWInst *AtomicRMWInst::clone_impl() const { |
| 3433 | AtomicRMWInst *Result = |
| 3434 | new AtomicRMWInst(getOperation(),getOperand(0), getOperand(1), |
| 3435 | getOrdering(), getSynchScope()); |
| 3436 | Result->setVolatile(isVolatile()); |
| 3437 | return Result; |
| 3438 | } |
| 3439 | |
Eli Friedman | 47f3513 | 2011-07-25 23:16:38 +0000 | [diff] [blame] | 3440 | FenceInst *FenceInst::clone_impl() const { |
| 3441 | return new FenceInst(getContext(), getOrdering(), getSynchScope()); |
| 3442 | } |
| 3443 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3444 | TruncInst *TruncInst::clone_impl() const { |
| 3445 | return new TruncInst(getOperand(0), getType()); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3446 | } |
| 3447 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3448 | ZExtInst *ZExtInst::clone_impl() const { |
| 3449 | return new ZExtInst(getOperand(0), getType()); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3450 | } |
| 3451 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3452 | SExtInst *SExtInst::clone_impl() const { |
| 3453 | return new SExtInst(getOperand(0), getType()); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3454 | } |
| 3455 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3456 | FPTruncInst *FPTruncInst::clone_impl() const { |
| 3457 | return new FPTruncInst(getOperand(0), getType()); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3458 | } |
| 3459 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3460 | FPExtInst *FPExtInst::clone_impl() const { |
| 3461 | return new FPExtInst(getOperand(0), getType()); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3462 | } |
| 3463 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3464 | UIToFPInst *UIToFPInst::clone_impl() const { |
| 3465 | return new UIToFPInst(getOperand(0), getType()); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3466 | } |
| 3467 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3468 | SIToFPInst *SIToFPInst::clone_impl() const { |
| 3469 | return new SIToFPInst(getOperand(0), getType()); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3470 | } |
| 3471 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3472 | FPToUIInst *FPToUIInst::clone_impl() const { |
| 3473 | return new FPToUIInst(getOperand(0), getType()); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3474 | } |
| 3475 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3476 | FPToSIInst *FPToSIInst::clone_impl() const { |
| 3477 | return new FPToSIInst(getOperand(0), getType()); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3478 | } |
| 3479 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3480 | PtrToIntInst *PtrToIntInst::clone_impl() const { |
| 3481 | return new PtrToIntInst(getOperand(0), getType()); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3482 | } |
| 3483 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3484 | IntToPtrInst *IntToPtrInst::clone_impl() const { |
| 3485 | return new IntToPtrInst(getOperand(0), getType()); |
Gabor Greif | b1dbcd8 | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 3486 | } |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3487 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3488 | BitCastInst *BitCastInst::clone_impl() const { |
| 3489 | return new BitCastInst(getOperand(0), getType()); |
Gabor Greif | b1dbcd8 | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 3490 | } |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 3491 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3492 | CallInst *CallInst::clone_impl() const { |
| 3493 | return new(getNumOperands()) CallInst(*this); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3494 | } |
| 3495 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3496 | SelectInst *SelectInst::clone_impl() const { |
| 3497 | return SelectInst::Create(getOperand(0), getOperand(1), getOperand(2)); |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 3498 | } |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3499 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3500 | VAArgInst *VAArgInst::clone_impl() const { |
| 3501 | return new VAArgInst(getOperand(0), getType()); |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 3502 | } |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3503 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3504 | ExtractElementInst *ExtractElementInst::clone_impl() const { |
| 3505 | return ExtractElementInst::Create(getOperand(0), getOperand(1)); |
Chris Lattner | 00f1023 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 3506 | } |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3507 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3508 | InsertElementInst *InsertElementInst::clone_impl() const { |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 3509 | return InsertElementInst::Create(getOperand(0), getOperand(1), getOperand(2)); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3510 | } |
| 3511 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3512 | ShuffleVectorInst *ShuffleVectorInst::clone_impl() const { |
Chris Lattner | 83694a9 | 2012-01-25 23:49:49 +0000 | [diff] [blame] | 3513 | return new ShuffleVectorInst(getOperand(0), getOperand(1), getOperand(2)); |
Gabor Greif | b1dbcd8 | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 3514 | } |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3515 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3516 | PHINode *PHINode::clone_impl() const { |
| 3517 | return new PHINode(*this); |
| 3518 | } |
| 3519 | |
Bill Wendling | e6e8826 | 2011-08-12 20:24:12 +0000 | [diff] [blame] | 3520 | LandingPadInst *LandingPadInst::clone_impl() const { |
| 3521 | return new LandingPadInst(*this); |
| 3522 | } |
| 3523 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3524 | ReturnInst *ReturnInst::clone_impl() const { |
| 3525 | return new(getNumOperands()) ReturnInst(*this); |
| 3526 | } |
| 3527 | |
| 3528 | BranchInst *BranchInst::clone_impl() const { |
Jay Foad | 8e3914d | 2011-01-07 20:29:02 +0000 | [diff] [blame] | 3529 | return new(getNumOperands()) BranchInst(*this); |
Gabor Greif | b1dbcd8 | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 3530 | } |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3531 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3532 | SwitchInst *SwitchInst::clone_impl() const { |
| 3533 | return new SwitchInst(*this); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3534 | } |
| 3535 | |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 3536 | IndirectBrInst *IndirectBrInst::clone_impl() const { |
| 3537 | return new IndirectBrInst(*this); |
Chris Lattner | f9be95f | 2009-10-27 19:13:16 +0000 | [diff] [blame] | 3538 | } |
| 3539 | |
| 3540 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3541 | InvokeInst *InvokeInst::clone_impl() const { |
| 3542 | return new(getNumOperands()) InvokeInst(*this); |
Gabor Greif | b1dbcd8 | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 3543 | } |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3544 | |
Bill Wendling | dccc03b | 2011-07-31 06:30:59 +0000 | [diff] [blame] | 3545 | ResumeInst *ResumeInst::clone_impl() const { |
| 3546 | return new(1) ResumeInst(*this); |
| 3547 | } |
| 3548 | |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3549 | UnreachableInst *UnreachableInst::clone_impl() const { |
Nick Lewycky | 6776064 | 2009-09-27 07:38:41 +0000 | [diff] [blame] | 3550 | LLVMContext &Context = getContext(); |
Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 3551 | return new UnreachableInst(Context); |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 3552 | } |