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