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