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