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