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