Dan Gohman | 83e3c4f | 2009-09-10 23:07:18 +0000 | [diff] [blame] | 1 | //===-- ConstantFolding.cpp - Fold instructions into constants ------------===// |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 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. |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Dan Gohman | 83e3c4f | 2009-09-10 23:07:18 +0000 | [diff] [blame] | 10 | // This file defines routines for folding instructions into constants. |
| 11 | // |
| 12 | // Also, to supplement the basic VMCore ConstantExpr simplifications, |
| 13 | // this file defines some additional folding routines that can make use of |
| 14 | // TargetData information. These functions cannot go in VMCore due to library |
| 15 | // dependency issues. |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 16 | // |
| 17 | //===----------------------------------------------------------------------===// |
| 18 | |
| 19 | #include "llvm/Analysis/ConstantFolding.h" |
| 20 | #include "llvm/Constants.h" |
| 21 | #include "llvm/DerivedTypes.h" |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 22 | #include "llvm/Function.h" |
Dan Gohman | 9a38e3e | 2009-05-07 19:46:24 +0000 | [diff] [blame] | 23 | #include "llvm/GlobalVariable.h" |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 24 | #include "llvm/Instructions.h" |
| 25 | #include "llvm/Intrinsics.h" |
Chris Lattner | 62d327e | 2009-10-22 06:38:35 +0000 | [diff] [blame] | 26 | #include "llvm/Analysis/ValueTracking.h" |
| 27 | #include "llvm/Target/TargetData.h" |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/SmallVector.h" |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/StringMap.h" |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 30 | #include "llvm/Support/ErrorHandling.h" |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 31 | #include "llvm/Support/GetElementPtrTypeIterator.h" |
| 32 | #include "llvm/Support/MathExtras.h" |
| 33 | #include <cerrno> |
Jeff Cohen | 97af751 | 2006-12-02 02:22:01 +0000 | [diff] [blame] | 34 | #include <cmath> |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 35 | using namespace llvm; |
| 36 | |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 37 | //===----------------------------------------------------------------------===// |
| 38 | // Constant Folding internal helper functions |
| 39 | //===----------------------------------------------------------------------===// |
| 40 | |
Chris Lattner | 6333c39 | 2009-10-25 06:08:26 +0000 | [diff] [blame] | 41 | /// FoldBitCast - Constant fold bitcast, symbolically evaluating it with |
| 42 | /// TargetData. This always returns a non-null constant, but it may be a |
| 43 | /// ConstantExpr if unfoldable. |
| 44 | static Constant *FoldBitCast(Constant *C, const Type *DestTy, |
| 45 | const TargetData &TD) { |
Chris Lattner | 93798da | 2009-10-25 06:15:37 +0000 | [diff] [blame] | 46 | |
| 47 | // This only handles casts to vectors currently. |
| 48 | const VectorType *DestVTy = dyn_cast<VectorType>(DestTy); |
| 49 | if (DestVTy == 0) |
| 50 | return ConstantExpr::getBitCast(C, DestTy); |
| 51 | |
| 52 | // If this is a scalar -> vector cast, convert the input into a <1 x scalar> |
| 53 | // vector so the code below can handle it uniformly. |
| 54 | if (isa<ConstantFP>(C) || isa<ConstantInt>(C)) { |
| 55 | Constant *Ops = C; // don't take the address of C! |
| 56 | return FoldBitCast(ConstantVector::get(&Ops, 1), DestTy, TD); |
| 57 | } |
| 58 | |
Chris Lattner | 6333c39 | 2009-10-25 06:08:26 +0000 | [diff] [blame] | 59 | // If this is a bitcast from constant vector -> vector, fold it. |
| 60 | ConstantVector *CV = dyn_cast<ConstantVector>(C); |
| 61 | if (CV == 0) |
| 62 | return ConstantExpr::getBitCast(C, DestTy); |
| 63 | |
Chris Lattner | 6333c39 | 2009-10-25 06:08:26 +0000 | [diff] [blame] | 64 | // If the element types match, VMCore can fold it. |
| 65 | unsigned NumDstElt = DestVTy->getNumElements(); |
| 66 | unsigned NumSrcElt = CV->getNumOperands(); |
| 67 | if (NumDstElt == NumSrcElt) |
| 68 | return ConstantExpr::getBitCast(C, DestTy); |
| 69 | |
| 70 | const Type *SrcEltTy = CV->getType()->getElementType(); |
| 71 | const Type *DstEltTy = DestVTy->getElementType(); |
| 72 | |
| 73 | // Otherwise, we're changing the number of elements in a vector, which |
| 74 | // requires endianness information to do the right thing. For example, |
| 75 | // bitcast (<2 x i64> <i64 0, i64 1> to <4 x i32>) |
| 76 | // folds to (little endian): |
| 77 | // <4 x i32> <i32 0, i32 0, i32 1, i32 0> |
| 78 | // and to (big endian): |
| 79 | // <4 x i32> <i32 0, i32 0, i32 0, i32 1> |
| 80 | |
| 81 | // First thing is first. We only want to think about integer here, so if |
| 82 | // we have something in FP form, recast it as integer. |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 83 | if (DstEltTy->isFloatingPointTy()) { |
Chris Lattner | 6333c39 | 2009-10-25 06:08:26 +0000 | [diff] [blame] | 84 | // Fold to an vector of integers with same size as our FP type. |
| 85 | unsigned FPWidth = DstEltTy->getPrimitiveSizeInBits(); |
| 86 | const Type *DestIVTy = |
| 87 | VectorType::get(IntegerType::get(C->getContext(), FPWidth), NumDstElt); |
| 88 | // Recursively handle this integer conversion, if possible. |
| 89 | C = FoldBitCast(C, DestIVTy, TD); |
| 90 | if (!C) return ConstantExpr::getBitCast(C, DestTy); |
| 91 | |
| 92 | // Finally, VMCore can handle this now that #elts line up. |
| 93 | return ConstantExpr::getBitCast(C, DestTy); |
| 94 | } |
| 95 | |
| 96 | // Okay, we know the destination is integer, if the input is FP, convert |
| 97 | // it to integer first. |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 98 | if (SrcEltTy->isFloatingPointTy()) { |
Chris Lattner | 6333c39 | 2009-10-25 06:08:26 +0000 | [diff] [blame] | 99 | unsigned FPWidth = SrcEltTy->getPrimitiveSizeInBits(); |
| 100 | const Type *SrcIVTy = |
| 101 | VectorType::get(IntegerType::get(C->getContext(), FPWidth), NumSrcElt); |
| 102 | // Ask VMCore to do the conversion now that #elts line up. |
| 103 | C = ConstantExpr::getBitCast(C, SrcIVTy); |
| 104 | CV = dyn_cast<ConstantVector>(C); |
| 105 | if (!CV) // If VMCore wasn't able to fold it, bail out. |
| 106 | return C; |
| 107 | } |
| 108 | |
| 109 | // Now we know that the input and output vectors are both integer vectors |
| 110 | // of the same size, and that their #elements is not the same. Do the |
| 111 | // conversion here, which depends on whether the input or output has |
| 112 | // more elements. |
| 113 | bool isLittleEndian = TD.isLittleEndian(); |
| 114 | |
| 115 | SmallVector<Constant*, 32> Result; |
| 116 | if (NumDstElt < NumSrcElt) { |
| 117 | // Handle: bitcast (<4 x i32> <i32 0, i32 1, i32 2, i32 3> to <2 x i64>) |
| 118 | Constant *Zero = Constant::getNullValue(DstEltTy); |
| 119 | unsigned Ratio = NumSrcElt/NumDstElt; |
| 120 | unsigned SrcBitSize = SrcEltTy->getPrimitiveSizeInBits(); |
| 121 | unsigned SrcElt = 0; |
| 122 | for (unsigned i = 0; i != NumDstElt; ++i) { |
| 123 | // Build each element of the result. |
| 124 | Constant *Elt = Zero; |
| 125 | unsigned ShiftAmt = isLittleEndian ? 0 : SrcBitSize*(Ratio-1); |
| 126 | for (unsigned j = 0; j != Ratio; ++j) { |
| 127 | Constant *Src = dyn_cast<ConstantInt>(CV->getOperand(SrcElt++)); |
| 128 | if (!Src) // Reject constantexpr elements. |
| 129 | return ConstantExpr::getBitCast(C, DestTy); |
| 130 | |
| 131 | // Zero extend the element to the right size. |
| 132 | Src = ConstantExpr::getZExt(Src, Elt->getType()); |
| 133 | |
| 134 | // Shift it to the right place, depending on endianness. |
| 135 | Src = ConstantExpr::getShl(Src, |
| 136 | ConstantInt::get(Src->getType(), ShiftAmt)); |
| 137 | ShiftAmt += isLittleEndian ? SrcBitSize : -SrcBitSize; |
| 138 | |
| 139 | // Mix it in. |
| 140 | Elt = ConstantExpr::getOr(Elt, Src); |
| 141 | } |
| 142 | Result.push_back(Elt); |
| 143 | } |
| 144 | } else { |
| 145 | // Handle: bitcast (<2 x i64> <i64 0, i64 1> to <4 x i32>) |
| 146 | unsigned Ratio = NumDstElt/NumSrcElt; |
| 147 | unsigned DstBitSize = DstEltTy->getPrimitiveSizeInBits(); |
| 148 | |
| 149 | // Loop over each source value, expanding into multiple results. |
| 150 | for (unsigned i = 0; i != NumSrcElt; ++i) { |
| 151 | Constant *Src = dyn_cast<ConstantInt>(CV->getOperand(i)); |
| 152 | if (!Src) // Reject constantexpr elements. |
| 153 | return ConstantExpr::getBitCast(C, DestTy); |
| 154 | |
| 155 | unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize*(Ratio-1); |
| 156 | for (unsigned j = 0; j != Ratio; ++j) { |
| 157 | // Shift the piece of the value into the right place, depending on |
| 158 | // endianness. |
| 159 | Constant *Elt = ConstantExpr::getLShr(Src, |
| 160 | ConstantInt::get(Src->getType(), ShiftAmt)); |
| 161 | ShiftAmt += isLittleEndian ? DstBitSize : -DstBitSize; |
| 162 | |
| 163 | // Truncate and remember this piece. |
| 164 | Result.push_back(ConstantExpr::getTrunc(Elt, DstEltTy)); |
| 165 | } |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | return ConstantVector::get(Result.data(), Result.size()); |
| 170 | } |
| 171 | |
| 172 | |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 173 | /// IsConstantOffsetFromGlobal - If this constant is actually a constant offset |
| 174 | /// from a global, return the global and the constant. Because of |
| 175 | /// constantexprs, this function is recursive. |
| 176 | static bool IsConstantOffsetFromGlobal(Constant *C, GlobalValue *&GV, |
| 177 | int64_t &Offset, const TargetData &TD) { |
| 178 | // Trivial case, constant is the global. |
| 179 | if ((GV = dyn_cast<GlobalValue>(C))) { |
| 180 | Offset = 0; |
| 181 | return true; |
| 182 | } |
| 183 | |
| 184 | // Otherwise, if this isn't a constant expr, bail out. |
| 185 | ConstantExpr *CE = dyn_cast<ConstantExpr>(C); |
| 186 | if (!CE) return false; |
| 187 | |
| 188 | // Look through ptr->int and ptr->ptr casts. |
| 189 | if (CE->getOpcode() == Instruction::PtrToInt || |
| 190 | CE->getOpcode() == Instruction::BitCast) |
| 191 | return IsConstantOffsetFromGlobal(CE->getOperand(0), GV, Offset, TD); |
| 192 | |
| 193 | // i32* getelementptr ([5 x i32]* @a, i32 0, i32 5) |
| 194 | if (CE->getOpcode() == Instruction::GetElementPtr) { |
| 195 | // Cannot compute this if the element type of the pointer is missing size |
| 196 | // info. |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 197 | if (!cast<PointerType>(CE->getOperand(0)->getType()) |
| 198 | ->getElementType()->isSized()) |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 199 | return false; |
| 200 | |
| 201 | // If the base isn't a global+constant, we aren't either. |
| 202 | if (!IsConstantOffsetFromGlobal(CE->getOperand(0), GV, Offset, TD)) |
| 203 | return false; |
| 204 | |
| 205 | // Otherwise, add any offset that our operands provide. |
| 206 | gep_type_iterator GTI = gep_type_begin(CE); |
Gabor Greif | de2d74b | 2008-05-22 06:43:33 +0000 | [diff] [blame] | 207 | for (User::const_op_iterator i = CE->op_begin() + 1, e = CE->op_end(); |
Gabor Greif | 785c6af | 2008-05-22 19:24:54 +0000 | [diff] [blame] | 208 | i != e; ++i, ++GTI) { |
Gabor Greif | de2d74b | 2008-05-22 06:43:33 +0000 | [diff] [blame] | 209 | ConstantInt *CI = dyn_cast<ConstantInt>(*i); |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 210 | if (!CI) return false; // Index isn't a simple constant? |
| 211 | if (CI->getZExtValue() == 0) continue; // Not adding anything. |
| 212 | |
| 213 | if (const StructType *ST = dyn_cast<StructType>(*GTI)) { |
| 214 | // N = N + Offset |
Chris Lattner | b1919e2 | 2007-02-10 19:55:17 +0000 | [diff] [blame] | 215 | Offset += TD.getStructLayout(ST)->getElementOffset(CI->getZExtValue()); |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 216 | } else { |
Jeff Cohen | ca5183d | 2007-03-05 00:00:42 +0000 | [diff] [blame] | 217 | const SequentialType *SQT = cast<SequentialType>(*GTI); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 218 | Offset += TD.getTypeAllocSize(SQT->getElementType())*CI->getSExtValue(); |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 219 | } |
| 220 | } |
| 221 | return true; |
| 222 | } |
| 223 | |
| 224 | return false; |
| 225 | } |
| 226 | |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 227 | /// ReadDataFromGlobal - Recursive helper to read bits out of global. C is the |
| 228 | /// constant being copied out of. ByteOffset is an offset into C. CurPtr is the |
| 229 | /// pointer to copy results into and BytesLeft is the number of bytes left in |
| 230 | /// the CurPtr buffer. TD is the target data. |
| 231 | static bool ReadDataFromGlobal(Constant *C, uint64_t ByteOffset, |
| 232 | unsigned char *CurPtr, unsigned BytesLeft, |
| 233 | const TargetData &TD) { |
| 234 | assert(ByteOffset <= TD.getTypeAllocSize(C->getType()) && |
| 235 | "Out of range access"); |
| 236 | |
Chris Lattner | c7b1382 | 2009-10-24 05:27:19 +0000 | [diff] [blame] | 237 | // If this element is zero or undefined, we can just return since *CurPtr is |
| 238 | // zero initialized. |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 239 | if (isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) |
| 240 | return true; |
| 241 | |
| 242 | if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) { |
| 243 | if (CI->getBitWidth() > 64 || |
| 244 | (CI->getBitWidth() & 7) != 0) |
| 245 | return false; |
| 246 | |
| 247 | uint64_t Val = CI->getZExtValue(); |
| 248 | unsigned IntBytes = unsigned(CI->getBitWidth()/8); |
| 249 | |
| 250 | for (unsigned i = 0; i != BytesLeft && ByteOffset != IntBytes; ++i) { |
Chris Lattner | c7b1382 | 2009-10-24 05:27:19 +0000 | [diff] [blame] | 251 | CurPtr[i] = (unsigned char)(Val >> (ByteOffset * 8)); |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 252 | ++ByteOffset; |
| 253 | } |
| 254 | return true; |
| 255 | } |
| 256 | |
| 257 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { |
| 258 | if (CFP->getType()->isDoubleTy()) { |
Chris Lattner | 6333c39 | 2009-10-25 06:08:26 +0000 | [diff] [blame] | 259 | C = FoldBitCast(C, Type::getInt64Ty(C->getContext()), TD); |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 260 | return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, TD); |
| 261 | } |
| 262 | if (CFP->getType()->isFloatTy()){ |
Chris Lattner | 6333c39 | 2009-10-25 06:08:26 +0000 | [diff] [blame] | 263 | C = FoldBitCast(C, Type::getInt32Ty(C->getContext()), TD); |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 264 | return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, TD); |
| 265 | } |
Chris Lattner | c7b1382 | 2009-10-24 05:27:19 +0000 | [diff] [blame] | 266 | return false; |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | if (ConstantStruct *CS = dyn_cast<ConstantStruct>(C)) { |
| 270 | const StructLayout *SL = TD.getStructLayout(CS->getType()); |
| 271 | unsigned Index = SL->getElementContainingOffset(ByteOffset); |
| 272 | uint64_t CurEltOffset = SL->getElementOffset(Index); |
| 273 | ByteOffset -= CurEltOffset; |
| 274 | |
| 275 | while (1) { |
| 276 | // If the element access is to the element itself and not to tail padding, |
| 277 | // read the bytes from the element. |
| 278 | uint64_t EltSize = TD.getTypeAllocSize(CS->getOperand(Index)->getType()); |
| 279 | |
| 280 | if (ByteOffset < EltSize && |
| 281 | !ReadDataFromGlobal(CS->getOperand(Index), ByteOffset, CurPtr, |
| 282 | BytesLeft, TD)) |
| 283 | return false; |
| 284 | |
| 285 | ++Index; |
| 286 | |
| 287 | // Check to see if we read from the last struct element, if so we're done. |
| 288 | if (Index == CS->getType()->getNumElements()) |
| 289 | return true; |
| 290 | |
| 291 | // If we read all of the bytes we needed from this element we're done. |
| 292 | uint64_t NextEltOffset = SL->getElementOffset(Index); |
| 293 | |
| 294 | if (BytesLeft <= NextEltOffset-CurEltOffset-ByteOffset) |
| 295 | return true; |
| 296 | |
| 297 | // Move to the next element of the struct. |
Chris Lattner | c5af649 | 2009-10-24 05:22:15 +0000 | [diff] [blame] | 298 | CurPtr += NextEltOffset-CurEltOffset-ByteOffset; |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 299 | BytesLeft -= NextEltOffset-CurEltOffset-ByteOffset; |
| 300 | ByteOffset = 0; |
| 301 | CurEltOffset = NextEltOffset; |
| 302 | } |
| 303 | // not reached. |
| 304 | } |
| 305 | |
| 306 | if (ConstantArray *CA = dyn_cast<ConstantArray>(C)) { |
| 307 | uint64_t EltSize = TD.getTypeAllocSize(CA->getType()->getElementType()); |
| 308 | uint64_t Index = ByteOffset / EltSize; |
| 309 | uint64_t Offset = ByteOffset - Index * EltSize; |
| 310 | for (; Index != CA->getType()->getNumElements(); ++Index) { |
| 311 | if (!ReadDataFromGlobal(CA->getOperand(Index), Offset, CurPtr, |
| 312 | BytesLeft, TD)) |
| 313 | return false; |
| 314 | if (EltSize >= BytesLeft) |
| 315 | return true; |
| 316 | |
| 317 | Offset = 0; |
| 318 | BytesLeft -= EltSize; |
| 319 | CurPtr += EltSize; |
| 320 | } |
| 321 | return true; |
| 322 | } |
| 323 | |
| 324 | if (ConstantVector *CV = dyn_cast<ConstantVector>(C)) { |
| 325 | uint64_t EltSize = TD.getTypeAllocSize(CV->getType()->getElementType()); |
| 326 | uint64_t Index = ByteOffset / EltSize; |
| 327 | uint64_t Offset = ByteOffset - Index * EltSize; |
| 328 | for (; Index != CV->getType()->getNumElements(); ++Index) { |
| 329 | if (!ReadDataFromGlobal(CV->getOperand(Index), Offset, CurPtr, |
| 330 | BytesLeft, TD)) |
| 331 | return false; |
| 332 | if (EltSize >= BytesLeft) |
| 333 | return true; |
| 334 | |
| 335 | Offset = 0; |
| 336 | BytesLeft -= EltSize; |
| 337 | CurPtr += EltSize; |
| 338 | } |
| 339 | return true; |
| 340 | } |
| 341 | |
| 342 | // Otherwise, unknown initializer type. |
| 343 | return false; |
| 344 | } |
| 345 | |
| 346 | static Constant *FoldReinterpretLoadFromConstPtr(Constant *C, |
| 347 | const TargetData &TD) { |
Chris Lattner | 17f0cd3 | 2009-10-23 06:57:37 +0000 | [diff] [blame] | 348 | const Type *LoadTy = cast<PointerType>(C->getType())->getElementType(); |
| 349 | const IntegerType *IntType = dyn_cast<IntegerType>(LoadTy); |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 350 | |
| 351 | // If this isn't an integer load we can't fold it directly. |
| 352 | if (!IntType) { |
| 353 | // If this is a float/double load, we can try folding it as an int32/64 load |
Chris Lattner | 17f0cd3 | 2009-10-23 06:57:37 +0000 | [diff] [blame] | 354 | // and then bitcast the result. This can be useful for union cases. Note |
| 355 | // that address spaces don't matter here since we're not going to result in |
| 356 | // an actual new load. |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 357 | const Type *MapTy; |
Chris Lattner | 17f0cd3 | 2009-10-23 06:57:37 +0000 | [diff] [blame] | 358 | if (LoadTy->isFloatTy()) |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 359 | MapTy = Type::getInt32PtrTy(C->getContext()); |
Chris Lattner | 17f0cd3 | 2009-10-23 06:57:37 +0000 | [diff] [blame] | 360 | else if (LoadTy->isDoubleTy()) |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 361 | MapTy = Type::getInt64PtrTy(C->getContext()); |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 362 | else if (LoadTy->isVectorTy()) { |
Chris Lattner | 17f0cd3 | 2009-10-23 06:57:37 +0000 | [diff] [blame] | 363 | MapTy = IntegerType::get(C->getContext(), |
| 364 | TD.getTypeAllocSizeInBits(LoadTy)); |
| 365 | MapTy = PointerType::getUnqual(MapTy); |
| 366 | } else |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 367 | return 0; |
| 368 | |
Chris Lattner | 6333c39 | 2009-10-25 06:08:26 +0000 | [diff] [blame] | 369 | C = FoldBitCast(C, MapTy, TD); |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 370 | if (Constant *Res = FoldReinterpretLoadFromConstPtr(C, TD)) |
Chris Lattner | 6333c39 | 2009-10-25 06:08:26 +0000 | [diff] [blame] | 371 | return FoldBitCast(Res, LoadTy, TD); |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 372 | return 0; |
| 373 | } |
| 374 | |
| 375 | unsigned BytesLoaded = (IntType->getBitWidth() + 7) / 8; |
Chris Lattner | 739208a | 2009-10-23 06:50:36 +0000 | [diff] [blame] | 376 | if (BytesLoaded > 32 || BytesLoaded == 0) return 0; |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 377 | |
| 378 | GlobalValue *GVal; |
| 379 | int64_t Offset; |
| 380 | if (!IsConstantOffsetFromGlobal(C, GVal, Offset, TD)) |
| 381 | return 0; |
| 382 | |
| 383 | GlobalVariable *GV = dyn_cast<GlobalVariable>(GVal); |
Chris Lattner | c7b1382 | 2009-10-24 05:27:19 +0000 | [diff] [blame] | 384 | if (!GV || !GV->isConstant() || !GV->hasDefinitiveInitializer() || |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 385 | !GV->getInitializer()->getType()->isSized()) |
| 386 | return 0; |
| 387 | |
| 388 | // If we're loading off the beginning of the global, some bytes may be valid, |
| 389 | // but we don't try to handle this. |
| 390 | if (Offset < 0) return 0; |
| 391 | |
| 392 | // If we're not accessing anything in this constant, the result is undefined. |
| 393 | if (uint64_t(Offset) >= TD.getTypeAllocSize(GV->getInitializer()->getType())) |
| 394 | return UndefValue::get(IntType); |
| 395 | |
Chris Lattner | 739208a | 2009-10-23 06:50:36 +0000 | [diff] [blame] | 396 | unsigned char RawBytes[32] = {0}; |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 397 | if (!ReadDataFromGlobal(GV->getInitializer(), Offset, RawBytes, |
| 398 | BytesLoaded, TD)) |
| 399 | return 0; |
| 400 | |
Chris Lattner | b31189f | 2010-01-08 19:02:23 +0000 | [diff] [blame] | 401 | APInt ResultVal = APInt(IntType->getBitWidth(), RawBytes[BytesLoaded-1]); |
| 402 | for (unsigned i = 1; i != BytesLoaded; ++i) { |
Chris Lattner | 739208a | 2009-10-23 06:50:36 +0000 | [diff] [blame] | 403 | ResultVal <<= 8; |
Dan Gohman | ce80051 | 2010-04-12 02:22:30 +0000 | [diff] [blame] | 404 | ResultVal |= RawBytes[BytesLoaded-1-i]; |
Chris Lattner | 739208a | 2009-10-23 06:50:36 +0000 | [diff] [blame] | 405 | } |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 406 | |
Chris Lattner | 739208a | 2009-10-23 06:50:36 +0000 | [diff] [blame] | 407 | return ConstantInt::get(IntType->getContext(), ResultVal); |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 408 | } |
| 409 | |
Chris Lattner | 878e494 | 2009-10-22 06:25:11 +0000 | [diff] [blame] | 410 | /// ConstantFoldLoadFromConstPtr - Return the value that a load from C would |
| 411 | /// produce if it is constant and determinable. If this is not determinable, |
| 412 | /// return null. |
| 413 | Constant *llvm::ConstantFoldLoadFromConstPtr(Constant *C, |
| 414 | const TargetData *TD) { |
| 415 | // First, try the easy cases: |
| 416 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) |
| 417 | if (GV->isConstant() && GV->hasDefinitiveInitializer()) |
| 418 | return GV->getInitializer(); |
| 419 | |
Chris Lattner | e00c43f | 2009-10-22 06:44:07 +0000 | [diff] [blame] | 420 | // If the loaded value isn't a constant expr, we can't handle it. |
| 421 | ConstantExpr *CE = dyn_cast<ConstantExpr>(C); |
| 422 | if (!CE) return 0; |
| 423 | |
| 424 | if (CE->getOpcode() == Instruction::GetElementPtr) { |
| 425 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0))) |
| 426 | if (GV->isConstant() && GV->hasDefinitiveInitializer()) |
| 427 | if (Constant *V = |
| 428 | ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE)) |
| 429 | return V; |
| 430 | } |
| 431 | |
| 432 | // Instead of loading constant c string, use corresponding integer value |
| 433 | // directly if string length is small enough. |
| 434 | std::string Str; |
Chris Lattner | 44a7a38 | 2009-12-04 06:29:29 +0000 | [diff] [blame] | 435 | if (TD && GetConstantStringInfo(CE, Str) && !Str.empty()) { |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 436 | unsigned StrLen = Str.length(); |
Chris Lattner | e00c43f | 2009-10-22 06:44:07 +0000 | [diff] [blame] | 437 | const Type *Ty = cast<PointerType>(CE->getType())->getElementType(); |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 438 | unsigned NumBits = Ty->getPrimitiveSizeInBits(); |
Chris Lattner | e00c43f | 2009-10-22 06:44:07 +0000 | [diff] [blame] | 439 | // Replace LI with immediate integer store. |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 440 | if ((NumBits >> 3) == StrLen + 1) { |
| 441 | APInt StrVal(NumBits, 0); |
| 442 | APInt SingleChar(NumBits, 0); |
Chris Lattner | e00c43f | 2009-10-22 06:44:07 +0000 | [diff] [blame] | 443 | if (TD->isLittleEndian()) { |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 444 | for (signed i = StrLen-1; i >= 0; i--) { |
Chris Lattner | e00c43f | 2009-10-22 06:44:07 +0000 | [diff] [blame] | 445 | SingleChar = (uint64_t) Str[i] & UCHAR_MAX; |
Chris Lattner | 62d327e | 2009-10-22 06:38:35 +0000 | [diff] [blame] | 446 | StrVal = (StrVal << 8) | SingleChar; |
| 447 | } |
Chris Lattner | e00c43f | 2009-10-22 06:44:07 +0000 | [diff] [blame] | 448 | } else { |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 449 | for (unsigned i = 0; i < StrLen; i++) { |
Chris Lattner | e00c43f | 2009-10-22 06:44:07 +0000 | [diff] [blame] | 450 | SingleChar = (uint64_t) Str[i] & UCHAR_MAX; |
| 451 | StrVal = (StrVal << 8) | SingleChar; |
| 452 | } |
| 453 | // Append NULL at the end. |
| 454 | SingleChar = 0; |
| 455 | StrVal = (StrVal << 8) | SingleChar; |
Chris Lattner | 62d327e | 2009-10-22 06:38:35 +0000 | [diff] [blame] | 456 | } |
Chris Lattner | e00c43f | 2009-10-22 06:44:07 +0000 | [diff] [blame] | 457 | return ConstantInt::get(CE->getContext(), StrVal); |
Chris Lattner | 62d327e | 2009-10-22 06:38:35 +0000 | [diff] [blame] | 458 | } |
Chris Lattner | 878e494 | 2009-10-22 06:25:11 +0000 | [diff] [blame] | 459 | } |
Chris Lattner | e00c43f | 2009-10-22 06:44:07 +0000 | [diff] [blame] | 460 | |
| 461 | // If this load comes from anywhere in a constant global, and if the global |
| 462 | // is all undef or zero, we know what it loads. |
| 463 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getUnderlyingObject())){ |
| 464 | if (GV->isConstant() && GV->hasDefinitiveInitializer()) { |
| 465 | const Type *ResTy = cast<PointerType>(C->getType())->getElementType(); |
| 466 | if (GV->getInitializer()->isNullValue()) |
| 467 | return Constant::getNullValue(ResTy); |
| 468 | if (isa<UndefValue>(GV->getInitializer())) |
| 469 | return UndefValue::get(ResTy); |
| 470 | } |
| 471 | } |
| 472 | |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 473 | // Try hard to fold loads from bitcasted strange and non-type-safe things. We |
| 474 | // currently don't do any of this for big endian systems. It can be |
| 475 | // generalized in the future if someone is interested. |
| 476 | if (TD && TD->isLittleEndian()) |
| 477 | return FoldReinterpretLoadFromConstPtr(CE, *TD); |
Chris Lattner | 878e494 | 2009-10-22 06:25:11 +0000 | [diff] [blame] | 478 | return 0; |
| 479 | } |
| 480 | |
| 481 | static Constant *ConstantFoldLoadInst(const LoadInst *LI, const TargetData *TD){ |
| 482 | if (LI->isVolatile()) return 0; |
| 483 | |
| 484 | if (Constant *C = dyn_cast<Constant>(LI->getOperand(0))) |
| 485 | return ConstantFoldLoadFromConstPtr(C, TD); |
Chris Lattner | fe8c7c8 | 2009-10-23 06:23:49 +0000 | [diff] [blame] | 486 | |
Chris Lattner | 878e494 | 2009-10-22 06:25:11 +0000 | [diff] [blame] | 487 | return 0; |
| 488 | } |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 489 | |
| 490 | /// SymbolicallyEvaluateBinop - One of Op0/Op1 is a constant expression. |
Nick Lewycky | 67e3566 | 2008-12-15 01:35:36 +0000 | [diff] [blame] | 491 | /// Attempt to symbolically evaluate the result of a binary operator merging |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 492 | /// these together. If target data info is available, it is provided as TD, |
| 493 | /// otherwise TD is null. |
| 494 | static Constant *SymbolicallyEvaluateBinop(unsigned Opc, Constant *Op0, |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 495 | Constant *Op1, const TargetData *TD){ |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 496 | // SROA |
| 497 | |
| 498 | // Fold (and 0xffffffff00000000, (shl x, 32)) -> shl. |
| 499 | // Fold (lshr (or X, Y), 32) -> (lshr [X/Y], 32) if one doesn't contribute |
| 500 | // bits. |
| 501 | |
| 502 | |
| 503 | // If the constant expr is something like &A[123] - &A[4].f, fold this into a |
| 504 | // constant. This happens frequently when iterating over a global array. |
| 505 | if (Opc == Instruction::Sub && TD) { |
| 506 | GlobalValue *GV1, *GV2; |
| 507 | int64_t Offs1, Offs2; |
| 508 | |
| 509 | if (IsConstantOffsetFromGlobal(Op0, GV1, Offs1, *TD)) |
| 510 | if (IsConstantOffsetFromGlobal(Op1, GV2, Offs2, *TD) && |
| 511 | GV1 == GV2) { |
| 512 | // (&GV+C1) - (&GV+C2) -> C1-C2, pointer arithmetic cannot overflow. |
Owen Anderson | eed707b | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 513 | return ConstantInt::get(Op0->getType(), Offs1-Offs2); |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 514 | } |
| 515 | } |
| 516 | |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 517 | return 0; |
| 518 | } |
| 519 | |
Dan Gohman | 4f8eea8 | 2010-02-01 18:27:38 +0000 | [diff] [blame] | 520 | /// CastGEPIndices - If array indices are not pointer-sized integers, |
| 521 | /// explicitly cast them so that they aren't implicitly casted by the |
| 522 | /// getelementptr. |
| 523 | static Constant *CastGEPIndices(Constant *const *Ops, unsigned NumOps, |
| 524 | const Type *ResultTy, |
| 525 | const TargetData *TD) { |
| 526 | if (!TD) return 0; |
| 527 | const Type *IntPtrTy = TD->getIntPtrType(ResultTy->getContext()); |
| 528 | |
| 529 | bool Any = false; |
| 530 | SmallVector<Constant*, 32> NewIdxs; |
| 531 | for (unsigned i = 1; i != NumOps; ++i) { |
| 532 | if ((i == 1 || |
| 533 | !isa<StructType>(GetElementPtrInst::getIndexedType(Ops[0]->getType(), |
| 534 | reinterpret_cast<Value *const *>(Ops+1), |
| 535 | i-1))) && |
| 536 | Ops[i]->getType() != IntPtrTy) { |
| 537 | Any = true; |
| 538 | NewIdxs.push_back(ConstantExpr::getCast(CastInst::getCastOpcode(Ops[i], |
| 539 | true, |
| 540 | IntPtrTy, |
| 541 | true), |
| 542 | Ops[i], IntPtrTy)); |
| 543 | } else |
| 544 | NewIdxs.push_back(Ops[i]); |
| 545 | } |
| 546 | if (!Any) return 0; |
| 547 | |
| 548 | Constant *C = |
| 549 | ConstantExpr::getGetElementPtr(Ops[0], &NewIdxs[0], NewIdxs.size()); |
| 550 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) |
| 551 | if (Constant *Folded = ConstantFoldConstantExpression(CE, TD)) |
| 552 | C = Folded; |
| 553 | return C; |
| 554 | } |
| 555 | |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 556 | /// SymbolicallyEvaluateGEP - If we can symbolically evaluate the specified GEP |
| 557 | /// constant expression, do so. |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 558 | static Constant *SymbolicallyEvaluateGEP(Constant *const *Ops, unsigned NumOps, |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 559 | const Type *ResultTy, |
| 560 | const TargetData *TD) { |
| 561 | Constant *Ptr = Ops[0]; |
Chris Lattner | 268e7d7 | 2008-05-08 04:54:43 +0000 | [diff] [blame] | 562 | if (!TD || !cast<PointerType>(Ptr->getType())->getElementType()->isSized()) |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 563 | return 0; |
Dan Gohman | cda9706 | 2009-08-21 16:52:54 +0000 | [diff] [blame] | 564 | |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 565 | unsigned BitWidth = |
| 566 | TD->getTypeSizeInBits(TD->getIntPtrType(Ptr->getContext())); |
Chris Lattner | 268e7d7 | 2008-05-08 04:54:43 +0000 | [diff] [blame] | 567 | |
| 568 | // If this is a constant expr gep that is effectively computing an |
| 569 | // "offsetof", fold it into 'cast int Size to T*' instead of 'gep 0, 0, 12' |
| 570 | for (unsigned i = 1; i != NumOps; ++i) |
| 571 | if (!isa<ConstantInt>(Ops[i])) |
Dan Gohman | de0e587 | 2009-08-19 18:18:36 +0000 | [diff] [blame] | 572 | return 0; |
Chris Lattner | 268e7d7 | 2008-05-08 04:54:43 +0000 | [diff] [blame] | 573 | |
Dan Gohman | cda9706 | 2009-08-21 16:52:54 +0000 | [diff] [blame] | 574 | APInt Offset = APInt(BitWidth, |
| 575 | TD->getIndexedOffset(Ptr->getType(), |
| 576 | (Value**)Ops+1, NumOps-1)); |
Duncan Sands | 890edda | 2010-03-12 17:55:20 +0000 | [diff] [blame] | 577 | Ptr = cast<Constant>(Ptr->stripPointerCasts()); |
Dan Gohman | 0891d75 | 2010-03-10 19:31:51 +0000 | [diff] [blame] | 578 | |
| 579 | // If this is a GEP of a GEP, fold it all into a single GEP. |
| 580 | while (GEPOperator *GEP = dyn_cast<GEPOperator>(Ptr)) { |
| 581 | SmallVector<Value *, 4> NestedOps(GEP->op_begin()+1, GEP->op_end()); |
Duncan Sands | 890edda | 2010-03-12 17:55:20 +0000 | [diff] [blame] | 582 | |
| 583 | // Do not try the incorporate the sub-GEP if some index is not a number. |
| 584 | bool AllConstantInt = true; |
| 585 | for (unsigned i = 0, e = NestedOps.size(); i != e; ++i) |
| 586 | if (!isa<ConstantInt>(NestedOps[i])) { |
| 587 | AllConstantInt = false; |
| 588 | break; |
| 589 | } |
| 590 | if (!AllConstantInt) |
| 591 | break; |
| 592 | |
Dan Gohman | 0891d75 | 2010-03-10 19:31:51 +0000 | [diff] [blame] | 593 | Ptr = cast<Constant>(GEP->getOperand(0)); |
| 594 | Offset += APInt(BitWidth, |
| 595 | TD->getIndexedOffset(Ptr->getType(), |
| 596 | (Value**)NestedOps.data(), |
| 597 | NestedOps.size())); |
Duncan Sands | 890edda | 2010-03-12 17:55:20 +0000 | [diff] [blame] | 598 | Ptr = cast<Constant>(Ptr->stripPointerCasts()); |
Dan Gohman | 0891d75 | 2010-03-10 19:31:51 +0000 | [diff] [blame] | 599 | } |
| 600 | |
Dan Gohman | de0e587 | 2009-08-19 18:18:36 +0000 | [diff] [blame] | 601 | // If the base value for this address is a literal integer value, fold the |
| 602 | // getelementptr to the resulting integer value casted to the pointer type. |
Dan Gohman | 40b037e | 2010-03-18 19:34:33 +0000 | [diff] [blame] | 603 | APInt BasePtr(BitWidth, 0); |
| 604 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr)) |
| 605 | if (CE->getOpcode() == Instruction::IntToPtr) |
| 606 | if (ConstantInt *Base = dyn_cast<ConstantInt>(CE->getOperand(0))) { |
| 607 | BasePtr = Base->getValue(); |
| 608 | BasePtr.zextOrTrunc(BitWidth); |
| 609 | } |
| 610 | if (Ptr->isNullValue() || BasePtr != 0) { |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 611 | Constant *C = ConstantInt::get(Ptr->getContext(), Offset+BasePtr); |
Dan Gohman | de0e587 | 2009-08-19 18:18:36 +0000 | [diff] [blame] | 612 | return ConstantExpr::getIntToPtr(C, ResultTy); |
| 613 | } |
| 614 | |
| 615 | // Otherwise form a regular getelementptr. Recompute the indices so that |
| 616 | // we eliminate over-indexing of the notional static type array bounds. |
| 617 | // This makes it easy to determine if the getelementptr is "inbounds". |
| 618 | // Also, this helps GlobalOpt do SROA on GlobalVariables. |
| 619 | const Type *Ty = Ptr->getType(); |
| 620 | SmallVector<Constant*, 32> NewIdxs; |
Dan Gohman | 3d01334 | 2009-08-19 22:46:59 +0000 | [diff] [blame] | 621 | do { |
Dan Gohman | de0e587 | 2009-08-19 18:18:36 +0000 | [diff] [blame] | 622 | if (const SequentialType *ATy = dyn_cast<SequentialType>(Ty)) { |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 623 | if (ATy->isPointerTy()) { |
Chris Lattner | e568fa2 | 2009-12-03 01:05:45 +0000 | [diff] [blame] | 624 | // The only pointer indexing we'll do is on the first index of the GEP. |
| 625 | if (!NewIdxs.empty()) |
| 626 | break; |
| 627 | |
| 628 | // Only handle pointers to sized types, not pointers to functions. |
| 629 | if (!ATy->getElementType()->isSized()) |
| 630 | return 0; |
| 631 | } |
| 632 | |
Dan Gohman | de0e587 | 2009-08-19 18:18:36 +0000 | [diff] [blame] | 633 | // Determine which element of the array the offset points into. |
Dan Gohman | cda9706 | 2009-08-21 16:52:54 +0000 | [diff] [blame] | 634 | APInt ElemSize(BitWidth, TD->getTypeAllocSize(ATy->getElementType())); |
Dan Gohman | de0e587 | 2009-08-19 18:18:36 +0000 | [diff] [blame] | 635 | if (ElemSize == 0) |
| 636 | return 0; |
Dan Gohman | cda9706 | 2009-08-21 16:52:54 +0000 | [diff] [blame] | 637 | APInt NewIdx = Offset.udiv(ElemSize); |
Dan Gohman | de0e587 | 2009-08-19 18:18:36 +0000 | [diff] [blame] | 638 | Offset -= NewIdx * ElemSize; |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 639 | NewIdxs.push_back(ConstantInt::get(TD->getIntPtrType(Ty->getContext()), |
| 640 | NewIdx)); |
Dan Gohman | de0e587 | 2009-08-19 18:18:36 +0000 | [diff] [blame] | 641 | Ty = ATy->getElementType(); |
| 642 | } else if (const StructType *STy = dyn_cast<StructType>(Ty)) { |
Dan Gohman | cda9706 | 2009-08-21 16:52:54 +0000 | [diff] [blame] | 643 | // Determine which field of the struct the offset points into. The |
| 644 | // getZExtValue is at least as safe as the StructLayout API because we |
| 645 | // know the offset is within the struct at this point. |
Dan Gohman | de0e587 | 2009-08-19 18:18:36 +0000 | [diff] [blame] | 646 | const StructLayout &SL = *TD->getStructLayout(STy); |
Dan Gohman | cda9706 | 2009-08-21 16:52:54 +0000 | [diff] [blame] | 647 | unsigned ElIdx = SL.getElementContainingOffset(Offset.getZExtValue()); |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 648 | NewIdxs.push_back(ConstantInt::get(Type::getInt32Ty(Ty->getContext()), |
| 649 | ElIdx)); |
Dan Gohman | cda9706 | 2009-08-21 16:52:54 +0000 | [diff] [blame] | 650 | Offset -= APInt(BitWidth, SL.getElementOffset(ElIdx)); |
Dan Gohman | de0e587 | 2009-08-19 18:18:36 +0000 | [diff] [blame] | 651 | Ty = STy->getTypeAtIndex(ElIdx); |
| 652 | } else { |
Dan Gohman | 3d01334 | 2009-08-19 22:46:59 +0000 | [diff] [blame] | 653 | // We've reached some non-indexable type. |
| 654 | break; |
Dan Gohman | de0e587 | 2009-08-19 18:18:36 +0000 | [diff] [blame] | 655 | } |
Dan Gohman | 3d01334 | 2009-08-19 22:46:59 +0000 | [diff] [blame] | 656 | } while (Ty != cast<PointerType>(ResultTy)->getElementType()); |
| 657 | |
| 658 | // If we haven't used up the entire offset by descending the static |
| 659 | // type, then the offset is pointing into the middle of an indivisible |
| 660 | // member, so we can't simplify it. |
| 661 | if (Offset != 0) |
| 662 | return 0; |
Dan Gohman | de0e587 | 2009-08-19 18:18:36 +0000 | [diff] [blame] | 663 | |
Dan Gohman | 3bfbc45 | 2009-09-11 00:04:14 +0000 | [diff] [blame] | 664 | // Create a GEP. |
| 665 | Constant *C = |
Dan Gohman | 6e7ad95 | 2009-09-03 23:34:49 +0000 | [diff] [blame] | 666 | ConstantExpr::getGetElementPtr(Ptr, &NewIdxs[0], NewIdxs.size()); |
| 667 | assert(cast<PointerType>(C->getType())->getElementType() == Ty && |
| 668 | "Computed GetElementPtr has unexpected type!"); |
Dan Gohman | de0e587 | 2009-08-19 18:18:36 +0000 | [diff] [blame] | 669 | |
Dan Gohman | 3d01334 | 2009-08-19 22:46:59 +0000 | [diff] [blame] | 670 | // If we ended up indexing a member with a type that doesn't match |
Dan Gohman | 4c0d5d5 | 2009-08-20 16:42:55 +0000 | [diff] [blame] | 671 | // the type of what the original indices indexed, add a cast. |
Dan Gohman | 3d01334 | 2009-08-19 22:46:59 +0000 | [diff] [blame] | 672 | if (Ty != cast<PointerType>(ResultTy)->getElementType()) |
Chris Lattner | 6333c39 | 2009-10-25 06:08:26 +0000 | [diff] [blame] | 673 | C = FoldBitCast(C, ResultTy, *TD); |
Dan Gohman | 3d01334 | 2009-08-19 22:46:59 +0000 | [diff] [blame] | 674 | |
| 675 | return C; |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 676 | } |
| 677 | |
Chris Lattner | 1afab9c | 2007-12-11 07:29:44 +0000 | [diff] [blame] | 678 | |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 679 | |
| 680 | //===----------------------------------------------------------------------===// |
| 681 | // Constant Folding public APIs |
| 682 | //===----------------------------------------------------------------------===// |
| 683 | |
| 684 | |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 685 | /// ConstantFoldInstruction - Attempt to constant fold the specified |
| 686 | /// instruction. If successful, the constant result is returned, if not, null |
| 687 | /// is returned. Note that this function can only fail when attempting to fold |
| 688 | /// instructions like loads and stores, which have no constant expression form. |
| 689 | /// |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 690 | Constant *llvm::ConstantFoldInstruction(Instruction *I, const TargetData *TD) { |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 691 | if (PHINode *PN = dyn_cast<PHINode>(I)) { |
| 692 | if (PN->getNumIncomingValues() == 0) |
Owen Anderson | 9e9a0d5 | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 693 | return UndefValue::get(PN->getType()); |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 694 | |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 695 | Constant *Result = dyn_cast<Constant>(PN->getIncomingValue(0)); |
| 696 | if (Result == 0) return 0; |
| 697 | |
| 698 | // Handle PHI nodes specially here... |
| 699 | for (unsigned i = 1, e = PN->getNumIncomingValues(); i != e; ++i) |
| 700 | if (PN->getIncomingValue(i) != Result && PN->getIncomingValue(i) != PN) |
| 701 | return 0; // Not all the same incoming constants... |
| 702 | |
| 703 | // If we reach here, all incoming values are the same constant. |
| 704 | return Result; |
| 705 | } |
| 706 | |
| 707 | // Scan the operand list, checking to see if they are all constants, if so, |
| 708 | // hand off to ConstantFoldInstOperands. |
| 709 | SmallVector<Constant*, 8> Ops; |
Gabor Greif | de2d74b | 2008-05-22 06:43:33 +0000 | [diff] [blame] | 710 | for (User::op_iterator i = I->op_begin(), e = I->op_end(); i != e; ++i) |
| 711 | if (Constant *Op = dyn_cast<Constant>(*i)) |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 712 | Ops.push_back(Op); |
| 713 | else |
| 714 | return 0; // All operands not constant! |
| 715 | |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 716 | if (const CmpInst *CI = dyn_cast<CmpInst>(I)) |
Chris Lattner | 8f73dea | 2009-11-09 23:06:58 +0000 | [diff] [blame] | 717 | return ConstantFoldCompareInstOperands(CI->getPredicate(), Ops[0], Ops[1], |
| 718 | TD); |
Chris Lattner | 58665d4 | 2009-09-16 00:08:07 +0000 | [diff] [blame] | 719 | |
Chris Lattner | 878e494 | 2009-10-22 06:25:11 +0000 | [diff] [blame] | 720 | if (const LoadInst *LI = dyn_cast<LoadInst>(I)) |
| 721 | return ConstantFoldLoadInst(LI, TD); |
| 722 | |
Chris Lattner | 58665d4 | 2009-09-16 00:08:07 +0000 | [diff] [blame] | 723 | return ConstantFoldInstOperands(I->getOpcode(), I->getType(), |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 724 | Ops.data(), Ops.size(), TD); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 725 | } |
| 726 | |
Nick Lewycky | 3dfd7bf | 2008-05-25 20:56:15 +0000 | [diff] [blame] | 727 | /// ConstantFoldConstantExpression - Attempt to fold the constant expression |
| 728 | /// using the specified TargetData. If successful, the constant result is |
| 729 | /// result is returned, if not, null is returned. |
Dan Gohman | baf0c67 | 2010-02-08 22:00:06 +0000 | [diff] [blame] | 730 | Constant *llvm::ConstantFoldConstantExpression(const ConstantExpr *CE, |
Nick Lewycky | 3dfd7bf | 2008-05-25 20:56:15 +0000 | [diff] [blame] | 731 | const TargetData *TD) { |
Nick Lewycky | 3dfd7bf | 2008-05-25 20:56:15 +0000 | [diff] [blame] | 732 | SmallVector<Constant*, 8> Ops; |
Dan Gohman | baf0c67 | 2010-02-08 22:00:06 +0000 | [diff] [blame] | 733 | for (User::const_op_iterator i = CE->op_begin(), e = CE->op_end(); i != e; ++i) { |
Dan Gohman | 01b97dd | 2009-11-23 16:22:21 +0000 | [diff] [blame] | 734 | Constant *NewC = cast<Constant>(*i); |
| 735 | // Recursively fold the ConstantExpr's operands. |
| 736 | if (ConstantExpr *NewCE = dyn_cast<ConstantExpr>(NewC)) |
| 737 | NewC = ConstantFoldConstantExpression(NewCE, TD); |
| 738 | Ops.push_back(NewC); |
| 739 | } |
Nick Lewycky | 3dfd7bf | 2008-05-25 20:56:15 +0000 | [diff] [blame] | 740 | |
| 741 | if (CE->isCompare()) |
Chris Lattner | 8f73dea | 2009-11-09 23:06:58 +0000 | [diff] [blame] | 742 | return ConstantFoldCompareInstOperands(CE->getPredicate(), Ops[0], Ops[1], |
| 743 | TD); |
Chris Lattner | 58665d4 | 2009-09-16 00:08:07 +0000 | [diff] [blame] | 744 | return ConstantFoldInstOperands(CE->getOpcode(), CE->getType(), |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 745 | Ops.data(), Ops.size(), TD); |
Nick Lewycky | 3dfd7bf | 2008-05-25 20:56:15 +0000 | [diff] [blame] | 746 | } |
| 747 | |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 748 | /// ConstantFoldInstOperands - Attempt to constant fold an instruction with the |
| 749 | /// specified opcode and operands. If successful, the constant result is |
| 750 | /// returned, if not, null is returned. Note that this function can fail when |
| 751 | /// attempting to fold instructions like loads and stores, which have no |
| 752 | /// constant expression form. |
| 753 | /// |
Dan Gohman | 01b97dd | 2009-11-23 16:22:21 +0000 | [diff] [blame] | 754 | /// TODO: This function neither utilizes nor preserves nsw/nuw/inbounds/etc |
| 755 | /// information, due to only being passed an opcode and operands. Constant |
| 756 | /// folding using this function strips this information. |
| 757 | /// |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 758 | Constant *llvm::ConstantFoldInstOperands(unsigned Opcode, const Type *DestTy, |
| 759 | Constant* const* Ops, unsigned NumOps, |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 760 | const TargetData *TD) { |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 761 | // Handle easy binops first. |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 762 | if (Instruction::isBinaryOp(Opcode)) { |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 763 | if (isa<ConstantExpr>(Ops[0]) || isa<ConstantExpr>(Ops[1])) |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 764 | if (Constant *C = SymbolicallyEvaluateBinop(Opcode, Ops[0], Ops[1], TD)) |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 765 | return C; |
| 766 | |
Owen Anderson | baf3c40 | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 767 | return ConstantExpr::get(Opcode, Ops[0], Ops[1]); |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 768 | } |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 769 | |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 770 | switch (Opcode) { |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 771 | default: return 0; |
Chris Lattner | 79fa3cf | 2010-01-02 01:22:23 +0000 | [diff] [blame] | 772 | case Instruction::ICmp: |
| 773 | case Instruction::FCmp: assert(0 && "Invalid for compares"); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 774 | case Instruction::Call: |
Gabor Greif | 2ff961f | 2010-04-15 20:51:13 +0000 | [diff] [blame] | 775 | if (Function *F = dyn_cast<Function>(Ops[NumOps - 1])) |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 776 | if (canConstantFoldCallTo(F)) |
Gabor Greif | 2ff961f | 2010-04-15 20:51:13 +0000 | [diff] [blame] | 777 | return ConstantFoldCall(F, Ops, NumOps - 1); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 778 | return 0; |
Chris Lattner | 001f753 | 2007-08-11 23:49:01 +0000 | [diff] [blame] | 779 | case Instruction::PtrToInt: |
| 780 | // If the input is a inttoptr, eliminate the pair. This requires knowing |
| 781 | // the width of a pointer, so it can't be done in ConstantExpr::getCast. |
| 782 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ops[0])) { |
| 783 | if (TD && CE->getOpcode() == Instruction::IntToPtr) { |
| 784 | Constant *Input = CE->getOperand(0); |
Dan Gohman | 6de29f8 | 2009-06-15 22:12:54 +0000 | [diff] [blame] | 785 | unsigned InWidth = Input->getType()->getScalarSizeInBits(); |
Nick Lewycky | 04aa2c3 | 2008-10-24 06:14:27 +0000 | [diff] [blame] | 786 | if (TD->getPointerSizeInBits() < InWidth) { |
| 787 | Constant *Mask = |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 788 | ConstantInt::get(CE->getContext(), APInt::getLowBitsSet(InWidth, |
Nick Lewycky | 04aa2c3 | 2008-10-24 06:14:27 +0000 | [diff] [blame] | 789 | TD->getPointerSizeInBits())); |
Owen Anderson | baf3c40 | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 790 | Input = ConstantExpr::getAnd(Input, Mask); |
Nick Lewycky | 04aa2c3 | 2008-10-24 06:14:27 +0000 | [diff] [blame] | 791 | } |
Chris Lattner | 001f753 | 2007-08-11 23:49:01 +0000 | [diff] [blame] | 792 | // Do a zext or trunc to get to the dest size. |
Owen Anderson | baf3c40 | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 793 | return ConstantExpr::getIntegerCast(Input, DestTy, false); |
Chris Lattner | 001f753 | 2007-08-11 23:49:01 +0000 | [diff] [blame] | 794 | } |
| 795 | } |
Owen Anderson | baf3c40 | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 796 | return ConstantExpr::getCast(Opcode, Ops[0], DestTy); |
Chris Lattner | 001f753 | 2007-08-11 23:49:01 +0000 | [diff] [blame] | 797 | case Instruction::IntToPtr: |
Duncan Sands | 81b06be | 2008-08-13 20:20:35 +0000 | [diff] [blame] | 798 | // If the input is a ptrtoint, turn the pair into a ptr to ptr bitcast if |
| 799 | // the int size is >= the ptr size. This requires knowing the width of a |
| 800 | // pointer, so it can't be done in ConstantExpr::getCast. |
Dan Gohman | b80a2a6 | 2010-02-23 16:35:41 +0000 | [diff] [blame] | 801 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ops[0])) |
Dan Gohman | 9a38e3e | 2009-05-07 19:46:24 +0000 | [diff] [blame] | 802 | if (TD && |
Dan Gohman | b80a2a6 | 2010-02-23 16:35:41 +0000 | [diff] [blame] | 803 | TD->getPointerSizeInBits() <= CE->getType()->getScalarSizeInBits() && |
| 804 | CE->getOpcode() == Instruction::PtrToInt) |
| 805 | return FoldBitCast(CE->getOperand(0), DestTy, *TD); |
| 806 | |
Owen Anderson | baf3c40 | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 807 | return ConstantExpr::getCast(Opcode, Ops[0], DestTy); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 808 | case Instruction::Trunc: |
| 809 | case Instruction::ZExt: |
| 810 | case Instruction::SExt: |
| 811 | case Instruction::FPTrunc: |
| 812 | case Instruction::FPExt: |
| 813 | case Instruction::UIToFP: |
| 814 | case Instruction::SIToFP: |
| 815 | case Instruction::FPToUI: |
| 816 | case Instruction::FPToSI: |
Owen Anderson | baf3c40 | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 817 | return ConstantExpr::getCast(Opcode, Ops[0], DestTy); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 818 | case Instruction::BitCast: |
Chris Lattner | 1afab9c | 2007-12-11 07:29:44 +0000 | [diff] [blame] | 819 | if (TD) |
Chris Lattner | 6333c39 | 2009-10-25 06:08:26 +0000 | [diff] [blame] | 820 | return FoldBitCast(Ops[0], DestTy, *TD); |
Owen Anderson | baf3c40 | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 821 | return ConstantExpr::getBitCast(Ops[0], DestTy); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 822 | case Instruction::Select: |
Owen Anderson | baf3c40 | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 823 | return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 824 | case Instruction::ExtractElement: |
Owen Anderson | baf3c40 | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 825 | return ConstantExpr::getExtractElement(Ops[0], Ops[1]); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 826 | case Instruction::InsertElement: |
Owen Anderson | baf3c40 | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 827 | return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 828 | case Instruction::ShuffleVector: |
Owen Anderson | baf3c40 | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 829 | return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 830 | case Instruction::GetElementPtr: |
Dan Gohman | 4f8eea8 | 2010-02-01 18:27:38 +0000 | [diff] [blame] | 831 | if (Constant *C = CastGEPIndices(Ops, NumOps, DestTy, TD)) |
| 832 | return C; |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 833 | if (Constant *C = SymbolicallyEvaluateGEP(Ops, NumOps, DestTy, TD)) |
Chris Lattner | 03dd25c | 2007-01-31 00:51:48 +0000 | [diff] [blame] | 834 | return C; |
| 835 | |
Owen Anderson | baf3c40 | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 836 | return ConstantExpr::getGetElementPtr(Ops[0], Ops+1, NumOps-1); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 837 | } |
| 838 | } |
| 839 | |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 840 | /// ConstantFoldCompareInstOperands - Attempt to constant fold a compare |
| 841 | /// instruction (icmp/fcmp) with the specified operands. If it fails, it |
| 842 | /// returns a constant expression of the specified operands. |
| 843 | /// |
| 844 | Constant *llvm::ConstantFoldCompareInstOperands(unsigned Predicate, |
Chris Lattner | 8f73dea | 2009-11-09 23:06:58 +0000 | [diff] [blame] | 845 | Constant *Ops0, Constant *Ops1, |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 846 | const TargetData *TD) { |
| 847 | // fold: icmp (inttoptr x), null -> icmp x, 0 |
| 848 | // fold: icmp (ptrtoint x), 0 -> icmp x, null |
Nick Lewycky | 3dfd7bf | 2008-05-25 20:56:15 +0000 | [diff] [blame] | 849 | // fold: icmp (inttoptr x), (inttoptr y) -> icmp trunc/zext x, trunc/zext y |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 850 | // fold: icmp (ptrtoint x), (ptrtoint y) -> icmp x, y |
| 851 | // |
| 852 | // ConstantExpr::getCompare cannot do this, because it doesn't have TD |
| 853 | // around to know if bit truncation is happening. |
Chris Lattner | 8f73dea | 2009-11-09 23:06:58 +0000 | [diff] [blame] | 854 | if (ConstantExpr *CE0 = dyn_cast<ConstantExpr>(Ops0)) { |
| 855 | if (TD && Ops1->isNullValue()) { |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 856 | const Type *IntPtrTy = TD->getIntPtrType(CE0->getContext()); |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 857 | if (CE0->getOpcode() == Instruction::IntToPtr) { |
| 858 | // Convert the integer value to the right size to ensure we get the |
| 859 | // proper extension or truncation. |
Owen Anderson | baf3c40 | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 860 | Constant *C = ConstantExpr::getIntegerCast(CE0->getOperand(0), |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 861 | IntPtrTy, false); |
Chris Lattner | 8f73dea | 2009-11-09 23:06:58 +0000 | [diff] [blame] | 862 | Constant *Null = Constant::getNullValue(C->getType()); |
| 863 | return ConstantFoldCompareInstOperands(Predicate, C, Null, TD); |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 864 | } |
| 865 | |
| 866 | // Only do this transformation if the int is intptrty in size, otherwise |
| 867 | // there is a truncation or extension that we aren't modeling. |
| 868 | if (CE0->getOpcode() == Instruction::PtrToInt && |
| 869 | CE0->getType() == IntPtrTy) { |
| 870 | Constant *C = CE0->getOperand(0); |
Chris Lattner | 8f73dea | 2009-11-09 23:06:58 +0000 | [diff] [blame] | 871 | Constant *Null = Constant::getNullValue(C->getType()); |
| 872 | return ConstantFoldCompareInstOperands(Predicate, C, Null, TD); |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 873 | } |
| 874 | } |
| 875 | |
Chris Lattner | 8f73dea | 2009-11-09 23:06:58 +0000 | [diff] [blame] | 876 | if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(Ops1)) { |
Nick Lewycky | 3dfd7bf | 2008-05-25 20:56:15 +0000 | [diff] [blame] | 877 | if (TD && CE0->getOpcode() == CE1->getOpcode()) { |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 878 | const Type *IntPtrTy = TD->getIntPtrType(CE0->getContext()); |
Nick Lewycky | 3dfd7bf | 2008-05-25 20:56:15 +0000 | [diff] [blame] | 879 | |
| 880 | if (CE0->getOpcode() == Instruction::IntToPtr) { |
| 881 | // Convert the integer value to the right size to ensure we get the |
| 882 | // proper extension or truncation. |
Owen Anderson | baf3c40 | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 883 | Constant *C0 = ConstantExpr::getIntegerCast(CE0->getOperand(0), |
Nick Lewycky | 3dfd7bf | 2008-05-25 20:56:15 +0000 | [diff] [blame] | 884 | IntPtrTy, false); |
Owen Anderson | baf3c40 | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 885 | Constant *C1 = ConstantExpr::getIntegerCast(CE1->getOperand(0), |
Nick Lewycky | 3dfd7bf | 2008-05-25 20:56:15 +0000 | [diff] [blame] | 886 | IntPtrTy, false); |
Chris Lattner | 8f73dea | 2009-11-09 23:06:58 +0000 | [diff] [blame] | 887 | return ConstantFoldCompareInstOperands(Predicate, C0, C1, TD); |
Nick Lewycky | 3dfd7bf | 2008-05-25 20:56:15 +0000 | [diff] [blame] | 888 | } |
| 889 | |
| 890 | // Only do this transformation if the int is intptrty in size, otherwise |
| 891 | // there is a truncation or extension that we aren't modeling. |
| 892 | if ((CE0->getOpcode() == Instruction::PtrToInt && |
| 893 | CE0->getType() == IntPtrTy && |
Chris Lattner | 8f73dea | 2009-11-09 23:06:58 +0000 | [diff] [blame] | 894 | CE0->getOperand(0)->getType() == CE1->getOperand(0)->getType())) |
| 895 | return ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(0), |
| 896 | CE1->getOperand(0), TD); |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 897 | } |
| 898 | } |
Chris Lattner | 79fa3cf | 2010-01-02 01:22:23 +0000 | [diff] [blame] | 899 | |
| 900 | // icmp eq (or x, y), 0 -> (icmp eq x, 0) & (icmp eq y, 0) |
| 901 | // icmp ne (or x, y), 0 -> (icmp ne x, 0) | (icmp ne y, 0) |
| 902 | if ((Predicate == ICmpInst::ICMP_EQ || Predicate == ICmpInst::ICMP_NE) && |
| 903 | CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) { |
| 904 | Constant *LHS = |
| 905 | ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(0), Ops1,TD); |
| 906 | Constant *RHS = |
| 907 | ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(1), Ops1,TD); |
| 908 | unsigned OpC = |
| 909 | Predicate == ICmpInst::ICMP_EQ ? Instruction::And : Instruction::Or; |
| 910 | Constant *Ops[] = { LHS, RHS }; |
| 911 | return ConstantFoldInstOperands(OpC, LHS->getType(), Ops, 2, TD); |
| 912 | } |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 913 | } |
Chris Lattner | 8f73dea | 2009-11-09 23:06:58 +0000 | [diff] [blame] | 914 | |
| 915 | return ConstantExpr::getCompare(Predicate, Ops0, Ops1); |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 916 | } |
| 917 | |
| 918 | |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 919 | /// ConstantFoldLoadThroughGEPConstantExpr - Given a constant and a |
| 920 | /// getelementptr constantexpr, return the constant value being addressed by the |
| 921 | /// constant expression, or null if something is funny and we can't decide. |
| 922 | Constant *llvm::ConstantFoldLoadThroughGEPConstantExpr(Constant *C, |
Dan Gohman | c6f69e9 | 2009-10-05 16:36:26 +0000 | [diff] [blame] | 923 | ConstantExpr *CE) { |
Owen Anderson | a7235ea | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 924 | if (CE->getOperand(1) != Constant::getNullValue(CE->getOperand(1)->getType())) |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 925 | return 0; // Do not allow stepping over the value! |
| 926 | |
| 927 | // Loop over all of the operands, tracking down which value we are |
| 928 | // addressing... |
| 929 | gep_type_iterator I = gep_type_begin(CE), E = gep_type_end(CE); |
| 930 | for (++I; I != E; ++I) |
| 931 | if (const StructType *STy = dyn_cast<StructType>(*I)) { |
| 932 | ConstantInt *CU = cast<ConstantInt>(I.getOperand()); |
| 933 | assert(CU->getZExtValue() < STy->getNumElements() && |
| 934 | "Struct index out of range!"); |
| 935 | unsigned El = (unsigned)CU->getZExtValue(); |
| 936 | if (ConstantStruct *CS = dyn_cast<ConstantStruct>(C)) { |
| 937 | C = CS->getOperand(El); |
| 938 | } else if (isa<ConstantAggregateZero>(C)) { |
Owen Anderson | a7235ea | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 939 | C = Constant::getNullValue(STy->getElementType(El)); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 940 | } else if (isa<UndefValue>(C)) { |
Owen Anderson | 9e9a0d5 | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 941 | C = UndefValue::get(STy->getElementType(El)); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 942 | } else { |
| 943 | return 0; |
| 944 | } |
| 945 | } else if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand())) { |
| 946 | if (const ArrayType *ATy = dyn_cast<ArrayType>(*I)) { |
| 947 | if (CI->getZExtValue() >= ATy->getNumElements()) |
| 948 | return 0; |
| 949 | if (ConstantArray *CA = dyn_cast<ConstantArray>(C)) |
| 950 | C = CA->getOperand(CI->getZExtValue()); |
| 951 | else if (isa<ConstantAggregateZero>(C)) |
Owen Anderson | a7235ea | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 952 | C = Constant::getNullValue(ATy->getElementType()); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 953 | else if (isa<UndefValue>(C)) |
Owen Anderson | 9e9a0d5 | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 954 | C = UndefValue::get(ATy->getElementType()); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 955 | else |
| 956 | return 0; |
Chris Lattner | 62d327e | 2009-10-22 06:38:35 +0000 | [diff] [blame] | 957 | } else if (const VectorType *VTy = dyn_cast<VectorType>(*I)) { |
| 958 | if (CI->getZExtValue() >= VTy->getNumElements()) |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 959 | return 0; |
Reid Spencer | 9d6565a | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 960 | if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 961 | C = CP->getOperand(CI->getZExtValue()); |
| 962 | else if (isa<ConstantAggregateZero>(C)) |
Chris Lattner | 62d327e | 2009-10-22 06:38:35 +0000 | [diff] [blame] | 963 | C = Constant::getNullValue(VTy->getElementType()); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 964 | else if (isa<UndefValue>(C)) |
Chris Lattner | 62d327e | 2009-10-22 06:38:35 +0000 | [diff] [blame] | 965 | C = UndefValue::get(VTy->getElementType()); |
Chris Lattner | 5520732 | 2007-01-30 23:45:45 +0000 | [diff] [blame] | 966 | else |
| 967 | return 0; |
| 968 | } else { |
| 969 | return 0; |
| 970 | } |
| 971 | } else { |
| 972 | return 0; |
| 973 | } |
| 974 | return C; |
| 975 | } |
| 976 | |
| 977 | |
| 978 | //===----------------------------------------------------------------------===// |
| 979 | // Constant Folding for Calls |
| 980 | // |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 981 | |
| 982 | /// canConstantFoldCallTo - Return true if its even possible to fold a call to |
| 983 | /// the specified function. |
| 984 | bool |
Dan Gohman | fa9b80e | 2008-01-31 01:05:10 +0000 | [diff] [blame] | 985 | llvm::canConstantFoldCallTo(const Function *F) { |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 986 | switch (F->getIntrinsicID()) { |
Dale Johannesen | 9ab7fb3 | 2007-10-02 17:43:59 +0000 | [diff] [blame] | 987 | case Intrinsic::sqrt: |
| 988 | case Intrinsic::powi: |
Reid Spencer | e9391fd | 2007-04-01 07:35:23 +0000 | [diff] [blame] | 989 | case Intrinsic::bswap: |
| 990 | case Intrinsic::ctpop: |
| 991 | case Intrinsic::ctlz: |
| 992 | case Intrinsic::cttz: |
Chris Lattner | e65cd40 | 2009-10-05 05:26:04 +0000 | [diff] [blame] | 993 | case Intrinsic::uadd_with_overflow: |
| 994 | case Intrinsic::usub_with_overflow: |
Evan Phoenix | 1614e50 | 2009-10-05 22:53:52 +0000 | [diff] [blame] | 995 | case Intrinsic::sadd_with_overflow: |
| 996 | case Intrinsic::ssub_with_overflow: |
Anton Korobeynikov | faa75f6e | 2010-03-19 00:36:35 +0000 | [diff] [blame] | 997 | case Intrinsic::convert_from_fp16: |
| 998 | case Intrinsic::convert_to_fp16: |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 999 | return true; |
Chris Lattner | 68a0603 | 2009-10-05 05:00:35 +0000 | [diff] [blame] | 1000 | default: |
| 1001 | return false; |
| 1002 | case 0: break; |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 1003 | } |
| 1004 | |
Chris Lattner | 6f532a9 | 2009-04-03 00:02:39 +0000 | [diff] [blame] | 1005 | if (!F->hasName()) return false; |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1006 | StringRef Name = F->getName(); |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1007 | |
| 1008 | // In these cases, the check of the length is required. We don't want to |
| 1009 | // return true for a name like "cos\0blah" which strcmp would return equal to |
| 1010 | // "cos", but has length 8. |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1011 | switch (Name[0]) { |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1012 | default: return false; |
| 1013 | case 'a': |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1014 | return Name == "acos" || Name == "asin" || |
| 1015 | Name == "atan" || Name == "atan2"; |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1016 | case 'c': |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1017 | return Name == "cos" || Name == "ceil" || Name == "cosf" || Name == "cosh"; |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1018 | case 'e': |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1019 | return Name == "exp"; |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1020 | case 'f': |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1021 | return Name == "fabs" || Name == "fmod" || Name == "floor"; |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1022 | case 'l': |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1023 | return Name == "log" || Name == "log10"; |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1024 | case 'p': |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1025 | return Name == "pow"; |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1026 | case 's': |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1027 | return Name == "sin" || Name == "sinh" || Name == "sqrt" || |
| 1028 | Name == "sinf" || Name == "sqrtf"; |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1029 | case 't': |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1030 | return Name == "tan" || Name == "tanh"; |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 1031 | } |
| 1032 | } |
| 1033 | |
Chris Lattner | 72d88ae | 2007-01-30 23:15:43 +0000 | [diff] [blame] | 1034 | static Constant *ConstantFoldFP(double (*NativeFP)(double), double V, |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1035 | const Type *Ty) { |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 1036 | errno = 0; |
| 1037 | V = NativeFP(V); |
Chris Lattner | f19f58a | 2008-03-30 18:02:00 +0000 | [diff] [blame] | 1038 | if (errno != 0) { |
| 1039 | errno = 0; |
| 1040 | return 0; |
Dale Johannesen | 43421b3 | 2007-09-06 18:13:44 +0000 | [diff] [blame] | 1041 | } |
Chris Lattner | f19f58a | 2008-03-30 18:02:00 +0000 | [diff] [blame] | 1042 | |
Chris Lattner | d0806a1 | 2009-10-05 05:06:24 +0000 | [diff] [blame] | 1043 | if (Ty->isFloatTy()) |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1044 | return ConstantFP::get(Ty->getContext(), APFloat((float)V)); |
Chris Lattner | d0806a1 | 2009-10-05 05:06:24 +0000 | [diff] [blame] | 1045 | if (Ty->isDoubleTy()) |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1046 | return ConstantFP::get(Ty->getContext(), APFloat(V)); |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1047 | llvm_unreachable("Can only constant fold float/double"); |
Gabor Greif | 33e456d | 2008-05-21 14:07:30 +0000 | [diff] [blame] | 1048 | return 0; // dummy return to suppress warning |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 1049 | } |
| 1050 | |
Dan Gohman | 3841524 | 2007-07-16 15:26:22 +0000 | [diff] [blame] | 1051 | static Constant *ConstantFoldBinaryFP(double (*NativeFP)(double, double), |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1052 | double V, double W, const Type *Ty) { |
Dan Gohman | 3841524 | 2007-07-16 15:26:22 +0000 | [diff] [blame] | 1053 | errno = 0; |
| 1054 | V = NativeFP(V, W); |
Chris Lattner | f19f58a | 2008-03-30 18:02:00 +0000 | [diff] [blame] | 1055 | if (errno != 0) { |
| 1056 | errno = 0; |
| 1057 | return 0; |
Dale Johannesen | 43421b3 | 2007-09-06 18:13:44 +0000 | [diff] [blame] | 1058 | } |
Chris Lattner | f19f58a | 2008-03-30 18:02:00 +0000 | [diff] [blame] | 1059 | |
Chris Lattner | d0806a1 | 2009-10-05 05:06:24 +0000 | [diff] [blame] | 1060 | if (Ty->isFloatTy()) |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1061 | return ConstantFP::get(Ty->getContext(), APFloat((float)V)); |
Chris Lattner | d0806a1 | 2009-10-05 05:06:24 +0000 | [diff] [blame] | 1062 | if (Ty->isDoubleTy()) |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1063 | return ConstantFP::get(Ty->getContext(), APFloat(V)); |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1064 | llvm_unreachable("Can only constant fold float/double"); |
Gabor Greif | 33e456d | 2008-05-21 14:07:30 +0000 | [diff] [blame] | 1065 | return 0; // dummy return to suppress warning |
Dan Gohman | 3841524 | 2007-07-16 15:26:22 +0000 | [diff] [blame] | 1066 | } |
| 1067 | |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 1068 | /// ConstantFoldCall - Attempt to constant fold a call to the specified function |
| 1069 | /// with the specified arguments, returning null if unsuccessful. |
| 1070 | Constant * |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 1071 | llvm::ConstantFoldCall(Function *F, |
Chris Lattner | 68a0603 | 2009-10-05 05:00:35 +0000 | [diff] [blame] | 1072 | Constant *const *Operands, unsigned NumOperands) { |
Chris Lattner | 6f532a9 | 2009-04-03 00:02:39 +0000 | [diff] [blame] | 1073 | if (!F->hasName()) return 0; |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1074 | StringRef Name = F->getName(); |
Chris Lattner | e65cd40 | 2009-10-05 05:26:04 +0000 | [diff] [blame] | 1075 | |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 1076 | const Type *Ty = F->getReturnType(); |
Chris Lattner | 72d88ae | 2007-01-30 23:15:43 +0000 | [diff] [blame] | 1077 | if (NumOperands == 1) { |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 1078 | if (ConstantFP *Op = dyn_cast<ConstantFP>(Operands[0])) { |
Anton Korobeynikov | faa75f6e | 2010-03-19 00:36:35 +0000 | [diff] [blame] | 1079 | if (Name == "llvm.convert.to.fp16") { |
| 1080 | APFloat Val(Op->getValueAPF()); |
| 1081 | |
| 1082 | bool lost = false; |
| 1083 | Val.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &lost); |
| 1084 | |
| 1085 | return ConstantInt::get(F->getContext(), Val.bitcastToAPInt()); |
| 1086 | } |
| 1087 | |
Chris Lattner | d0806a1 | 2009-10-05 05:06:24 +0000 | [diff] [blame] | 1088 | if (!Ty->isFloatTy() && !Ty->isDoubleTy()) |
Dale Johannesen | 43421b3 | 2007-09-06 18:13:44 +0000 | [diff] [blame] | 1089 | return 0; |
| 1090 | /// Currently APFloat versions of these functions do not exist, so we use |
| 1091 | /// the host native double versions. Float versions are not called |
| 1092 | /// directly but for all these it is true (float)(f((double)arg)) == |
| 1093 | /// f(arg). Long double not supported yet. |
Chris Lattner | d0806a1 | 2009-10-05 05:06:24 +0000 | [diff] [blame] | 1094 | double V = Ty->isFloatTy() ? (double)Op->getValueAPF().convertToFloat() : |
Dale Johannesen | 43421b3 | 2007-09-06 18:13:44 +0000 | [diff] [blame] | 1095 | Op->getValueAPF().convertToDouble(); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1096 | switch (Name[0]) { |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1097 | case 'a': |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1098 | if (Name == "acos") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1099 | return ConstantFoldFP(acos, V, Ty); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1100 | else if (Name == "asin") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1101 | return ConstantFoldFP(asin, V, Ty); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1102 | else if (Name == "atan") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1103 | return ConstantFoldFP(atan, V, Ty); |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1104 | break; |
| 1105 | case 'c': |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1106 | if (Name == "ceil") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1107 | return ConstantFoldFP(ceil, V, Ty); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1108 | else if (Name == "cos") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1109 | return ConstantFoldFP(cos, V, Ty); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1110 | else if (Name == "cosh") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1111 | return ConstantFoldFP(cosh, V, Ty); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1112 | else if (Name == "cosf") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1113 | return ConstantFoldFP(cos, V, Ty); |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1114 | break; |
| 1115 | case 'e': |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1116 | if (Name == "exp") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1117 | return ConstantFoldFP(exp, V, Ty); |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1118 | break; |
| 1119 | case 'f': |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1120 | if (Name == "fabs") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1121 | return ConstantFoldFP(fabs, V, Ty); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1122 | else if (Name == "floor") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1123 | return ConstantFoldFP(floor, V, Ty); |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1124 | break; |
| 1125 | case 'l': |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1126 | if (Name == "log" && V > 0) |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1127 | return ConstantFoldFP(log, V, Ty); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1128 | else if (Name == "log10" && V > 0) |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1129 | return ConstantFoldFP(log10, V, Ty); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1130 | else if (Name == "llvm.sqrt.f32" || |
| 1131 | Name == "llvm.sqrt.f64") { |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1132 | if (V >= -0.0) |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1133 | return ConstantFoldFP(sqrt, V, Ty); |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1134 | else // Undefined |
Owen Anderson | a7235ea | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 1135 | return Constant::getNullValue(Ty); |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1136 | } |
| 1137 | break; |
| 1138 | case 's': |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1139 | if (Name == "sin") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1140 | return ConstantFoldFP(sin, V, Ty); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1141 | else if (Name == "sinh") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1142 | return ConstantFoldFP(sinh, V, Ty); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1143 | else if (Name == "sqrt" && V >= 0) |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1144 | return ConstantFoldFP(sqrt, V, Ty); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1145 | else if (Name == "sqrtf" && V >= 0) |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1146 | return ConstantFoldFP(sqrt, V, Ty); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1147 | else if (Name == "sinf") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1148 | return ConstantFoldFP(sin, V, Ty); |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1149 | break; |
| 1150 | case 't': |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1151 | if (Name == "tan") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1152 | return ConstantFoldFP(tan, V, Ty); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1153 | else if (Name == "tanh") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1154 | return ConstantFoldFP(tanh, V, Ty); |
Chris Lattner | c5f6a1f | 2007-08-08 06:55:43 +0000 | [diff] [blame] | 1155 | break; |
| 1156 | default: |
| 1157 | break; |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 1158 | } |
Chris Lattner | 68a0603 | 2009-10-05 05:00:35 +0000 | [diff] [blame] | 1159 | return 0; |
| 1160 | } |
| 1161 | |
| 1162 | |
| 1163 | if (ConstantInt *Op = dyn_cast<ConstantInt>(Operands[0])) { |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1164 | if (Name.startswith("llvm.bswap")) |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1165 | return ConstantInt::get(F->getContext(), Op->getValue().byteSwap()); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1166 | else if (Name.startswith("llvm.ctpop")) |
Owen Anderson | eed707b | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 1167 | return ConstantInt::get(Ty, Op->getValue().countPopulation()); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1168 | else if (Name.startswith("llvm.cttz")) |
Owen Anderson | eed707b | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 1169 | return ConstantInt::get(Ty, Op->getValue().countTrailingZeros()); |
Daniel Dunbar | f0443c1 | 2009-07-26 08:34:35 +0000 | [diff] [blame] | 1170 | else if (Name.startswith("llvm.ctlz")) |
Owen Anderson | eed707b | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 1171 | return ConstantInt::get(Ty, Op->getValue().countLeadingZeros()); |
Anton Korobeynikov | faa75f6e | 2010-03-19 00:36:35 +0000 | [diff] [blame] | 1172 | else if (Name == "llvm.convert.from.fp16") { |
| 1173 | APFloat Val(Op->getValue()); |
| 1174 | |
| 1175 | bool lost = false; |
| 1176 | APFloat::opStatus status = |
| 1177 | Val.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &lost); |
| 1178 | |
| 1179 | // Conversion is always precise. |
| 1180 | status = status; |
| 1181 | assert(status == APFloat::opOK && !lost && |
| 1182 | "Precision lost during fp16 constfolding"); |
| 1183 | |
| 1184 | return ConstantFP::get(F->getContext(), Val); |
| 1185 | } |
Chris Lattner | 68a0603 | 2009-10-05 05:00:35 +0000 | [diff] [blame] | 1186 | return 0; |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 1187 | } |
Chris Lattner | 68a0603 | 2009-10-05 05:00:35 +0000 | [diff] [blame] | 1188 | |
Dan Gohman | 9ee7123 | 2010-02-17 00:54:58 +0000 | [diff] [blame] | 1189 | if (isa<UndefValue>(Operands[0])) { |
| 1190 | if (Name.startswith("llvm.bswap")) |
| 1191 | return Operands[0]; |
| 1192 | return 0; |
| 1193 | } |
| 1194 | |
Chris Lattner | 68a0603 | 2009-10-05 05:00:35 +0000 | [diff] [blame] | 1195 | return 0; |
| 1196 | } |
| 1197 | |
| 1198 | if (NumOperands == 2) { |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 1199 | if (ConstantFP *Op1 = dyn_cast<ConstantFP>(Operands[0])) { |
Chris Lattner | d0806a1 | 2009-10-05 05:06:24 +0000 | [diff] [blame] | 1200 | if (!Ty->isFloatTy() && !Ty->isDoubleTy()) |
Dale Johannesen | 9ab7fb3 | 2007-10-02 17:43:59 +0000 | [diff] [blame] | 1201 | return 0; |
Chris Lattner | d0806a1 | 2009-10-05 05:06:24 +0000 | [diff] [blame] | 1202 | double Op1V = Ty->isFloatTy() ? |
| 1203 | (double)Op1->getValueAPF().convertToFloat() : |
Dale Johannesen | 43421b3 | 2007-09-06 18:13:44 +0000 | [diff] [blame] | 1204 | Op1->getValueAPF().convertToDouble(); |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 1205 | if (ConstantFP *Op2 = dyn_cast<ConstantFP>(Operands[1])) { |
Chris Lattner | d0806a1 | 2009-10-05 05:06:24 +0000 | [diff] [blame] | 1206 | if (Op2->getType() != Op1->getType()) |
| 1207 | return 0; |
| 1208 | |
| 1209 | double Op2V = Ty->isFloatTy() ? |
Dale Johannesen | 43421b3 | 2007-09-06 18:13:44 +0000 | [diff] [blame] | 1210 | (double)Op2->getValueAPF().convertToFloat(): |
| 1211 | Op2->getValueAPF().convertToDouble(); |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 1212 | |
Chris Lattner | 68a0603 | 2009-10-05 05:00:35 +0000 | [diff] [blame] | 1213 | if (Name == "pow") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1214 | return ConstantFoldBinaryFP(pow, Op1V, Op2V, Ty); |
Chris Lattner | 68a0603 | 2009-10-05 05:00:35 +0000 | [diff] [blame] | 1215 | if (Name == "fmod") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1216 | return ConstantFoldBinaryFP(fmod, Op1V, Op2V, Ty); |
Chris Lattner | 68a0603 | 2009-10-05 05:00:35 +0000 | [diff] [blame] | 1217 | if (Name == "atan2") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1218 | return ConstantFoldBinaryFP(atan2, Op1V, Op2V, Ty); |
Chris Lattner | b5282dc | 2007-01-15 06:27:37 +0000 | [diff] [blame] | 1219 | } else if (ConstantInt *Op2C = dyn_cast<ConstantInt>(Operands[1])) { |
Chris Lattner | 68a0603 | 2009-10-05 05:00:35 +0000 | [diff] [blame] | 1220 | if (Name == "llvm.powi.f32") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1221 | return ConstantFP::get(F->getContext(), |
| 1222 | APFloat((float)std::pow((float)Op1V, |
Chris Lattner | 02a260a | 2008-04-20 00:41:09 +0000 | [diff] [blame] | 1223 | (int)Op2C->getZExtValue()))); |
Chris Lattner | 68a0603 | 2009-10-05 05:00:35 +0000 | [diff] [blame] | 1224 | if (Name == "llvm.powi.f64") |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1225 | return ConstantFP::get(F->getContext(), |
| 1226 | APFloat((double)std::pow((double)Op1V, |
| 1227 | (int)Op2C->getZExtValue()))); |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 1228 | } |
Chris Lattner | 68a0603 | 2009-10-05 05:00:35 +0000 | [diff] [blame] | 1229 | return 0; |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 1230 | } |
Chris Lattner | e65cd40 | 2009-10-05 05:26:04 +0000 | [diff] [blame] | 1231 | |
| 1232 | |
| 1233 | if (ConstantInt *Op1 = dyn_cast<ConstantInt>(Operands[0])) { |
| 1234 | if (ConstantInt *Op2 = dyn_cast<ConstantInt>(Operands[1])) { |
| 1235 | switch (F->getIntrinsicID()) { |
| 1236 | default: break; |
| 1237 | case Intrinsic::uadd_with_overflow: { |
| 1238 | Constant *Res = ConstantExpr::getAdd(Op1, Op2); // result. |
| 1239 | Constant *Ops[] = { |
| 1240 | Res, ConstantExpr::getICmp(CmpInst::ICMP_ULT, Res, Op1) // overflow. |
| 1241 | }; |
| 1242 | return ConstantStruct::get(F->getContext(), Ops, 2, false); |
| 1243 | } |
| 1244 | case Intrinsic::usub_with_overflow: { |
| 1245 | Constant *Res = ConstantExpr::getSub(Op1, Op2); // result. |
| 1246 | Constant *Ops[] = { |
| 1247 | Res, ConstantExpr::getICmp(CmpInst::ICMP_UGT, Res, Op1) // overflow. |
| 1248 | }; |
| 1249 | return ConstantStruct::get(F->getContext(), Ops, 2, false); |
| 1250 | } |
Evan Phoenix | 1614e50 | 2009-10-05 22:53:52 +0000 | [diff] [blame] | 1251 | case Intrinsic::sadd_with_overflow: { |
| 1252 | Constant *Res = ConstantExpr::getAdd(Op1, Op2); // result. |
| 1253 | Constant *Overflow = ConstantExpr::getSelect( |
| 1254 | ConstantExpr::getICmp(CmpInst::ICMP_SGT, |
| 1255 | ConstantInt::get(Op1->getType(), 0), Op1), |
| 1256 | ConstantExpr::getICmp(CmpInst::ICMP_SGT, Res, Op2), |
| 1257 | ConstantExpr::getICmp(CmpInst::ICMP_SLT, Res, Op2)); // overflow. |
| 1258 | |
| 1259 | Constant *Ops[] = { Res, Overflow }; |
| 1260 | return ConstantStruct::get(F->getContext(), Ops, 2, false); |
| 1261 | } |
| 1262 | case Intrinsic::ssub_with_overflow: { |
| 1263 | Constant *Res = ConstantExpr::getSub(Op1, Op2); // result. |
| 1264 | Constant *Overflow = ConstantExpr::getSelect( |
| 1265 | ConstantExpr::getICmp(CmpInst::ICMP_SGT, |
| 1266 | ConstantInt::get(Op2->getType(), 0), Op2), |
| 1267 | ConstantExpr::getICmp(CmpInst::ICMP_SLT, Res, Op1), |
| 1268 | ConstantExpr::getICmp(CmpInst::ICMP_SGT, Res, Op1)); // overflow. |
| 1269 | |
| 1270 | Constant *Ops[] = { Res, Overflow }; |
| 1271 | return ConstantStruct::get(F->getContext(), Ops, 2, false); |
| 1272 | } |
Chris Lattner | e65cd40 | 2009-10-05 05:26:04 +0000 | [diff] [blame] | 1273 | } |
| 1274 | } |
| 1275 | |
| 1276 | return 0; |
| 1277 | } |
| 1278 | return 0; |
John Criswell | bd9d370 | 2005-10-27 16:00:10 +0000 | [diff] [blame] | 1279 | } |
| 1280 | return 0; |
| 1281 | } |
| 1282 | |