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