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