Chris Lattner | 2b383d2e | 2003-05-13 21:37:02 +0000 | [diff] [blame] | 1 | //===-- Constants.cpp - Implement Constant nodes --------------------------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +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 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | e17322b | 2011-02-07 20:03:14 +0000 | [diff] [blame] | 10 | // This file implements the Constant* classes. |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 14 | #include "llvm/IR/Constants.h" |
Chris Lattner | 33e93b8 | 2007-02-27 03:05:06 +0000 | [diff] [blame] | 15 | #include "ConstantFold.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 16 | #include "LLVMContextImpl.h" |
| 17 | #include "llvm/ADT/DenseMap.h" |
| 18 | #include "llvm/ADT/FoldingSet.h" |
| 19 | #include "llvm/ADT/STLExtras.h" |
| 20 | #include "llvm/ADT/SmallVector.h" |
| 21 | #include "llvm/ADT/StringExtras.h" |
| 22 | #include "llvm/ADT/StringMap.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 23 | #include "llvm/IR/DerivedTypes.h" |
Chandler Carruth | 03eb0de | 2014-03-04 10:40:04 +0000 | [diff] [blame] | 24 | #include "llvm/IR/GetElementPtrTypeIterator.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 25 | #include "llvm/IR/GlobalValue.h" |
| 26 | #include "llvm/IR/Instructions.h" |
| 27 | #include "llvm/IR/Module.h" |
| 28 | #include "llvm/IR/Operator.h" |
Chris Lattner | 3d27be1 | 2006-08-27 12:54:02 +0000 | [diff] [blame] | 29 | #include "llvm/Support/Compiler.h" |
Bill Wendling | 6a462f1 | 2006-11-17 08:03:48 +0000 | [diff] [blame] | 30 | #include "llvm/Support/Debug.h" |
Torok Edwin | ccb29cd | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 31 | #include "llvm/Support/ErrorHandling.h" |
Chris Lattner | 69edc98 | 2006-09-28 00:35:06 +0000 | [diff] [blame] | 32 | #include "llvm/Support/ManagedStatic.h" |
Bill Wendling | 6a462f1 | 2006-11-17 08:03:48 +0000 | [diff] [blame] | 33 | #include "llvm/Support/MathExtras.h" |
Chris Lattner | 78683a7 | 2009-08-23 04:02:03 +0000 | [diff] [blame] | 34 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 35 | #include <algorithm> |
Talin | 3a0a30d | 2011-02-28 23:53:27 +0000 | [diff] [blame] | 36 | #include <cstdarg> |
Chris Lattner | 189d19f | 2003-11-21 20:23:48 +0000 | [diff] [blame] | 37 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 38 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 39 | //===----------------------------------------------------------------------===// |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 40 | // Constant Class |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 41 | //===----------------------------------------------------------------------===// |
| 42 | |
David Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 43 | void Constant::anchor() { } |
| 44 | |
Chris Lattner | ac5fb56 | 2011-07-15 05:58:04 +0000 | [diff] [blame] | 45 | bool Constant::isNegativeZeroValue() const { |
| 46 | // Floating point values have an explicit -0.0 value. |
| 47 | if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this)) |
| 48 | return CFP->isZero() && CFP->isNegative(); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 49 | |
David Tweed | 5493fee | 2013-03-18 11:54:44 +0000 | [diff] [blame] | 50 | // Equivalent for a vector of -0.0's. |
| 51 | if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) |
| 52 | if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue())) |
| 53 | if (SplatCFP && SplatCFP->isZero() && SplatCFP->isNegative()) |
| 54 | return true; |
| 55 | |
David Tweed | 298e419 | 2013-03-19 10:16:40 +0000 | [diff] [blame] | 56 | // We've already handled true FP case; any other FP vectors can't represent -0.0. |
| 57 | if (getType()->isFPOrFPVectorTy()) |
| 58 | return false; |
David Tweed | 5493fee | 2013-03-18 11:54:44 +0000 | [diff] [blame] | 59 | |
Chris Lattner | ac5fb56 | 2011-07-15 05:58:04 +0000 | [diff] [blame] | 60 | // Otherwise, just use +0.0. |
| 61 | return isNullValue(); |
| 62 | } |
| 63 | |
Shuxin Yang | 9ca562e | 2013-01-09 00:53:25 +0000 | [diff] [blame] | 64 | // Return true iff this constant is positive zero (floating point), negative |
| 65 | // zero (floating point), or a null value. |
Shuxin Yang | f0537ab | 2013-01-09 00:13:41 +0000 | [diff] [blame] | 66 | bool Constant::isZeroValue() const { |
| 67 | // Floating point values have an explicit -0.0 value. |
| 68 | if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this)) |
| 69 | return CFP->isZero(); |
| 70 | |
| 71 | // Otherwise, just use +0.0. |
| 72 | return isNullValue(); |
| 73 | } |
| 74 | |
Chris Lattner | be6610c | 2011-07-15 06:14:08 +0000 | [diff] [blame] | 75 | bool Constant::isNullValue() const { |
| 76 | // 0 is null. |
| 77 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(this)) |
| 78 | return CI->isZero(); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 79 | |
Chris Lattner | be6610c | 2011-07-15 06:14:08 +0000 | [diff] [blame] | 80 | // +0.0 is null. |
| 81 | if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this)) |
| 82 | return CFP->isZero() && !CFP->isNegative(); |
| 83 | |
| 84 | // constant zero is zero for aggregates and cpnull is null for pointers. |
| 85 | return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this); |
| 86 | } |
| 87 | |
Nadav Rotem | 365af6f | 2011-08-24 20:18:38 +0000 | [diff] [blame] | 88 | bool Constant::isAllOnesValue() const { |
| 89 | // Check for -1 integers |
| 90 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(this)) |
| 91 | return CI->isMinusOne(); |
| 92 | |
| 93 | // Check for FP which are bitcasted from -1 integers |
| 94 | if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this)) |
| 95 | return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue(); |
| 96 | |
Benjamin Kramer | 42d098e | 2011-11-14 19:12:20 +0000 | [diff] [blame] | 97 | // Check for constant vectors which are splats of -1 values. |
Nadav Rotem | 365af6f | 2011-08-24 20:18:38 +0000 | [diff] [blame] | 98 | if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) |
Benjamin Kramer | 42d098e | 2011-11-14 19:12:20 +0000 | [diff] [blame] | 99 | if (Constant *Splat = CV->getSplatValue()) |
| 100 | return Splat->isAllOnesValue(); |
Nadav Rotem | 365af6f | 2011-08-24 20:18:38 +0000 | [diff] [blame] | 101 | |
Chris Lattner | f14a67f | 2012-01-26 02:31:22 +0000 | [diff] [blame] | 102 | // Check for constant vectors which are splats of -1 values. |
| 103 | if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) |
| 104 | if (Constant *Splat = CV->getSplatValue()) |
| 105 | return Splat->isAllOnesValue(); |
| 106 | |
Nadav Rotem | 365af6f | 2011-08-24 20:18:38 +0000 | [diff] [blame] | 107 | return false; |
| 108 | } |
Benjamin Kramer | 42d098e | 2011-11-14 19:12:20 +0000 | [diff] [blame] | 109 | |
David Majnemer | 1a0bbc8 | 2014-08-16 09:23:42 +0000 | [diff] [blame] | 110 | bool Constant::isOneValue() const { |
| 111 | // Check for 1 integers |
| 112 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(this)) |
| 113 | return CI->isOne(); |
| 114 | |
| 115 | // Check for FP which are bitcasted from 1 integers |
| 116 | if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this)) |
| 117 | return CFP->getValueAPF().bitcastToAPInt() == 1; |
| 118 | |
| 119 | // Check for constant vectors which are splats of 1 values. |
| 120 | if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) |
| 121 | if (Constant *Splat = CV->getSplatValue()) |
| 122 | return Splat->isOneValue(); |
| 123 | |
| 124 | // Check for constant vectors which are splats of 1 values. |
| 125 | if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) |
| 126 | if (Constant *Splat = CV->getSplatValue()) |
| 127 | return Splat->isOneValue(); |
| 128 | |
| 129 | return false; |
| 130 | } |
| 131 | |
David Majnemer | bdeef60 | 2014-07-02 06:07:09 +0000 | [diff] [blame] | 132 | bool Constant::isMinSignedValue() const { |
| 133 | // Check for INT_MIN integers |
| 134 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(this)) |
| 135 | return CI->isMinValue(/*isSigned=*/true); |
| 136 | |
| 137 | // Check for FP which are bitcasted from INT_MIN integers |
| 138 | if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this)) |
| 139 | return CFP->getValueAPF().bitcastToAPInt().isMinSignedValue(); |
| 140 | |
| 141 | // Check for constant vectors which are splats of INT_MIN values. |
| 142 | if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) |
| 143 | if (Constant *Splat = CV->getSplatValue()) |
| 144 | return Splat->isMinSignedValue(); |
| 145 | |
| 146 | // Check for constant vectors which are splats of INT_MIN values. |
| 147 | if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) |
| 148 | if (Constant *Splat = CV->getSplatValue()) |
| 149 | return Splat->isMinSignedValue(); |
| 150 | |
| 151 | return false; |
| 152 | } |
| 153 | |
David Majnemer | 0e6c986 | 2014-08-22 16:41:23 +0000 | [diff] [blame] | 154 | bool Constant::isNotMinSignedValue() const { |
| 155 | // Check for INT_MIN integers |
| 156 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(this)) |
| 157 | return !CI->isMinValue(/*isSigned=*/true); |
| 158 | |
| 159 | // Check for FP which are bitcasted from INT_MIN integers |
| 160 | if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this)) |
| 161 | return !CFP->getValueAPF().bitcastToAPInt().isMinSignedValue(); |
| 162 | |
| 163 | // Check for constant vectors which are splats of INT_MIN values. |
| 164 | if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) |
| 165 | if (Constant *Splat = CV->getSplatValue()) |
| 166 | return Splat->isNotMinSignedValue(); |
| 167 | |
| 168 | // Check for constant vectors which are splats of INT_MIN values. |
| 169 | if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) |
| 170 | if (Constant *Splat = CV->getSplatValue()) |
| 171 | return Splat->isNotMinSignedValue(); |
| 172 | |
| 173 | // It *may* contain INT_MIN, we can't tell. |
| 174 | return false; |
| 175 | } |
| 176 | |
Owen Anderson | 5a1acd9 | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 177 | // Constructor to create a '0' constant of arbitrary type... |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 178 | Constant *Constant::getNullValue(Type *Ty) { |
Owen Anderson | 5a1acd9 | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 179 | switch (Ty->getTypeID()) { |
| 180 | case Type::IntegerTyID: |
| 181 | return ConstantInt::get(Ty, 0); |
Dan Gohman | 518cda4 | 2011-12-17 00:04:22 +0000 | [diff] [blame] | 182 | case Type::HalfTyID: |
| 183 | return ConstantFP::get(Ty->getContext(), |
| 184 | APFloat::getZero(APFloat::IEEEhalf)); |
Owen Anderson | 5a1acd9 | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 185 | case Type::FloatTyID: |
Benjamin Kramer | 8ceebfa | 2010-12-04 14:22:24 +0000 | [diff] [blame] | 186 | return ConstantFP::get(Ty->getContext(), |
| 187 | APFloat::getZero(APFloat::IEEEsingle)); |
Owen Anderson | 5a1acd9 | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 188 | case Type::DoubleTyID: |
Benjamin Kramer | 8ceebfa | 2010-12-04 14:22:24 +0000 | [diff] [blame] | 189 | return ConstantFP::get(Ty->getContext(), |
| 190 | APFloat::getZero(APFloat::IEEEdouble)); |
Owen Anderson | 5a1acd9 | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 191 | case Type::X86_FP80TyID: |
Benjamin Kramer | 8ceebfa | 2010-12-04 14:22:24 +0000 | [diff] [blame] | 192 | return ConstantFP::get(Ty->getContext(), |
| 193 | APFloat::getZero(APFloat::x87DoubleExtended)); |
Owen Anderson | 5a1acd9 | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 194 | case Type::FP128TyID: |
| 195 | return ConstantFP::get(Ty->getContext(), |
Benjamin Kramer | 8ceebfa | 2010-12-04 14:22:24 +0000 | [diff] [blame] | 196 | APFloat::getZero(APFloat::IEEEquad)); |
Owen Anderson | 5a1acd9 | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 197 | case Type::PPC_FP128TyID: |
Benjamin Kramer | 8ceebfa | 2010-12-04 14:22:24 +0000 | [diff] [blame] | 198 | return ConstantFP::get(Ty->getContext(), |
Tim Northover | 29178a3 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 199 | APFloat(APFloat::PPCDoubleDouble, |
| 200 | APInt::getNullValue(128))); |
Owen Anderson | 5a1acd9 | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 201 | case Type::PointerTyID: |
| 202 | return ConstantPointerNull::get(cast<PointerType>(Ty)); |
| 203 | case Type::StructTyID: |
| 204 | case Type::ArrayTyID: |
| 205 | case Type::VectorTyID: |
| 206 | return ConstantAggregateZero::get(Ty); |
| 207 | default: |
| 208 | // Function, Label, or Opaque type? |
Craig Topper | c514b54 | 2012-02-05 22:14:15 +0000 | [diff] [blame] | 209 | llvm_unreachable("Cannot create a null constant of that type!"); |
Owen Anderson | 5a1acd9 | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 210 | } |
| 211 | } |
| 212 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 213 | Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) { |
| 214 | Type *ScalarTy = Ty->getScalarType(); |
Dan Gohman | f011f5a | 2009-08-03 22:07:33 +0000 | [diff] [blame] | 215 | |
| 216 | // Create the base integer constant. |
| 217 | Constant *C = ConstantInt::get(Ty->getContext(), V); |
| 218 | |
| 219 | // Convert an integer to a pointer, if necessary. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 220 | if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy)) |
Dan Gohman | f011f5a | 2009-08-03 22:07:33 +0000 | [diff] [blame] | 221 | C = ConstantExpr::getIntToPtr(C, PTy); |
| 222 | |
| 223 | // Broadcast a scalar to a vector, if necessary. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 224 | if (VectorType *VTy = dyn_cast<VectorType>(Ty)) |
Chris Lattner | e9eed29 | 2012-01-25 05:19:54 +0000 | [diff] [blame] | 225 | C = ConstantVector::getSplat(VTy->getNumElements(), C); |
Dan Gohman | f011f5a | 2009-08-03 22:07:33 +0000 | [diff] [blame] | 226 | |
| 227 | return C; |
| 228 | } |
| 229 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 230 | Constant *Constant::getAllOnesValue(Type *Ty) { |
| 231 | if (IntegerType *ITy = dyn_cast<IntegerType>(Ty)) |
Owen Anderson | 5a1acd9 | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 232 | return ConstantInt::get(Ty->getContext(), |
| 233 | APInt::getAllOnesValue(ITy->getBitWidth())); |
Nadav Rotem | 7cc6d12 | 2011-02-17 21:22:27 +0000 | [diff] [blame] | 234 | |
| 235 | if (Ty->isFloatingPointTy()) { |
| 236 | APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(), |
| 237 | !Ty->isPPC_FP128Ty()); |
| 238 | return ConstantFP::get(Ty->getContext(), FL); |
| 239 | } |
| 240 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 241 | VectorType *VTy = cast<VectorType>(Ty); |
Chris Lattner | e9eed29 | 2012-01-25 05:19:54 +0000 | [diff] [blame] | 242 | return ConstantVector::getSplat(VTy->getNumElements(), |
| 243 | getAllOnesValue(VTy->getElementType())); |
Owen Anderson | 5a1acd9 | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 244 | } |
| 245 | |
Chris Lattner | 7e683d1 | 2012-01-25 06:16:32 +0000 | [diff] [blame] | 246 | /// getAggregateElement - For aggregates (struct/array/vector) return the |
| 247 | /// constant that corresponds to the specified element if possible, or null if |
| 248 | /// not. This can return null if the element index is a ConstantExpr, or if |
| 249 | /// 'this' is a constant expr. |
| 250 | Constant *Constant::getAggregateElement(unsigned Elt) const { |
| 251 | if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this)) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 252 | return Elt < CS->getNumOperands() ? CS->getOperand(Elt) : nullptr; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 253 | |
Chris Lattner | 7e683d1 | 2012-01-25 06:16:32 +0000 | [diff] [blame] | 254 | if (const ConstantArray *CA = dyn_cast<ConstantArray>(this)) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 255 | return Elt < CA->getNumOperands() ? CA->getOperand(Elt) : nullptr; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 256 | |
Chris Lattner | 7e683d1 | 2012-01-25 06:16:32 +0000 | [diff] [blame] | 257 | if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 258 | return Elt < CV->getNumOperands() ? CV->getOperand(Elt) : nullptr; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 259 | |
Chris Lattner | 7e683d1 | 2012-01-25 06:16:32 +0000 | [diff] [blame] | 260 | if (const ConstantAggregateZero *CAZ =dyn_cast<ConstantAggregateZero>(this)) |
| 261 | return CAZ->getElementValue(Elt); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 262 | |
Chris Lattner | 7e683d1 | 2012-01-25 06:16:32 +0000 | [diff] [blame] | 263 | if (const UndefValue *UV = dyn_cast<UndefValue>(this)) |
| 264 | return UV->getElementValue(Elt); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 265 | |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 266 | if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this)) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 267 | return Elt < CDS->getNumElements() ? CDS->getElementAsConstant(Elt) |
| 268 | : nullptr; |
| 269 | return nullptr; |
Chris Lattner | 7e683d1 | 2012-01-25 06:16:32 +0000 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | Constant *Constant::getAggregateElement(Constant *Elt) const { |
| 273 | assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer"); |
| 274 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt)) |
| 275 | return getAggregateElement(CI->getZExtValue()); |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 276 | return nullptr; |
Chris Lattner | 7e683d1 | 2012-01-25 06:16:32 +0000 | [diff] [blame] | 277 | } |
| 278 | |
| 279 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 280 | void Constant::destroyConstantImpl() { |
| 281 | // When a Constant is destroyed, there may be lingering |
Chris Lattner | d7a7330 | 2001-10-13 06:57:33 +0000 | [diff] [blame] | 282 | // references to the constant by other constants in the constant pool. These |
Misha Brukman | be372b9 | 2003-08-21 22:14:26 +0000 | [diff] [blame] | 283 | // constants are implicitly dependent on the module that is being deleted, |
Chris Lattner | d7a7330 | 2001-10-13 06:57:33 +0000 | [diff] [blame] | 284 | // but they don't know that. Because we only find out when the CPV is |
| 285 | // deleted, we must now notify all of our users (that should only be |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 286 | // Constants) that they are, in fact, invalid now and should be deleted. |
Chris Lattner | d7a7330 | 2001-10-13 06:57:33 +0000 | [diff] [blame] | 287 | // |
| 288 | while (!use_empty()) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 289 | Value *V = user_back(); |
Chris Lattner | d7a7330 | 2001-10-13 06:57:33 +0000 | [diff] [blame] | 290 | #ifndef NDEBUG // Only in -g mode... |
Chris Lattner | 78683a7 | 2009-08-23 04:02:03 +0000 | [diff] [blame] | 291 | if (!isa<Constant>(V)) { |
David Greene | 1e27a13 | 2010-01-05 01:29:19 +0000 | [diff] [blame] | 292 | dbgs() << "While deleting: " << *this |
Chris Lattner | 78683a7 | 2009-08-23 04:02:03 +0000 | [diff] [blame] | 293 | << "\n\nUse still stuck around after Def is destroyed: " |
| 294 | << *V << "\n\n"; |
| 295 | } |
Chris Lattner | d7a7330 | 2001-10-13 06:57:33 +0000 | [diff] [blame] | 296 | #endif |
Vikram S. Adve | 4e537b2 | 2002-07-14 23:13:17 +0000 | [diff] [blame] | 297 | assert(isa<Constant>(V) && "References remain to Constant being destroyed"); |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 298 | cast<Constant>(V)->destroyConstant(); |
Chris Lattner | d7a7330 | 2001-10-13 06:57:33 +0000 | [diff] [blame] | 299 | |
| 300 | // The constant should remove itself from our use list... |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 301 | assert((use_empty() || user_back() != V) && "Constant not removed!"); |
Chris Lattner | d7a7330 | 2001-10-13 06:57:33 +0000 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | // Value has no outstanding references it is safe to delete it now... |
| 305 | delete this; |
Chris Lattner | 3856934 | 2001-10-01 20:11:19 +0000 | [diff] [blame] | 306 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 307 | |
Benjamin Kramer | 89ca4bc | 2013-04-13 12:53:18 +0000 | [diff] [blame] | 308 | static bool canTrapImpl(const Constant *C, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 309 | SmallPtrSetImpl<const ConstantExpr *> &NonTrappingOps) { |
Benjamin Kramer | 89ca4bc | 2013-04-13 12:53:18 +0000 | [diff] [blame] | 310 | assert(C->getType()->isFirstClassType() && "Cannot evaluate aggregate vals!"); |
Chris Lattner | 23dd1f6 | 2006-10-20 00:27:06 +0000 | [diff] [blame] | 311 | // The only thing that could possibly trap are constant exprs. |
Benjamin Kramer | 89ca4bc | 2013-04-13 12:53:18 +0000 | [diff] [blame] | 312 | const ConstantExpr *CE = dyn_cast<ConstantExpr>(C); |
| 313 | if (!CE) |
| 314 | return false; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 315 | |
| 316 | // ConstantExpr traps if any operands can trap. |
Benjamin Kramer | 89ca4bc | 2013-04-13 12:53:18 +0000 | [diff] [blame] | 317 | for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) { |
| 318 | if (ConstantExpr *Op = dyn_cast<ConstantExpr>(CE->getOperand(i))) { |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame^] | 319 | if (NonTrappingOps.insert(Op).second && canTrapImpl(Op, NonTrappingOps)) |
Benjamin Kramer | 89ca4bc | 2013-04-13 12:53:18 +0000 | [diff] [blame] | 320 | return true; |
| 321 | } |
| 322 | } |
Chris Lattner | 23dd1f6 | 2006-10-20 00:27:06 +0000 | [diff] [blame] | 323 | |
| 324 | // Otherwise, only specific operations can trap. |
| 325 | switch (CE->getOpcode()) { |
| 326 | default: |
| 327 | return false; |
Reid Spencer | 7e80b0b | 2006-10-26 06:15:43 +0000 | [diff] [blame] | 328 | case Instruction::UDiv: |
| 329 | case Instruction::SDiv: |
| 330 | case Instruction::FDiv: |
Reid Spencer | 7eb55b3 | 2006-11-02 01:53:59 +0000 | [diff] [blame] | 331 | case Instruction::URem: |
| 332 | case Instruction::SRem: |
| 333 | case Instruction::FRem: |
Chris Lattner | 23dd1f6 | 2006-10-20 00:27:06 +0000 | [diff] [blame] | 334 | // Div and rem can trap if the RHS is not known to be non-zero. |
Chris Lattner | a91a563 | 2009-10-28 05:14:34 +0000 | [diff] [blame] | 335 | if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue()) |
Chris Lattner | 23dd1f6 | 2006-10-20 00:27:06 +0000 | [diff] [blame] | 336 | return true; |
| 337 | return false; |
| 338 | } |
| 339 | } |
| 340 | |
Benjamin Kramer | 89ca4bc | 2013-04-13 12:53:18 +0000 | [diff] [blame] | 341 | /// canTrap - Return true if evaluation of this constant could trap. This is |
| 342 | /// true for things like constant expressions that could divide by zero. |
| 343 | bool Constant::canTrap() const { |
| 344 | SmallPtrSet<const ConstantExpr *, 4> NonTrappingOps; |
| 345 | return canTrapImpl(this, NonTrappingOps); |
| 346 | } |
| 347 | |
Hans Wennborg | 4dc8951 | 2014-06-20 00:38:12 +0000 | [diff] [blame] | 348 | /// Check if C contains a GlobalValue for which Predicate is true. |
| 349 | static bool |
| 350 | ConstHasGlobalValuePredicate(const Constant *C, |
| 351 | bool (*Predicate)(const GlobalValue *)) { |
| 352 | SmallPtrSet<const Constant *, 8> Visited; |
| 353 | SmallVector<const Constant *, 8> WorkList; |
| 354 | WorkList.push_back(C); |
| 355 | Visited.insert(C); |
Hans Wennborg | 709e015 | 2012-11-15 11:40:00 +0000 | [diff] [blame] | 356 | |
| 357 | while (!WorkList.empty()) { |
Hans Wennborg | 4dc8951 | 2014-06-20 00:38:12 +0000 | [diff] [blame] | 358 | const Constant *WorkItem = WorkList.pop_back_val(); |
| 359 | if (const auto *GV = dyn_cast<GlobalValue>(WorkItem)) |
| 360 | if (Predicate(GV)) |
Hans Wennborg | 709e015 | 2012-11-15 11:40:00 +0000 | [diff] [blame] | 361 | return true; |
Hans Wennborg | 4dc8951 | 2014-06-20 00:38:12 +0000 | [diff] [blame] | 362 | for (const Value *Op : WorkItem->operands()) { |
| 363 | const Constant *ConstOp = dyn_cast<Constant>(Op); |
| 364 | if (!ConstOp) |
Hans Wennborg | 18aa1240 | 2012-11-16 10:33:25 +0000 | [diff] [blame] | 365 | continue; |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame^] | 366 | if (Visited.insert(ConstOp).second) |
Hans Wennborg | 4dc8951 | 2014-06-20 00:38:12 +0000 | [diff] [blame] | 367 | WorkList.push_back(ConstOp); |
Hans Wennborg | 709e015 | 2012-11-15 11:40:00 +0000 | [diff] [blame] | 368 | } |
| 369 | } |
Hans Wennborg | 709e015 | 2012-11-15 11:40:00 +0000 | [diff] [blame] | 370 | return false; |
| 371 | } |
| 372 | |
Hans Wennborg | 4dc8951 | 2014-06-20 00:38:12 +0000 | [diff] [blame] | 373 | /// Return true if the value can vary between threads. |
| 374 | bool Constant::isThreadDependent() const { |
| 375 | auto DLLImportPredicate = [](const GlobalValue *GV) { |
| 376 | return GV->isThreadLocal(); |
| 377 | }; |
| 378 | return ConstHasGlobalValuePredicate(this, DLLImportPredicate); |
| 379 | } |
| 380 | |
| 381 | bool Constant::isDLLImportDependent() const { |
| 382 | auto DLLImportPredicate = [](const GlobalValue *GV) { |
| 383 | return GV->hasDLLImportStorageClass(); |
| 384 | }; |
| 385 | return ConstHasGlobalValuePredicate(this, DLLImportPredicate); |
| 386 | } |
| 387 | |
| 388 | /// Return true if the constant has users other than constant exprs and other |
| 389 | /// dangling things. |
Chris Lattner | 253bc77 | 2009-11-01 18:11:50 +0000 | [diff] [blame] | 390 | bool Constant::isConstantUsed() const { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 391 | for (const User *U : users()) { |
| 392 | const Constant *UC = dyn_cast<Constant>(U); |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 393 | if (!UC || isa<GlobalValue>(UC)) |
Chris Lattner | 253bc77 | 2009-11-01 18:11:50 +0000 | [diff] [blame] | 394 | return true; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 395 | |
Chris Lattner | 253bc77 | 2009-11-01 18:11:50 +0000 | [diff] [blame] | 396 | if (UC->isConstantUsed()) |
| 397 | return true; |
| 398 | } |
| 399 | return false; |
| 400 | } |
| 401 | |
| 402 | |
Chris Lattner | 4565ef5 | 2009-07-22 00:05:44 +0000 | [diff] [blame] | 403 | |
| 404 | /// getRelocationInfo - This method classifies the entry according to |
| 405 | /// whether or not it may generate a relocation entry. This must be |
| 406 | /// conservative, so if it might codegen to a relocatable entry, it should say |
| 407 | /// so. The return values are: |
| 408 | /// |
Chris Lattner | 5cd4dd3 | 2009-07-24 03:27:21 +0000 | [diff] [blame] | 409 | /// NoRelocation: This constant pool entry is guaranteed to never have a |
| 410 | /// relocation applied to it (because it holds a simple constant like |
| 411 | /// '4'). |
| 412 | /// LocalRelocation: This entry has relocations, but the entries are |
| 413 | /// guaranteed to be resolvable by the static linker, so the dynamic |
| 414 | /// linker will never see them. |
| 415 | /// GlobalRelocations: This entry may have arbitrary relocations. |
Chris Lattner | 4565ef5 | 2009-07-22 00:05:44 +0000 | [diff] [blame] | 416 | /// |
Chandler Carruth | ef860a2 | 2013-01-02 09:10:48 +0000 | [diff] [blame] | 417 | /// FIXME: This really should not be in IR. |
Chris Lattner | 5cd4dd3 | 2009-07-24 03:27:21 +0000 | [diff] [blame] | 418 | Constant::PossibleRelocationsTy Constant::getRelocationInfo() const { |
| 419 | if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) { |
Chris Lattner | 4565ef5 | 2009-07-22 00:05:44 +0000 | [diff] [blame] | 420 | if (GV->hasLocalLinkage() || GV->hasHiddenVisibility()) |
Chris Lattner | 5cd4dd3 | 2009-07-24 03:27:21 +0000 | [diff] [blame] | 421 | return LocalRelocation; // Local to this file/library. |
| 422 | return GlobalRelocations; // Global reference. |
Anton Korobeynikov | 7437b59 | 2009-03-29 17:13:18 +0000 | [diff] [blame] | 423 | } |
Chris Lattner | 4565ef5 | 2009-07-22 00:05:44 +0000 | [diff] [blame] | 424 | |
Chris Lattner | 2cb85b4 | 2009-10-28 04:12:16 +0000 | [diff] [blame] | 425 | if (const BlockAddress *BA = dyn_cast<BlockAddress>(this)) |
| 426 | return BA->getFunction()->getRelocationInfo(); |
| 427 | |
Chris Lattner | a7cfc43 | 2010-01-03 18:09:40 +0000 | [diff] [blame] | 428 | // While raw uses of blockaddress need to be relocated, differences between |
| 429 | // two of them don't when they are for labels in the same function. This is a |
| 430 | // common idiom when creating a table for the indirect goto extension, so we |
| 431 | // handle it efficiently here. |
| 432 | if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this)) |
| 433 | if (CE->getOpcode() == Instruction::Sub) { |
| 434 | ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0)); |
| 435 | ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1)); |
| 436 | if (LHS && RHS && |
| 437 | LHS->getOpcode() == Instruction::PtrToInt && |
| 438 | RHS->getOpcode() == Instruction::PtrToInt && |
| 439 | isa<BlockAddress>(LHS->getOperand(0)) && |
| 440 | isa<BlockAddress>(RHS->getOperand(0)) && |
| 441 | cast<BlockAddress>(LHS->getOperand(0))->getFunction() == |
| 442 | cast<BlockAddress>(RHS->getOperand(0))->getFunction()) |
| 443 | return NoRelocation; |
| 444 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 445 | |
Chris Lattner | 5cd4dd3 | 2009-07-24 03:27:21 +0000 | [diff] [blame] | 446 | PossibleRelocationsTy Result = NoRelocation; |
Evan Cheng | f9e003b | 2007-03-08 00:59:12 +0000 | [diff] [blame] | 447 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) |
Chris Lattner | a91a563 | 2009-10-28 05:14:34 +0000 | [diff] [blame] | 448 | Result = std::max(Result, |
| 449 | cast<Constant>(getOperand(i))->getRelocationInfo()); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 450 | |
Chris Lattner | 4565ef5 | 2009-07-22 00:05:44 +0000 | [diff] [blame] | 451 | return Result; |
Evan Cheng | f9e003b | 2007-03-08 00:59:12 +0000 | [diff] [blame] | 452 | } |
| 453 | |
Chris Lattner | 8488640 | 2011-02-18 04:41:42 +0000 | [diff] [blame] | 454 | /// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove |
| 455 | /// it. This involves recursively eliminating any dead users of the |
| 456 | /// constantexpr. |
| 457 | static bool removeDeadUsersOfConstant(const Constant *C) { |
| 458 | if (isa<GlobalValue>(C)) return false; // Cannot remove this |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 459 | |
Chris Lattner | 8488640 | 2011-02-18 04:41:42 +0000 | [diff] [blame] | 460 | while (!C->use_empty()) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 461 | const Constant *User = dyn_cast<Constant>(C->user_back()); |
Chris Lattner | 8488640 | 2011-02-18 04:41:42 +0000 | [diff] [blame] | 462 | if (!User) return false; // Non-constant usage; |
| 463 | if (!removeDeadUsersOfConstant(User)) |
| 464 | return false; // Constant wasn't dead |
| 465 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 466 | |
Chris Lattner | 8488640 | 2011-02-18 04:41:42 +0000 | [diff] [blame] | 467 | const_cast<Constant*>(C)->destroyConstant(); |
| 468 | return true; |
| 469 | } |
| 470 | |
| 471 | |
| 472 | /// removeDeadConstantUsers - If there are any dead constant users dangling |
| 473 | /// off of this constant, remove them. This method is useful for clients |
| 474 | /// that want to check to see if a global is unused, but don't want to deal |
| 475 | /// with potentially dead constants hanging off of the globals. |
| 476 | void Constant::removeDeadConstantUsers() const { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 477 | Value::const_user_iterator I = user_begin(), E = user_end(); |
| 478 | Value::const_user_iterator LastNonDeadUser = E; |
Chris Lattner | 8488640 | 2011-02-18 04:41:42 +0000 | [diff] [blame] | 479 | while (I != E) { |
| 480 | const Constant *User = dyn_cast<Constant>(*I); |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 481 | if (!User) { |
Chris Lattner | 8488640 | 2011-02-18 04:41:42 +0000 | [diff] [blame] | 482 | LastNonDeadUser = I; |
| 483 | ++I; |
| 484 | continue; |
| 485 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 486 | |
Chris Lattner | 8488640 | 2011-02-18 04:41:42 +0000 | [diff] [blame] | 487 | if (!removeDeadUsersOfConstant(User)) { |
| 488 | // If the constant wasn't dead, remember that this was the last live use |
| 489 | // and move on to the next constant. |
| 490 | LastNonDeadUser = I; |
| 491 | ++I; |
| 492 | continue; |
| 493 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 494 | |
Chris Lattner | 8488640 | 2011-02-18 04:41:42 +0000 | [diff] [blame] | 495 | // If the constant was dead, then the iterator is invalidated. |
| 496 | if (LastNonDeadUser == E) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 497 | I = user_begin(); |
Chris Lattner | 8488640 | 2011-02-18 04:41:42 +0000 | [diff] [blame] | 498 | if (I == E) break; |
| 499 | } else { |
| 500 | I = LastNonDeadUser; |
| 501 | ++I; |
| 502 | } |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | |
Chris Lattner | 2105d66 | 2008-07-10 00:28:11 +0000 | [diff] [blame] | 507 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 508 | //===----------------------------------------------------------------------===// |
Chris Lattner | a80bf0b | 2007-02-20 06:39:57 +0000 | [diff] [blame] | 509 | // ConstantInt |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 510 | //===----------------------------------------------------------------------===// |
| 511 | |
David Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 512 | void ConstantInt::anchor() { } |
| 513 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 514 | ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 515 | : Constant(Ty, ConstantIntVal, nullptr, 0), Val(V) { |
Reid Spencer | b31bffe | 2007-02-26 23:54:03 +0000 | [diff] [blame] | 516 | assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type"); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 517 | } |
| 518 | |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 519 | ConstantInt *ConstantInt::getTrue(LLVMContext &Context) { |
Owen Anderson | 23a204d | 2009-07-31 17:39:07 +0000 | [diff] [blame] | 520 | LLVMContextImpl *pImpl = Context.pImpl; |
Benjamin Kramer | ddd1b7b | 2010-11-20 18:43:35 +0000 | [diff] [blame] | 521 | if (!pImpl->TheTrueVal) |
| 522 | pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1); |
| 523 | return pImpl->TheTrueVal; |
Owen Anderson | 23a204d | 2009-07-31 17:39:07 +0000 | [diff] [blame] | 524 | } |
| 525 | |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 526 | ConstantInt *ConstantInt::getFalse(LLVMContext &Context) { |
Owen Anderson | 23a204d | 2009-07-31 17:39:07 +0000 | [diff] [blame] | 527 | LLVMContextImpl *pImpl = Context.pImpl; |
Benjamin Kramer | ddd1b7b | 2010-11-20 18:43:35 +0000 | [diff] [blame] | 528 | if (!pImpl->TheFalseVal) |
| 529 | pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0); |
| 530 | return pImpl->TheFalseVal; |
Owen Anderson | 23a204d | 2009-07-31 17:39:07 +0000 | [diff] [blame] | 531 | } |
| 532 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 533 | Constant *ConstantInt::getTrue(Type *Ty) { |
| 534 | VectorType *VTy = dyn_cast<VectorType>(Ty); |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 535 | if (!VTy) { |
| 536 | assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1."); |
| 537 | return ConstantInt::getTrue(Ty->getContext()); |
| 538 | } |
| 539 | assert(VTy->getElementType()->isIntegerTy(1) && |
| 540 | "True must be vector of i1 or i1."); |
Chris Lattner | e9eed29 | 2012-01-25 05:19:54 +0000 | [diff] [blame] | 541 | return ConstantVector::getSplat(VTy->getNumElements(), |
| 542 | ConstantInt::getTrue(Ty->getContext())); |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 543 | } |
| 544 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 545 | Constant *ConstantInt::getFalse(Type *Ty) { |
| 546 | VectorType *VTy = dyn_cast<VectorType>(Ty); |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 547 | if (!VTy) { |
| 548 | assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1."); |
| 549 | return ConstantInt::getFalse(Ty->getContext()); |
| 550 | } |
| 551 | assert(VTy->getElementType()->isIntegerTy(1) && |
| 552 | "False must be vector of i1 or i1."); |
Chris Lattner | e9eed29 | 2012-01-25 05:19:54 +0000 | [diff] [blame] | 553 | return ConstantVector::getSplat(VTy->getNumElements(), |
| 554 | ConstantInt::getFalse(Ty->getContext())); |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 555 | } |
| 556 | |
Owen Anderson | 23a204d | 2009-07-31 17:39:07 +0000 | [diff] [blame] | 557 | |
Owen Anderson | edb4a70 | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 558 | // Get a ConstantInt from an APInt. Note that the value stored in the DenseMap |
| 559 | // as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the |
| 560 | // operator== and operator!= to ensure that the DenseMap doesn't attempt to |
| 561 | // compare APInt's of different widths, which would violate an APInt class |
| 562 | // invariant which generates an assertion. |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 563 | ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) { |
Owen Anderson | edb4a70 | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 564 | // Get the corresponding integer type for the bit width of the value. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 565 | IntegerType *ITy = IntegerType::get(Context, V.getBitWidth()); |
Owen Anderson | edb4a70 | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 566 | // get an existing value or the insertion position |
Benjamin Kramer | 320682f | 2013-06-01 17:51:03 +0000 | [diff] [blame] | 567 | LLVMContextImpl *pImpl = Context.pImpl; |
| 568 | ConstantInt *&Slot = pImpl->IntConstants[DenseMapAPIntKeyInfo::KeyTy(V, ITy)]; |
Owen Anderson | 5dab84c | 2009-10-19 20:11:52 +0000 | [diff] [blame] | 569 | if (!Slot) Slot = new ConstantInt(ITy, V); |
| 570 | return Slot; |
Owen Anderson | edb4a70 | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 571 | } |
| 572 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 573 | Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) { |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 574 | Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned); |
Owen Anderson | edb4a70 | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 575 | |
| 576 | // For vectors, broadcast the value. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 577 | if (VectorType *VTy = dyn_cast<VectorType>(Ty)) |
Chris Lattner | e9eed29 | 2012-01-25 05:19:54 +0000 | [diff] [blame] | 578 | return ConstantVector::getSplat(VTy->getNumElements(), C); |
Owen Anderson | edb4a70 | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 579 | |
| 580 | return C; |
| 581 | } |
| 582 | |
Chris Lattner | 0256be9 | 2012-01-27 03:08:05 +0000 | [diff] [blame] | 583 | ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V, |
Owen Anderson | edb4a70 | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 584 | bool isSigned) { |
| 585 | return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned)); |
| 586 | } |
| 587 | |
Chris Lattner | 0256be9 | 2012-01-27 03:08:05 +0000 | [diff] [blame] | 588 | ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) { |
Owen Anderson | edb4a70 | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 589 | return get(Ty, V, true); |
| 590 | } |
| 591 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 592 | Constant *ConstantInt::getSigned(Type *Ty, int64_t V) { |
Owen Anderson | edb4a70 | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 593 | return get(Ty, V, true); |
| 594 | } |
| 595 | |
Chris Lattner | 0256be9 | 2012-01-27 03:08:05 +0000 | [diff] [blame] | 596 | Constant *ConstantInt::get(Type *Ty, const APInt& V) { |
Owen Anderson | edb4a70 | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 597 | ConstantInt *C = get(Ty->getContext(), V); |
| 598 | assert(C->getType() == Ty->getScalarType() && |
| 599 | "ConstantInt type doesn't match the type implied by its value!"); |
| 600 | |
| 601 | // For vectors, broadcast the value. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 602 | if (VectorType *VTy = dyn_cast<VectorType>(Ty)) |
Chris Lattner | e9eed29 | 2012-01-25 05:19:54 +0000 | [diff] [blame] | 603 | return ConstantVector::getSplat(VTy->getNumElements(), C); |
Owen Anderson | edb4a70 | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 604 | |
| 605 | return C; |
| 606 | } |
| 607 | |
Chris Lattner | 0256be9 | 2012-01-27 03:08:05 +0000 | [diff] [blame] | 608 | ConstantInt *ConstantInt::get(IntegerType* Ty, StringRef Str, |
Erick Tryzelaar | fc2280d | 2009-08-16 23:36:33 +0000 | [diff] [blame] | 609 | uint8_t radix) { |
| 610 | return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix)); |
| 611 | } |
| 612 | |
Chris Lattner | a80bf0b | 2007-02-20 06:39:57 +0000 | [diff] [blame] | 613 | //===----------------------------------------------------------------------===// |
Chris Lattner | c6ee77d | 2007-02-20 07:17:17 +0000 | [diff] [blame] | 614 | // ConstantFP |
Chris Lattner | a80bf0b | 2007-02-20 06:39:57 +0000 | [diff] [blame] | 615 | //===----------------------------------------------------------------------===// |
| 616 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 617 | static const fltSemantics *TypeToFloatSemantics(Type *Ty) { |
Dan Gohman | 518cda4 | 2011-12-17 00:04:22 +0000 | [diff] [blame] | 618 | if (Ty->isHalfTy()) |
| 619 | return &APFloat::IEEEhalf; |
Chris Lattner | fdd8790 | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 620 | if (Ty->isFloatTy()) |
Rafael Espindola | f5d53d4 | 2009-07-15 17:40:42 +0000 | [diff] [blame] | 621 | return &APFloat::IEEEsingle; |
Chris Lattner | fdd8790 | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 622 | if (Ty->isDoubleTy()) |
Rafael Espindola | f5d53d4 | 2009-07-15 17:40:42 +0000 | [diff] [blame] | 623 | return &APFloat::IEEEdouble; |
Chris Lattner | fdd8790 | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 624 | if (Ty->isX86_FP80Ty()) |
Rafael Espindola | f5d53d4 | 2009-07-15 17:40:42 +0000 | [diff] [blame] | 625 | return &APFloat::x87DoubleExtended; |
Chris Lattner | fdd8790 | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 626 | else if (Ty->isFP128Ty()) |
Rafael Espindola | f5d53d4 | 2009-07-15 17:40:42 +0000 | [diff] [blame] | 627 | return &APFloat::IEEEquad; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 628 | |
Chris Lattner | fdd8790 | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 629 | assert(Ty->isPPC_FP128Ty() && "Unknown FP format"); |
Rafael Espindola | f5d53d4 | 2009-07-15 17:40:42 +0000 | [diff] [blame] | 630 | return &APFloat::PPCDoubleDouble; |
| 631 | } |
| 632 | |
David Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 633 | void ConstantFP::anchor() { } |
| 634 | |
Owen Anderson | 69c464d | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 635 | /// get() - This returns a constant fp for the specified value in the |
| 636 | /// specified type. This should only be used for simple constant values like |
| 637 | /// 2.0/1.0 etc, that are known-valid both as double and as the target format. |
Chris Lattner | 0256be9 | 2012-01-27 03:08:05 +0000 | [diff] [blame] | 638 | Constant *ConstantFP::get(Type *Ty, double V) { |
Owen Anderson | 69c464d | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 639 | LLVMContext &Context = Ty->getContext(); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 640 | |
Owen Anderson | 69c464d | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 641 | APFloat FV(V); |
| 642 | bool ignored; |
| 643 | FV.convert(*TypeToFloatSemantics(Ty->getScalarType()), |
| 644 | APFloat::rmNearestTiesToEven, &ignored); |
| 645 | Constant *C = get(Context, FV); |
| 646 | |
| 647 | // For vectors, broadcast the value. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 648 | if (VectorType *VTy = dyn_cast<VectorType>(Ty)) |
Chris Lattner | e9eed29 | 2012-01-25 05:19:54 +0000 | [diff] [blame] | 649 | return ConstantVector::getSplat(VTy->getNumElements(), C); |
Owen Anderson | 69c464d | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 650 | |
| 651 | return C; |
| 652 | } |
| 653 | |
Erick Tryzelaar | fc2280d | 2009-08-16 23:36:33 +0000 | [diff] [blame] | 654 | |
Chris Lattner | 0256be9 | 2012-01-27 03:08:05 +0000 | [diff] [blame] | 655 | Constant *ConstantFP::get(Type *Ty, StringRef Str) { |
Erick Tryzelaar | fc2280d | 2009-08-16 23:36:33 +0000 | [diff] [blame] | 656 | LLVMContext &Context = Ty->getContext(); |
| 657 | |
| 658 | APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str); |
| 659 | Constant *C = get(Context, FV); |
| 660 | |
| 661 | // For vectors, broadcast the value. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 662 | if (VectorType *VTy = dyn_cast<VectorType>(Ty)) |
Chris Lattner | e9eed29 | 2012-01-25 05:19:54 +0000 | [diff] [blame] | 663 | return ConstantVector::getSplat(VTy->getNumElements(), C); |
Erick Tryzelaar | fc2280d | 2009-08-16 23:36:33 +0000 | [diff] [blame] | 664 | |
| 665 | return C; |
| 666 | } |
| 667 | |
Benjamin Kramer | 5d2ff22 | 2014-01-18 16:43:06 +0000 | [diff] [blame] | 668 | Constant *ConstantFP::getNegativeZero(Type *Ty) { |
| 669 | const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType()); |
| 670 | APFloat NegZero = APFloat::getZero(Semantics, /*Negative=*/true); |
| 671 | Constant *C = get(Ty->getContext(), NegZero); |
Erick Tryzelaar | fc2280d | 2009-08-16 23:36:33 +0000 | [diff] [blame] | 672 | |
Benjamin Kramer | 5d2ff22 | 2014-01-18 16:43:06 +0000 | [diff] [blame] | 673 | if (VectorType *VTy = dyn_cast<VectorType>(Ty)) |
| 674 | return ConstantVector::getSplat(VTy->getNumElements(), C); |
| 675 | |
| 676 | return C; |
Owen Anderson | 69c464d | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 677 | } |
| 678 | |
| 679 | |
Chris Lattner | e9eed29 | 2012-01-25 05:19:54 +0000 | [diff] [blame] | 680 | Constant *ConstantFP::getZeroValueForNegation(Type *Ty) { |
Benjamin Kramer | 5d2ff22 | 2014-01-18 16:43:06 +0000 | [diff] [blame] | 681 | if (Ty->isFPOrFPVectorTy()) |
| 682 | return getNegativeZero(Ty); |
Owen Anderson | 69c464d | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 683 | |
Owen Anderson | 5a1acd9 | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 684 | return Constant::getNullValue(Ty); |
Owen Anderson | 69c464d | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 685 | } |
| 686 | |
| 687 | |
| 688 | // ConstantFP accessors. |
| 689 | ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) { |
Owen Anderson | 69c464d | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 690 | LLVMContextImpl* pImpl = Context.pImpl; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 691 | |
Benjamin Kramer | 320682f | 2013-06-01 17:51:03 +0000 | [diff] [blame] | 692 | ConstantFP *&Slot = pImpl->FPConstants[DenseMapAPFloatKeyInfo::KeyTy(V)]; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 693 | |
Owen Anderson | 69c464d | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 694 | if (!Slot) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 695 | Type *Ty; |
Dan Gohman | 518cda4 | 2011-12-17 00:04:22 +0000 | [diff] [blame] | 696 | if (&V.getSemantics() == &APFloat::IEEEhalf) |
| 697 | Ty = Type::getHalfTy(Context); |
| 698 | else if (&V.getSemantics() == &APFloat::IEEEsingle) |
Owen Anderson | 5dab84c | 2009-10-19 20:11:52 +0000 | [diff] [blame] | 699 | Ty = Type::getFloatTy(Context); |
| 700 | else if (&V.getSemantics() == &APFloat::IEEEdouble) |
| 701 | Ty = Type::getDoubleTy(Context); |
| 702 | else if (&V.getSemantics() == &APFloat::x87DoubleExtended) |
| 703 | Ty = Type::getX86_FP80Ty(Context); |
| 704 | else if (&V.getSemantics() == &APFloat::IEEEquad) |
| 705 | Ty = Type::getFP128Ty(Context); |
| 706 | else { |
| 707 | assert(&V.getSemantics() == &APFloat::PPCDoubleDouble && |
| 708 | "Unknown FP format"); |
| 709 | Ty = Type::getPPC_FP128Ty(Context); |
Owen Anderson | 69c464d | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 710 | } |
Owen Anderson | 5dab84c | 2009-10-19 20:11:52 +0000 | [diff] [blame] | 711 | Slot = new ConstantFP(Ty, V); |
Owen Anderson | 69c464d | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 712 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 713 | |
Owen Anderson | 69c464d | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 714 | return Slot; |
| 715 | } |
| 716 | |
Benjamin Kramer | 5d2ff22 | 2014-01-18 16:43:06 +0000 | [diff] [blame] | 717 | Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) { |
| 718 | const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType()); |
| 719 | Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative)); |
| 720 | |
| 721 | if (VectorType *VTy = dyn_cast<VectorType>(Ty)) |
| 722 | return ConstantVector::getSplat(VTy->getNumElements(), C); |
| 723 | |
| 724 | return C; |
Dan Gohman | feb5021 | 2009-09-25 23:00:48 +0000 | [diff] [blame] | 725 | } |
| 726 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 727 | ConstantFP::ConstantFP(Type *Ty, const APFloat& V) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 728 | : Constant(Ty, ConstantFPVal, nullptr, 0), Val(V) { |
Chris Lattner | 98bd939 | 2008-04-09 06:38:30 +0000 | [diff] [blame] | 729 | assert(&V.getSemantics() == TypeToFloatSemantics(Ty) && |
| 730 | "FP type Mismatch"); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 731 | } |
| 732 | |
Chris Lattner | be6610c | 2011-07-15 06:14:08 +0000 | [diff] [blame] | 733 | bool ConstantFP::isExactlyValue(const APFloat &V) const { |
Dale Johannesen | d246b2c | 2007-08-30 00:23:21 +0000 | [diff] [blame] | 734 | return Val.bitwiseIsEqual(V); |
Chris Lattner | c6ee77d | 2007-02-20 07:17:17 +0000 | [diff] [blame] | 735 | } |
| 736 | |
Chris Lattner | c6ee77d | 2007-02-20 07:17:17 +0000 | [diff] [blame] | 737 | //===----------------------------------------------------------------------===// |
Chris Lattner | 030af79 | 2012-01-24 05:42:11 +0000 | [diff] [blame] | 738 | // ConstantAggregateZero Implementation |
| 739 | //===----------------------------------------------------------------------===// |
| 740 | |
| 741 | /// getSequentialElement - If this CAZ has array or vector type, return a zero |
| 742 | /// with the right element type. |
Chris Lattner | 7e683d1 | 2012-01-25 06:16:32 +0000 | [diff] [blame] | 743 | Constant *ConstantAggregateZero::getSequentialElement() const { |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 744 | return Constant::getNullValue(getType()->getSequentialElementType()); |
Chris Lattner | 030af79 | 2012-01-24 05:42:11 +0000 | [diff] [blame] | 745 | } |
| 746 | |
| 747 | /// getStructElement - If this CAZ has struct type, return a zero with the |
| 748 | /// right element type for the specified element. |
Chris Lattner | 7e683d1 | 2012-01-25 06:16:32 +0000 | [diff] [blame] | 749 | Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const { |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 750 | return Constant::getNullValue(getType()->getStructElementType(Elt)); |
Chris Lattner | 030af79 | 2012-01-24 05:42:11 +0000 | [diff] [blame] | 751 | } |
| 752 | |
| 753 | /// getElementValue - Return a zero of the right value for the specified GEP |
| 754 | /// index if we can, otherwise return null (e.g. if C is a ConstantExpr). |
Chris Lattner | 7e683d1 | 2012-01-25 06:16:32 +0000 | [diff] [blame] | 755 | Constant *ConstantAggregateZero::getElementValue(Constant *C) const { |
Chris Lattner | 030af79 | 2012-01-24 05:42:11 +0000 | [diff] [blame] | 756 | if (isa<SequentialType>(getType())) |
| 757 | return getSequentialElement(); |
| 758 | return getStructElement(cast<ConstantInt>(C)->getZExtValue()); |
| 759 | } |
| 760 | |
Chris Lattner | f7eb543 | 2012-01-24 07:54:10 +0000 | [diff] [blame] | 761 | /// getElementValue - Return a zero of the right value for the specified GEP |
| 762 | /// index. |
Chris Lattner | 7e683d1 | 2012-01-25 06:16:32 +0000 | [diff] [blame] | 763 | Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const { |
Chris Lattner | f7eb543 | 2012-01-24 07:54:10 +0000 | [diff] [blame] | 764 | if (isa<SequentialType>(getType())) |
| 765 | return getSequentialElement(); |
| 766 | return getStructElement(Idx); |
| 767 | } |
| 768 | |
| 769 | |
Chris Lattner | 030af79 | 2012-01-24 05:42:11 +0000 | [diff] [blame] | 770 | //===----------------------------------------------------------------------===// |
| 771 | // UndefValue Implementation |
| 772 | //===----------------------------------------------------------------------===// |
| 773 | |
| 774 | /// getSequentialElement - If this undef has array or vector type, return an |
| 775 | /// undef with the right element type. |
Chris Lattner | 7e683d1 | 2012-01-25 06:16:32 +0000 | [diff] [blame] | 776 | UndefValue *UndefValue::getSequentialElement() const { |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 777 | return UndefValue::get(getType()->getSequentialElementType()); |
Chris Lattner | 030af79 | 2012-01-24 05:42:11 +0000 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | /// getStructElement - If this undef has struct type, return a zero with the |
| 781 | /// right element type for the specified element. |
Chris Lattner | 7e683d1 | 2012-01-25 06:16:32 +0000 | [diff] [blame] | 782 | UndefValue *UndefValue::getStructElement(unsigned Elt) const { |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 783 | return UndefValue::get(getType()->getStructElementType(Elt)); |
Chris Lattner | 030af79 | 2012-01-24 05:42:11 +0000 | [diff] [blame] | 784 | } |
| 785 | |
| 786 | /// getElementValue - Return an undef of the right value for the specified GEP |
| 787 | /// index if we can, otherwise return null (e.g. if C is a ConstantExpr). |
Chris Lattner | 7e683d1 | 2012-01-25 06:16:32 +0000 | [diff] [blame] | 788 | UndefValue *UndefValue::getElementValue(Constant *C) const { |
Chris Lattner | 030af79 | 2012-01-24 05:42:11 +0000 | [diff] [blame] | 789 | if (isa<SequentialType>(getType())) |
| 790 | return getSequentialElement(); |
| 791 | return getStructElement(cast<ConstantInt>(C)->getZExtValue()); |
| 792 | } |
| 793 | |
Chris Lattner | f7eb543 | 2012-01-24 07:54:10 +0000 | [diff] [blame] | 794 | /// getElementValue - Return an undef of the right value for the specified GEP |
| 795 | /// index. |
Chris Lattner | 7e683d1 | 2012-01-25 06:16:32 +0000 | [diff] [blame] | 796 | UndefValue *UndefValue::getElementValue(unsigned Idx) const { |
Chris Lattner | f7eb543 | 2012-01-24 07:54:10 +0000 | [diff] [blame] | 797 | if (isa<SequentialType>(getType())) |
| 798 | return getSequentialElement(); |
| 799 | return getStructElement(Idx); |
| 800 | } |
| 801 | |
| 802 | |
Chris Lattner | 030af79 | 2012-01-24 05:42:11 +0000 | [diff] [blame] | 803 | |
| 804 | //===----------------------------------------------------------------------===// |
Chris Lattner | c6ee77d | 2007-02-20 07:17:17 +0000 | [diff] [blame] | 805 | // ConstantXXX Classes |
| 806 | //===----------------------------------------------------------------------===// |
| 807 | |
Chris Lattner | cf9e8f6 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 808 | template <typename ItTy, typename EltTy> |
| 809 | static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) { |
| 810 | for (; Start != End; ++Start) |
| 811 | if (*Start != Elt) |
| 812 | return false; |
| 813 | return true; |
| 814 | } |
Chris Lattner | c6ee77d | 2007-02-20 07:17:17 +0000 | [diff] [blame] | 815 | |
Jay Foad | 89d9b81 | 2011-07-25 10:14:44 +0000 | [diff] [blame] | 816 | ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V) |
Gabor Greif | f6caff66 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 817 | : Constant(T, ConstantArrayVal, |
| 818 | OperandTraits<ConstantArray>::op_end(this) - V.size(), |
| 819 | V.size()) { |
Alkis Evlogimenos | 0507ffe | 2004-09-15 02:32:15 +0000 | [diff] [blame] | 820 | assert(V.size() == T->getNumElements() && |
| 821 | "Invalid initializer vector for constant array"); |
Jay Foad | 89d9b81 | 2011-07-25 10:14:44 +0000 | [diff] [blame] | 822 | for (unsigned i = 0, e = V.size(); i != e; ++i) |
| 823 | assert(V[i]->getType() == T->getElementType() && |
Alkis Evlogimenos | cb031d9 | 2004-09-10 04:16:59 +0000 | [diff] [blame] | 824 | "Initializer for array element doesn't match array element type!"); |
Jay Foad | 89d9b81 | 2011-07-25 10:14:44 +0000 | [diff] [blame] | 825 | std::copy(V.begin(), V.end(), op_begin()); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 826 | } |
| 827 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 828 | Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) { |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 829 | if (Constant *C = getImpl(Ty, V)) |
| 830 | return C; |
| 831 | return Ty->getContext().pImpl->ArrayConstants.getOrCreate(Ty, V); |
| 832 | } |
| 833 | Constant *ConstantArray::getImpl(ArrayType *Ty, ArrayRef<Constant*> V) { |
Chris Lattner | cf9e8f6 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 834 | // Empty arrays are canonicalized to ConstantAggregateZero. |
| 835 | if (V.empty()) |
| 836 | return ConstantAggregateZero::get(Ty); |
| 837 | |
Jeffrey Yasskin | 8ce67f8 | 2009-09-30 21:08:08 +0000 | [diff] [blame] | 838 | for (unsigned i = 0, e = V.size(); i != e; ++i) { |
| 839 | assert(V[i]->getType() == Ty->getElementType() && |
| 840 | "Wrong type in array element initializer"); |
| 841 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 842 | |
Chris Lattner | cf9e8f6 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 843 | // If this is an all-zero array, return a ConstantAggregateZero object. If |
| 844 | // all undef, return an UndefValue, if "all simple", then return a |
| 845 | // ConstantDataArray. |
| 846 | Constant *C = V[0]; |
| 847 | if (isa<UndefValue>(C) && rangeOnlyContains(V.begin(), V.end(), C)) |
| 848 | return UndefValue::get(Ty); |
Chris Lattner | f14a67f | 2012-01-26 02:31:22 +0000 | [diff] [blame] | 849 | |
Chris Lattner | cf9e8f6 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 850 | if (C->isNullValue() && rangeOnlyContains(V.begin(), V.end(), C)) |
| 851 | return ConstantAggregateZero::get(Ty); |
| 852 | |
| 853 | // Check to see if all of the elements are ConstantFP or ConstantInt and if |
| 854 | // the element type is compatible with ConstantDataVector. If so, use it. |
| 855 | if (ConstantDataSequential::isElementTypeCompatible(C->getType())) { |
| 856 | // We speculatively build the elements here even if it turns out that there |
| 857 | // is a constantexpr or something else weird in the array, since it is so |
| 858 | // uncommon for that to happen. |
| 859 | if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) { |
| 860 | if (CI->getType()->isIntegerTy(8)) { |
| 861 | SmallVector<uint8_t, 16> Elts; |
| 862 | for (unsigned i = 0, e = V.size(); i != e; ++i) |
| 863 | if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i])) |
| 864 | Elts.push_back(CI->getZExtValue()); |
| 865 | else |
| 866 | break; |
| 867 | if (Elts.size() == V.size()) |
| 868 | return ConstantDataArray::get(C->getContext(), Elts); |
| 869 | } else if (CI->getType()->isIntegerTy(16)) { |
| 870 | SmallVector<uint16_t, 16> Elts; |
| 871 | for (unsigned i = 0, e = V.size(); i != e; ++i) |
| 872 | if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i])) |
| 873 | Elts.push_back(CI->getZExtValue()); |
| 874 | else |
| 875 | break; |
| 876 | if (Elts.size() == V.size()) |
| 877 | return ConstantDataArray::get(C->getContext(), Elts); |
| 878 | } else if (CI->getType()->isIntegerTy(32)) { |
| 879 | SmallVector<uint32_t, 16> Elts; |
| 880 | for (unsigned i = 0, e = V.size(); i != e; ++i) |
| 881 | if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i])) |
| 882 | Elts.push_back(CI->getZExtValue()); |
| 883 | else |
| 884 | break; |
| 885 | if (Elts.size() == V.size()) |
| 886 | return ConstantDataArray::get(C->getContext(), Elts); |
| 887 | } else if (CI->getType()->isIntegerTy(64)) { |
| 888 | SmallVector<uint64_t, 16> Elts; |
| 889 | for (unsigned i = 0, e = V.size(); i != e; ++i) |
| 890 | if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i])) |
| 891 | Elts.push_back(CI->getZExtValue()); |
| 892 | else |
| 893 | break; |
| 894 | if (Elts.size() == V.size()) |
| 895 | return ConstantDataArray::get(C->getContext(), Elts); |
| 896 | } |
| 897 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 898 | |
Chris Lattner | cf9e8f6 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 899 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { |
| 900 | if (CFP->getType()->isFloatTy()) { |
| 901 | SmallVector<float, 16> Elts; |
| 902 | for (unsigned i = 0, e = V.size(); i != e; ++i) |
| 903 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i])) |
| 904 | Elts.push_back(CFP->getValueAPF().convertToFloat()); |
| 905 | else |
| 906 | break; |
| 907 | if (Elts.size() == V.size()) |
| 908 | return ConstantDataArray::get(C->getContext(), Elts); |
| 909 | } else if (CFP->getType()->isDoubleTy()) { |
| 910 | SmallVector<double, 16> Elts; |
| 911 | for (unsigned i = 0, e = V.size(); i != e; ++i) |
| 912 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i])) |
| 913 | Elts.push_back(CFP->getValueAPF().convertToDouble()); |
| 914 | else |
| 915 | break; |
| 916 | if (Elts.size() == V.size()) |
| 917 | return ConstantDataArray::get(C->getContext(), Elts); |
| 918 | } |
| 919 | } |
Owen Anderson | c2c7932 | 2009-07-28 18:32:17 +0000 | [diff] [blame] | 920 | } |
Chris Lattner | f14a67f | 2012-01-26 02:31:22 +0000 | [diff] [blame] | 921 | |
Chris Lattner | cf9e8f6 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 922 | // Otherwise, we really do want to create a ConstantArray. |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 923 | return nullptr; |
Owen Anderson | c2c7932 | 2009-07-28 18:32:17 +0000 | [diff] [blame] | 924 | } |
| 925 | |
Chris Lattner | cc19efa | 2011-06-20 04:01:31 +0000 | [diff] [blame] | 926 | /// getTypeForElements - Return an anonymous struct type to use for a constant |
| 927 | /// with the specified set of elements. The list must not be empty. |
| 928 | StructType *ConstantStruct::getTypeForElements(LLVMContext &Context, |
| 929 | ArrayRef<Constant*> V, |
| 930 | bool Packed) { |
Bill Wendling | 3ae7dd3 | 2012-02-07 01:27:51 +0000 | [diff] [blame] | 931 | unsigned VecSize = V.size(); |
| 932 | SmallVector<Type*, 16> EltTypes(VecSize); |
| 933 | for (unsigned i = 0; i != VecSize; ++i) |
| 934 | EltTypes[i] = V[i]->getType(); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 935 | |
Chris Lattner | cc19efa | 2011-06-20 04:01:31 +0000 | [diff] [blame] | 936 | return StructType::get(Context, EltTypes, Packed); |
| 937 | } |
| 938 | |
| 939 | |
| 940 | StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V, |
| 941 | bool Packed) { |
| 942 | assert(!V.empty() && |
| 943 | "ConstantStruct::getTypeForElements cannot be called on empty list"); |
| 944 | return getTypeForElements(V[0]->getContext(), V, Packed); |
| 945 | } |
| 946 | |
| 947 | |
Jay Foad | 89d9b81 | 2011-07-25 10:14:44 +0000 | [diff] [blame] | 948 | ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V) |
Gabor Greif | f6caff66 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 949 | : Constant(T, ConstantStructVal, |
| 950 | OperandTraits<ConstantStruct>::op_end(this) - V.size(), |
| 951 | V.size()) { |
Chris Lattner | c3e74cd | 2011-08-07 04:18:48 +0000 | [diff] [blame] | 952 | assert(V.size() == T->getNumElements() && |
Vikram S. Adve | 4e537b2 | 2002-07-14 23:13:17 +0000 | [diff] [blame] | 953 | "Invalid initializer vector for constant structure"); |
Jay Foad | 89d9b81 | 2011-07-25 10:14:44 +0000 | [diff] [blame] | 954 | for (unsigned i = 0, e = V.size(); i != e; ++i) |
| 955 | assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) && |
Chris Lattner | 93c8f14 | 2003-06-02 17:42:47 +0000 | [diff] [blame] | 956 | "Initializer for struct element doesn't match struct element type!"); |
Jay Foad | 89d9b81 | 2011-07-25 10:14:44 +0000 | [diff] [blame] | 957 | std::copy(V.begin(), V.end(), op_begin()); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 958 | } |
| 959 | |
Owen Anderson | 45308b5 | 2009-07-27 22:29:26 +0000 | [diff] [blame] | 960 | // ConstantStruct accessors. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 961 | Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) { |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 962 | assert((ST->isOpaque() || ST->getNumElements() == V.size()) && |
| 963 | "Incorrect # elements specified to ConstantStruct::get"); |
Chris Lattner | f14a67f | 2012-01-26 02:31:22 +0000 | [diff] [blame] | 964 | |
| 965 | // Create a ConstantAggregateZero value if all elements are zeros. |
| 966 | bool isZero = true; |
| 967 | bool isUndef = false; |
| 968 | |
| 969 | if (!V.empty()) { |
| 970 | isUndef = isa<UndefValue>(V[0]); |
| 971 | isZero = V[0]->isNullValue(); |
| 972 | if (isUndef || isZero) { |
| 973 | for (unsigned i = 0, e = V.size(); i != e; ++i) { |
| 974 | if (!V[i]->isNullValue()) |
| 975 | isZero = false; |
| 976 | if (!isa<UndefValue>(V[i])) |
| 977 | isUndef = false; |
| 978 | } |
| 979 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 980 | } |
Chris Lattner | f14a67f | 2012-01-26 02:31:22 +0000 | [diff] [blame] | 981 | if (isZero) |
| 982 | return ConstantAggregateZero::get(ST); |
| 983 | if (isUndef) |
| 984 | return UndefValue::get(ST); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 985 | |
Chris Lattner | f14a67f | 2012-01-26 02:31:22 +0000 | [diff] [blame] | 986 | return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V); |
Owen Anderson | 45308b5 | 2009-07-27 22:29:26 +0000 | [diff] [blame] | 987 | } |
| 988 | |
Chris Lattner | c3e74cd | 2011-08-07 04:18:48 +0000 | [diff] [blame] | 989 | Constant *ConstantStruct::get(StructType *T, ...) { |
Talin | 3a0a30d | 2011-02-28 23:53:27 +0000 | [diff] [blame] | 990 | va_list ap; |
Chris Lattner | cc19efa | 2011-06-20 04:01:31 +0000 | [diff] [blame] | 991 | SmallVector<Constant*, 8> Values; |
| 992 | va_start(ap, T); |
| 993 | while (Constant *Val = va_arg(ap, llvm::Constant*)) |
Talin | 3a0a30d | 2011-02-28 23:53:27 +0000 | [diff] [blame] | 994 | Values.push_back(Val); |
Talin | de422be | 2011-03-01 18:00:49 +0000 | [diff] [blame] | 995 | va_end(ap); |
Chris Lattner | cc19efa | 2011-06-20 04:01:31 +0000 | [diff] [blame] | 996 | return get(T, Values); |
Talin | 3a0a30d | 2011-02-28 23:53:27 +0000 | [diff] [blame] | 997 | } |
| 998 | |
Jay Foad | 89d9b81 | 2011-07-25 10:14:44 +0000 | [diff] [blame] | 999 | ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V) |
Gabor Greif | f6caff66 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 1000 | : Constant(T, ConstantVectorVal, |
| 1001 | OperandTraits<ConstantVector>::op_end(this) - V.size(), |
| 1002 | V.size()) { |
Jay Foad | 89d9b81 | 2011-07-25 10:14:44 +0000 | [diff] [blame] | 1003 | for (size_t i = 0, e = V.size(); i != e; i++) |
| 1004 | assert(V[i]->getType() == T->getElementType() && |
Dan Gohman | 3097807 | 2007-05-24 14:36:04 +0000 | [diff] [blame] | 1005 | "Initializer for vector element doesn't match vector element type!"); |
Jay Foad | 89d9b81 | 2011-07-25 10:14:44 +0000 | [diff] [blame] | 1006 | std::copy(V.begin(), V.end(), op_begin()); |
Brian Gaeke | 0220904 | 2004-08-20 06:00:58 +0000 | [diff] [blame] | 1007 | } |
| 1008 | |
Owen Anderson | 4aa3295 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 1009 | // ConstantVector accessors. |
Jay Foad | b8a8bed3 | 2011-06-22 09:10:19 +0000 | [diff] [blame] | 1010 | Constant *ConstantVector::get(ArrayRef<Constant*> V) { |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 1011 | if (Constant *C = getImpl(V)) |
| 1012 | return C; |
| 1013 | VectorType *Ty = VectorType::get(V.front()->getType(), V.size()); |
| 1014 | return Ty->getContext().pImpl->VectorConstants.getOrCreate(Ty, V); |
| 1015 | } |
| 1016 | Constant *ConstantVector::getImpl(ArrayRef<Constant*> V) { |
Jay Foad | 9f32cfd | 2011-01-27 14:44:55 +0000 | [diff] [blame] | 1017 | assert(!V.empty() && "Vectors can't be empty"); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1018 | VectorType *T = VectorType::get(V.front()->getType(), V.size()); |
Jay Foad | 9f32cfd | 2011-01-27 14:44:55 +0000 | [diff] [blame] | 1019 | |
Chris Lattner | 6922931 | 2011-02-15 00:14:00 +0000 | [diff] [blame] | 1020 | // If this is an all-undef or all-zero vector, return a |
Owen Anderson | 4aa3295 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 1021 | // ConstantAggregateZero or UndefValue. |
| 1022 | Constant *C = V[0]; |
| 1023 | bool isZero = C->isNullValue(); |
| 1024 | bool isUndef = isa<UndefValue>(C); |
| 1025 | |
| 1026 | if (isZero || isUndef) { |
| 1027 | for (unsigned i = 1, e = V.size(); i != e; ++i) |
| 1028 | if (V[i] != C) { |
| 1029 | isZero = isUndef = false; |
| 1030 | break; |
| 1031 | } |
| 1032 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1033 | |
Owen Anderson | 4aa3295 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 1034 | if (isZero) |
Owen Anderson | b292b8c | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 1035 | return ConstantAggregateZero::get(T); |
Owen Anderson | 4aa3295 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 1036 | if (isUndef) |
Owen Anderson | b292b8c | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 1037 | return UndefValue::get(T); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1038 | |
Chris Lattner | 978fe0c | 2012-01-30 06:21:21 +0000 | [diff] [blame] | 1039 | // Check to see if all of the elements are ConstantFP or ConstantInt and if |
| 1040 | // the element type is compatible with ConstantDataVector. If so, use it. |
Chris Lattner | cf9e8f6 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 1041 | if (ConstantDataSequential::isElementTypeCompatible(C->getType())) { |
Chris Lattner | 978fe0c | 2012-01-30 06:21:21 +0000 | [diff] [blame] | 1042 | // We speculatively build the elements here even if it turns out that there |
| 1043 | // is a constantexpr or something else weird in the array, since it is so |
| 1044 | // uncommon for that to happen. |
| 1045 | if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) { |
| 1046 | if (CI->getType()->isIntegerTy(8)) { |
| 1047 | SmallVector<uint8_t, 16> Elts; |
| 1048 | for (unsigned i = 0, e = V.size(); i != e; ++i) |
| 1049 | if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i])) |
| 1050 | Elts.push_back(CI->getZExtValue()); |
| 1051 | else |
| 1052 | break; |
| 1053 | if (Elts.size() == V.size()) |
| 1054 | return ConstantDataVector::get(C->getContext(), Elts); |
| 1055 | } else if (CI->getType()->isIntegerTy(16)) { |
| 1056 | SmallVector<uint16_t, 16> Elts; |
| 1057 | for (unsigned i = 0, e = V.size(); i != e; ++i) |
| 1058 | if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i])) |
| 1059 | Elts.push_back(CI->getZExtValue()); |
| 1060 | else |
| 1061 | break; |
| 1062 | if (Elts.size() == V.size()) |
| 1063 | return ConstantDataVector::get(C->getContext(), Elts); |
| 1064 | } else if (CI->getType()->isIntegerTy(32)) { |
| 1065 | SmallVector<uint32_t, 16> Elts; |
| 1066 | for (unsigned i = 0, e = V.size(); i != e; ++i) |
| 1067 | if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i])) |
| 1068 | Elts.push_back(CI->getZExtValue()); |
| 1069 | else |
| 1070 | break; |
| 1071 | if (Elts.size() == V.size()) |
| 1072 | return ConstantDataVector::get(C->getContext(), Elts); |
| 1073 | } else if (CI->getType()->isIntegerTy(64)) { |
| 1074 | SmallVector<uint64_t, 16> Elts; |
| 1075 | for (unsigned i = 0, e = V.size(); i != e; ++i) |
| 1076 | if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i])) |
| 1077 | Elts.push_back(CI->getZExtValue()); |
| 1078 | else |
| 1079 | break; |
| 1080 | if (Elts.size() == V.size()) |
| 1081 | return ConstantDataVector::get(C->getContext(), Elts); |
| 1082 | } |
| 1083 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1084 | |
Chris Lattner | 978fe0c | 2012-01-30 06:21:21 +0000 | [diff] [blame] | 1085 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { |
| 1086 | if (CFP->getType()->isFloatTy()) { |
| 1087 | SmallVector<float, 16> Elts; |
| 1088 | for (unsigned i = 0, e = V.size(); i != e; ++i) |
| 1089 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i])) |
| 1090 | Elts.push_back(CFP->getValueAPF().convertToFloat()); |
| 1091 | else |
| 1092 | break; |
| 1093 | if (Elts.size() == V.size()) |
| 1094 | return ConstantDataVector::get(C->getContext(), Elts); |
| 1095 | } else if (CFP->getType()->isDoubleTy()) { |
| 1096 | SmallVector<double, 16> Elts; |
| 1097 | for (unsigned i = 0, e = V.size(); i != e; ++i) |
| 1098 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i])) |
| 1099 | Elts.push_back(CFP->getValueAPF().convertToDouble()); |
| 1100 | else |
| 1101 | break; |
| 1102 | if (Elts.size() == V.size()) |
| 1103 | return ConstantDataVector::get(C->getContext(), Elts); |
| 1104 | } |
| 1105 | } |
| 1106 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1107 | |
Chris Lattner | 978fe0c | 2012-01-30 06:21:21 +0000 | [diff] [blame] | 1108 | // Otherwise, the element type isn't compatible with ConstantDataVector, or |
| 1109 | // the operand list constants a ConstantExpr or something else strange. |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 1110 | return nullptr; |
Owen Anderson | 4aa3295 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 1111 | } |
| 1112 | |
Chris Lattner | e9eed29 | 2012-01-25 05:19:54 +0000 | [diff] [blame] | 1113 | Constant *ConstantVector::getSplat(unsigned NumElts, Constant *V) { |
Chris Lattner | 978fe0c | 2012-01-30 06:21:21 +0000 | [diff] [blame] | 1114 | // If this splat is compatible with ConstantDataVector, use it instead of |
| 1115 | // ConstantVector. |
| 1116 | if ((isa<ConstantFP>(V) || isa<ConstantInt>(V)) && |
| 1117 | ConstantDataSequential::isElementTypeCompatible(V->getType())) |
| 1118 | return ConstantDataVector::getSplat(NumElts, V); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1119 | |
Chris Lattner | e9eed29 | 2012-01-25 05:19:54 +0000 | [diff] [blame] | 1120 | SmallVector<Constant*, 32> Elts(NumElts, V); |
| 1121 | return get(Elts); |
| 1122 | } |
| 1123 | |
| 1124 | |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1125 | // Utility function for determining if a ConstantExpr is a CastOp or not. This |
| 1126 | // can't be inline because we don't want to #include Instruction.h into |
| 1127 | // Constant.h |
| 1128 | bool ConstantExpr::isCast() const { |
| 1129 | return Instruction::isCast(getOpcode()); |
| 1130 | } |
| 1131 | |
Reid Spencer | ee3c991 | 2006-12-04 05:19:50 +0000 | [diff] [blame] | 1132 | bool ConstantExpr::isCompare() const { |
Nick Lewycky | a21d3da | 2009-07-08 03:04:38 +0000 | [diff] [blame] | 1133 | return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp; |
Reid Spencer | ee3c991 | 2006-12-04 05:19:50 +0000 | [diff] [blame] | 1134 | } |
| 1135 | |
Dan Gohman | 7190d48 | 2009-09-10 23:37:55 +0000 | [diff] [blame] | 1136 | bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const { |
| 1137 | if (getOpcode() != Instruction::GetElementPtr) return false; |
| 1138 | |
| 1139 | gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1140 | User::const_op_iterator OI = std::next(this->op_begin()); |
Dan Gohman | 7190d48 | 2009-09-10 23:37:55 +0000 | [diff] [blame] | 1141 | |
| 1142 | // Skip the first index, as it has no static limit. |
| 1143 | ++GEPI; |
| 1144 | ++OI; |
| 1145 | |
| 1146 | // The remaining indices must be compile-time known integers within the |
| 1147 | // bounds of the corresponding notional static array types. |
| 1148 | for (; GEPI != E; ++GEPI, ++OI) { |
| 1149 | ConstantInt *CI = dyn_cast<ConstantInt>(*OI); |
| 1150 | if (!CI) return false; |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1151 | if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI)) |
Dan Gohman | 7190d48 | 2009-09-10 23:37:55 +0000 | [diff] [blame] | 1152 | if (CI->getValue().getActiveBits() > 64 || |
| 1153 | CI->getZExtValue() >= ATy->getNumElements()) |
| 1154 | return false; |
| 1155 | } |
| 1156 | |
| 1157 | // All the indices checked out. |
| 1158 | return true; |
| 1159 | } |
| 1160 | |
Dan Gohman | 1ecaf45 | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1161 | bool ConstantExpr::hasIndices() const { |
| 1162 | return getOpcode() == Instruction::ExtractValue || |
| 1163 | getOpcode() == Instruction::InsertValue; |
| 1164 | } |
| 1165 | |
Jay Foad | 0091fe8 | 2011-04-13 15:22:40 +0000 | [diff] [blame] | 1166 | ArrayRef<unsigned> ConstantExpr::getIndices() const { |
Dan Gohman | 1ecaf45 | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1167 | if (const ExtractValueConstantExpr *EVCE = |
| 1168 | dyn_cast<ExtractValueConstantExpr>(this)) |
| 1169 | return EVCE->Indices; |
Dan Gohman | a469bdb | 2008-06-23 16:39:44 +0000 | [diff] [blame] | 1170 | |
| 1171 | return cast<InsertValueConstantExpr>(this)->Indices; |
Dan Gohman | 1ecaf45 | 2008-05-31 00:58:22 +0000 | [diff] [blame] | 1172 | } |
| 1173 | |
Reid Spencer | 10fbf0e | 2006-12-03 05:48:19 +0000 | [diff] [blame] | 1174 | unsigned ConstantExpr::getPredicate() const { |
Chris Lattner | d04e32d | 2011-07-17 06:01:30 +0000 | [diff] [blame] | 1175 | assert(isCompare()); |
Chris Lattner | ef65009 | 2007-10-18 16:26:24 +0000 | [diff] [blame] | 1176 | return ((const CompareConstantExpr*)this)->predicate; |
Reid Spencer | 10fbf0e | 2006-12-03 05:48:19 +0000 | [diff] [blame] | 1177 | } |
Chris Lattner | 60e0dd7 | 2001-10-03 06:12:09 +0000 | [diff] [blame] | 1178 | |
Chris Lattner | 7c1018a | 2006-07-14 19:37:40 +0000 | [diff] [blame] | 1179 | /// getWithOperandReplaced - Return a constant expression identical to this |
| 1180 | /// one, but with the specified operand set to the specified value. |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1181 | Constant * |
| 1182 | ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const { |
Chris Lattner | 7c1018a | 2006-07-14 19:37:40 +0000 | [diff] [blame] | 1183 | assert(Op->getType() == getOperand(OpNo)->getType() && |
| 1184 | "Replacing operand with value of different type!"); |
Chris Lattner | 22781634 | 2006-07-14 22:20:01 +0000 | [diff] [blame] | 1185 | if (getOperand(OpNo) == Op) |
| 1186 | return const_cast<ConstantExpr*>(this); |
Chris Lattner | 37e3835 | 2012-01-26 20:37:11 +0000 | [diff] [blame] | 1187 | |
| 1188 | SmallVector<Constant*, 8> NewOps; |
| 1189 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) |
| 1190 | NewOps.push_back(i == OpNo ? Op : getOperand(i)); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1191 | |
Chris Lattner | 37e3835 | 2012-01-26 20:37:11 +0000 | [diff] [blame] | 1192 | return getWithOperands(NewOps); |
Chris Lattner | 22781634 | 2006-07-14 22:20:01 +0000 | [diff] [blame] | 1193 | } |
| 1194 | |
| 1195 | /// getWithOperands - This returns the current constant expression with the |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1196 | /// operands replaced with the specified values. The specified array must |
| 1197 | /// have the same number of operands as our current one. |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1198 | Constant *ConstantExpr::getWithOperands(ArrayRef<Constant *> Ops, Type *Ty, |
| 1199 | bool OnlyIfReduced) const { |
Jay Foad | 5c984e56 | 2011-04-13 13:46:01 +0000 | [diff] [blame] | 1200 | assert(Ops.size() == getNumOperands() && "Operand count mismatch!"); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1201 | bool AnyChange = Ty != getType(); |
| 1202 | for (unsigned i = 0; i != Ops.size(); ++i) |
Chris Lattner | 22781634 | 2006-07-14 22:20:01 +0000 | [diff] [blame] | 1203 | AnyChange |= Ops[i] != getOperand(i); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1204 | |
Chris Lattner | 22781634 | 2006-07-14 22:20:01 +0000 | [diff] [blame] | 1205 | if (!AnyChange) // No operands changed, return self. |
| 1206 | return const_cast<ConstantExpr*>(this); |
| 1207 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1208 | Type *OnlyIfReducedTy = OnlyIfReduced ? Ty : nullptr; |
Chris Lattner | 22781634 | 2006-07-14 22:20:01 +0000 | [diff] [blame] | 1209 | switch (getOpcode()) { |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1210 | case Instruction::Trunc: |
| 1211 | case Instruction::ZExt: |
| 1212 | case Instruction::SExt: |
| 1213 | case Instruction::FPTrunc: |
| 1214 | case Instruction::FPExt: |
| 1215 | case Instruction::UIToFP: |
| 1216 | case Instruction::SIToFP: |
| 1217 | case Instruction::FPToUI: |
| 1218 | case Instruction::FPToSI: |
| 1219 | case Instruction::PtrToInt: |
| 1220 | case Instruction::IntToPtr: |
| 1221 | case Instruction::BitCast: |
Matt Arsenault | b03bd4d | 2013-11-15 01:34:59 +0000 | [diff] [blame] | 1222 | case Instruction::AddrSpaceCast: |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1223 | return ConstantExpr::getCast(getOpcode(), Ops[0], Ty, OnlyIfReduced); |
Chris Lattner | 22781634 | 2006-07-14 22:20:01 +0000 | [diff] [blame] | 1224 | case Instruction::Select: |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1225 | return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2], OnlyIfReducedTy); |
Chris Lattner | 22781634 | 2006-07-14 22:20:01 +0000 | [diff] [blame] | 1226 | case Instruction::InsertElement: |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1227 | return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2], |
| 1228 | OnlyIfReducedTy); |
Chris Lattner | 22781634 | 2006-07-14 22:20:01 +0000 | [diff] [blame] | 1229 | case Instruction::ExtractElement: |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1230 | return ConstantExpr::getExtractElement(Ops[0], Ops[1], OnlyIfReducedTy); |
Chris Lattner | 37e3835 | 2012-01-26 20:37:11 +0000 | [diff] [blame] | 1231 | case Instruction::InsertValue: |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1232 | return ConstantExpr::getInsertValue(Ops[0], Ops[1], getIndices(), |
| 1233 | OnlyIfReducedTy); |
Chris Lattner | 37e3835 | 2012-01-26 20:37:11 +0000 | [diff] [blame] | 1234 | case Instruction::ExtractValue: |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1235 | return ConstantExpr::getExtractValue(Ops[0], getIndices(), OnlyIfReducedTy); |
Chris Lattner | 22781634 | 2006-07-14 22:20:01 +0000 | [diff] [blame] | 1236 | case Instruction::ShuffleVector: |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1237 | return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2], |
| 1238 | OnlyIfReducedTy); |
Chris Lattner | b5d7030 | 2007-02-19 20:01:23 +0000 | [diff] [blame] | 1239 | case Instruction::GetElementPtr: |
Chris Lattner | 37e3835 | 2012-01-26 20:37:11 +0000 | [diff] [blame] | 1240 | return ConstantExpr::getGetElementPtr(Ops[0], Ops.slice(1), |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1241 | cast<GEPOperator>(this)->isInBounds(), |
| 1242 | OnlyIfReducedTy); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 1243 | case Instruction::ICmp: |
| 1244 | case Instruction::FCmp: |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1245 | return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1], |
| 1246 | OnlyIfReducedTy); |
Chris Lattner | 22781634 | 2006-07-14 22:20:01 +0000 | [diff] [blame] | 1247 | default: |
| 1248 | assert(getNumOperands() == 2 && "Must be binary operator?"); |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1249 | return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData, |
| 1250 | OnlyIfReducedTy); |
Chris Lattner | 7c1018a | 2006-07-14 19:37:40 +0000 | [diff] [blame] | 1251 | } |
| 1252 | } |
| 1253 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1254 | |
| 1255 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1256 | // isValueValidForType implementations |
| 1257 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1258 | bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) { |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 1259 | unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay |
| 1260 | if (Ty->isIntegerTy(1)) |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1261 | return Val == 0 || Val == 1; |
Reid Spencer | d7a00d7 | 2007-02-05 23:47:56 +0000 | [diff] [blame] | 1262 | if (NumBits >= 64) |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1263 | return true; // always true, has to fit in largest type |
| 1264 | uint64_t Max = (1ll << NumBits) - 1; |
| 1265 | return Val <= Max; |
Reid Spencer | e733472 | 2006-12-19 01:28:19 +0000 | [diff] [blame] | 1266 | } |
| 1267 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1268 | bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) { |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 1269 | unsigned NumBits = Ty->getIntegerBitWidth(); |
| 1270 | if (Ty->isIntegerTy(1)) |
Reid Spencer | a94d394 | 2007-01-19 21:13:56 +0000 | [diff] [blame] | 1271 | return Val == 0 || Val == 1 || Val == -1; |
Reid Spencer | d7a00d7 | 2007-02-05 23:47:56 +0000 | [diff] [blame] | 1272 | if (NumBits >= 64) |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1273 | return true; // always true, has to fit in largest type |
| 1274 | int64_t Min = -(1ll << (NumBits-1)); |
| 1275 | int64_t Max = (1ll << (NumBits-1)) - 1; |
| 1276 | return (Val >= Min && Val <= Max); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1277 | } |
| 1278 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1279 | bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) { |
Dale Johannesen | d246b2c | 2007-08-30 00:23:21 +0000 | [diff] [blame] | 1280 | // convert modifies in place, so make a copy. |
| 1281 | APFloat Val2 = APFloat(Val); |
Dale Johannesen | 4f0bd68 | 2008-10-09 23:00:39 +0000 | [diff] [blame] | 1282 | bool losesInfo; |
Chris Lattner | 6b72759 | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 1283 | switch (Ty->getTypeID()) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1284 | default: |
| 1285 | return false; // These can't be represented as floating point! |
| 1286 | |
Dale Johannesen | d246b2c | 2007-08-30 00:23:21 +0000 | [diff] [blame] | 1287 | // FIXME rounding mode needs to be more flexible |
Dan Gohman | 518cda4 | 2011-12-17 00:04:22 +0000 | [diff] [blame] | 1288 | case Type::HalfTyID: { |
| 1289 | if (&Val2.getSemantics() == &APFloat::IEEEhalf) |
| 1290 | return true; |
| 1291 | Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo); |
| 1292 | return !losesInfo; |
| 1293 | } |
Dale Johannesen | 4f0bd68 | 2008-10-09 23:00:39 +0000 | [diff] [blame] | 1294 | case Type::FloatTyID: { |
| 1295 | if (&Val2.getSemantics() == &APFloat::IEEEsingle) |
| 1296 | return true; |
| 1297 | Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo); |
| 1298 | return !losesInfo; |
| 1299 | } |
| 1300 | case Type::DoubleTyID: { |
Dan Gohman | 518cda4 | 2011-12-17 00:04:22 +0000 | [diff] [blame] | 1301 | if (&Val2.getSemantics() == &APFloat::IEEEhalf || |
| 1302 | &Val2.getSemantics() == &APFloat::IEEEsingle || |
Dale Johannesen | 4f0bd68 | 2008-10-09 23:00:39 +0000 | [diff] [blame] | 1303 | &Val2.getSemantics() == &APFloat::IEEEdouble) |
| 1304 | return true; |
| 1305 | Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo); |
| 1306 | return !losesInfo; |
| 1307 | } |
Dale Johannesen | bdad809 | 2007-08-09 22:51:36 +0000 | [diff] [blame] | 1308 | case Type::X86_FP80TyID: |
Dan Gohman | 518cda4 | 2011-12-17 00:04:22 +0000 | [diff] [blame] | 1309 | return &Val2.getSemantics() == &APFloat::IEEEhalf || |
| 1310 | &Val2.getSemantics() == &APFloat::IEEEsingle || |
Dale Johannesen | 028084e | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 1311 | &Val2.getSemantics() == &APFloat::IEEEdouble || |
| 1312 | &Val2.getSemantics() == &APFloat::x87DoubleExtended; |
Dale Johannesen | bdad809 | 2007-08-09 22:51:36 +0000 | [diff] [blame] | 1313 | case Type::FP128TyID: |
Dan Gohman | 518cda4 | 2011-12-17 00:04:22 +0000 | [diff] [blame] | 1314 | return &Val2.getSemantics() == &APFloat::IEEEhalf || |
| 1315 | &Val2.getSemantics() == &APFloat::IEEEsingle || |
Dale Johannesen | 028084e | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 1316 | &Val2.getSemantics() == &APFloat::IEEEdouble || |
| 1317 | &Val2.getSemantics() == &APFloat::IEEEquad; |
Dale Johannesen | 007aa37 | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 1318 | case Type::PPC_FP128TyID: |
Dan Gohman | 518cda4 | 2011-12-17 00:04:22 +0000 | [diff] [blame] | 1319 | return &Val2.getSemantics() == &APFloat::IEEEhalf || |
| 1320 | &Val2.getSemantics() == &APFloat::IEEEsingle || |
Dale Johannesen | 007aa37 | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 1321 | &Val2.getSemantics() == &APFloat::IEEEdouble || |
| 1322 | &Val2.getSemantics() == &APFloat::PPCDoubleDouble; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1323 | } |
Chris Lattner | aa237256 | 2006-05-24 17:04:05 +0000 | [diff] [blame] | 1324 | } |
Chris Lattner | 9655e54 | 2001-07-20 19:16:02 +0000 | [diff] [blame] | 1325 | |
Chris Lattner | 030af79 | 2012-01-24 05:42:11 +0000 | [diff] [blame] | 1326 | |
Chris Lattner | 49d855c | 2001-09-07 16:46:31 +0000 | [diff] [blame] | 1327 | //===----------------------------------------------------------------------===// |
Chris Lattner | 49d855c | 2001-09-07 16:46:31 +0000 | [diff] [blame] | 1328 | // Factory Function Implementation |
| 1329 | |
Chris Lattner | c7f9fd4 | 2012-01-23 15:20:12 +0000 | [diff] [blame] | 1330 | ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) { |
Chris Lattner | 13ee795 | 2010-08-28 04:09:24 +0000 | [diff] [blame] | 1331 | assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) && |
Owen Anderson | b292b8c | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 1332 | "Cannot create an aggregate zero of non-aggregate type!"); |
| 1333 | |
Chris Lattner | c7f9fd4 | 2012-01-23 15:20:12 +0000 | [diff] [blame] | 1334 | ConstantAggregateZero *&Entry = Ty->getContext().pImpl->CAZConstants[Ty]; |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 1335 | if (!Entry) |
Chris Lattner | c7f9fd4 | 2012-01-23 15:20:12 +0000 | [diff] [blame] | 1336 | Entry = new ConstantAggregateZero(Ty); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1337 | |
Chris Lattner | c7f9fd4 | 2012-01-23 15:20:12 +0000 | [diff] [blame] | 1338 | return Entry; |
Owen Anderson | b292b8c | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 1339 | } |
| 1340 | |
Chris Lattner | 030af79 | 2012-01-24 05:42:11 +0000 | [diff] [blame] | 1341 | /// destroyConstant - Remove the constant from the constant table. |
Dan Gohman | 92b551b | 2009-03-03 02:55:14 +0000 | [diff] [blame] | 1342 | /// |
Owen Anderson | 0d2de8c | 2009-06-20 00:24:58 +0000 | [diff] [blame] | 1343 | void ConstantAggregateZero::destroyConstant() { |
Chris Lattner | c7f9fd4 | 2012-01-23 15:20:12 +0000 | [diff] [blame] | 1344 | getContext().pImpl->CAZConstants.erase(getType()); |
Chris Lattner | 9fba3da | 2004-02-15 05:53:04 +0000 | [diff] [blame] | 1345 | destroyConstantImpl(); |
| 1346 | } |
| 1347 | |
Dan Gohman | 92b551b | 2009-03-03 02:55:14 +0000 | [diff] [blame] | 1348 | /// destroyConstant - Remove the constant from the constant table... |
| 1349 | /// |
Owen Anderson | 0d2de8c | 2009-06-20 00:24:58 +0000 | [diff] [blame] | 1350 | void ConstantArray::destroyConstant() { |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1351 | getType()->getContext().pImpl->ArrayConstants.remove(this); |
Chris Lattner | 98fa07b | 2003-05-23 20:03:32 +0000 | [diff] [blame] | 1352 | destroyConstantImpl(); |
| 1353 | } |
| 1354 | |
Chris Lattner | 81fabb0 | 2002-08-26 17:53:56 +0000 | [diff] [blame] | 1355 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 1356 | //---- ConstantStruct::get() implementation... |
Chris Lattner | 49d855c | 2001-09-07 16:46:31 +0000 | [diff] [blame] | 1357 | // |
Chris Lattner | b50d135 | 2003-10-05 00:17:43 +0000 | [diff] [blame] | 1358 | |
Chris Lattner | d7a7330 | 2001-10-13 06:57:33 +0000 | [diff] [blame] | 1359 | // destroyConstant - Remove the constant from the constant table... |
Chris Lattner | 883ad0b | 2001-10-03 15:39:36 +0000 | [diff] [blame] | 1360 | // |
Owen Anderson | 0d2de8c | 2009-06-20 00:24:58 +0000 | [diff] [blame] | 1361 | void ConstantStruct::destroyConstant() { |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1362 | getType()->getContext().pImpl->StructConstants.remove(this); |
Chris Lattner | d7a7330 | 2001-10-13 06:57:33 +0000 | [diff] [blame] | 1363 | destroyConstantImpl(); |
| 1364 | } |
Chris Lattner | 883ad0b | 2001-10-03 15:39:36 +0000 | [diff] [blame] | 1365 | |
Brian Gaeke | 0220904 | 2004-08-20 06:00:58 +0000 | [diff] [blame] | 1366 | // destroyConstant - Remove the constant from the constant table... |
| 1367 | // |
Owen Anderson | 0d2de8c | 2009-06-20 00:24:58 +0000 | [diff] [blame] | 1368 | void ConstantVector::destroyConstant() { |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1369 | getType()->getContext().pImpl->VectorConstants.remove(this); |
Brian Gaeke | 0220904 | 2004-08-20 06:00:58 +0000 | [diff] [blame] | 1370 | destroyConstantImpl(); |
| 1371 | } |
| 1372 | |
Duncan Sands | e6beec6 | 2012-11-13 12:59:33 +0000 | [diff] [blame] | 1373 | /// getSplatValue - If this is a splat vector constant, meaning that all of |
| 1374 | /// the elements have the same value, return that value. Otherwise return 0. |
| 1375 | Constant *Constant::getSplatValue() const { |
| 1376 | assert(this->getType()->isVectorTy() && "Only valid for vectors!"); |
| 1377 | if (isa<ConstantAggregateZero>(this)) |
| 1378 | return getNullValue(this->getType()->getVectorElementType()); |
| 1379 | if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) |
| 1380 | return CV->getSplatValue(); |
| 1381 | if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) |
| 1382 | return CV->getSplatValue(); |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 1383 | return nullptr; |
Duncan Sands | e6beec6 | 2012-11-13 12:59:33 +0000 | [diff] [blame] | 1384 | } |
| 1385 | |
Dan Gohman | 0715920 | 2007-10-17 17:51:30 +0000 | [diff] [blame] | 1386 | /// getSplatValue - If this is a splat constant, where all of the |
| 1387 | /// elements have the same value, return that value. Otherwise return null. |
Duncan Sands | cf0ff03 | 2011-02-01 08:39:12 +0000 | [diff] [blame] | 1388 | Constant *ConstantVector::getSplatValue() const { |
Dan Gohman | 0715920 | 2007-10-17 17:51:30 +0000 | [diff] [blame] | 1389 | // Check out first element. |
| 1390 | Constant *Elt = getOperand(0); |
| 1391 | // Then make sure all remaining elements point to the same value. |
| 1392 | for (unsigned I = 1, E = getNumOperands(); I < E; ++I) |
Chris Lattner | d04e32d | 2011-07-17 06:01:30 +0000 | [diff] [blame] | 1393 | if (getOperand(I) != Elt) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 1394 | return nullptr; |
Dan Gohman | 0715920 | 2007-10-17 17:51:30 +0000 | [diff] [blame] | 1395 | return Elt; |
| 1396 | } |
| 1397 | |
Duncan Sands | e6beec6 | 2012-11-13 12:59:33 +0000 | [diff] [blame] | 1398 | /// If C is a constant integer then return its value, otherwise C must be a |
| 1399 | /// vector of constant integers, all equal, and the common value is returned. |
| 1400 | const APInt &Constant::getUniqueInteger() const { |
| 1401 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(this)) |
| 1402 | return CI->getValue(); |
| 1403 | assert(this->getSplatValue() && "Doesn't contain a unique integer!"); |
| 1404 | const Constant *C = this->getAggregateElement(0U); |
| 1405 | assert(C && isa<ConstantInt>(C) && "Not a vector of numbers!"); |
| 1406 | return cast<ConstantInt>(C)->getValue(); |
| 1407 | } |
| 1408 | |
| 1409 | |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 1410 | //---- ConstantPointerNull::get() implementation. |
Chris Lattner | d7a7330 | 2001-10-13 06:57:33 +0000 | [diff] [blame] | 1411 | // |
Chris Lattner | 98fa07b | 2003-05-23 20:03:32 +0000 | [diff] [blame] | 1412 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1413 | ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) { |
Chris Lattner | c7f9fd4 | 2012-01-23 15:20:12 +0000 | [diff] [blame] | 1414 | ConstantPointerNull *&Entry = Ty->getContext().pImpl->CPNConstants[Ty]; |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 1415 | if (!Entry) |
Chris Lattner | c7f9fd4 | 2012-01-23 15:20:12 +0000 | [diff] [blame] | 1416 | Entry = new ConstantPointerNull(Ty); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1417 | |
Chris Lattner | c7f9fd4 | 2012-01-23 15:20:12 +0000 | [diff] [blame] | 1418 | return Entry; |
Chris Lattner | 883ad0b | 2001-10-03 15:39:36 +0000 | [diff] [blame] | 1419 | } |
| 1420 | |
Chris Lattner | 0c6e0b9 | 2002-08-18 00:40:04 +0000 | [diff] [blame] | 1421 | // destroyConstant - Remove the constant from the constant table... |
| 1422 | // |
Owen Anderson | 0d2de8c | 2009-06-20 00:24:58 +0000 | [diff] [blame] | 1423 | void ConstantPointerNull::destroyConstant() { |
Chris Lattner | c7f9fd4 | 2012-01-23 15:20:12 +0000 | [diff] [blame] | 1424 | getContext().pImpl->CPNConstants.erase(getType()); |
| 1425 | // Free the constant and any dangling references to it. |
Chris Lattner | 0c6e0b9 | 2002-08-18 00:40:04 +0000 | [diff] [blame] | 1426 | destroyConstantImpl(); |
| 1427 | } |
| 1428 | |
| 1429 | |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 1430 | //---- UndefValue::get() implementation. |
Chris Lattner | d5f67d8 | 2004-10-16 18:07:16 +0000 | [diff] [blame] | 1431 | // |
| 1432 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1433 | UndefValue *UndefValue::get(Type *Ty) { |
Chris Lattner | c7f9fd4 | 2012-01-23 15:20:12 +0000 | [diff] [blame] | 1434 | UndefValue *&Entry = Ty->getContext().pImpl->UVConstants[Ty]; |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 1435 | if (!Entry) |
Chris Lattner | c7f9fd4 | 2012-01-23 15:20:12 +0000 | [diff] [blame] | 1436 | Entry = new UndefValue(Ty); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1437 | |
Chris Lattner | c7f9fd4 | 2012-01-23 15:20:12 +0000 | [diff] [blame] | 1438 | return Entry; |
Chris Lattner | d5f67d8 | 2004-10-16 18:07:16 +0000 | [diff] [blame] | 1439 | } |
| 1440 | |
| 1441 | // destroyConstant - Remove the constant from the constant table. |
| 1442 | // |
Owen Anderson | 0d2de8c | 2009-06-20 00:24:58 +0000 | [diff] [blame] | 1443 | void UndefValue::destroyConstant() { |
Chris Lattner | c7f9fd4 | 2012-01-23 15:20:12 +0000 | [diff] [blame] | 1444 | // Free the constant and any dangling references to it. |
| 1445 | getContext().pImpl->UVConstants.erase(getType()); |
Chris Lattner | d5f67d8 | 2004-10-16 18:07:16 +0000 | [diff] [blame] | 1446 | destroyConstantImpl(); |
| 1447 | } |
| 1448 | |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 1449 | //---- BlockAddress::get() implementation. |
| 1450 | // |
| 1451 | |
| 1452 | BlockAddress *BlockAddress::get(BasicBlock *BB) { |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 1453 | assert(BB->getParent() && "Block must have a parent"); |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 1454 | return get(BB->getParent(), BB); |
| 1455 | } |
| 1456 | |
| 1457 | BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) { |
| 1458 | BlockAddress *&BA = |
| 1459 | F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)]; |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 1460 | if (!BA) |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 1461 | BA = new BlockAddress(F, BB); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1462 | |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 1463 | assert(BA->getFunction() == F && "Basic block moved between functions"); |
| 1464 | return BA; |
| 1465 | } |
| 1466 | |
| 1467 | BlockAddress::BlockAddress(Function *F, BasicBlock *BB) |
| 1468 | : Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal, |
| 1469 | &Op<0>(), 2) { |
Chris Lattner | c559a9f | 2009-11-01 03:03:03 +0000 | [diff] [blame] | 1470 | setOperand(0, F); |
| 1471 | setOperand(1, BB); |
Chris Lattner | aa99c94 | 2009-11-01 01:27:45 +0000 | [diff] [blame] | 1472 | BB->AdjustBlockAddressRefCount(1); |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 1473 | } |
| 1474 | |
Chandler Carruth | 6a93692 | 2014-01-19 02:13:50 +0000 | [diff] [blame] | 1475 | BlockAddress *BlockAddress::lookup(const BasicBlock *BB) { |
| 1476 | if (!BB->hasAddressTaken()) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 1477 | return nullptr; |
Chandler Carruth | 6a93692 | 2014-01-19 02:13:50 +0000 | [diff] [blame] | 1478 | |
| 1479 | const Function *F = BB->getParent(); |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 1480 | assert(F && "Block must have a parent"); |
Chandler Carruth | 6a93692 | 2014-01-19 02:13:50 +0000 | [diff] [blame] | 1481 | BlockAddress *BA = |
| 1482 | F->getContext().pImpl->BlockAddresses.lookup(std::make_pair(F, BB)); |
| 1483 | assert(BA && "Refcount and block address map disagree!"); |
| 1484 | return BA; |
| 1485 | } |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 1486 | |
| 1487 | // destroyConstant - Remove the constant from the constant table. |
| 1488 | // |
| 1489 | void BlockAddress::destroyConstant() { |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1490 | getFunction()->getType()->getContext().pImpl |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 1491 | ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock())); |
Chris Lattner | aa99c94 | 2009-11-01 01:27:45 +0000 | [diff] [blame] | 1492 | getBasicBlock()->AdjustBlockAddressRefCount(-1); |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 1493 | destroyConstantImpl(); |
| 1494 | } |
| 1495 | |
| 1496 | void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) { |
| 1497 | // This could be replacing either the Basic Block or the Function. In either |
| 1498 | // case, we have to remove the map entry. |
| 1499 | Function *NewF = getFunction(); |
| 1500 | BasicBlock *NewBB = getBasicBlock(); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1501 | |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 1502 | if (U == &Op<0>()) |
Derek Schuff | ec9dc01 | 2013-06-13 19:51:17 +0000 | [diff] [blame] | 1503 | NewF = cast<Function>(To->stripPointerCasts()); |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 1504 | else |
| 1505 | NewBB = cast<BasicBlock>(To); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1506 | |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 1507 | // See if the 'new' entry already exists, if not, just update this in place |
| 1508 | // and return early. |
| 1509 | BlockAddress *&NewBA = |
| 1510 | getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)]; |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 1511 | if (NewBA) { |
| 1512 | replaceUsesOfWithOnConstantImpl(NewBA); |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 1513 | return; |
| 1514 | } |
| 1515 | |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 1516 | getBasicBlock()->AdjustBlockAddressRefCount(-1); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1517 | |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 1518 | // Remove the old entry, this can't cause the map to rehash (just a |
| 1519 | // tombstone will get added). |
| 1520 | getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(), |
| 1521 | getBasicBlock())); |
| 1522 | NewBA = this; |
| 1523 | setOperand(0, NewF); |
| 1524 | setOperand(1, NewBB); |
| 1525 | getBasicBlock()->AdjustBlockAddressRefCount(1); |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 1526 | } |
| 1527 | |
| 1528 | //---- ConstantExpr::get() implementations. |
Vikram S. Adve | 4e537b2 | 2002-07-14 23:13:17 +0000 | [diff] [blame] | 1529 | // |
Reid Spencer | 8d9336d | 2006-12-31 05:26:44 +0000 | [diff] [blame] | 1530 | |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1531 | /// This is a utility function to handle folding of casts and lookup of the |
Duncan Sands | 7d6c8ae | 2008-03-30 19:38:55 +0000 | [diff] [blame] | 1532 | /// cast in the ExprConstants map. It is used by the various get* methods below. |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1533 | static Constant *getFoldedCast(Instruction::CastOps opc, Constant *C, Type *Ty, |
| 1534 | bool OnlyIfReduced = false) { |
Chris Lattner | 815ae2b | 2003-10-07 22:19:19 +0000 | [diff] [blame] | 1535 | assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!"); |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1536 | // Fold a few common cases |
Chris Lattner | f5edeeb | 2010-02-01 20:48:08 +0000 | [diff] [blame] | 1537 | if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty)) |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1538 | return FC; |
Chris Lattner | acdbe71 | 2003-04-17 19:24:48 +0000 | [diff] [blame] | 1539 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1540 | if (OnlyIfReduced) |
| 1541 | return nullptr; |
| 1542 | |
Owen Anderson | 1584a29 | 2009-08-04 20:25:11 +0000 | [diff] [blame] | 1543 | LLVMContextImpl *pImpl = Ty->getContext().pImpl; |
| 1544 | |
Nadav Rotem | 8833043 | 2013-03-07 01:30:40 +0000 | [diff] [blame] | 1545 | // Look up the constant in the table first to ensure uniqueness. |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 1546 | ConstantExprKeyType Key(opc, C); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1547 | |
Owen Anderson | 1584a29 | 2009-08-04 20:25:11 +0000 | [diff] [blame] | 1548 | return pImpl->ExprConstants.getOrCreate(Ty, Key); |
Vikram S. Adve | 4e537b2 | 2002-07-14 23:13:17 +0000 | [diff] [blame] | 1549 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1550 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1551 | Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty, |
| 1552 | bool OnlyIfReduced) { |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1553 | Instruction::CastOps opc = Instruction::CastOps(oc); |
| 1554 | assert(Instruction::isCast(opc) && "opcode out of range"); |
| 1555 | assert(C && Ty && "Null arguments to getCast"); |
Chris Lattner | 37bc78a | 2010-01-26 21:51:43 +0000 | [diff] [blame] | 1556 | assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!"); |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1557 | |
| 1558 | switch (opc) { |
Chris Lattner | 37bc78a | 2010-01-26 21:51:43 +0000 | [diff] [blame] | 1559 | default: |
| 1560 | llvm_unreachable("Invalid cast opcode"); |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1561 | case Instruction::Trunc: |
| 1562 | return getTrunc(C, Ty, OnlyIfReduced); |
| 1563 | case Instruction::ZExt: |
| 1564 | return getZExt(C, Ty, OnlyIfReduced); |
| 1565 | case Instruction::SExt: |
| 1566 | return getSExt(C, Ty, OnlyIfReduced); |
| 1567 | case Instruction::FPTrunc: |
| 1568 | return getFPTrunc(C, Ty, OnlyIfReduced); |
| 1569 | case Instruction::FPExt: |
| 1570 | return getFPExtend(C, Ty, OnlyIfReduced); |
| 1571 | case Instruction::UIToFP: |
| 1572 | return getUIToFP(C, Ty, OnlyIfReduced); |
| 1573 | case Instruction::SIToFP: |
| 1574 | return getSIToFP(C, Ty, OnlyIfReduced); |
| 1575 | case Instruction::FPToUI: |
| 1576 | return getFPToUI(C, Ty, OnlyIfReduced); |
| 1577 | case Instruction::FPToSI: |
| 1578 | return getFPToSI(C, Ty, OnlyIfReduced); |
| 1579 | case Instruction::PtrToInt: |
| 1580 | return getPtrToInt(C, Ty, OnlyIfReduced); |
| 1581 | case Instruction::IntToPtr: |
| 1582 | return getIntToPtr(C, Ty, OnlyIfReduced); |
| 1583 | case Instruction::BitCast: |
| 1584 | return getBitCast(C, Ty, OnlyIfReduced); |
| 1585 | case Instruction::AddrSpaceCast: |
| 1586 | return getAddrSpaceCast(C, Ty, OnlyIfReduced); |
Chris Lattner | 1ece6f8 | 2005-01-01 15:59:57 +0000 | [diff] [blame] | 1587 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1588 | } |
Reid Spencer | f37dc65 | 2006-12-05 19:14:13 +0000 | [diff] [blame] | 1589 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1590 | Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) { |
Dan Gohman | 7ccc52f | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 1591 | if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits()) |
Dan Gohman | 3cdcc3f | 2010-04-12 22:12:29 +0000 | [diff] [blame] | 1592 | return getBitCast(C, Ty); |
| 1593 | return getZExt(C, Ty); |
Reid Spencer | 5c14088 | 2006-12-04 20:17:56 +0000 | [diff] [blame] | 1594 | } |
| 1595 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1596 | Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) { |
Dan Gohman | 7ccc52f | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 1597 | if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits()) |
Dan Gohman | 3cdcc3f | 2010-04-12 22:12:29 +0000 | [diff] [blame] | 1598 | return getBitCast(C, Ty); |
| 1599 | return getSExt(C, Ty); |
Reid Spencer | 5c14088 | 2006-12-04 20:17:56 +0000 | [diff] [blame] | 1600 | } |
| 1601 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1602 | Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) { |
Dan Gohman | 7ccc52f | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 1603 | if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits()) |
Dan Gohman | 3cdcc3f | 2010-04-12 22:12:29 +0000 | [diff] [blame] | 1604 | return getBitCast(C, Ty); |
| 1605 | return getTrunc(C, Ty); |
Reid Spencer | 5c14088 | 2006-12-04 20:17:56 +0000 | [diff] [blame] | 1606 | } |
| 1607 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1608 | Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) { |
Evgeniy Stepanov | 2338264 | 2013-01-16 14:41:46 +0000 | [diff] [blame] | 1609 | assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast"); |
| 1610 | assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) && |
| 1611 | "Invalid cast"); |
Reid Spencer | bc245a0 | 2006-12-05 03:25:26 +0000 | [diff] [blame] | 1612 | |
Evgeniy Stepanov | 2338264 | 2013-01-16 14:41:46 +0000 | [diff] [blame] | 1613 | if (Ty->isIntOrIntVectorTy()) |
Dan Gohman | 3cdcc3f | 2010-04-12 22:12:29 +0000 | [diff] [blame] | 1614 | return getPtrToInt(S, Ty); |
Matt Arsenault | b03bd4d | 2013-11-15 01:34:59 +0000 | [diff] [blame] | 1615 | |
| 1616 | unsigned SrcAS = S->getType()->getPointerAddressSpace(); |
| 1617 | if (Ty->isPtrOrPtrVectorTy() && SrcAS != Ty->getPointerAddressSpace()) |
| 1618 | return getAddrSpaceCast(S, Ty); |
| 1619 | |
Dan Gohman | 3cdcc3f | 2010-04-12 22:12:29 +0000 | [diff] [blame] | 1620 | return getBitCast(S, Ty); |
Reid Spencer | bc245a0 | 2006-12-05 03:25:26 +0000 | [diff] [blame] | 1621 | } |
| 1622 | |
Matt Arsenault | 21f38f4 | 2013-12-07 02:58:41 +0000 | [diff] [blame] | 1623 | Constant *ConstantExpr::getPointerBitCastOrAddrSpaceCast(Constant *S, |
| 1624 | Type *Ty) { |
| 1625 | assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast"); |
| 1626 | assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast"); |
| 1627 | |
| 1628 | if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace()) |
| 1629 | return getAddrSpaceCast(S, Ty); |
| 1630 | |
| 1631 | return getBitCast(S, Ty); |
| 1632 | } |
| 1633 | |
| 1634 | Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty, |
Reid Spencer | 56521c4 | 2006-12-12 00:51:07 +0000 | [diff] [blame] | 1635 | bool isSigned) { |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1636 | assert(C->getType()->isIntOrIntVectorTy() && |
| 1637 | Ty->isIntOrIntVectorTy() && "Invalid cast"); |
Dan Gohman | 7ccc52f | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 1638 | unsigned SrcBits = C->getType()->getScalarSizeInBits(); |
| 1639 | unsigned DstBits = Ty->getScalarSizeInBits(); |
Reid Spencer | 56521c4 | 2006-12-12 00:51:07 +0000 | [diff] [blame] | 1640 | Instruction::CastOps opcode = |
| 1641 | (SrcBits == DstBits ? Instruction::BitCast : |
| 1642 | (SrcBits > DstBits ? Instruction::Trunc : |
| 1643 | (isSigned ? Instruction::SExt : Instruction::ZExt))); |
| 1644 | return getCast(opcode, C, Ty); |
| 1645 | } |
| 1646 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1647 | Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) { |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1648 | assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() && |
Reid Spencer | 56521c4 | 2006-12-12 00:51:07 +0000 | [diff] [blame] | 1649 | "Invalid cast"); |
Dan Gohman | 7ccc52f | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 1650 | unsigned SrcBits = C->getType()->getScalarSizeInBits(); |
| 1651 | unsigned DstBits = Ty->getScalarSizeInBits(); |
Reid Spencer | ca104e8 | 2006-12-12 05:38:50 +0000 | [diff] [blame] | 1652 | if (SrcBits == DstBits) |
| 1653 | return C; // Avoid a useless cast |
Reid Spencer | 56521c4 | 2006-12-12 00:51:07 +0000 | [diff] [blame] | 1654 | Instruction::CastOps opcode = |
Jay Foad | 9f32cfd | 2011-01-27 14:44:55 +0000 | [diff] [blame] | 1655 | (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt); |
Reid Spencer | 56521c4 | 2006-12-12 00:51:07 +0000 | [diff] [blame] | 1656 | return getCast(opcode, C, Ty); |
| 1657 | } |
| 1658 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1659 | Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) { |
Dan Gohman | 7ccc52f | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 1660 | #ifndef NDEBUG |
| 1661 | bool fromVec = C->getType()->getTypeID() == Type::VectorTyID; |
| 1662 | bool toVec = Ty->getTypeID() == Type::VectorTyID; |
| 1663 | #endif |
| 1664 | assert((fromVec == toVec) && "Cannot convert from scalar to/from vector"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1665 | assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer"); |
| 1666 | assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral"); |
Dan Gohman | 7ccc52f | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 1667 | assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&& |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1668 | "SrcTy must be larger than DestTy for Trunc!"); |
| 1669 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1670 | return getFoldedCast(Instruction::Trunc, C, Ty, OnlyIfReduced); |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1671 | } |
| 1672 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1673 | Constant *ConstantExpr::getSExt(Constant *C, Type *Ty, bool OnlyIfReduced) { |
Dan Gohman | 7ccc52f | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 1674 | #ifndef NDEBUG |
| 1675 | bool fromVec = C->getType()->getTypeID() == Type::VectorTyID; |
| 1676 | bool toVec = Ty->getTypeID() == Type::VectorTyID; |
| 1677 | #endif |
| 1678 | assert((fromVec == toVec) && "Cannot convert from scalar to/from vector"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1679 | assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral"); |
| 1680 | assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer"); |
Dan Gohman | 7ccc52f | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 1681 | assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&& |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1682 | "SrcTy must be smaller than DestTy for SExt!"); |
| 1683 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1684 | return getFoldedCast(Instruction::SExt, C, Ty, OnlyIfReduced); |
Chris Lattner | dd28474 | 2004-04-04 23:20:30 +0000 | [diff] [blame] | 1685 | } |
| 1686 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1687 | Constant *ConstantExpr::getZExt(Constant *C, Type *Ty, bool OnlyIfReduced) { |
Dan Gohman | 7ccc52f | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 1688 | #ifndef NDEBUG |
| 1689 | bool fromVec = C->getType()->getTypeID() == Type::VectorTyID; |
| 1690 | bool toVec = Ty->getTypeID() == Type::VectorTyID; |
| 1691 | #endif |
| 1692 | assert((fromVec == toVec) && "Cannot convert from scalar to/from vector"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1693 | assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral"); |
| 1694 | assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer"); |
Dan Gohman | 7ccc52f | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 1695 | assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&& |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1696 | "SrcTy must be smaller than DestTy for ZExt!"); |
| 1697 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1698 | return getFoldedCast(Instruction::ZExt, C, Ty, OnlyIfReduced); |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1699 | } |
| 1700 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1701 | Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) { |
Dan Gohman | 7ccc52f | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 1702 | #ifndef NDEBUG |
| 1703 | bool fromVec = C->getType()->getTypeID() == Type::VectorTyID; |
| 1704 | bool toVec = Ty->getTypeID() == Type::VectorTyID; |
| 1705 | #endif |
| 1706 | assert((fromVec == toVec) && "Cannot convert from scalar to/from vector"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1707 | assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() && |
Dan Gohman | 7ccc52f | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 1708 | C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&& |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1709 | "This is an illegal floating point truncation!"); |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1710 | return getFoldedCast(Instruction::FPTrunc, C, Ty, OnlyIfReduced); |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1711 | } |
| 1712 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1713 | Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty, bool OnlyIfReduced) { |
Dan Gohman | 7ccc52f | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 1714 | #ifndef NDEBUG |
| 1715 | bool fromVec = C->getType()->getTypeID() == Type::VectorTyID; |
| 1716 | bool toVec = Ty->getTypeID() == Type::VectorTyID; |
| 1717 | #endif |
| 1718 | assert((fromVec == toVec) && "Cannot convert from scalar to/from vector"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1719 | assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() && |
Dan Gohman | 7ccc52f | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 1720 | C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&& |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1721 | "This is an illegal floating point extension!"); |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1722 | return getFoldedCast(Instruction::FPExt, C, Ty, OnlyIfReduced); |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1723 | } |
| 1724 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1725 | Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) { |
Devang Patel | d26344d | 2008-11-03 23:20:04 +0000 | [diff] [blame] | 1726 | #ifndef NDEBUG |
Nate Begeman | d4d45c2 | 2007-11-17 03:58:34 +0000 | [diff] [blame] | 1727 | bool fromVec = C->getType()->getTypeID() == Type::VectorTyID; |
| 1728 | bool toVec = Ty->getTypeID() == Type::VectorTyID; |
Devang Patel | d26344d | 2008-11-03 23:20:04 +0000 | [diff] [blame] | 1729 | #endif |
Nate Begeman | d4d45c2 | 2007-11-17 03:58:34 +0000 | [diff] [blame] | 1730 | assert((fromVec == toVec) && "Cannot convert from scalar to/from vector"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1731 | assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() && |
Nate Begeman | d4d45c2 | 2007-11-17 03:58:34 +0000 | [diff] [blame] | 1732 | "This is an illegal uint to floating point cast!"); |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1733 | return getFoldedCast(Instruction::UIToFP, C, Ty, OnlyIfReduced); |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1734 | } |
| 1735 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1736 | Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) { |
Devang Patel | d26344d | 2008-11-03 23:20:04 +0000 | [diff] [blame] | 1737 | #ifndef NDEBUG |
Nate Begeman | d4d45c2 | 2007-11-17 03:58:34 +0000 | [diff] [blame] | 1738 | bool fromVec = C->getType()->getTypeID() == Type::VectorTyID; |
| 1739 | bool toVec = Ty->getTypeID() == Type::VectorTyID; |
Devang Patel | d26344d | 2008-11-03 23:20:04 +0000 | [diff] [blame] | 1740 | #endif |
Nate Begeman | d4d45c2 | 2007-11-17 03:58:34 +0000 | [diff] [blame] | 1741 | assert((fromVec == toVec) && "Cannot convert from scalar to/from vector"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1742 | assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() && |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1743 | "This is an illegal sint to floating point cast!"); |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1744 | return getFoldedCast(Instruction::SIToFP, C, Ty, OnlyIfReduced); |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1745 | } |
| 1746 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1747 | Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty, bool OnlyIfReduced) { |
Devang Patel | d26344d | 2008-11-03 23:20:04 +0000 | [diff] [blame] | 1748 | #ifndef NDEBUG |
Nate Begeman | d4d45c2 | 2007-11-17 03:58:34 +0000 | [diff] [blame] | 1749 | bool fromVec = C->getType()->getTypeID() == Type::VectorTyID; |
| 1750 | bool toVec = Ty->getTypeID() == Type::VectorTyID; |
Devang Patel | d26344d | 2008-11-03 23:20:04 +0000 | [diff] [blame] | 1751 | #endif |
Nate Begeman | d4d45c2 | 2007-11-17 03:58:34 +0000 | [diff] [blame] | 1752 | assert((fromVec == toVec) && "Cannot convert from scalar to/from vector"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1753 | assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() && |
Nate Begeman | d4d45c2 | 2007-11-17 03:58:34 +0000 | [diff] [blame] | 1754 | "This is an illegal floating point to uint cast!"); |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1755 | return getFoldedCast(Instruction::FPToUI, C, Ty, OnlyIfReduced); |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1756 | } |
| 1757 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1758 | Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty, bool OnlyIfReduced) { |
Devang Patel | d26344d | 2008-11-03 23:20:04 +0000 | [diff] [blame] | 1759 | #ifndef NDEBUG |
Nate Begeman | d4d45c2 | 2007-11-17 03:58:34 +0000 | [diff] [blame] | 1760 | bool fromVec = C->getType()->getTypeID() == Type::VectorTyID; |
| 1761 | bool toVec = Ty->getTypeID() == Type::VectorTyID; |
Devang Patel | d26344d | 2008-11-03 23:20:04 +0000 | [diff] [blame] | 1762 | #endif |
Nate Begeman | d4d45c2 | 2007-11-17 03:58:34 +0000 | [diff] [blame] | 1763 | assert((fromVec == toVec) && "Cannot convert from scalar to/from vector"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1764 | assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() && |
Nate Begeman | d4d45c2 | 2007-11-17 03:58:34 +0000 | [diff] [blame] | 1765 | "This is an illegal floating point to sint cast!"); |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1766 | return getFoldedCast(Instruction::FPToSI, C, Ty, OnlyIfReduced); |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1767 | } |
| 1768 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1769 | Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy, |
| 1770 | bool OnlyIfReduced) { |
Nadav Rotem | 3924cb0 | 2011-12-05 06:29:09 +0000 | [diff] [blame] | 1771 | assert(C->getType()->getScalarType()->isPointerTy() && |
| 1772 | "PtrToInt source must be pointer or pointer vector"); |
| 1773 | assert(DstTy->getScalarType()->isIntegerTy() && |
| 1774 | "PtrToInt destination must be integer or integer vector"); |
Chris Lattner | 8a3df54 | 2012-01-25 01:32:59 +0000 | [diff] [blame] | 1775 | assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy)); |
Nick Lewycky | ff50962 | 2012-01-25 03:20:12 +0000 | [diff] [blame] | 1776 | if (isa<VectorType>(C->getType())) |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 1777 | assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&& |
Chris Lattner | 8a3df54 | 2012-01-25 01:32:59 +0000 | [diff] [blame] | 1778 | "Invalid cast between a different number of vector elements"); |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1779 | return getFoldedCast(Instruction::PtrToInt, C, DstTy, OnlyIfReduced); |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1780 | } |
| 1781 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1782 | Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy, |
| 1783 | bool OnlyIfReduced) { |
Nadav Rotem | 3924cb0 | 2011-12-05 06:29:09 +0000 | [diff] [blame] | 1784 | assert(C->getType()->getScalarType()->isIntegerTy() && |
| 1785 | "IntToPtr source must be integer or integer vector"); |
| 1786 | assert(DstTy->getScalarType()->isPointerTy() && |
| 1787 | "IntToPtr destination must be a pointer or pointer vector"); |
Chris Lattner | 8a3df54 | 2012-01-25 01:32:59 +0000 | [diff] [blame] | 1788 | assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy)); |
Nick Lewycky | ff50962 | 2012-01-25 03:20:12 +0000 | [diff] [blame] | 1789 | if (isa<VectorType>(C->getType())) |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 1790 | assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&& |
Chris Lattner | 8a3df54 | 2012-01-25 01:32:59 +0000 | [diff] [blame] | 1791 | "Invalid cast between a different number of vector elements"); |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1792 | return getFoldedCast(Instruction::IntToPtr, C, DstTy, OnlyIfReduced); |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 1793 | } |
| 1794 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1795 | Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy, |
| 1796 | bool OnlyIfReduced) { |
Chris Lattner | 37bc78a | 2010-01-26 21:51:43 +0000 | [diff] [blame] | 1797 | assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) && |
| 1798 | "Invalid constantexpr bitcast!"); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1799 | |
Chris Lattner | cbeda87 | 2009-03-21 06:55:54 +0000 | [diff] [blame] | 1800 | // It is common to ask for a bitcast of a value to its own type, handle this |
| 1801 | // speedily. |
| 1802 | if (C->getType() == DstTy) return C; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1803 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1804 | return getFoldedCast(Instruction::BitCast, C, DstTy, OnlyIfReduced); |
Chris Lattner | dd28474 | 2004-04-04 23:20:30 +0000 | [diff] [blame] | 1805 | } |
| 1806 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1807 | Constant *ConstantExpr::getAddrSpaceCast(Constant *C, Type *DstTy, |
| 1808 | bool OnlyIfReduced) { |
Matt Arsenault | b03bd4d | 2013-11-15 01:34:59 +0000 | [diff] [blame] | 1809 | assert(CastInst::castIsValid(Instruction::AddrSpaceCast, C, DstTy) && |
| 1810 | "Invalid constantexpr addrspacecast!"); |
| 1811 | |
Jingyue Wu | baabe50 | 2014-06-15 21:40:57 +0000 | [diff] [blame] | 1812 | // Canonicalize addrspacecasts between different pointer types by first |
| 1813 | // bitcasting the pointer type and then converting the address space. |
| 1814 | PointerType *SrcScalarTy = cast<PointerType>(C->getType()->getScalarType()); |
| 1815 | PointerType *DstScalarTy = cast<PointerType>(DstTy->getScalarType()); |
| 1816 | Type *DstElemTy = DstScalarTy->getElementType(); |
| 1817 | if (SrcScalarTy->getElementType() != DstElemTy) { |
| 1818 | Type *MidTy = PointerType::get(DstElemTy, SrcScalarTy->getAddressSpace()); |
| 1819 | if (VectorType *VT = dyn_cast<VectorType>(DstTy)) { |
| 1820 | // Handle vectors of pointers. |
| 1821 | MidTy = VectorType::get(MidTy, VT->getNumElements()); |
| 1822 | } |
| 1823 | C = getBitCast(C, MidTy); |
| 1824 | } |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1825 | return getFoldedCast(Instruction::AddrSpaceCast, C, DstTy, OnlyIfReduced); |
Matt Arsenault | b03bd4d | 2013-11-15 01:34:59 +0000 | [diff] [blame] | 1826 | } |
| 1827 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 1828 | Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2, |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1829 | unsigned Flags, Type *OnlyIfReducedTy) { |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 1830 | // Check the operands for consistency first. |
Reid Spencer | 7eb55b3 | 2006-11-02 01:53:59 +0000 | [diff] [blame] | 1831 | assert(Opcode >= Instruction::BinaryOpsBegin && |
| 1832 | Opcode < Instruction::BinaryOpsEnd && |
Chris Lattner | 38a9bcd | 2003-05-21 17:49:25 +0000 | [diff] [blame] | 1833 | "Invalid opcode in binary constant expression"); |
| 1834 | assert(C1->getType() == C2->getType() && |
| 1835 | "Operand types in binary constant expression should match"); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1836 | |
Chris Lattner | caf3f3e | 2004-08-17 17:28:46 +0000 | [diff] [blame] | 1837 | #ifndef NDEBUG |
| 1838 | switch (Opcode) { |
Dan Gohman | a5b9645 | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1839 | case Instruction::Add: |
Reid Spencer | 7eb55b3 | 2006-11-02 01:53:59 +0000 | [diff] [blame] | 1840 | case Instruction::Sub: |
Dan Gohman | a5b9645 | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1841 | case Instruction::Mul: |
Chris Lattner | caf3f3e | 2004-08-17 17:28:46 +0000 | [diff] [blame] | 1842 | assert(C1->getType() == C2->getType() && "Op types should be identical!"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1843 | assert(C1->getType()->isIntOrIntVectorTy() && |
Dan Gohman | a5b9645 | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1844 | "Tried to create an integer operation on a non-integer type!"); |
| 1845 | break; |
| 1846 | case Instruction::FAdd: |
| 1847 | case Instruction::FSub: |
| 1848 | case Instruction::FMul: |
| 1849 | assert(C1->getType() == C2->getType() && "Op types should be identical!"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1850 | assert(C1->getType()->isFPOrFPVectorTy() && |
Dan Gohman | a5b9645 | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 1851 | "Tried to create a floating-point operation on a " |
| 1852 | "non-floating-point type!"); |
Chris Lattner | caf3f3e | 2004-08-17 17:28:46 +0000 | [diff] [blame] | 1853 | break; |
Reid Spencer | 7e80b0b | 2006-10-26 06:15:43 +0000 | [diff] [blame] | 1854 | case Instruction::UDiv: |
| 1855 | case Instruction::SDiv: |
| 1856 | assert(C1->getType() == C2->getType() && "Op types should be identical!"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1857 | assert(C1->getType()->isIntOrIntVectorTy() && |
Reid Spencer | 7e80b0b | 2006-10-26 06:15:43 +0000 | [diff] [blame] | 1858 | "Tried to create an arithmetic operation on a non-arithmetic type!"); |
| 1859 | break; |
| 1860 | case Instruction::FDiv: |
| 1861 | assert(C1->getType() == C2->getType() && "Op types should be identical!"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1862 | assert(C1->getType()->isFPOrFPVectorTy() && |
Dan Gohman | 7889f2b | 2009-06-15 22:25:12 +0000 | [diff] [blame] | 1863 | "Tried to create an arithmetic operation on a non-arithmetic type!"); |
Reid Spencer | 7e80b0b | 2006-10-26 06:15:43 +0000 | [diff] [blame] | 1864 | break; |
Reid Spencer | 7eb55b3 | 2006-11-02 01:53:59 +0000 | [diff] [blame] | 1865 | case Instruction::URem: |
| 1866 | case Instruction::SRem: |
| 1867 | assert(C1->getType() == C2->getType() && "Op types should be identical!"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1868 | assert(C1->getType()->isIntOrIntVectorTy() && |
Reid Spencer | 7eb55b3 | 2006-11-02 01:53:59 +0000 | [diff] [blame] | 1869 | "Tried to create an arithmetic operation on a non-arithmetic type!"); |
| 1870 | break; |
| 1871 | case Instruction::FRem: |
| 1872 | assert(C1->getType() == C2->getType() && "Op types should be identical!"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1873 | assert(C1->getType()->isFPOrFPVectorTy() && |
Dan Gohman | 7889f2b | 2009-06-15 22:25:12 +0000 | [diff] [blame] | 1874 | "Tried to create an arithmetic operation on a non-arithmetic type!"); |
Reid Spencer | 7eb55b3 | 2006-11-02 01:53:59 +0000 | [diff] [blame] | 1875 | break; |
Chris Lattner | caf3f3e | 2004-08-17 17:28:46 +0000 | [diff] [blame] | 1876 | case Instruction::And: |
| 1877 | case Instruction::Or: |
| 1878 | case Instruction::Xor: |
| 1879 | assert(C1->getType() == C2->getType() && "Op types should be identical!"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1880 | assert(C1->getType()->isIntOrIntVectorTy() && |
Misha Brukman | 3852f65 | 2005-01-27 06:46:38 +0000 | [diff] [blame] | 1881 | "Tried to create a logical operation on a non-integral type!"); |
Chris Lattner | caf3f3e | 2004-08-17 17:28:46 +0000 | [diff] [blame] | 1882 | break; |
Chris Lattner | caf3f3e | 2004-08-17 17:28:46 +0000 | [diff] [blame] | 1883 | case Instruction::Shl: |
Reid Spencer | fdff938 | 2006-11-08 06:47:33 +0000 | [diff] [blame] | 1884 | case Instruction::LShr: |
| 1885 | case Instruction::AShr: |
Reid Spencer | 2341c22 | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 1886 | assert(C1->getType() == C2->getType() && "Op types should be identical!"); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1887 | assert(C1->getType()->isIntOrIntVectorTy() && |
Chris Lattner | caf3f3e | 2004-08-17 17:28:46 +0000 | [diff] [blame] | 1888 | "Tried to create a shift operation on a non-integer type!"); |
| 1889 | break; |
| 1890 | default: |
| 1891 | break; |
| 1892 | } |
| 1893 | #endif |
| 1894 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 1895 | if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2)) |
| 1896 | return FC; // Fold a few common cases. |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1897 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1898 | if (OnlyIfReducedTy == C1->getType()) |
| 1899 | return nullptr; |
| 1900 | |
Benjamin Kramer | 324322b | 2013-03-07 20:53:34 +0000 | [diff] [blame] | 1901 | Constant *ArgVec[] = { C1, C2 }; |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 1902 | ConstantExprKeyType Key(Opcode, ArgVec, 0, Flags); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1903 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 1904 | LLVMContextImpl *pImpl = C1->getContext().pImpl; |
| 1905 | return pImpl->ExprConstants.getOrCreate(C1->getType(), Key); |
Reid Spencer | a009d0d | 2006-12-04 21:35:24 +0000 | [diff] [blame] | 1906 | } |
| 1907 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1908 | Constant *ConstantExpr::getSizeOf(Type* Ty) { |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 1909 | // sizeof is implemented as: (i64) gep (Ty*)null, 1 |
| 1910 | // Note that a non-inbounds gep is used, as null isn't within any object. |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1911 | Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1); |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 1912 | Constant *GEP = getGetElementPtr( |
Jay Foad | ed8db7d | 2011-07-21 14:31:17 +0000 | [diff] [blame] | 1913 | Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx); |
Dan Gohman | 3cdcc3f | 2010-04-12 22:12:29 +0000 | [diff] [blame] | 1914 | return getPtrToInt(GEP, |
| 1915 | Type::getInt64Ty(Ty->getContext())); |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 1916 | } |
| 1917 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1918 | Constant *ConstantExpr::getAlignOf(Type* Ty) { |
Dan Gohman | cf91383 | 2010-01-28 02:15:55 +0000 | [diff] [blame] | 1919 | // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1 |
Dan Gohman | 50c09d0 | 2009-08-11 17:57:01 +0000 | [diff] [blame] | 1920 | // Note that a non-inbounds gep is used, as null isn't within any object. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1921 | Type *AligningTy = |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 1922 | StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, nullptr); |
Matt Arsenault | be55888 | 2014-04-23 20:58:57 +0000 | [diff] [blame] | 1923 | Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo(0)); |
Dan Gohman | a9be739 | 2010-01-28 02:43:22 +0000 | [diff] [blame] | 1924 | Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0); |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1925 | Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1); |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 1926 | Constant *Indices[2] = { Zero, One }; |
Jay Foad | ed8db7d | 2011-07-21 14:31:17 +0000 | [diff] [blame] | 1927 | Constant *GEP = getGetElementPtr(NullPtr, Indices); |
Dan Gohman | 3cdcc3f | 2010-04-12 22:12:29 +0000 | [diff] [blame] | 1928 | return getPtrToInt(GEP, |
| 1929 | Type::getInt64Ty(Ty->getContext())); |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 1930 | } |
| 1931 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1932 | Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) { |
Dan Gohman | ede94e6 | 2010-02-01 16:37:38 +0000 | [diff] [blame] | 1933 | return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()), |
| 1934 | FieldNo)); |
| 1935 | } |
| 1936 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1937 | Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) { |
Dan Gohman | ff3af725 | 2009-08-16 21:26:11 +0000 | [diff] [blame] | 1938 | // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo |
| 1939 | // Note that a non-inbounds gep is used, as null isn't within any object. |
| 1940 | Constant *GEPIdx[] = { |
Dan Gohman | ede94e6 | 2010-02-01 16:37:38 +0000 | [diff] [blame] | 1941 | ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0), |
| 1942 | FieldNo |
Dan Gohman | ff3af725 | 2009-08-16 21:26:11 +0000 | [diff] [blame] | 1943 | }; |
| 1944 | Constant *GEP = getGetElementPtr( |
Jay Foad | ed8db7d | 2011-07-21 14:31:17 +0000 | [diff] [blame] | 1945 | Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx); |
Dan Gohman | 3cdcc3f | 2010-04-12 22:12:29 +0000 | [diff] [blame] | 1946 | return getPtrToInt(GEP, |
| 1947 | Type::getInt64Ty(Ty->getContext())); |
Dan Gohman | ff3af725 | 2009-08-16 21:26:11 +0000 | [diff] [blame] | 1948 | } |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 1949 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1950 | Constant *ConstantExpr::getCompare(unsigned short Predicate, Constant *C1, |
| 1951 | Constant *C2, bool OnlyIfReduced) { |
Reid Spencer | a009d0d | 2006-12-04 21:35:24 +0000 | [diff] [blame] | 1952 | assert(C1->getType() == C2->getType() && "Op types should be identical!"); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1953 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 1954 | switch (Predicate) { |
| 1955 | default: llvm_unreachable("Invalid CmpInst predicate"); |
| 1956 | case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT: |
| 1957 | case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE: |
| 1958 | case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO: |
| 1959 | case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE: |
| 1960 | case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE: |
| 1961 | case CmpInst::FCMP_TRUE: |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1962 | return getFCmp(Predicate, C1, C2, OnlyIfReduced); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1963 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 1964 | case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT: |
| 1965 | case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE: |
| 1966 | case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT: |
| 1967 | case CmpInst::ICMP_SLE: |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1968 | return getICmp(Predicate, C1, C2, OnlyIfReduced); |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 1969 | } |
Chris Lattner | 29ca2c6 | 2004-08-04 18:50:09 +0000 | [diff] [blame] | 1970 | } |
| 1971 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1972 | Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2, |
| 1973 | Type *OnlyIfReducedTy) { |
Chris Lattner | 4163213 | 2008-12-29 00:16:12 +0000 | [diff] [blame] | 1974 | assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands"); |
Chris Lattner | 6e415c0 | 2004-03-12 05:54:04 +0000 | [diff] [blame] | 1975 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 1976 | if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2)) |
| 1977 | return SC; // Fold common cases |
Chris Lattner | 6e415c0 | 2004-03-12 05:54:04 +0000 | [diff] [blame] | 1978 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1979 | if (OnlyIfReducedTy == V1->getType()) |
| 1980 | return nullptr; |
| 1981 | |
Benjamin Kramer | 324322b | 2013-03-07 20:53:34 +0000 | [diff] [blame] | 1982 | Constant *ArgVec[] = { C, V1, V2 }; |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 1983 | ConstantExprKeyType Key(Instruction::Select, ArgVec); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 1984 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 1985 | LLVMContextImpl *pImpl = C->getContext().pImpl; |
| 1986 | return pImpl->ExprConstants.getOrCreate(V1->getType(), Key); |
Chris Lattner | 6e415c0 | 2004-03-12 05:54:04 +0000 | [diff] [blame] | 1987 | } |
| 1988 | |
Jay Foad | ed8db7d | 2011-07-21 14:31:17 +0000 | [diff] [blame] | 1989 | Constant *ConstantExpr::getGetElementPtr(Constant *C, ArrayRef<Value *> Idxs, |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 1990 | bool InBounds, Type *OnlyIfReducedTy) { |
Duncan Sands | e6beec6 | 2012-11-13 12:59:33 +0000 | [diff] [blame] | 1991 | assert(C->getType()->isPtrOrPtrVectorTy() && |
| 1992 | "Non-pointer type for constant GetElementPtr expression"); |
| 1993 | |
Jay Foad | ed8db7d | 2011-07-21 14:31:17 +0000 | [diff] [blame] | 1994 | if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs)) |
Chris Lattner | 94c8d29 | 2011-02-11 05:34:33 +0000 | [diff] [blame] | 1995 | return FC; // Fold a few common cases. |
Dan Gohman | 1b84908 | 2009-09-07 23:54:19 +0000 | [diff] [blame] | 1996 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 1997 | // Get the result type of the getelementptr! |
Jay Foad | d1b7849 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 1998 | Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), Idxs); |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 1999 | assert(Ty && "GEP indices invalid!"); |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 2000 | unsigned AS = C->getType()->getPointerAddressSpace(); |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 2001 | Type *ReqTy = Ty->getPointerTo(AS); |
Duncan Sands | e6beec6 | 2012-11-13 12:59:33 +0000 | [diff] [blame] | 2002 | if (VectorType *VecTy = dyn_cast<VectorType>(C->getType())) |
| 2003 | ReqTy = VectorType::get(ReqTy, VecTy->getNumElements()); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2004 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 2005 | if (OnlyIfReducedTy == ReqTy) |
| 2006 | return nullptr; |
| 2007 | |
Dan Gohman | 1b84908 | 2009-09-07 23:54:19 +0000 | [diff] [blame] | 2008 | // Look up the constant in the table first to ensure uniqueness |
| 2009 | std::vector<Constant*> ArgVec; |
Jay Foad | ed8db7d | 2011-07-21 14:31:17 +0000 | [diff] [blame] | 2010 | ArgVec.reserve(1 + Idxs.size()); |
Dan Gohman | 1b84908 | 2009-09-07 23:54:19 +0000 | [diff] [blame] | 2011 | ArgVec.push_back(C); |
Duncan Sands | e6beec6 | 2012-11-13 12:59:33 +0000 | [diff] [blame] | 2012 | for (unsigned i = 0, e = Idxs.size(); i != e; ++i) { |
| 2013 | assert(Idxs[i]->getType()->isVectorTy() == ReqTy->isVectorTy() && |
| 2014 | "getelementptr index type missmatch"); |
| 2015 | assert((!Idxs[i]->getType()->isVectorTy() || |
| 2016 | ReqTy->getVectorNumElements() == |
| 2017 | Idxs[i]->getType()->getVectorNumElements()) && |
| 2018 | "getelementptr index type missmatch"); |
Dan Gohman | 1b84908 | 2009-09-07 23:54:19 +0000 | [diff] [blame] | 2019 | ArgVec.push_back(cast<Constant>(Idxs[i])); |
Duncan Sands | e6beec6 | 2012-11-13 12:59:33 +0000 | [diff] [blame] | 2020 | } |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2021 | const ConstantExprKeyType Key(Instruction::GetElementPtr, ArgVec, 0, |
| 2022 | InBounds ? GEPOperator::IsInBounds : 0); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2023 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 2024 | LLVMContextImpl *pImpl = C->getContext().pImpl; |
Dan Gohman | 1b84908 | 2009-09-07 23:54:19 +0000 | [diff] [blame] | 2025 | return pImpl->ExprConstants.getOrCreate(ReqTy, Key); |
| 2026 | } |
| 2027 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 2028 | Constant *ConstantExpr::getICmp(unsigned short pred, Constant *LHS, |
| 2029 | Constant *RHS, bool OnlyIfReduced) { |
Reid Spencer | ee3c991 | 2006-12-04 05:19:50 +0000 | [diff] [blame] | 2030 | assert(LHS->getType() == RHS->getType()); |
| 2031 | assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE && |
| 2032 | pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate"); |
| 2033 | |
Chris Lattner | f5edeeb | 2010-02-01 20:48:08 +0000 | [diff] [blame] | 2034 | if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS)) |
Reid Spencer | ee3c991 | 2006-12-04 05:19:50 +0000 | [diff] [blame] | 2035 | return FC; // Fold a few common cases... |
| 2036 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 2037 | if (OnlyIfReduced) |
| 2038 | return nullptr; |
| 2039 | |
Reid Spencer | ee3c991 | 2006-12-04 05:19:50 +0000 | [diff] [blame] | 2040 | // Look up the constant in the table first to ensure uniqueness |
Benjamin Kramer | 324322b | 2013-03-07 20:53:34 +0000 | [diff] [blame] | 2041 | Constant *ArgVec[] = { LHS, RHS }; |
Reid Spencer | b153749 | 2006-12-24 18:42:29 +0000 | [diff] [blame] | 2042 | // Get the key type with both the opcode and predicate |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2043 | const ConstantExprKeyType Key(Instruction::ICmp, ArgVec, pred); |
Owen Anderson | 6179404 | 2009-06-17 20:10:08 +0000 | [diff] [blame] | 2044 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2045 | Type *ResultTy = Type::getInt1Ty(LHS->getContext()); |
| 2046 | if (VectorType *VT = dyn_cast<VectorType>(LHS->getType())) |
Nick Lewycky | 9e26c1c | 2010-01-21 07:03:21 +0000 | [diff] [blame] | 2047 | ResultTy = VectorType::get(ResultTy, VT->getNumElements()); |
| 2048 | |
Owen Anderson | 1584a29 | 2009-08-04 20:25:11 +0000 | [diff] [blame] | 2049 | LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl; |
Nick Lewycky | 9e26c1c | 2010-01-21 07:03:21 +0000 | [diff] [blame] | 2050 | return pImpl->ExprConstants.getOrCreate(ResultTy, Key); |
Reid Spencer | ee3c991 | 2006-12-04 05:19:50 +0000 | [diff] [blame] | 2051 | } |
| 2052 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 2053 | Constant *ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, |
| 2054 | Constant *RHS, bool OnlyIfReduced) { |
Reid Spencer | ee3c991 | 2006-12-04 05:19:50 +0000 | [diff] [blame] | 2055 | assert(LHS->getType() == RHS->getType()); |
| 2056 | assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate"); |
| 2057 | |
Chris Lattner | f5edeeb | 2010-02-01 20:48:08 +0000 | [diff] [blame] | 2058 | if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS)) |
Reid Spencer | ee3c991 | 2006-12-04 05:19:50 +0000 | [diff] [blame] | 2059 | return FC; // Fold a few common cases... |
| 2060 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 2061 | if (OnlyIfReduced) |
| 2062 | return nullptr; |
| 2063 | |
Reid Spencer | ee3c991 | 2006-12-04 05:19:50 +0000 | [diff] [blame] | 2064 | // Look up the constant in the table first to ensure uniqueness |
Benjamin Kramer | 324322b | 2013-03-07 20:53:34 +0000 | [diff] [blame] | 2065 | Constant *ArgVec[] = { LHS, RHS }; |
Reid Spencer | b153749 | 2006-12-24 18:42:29 +0000 | [diff] [blame] | 2066 | // Get the key type with both the opcode and predicate |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2067 | const ConstantExprKeyType Key(Instruction::FCmp, ArgVec, pred); |
Nick Lewycky | 9e26c1c | 2010-01-21 07:03:21 +0000 | [diff] [blame] | 2068 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2069 | Type *ResultTy = Type::getInt1Ty(LHS->getContext()); |
| 2070 | if (VectorType *VT = dyn_cast<VectorType>(LHS->getType())) |
Nick Lewycky | 9e26c1c | 2010-01-21 07:03:21 +0000 | [diff] [blame] | 2071 | ResultTy = VectorType::get(ResultTy, VT->getNumElements()); |
| 2072 | |
Owen Anderson | 1584a29 | 2009-08-04 20:25:11 +0000 | [diff] [blame] | 2073 | LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl; |
Nick Lewycky | 9e26c1c | 2010-01-21 07:03:21 +0000 | [diff] [blame] | 2074 | return pImpl->ExprConstants.getOrCreate(ResultTy, Key); |
Reid Spencer | ee3c991 | 2006-12-04 05:19:50 +0000 | [diff] [blame] | 2075 | } |
| 2076 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 2077 | Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx, |
| 2078 | Type *OnlyIfReducedTy) { |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 2079 | assert(Val->getType()->isVectorTy() && |
Reid Spencer | 09575ba | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 2080 | "Tried to create extractelement operation on non-vector type!"); |
Michael J. Spencer | 1f10c5ea | 2014-05-01 22:12:39 +0000 | [diff] [blame] | 2081 | assert(Idx->getType()->isIntegerTy() && |
| 2082 | "Extractelement index must be an integer type!"); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2083 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 2084 | if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx)) |
Chris Lattner | 09660c9 | 2009-12-30 20:25:09 +0000 | [diff] [blame] | 2085 | return FC; // Fold a few common cases. |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2086 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 2087 | Type *ReqTy = Val->getType()->getVectorElementType(); |
| 2088 | if (OnlyIfReducedTy == ReqTy) |
| 2089 | return nullptr; |
| 2090 | |
Robert Bocchino | ca27f03 | 2006-01-17 20:07:22 +0000 | [diff] [blame] | 2091 | // Look up the constant in the table first to ensure uniqueness |
Benjamin Kramer | 324322b | 2013-03-07 20:53:34 +0000 | [diff] [blame] | 2092 | Constant *ArgVec[] = { Val, Idx }; |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2093 | const ConstantExprKeyType Key(Instruction::ExtractElement, ArgVec); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2094 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 2095 | LLVMContextImpl *pImpl = Val->getContext().pImpl; |
Owen Anderson | 1584a29 | 2009-08-04 20:25:11 +0000 | [diff] [blame] | 2096 | return pImpl->ExprConstants.getOrCreate(ReqTy, Key); |
Robert Bocchino | ca27f03 | 2006-01-17 20:07:22 +0000 | [diff] [blame] | 2097 | } |
| 2098 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 2099 | Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt, |
| 2100 | Constant *Idx, Type *OnlyIfReducedTy) { |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 2101 | assert(Val->getType()->isVectorTy() && |
Reid Spencer | 09575ba | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 2102 | "Tried to create insertelement operation on non-vector type!"); |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 2103 | assert(Elt->getType() == Val->getType()->getVectorElementType() && |
| 2104 | "Insertelement types must match!"); |
Michael J. Spencer | 1f10c5ea | 2014-05-01 22:12:39 +0000 | [diff] [blame] | 2105 | assert(Idx->getType()->isIntegerTy() && |
Reid Spencer | 2546b76 | 2007-01-26 07:37:34 +0000 | [diff] [blame] | 2106 | "Insertelement index must be i32 type!"); |
Robert Bocchino | ca27f03 | 2006-01-17 20:07:22 +0000 | [diff] [blame] | 2107 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 2108 | if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx)) |
| 2109 | return FC; // Fold a few common cases. |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 2110 | |
| 2111 | if (OnlyIfReducedTy == Val->getType()) |
| 2112 | return nullptr; |
| 2113 | |
Chris Lattner | bbe0a42 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 2114 | // Look up the constant in the table first to ensure uniqueness |
Benjamin Kramer | 324322b | 2013-03-07 20:53:34 +0000 | [diff] [blame] | 2115 | Constant *ArgVec[] = { Val, Elt, Idx }; |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2116 | const ConstantExprKeyType Key(Instruction::InsertElement, ArgVec); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2117 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 2118 | LLVMContextImpl *pImpl = Val->getContext().pImpl; |
| 2119 | return pImpl->ExprConstants.getOrCreate(Val->getType(), Key); |
Chris Lattner | bbe0a42 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 2120 | } |
| 2121 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 2122 | Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2, |
| 2123 | Constant *Mask, Type *OnlyIfReducedTy) { |
Chris Lattner | bbe0a42 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 2124 | assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) && |
| 2125 | "Invalid shuffle vector constant expr operands!"); |
Nate Begeman | 94aa38d | 2009-02-12 21:28:33 +0000 | [diff] [blame] | 2126 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 2127 | if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask)) |
| 2128 | return FC; // Fold a few common cases. |
| 2129 | |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 2130 | unsigned NElts = Mask->getType()->getVectorNumElements(); |
| 2131 | Type *EltTy = V1->getType()->getVectorElementType(); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2132 | Type *ShufTy = VectorType::get(EltTy, NElts); |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 2133 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 2134 | if (OnlyIfReducedTy == ShufTy) |
| 2135 | return nullptr; |
| 2136 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 2137 | // Look up the constant in the table first to ensure uniqueness |
Benjamin Kramer | 324322b | 2013-03-07 20:53:34 +0000 | [diff] [blame] | 2138 | Constant *ArgVec[] = { V1, V2, Mask }; |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2139 | const ConstantExprKeyType Key(Instruction::ShuffleVector, ArgVec); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2140 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 2141 | LLVMContextImpl *pImpl = ShufTy->getContext().pImpl; |
| 2142 | return pImpl->ExprConstants.getOrCreate(ShufTy, Key); |
Chris Lattner | bbe0a42 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 2143 | } |
| 2144 | |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 2145 | Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val, |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 2146 | ArrayRef<unsigned> Idxs, |
| 2147 | Type *OnlyIfReducedTy) { |
Hal Finkel | b31366d | 2013-07-10 22:51:01 +0000 | [diff] [blame] | 2148 | assert(Agg->getType()->isFirstClassType() && |
| 2149 | "Non-first-class type for constant insertvalue expression"); |
| 2150 | |
Jay Foad | 57aa636 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 2151 | assert(ExtractValueInst::getIndexedType(Agg->getType(), |
| 2152 | Idxs) == Val->getType() && |
Dan Gohman | 12fce77 | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 2153 | "insertvalue indices invalid!"); |
Hal Finkel | b31366d | 2013-07-10 22:51:01 +0000 | [diff] [blame] | 2154 | Type *ReqTy = Val->getType(); |
| 2155 | |
| 2156 | if (Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs)) |
| 2157 | return FC; |
| 2158 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 2159 | if (OnlyIfReducedTy == ReqTy) |
| 2160 | return nullptr; |
| 2161 | |
Hal Finkel | b31366d | 2013-07-10 22:51:01 +0000 | [diff] [blame] | 2162 | Constant *ArgVec[] = { Agg, Val }; |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2163 | const ConstantExprKeyType Key(Instruction::InsertValue, ArgVec, 0, 0, Idxs); |
Hal Finkel | b31366d | 2013-07-10 22:51:01 +0000 | [diff] [blame] | 2164 | |
| 2165 | LLVMContextImpl *pImpl = Agg->getContext().pImpl; |
| 2166 | return pImpl->ExprConstants.getOrCreate(ReqTy, Key); |
Dan Gohman | 12fce77 | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 2167 | } |
| 2168 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 2169 | Constant *ConstantExpr::getExtractValue(Constant *Agg, ArrayRef<unsigned> Idxs, |
| 2170 | Type *OnlyIfReducedTy) { |
Dan Gohman | 0752bff | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 2171 | assert(Agg->getType()->isFirstClassType() && |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 2172 | "Tried to create extractelement operation on non-first-class type!"); |
Dan Gohman | 12fce77 | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 2173 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2174 | Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs); |
Chandler Carruth | 9db56b8 | 2011-07-10 09:45:35 +0000 | [diff] [blame] | 2175 | (void)ReqTy; |
Chris Lattner | 887ecac | 2011-07-09 18:23:52 +0000 | [diff] [blame] | 2176 | assert(ReqTy && "extractvalue indices invalid!"); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2177 | |
Dan Gohman | 0752bff | 2008-05-23 00:36:11 +0000 | [diff] [blame] | 2178 | assert(Agg->getType()->isFirstClassType() && |
| 2179 | "Non-first-class type for constant extractvalue expression"); |
Hal Finkel | b31366d | 2013-07-10 22:51:01 +0000 | [diff] [blame] | 2180 | if (Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs)) |
| 2181 | return FC; |
| 2182 | |
Duncan P. N. Exon Smith | 170eb98 | 2014-08-19 19:45:37 +0000 | [diff] [blame] | 2183 | if (OnlyIfReducedTy == ReqTy) |
| 2184 | return nullptr; |
| 2185 | |
Hal Finkel | b31366d | 2013-07-10 22:51:01 +0000 | [diff] [blame] | 2186 | Constant *ArgVec[] = { Agg }; |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2187 | const ConstantExprKeyType Key(Instruction::ExtractValue, ArgVec, 0, 0, Idxs); |
Hal Finkel | b31366d | 2013-07-10 22:51:01 +0000 | [diff] [blame] | 2188 | |
| 2189 | LLVMContextImpl *pImpl = Agg->getContext().pImpl; |
| 2190 | return pImpl->ExprConstants.getOrCreate(ReqTy, Key); |
Dan Gohman | 12fce77 | 2008-05-15 19:50:34 +0000 | [diff] [blame] | 2191 | } |
| 2192 | |
Chris Lattner | e9b4ad7 | 2011-02-10 07:01:55 +0000 | [diff] [blame] | 2193 | Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) { |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2194 | assert(C->getType()->isIntOrIntVectorTy() && |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2195 | "Cannot NEG a nonintegral value!"); |
Chris Lattner | e9b4ad7 | 2011-02-10 07:01:55 +0000 | [diff] [blame] | 2196 | return getSub(ConstantFP::getZeroValueForNegation(C->getType()), |
| 2197 | C, HasNUW, HasNSW); |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2198 | } |
| 2199 | |
Chris Lattner | a676c0f | 2011-02-07 16:40:21 +0000 | [diff] [blame] | 2200 | Constant *ConstantExpr::getFNeg(Constant *C) { |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2201 | assert(C->getType()->isFPOrFPVectorTy() && |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2202 | "Cannot FNEG a non-floating-point value!"); |
Chris Lattner | e9b4ad7 | 2011-02-10 07:01:55 +0000 | [diff] [blame] | 2203 | return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C); |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2204 | } |
| 2205 | |
Chris Lattner | a676c0f | 2011-02-07 16:40:21 +0000 | [diff] [blame] | 2206 | Constant *ConstantExpr::getNot(Constant *C) { |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2207 | assert(C->getType()->isIntOrIntVectorTy() && |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2208 | "Cannot NOT a nonintegral value!"); |
Owen Anderson | 5a1acd9 | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 2209 | return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType())); |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2210 | } |
| 2211 | |
Chris Lattner | e9b4ad7 | 2011-02-10 07:01:55 +0000 | [diff] [blame] | 2212 | Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2, |
| 2213 | bool HasNUW, bool HasNSW) { |
| 2214 | unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) | |
| 2215 | (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0); |
| 2216 | return get(Instruction::Add, C1, C2, Flags); |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2217 | } |
| 2218 | |
Chris Lattner | a676c0f | 2011-02-07 16:40:21 +0000 | [diff] [blame] | 2219 | Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) { |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2220 | return get(Instruction::FAdd, C1, C2); |
| 2221 | } |
| 2222 | |
Chris Lattner | e9b4ad7 | 2011-02-10 07:01:55 +0000 | [diff] [blame] | 2223 | Constant *ConstantExpr::getSub(Constant *C1, Constant *C2, |
| 2224 | bool HasNUW, bool HasNSW) { |
| 2225 | unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) | |
| 2226 | (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0); |
| 2227 | return get(Instruction::Sub, C1, C2, Flags); |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2228 | } |
| 2229 | |
Chris Lattner | a676c0f | 2011-02-07 16:40:21 +0000 | [diff] [blame] | 2230 | Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) { |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2231 | return get(Instruction::FSub, C1, C2); |
| 2232 | } |
| 2233 | |
Chris Lattner | e9b4ad7 | 2011-02-10 07:01:55 +0000 | [diff] [blame] | 2234 | Constant *ConstantExpr::getMul(Constant *C1, Constant *C2, |
| 2235 | bool HasNUW, bool HasNSW) { |
| 2236 | unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) | |
| 2237 | (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0); |
| 2238 | return get(Instruction::Mul, C1, C2, Flags); |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2239 | } |
| 2240 | |
Chris Lattner | a676c0f | 2011-02-07 16:40:21 +0000 | [diff] [blame] | 2241 | Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) { |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2242 | return get(Instruction::FMul, C1, C2); |
| 2243 | } |
| 2244 | |
Chris Lattner | 0d75eac | 2011-02-09 16:43:07 +0000 | [diff] [blame] | 2245 | Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) { |
| 2246 | return get(Instruction::UDiv, C1, C2, |
| 2247 | isExact ? PossiblyExactOperator::IsExact : 0); |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2248 | } |
| 2249 | |
Chris Lattner | 0d75eac | 2011-02-09 16:43:07 +0000 | [diff] [blame] | 2250 | Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) { |
| 2251 | return get(Instruction::SDiv, C1, C2, |
| 2252 | isExact ? PossiblyExactOperator::IsExact : 0); |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2253 | } |
| 2254 | |
Chris Lattner | a676c0f | 2011-02-07 16:40:21 +0000 | [diff] [blame] | 2255 | Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) { |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2256 | return get(Instruction::FDiv, C1, C2); |
| 2257 | } |
| 2258 | |
Chris Lattner | a676c0f | 2011-02-07 16:40:21 +0000 | [diff] [blame] | 2259 | Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) { |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2260 | return get(Instruction::URem, C1, C2); |
| 2261 | } |
| 2262 | |
Chris Lattner | a676c0f | 2011-02-07 16:40:21 +0000 | [diff] [blame] | 2263 | Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) { |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2264 | return get(Instruction::SRem, C1, C2); |
| 2265 | } |
| 2266 | |
Chris Lattner | a676c0f | 2011-02-07 16:40:21 +0000 | [diff] [blame] | 2267 | Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) { |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2268 | return get(Instruction::FRem, C1, C2); |
| 2269 | } |
| 2270 | |
Chris Lattner | a676c0f | 2011-02-07 16:40:21 +0000 | [diff] [blame] | 2271 | Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) { |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2272 | return get(Instruction::And, C1, C2); |
| 2273 | } |
| 2274 | |
Chris Lattner | a676c0f | 2011-02-07 16:40:21 +0000 | [diff] [blame] | 2275 | Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) { |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2276 | return get(Instruction::Or, C1, C2); |
| 2277 | } |
| 2278 | |
Chris Lattner | a676c0f | 2011-02-07 16:40:21 +0000 | [diff] [blame] | 2279 | Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) { |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2280 | return get(Instruction::Xor, C1, C2); |
| 2281 | } |
| 2282 | |
Chris Lattner | e9b4ad7 | 2011-02-10 07:01:55 +0000 | [diff] [blame] | 2283 | Constant *ConstantExpr::getShl(Constant *C1, Constant *C2, |
| 2284 | bool HasNUW, bool HasNSW) { |
| 2285 | unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) | |
| 2286 | (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0); |
| 2287 | return get(Instruction::Shl, C1, C2, Flags); |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2288 | } |
| 2289 | |
Chris Lattner | 0d75eac | 2011-02-09 16:43:07 +0000 | [diff] [blame] | 2290 | Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) { |
| 2291 | return get(Instruction::LShr, C1, C2, |
| 2292 | isExact ? PossiblyExactOperator::IsExact : 0); |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2293 | } |
| 2294 | |
Chris Lattner | 0d75eac | 2011-02-09 16:43:07 +0000 | [diff] [blame] | 2295 | Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) { |
| 2296 | return get(Instruction::AShr, C1, C2, |
| 2297 | isExact ? PossiblyExactOperator::IsExact : 0); |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 2298 | } |
| 2299 | |
Duncan Sands | d7aeefe | 2012-06-12 14:33:56 +0000 | [diff] [blame] | 2300 | /// getBinOpIdentity - Return the identity for the given binary operation, |
| 2301 | /// i.e. a constant C such that X op C = X and C op X = X for every X. It |
Duncan Sands | 318a89d | 2012-06-13 09:42:13 +0000 | [diff] [blame] | 2302 | /// returns null if the operator doesn't have an identity. |
Duncan Sands | d7aeefe | 2012-06-12 14:33:56 +0000 | [diff] [blame] | 2303 | Constant *ConstantExpr::getBinOpIdentity(unsigned Opcode, Type *Ty) { |
| 2304 | switch (Opcode) { |
| 2305 | default: |
Duncan Sands | 318a89d | 2012-06-13 09:42:13 +0000 | [diff] [blame] | 2306 | // Doesn't have an identity. |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 2307 | return nullptr; |
Duncan Sands | 318a89d | 2012-06-13 09:42:13 +0000 | [diff] [blame] | 2308 | |
Duncan Sands | d7aeefe | 2012-06-12 14:33:56 +0000 | [diff] [blame] | 2309 | case Instruction::Add: |
| 2310 | case Instruction::Or: |
| 2311 | case Instruction::Xor: |
| 2312 | return Constant::getNullValue(Ty); |
| 2313 | |
| 2314 | case Instruction::Mul: |
| 2315 | return ConstantInt::get(Ty, 1); |
| 2316 | |
| 2317 | case Instruction::And: |
| 2318 | return Constant::getAllOnesValue(Ty); |
| 2319 | } |
| 2320 | } |
| 2321 | |
Duncan Sands | 318a89d | 2012-06-13 09:42:13 +0000 | [diff] [blame] | 2322 | /// getBinOpAbsorber - Return the absorbing element for the given binary |
| 2323 | /// operation, i.e. a constant C such that X op C = C and C op X = C for |
| 2324 | /// every X. For example, this returns zero for integer multiplication. |
| 2325 | /// It returns null if the operator doesn't have an absorbing element. |
| 2326 | Constant *ConstantExpr::getBinOpAbsorber(unsigned Opcode, Type *Ty) { |
| 2327 | switch (Opcode) { |
| 2328 | default: |
| 2329 | // Doesn't have an absorber. |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 2330 | return nullptr; |
Duncan Sands | 318a89d | 2012-06-13 09:42:13 +0000 | [diff] [blame] | 2331 | |
| 2332 | case Instruction::Or: |
| 2333 | return Constant::getAllOnesValue(Ty); |
| 2334 | |
| 2335 | case Instruction::And: |
| 2336 | case Instruction::Mul: |
| 2337 | return Constant::getNullValue(Ty); |
| 2338 | } |
| 2339 | } |
| 2340 | |
Vikram S. Adve | 4c48533 | 2002-07-15 18:19:33 +0000 | [diff] [blame] | 2341 | // destroyConstant - Remove the constant from the constant table... |
| 2342 | // |
Owen Anderson | 0d2de8c | 2009-06-20 00:24:58 +0000 | [diff] [blame] | 2343 | void ConstantExpr::destroyConstant() { |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 2344 | getType()->getContext().pImpl->ExprConstants.remove(this); |
Vikram S. Adve | 4c48533 | 2002-07-15 18:19:33 +0000 | [diff] [blame] | 2345 | destroyConstantImpl(); |
Vikram S. Adve | 4e537b2 | 2002-07-14 23:13:17 +0000 | [diff] [blame] | 2346 | } |
| 2347 | |
Chris Lattner | 3cd8c56 | 2002-07-30 18:54:25 +0000 | [diff] [blame] | 2348 | const char *ConstantExpr::getOpcodeName() const { |
| 2349 | return Instruction::getOpcodeName(getOpcode()); |
Vikram S. Adve | 4e537b2 | 2002-07-14 23:13:17 +0000 | [diff] [blame] | 2350 | } |
Reid Spencer | 1ebe1ab | 2004-07-17 23:48:33 +0000 | [diff] [blame] | 2351 | |
Chris Lattner | a3b94ba | 2010-03-30 20:48:48 +0000 | [diff] [blame] | 2352 | |
| 2353 | |
| 2354 | GetElementPtrConstantExpr:: |
Chris Lattner | a474bb2 | 2012-01-26 20:40:56 +0000 | [diff] [blame] | 2355 | GetElementPtrConstantExpr(Constant *C, ArrayRef<Constant*> IdxList, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2356 | Type *DestTy) |
Chris Lattner | a3b94ba | 2010-03-30 20:48:48 +0000 | [diff] [blame] | 2357 | : ConstantExpr(DestTy, Instruction::GetElementPtr, |
| 2358 | OperandTraits<GetElementPtrConstantExpr>::op_end(this) |
| 2359 | - (IdxList.size()+1), IdxList.size()+1) { |
| 2360 | OperandList[0] = C; |
| 2361 | for (unsigned i = 0, E = IdxList.size(); i != E; ++i) |
| 2362 | OperandList[i+1] = IdxList[i]; |
| 2363 | } |
| 2364 | |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2365 | //===----------------------------------------------------------------------===// |
| 2366 | // ConstantData* implementations |
| 2367 | |
| 2368 | void ConstantDataArray::anchor() {} |
| 2369 | void ConstantDataVector::anchor() {} |
| 2370 | |
Chris Lattner | e4f3f10 | 2012-01-24 04:43:41 +0000 | [diff] [blame] | 2371 | /// getElementType - Return the element type of the array/vector. |
| 2372 | Type *ConstantDataSequential::getElementType() const { |
| 2373 | return getType()->getElementType(); |
| 2374 | } |
| 2375 | |
Chris Lattner | 5d4497b | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 2376 | StringRef ConstantDataSequential::getRawDataValues() const { |
Chris Lattner | 00245f4 | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 2377 | return StringRef(DataElements, getNumElements()*getElementByteSize()); |
Chris Lattner | 5d4497b | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 2378 | } |
| 2379 | |
Chris Lattner | 030af79 | 2012-01-24 05:42:11 +0000 | [diff] [blame] | 2380 | /// isElementTypeCompatible - Return true if a ConstantDataSequential can be |
| 2381 | /// formed with a vector or array of the specified element type. |
| 2382 | /// ConstantDataArray only works with normal float and int types that are |
| 2383 | /// stored densely in memory, not with things like i42 or x86_f80. |
| 2384 | bool ConstantDataSequential::isElementTypeCompatible(const Type *Ty) { |
Chris Lattner | e4f3f10 | 2012-01-24 04:43:41 +0000 | [diff] [blame] | 2385 | if (Ty->isFloatTy() || Ty->isDoubleTy()) return true; |
| 2386 | if (const IntegerType *IT = dyn_cast<IntegerType>(Ty)) { |
| 2387 | switch (IT->getBitWidth()) { |
| 2388 | case 8: |
| 2389 | case 16: |
| 2390 | case 32: |
| 2391 | case 64: |
| 2392 | return true; |
| 2393 | default: break; |
| 2394 | } |
| 2395 | } |
| 2396 | return false; |
| 2397 | } |
| 2398 | |
Chris Lattner | 00245f4 | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 2399 | /// getNumElements - Return the number of elements in the array or vector. |
| 2400 | unsigned ConstantDataSequential::getNumElements() const { |
Chris Lattner | 8a3df54 | 2012-01-25 01:32:59 +0000 | [diff] [blame] | 2401 | if (ArrayType *AT = dyn_cast<ArrayType>(getType())) |
| 2402 | return AT->getNumElements(); |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 2403 | return getType()->getVectorNumElements(); |
Chris Lattner | 00245f4 | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 2404 | } |
| 2405 | |
| 2406 | |
Chris Lattner | e4f3f10 | 2012-01-24 04:43:41 +0000 | [diff] [blame] | 2407 | /// getElementByteSize - Return the size in bytes of the elements in the data. |
| 2408 | uint64_t ConstantDataSequential::getElementByteSize() const { |
| 2409 | return getElementType()->getPrimitiveSizeInBits()/8; |
| 2410 | } |
| 2411 | |
| 2412 | /// getElementPointer - Return the start of the specified element. |
| 2413 | const char *ConstantDataSequential::getElementPointer(unsigned Elt) const { |
Chris Lattner | 00245f4 | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 2414 | assert(Elt < getNumElements() && "Invalid Elt"); |
Chris Lattner | e4f3f10 | 2012-01-24 04:43:41 +0000 | [diff] [blame] | 2415 | return DataElements+Elt*getElementByteSize(); |
| 2416 | } |
| 2417 | |
| 2418 | |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2419 | /// isAllZeros - return true if the array is empty or all zeros. |
| 2420 | static bool isAllZeros(StringRef Arr) { |
| 2421 | for (StringRef::iterator I = Arr.begin(), E = Arr.end(); I != E; ++I) |
| 2422 | if (*I != 0) |
| 2423 | return false; |
| 2424 | return true; |
| 2425 | } |
Chris Lattner | 030af79 | 2012-01-24 05:42:11 +0000 | [diff] [blame] | 2426 | |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2427 | /// getImpl - This is the underlying implementation of all of the |
| 2428 | /// ConstantDataSequential::get methods. They all thunk down to here, providing |
Chris Lattner | f06039b | 2012-01-30 18:19:30 +0000 | [diff] [blame] | 2429 | /// the correct element type. We take the bytes in as a StringRef because |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2430 | /// we *want* an underlying "char*" to avoid TBAA type punning violations. |
| 2431 | Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) { |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 2432 | assert(isElementTypeCompatible(Ty->getSequentialElementType())); |
Chris Lattner | 139822f | 2012-01-24 14:17:05 +0000 | [diff] [blame] | 2433 | // If the elements are all zero or there are no elements, return a CAZ, which |
| 2434 | // is more dense and canonical. |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2435 | if (isAllZeros(Elements)) |
| 2436 | return ConstantAggregateZero::get(Ty); |
| 2437 | |
| 2438 | // Do a lookup to see if we have already formed one of these. |
David Blaikie | 5106ce7 | 2014-11-19 05:49:42 +0000 | [diff] [blame] | 2439 | auto &Slot = |
| 2440 | *Ty->getContext() |
| 2441 | .pImpl->CDSConstants.insert(std::make_pair(Elements, nullptr)) |
| 2442 | .first; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2443 | |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2444 | // The bucket can point to a linked list of different CDS's that have the same |
| 2445 | // body but different types. For example, 0,0,0,1 could be a 4 element array |
| 2446 | // of i8, or a 1-element array of i32. They'll both end up in the same |
| 2447 | /// StringMap bucket, linked up by their Next pointers. Walk the list. |
David Blaikie | 5106ce7 | 2014-11-19 05:49:42 +0000 | [diff] [blame] | 2448 | ConstantDataSequential **Entry = &Slot.second; |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 2449 | for (ConstantDataSequential *Node = *Entry; Node; |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2450 | Entry = &Node->Next, Node = *Entry) |
| 2451 | if (Node->getType() == Ty) |
| 2452 | return Node; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2453 | |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2454 | // Okay, we didn't get a hit. Create a node of the right class, link it in, |
| 2455 | // and return it. |
| 2456 | if (isa<ArrayType>(Ty)) |
David Blaikie | 5106ce7 | 2014-11-19 05:49:42 +0000 | [diff] [blame] | 2457 | return *Entry = new ConstantDataArray(Ty, Slot.first().data()); |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2458 | |
| 2459 | assert(isa<VectorType>(Ty)); |
David Blaikie | 5106ce7 | 2014-11-19 05:49:42 +0000 | [diff] [blame] | 2460 | return *Entry = new ConstantDataVector(Ty, Slot.first().data()); |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2461 | } |
| 2462 | |
| 2463 | void ConstantDataSequential::destroyConstant() { |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2464 | // Remove the constant from the StringMap. |
| 2465 | StringMap<ConstantDataSequential*> &CDSConstants = |
| 2466 | getType()->getContext().pImpl->CDSConstants; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2467 | |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2468 | StringMap<ConstantDataSequential*>::iterator Slot = |
Chris Lattner | 5d4497b | 2012-01-24 09:31:43 +0000 | [diff] [blame] | 2469 | CDSConstants.find(getRawDataValues()); |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2470 | |
| 2471 | assert(Slot != CDSConstants.end() && "CDS not found in uniquing table"); |
| 2472 | |
| 2473 | ConstantDataSequential **Entry = &Slot->getValue(); |
| 2474 | |
| 2475 | // Remove the entry from the hash table. |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 2476 | if (!(*Entry)->Next) { |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2477 | // If there is only one value in the bucket (common case) it must be this |
| 2478 | // entry, and removing the entry should remove the bucket completely. |
| 2479 | assert((*Entry) == this && "Hash mismatch in ConstantDataSequential"); |
| 2480 | getContext().pImpl->CDSConstants.erase(Slot); |
| 2481 | } else { |
| 2482 | // Otherwise, there are multiple entries linked off the bucket, unlink the |
| 2483 | // node we care about but keep the bucket around. |
| 2484 | for (ConstantDataSequential *Node = *Entry; ; |
| 2485 | Entry = &Node->Next, Node = *Entry) { |
| 2486 | assert(Node && "Didn't find entry in its uniquing hash table!"); |
| 2487 | // If we found our entry, unlink it from the list and we're done. |
| 2488 | if (Node == this) { |
| 2489 | *Entry = Node->Next; |
| 2490 | break; |
| 2491 | } |
| 2492 | } |
| 2493 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2494 | |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2495 | // If we were part of a list, make sure that we don't delete the list that is |
| 2496 | // still owned by the uniquing map. |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 2497 | Next = nullptr; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2498 | |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2499 | // Finally, actually delete it. |
| 2500 | destroyConstantImpl(); |
| 2501 | } |
| 2502 | |
| 2503 | /// get() constructors - Return a constant with array type with an element |
| 2504 | /// count and element type matching the ArrayRef passed in. Note that this |
| 2505 | /// can return a ConstantAggregateZero object. |
Chris Lattner | 2068393 | 2012-01-24 14:04:40 +0000 | [diff] [blame] | 2506 | Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint8_t> Elts) { |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2507 | Type *Ty = ArrayType::get(Type::getInt8Ty(Context), Elts.size()); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2508 | const char *Data = reinterpret_cast<const char *>(Elts.data()); |
| 2509 | return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty); |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2510 | } |
Chris Lattner | 2068393 | 2012-01-24 14:04:40 +0000 | [diff] [blame] | 2511 | Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){ |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2512 | Type *Ty = ArrayType::get(Type::getInt16Ty(Context), Elts.size()); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2513 | const char *Data = reinterpret_cast<const char *>(Elts.data()); |
| 2514 | return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty); |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2515 | } |
Chris Lattner | 2068393 | 2012-01-24 14:04:40 +0000 | [diff] [blame] | 2516 | Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){ |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2517 | Type *Ty = ArrayType::get(Type::getInt32Ty(Context), Elts.size()); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2518 | const char *Data = reinterpret_cast<const char *>(Elts.data()); |
| 2519 | return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty); |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2520 | } |
Chris Lattner | 2068393 | 2012-01-24 14:04:40 +0000 | [diff] [blame] | 2521 | Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){ |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2522 | Type *Ty = ArrayType::get(Type::getInt64Ty(Context), Elts.size()); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2523 | const char *Data = reinterpret_cast<const char *>(Elts.data()); |
| 2524 | return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty); |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2525 | } |
Chris Lattner | 2068393 | 2012-01-24 14:04:40 +0000 | [diff] [blame] | 2526 | Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<float> Elts) { |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2527 | Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size()); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2528 | const char *Data = reinterpret_cast<const char *>(Elts.data()); |
| 2529 | return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty); |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2530 | } |
Chris Lattner | 2068393 | 2012-01-24 14:04:40 +0000 | [diff] [blame] | 2531 | Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<double> Elts) { |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2532 | Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size()); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2533 | const char *Data = reinterpret_cast<const char *>(Elts.data()); |
| 2534 | return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty); |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2535 | } |
| 2536 | |
Chris Lattner | 2068393 | 2012-01-24 14:04:40 +0000 | [diff] [blame] | 2537 | /// getString - This method constructs a CDS and initializes it with a text |
| 2538 | /// string. The default behavior (AddNull==true) causes a null terminator to |
| 2539 | /// be placed at the end of the array (increasing the length of the string by |
| 2540 | /// one more than the StringRef would normally indicate. Pass AddNull=false |
| 2541 | /// to disable this behavior. |
| 2542 | Constant *ConstantDataArray::getString(LLVMContext &Context, |
| 2543 | StringRef Str, bool AddNull) { |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2544 | if (!AddNull) { |
| 2545 | const uint8_t *Data = reinterpret_cast<const uint8_t *>(Str.data()); |
Craig Topper | e1d1294 | 2014-08-27 05:25:25 +0000 | [diff] [blame] | 2546 | return get(Context, makeArrayRef(const_cast<uint8_t *>(Data), |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2547 | Str.size())); |
| 2548 | } |
| 2549 | |
Chris Lattner | 2068393 | 2012-01-24 14:04:40 +0000 | [diff] [blame] | 2550 | SmallVector<uint8_t, 64> ElementVals; |
| 2551 | ElementVals.append(Str.begin(), Str.end()); |
| 2552 | ElementVals.push_back(0); |
| 2553 | return get(Context, ElementVals); |
| 2554 | } |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2555 | |
| 2556 | /// get() constructors - Return a constant with vector type with an element |
| 2557 | /// count and element type matching the ArrayRef passed in. Note that this |
| 2558 | /// can return a ConstantAggregateZero object. |
Chris Lattner | 2068393 | 2012-01-24 14:04:40 +0000 | [diff] [blame] | 2559 | Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint8_t> Elts){ |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2560 | Type *Ty = VectorType::get(Type::getInt8Ty(Context), Elts.size()); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2561 | const char *Data = reinterpret_cast<const char *>(Elts.data()); |
| 2562 | return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty); |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2563 | } |
Chris Lattner | 2068393 | 2012-01-24 14:04:40 +0000 | [diff] [blame] | 2564 | Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){ |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2565 | Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size()); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2566 | const char *Data = reinterpret_cast<const char *>(Elts.data()); |
| 2567 | return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty); |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2568 | } |
Chris Lattner | 2068393 | 2012-01-24 14:04:40 +0000 | [diff] [blame] | 2569 | Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){ |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2570 | Type *Ty = VectorType::get(Type::getInt32Ty(Context), Elts.size()); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2571 | const char *Data = reinterpret_cast<const char *>(Elts.data()); |
| 2572 | return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty); |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2573 | } |
Chris Lattner | 2068393 | 2012-01-24 14:04:40 +0000 | [diff] [blame] | 2574 | Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){ |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2575 | Type *Ty = VectorType::get(Type::getInt64Ty(Context), Elts.size()); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2576 | const char *Data = reinterpret_cast<const char *>(Elts.data()); |
| 2577 | return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty); |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2578 | } |
Chris Lattner | 2068393 | 2012-01-24 14:04:40 +0000 | [diff] [blame] | 2579 | Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<float> Elts) { |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2580 | Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size()); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2581 | const char *Data = reinterpret_cast<const char *>(Elts.data()); |
| 2582 | return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty); |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2583 | } |
Chris Lattner | 2068393 | 2012-01-24 14:04:40 +0000 | [diff] [blame] | 2584 | Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<double> Elts) { |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2585 | Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size()); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2586 | const char *Data = reinterpret_cast<const char *>(Elts.data()); |
| 2587 | return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty); |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2588 | } |
| 2589 | |
Chris Lattner | e9eed29 | 2012-01-25 05:19:54 +0000 | [diff] [blame] | 2590 | Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) { |
| 2591 | assert(isElementTypeCompatible(V->getType()) && |
| 2592 | "Element type not compatible with ConstantData"); |
| 2593 | if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) { |
| 2594 | if (CI->getType()->isIntegerTy(8)) { |
| 2595 | SmallVector<uint8_t, 16> Elts(NumElts, CI->getZExtValue()); |
| 2596 | return get(V->getContext(), Elts); |
| 2597 | } |
| 2598 | if (CI->getType()->isIntegerTy(16)) { |
| 2599 | SmallVector<uint16_t, 16> Elts(NumElts, CI->getZExtValue()); |
| 2600 | return get(V->getContext(), Elts); |
| 2601 | } |
| 2602 | if (CI->getType()->isIntegerTy(32)) { |
| 2603 | SmallVector<uint32_t, 16> Elts(NumElts, CI->getZExtValue()); |
| 2604 | return get(V->getContext(), Elts); |
| 2605 | } |
| 2606 | assert(CI->getType()->isIntegerTy(64) && "Unsupported ConstantData type"); |
| 2607 | SmallVector<uint64_t, 16> Elts(NumElts, CI->getZExtValue()); |
| 2608 | return get(V->getContext(), Elts); |
| 2609 | } |
| 2610 | |
Chris Lattner | 978fe0c | 2012-01-30 06:21:21 +0000 | [diff] [blame] | 2611 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) { |
| 2612 | if (CFP->getType()->isFloatTy()) { |
| 2613 | SmallVector<float, 16> Elts(NumElts, CFP->getValueAPF().convertToFloat()); |
| 2614 | return get(V->getContext(), Elts); |
| 2615 | } |
| 2616 | if (CFP->getType()->isDoubleTy()) { |
| 2617 | SmallVector<double, 16> Elts(NumElts, |
| 2618 | CFP->getValueAPF().convertToDouble()); |
| 2619 | return get(V->getContext(), Elts); |
| 2620 | } |
Chris Lattner | e9eed29 | 2012-01-25 05:19:54 +0000 | [diff] [blame] | 2621 | } |
Chris Lattner | 978fe0c | 2012-01-30 06:21:21 +0000 | [diff] [blame] | 2622 | return ConstantVector::getSplat(NumElts, V); |
Chris Lattner | e9eed29 | 2012-01-25 05:19:54 +0000 | [diff] [blame] | 2623 | } |
| 2624 | |
| 2625 | |
Chris Lattner | e4f3f10 | 2012-01-24 04:43:41 +0000 | [diff] [blame] | 2626 | /// getElementAsInteger - If this is a sequential container of integers (of |
| 2627 | /// any size), return the specified element in the low bits of a uint64_t. |
| 2628 | uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const { |
| 2629 | assert(isa<IntegerType>(getElementType()) && |
| 2630 | "Accessor can only be used when element is an integer"); |
| 2631 | const char *EltPtr = getElementPointer(Elt); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2632 | |
Chris Lattner | e4f3f10 | 2012-01-24 04:43:41 +0000 | [diff] [blame] | 2633 | // The data is stored in host byte order, make sure to cast back to the right |
| 2634 | // type to load with the right endianness. |
Chris Lattner | 8326bd8 | 2012-01-26 00:42:34 +0000 | [diff] [blame] | 2635 | switch (getElementType()->getIntegerBitWidth()) { |
Craig Topper | c514b54 | 2012-02-05 22:14:15 +0000 | [diff] [blame] | 2636 | default: llvm_unreachable("Invalid bitwidth for CDS"); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2637 | case 8: |
| 2638 | return *const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(EltPtr)); |
| 2639 | case 16: |
| 2640 | return *const_cast<uint16_t *>(reinterpret_cast<const uint16_t *>(EltPtr)); |
| 2641 | case 32: |
| 2642 | return *const_cast<uint32_t *>(reinterpret_cast<const uint32_t *>(EltPtr)); |
| 2643 | case 64: |
| 2644 | return *const_cast<uint64_t *>(reinterpret_cast<const uint64_t *>(EltPtr)); |
Chris Lattner | e4f3f10 | 2012-01-24 04:43:41 +0000 | [diff] [blame] | 2645 | } |
| 2646 | } |
| 2647 | |
| 2648 | /// getElementAsAPFloat - If this is a sequential container of floating point |
| 2649 | /// type, return the specified element as an APFloat. |
| 2650 | APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const { |
| 2651 | const char *EltPtr = getElementPointer(Elt); |
| 2652 | |
| 2653 | switch (getElementType()->getTypeID()) { |
Nick Lewycky | ff50962 | 2012-01-25 03:20:12 +0000 | [diff] [blame] | 2654 | default: |
Craig Topper | c514b54 | 2012-02-05 22:14:15 +0000 | [diff] [blame] | 2655 | llvm_unreachable("Accessor can only be used when element is float/double!"); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2656 | case Type::FloatTyID: { |
| 2657 | const float *FloatPrt = reinterpret_cast<const float *>(EltPtr); |
| 2658 | return APFloat(*const_cast<float *>(FloatPrt)); |
| 2659 | } |
| 2660 | case Type::DoubleTyID: { |
| 2661 | const double *DoublePtr = reinterpret_cast<const double *>(EltPtr); |
| 2662 | return APFloat(*const_cast<double *>(DoublePtr)); |
| 2663 | } |
Chris Lattner | e4f3f10 | 2012-01-24 04:43:41 +0000 | [diff] [blame] | 2664 | } |
| 2665 | } |
| 2666 | |
| 2667 | /// getElementAsFloat - If this is an sequential container of floats, return |
| 2668 | /// the specified element as a float. |
| 2669 | float ConstantDataSequential::getElementAsFloat(unsigned Elt) const { |
| 2670 | assert(getElementType()->isFloatTy() && |
| 2671 | "Accessor can only be used when element is a 'float'"); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2672 | const float *EltPtr = reinterpret_cast<const float *>(getElementPointer(Elt)); |
| 2673 | return *const_cast<float *>(EltPtr); |
Chris Lattner | e4f3f10 | 2012-01-24 04:43:41 +0000 | [diff] [blame] | 2674 | } |
| 2675 | |
| 2676 | /// getElementAsDouble - If this is an sequential container of doubles, return |
| 2677 | /// the specified element as a float. |
| 2678 | double ConstantDataSequential::getElementAsDouble(unsigned Elt) const { |
| 2679 | assert(getElementType()->isDoubleTy() && |
| 2680 | "Accessor can only be used when element is a 'float'"); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2681 | const double *EltPtr = |
| 2682 | reinterpret_cast<const double *>(getElementPointer(Elt)); |
| 2683 | return *const_cast<double *>(EltPtr); |
Chris Lattner | e4f3f10 | 2012-01-24 04:43:41 +0000 | [diff] [blame] | 2684 | } |
| 2685 | |
| 2686 | /// getElementAsConstant - Return a Constant for a specified index's element. |
| 2687 | /// Note that this has to compute a new constant to return, so it isn't as |
| 2688 | /// efficient as getElementAsInteger/Float/Double. |
| 2689 | Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const { |
| 2690 | if (getElementType()->isFloatTy() || getElementType()->isDoubleTy()) |
| 2691 | return ConstantFP::get(getContext(), getElementAsAPFloat(Elt)); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2692 | |
Chris Lattner | e4f3f10 | 2012-01-24 04:43:41 +0000 | [diff] [blame] | 2693 | return ConstantInt::get(getElementType(), getElementAsInteger(Elt)); |
| 2694 | } |
| 2695 | |
Chris Lattner | 5dd4d87 | 2012-01-24 09:01:07 +0000 | [diff] [blame] | 2696 | /// isString - This method returns true if this is an array of i8. |
| 2697 | bool ConstantDataSequential::isString() const { |
| 2698 | return isa<ArrayType>(getType()) && getElementType()->isIntegerTy(8); |
| 2699 | } |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2700 | |
Chris Lattner | 5dd4d87 | 2012-01-24 09:01:07 +0000 | [diff] [blame] | 2701 | /// isCString - This method returns true if the array "isString", ends with a |
| 2702 | /// nul byte, and does not contains any other nul bytes. |
| 2703 | bool ConstantDataSequential::isCString() const { |
| 2704 | if (!isString()) |
| 2705 | return false; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2706 | |
Chris Lattner | 5dd4d87 | 2012-01-24 09:01:07 +0000 | [diff] [blame] | 2707 | StringRef Str = getAsString(); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2708 | |
Chris Lattner | 5dd4d87 | 2012-01-24 09:01:07 +0000 | [diff] [blame] | 2709 | // The last value must be nul. |
| 2710 | if (Str.back() != 0) return false; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2711 | |
Chris Lattner | 5dd4d87 | 2012-01-24 09:01:07 +0000 | [diff] [blame] | 2712 | // Other elements must be non-nul. |
| 2713 | return Str.drop_back().find(0) == StringRef::npos; |
| 2714 | } |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 2715 | |
Chris Lattner | f14a67f | 2012-01-26 02:31:22 +0000 | [diff] [blame] | 2716 | /// getSplatValue - If this is a splat constant, meaning that all of the |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 2717 | /// elements have the same value, return that value. Otherwise return nullptr. |
Chris Lattner | f14a67f | 2012-01-26 02:31:22 +0000 | [diff] [blame] | 2718 | Constant *ConstantDataVector::getSplatValue() const { |
| 2719 | const char *Base = getRawDataValues().data(); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2720 | |
Chris Lattner | f14a67f | 2012-01-26 02:31:22 +0000 | [diff] [blame] | 2721 | // Compare elements 1+ to the 0'th element. |
| 2722 | unsigned EltSize = getElementByteSize(); |
| 2723 | for (unsigned i = 1, e = getNumElements(); i != e; ++i) |
| 2724 | if (memcmp(Base, Base+i*EltSize, EltSize)) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 2725 | return nullptr; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2726 | |
Chris Lattner | f14a67f | 2012-01-26 02:31:22 +0000 | [diff] [blame] | 2727 | // If they're all the same, return the 0th one as a representative. |
| 2728 | return getElementAsConstant(0); |
| 2729 | } |
Chris Lattner | a3b94ba | 2010-03-30 20:48:48 +0000 | [diff] [blame] | 2730 | |
Chris Lattner | c4062ba | 2005-10-03 21:58:36 +0000 | [diff] [blame] | 2731 | //===----------------------------------------------------------------------===// |
| 2732 | // replaceUsesOfWithOnConstant implementations |
| 2733 | |
Chris Lattner | 913849b | 2007-08-21 00:55:23 +0000 | [diff] [blame] | 2734 | /// replaceUsesOfWithOnConstant - Update this constant array to change uses of |
| 2735 | /// 'From' to be uses of 'To'. This must update the uniquing data structures |
| 2736 | /// etc. |
| 2737 | /// |
| 2738 | /// Note that we intentionally replace all uses of From with To here. Consider |
| 2739 | /// a large array that uses 'From' 1000 times. By handling this case all here, |
| 2740 | /// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that |
| 2741 | /// single invocation handles all 1000 uses. Handling them one at a time would |
| 2742 | /// work, but would be really slow because it would have to unique each updated |
| 2743 | /// array instance. |
Chris Lattner | 31b132c | 2009-10-28 00:01:44 +0000 | [diff] [blame] | 2744 | /// |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2745 | void Constant::replaceUsesOfWithOnConstantImpl(Constant *Replacement) { |
| 2746 | // I do need to replace this with an existing value. |
| 2747 | assert(Replacement != this && "I didn't contain From!"); |
| 2748 | |
| 2749 | // Everyone using this now uses the replacement. |
| 2750 | replaceAllUsesWith(Replacement); |
| 2751 | |
| 2752 | // Delete the old constant! |
| 2753 | destroyConstant(); |
| 2754 | } |
| 2755 | |
Chris Lattner | c4062ba | 2005-10-03 21:58:36 +0000 | [diff] [blame] | 2756 | void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To, |
Chris Lattner | 7a1450d | 2005-10-04 18:13:04 +0000 | [diff] [blame] | 2757 | Use *U) { |
Owen Anderson | c2c7932 | 2009-07-28 18:32:17 +0000 | [diff] [blame] | 2758 | assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!"); |
| 2759 | Constant *ToC = cast<Constant>(To); |
| 2760 | |
Talin | 46e9b44 | 2012-02-05 20:54:10 +0000 | [diff] [blame] | 2761 | SmallVector<Constant*, 8> Values; |
Owen Anderson | c2c7932 | 2009-07-28 18:32:17 +0000 | [diff] [blame] | 2762 | Values.reserve(getNumOperands()); // Build replacement array. |
| 2763 | |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2764 | // Fill values with the modified operands of the constant array. Also, |
Owen Anderson | c2c7932 | 2009-07-28 18:32:17 +0000 | [diff] [blame] | 2765 | // compute whether this turns into an all-zeros array. |
Owen Anderson | c2c7932 | 2009-07-28 18:32:17 +0000 | [diff] [blame] | 2766 | unsigned NumUpdated = 0; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2767 | |
Chris Lattner | f14a67f | 2012-01-26 02:31:22 +0000 | [diff] [blame] | 2768 | // Keep track of whether all the values in the array are "ToC". |
| 2769 | bool AllSame = true; |
| 2770 | for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) { |
| 2771 | Constant *Val = cast<Constant>(O->get()); |
| 2772 | if (Val == From) { |
| 2773 | Val = ToC; |
| 2774 | ++NumUpdated; |
Owen Anderson | c2c7932 | 2009-07-28 18:32:17 +0000 | [diff] [blame] | 2775 | } |
Chris Lattner | f14a67f | 2012-01-26 02:31:22 +0000 | [diff] [blame] | 2776 | Values.push_back(Val); |
Talin | 46e9b44 | 2012-02-05 20:54:10 +0000 | [diff] [blame] | 2777 | AllSame &= Val == ToC; |
Owen Anderson | c2c7932 | 2009-07-28 18:32:17 +0000 | [diff] [blame] | 2778 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2779 | |
Chris Lattner | f14a67f | 2012-01-26 02:31:22 +0000 | [diff] [blame] | 2780 | if (AllSame && ToC->isNullValue()) { |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2781 | replaceUsesOfWithOnConstantImpl(ConstantAggregateZero::get(getType())); |
| 2782 | return; |
| 2783 | } |
| 2784 | if (AllSame && isa<UndefValue>(ToC)) { |
| 2785 | replaceUsesOfWithOnConstantImpl(UndefValue::get(getType())); |
| 2786 | return; |
Duncan P. N. Exon Smith | d8c6054 | 2014-08-19 02:16:51 +0000 | [diff] [blame] | 2787 | } |
Aaron Ballman | e4b91dc | 2014-08-19 14:59:02 +0000 | [diff] [blame] | 2788 | |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2789 | // Check for any other type of constant-folding. |
| 2790 | if (Constant *C = getImpl(getType(), Values)) { |
| 2791 | replaceUsesOfWithOnConstantImpl(C); |
| 2792 | return; |
| 2793 | } |
Aaron Ballman | e4b91dc | 2014-08-19 14:59:02 +0000 | [diff] [blame] | 2794 | |
Duncan P. N. Exon Smith | 909620a | 2014-08-19 19:13:30 +0000 | [diff] [blame] | 2795 | // Update to the new value. |
| 2796 | if (Constant *C = getContext().pImpl->ArrayConstants.replaceOperandsInPlace( |
| 2797 | Values, this, From, ToC, NumUpdated, U - OperandList)) |
| 2798 | replaceUsesOfWithOnConstantImpl(C); |
Chris Lattner | c4062ba | 2005-10-03 21:58:36 +0000 | [diff] [blame] | 2799 | } |
| 2800 | |
| 2801 | void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To, |
Chris Lattner | 7a1450d | 2005-10-04 18:13:04 +0000 | [diff] [blame] | 2802 | Use *U) { |
Owen Anderson | 45308b5 | 2009-07-27 22:29:26 +0000 | [diff] [blame] | 2803 | assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!"); |
| 2804 | Constant *ToC = cast<Constant>(To); |
| 2805 | |
| 2806 | unsigned OperandToUpdate = U-OperandList; |
| 2807 | assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!"); |
| 2808 | |
Talin | 46e9b44 | 2012-02-05 20:54:10 +0000 | [diff] [blame] | 2809 | SmallVector<Constant*, 8> Values; |
Owen Anderson | 45308b5 | 2009-07-27 22:29:26 +0000 | [diff] [blame] | 2810 | Values.reserve(getNumOperands()); // Build replacement struct. |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2811 | |
| 2812 | // Fill values with the modified operands of the constant struct. Also, |
Owen Anderson | 45308b5 | 2009-07-27 22:29:26 +0000 | [diff] [blame] | 2813 | // compute whether this turns into an all-zeros struct. |
| 2814 | bool isAllZeros = false; |
Chris Lattner | f14a67f | 2012-01-26 02:31:22 +0000 | [diff] [blame] | 2815 | bool isAllUndef = false; |
| 2816 | if (ToC->isNullValue()) { |
Owen Anderson | 45308b5 | 2009-07-27 22:29:26 +0000 | [diff] [blame] | 2817 | isAllZeros = true; |
| 2818 | for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) { |
| 2819 | Constant *Val = cast<Constant>(O->get()); |
| 2820 | Values.push_back(Val); |
| 2821 | if (isAllZeros) isAllZeros = Val->isNullValue(); |
| 2822 | } |
Chris Lattner | f14a67f | 2012-01-26 02:31:22 +0000 | [diff] [blame] | 2823 | } else if (isa<UndefValue>(ToC)) { |
| 2824 | isAllUndef = true; |
| 2825 | for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) { |
| 2826 | Constant *Val = cast<Constant>(O->get()); |
| 2827 | Values.push_back(Val); |
| 2828 | if (isAllUndef) isAllUndef = isa<UndefValue>(Val); |
| 2829 | } |
| 2830 | } else { |
| 2831 | for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O) |
| 2832 | Values.push_back(cast<Constant>(O->get())); |
Owen Anderson | 45308b5 | 2009-07-27 22:29:26 +0000 | [diff] [blame] | 2833 | } |
| 2834 | Values[OperandToUpdate] = ToC; |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2835 | |
Owen Anderson | 45308b5 | 2009-07-27 22:29:26 +0000 | [diff] [blame] | 2836 | if (isAllZeros) { |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2837 | replaceUsesOfWithOnConstantImpl(ConstantAggregateZero::get(getType())); |
| 2838 | return; |
| 2839 | } |
| 2840 | if (isAllUndef) { |
| 2841 | replaceUsesOfWithOnConstantImpl(UndefValue::get(getType())); |
| 2842 | return; |
Duncan P. N. Exon Smith | d8c6054 | 2014-08-19 02:16:51 +0000 | [diff] [blame] | 2843 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2844 | |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2845 | // Update to the new value. |
Duncan P. N. Exon Smith | 909620a | 2014-08-19 19:13:30 +0000 | [diff] [blame] | 2846 | if (Constant *C = getContext().pImpl->StructConstants.replaceOperandsInPlace( |
| 2847 | Values, this, From, ToC)) |
| 2848 | replaceUsesOfWithOnConstantImpl(C); |
Chris Lattner | c4062ba | 2005-10-03 21:58:36 +0000 | [diff] [blame] | 2849 | } |
| 2850 | |
Reid Spencer | d84d35b | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 2851 | void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To, |
Chris Lattner | 7a1450d | 2005-10-04 18:13:04 +0000 | [diff] [blame] | 2852 | Use *U) { |
Chris Lattner | c4062ba | 2005-10-03 21:58:36 +0000 | [diff] [blame] | 2853 | assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!"); |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2854 | Constant *ToC = cast<Constant>(To); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2855 | |
Chris Lattner | a474bb2 | 2012-01-26 20:40:56 +0000 | [diff] [blame] | 2856 | SmallVector<Constant*, 8> Values; |
Chris Lattner | c4062ba | 2005-10-03 21:58:36 +0000 | [diff] [blame] | 2857 | Values.reserve(getNumOperands()); // Build replacement array... |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2858 | unsigned NumUpdated = 0; |
Chris Lattner | c4062ba | 2005-10-03 21:58:36 +0000 | [diff] [blame] | 2859 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 2860 | Constant *Val = getOperand(i); |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2861 | if (Val == From) { |
| 2862 | ++NumUpdated; |
| 2863 | Val = ToC; |
| 2864 | } |
Chris Lattner | c4062ba | 2005-10-03 21:58:36 +0000 | [diff] [blame] | 2865 | Values.push_back(Val); |
| 2866 | } |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2867 | |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2868 | if (Constant *C = getImpl(Values)) { |
| 2869 | replaceUsesOfWithOnConstantImpl(C); |
| 2870 | return; |
| 2871 | } |
Duncan P. N. Exon Smith | 687744d | 2014-08-19 02:24:46 +0000 | [diff] [blame] | 2872 | |
Duncan P. N. Exon Smith | 909620a | 2014-08-19 19:13:30 +0000 | [diff] [blame] | 2873 | // Update to the new value. |
| 2874 | if (Constant *C = getContext().pImpl->VectorConstants.replaceOperandsInPlace( |
| 2875 | Values, this, From, ToC, NumUpdated, U - OperandList)) |
| 2876 | replaceUsesOfWithOnConstantImpl(C); |
Chris Lattner | c4062ba | 2005-10-03 21:58:36 +0000 | [diff] [blame] | 2877 | } |
| 2878 | |
| 2879 | void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV, |
Chris Lattner | 7a1450d | 2005-10-04 18:13:04 +0000 | [diff] [blame] | 2880 | Use *U) { |
Chris Lattner | c4062ba | 2005-10-03 21:58:36 +0000 | [diff] [blame] | 2881 | assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!"); |
| 2882 | Constant *To = cast<Constant>(ToV); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2883 | |
Chris Lattner | 37e3835 | 2012-01-26 20:37:11 +0000 | [diff] [blame] | 2884 | SmallVector<Constant*, 8> NewOps; |
Duncan P. N. Exon Smith | 33de00c | 2014-08-19 20:03:35 +0000 | [diff] [blame] | 2885 | unsigned NumUpdated = 0; |
Chris Lattner | 37e3835 | 2012-01-26 20:37:11 +0000 | [diff] [blame] | 2886 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 2887 | Constant *Op = getOperand(i); |
Duncan P. N. Exon Smith | 33de00c | 2014-08-19 20:03:35 +0000 | [diff] [blame] | 2888 | if (Op == From) { |
| 2889 | ++NumUpdated; |
| 2890 | Op = To; |
| 2891 | } |
| 2892 | NewOps.push_back(Op); |
Chris Lattner | c4062ba | 2005-10-03 21:58:36 +0000 | [diff] [blame] | 2893 | } |
Duncan P. N. Exon Smith | 33de00c | 2014-08-19 20:03:35 +0000 | [diff] [blame] | 2894 | assert(NumUpdated && "I didn't contain From!"); |
Galina Kistanova | fc25990 | 2012-07-13 01:25:27 +0000 | [diff] [blame] | 2895 | |
Duncan P. N. Exon Smith | 33de00c | 2014-08-19 20:03:35 +0000 | [diff] [blame] | 2896 | if (Constant *C = getWithOperands(NewOps, getType(), true)) { |
| 2897 | replaceUsesOfWithOnConstantImpl(C); |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2898 | return; |
| 2899 | } |
| 2900 | |
Duncan P. N. Exon Smith | 33de00c | 2014-08-19 20:03:35 +0000 | [diff] [blame] | 2901 | // Update to the new value. |
| 2902 | if (Constant *C = getContext().pImpl->ExprConstants.replaceOperandsInPlace( |
| 2903 | NewOps, this, From, To, NumUpdated, U - OperandList)) |
| 2904 | replaceUsesOfWithOnConstantImpl(C); |
Duncan P. N. Exon Smith | 317c139 | 2014-08-19 16:39:58 +0000 | [diff] [blame] | 2905 | } |
| 2906 | |
James Molloy | ce54568 | 2012-11-17 17:56:30 +0000 | [diff] [blame] | 2907 | Instruction *ConstantExpr::getAsInstruction() { |
| 2908 | SmallVector<Value*,4> ValueOperands; |
| 2909 | for (op_iterator I = op_begin(), E = op_end(); I != E; ++I) |
| 2910 | ValueOperands.push_back(cast<Value>(I)); |
| 2911 | |
| 2912 | ArrayRef<Value*> Ops(ValueOperands); |
| 2913 | |
| 2914 | switch (getOpcode()) { |
| 2915 | case Instruction::Trunc: |
| 2916 | case Instruction::ZExt: |
| 2917 | case Instruction::SExt: |
| 2918 | case Instruction::FPTrunc: |
| 2919 | case Instruction::FPExt: |
| 2920 | case Instruction::UIToFP: |
| 2921 | case Instruction::SIToFP: |
| 2922 | case Instruction::FPToUI: |
| 2923 | case Instruction::FPToSI: |
| 2924 | case Instruction::PtrToInt: |
| 2925 | case Instruction::IntToPtr: |
| 2926 | case Instruction::BitCast: |
Eli Bendersky | 157a97a | 2014-01-18 22:54:33 +0000 | [diff] [blame] | 2927 | case Instruction::AddrSpaceCast: |
James Molloy | ce54568 | 2012-11-17 17:56:30 +0000 | [diff] [blame] | 2928 | return CastInst::Create((Instruction::CastOps)getOpcode(), |
| 2929 | Ops[0], getType()); |
| 2930 | case Instruction::Select: |
| 2931 | return SelectInst::Create(Ops[0], Ops[1], Ops[2]); |
| 2932 | case Instruction::InsertElement: |
| 2933 | return InsertElementInst::Create(Ops[0], Ops[1], Ops[2]); |
| 2934 | case Instruction::ExtractElement: |
| 2935 | return ExtractElementInst::Create(Ops[0], Ops[1]); |
| 2936 | case Instruction::InsertValue: |
| 2937 | return InsertValueInst::Create(Ops[0], Ops[1], getIndices()); |
| 2938 | case Instruction::ExtractValue: |
| 2939 | return ExtractValueInst::Create(Ops[0], getIndices()); |
| 2940 | case Instruction::ShuffleVector: |
| 2941 | return new ShuffleVectorInst(Ops[0], Ops[1], Ops[2]); |
| 2942 | |
| 2943 | case Instruction::GetElementPtr: |
| 2944 | if (cast<GEPOperator>(this)->isInBounds()) |
| 2945 | return GetElementPtrInst::CreateInBounds(Ops[0], Ops.slice(1)); |
| 2946 | else |
| 2947 | return GetElementPtrInst::Create(Ops[0], Ops.slice(1)); |
| 2948 | |
| 2949 | case Instruction::ICmp: |
| 2950 | case Instruction::FCmp: |
| 2951 | return CmpInst::Create((Instruction::OtherOps)getOpcode(), |
| 2952 | getPredicate(), Ops[0], Ops[1]); |
| 2953 | |
| 2954 | default: |
| 2955 | assert(getNumOperands() == 2 && "Must be binary operator?"); |
| 2956 | BinaryOperator *BO = |
| 2957 | BinaryOperator::Create((Instruction::BinaryOps)getOpcode(), |
| 2958 | Ops[0], Ops[1]); |
| 2959 | if (isa<OverflowingBinaryOperator>(BO)) { |
| 2960 | BO->setHasNoUnsignedWrap(SubclassOptionalData & |
| 2961 | OverflowingBinaryOperator::NoUnsignedWrap); |
| 2962 | BO->setHasNoSignedWrap(SubclassOptionalData & |
| 2963 | OverflowingBinaryOperator::NoSignedWrap); |
| 2964 | } |
| 2965 | if (isa<PossiblyExactOperator>(BO)) |
| 2966 | BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact); |
| 2967 | return BO; |
| 2968 | } |
| 2969 | } |