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