1 //===-- ConstantFolding.cpp - Fold instructions into constants ------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file defines routines for folding instructions into constants. 11 // 12 // Also, to supplement the basic IR ConstantExpr simplifications, 13 // this file defines some additional folding routines that can make use of 14 // DataLayout information. These functions cannot go in IR due to library 15 // dependency issues. 16 // 17 //===----------------------------------------------------------------------===// 18 19 #include "llvm/Analysis/ConstantFolding.h" 20 #include "llvm/ADT/APFloat.h" 21 #include "llvm/ADT/APInt.h" 22 #include "llvm/ADT/ArrayRef.h" 23 #include "llvm/ADT/DenseMap.h" 24 #include "llvm/ADT/STLExtras.h" 25 #include "llvm/ADT/StringRef.h" 26 #include "llvm/ADT/SmallVector.h" 27 #include "llvm/Analysis/TargetLibraryInfo.h" 28 #include "llvm/Analysis/ValueTracking.h" 29 #include "llvm/Config/config.h" 30 #include "llvm/IR/Constant.h" 31 #include "llvm/IR/Constants.h" 32 #include "llvm/IR/DataLayout.h" 33 #include "llvm/IR/DerivedTypes.h" 34 #include "llvm/IR/Function.h" 35 #include "llvm/IR/GlobalValue.h" 36 #include "llvm/IR/GlobalVariable.h" 37 #include "llvm/IR/InstrTypes.h" 38 #include "llvm/IR/Instruction.h" 39 #include "llvm/IR/Instructions.h" 40 #include "llvm/IR/Operator.h" 41 #include "llvm/IR/Type.h" 42 #include "llvm/IR/Value.h" 43 #include "llvm/Support/Casting.h" 44 #include "llvm/Support/ErrorHandling.h" 45 #include "llvm/Support/MathExtras.h" 46 #include <cassert> 47 #include <cerrno> 48 #include <cfenv> 49 #include <cmath> 50 #include <cstddef> 51 #include <cstdint> 52 53 using namespace llvm; 54 55 namespace { 56 57 //===----------------------------------------------------------------------===// 58 // Constant Folding internal helper functions 59 //===----------------------------------------------------------------------===// 60 61 static Constant *foldConstVectorToAPInt(APInt &Result, Type *DestTy, 62 Constant *C, Type *SrcEltTy, 63 unsigned NumSrcElts, 64 const DataLayout &DL) { 65 // Now that we know that the input value is a vector of integers, just shift 66 // and insert them into our result. 67 unsigned BitShift = DL.getTypeSizeInBits(SrcEltTy); 68 for (unsigned i = 0; i != NumSrcElts; ++i) { 69 Constant *Element; 70 if (DL.isLittleEndian()) 71 Element = C->getAggregateElement(NumSrcElts - i - 1); 72 else 73 Element = C->getAggregateElement(i); 74 75 if (Element && isa<UndefValue>(Element)) { 76 Result <<= BitShift; 77 continue; 78 } 79 80 auto *ElementCI = dyn_cast_or_null<ConstantInt>(Element); 81 if (!ElementCI) 82 return ConstantExpr::getBitCast(C, DestTy); 83 84 Result <<= BitShift; 85 Result |= ElementCI->getValue().zextOrSelf(Result.getBitWidth()); 86 } 87 88 return nullptr; 89 } 90 91 /// Constant fold bitcast, symbolically evaluating it with DataLayout. 92 /// This always returns a non-null constant, but it may be a 93 /// ConstantExpr if unfoldable. 94 Constant *FoldBitCast(Constant *C, Type *DestTy, const DataLayout &DL) { 95 // Catch the obvious splat cases. 96 if (C->isNullValue() && !DestTy->isX86_MMXTy()) 97 return Constant::getNullValue(DestTy); 98 if (C->isAllOnesValue() && !DestTy->isX86_MMXTy() && 99 !DestTy->isPtrOrPtrVectorTy()) // Don't get ones for ptr types! 100 return Constant::getAllOnesValue(DestTy); 101 102 if (auto *VTy = dyn_cast<VectorType>(C->getType())) { 103 // Handle a vector->scalar integer/fp cast. 104 if (isa<IntegerType>(DestTy) || DestTy->isFloatingPointTy()) { 105 unsigned NumSrcElts = VTy->getNumElements(); 106 Type *SrcEltTy = VTy->getElementType(); 107 108 // If the vector is a vector of floating point, convert it to vector of int 109 // to simplify things. 110 if (SrcEltTy->isFloatingPointTy()) { 111 unsigned FPWidth = SrcEltTy->getPrimitiveSizeInBits(); 112 Type *SrcIVTy = 113 VectorType::get(IntegerType::get(C->getContext(), FPWidth), NumSrcElts); 114 // Ask IR to do the conversion now that #elts line up. 115 C = ConstantExpr::getBitCast(C, SrcIVTy); 116 } 117 118 APInt Result(DL.getTypeSizeInBits(DestTy), 0); 119 if (Constant *CE = foldConstVectorToAPInt(Result, DestTy, C, 120 SrcEltTy, NumSrcElts, DL)) 121 return CE; 122 123 if (isa<IntegerType>(DestTy)) 124 return ConstantInt::get(DestTy, Result); 125 126 APFloat FP(DestTy->getFltSemantics(), Result); 127 return ConstantFP::get(DestTy->getContext(), FP); 128 } 129 } 130 131 // The code below only handles casts to vectors currently. 132 auto *DestVTy = dyn_cast<VectorType>(DestTy); 133 if (!DestVTy) 134 return ConstantExpr::getBitCast(C, DestTy); 135 136 // If this is a scalar -> vector cast, convert the input into a <1 x scalar> 137 // vector so the code below can handle it uniformly. 138 if (isa<ConstantFP>(C) || isa<ConstantInt>(C)) { 139 Constant *Ops = C; // don't take the address of C! 140 return FoldBitCast(ConstantVector::get(Ops), DestTy, DL); 141 } 142 143 // If this is a bitcast from constant vector -> vector, fold it. 144 if (!isa<ConstantDataVector>(C) && !isa<ConstantVector>(C)) 145 return ConstantExpr::getBitCast(C, DestTy); 146 147 // If the element types match, IR can fold it. 148 unsigned NumDstElt = DestVTy->getNumElements(); 149 unsigned NumSrcElt = C->getType()->getVectorNumElements(); 150 if (NumDstElt == NumSrcElt) 151 return ConstantExpr::getBitCast(C, DestTy); 152 153 Type *SrcEltTy = C->getType()->getVectorElementType(); 154 Type *DstEltTy = DestVTy->getElementType(); 155 156 // Otherwise, we're changing the number of elements in a vector, which 157 // requires endianness information to do the right thing. For example, 158 // bitcast (<2 x i64> <i64 0, i64 1> to <4 x i32>) 159 // folds to (little endian): 160 // <4 x i32> <i32 0, i32 0, i32 1, i32 0> 161 // and to (big endian): 162 // <4 x i32> <i32 0, i32 0, i32 0, i32 1> 163 164 // First thing is first. We only want to think about integer here, so if 165 // we have something in FP form, recast it as integer. 166 if (DstEltTy->isFloatingPointTy()) { 167 // Fold to an vector of integers with same size as our FP type. 168 unsigned FPWidth = DstEltTy->getPrimitiveSizeInBits(); 169 Type *DestIVTy = 170 VectorType::get(IntegerType::get(C->getContext(), FPWidth), NumDstElt); 171 // Recursively handle this integer conversion, if possible. 172 C = FoldBitCast(C, DestIVTy, DL); 173 174 // Finally, IR can handle this now that #elts line up. 175 return ConstantExpr::getBitCast(C, DestTy); 176 } 177 178 // Okay, we know the destination is integer, if the input is FP, convert 179 // it to integer first. 180 if (SrcEltTy->isFloatingPointTy()) { 181 unsigned FPWidth = SrcEltTy->getPrimitiveSizeInBits(); 182 Type *SrcIVTy = 183 VectorType::get(IntegerType::get(C->getContext(), FPWidth), NumSrcElt); 184 // Ask IR to do the conversion now that #elts line up. 185 C = ConstantExpr::getBitCast(C, SrcIVTy); 186 // If IR wasn't able to fold it, bail out. 187 if (!isa<ConstantVector>(C) && // FIXME: Remove ConstantVector. 188 !isa<ConstantDataVector>(C)) 189 return C; 190 } 191 192 // Now we know that the input and output vectors are both integer vectors 193 // of the same size, and that their #elements is not the same. Do the 194 // conversion here, which depends on whether the input or output has 195 // more elements. 196 bool isLittleEndian = DL.isLittleEndian(); 197 198 SmallVector<Constant*, 32> Result; 199 if (NumDstElt < NumSrcElt) { 200 // Handle: bitcast (<4 x i32> <i32 0, i32 1, i32 2, i32 3> to <2 x i64>) 201 Constant *Zero = Constant::getNullValue(DstEltTy); 202 unsigned Ratio = NumSrcElt/NumDstElt; 203 unsigned SrcBitSize = SrcEltTy->getPrimitiveSizeInBits(); 204 unsigned SrcElt = 0; 205 for (unsigned i = 0; i != NumDstElt; ++i) { 206 // Build each element of the result. 207 Constant *Elt = Zero; 208 unsigned ShiftAmt = isLittleEndian ? 0 : SrcBitSize*(Ratio-1); 209 for (unsigned j = 0; j != Ratio; ++j) { 210 Constant *Src = C->getAggregateElement(SrcElt++); 211 if (Src && isa<UndefValue>(Src)) 212 Src = Constant::getNullValue(C->getType()->getVectorElementType()); 213 else 214 Src = dyn_cast_or_null<ConstantInt>(Src); 215 if (!Src) // Reject constantexpr elements. 216 return ConstantExpr::getBitCast(C, DestTy); 217 218 // Zero extend the element to the right size. 219 Src = ConstantExpr::getZExt(Src, Elt->getType()); 220 221 // Shift it to the right place, depending on endianness. 222 Src = ConstantExpr::getShl(Src, 223 ConstantInt::get(Src->getType(), ShiftAmt)); 224 ShiftAmt += isLittleEndian ? SrcBitSize : -SrcBitSize; 225 226 // Mix it in. 227 Elt = ConstantExpr::getOr(Elt, Src); 228 } 229 Result.push_back(Elt); 230 } 231 return ConstantVector::get(Result); 232 } 233 234 // Handle: bitcast (<2 x i64> <i64 0, i64 1> to <4 x i32>) 235 unsigned Ratio = NumDstElt/NumSrcElt; 236 unsigned DstBitSize = DL.getTypeSizeInBits(DstEltTy); 237 238 // Loop over each source value, expanding into multiple results. 239 for (unsigned i = 0; i != NumSrcElt; ++i) { 240 auto *Element = C->getAggregateElement(i); 241 242 if (!Element) // Reject constantexpr elements. 243 return ConstantExpr::getBitCast(C, DestTy); 244 245 if (isa<UndefValue>(Element)) { 246 // Correctly Propagate undef values. 247 Result.append(Ratio, UndefValue::get(DstEltTy)); 248 continue; 249 } 250 251 auto *Src = dyn_cast<ConstantInt>(Element); 252 if (!Src) 253 return ConstantExpr::getBitCast(C, DestTy); 254 255 unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize*(Ratio-1); 256 for (unsigned j = 0; j != Ratio; ++j) { 257 // Shift the piece of the value into the right place, depending on 258 // endianness. 259 Constant *Elt = ConstantExpr::getLShr(Src, 260 ConstantInt::get(Src->getType(), ShiftAmt)); 261 ShiftAmt += isLittleEndian ? DstBitSize : -DstBitSize; 262 263 // Truncate the element to an integer with the same pointer size and 264 // convert the element back to a pointer using a inttoptr. 265 if (DstEltTy->isPointerTy()) { 266 IntegerType *DstIntTy = Type::getIntNTy(C->getContext(), DstBitSize); 267 Constant *CE = ConstantExpr::getTrunc(Elt, DstIntTy); 268 Result.push_back(ConstantExpr::getIntToPtr(CE, DstEltTy)); 269 continue; 270 } 271 272 // Truncate and remember this piece. 273 Result.push_back(ConstantExpr::getTrunc(Elt, DstEltTy)); 274 } 275 } 276 277 return ConstantVector::get(Result); 278 } 279 280 } // end anonymous namespace 281 282 /// If this constant is a constant offset from a global, return the global and 283 /// the constant. Because of constantexprs, this function is recursive. 284 bool llvm::IsConstantOffsetFromGlobal(Constant *C, GlobalValue *&GV, 285 APInt &Offset, const DataLayout &DL) { 286 // Trivial case, constant is the global. 287 if ((GV = dyn_cast<GlobalValue>(C))) { 288 unsigned BitWidth = DL.getPointerTypeSizeInBits(GV->getType()); 289 Offset = APInt(BitWidth, 0); 290 return true; 291 } 292 293 // Otherwise, if this isn't a constant expr, bail out. 294 auto *CE = dyn_cast<ConstantExpr>(C); 295 if (!CE) return false; 296 297 // Look through ptr->int and ptr->ptr casts. 298 if (CE->getOpcode() == Instruction::PtrToInt || 299 CE->getOpcode() == Instruction::BitCast) 300 return IsConstantOffsetFromGlobal(CE->getOperand(0), GV, Offset, DL); 301 302 // i32* getelementptr ([5 x i32]* @a, i32 0, i32 5) 303 auto *GEP = dyn_cast<GEPOperator>(CE); 304 if (!GEP) 305 return false; 306 307 unsigned BitWidth = DL.getPointerTypeSizeInBits(GEP->getType()); 308 APInt TmpOffset(BitWidth, 0); 309 310 // If the base isn't a global+constant, we aren't either. 311 if (!IsConstantOffsetFromGlobal(CE->getOperand(0), GV, TmpOffset, DL)) 312 return false; 313 314 // Otherwise, add any offset that our operands provide. 315 if (!GEP->accumulateConstantOffset(DL, TmpOffset)) 316 return false; 317 318 Offset = TmpOffset; 319 return true; 320 } 321 322 namespace { 323 324 /// Recursive helper to read bits out of global. C is the constant being copied 325 /// out of. ByteOffset is an offset into C. CurPtr is the pointer to copy 326 /// results into and BytesLeft is the number of bytes left in 327 /// the CurPtr buffer. DL is the DataLayout. 328 bool ReadDataFromGlobal(Constant *C, uint64_t ByteOffset, unsigned char *CurPtr, 329 unsigned BytesLeft, const DataLayout &DL) { 330 assert(ByteOffset <= DL.getTypeAllocSize(C->getType()) && 331 "Out of range access"); 332 333 // If this element is zero or undefined, we can just return since *CurPtr is 334 // zero initialized. 335 if (isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) 336 return true; 337 338 if (auto *CI = dyn_cast<ConstantInt>(C)) { 339 if (CI->getBitWidth() > 64 || 340 (CI->getBitWidth() & 7) != 0) 341 return false; 342 343 uint64_t Val = CI->getZExtValue(); 344 unsigned IntBytes = unsigned(CI->getBitWidth()/8); 345 346 for (unsigned i = 0; i != BytesLeft && ByteOffset != IntBytes; ++i) { 347 int n = ByteOffset; 348 if (!DL.isLittleEndian()) 349 n = IntBytes - n - 1; 350 CurPtr[i] = (unsigned char)(Val >> (n * 8)); 351 ++ByteOffset; 352 } 353 return true; 354 } 355 356 if (auto *CFP = dyn_cast<ConstantFP>(C)) { 357 if (CFP->getType()->isDoubleTy()) { 358 C = FoldBitCast(C, Type::getInt64Ty(C->getContext()), DL); 359 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL); 360 } 361 if (CFP->getType()->isFloatTy()){ 362 C = FoldBitCast(C, Type::getInt32Ty(C->getContext()), DL); 363 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL); 364 } 365 if (CFP->getType()->isHalfTy()){ 366 C = FoldBitCast(C, Type::getInt16Ty(C->getContext()), DL); 367 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL); 368 } 369 return false; 370 } 371 372 if (auto *CS = dyn_cast<ConstantStruct>(C)) { 373 const StructLayout *SL = DL.getStructLayout(CS->getType()); 374 unsigned Index = SL->getElementContainingOffset(ByteOffset); 375 uint64_t CurEltOffset = SL->getElementOffset(Index); 376 ByteOffset -= CurEltOffset; 377 378 while (true) { 379 // If the element access is to the element itself and not to tail padding, 380 // read the bytes from the element. 381 uint64_t EltSize = DL.getTypeAllocSize(CS->getOperand(Index)->getType()); 382 383 if (ByteOffset < EltSize && 384 !ReadDataFromGlobal(CS->getOperand(Index), ByteOffset, CurPtr, 385 BytesLeft, DL)) 386 return false; 387 388 ++Index; 389 390 // Check to see if we read from the last struct element, if so we're done. 391 if (Index == CS->getType()->getNumElements()) 392 return true; 393 394 // If we read all of the bytes we needed from this element we're done. 395 uint64_t NextEltOffset = SL->getElementOffset(Index); 396 397 if (BytesLeft <= NextEltOffset - CurEltOffset - ByteOffset) 398 return true; 399 400 // Move to the next element of the struct. 401 CurPtr += NextEltOffset - CurEltOffset - ByteOffset; 402 BytesLeft -= NextEltOffset - CurEltOffset - ByteOffset; 403 ByteOffset = 0; 404 CurEltOffset = NextEltOffset; 405 } 406 // not reached. 407 } 408 409 if (isa<ConstantArray>(C) || isa<ConstantVector>(C) || 410 isa<ConstantDataSequential>(C)) { 411 Type *EltTy = C->getType()->getSequentialElementType(); 412 uint64_t EltSize = DL.getTypeAllocSize(EltTy); 413 uint64_t Index = ByteOffset / EltSize; 414 uint64_t Offset = ByteOffset - Index * EltSize; 415 uint64_t NumElts; 416 if (auto *AT = dyn_cast<ArrayType>(C->getType())) 417 NumElts = AT->getNumElements(); 418 else 419 NumElts = C->getType()->getVectorNumElements(); 420 421 for (; Index != NumElts; ++Index) { 422 if (!ReadDataFromGlobal(C->getAggregateElement(Index), Offset, CurPtr, 423 BytesLeft, DL)) 424 return false; 425 426 uint64_t BytesWritten = EltSize - Offset; 427 assert(BytesWritten <= EltSize && "Not indexing into this element?"); 428 if (BytesWritten >= BytesLeft) 429 return true; 430 431 Offset = 0; 432 BytesLeft -= BytesWritten; 433 CurPtr += BytesWritten; 434 } 435 return true; 436 } 437 438 if (auto *CE = dyn_cast<ConstantExpr>(C)) { 439 if (CE->getOpcode() == Instruction::IntToPtr && 440 CE->getOperand(0)->getType() == DL.getIntPtrType(CE->getType())) { 441 return ReadDataFromGlobal(CE->getOperand(0), ByteOffset, CurPtr, 442 BytesLeft, DL); 443 } 444 } 445 446 // Otherwise, unknown initializer type. 447 return false; 448 } 449 450 Constant *FoldReinterpretLoadFromConstPtr(Constant *C, Type *LoadTy, 451 const DataLayout &DL) { 452 auto *PTy = cast<PointerType>(C->getType()); 453 auto *IntType = dyn_cast<IntegerType>(LoadTy); 454 455 // If this isn't an integer load we can't fold it directly. 456 if (!IntType) { 457 unsigned AS = PTy->getAddressSpace(); 458 459 // If this is a float/double load, we can try folding it as an int32/64 load 460 // and then bitcast the result. This can be useful for union cases. Note 461 // that address spaces don't matter here since we're not going to result in 462 // an actual new load. 463 Type *MapTy; 464 if (LoadTy->isHalfTy()) 465 MapTy = Type::getInt16Ty(C->getContext()); 466 else if (LoadTy->isFloatTy()) 467 MapTy = Type::getInt32Ty(C->getContext()); 468 else if (LoadTy->isDoubleTy()) 469 MapTy = Type::getInt64Ty(C->getContext()); 470 else if (LoadTy->isVectorTy()) { 471 MapTy = PointerType::getIntNTy(C->getContext(), 472 DL.getTypeAllocSizeInBits(LoadTy)); 473 } else 474 return nullptr; 475 476 C = FoldBitCast(C, MapTy->getPointerTo(AS), DL); 477 if (Constant *Res = FoldReinterpretLoadFromConstPtr(C, MapTy, DL)) 478 return FoldBitCast(Res, LoadTy, DL); 479 return nullptr; 480 } 481 482 unsigned BytesLoaded = (IntType->getBitWidth() + 7) / 8; 483 if (BytesLoaded > 32 || BytesLoaded == 0) 484 return nullptr; 485 486 GlobalValue *GVal; 487 APInt OffsetAI; 488 if (!IsConstantOffsetFromGlobal(C, GVal, OffsetAI, DL)) 489 return nullptr; 490 491 auto *GV = dyn_cast<GlobalVariable>(GVal); 492 if (!GV || !GV->isConstant() || !GV->hasDefinitiveInitializer() || 493 !GV->getInitializer()->getType()->isSized()) 494 return nullptr; 495 496 int64_t Offset = OffsetAI.getSExtValue(); 497 int64_t InitializerSize = DL.getTypeAllocSize(GV->getInitializer()->getType()); 498 499 // If we're not accessing anything in this constant, the result is undefined. 500 if (Offset + BytesLoaded <= 0) 501 return UndefValue::get(IntType); 502 503 // If we're not accessing anything in this constant, the result is undefined. 504 if (Offset >= InitializerSize) 505 return UndefValue::get(IntType); 506 507 unsigned char RawBytes[32] = {0}; 508 unsigned char *CurPtr = RawBytes; 509 unsigned BytesLeft = BytesLoaded; 510 511 // If we're loading off the beginning of the global, some bytes may be valid. 512 if (Offset < 0) { 513 CurPtr += -Offset; 514 BytesLeft += Offset; 515 Offset = 0; 516 } 517 518 if (!ReadDataFromGlobal(GV->getInitializer(), Offset, CurPtr, BytesLeft, DL)) 519 return nullptr; 520 521 APInt ResultVal = APInt(IntType->getBitWidth(), 0); 522 if (DL.isLittleEndian()) { 523 ResultVal = RawBytes[BytesLoaded - 1]; 524 for (unsigned i = 1; i != BytesLoaded; ++i) { 525 ResultVal <<= 8; 526 ResultVal |= RawBytes[BytesLoaded - 1 - i]; 527 } 528 } else { 529 ResultVal = RawBytes[0]; 530 for (unsigned i = 1; i != BytesLoaded; ++i) { 531 ResultVal <<= 8; 532 ResultVal |= RawBytes[i]; 533 } 534 } 535 536 return ConstantInt::get(IntType->getContext(), ResultVal); 537 } 538 539 Constant *ConstantFoldLoadThroughBitcast(ConstantExpr *CE, Type *DestTy, 540 const DataLayout &DL) { 541 auto *SrcPtr = CE->getOperand(0); 542 auto *SrcPtrTy = dyn_cast<PointerType>(SrcPtr->getType()); 543 if (!SrcPtrTy) 544 return nullptr; 545 Type *SrcTy = SrcPtrTy->getPointerElementType(); 546 547 Constant *C = ConstantFoldLoadFromConstPtr(SrcPtr, SrcTy, DL); 548 if (!C) 549 return nullptr; 550 551 do { 552 Type *SrcTy = C->getType(); 553 554 // If the type sizes are the same and a cast is legal, just directly 555 // cast the constant. 556 if (DL.getTypeSizeInBits(DestTy) == DL.getTypeSizeInBits(SrcTy)) { 557 Instruction::CastOps Cast = Instruction::BitCast; 558 // If we are going from a pointer to int or vice versa, we spell the cast 559 // differently. 560 if (SrcTy->isIntegerTy() && DestTy->isPointerTy()) 561 Cast = Instruction::IntToPtr; 562 else if (SrcTy->isPointerTy() && DestTy->isIntegerTy()) 563 Cast = Instruction::PtrToInt; 564 565 if (CastInst::castIsValid(Cast, C, DestTy)) 566 return ConstantExpr::getCast(Cast, C, DestTy); 567 } 568 569 // If this isn't an aggregate type, there is nothing we can do to drill down 570 // and find a bitcastable constant. 571 if (!SrcTy->isAggregateType()) 572 return nullptr; 573 574 // We're simulating a load through a pointer that was bitcast to point to 575 // a different type, so we can try to walk down through the initial 576 // elements of an aggregate to see if some part of th e aggregate is 577 // castable to implement the "load" semantic model. 578 C = C->getAggregateElement(0u); 579 } while (C); 580 581 return nullptr; 582 } 583 584 } // end anonymous namespace 585 586 Constant *llvm::ConstantFoldLoadFromConstPtr(Constant *C, Type *Ty, 587 const DataLayout &DL) { 588 // First, try the easy cases: 589 if (auto *GV = dyn_cast<GlobalVariable>(C)) 590 if (GV->isConstant() && GV->hasDefinitiveInitializer()) 591 return GV->getInitializer(); 592 593 if (auto *GA = dyn_cast<GlobalAlias>(C)) 594 if (GA->getAliasee() && !GA->isInterposable()) 595 return ConstantFoldLoadFromConstPtr(GA->getAliasee(), Ty, DL); 596 597 // If the loaded value isn't a constant expr, we can't handle it. 598 auto *CE = dyn_cast<ConstantExpr>(C); 599 if (!CE) 600 return nullptr; 601 602 if (CE->getOpcode() == Instruction::GetElementPtr) { 603 if (auto *GV = dyn_cast<GlobalVariable>(CE->getOperand(0))) { 604 if (GV->isConstant() && GV->hasDefinitiveInitializer()) { 605 if (Constant *V = 606 ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE)) 607 return V; 608 } 609 } 610 } 611 612 if (CE->getOpcode() == Instruction::BitCast) 613 if (Constant *LoadedC = ConstantFoldLoadThroughBitcast(CE, Ty, DL)) 614 return LoadedC; 615 616 // Instead of loading constant c string, use corresponding integer value 617 // directly if string length is small enough. 618 StringRef Str; 619 if (getConstantStringInfo(CE, Str) && !Str.empty()) { 620 size_t StrLen = Str.size(); 621 unsigned NumBits = Ty->getPrimitiveSizeInBits(); 622 // Replace load with immediate integer if the result is an integer or fp 623 // value. 624 if ((NumBits >> 3) == StrLen + 1 && (NumBits & 7) == 0 && 625 (isa<IntegerType>(Ty) || Ty->isFloatingPointTy())) { 626 APInt StrVal(NumBits, 0); 627 APInt SingleChar(NumBits, 0); 628 if (DL.isLittleEndian()) { 629 for (unsigned char C : reverse(Str.bytes())) { 630 SingleChar = static_cast<uint64_t>(C); 631 StrVal = (StrVal << 8) | SingleChar; 632 } 633 } else { 634 for (unsigned char C : Str.bytes()) { 635 SingleChar = static_cast<uint64_t>(C); 636 StrVal = (StrVal << 8) | SingleChar; 637 } 638 // Append NULL at the end. 639 SingleChar = 0; 640 StrVal = (StrVal << 8) | SingleChar; 641 } 642 643 Constant *Res = ConstantInt::get(CE->getContext(), StrVal); 644 if (Ty->isFloatingPointTy()) 645 Res = ConstantExpr::getBitCast(Res, Ty); 646 return Res; 647 } 648 } 649 650 // If this load comes from anywhere in a constant global, and if the global 651 // is all undef or zero, we know what it loads. 652 if (auto *GV = dyn_cast<GlobalVariable>(GetUnderlyingObject(CE, DL))) { 653 if (GV->isConstant() && GV->hasDefinitiveInitializer()) { 654 if (GV->getInitializer()->isNullValue()) 655 return Constant::getNullValue(Ty); 656 if (isa<UndefValue>(GV->getInitializer())) 657 return UndefValue::get(Ty); 658 } 659 } 660 661 // Try hard to fold loads from bitcasted strange and non-type-safe things. 662 return FoldReinterpretLoadFromConstPtr(CE, Ty, DL); 663 } 664 665 namespace { 666 667 Constant *ConstantFoldLoadInst(const LoadInst *LI, const DataLayout &DL) { 668 if (LI->isVolatile()) return nullptr; 669 670 if (auto *C = dyn_cast<Constant>(LI->getOperand(0))) 671 return ConstantFoldLoadFromConstPtr(C, LI->getType(), DL); 672 673 return nullptr; 674 } 675 676 /// One of Op0/Op1 is a constant expression. 677 /// Attempt to symbolically evaluate the result of a binary operator merging 678 /// these together. If target data info is available, it is provided as DL, 679 /// otherwise DL is null. 680 Constant *SymbolicallyEvaluateBinop(unsigned Opc, Constant *Op0, Constant *Op1, 681 const DataLayout &DL) { 682 // SROA 683 684 // Fold (and 0xffffffff00000000, (shl x, 32)) -> shl. 685 // Fold (lshr (or X, Y), 32) -> (lshr [X/Y], 32) if one doesn't contribute 686 // bits. 687 688 if (Opc == Instruction::And) { 689 unsigned BitWidth = DL.getTypeSizeInBits(Op0->getType()->getScalarType()); 690 APInt KnownZero0(BitWidth, 0), KnownOne0(BitWidth, 0); 691 APInt KnownZero1(BitWidth, 0), KnownOne1(BitWidth, 0); 692 computeKnownBits(Op0, KnownZero0, KnownOne0, DL); 693 computeKnownBits(Op1, KnownZero1, KnownOne1, DL); 694 if ((KnownOne1 | KnownZero0).isAllOnesValue()) { 695 // All the bits of Op0 that the 'and' could be masking are already zero. 696 return Op0; 697 } 698 if ((KnownOne0 | KnownZero1).isAllOnesValue()) { 699 // All the bits of Op1 that the 'and' could be masking are already zero. 700 return Op1; 701 } 702 703 APInt KnownZero = KnownZero0 | KnownZero1; 704 APInt KnownOne = KnownOne0 & KnownOne1; 705 if ((KnownZero | KnownOne).isAllOnesValue()) { 706 return ConstantInt::get(Op0->getType(), KnownOne); 707 } 708 } 709 710 // If the constant expr is something like &A[123] - &A[4].f, fold this into a 711 // constant. This happens frequently when iterating over a global array. 712 if (Opc == Instruction::Sub) { 713 GlobalValue *GV1, *GV2; 714 APInt Offs1, Offs2; 715 716 if (IsConstantOffsetFromGlobal(Op0, GV1, Offs1, DL)) 717 if (IsConstantOffsetFromGlobal(Op1, GV2, Offs2, DL) && GV1 == GV2) { 718 unsigned OpSize = DL.getTypeSizeInBits(Op0->getType()); 719 720 // (&GV+C1) - (&GV+C2) -> C1-C2, pointer arithmetic cannot overflow. 721 // PtrToInt may change the bitwidth so we have convert to the right size 722 // first. 723 return ConstantInt::get(Op0->getType(), Offs1.zextOrTrunc(OpSize) - 724 Offs2.zextOrTrunc(OpSize)); 725 } 726 } 727 728 return nullptr; 729 } 730 731 /// If array indices are not pointer-sized integers, explicitly cast them so 732 /// that they aren't implicitly casted by the getelementptr. 733 Constant *CastGEPIndices(Type *SrcElemTy, ArrayRef<Constant *> Ops, 734 Type *ResultTy, Optional<unsigned> InRangeIndex, 735 const DataLayout &DL, const TargetLibraryInfo *TLI) { 736 Type *IntPtrTy = DL.getIntPtrType(ResultTy); 737 Type *IntPtrScalarTy = IntPtrTy->getScalarType(); 738 739 bool Any = false; 740 SmallVector<Constant*, 32> NewIdxs; 741 for (unsigned i = 1, e = Ops.size(); i != e; ++i) { 742 if ((i == 1 || 743 !isa<StructType>(GetElementPtrInst::getIndexedType( 744 SrcElemTy, Ops.slice(1, i - 1)))) && 745 Ops[i]->getType()->getScalarType() != IntPtrScalarTy) { 746 Any = true; 747 Type *NewType = Ops[i]->getType()->isVectorTy() 748 ? IntPtrTy 749 : IntPtrTy->getScalarType(); 750 NewIdxs.push_back(ConstantExpr::getCast(CastInst::getCastOpcode(Ops[i], 751 true, 752 NewType, 753 true), 754 Ops[i], NewType)); 755 } else 756 NewIdxs.push_back(Ops[i]); 757 } 758 759 if (!Any) 760 return nullptr; 761 762 Constant *C = ConstantExpr::getGetElementPtr( 763 SrcElemTy, Ops[0], NewIdxs, /*InBounds=*/false, InRangeIndex); 764 if (Constant *Folded = ConstantFoldConstant(C, DL, TLI)) 765 C = Folded; 766 767 return C; 768 } 769 770 /// Strip the pointer casts, but preserve the address space information. 771 Constant* StripPtrCastKeepAS(Constant* Ptr, Type *&ElemTy) { 772 assert(Ptr->getType()->isPointerTy() && "Not a pointer type"); 773 auto *OldPtrTy = cast<PointerType>(Ptr->getType()); 774 Ptr = Ptr->stripPointerCasts(); 775 auto *NewPtrTy = cast<PointerType>(Ptr->getType()); 776 777 ElemTy = NewPtrTy->getPointerElementType(); 778 779 // Preserve the address space number of the pointer. 780 if (NewPtrTy->getAddressSpace() != OldPtrTy->getAddressSpace()) { 781 NewPtrTy = ElemTy->getPointerTo(OldPtrTy->getAddressSpace()); 782 Ptr = ConstantExpr::getPointerCast(Ptr, NewPtrTy); 783 } 784 return Ptr; 785 } 786 787 /// If we can symbolically evaluate the GEP constant expression, do so. 788 Constant *SymbolicallyEvaluateGEP(const GEPOperator *GEP, 789 ArrayRef<Constant *> Ops, 790 const DataLayout &DL, 791 const TargetLibraryInfo *TLI) { 792 const GEPOperator *InnermostGEP = GEP; 793 bool InBounds = GEP->isInBounds(); 794 795 Type *SrcElemTy = GEP->getSourceElementType(); 796 Type *ResElemTy = GEP->getResultElementType(); 797 Type *ResTy = GEP->getType(); 798 if (!SrcElemTy->isSized()) 799 return nullptr; 800 801 if (Constant *C = CastGEPIndices(SrcElemTy, Ops, ResTy, 802 GEP->getInRangeIndex(), DL, TLI)) 803 return C; 804 805 Constant *Ptr = Ops[0]; 806 if (!Ptr->getType()->isPointerTy()) 807 return nullptr; 808 809 Type *IntPtrTy = DL.getIntPtrType(Ptr->getType()); 810 811 // If this is a constant expr gep that is effectively computing an 812 // "offsetof", fold it into 'cast int Size to T*' instead of 'gep 0, 0, 12' 813 for (unsigned i = 1, e = Ops.size(); i != e; ++i) 814 if (!isa<ConstantInt>(Ops[i])) { 815 816 // If this is "gep i8* Ptr, (sub 0, V)", fold this as: 817 // "inttoptr (sub (ptrtoint Ptr), V)" 818 if (Ops.size() == 2 && ResElemTy->isIntegerTy(8)) { 819 auto *CE = dyn_cast<ConstantExpr>(Ops[1]); 820 assert((!CE || CE->getType() == IntPtrTy) && 821 "CastGEPIndices didn't canonicalize index types!"); 822 if (CE && CE->getOpcode() == Instruction::Sub && 823 CE->getOperand(0)->isNullValue()) { 824 Constant *Res = ConstantExpr::getPtrToInt(Ptr, CE->getType()); 825 Res = ConstantExpr::getSub(Res, CE->getOperand(1)); 826 Res = ConstantExpr::getIntToPtr(Res, ResTy); 827 if (auto *FoldedRes = ConstantFoldConstant(Res, DL, TLI)) 828 Res = FoldedRes; 829 return Res; 830 } 831 } 832 return nullptr; 833 } 834 835 unsigned BitWidth = DL.getTypeSizeInBits(IntPtrTy); 836 APInt Offset = 837 APInt(BitWidth, 838 DL.getIndexedOffsetInType( 839 SrcElemTy, 840 makeArrayRef((Value * const *)Ops.data() + 1, Ops.size() - 1))); 841 Ptr = StripPtrCastKeepAS(Ptr, SrcElemTy); 842 843 // If this is a GEP of a GEP, fold it all into a single GEP. 844 while (auto *GEP = dyn_cast<GEPOperator>(Ptr)) { 845 InnermostGEP = GEP; 846 InBounds &= GEP->isInBounds(); 847 848 SmallVector<Value *, 4> NestedOps(GEP->op_begin() + 1, GEP->op_end()); 849 850 // Do not try the incorporate the sub-GEP if some index is not a number. 851 bool AllConstantInt = true; 852 for (Value *NestedOp : NestedOps) 853 if (!isa<ConstantInt>(NestedOp)) { 854 AllConstantInt = false; 855 break; 856 } 857 if (!AllConstantInt) 858 break; 859 860 Ptr = cast<Constant>(GEP->getOperand(0)); 861 SrcElemTy = GEP->getSourceElementType(); 862 Offset += APInt(BitWidth, DL.getIndexedOffsetInType(SrcElemTy, NestedOps)); 863 Ptr = StripPtrCastKeepAS(Ptr, SrcElemTy); 864 } 865 866 // If the base value for this address is a literal integer value, fold the 867 // getelementptr to the resulting integer value casted to the pointer type. 868 APInt BasePtr(BitWidth, 0); 869 if (auto *CE = dyn_cast<ConstantExpr>(Ptr)) { 870 if (CE->getOpcode() == Instruction::IntToPtr) { 871 if (auto *Base = dyn_cast<ConstantInt>(CE->getOperand(0))) 872 BasePtr = Base->getValue().zextOrTrunc(BitWidth); 873 } 874 } 875 876 auto *PTy = cast<PointerType>(Ptr->getType()); 877 if ((Ptr->isNullValue() || BasePtr != 0) && 878 !DL.isNonIntegralPointerType(PTy)) { 879 Constant *C = ConstantInt::get(Ptr->getContext(), Offset + BasePtr); 880 return ConstantExpr::getIntToPtr(C, ResTy); 881 } 882 883 // Otherwise form a regular getelementptr. Recompute the indices so that 884 // we eliminate over-indexing of the notional static type array bounds. 885 // This makes it easy to determine if the getelementptr is "inbounds". 886 // Also, this helps GlobalOpt do SROA on GlobalVariables. 887 Type *Ty = PTy; 888 SmallVector<Constant *, 32> NewIdxs; 889 890 do { 891 if (!Ty->isStructTy()) { 892 if (Ty->isPointerTy()) { 893 // The only pointer indexing we'll do is on the first index of the GEP. 894 if (!NewIdxs.empty()) 895 break; 896 897 Ty = SrcElemTy; 898 899 // Only handle pointers to sized types, not pointers to functions. 900 if (!Ty->isSized()) 901 return nullptr; 902 } else if (auto *ATy = dyn_cast<SequentialType>(Ty)) { 903 Ty = ATy->getElementType(); 904 } else { 905 // We've reached some non-indexable type. 906 break; 907 } 908 909 // Determine which element of the array the offset points into. 910 APInt ElemSize(BitWidth, DL.getTypeAllocSize(Ty)); 911 if (ElemSize == 0) { 912 // The element size is 0. This may be [0 x Ty]*, so just use a zero 913 // index for this level and proceed to the next level to see if it can 914 // accommodate the offset. 915 NewIdxs.push_back(ConstantInt::get(IntPtrTy, 0)); 916 } else { 917 // The element size is non-zero divide the offset by the element 918 // size (rounding down), to compute the index at this level. 919 bool Overflow; 920 APInt NewIdx = Offset.sdiv_ov(ElemSize, Overflow); 921 if (Overflow) 922 break; 923 Offset -= NewIdx * ElemSize; 924 NewIdxs.push_back(ConstantInt::get(IntPtrTy, NewIdx)); 925 } 926 } else { 927 auto *STy = cast<StructType>(Ty); 928 // If we end up with an offset that isn't valid for this struct type, we 929 // can't re-form this GEP in a regular form, so bail out. The pointer 930 // operand likely went through casts that are necessary to make the GEP 931 // sensible. 932 const StructLayout &SL = *DL.getStructLayout(STy); 933 if (Offset.isNegative() || Offset.uge(SL.getSizeInBytes())) 934 break; 935 936 // Determine which field of the struct the offset points into. The 937 // getZExtValue is fine as we've already ensured that the offset is 938 // within the range representable by the StructLayout API. 939 unsigned ElIdx = SL.getElementContainingOffset(Offset.getZExtValue()); 940 NewIdxs.push_back(ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 941 ElIdx)); 942 Offset -= APInt(BitWidth, SL.getElementOffset(ElIdx)); 943 Ty = STy->getTypeAtIndex(ElIdx); 944 } 945 } while (Ty != ResElemTy); 946 947 // If we haven't used up the entire offset by descending the static 948 // type, then the offset is pointing into the middle of an indivisible 949 // member, so we can't simplify it. 950 if (Offset != 0) 951 return nullptr; 952 953 // Preserve the inrange index from the innermost GEP if possible. We must 954 // have calculated the same indices up to and including the inrange index. 955 Optional<unsigned> InRangeIndex; 956 if (Optional<unsigned> LastIRIndex = InnermostGEP->getInRangeIndex()) 957 if (SrcElemTy == InnermostGEP->getSourceElementType() && 958 NewIdxs.size() > *LastIRIndex) { 959 InRangeIndex = LastIRIndex; 960 for (unsigned I = 0; I <= *LastIRIndex; ++I) 961 if (NewIdxs[I] != InnermostGEP->getOperand(I + 1)) { 962 InRangeIndex = None; 963 break; 964 } 965 } 966 967 // Create a GEP. 968 Constant *C = ConstantExpr::getGetElementPtr(SrcElemTy, Ptr, NewIdxs, 969 InBounds, InRangeIndex); 970 assert(C->getType()->getPointerElementType() == Ty && 971 "Computed GetElementPtr has unexpected type!"); 972 973 // If we ended up indexing a member with a type that doesn't match 974 // the type of what the original indices indexed, add a cast. 975 if (Ty != ResElemTy) 976 C = FoldBitCast(C, ResTy, DL); 977 978 return C; 979 } 980 981 /// Attempt to constant fold an instruction with the 982 /// specified opcode and operands. If successful, the constant result is 983 /// returned, if not, null is returned. Note that this function can fail when 984 /// attempting to fold instructions like loads and stores, which have no 985 /// constant expression form. 986 /// 987 /// TODO: This function neither utilizes nor preserves nsw/nuw/inbounds/inrange 988 /// etc information, due to only being passed an opcode and operands. Constant 989 /// folding using this function strips this information. 990 /// 991 Constant *ConstantFoldInstOperandsImpl(const Value *InstOrCE, unsigned Opcode, 992 ArrayRef<Constant *> Ops, 993 const DataLayout &DL, 994 const TargetLibraryInfo *TLI) { 995 Type *DestTy = InstOrCE->getType(); 996 997 // Handle easy binops first. 998 if (Instruction::isBinaryOp(Opcode)) 999 return ConstantFoldBinaryOpOperands(Opcode, Ops[0], Ops[1], DL); 1000 1001 if (Instruction::isCast(Opcode)) 1002 return ConstantFoldCastOperand(Opcode, Ops[0], DestTy, DL); 1003 1004 if (auto *GEP = dyn_cast<GEPOperator>(InstOrCE)) { 1005 if (Constant *C = SymbolicallyEvaluateGEP(GEP, Ops, DL, TLI)) 1006 return C; 1007 1008 return ConstantExpr::getGetElementPtr(GEP->getSourceElementType(), Ops[0], 1009 Ops.slice(1), GEP->isInBounds(), 1010 GEP->getInRangeIndex()); 1011 } 1012 1013 if (auto *CE = dyn_cast<ConstantExpr>(InstOrCE)) 1014 return CE->getWithOperands(Ops); 1015 1016 switch (Opcode) { 1017 default: return nullptr; 1018 case Instruction::ICmp: 1019 case Instruction::FCmp: llvm_unreachable("Invalid for compares"); 1020 case Instruction::Call: 1021 if (auto *F = dyn_cast<Function>(Ops.back())) 1022 if (canConstantFoldCallTo(F)) 1023 return ConstantFoldCall(F, Ops.slice(0, Ops.size() - 1), TLI); 1024 return nullptr; 1025 case Instruction::Select: 1026 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]); 1027 case Instruction::ExtractElement: 1028 return ConstantExpr::getExtractElement(Ops[0], Ops[1]); 1029 case Instruction::InsertElement: 1030 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]); 1031 case Instruction::ShuffleVector: 1032 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]); 1033 } 1034 } 1035 1036 } // end anonymous namespace 1037 1038 //===----------------------------------------------------------------------===// 1039 // Constant Folding public APIs 1040 //===----------------------------------------------------------------------===// 1041 1042 namespace { 1043 1044 Constant * 1045 ConstantFoldConstantImpl(const Constant *C, const DataLayout &DL, 1046 const TargetLibraryInfo *TLI, 1047 SmallDenseMap<Constant *, Constant *> &FoldedOps) { 1048 if (!isa<ConstantVector>(C) && !isa<ConstantExpr>(C)) 1049 return nullptr; 1050 1051 SmallVector<Constant *, 8> Ops; 1052 for (const Use &NewU : C->operands()) { 1053 auto *NewC = cast<Constant>(&NewU); 1054 // Recursively fold the ConstantExpr's operands. If we have already folded 1055 // a ConstantExpr, we don't have to process it again. 1056 if (isa<ConstantVector>(NewC) || isa<ConstantExpr>(NewC)) { 1057 auto It = FoldedOps.find(NewC); 1058 if (It == FoldedOps.end()) { 1059 if (auto *FoldedC = 1060 ConstantFoldConstantImpl(NewC, DL, TLI, FoldedOps)) { 1061 NewC = FoldedC; 1062 FoldedOps.insert({NewC, FoldedC}); 1063 } else { 1064 FoldedOps.insert({NewC, NewC}); 1065 } 1066 } else { 1067 NewC = It->second; 1068 } 1069 } 1070 Ops.push_back(NewC); 1071 } 1072 1073 if (auto *CE = dyn_cast<ConstantExpr>(C)) { 1074 if (CE->isCompare()) 1075 return ConstantFoldCompareInstOperands(CE->getPredicate(), Ops[0], Ops[1], 1076 DL, TLI); 1077 1078 return ConstantFoldInstOperandsImpl(CE, CE->getOpcode(), Ops, DL, TLI); 1079 } 1080 1081 assert(isa<ConstantVector>(C)); 1082 return ConstantVector::get(Ops); 1083 } 1084 1085 } // end anonymous namespace 1086 1087 Constant *llvm::ConstantFoldInstruction(Instruction *I, const DataLayout &DL, 1088 const TargetLibraryInfo *TLI) { 1089 // Handle PHI nodes quickly here... 1090 if (auto *PN = dyn_cast<PHINode>(I)) { 1091 Constant *CommonValue = nullptr; 1092 1093 SmallDenseMap<Constant *, Constant *> FoldedOps; 1094 for (Value *Incoming : PN->incoming_values()) { 1095 // If the incoming value is undef then skip it. Note that while we could 1096 // skip the value if it is equal to the phi node itself we choose not to 1097 // because that would break the rule that constant folding only applies if 1098 // all operands are constants. 1099 if (isa<UndefValue>(Incoming)) 1100 continue; 1101 // If the incoming value is not a constant, then give up. 1102 auto *C = dyn_cast<Constant>(Incoming); 1103 if (!C) 1104 return nullptr; 1105 // Fold the PHI's operands. 1106 if (auto *FoldedC = ConstantFoldConstantImpl(C, DL, TLI, FoldedOps)) 1107 C = FoldedC; 1108 // If the incoming value is a different constant to 1109 // the one we saw previously, then give up. 1110 if (CommonValue && C != CommonValue) 1111 return nullptr; 1112 CommonValue = C; 1113 } 1114 1115 // If we reach here, all incoming values are the same constant or undef. 1116 return CommonValue ? CommonValue : UndefValue::get(PN->getType()); 1117 } 1118 1119 // Scan the operand list, checking to see if they are all constants, if so, 1120 // hand off to ConstantFoldInstOperandsImpl. 1121 if (!all_of(I->operands(), [](Use &U) { return isa<Constant>(U); })) 1122 return nullptr; 1123 1124 SmallDenseMap<Constant *, Constant *> FoldedOps; 1125 SmallVector<Constant *, 8> Ops; 1126 for (const Use &OpU : I->operands()) { 1127 auto *Op = cast<Constant>(&OpU); 1128 // Fold the Instruction's operands. 1129 if (auto *FoldedOp = ConstantFoldConstantImpl(Op, DL, TLI, FoldedOps)) 1130 Op = FoldedOp; 1131 1132 Ops.push_back(Op); 1133 } 1134 1135 if (const auto *CI = dyn_cast<CmpInst>(I)) 1136 return ConstantFoldCompareInstOperands(CI->getPredicate(), Ops[0], Ops[1], 1137 DL, TLI); 1138 1139 if (const auto *LI = dyn_cast<LoadInst>(I)) 1140 return ConstantFoldLoadInst(LI, DL); 1141 1142 if (auto *IVI = dyn_cast<InsertValueInst>(I)) { 1143 return ConstantExpr::getInsertValue( 1144 cast<Constant>(IVI->getAggregateOperand()), 1145 cast<Constant>(IVI->getInsertedValueOperand()), 1146 IVI->getIndices()); 1147 } 1148 1149 if (auto *EVI = dyn_cast<ExtractValueInst>(I)) { 1150 return ConstantExpr::getExtractValue( 1151 cast<Constant>(EVI->getAggregateOperand()), 1152 EVI->getIndices()); 1153 } 1154 1155 return ConstantFoldInstOperands(I, Ops, DL, TLI); 1156 } 1157 1158 Constant *llvm::ConstantFoldConstant(const Constant *C, const DataLayout &DL, 1159 const TargetLibraryInfo *TLI) { 1160 SmallDenseMap<Constant *, Constant *> FoldedOps; 1161 return ConstantFoldConstantImpl(C, DL, TLI, FoldedOps); 1162 } 1163 1164 Constant *llvm::ConstantFoldInstOperands(Instruction *I, 1165 ArrayRef<Constant *> Ops, 1166 const DataLayout &DL, 1167 const TargetLibraryInfo *TLI) { 1168 return ConstantFoldInstOperandsImpl(I, I->getOpcode(), Ops, DL, TLI); 1169 } 1170 1171 Constant *llvm::ConstantFoldCompareInstOperands(unsigned Predicate, 1172 Constant *Ops0, Constant *Ops1, 1173 const DataLayout &DL, 1174 const TargetLibraryInfo *TLI) { 1175 // fold: icmp (inttoptr x), null -> icmp x, 0 1176 // fold: icmp (ptrtoint x), 0 -> icmp x, null 1177 // fold: icmp (inttoptr x), (inttoptr y) -> icmp trunc/zext x, trunc/zext y 1178 // fold: icmp (ptrtoint x), (ptrtoint y) -> icmp x, y 1179 // 1180 // FIXME: The following comment is out of data and the DataLayout is here now. 1181 // ConstantExpr::getCompare cannot do this, because it doesn't have DL 1182 // around to know if bit truncation is happening. 1183 if (auto *CE0 = dyn_cast<ConstantExpr>(Ops0)) { 1184 if (Ops1->isNullValue()) { 1185 if (CE0->getOpcode() == Instruction::IntToPtr) { 1186 Type *IntPtrTy = DL.getIntPtrType(CE0->getType()); 1187 // Convert the integer value to the right size to ensure we get the 1188 // proper extension or truncation. 1189 Constant *C = ConstantExpr::getIntegerCast(CE0->getOperand(0), 1190 IntPtrTy, false); 1191 Constant *Null = Constant::getNullValue(C->getType()); 1192 return ConstantFoldCompareInstOperands(Predicate, C, Null, DL, TLI); 1193 } 1194 1195 // Only do this transformation if the int is intptrty in size, otherwise 1196 // there is a truncation or extension that we aren't modeling. 1197 if (CE0->getOpcode() == Instruction::PtrToInt) { 1198 Type *IntPtrTy = DL.getIntPtrType(CE0->getOperand(0)->getType()); 1199 if (CE0->getType() == IntPtrTy) { 1200 Constant *C = CE0->getOperand(0); 1201 Constant *Null = Constant::getNullValue(C->getType()); 1202 return ConstantFoldCompareInstOperands(Predicate, C, Null, DL, TLI); 1203 } 1204 } 1205 } 1206 1207 if (auto *CE1 = dyn_cast<ConstantExpr>(Ops1)) { 1208 if (CE0->getOpcode() == CE1->getOpcode()) { 1209 if (CE0->getOpcode() == Instruction::IntToPtr) { 1210 Type *IntPtrTy = DL.getIntPtrType(CE0->getType()); 1211 1212 // Convert the integer value to the right size to ensure we get the 1213 // proper extension or truncation. 1214 Constant *C0 = ConstantExpr::getIntegerCast(CE0->getOperand(0), 1215 IntPtrTy, false); 1216 Constant *C1 = ConstantExpr::getIntegerCast(CE1->getOperand(0), 1217 IntPtrTy, false); 1218 return ConstantFoldCompareInstOperands(Predicate, C0, C1, DL, TLI); 1219 } 1220 1221 // Only do this transformation if the int is intptrty in size, otherwise 1222 // there is a truncation or extension that we aren't modeling. 1223 if (CE0->getOpcode() == Instruction::PtrToInt) { 1224 Type *IntPtrTy = DL.getIntPtrType(CE0->getOperand(0)->getType()); 1225 if (CE0->getType() == IntPtrTy && 1226 CE0->getOperand(0)->getType() == CE1->getOperand(0)->getType()) { 1227 return ConstantFoldCompareInstOperands( 1228 Predicate, CE0->getOperand(0), CE1->getOperand(0), DL, TLI); 1229 } 1230 } 1231 } 1232 } 1233 1234 // icmp eq (or x, y), 0 -> (icmp eq x, 0) & (icmp eq y, 0) 1235 // icmp ne (or x, y), 0 -> (icmp ne x, 0) | (icmp ne y, 0) 1236 if ((Predicate == ICmpInst::ICMP_EQ || Predicate == ICmpInst::ICMP_NE) && 1237 CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) { 1238 Constant *LHS = ConstantFoldCompareInstOperands( 1239 Predicate, CE0->getOperand(0), Ops1, DL, TLI); 1240 Constant *RHS = ConstantFoldCompareInstOperands( 1241 Predicate, CE0->getOperand(1), Ops1, DL, TLI); 1242 unsigned OpC = 1243 Predicate == ICmpInst::ICMP_EQ ? Instruction::And : Instruction::Or; 1244 return ConstantFoldBinaryOpOperands(OpC, LHS, RHS, DL); 1245 } 1246 } 1247 1248 return ConstantExpr::getCompare(Predicate, Ops0, Ops1); 1249 } 1250 1251 Constant *llvm::ConstantFoldBinaryOpOperands(unsigned Opcode, Constant *LHS, 1252 Constant *RHS, 1253 const DataLayout &DL) { 1254 assert(Instruction::isBinaryOp(Opcode)); 1255 if (isa<ConstantExpr>(LHS) || isa<ConstantExpr>(RHS)) 1256 if (Constant *C = SymbolicallyEvaluateBinop(Opcode, LHS, RHS, DL)) 1257 return C; 1258 1259 return ConstantExpr::get(Opcode, LHS, RHS); 1260 } 1261 1262 Constant *llvm::ConstantFoldCastOperand(unsigned Opcode, Constant *C, 1263 Type *DestTy, const DataLayout &DL) { 1264 assert(Instruction::isCast(Opcode)); 1265 switch (Opcode) { 1266 default: 1267 llvm_unreachable("Missing case"); 1268 case Instruction::PtrToInt: 1269 // If the input is a inttoptr, eliminate the pair. This requires knowing 1270 // the width of a pointer, so it can't be done in ConstantExpr::getCast. 1271 if (auto *CE = dyn_cast<ConstantExpr>(C)) { 1272 if (CE->getOpcode() == Instruction::IntToPtr) { 1273 Constant *Input = CE->getOperand(0); 1274 unsigned InWidth = Input->getType()->getScalarSizeInBits(); 1275 unsigned PtrWidth = DL.getPointerTypeSizeInBits(CE->getType()); 1276 if (PtrWidth < InWidth) { 1277 Constant *Mask = 1278 ConstantInt::get(CE->getContext(), 1279 APInt::getLowBitsSet(InWidth, PtrWidth)); 1280 Input = ConstantExpr::getAnd(Input, Mask); 1281 } 1282 // Do a zext or trunc to get to the dest size. 1283 return ConstantExpr::getIntegerCast(Input, DestTy, false); 1284 } 1285 } 1286 return ConstantExpr::getCast(Opcode, C, DestTy); 1287 case Instruction::IntToPtr: 1288 // If the input is a ptrtoint, turn the pair into a ptr to ptr bitcast if 1289 // the int size is >= the ptr size and the address spaces are the same. 1290 // This requires knowing the width of a pointer, so it can't be done in 1291 // ConstantExpr::getCast. 1292 if (auto *CE = dyn_cast<ConstantExpr>(C)) { 1293 if (CE->getOpcode() == Instruction::PtrToInt) { 1294 Constant *SrcPtr = CE->getOperand(0); 1295 unsigned SrcPtrSize = DL.getPointerTypeSizeInBits(SrcPtr->getType()); 1296 unsigned MidIntSize = CE->getType()->getScalarSizeInBits(); 1297 1298 if (MidIntSize >= SrcPtrSize) { 1299 unsigned SrcAS = SrcPtr->getType()->getPointerAddressSpace(); 1300 if (SrcAS == DestTy->getPointerAddressSpace()) 1301 return FoldBitCast(CE->getOperand(0), DestTy, DL); 1302 } 1303 } 1304 } 1305 1306 return ConstantExpr::getCast(Opcode, C, DestTy); 1307 case Instruction::Trunc: 1308 case Instruction::ZExt: 1309 case Instruction::SExt: 1310 case Instruction::FPTrunc: 1311 case Instruction::FPExt: 1312 case Instruction::UIToFP: 1313 case Instruction::SIToFP: 1314 case Instruction::FPToUI: 1315 case Instruction::FPToSI: 1316 case Instruction::AddrSpaceCast: 1317 return ConstantExpr::getCast(Opcode, C, DestTy); 1318 case Instruction::BitCast: 1319 return FoldBitCast(C, DestTy, DL); 1320 } 1321 } 1322 1323 Constant *llvm::ConstantFoldLoadThroughGEPConstantExpr(Constant *C, 1324 ConstantExpr *CE) { 1325 if (!CE->getOperand(1)->isNullValue()) 1326 return nullptr; // Do not allow stepping over the value! 1327 1328 // Loop over all of the operands, tracking down which value we are 1329 // addressing. 1330 for (unsigned i = 2, e = CE->getNumOperands(); i != e; ++i) { 1331 C = C->getAggregateElement(CE->getOperand(i)); 1332 if (!C) 1333 return nullptr; 1334 } 1335 return C; 1336 } 1337 1338 Constant * 1339 llvm::ConstantFoldLoadThroughGEPIndices(Constant *C, 1340 ArrayRef<Constant *> Indices) { 1341 // Loop over all of the operands, tracking down which value we are 1342 // addressing. 1343 for (Constant *Index : Indices) { 1344 C = C->getAggregateElement(Index); 1345 if (!C) 1346 return nullptr; 1347 } 1348 return C; 1349 } 1350 1351 //===----------------------------------------------------------------------===// 1352 // Constant Folding for Calls 1353 // 1354 1355 bool llvm::canConstantFoldCallTo(const Function *F) { 1356 switch (F->getIntrinsicID()) { 1357 case Intrinsic::fabs: 1358 case Intrinsic::minnum: 1359 case Intrinsic::maxnum: 1360 case Intrinsic::log: 1361 case Intrinsic::log2: 1362 case Intrinsic::log10: 1363 case Intrinsic::exp: 1364 case Intrinsic::exp2: 1365 case Intrinsic::floor: 1366 case Intrinsic::ceil: 1367 case Intrinsic::sqrt: 1368 case Intrinsic::sin: 1369 case Intrinsic::cos: 1370 case Intrinsic::trunc: 1371 case Intrinsic::rint: 1372 case Intrinsic::nearbyint: 1373 case Intrinsic::pow: 1374 case Intrinsic::powi: 1375 case Intrinsic::bswap: 1376 case Intrinsic::ctpop: 1377 case Intrinsic::ctlz: 1378 case Intrinsic::cttz: 1379 case Intrinsic::fma: 1380 case Intrinsic::fmuladd: 1381 case Intrinsic::copysign: 1382 case Intrinsic::round: 1383 case Intrinsic::masked_load: 1384 case Intrinsic::sadd_with_overflow: 1385 case Intrinsic::uadd_with_overflow: 1386 case Intrinsic::ssub_with_overflow: 1387 case Intrinsic::usub_with_overflow: 1388 case Intrinsic::smul_with_overflow: 1389 case Intrinsic::umul_with_overflow: 1390 case Intrinsic::convert_from_fp16: 1391 case Intrinsic::convert_to_fp16: 1392 case Intrinsic::bitreverse: 1393 case Intrinsic::x86_sse_cvtss2si: 1394 case Intrinsic::x86_sse_cvtss2si64: 1395 case Intrinsic::x86_sse_cvttss2si: 1396 case Intrinsic::x86_sse_cvttss2si64: 1397 case Intrinsic::x86_sse2_cvtsd2si: 1398 case Intrinsic::x86_sse2_cvtsd2si64: 1399 case Intrinsic::x86_sse2_cvttsd2si: 1400 case Intrinsic::x86_sse2_cvttsd2si64: 1401 return true; 1402 default: 1403 return false; 1404 case 0: break; 1405 } 1406 1407 if (!F->hasName()) 1408 return false; 1409 StringRef Name = F->getName(); 1410 1411 // In these cases, the check of the length is required. We don't want to 1412 // return true for a name like "cos\0blah" which strcmp would return equal to 1413 // "cos", but has length 8. 1414 switch (Name[0]) { 1415 default: 1416 return false; 1417 case 'a': 1418 return Name == "acos" || Name == "asin" || Name == "atan" || 1419 Name == "atan2" || Name == "acosf" || Name == "asinf" || 1420 Name == "atanf" || Name == "atan2f"; 1421 case 'c': 1422 return Name == "ceil" || Name == "cos" || Name == "cosh" || 1423 Name == "ceilf" || Name == "cosf" || Name == "coshf"; 1424 case 'e': 1425 return Name == "exp" || Name == "exp2" || Name == "expf" || Name == "exp2f"; 1426 case 'f': 1427 return Name == "fabs" || Name == "floor" || Name == "fmod" || 1428 Name == "fabsf" || Name == "floorf" || Name == "fmodf"; 1429 case 'l': 1430 return Name == "log" || Name == "log10" || Name == "logf" || 1431 Name == "log10f"; 1432 case 'p': 1433 return Name == "pow" || Name == "powf"; 1434 case 's': 1435 return Name == "sin" || Name == "sinh" || Name == "sqrt" || 1436 Name == "sinf" || Name == "sinhf" || Name == "sqrtf"; 1437 case 't': 1438 return Name == "tan" || Name == "tanh" || Name == "tanf" || Name == "tanhf"; 1439 } 1440 } 1441 1442 namespace { 1443 1444 Constant *GetConstantFoldFPValue(double V, Type *Ty) { 1445 if (Ty->isHalfTy()) { 1446 APFloat APF(V); 1447 bool unused; 1448 APF.convert(APFloat::IEEEhalf(), APFloat::rmNearestTiesToEven, &unused); 1449 return ConstantFP::get(Ty->getContext(), APF); 1450 } 1451 if (Ty->isFloatTy()) 1452 return ConstantFP::get(Ty->getContext(), APFloat((float)V)); 1453 if (Ty->isDoubleTy()) 1454 return ConstantFP::get(Ty->getContext(), APFloat(V)); 1455 llvm_unreachable("Can only constant fold half/float/double"); 1456 } 1457 1458 /// Clear the floating-point exception state. 1459 inline void llvm_fenv_clearexcept() { 1460 #if defined(HAVE_FENV_H) && HAVE_DECL_FE_ALL_EXCEPT 1461 feclearexcept(FE_ALL_EXCEPT); 1462 #endif 1463 errno = 0; 1464 } 1465 1466 /// Test if a floating-point exception was raised. 1467 inline bool llvm_fenv_testexcept() { 1468 int errno_val = errno; 1469 if (errno_val == ERANGE || errno_val == EDOM) 1470 return true; 1471 #if defined(HAVE_FENV_H) && HAVE_DECL_FE_ALL_EXCEPT && HAVE_DECL_FE_INEXACT 1472 if (fetestexcept(FE_ALL_EXCEPT & ~FE_INEXACT)) 1473 return true; 1474 #endif 1475 return false; 1476 } 1477 1478 Constant *ConstantFoldFP(double (*NativeFP)(double), double V, Type *Ty) { 1479 llvm_fenv_clearexcept(); 1480 V = NativeFP(V); 1481 if (llvm_fenv_testexcept()) { 1482 llvm_fenv_clearexcept(); 1483 return nullptr; 1484 } 1485 1486 return GetConstantFoldFPValue(V, Ty); 1487 } 1488 1489 Constant *ConstantFoldBinaryFP(double (*NativeFP)(double, double), double V, 1490 double W, Type *Ty) { 1491 llvm_fenv_clearexcept(); 1492 V = NativeFP(V, W); 1493 if (llvm_fenv_testexcept()) { 1494 llvm_fenv_clearexcept(); 1495 return nullptr; 1496 } 1497 1498 return GetConstantFoldFPValue(V, Ty); 1499 } 1500 1501 /// Attempt to fold an SSE floating point to integer conversion of a constant 1502 /// floating point. If roundTowardZero is false, the default IEEE rounding is 1503 /// used (toward nearest, ties to even). This matches the behavior of the 1504 /// non-truncating SSE instructions in the default rounding mode. The desired 1505 /// integer type Ty is used to select how many bits are available for the 1506 /// result. Returns null if the conversion cannot be performed, otherwise 1507 /// returns the Constant value resulting from the conversion. 1508 Constant *ConstantFoldSSEConvertToInt(const APFloat &Val, bool roundTowardZero, 1509 Type *Ty) { 1510 // All of these conversion intrinsics form an integer of at most 64bits. 1511 unsigned ResultWidth = Ty->getIntegerBitWidth(); 1512 assert(ResultWidth <= 64 && 1513 "Can only constant fold conversions to 64 and 32 bit ints"); 1514 1515 uint64_t UIntVal; 1516 bool isExact = false; 1517 APFloat::roundingMode mode = roundTowardZero? APFloat::rmTowardZero 1518 : APFloat::rmNearestTiesToEven; 1519 APFloat::opStatus status = Val.convertToInteger(&UIntVal, ResultWidth, 1520 /*isSigned=*/true, mode, 1521 &isExact); 1522 if (status != APFloat::opOK && 1523 (!roundTowardZero || status != APFloat::opInexact)) 1524 return nullptr; 1525 return ConstantInt::get(Ty, UIntVal, /*isSigned=*/true); 1526 } 1527 1528 double getValueAsDouble(ConstantFP *Op) { 1529 Type *Ty = Op->getType(); 1530 1531 if (Ty->isFloatTy()) 1532 return Op->getValueAPF().convertToFloat(); 1533 1534 if (Ty->isDoubleTy()) 1535 return Op->getValueAPF().convertToDouble(); 1536 1537 bool unused; 1538 APFloat APF = Op->getValueAPF(); 1539 APF.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, &unused); 1540 return APF.convertToDouble(); 1541 } 1542 1543 Constant *ConstantFoldScalarCall(StringRef Name, unsigned IntrinsicID, Type *Ty, 1544 ArrayRef<Constant *> Operands, 1545 const TargetLibraryInfo *TLI) { 1546 if (Operands.size() == 1) { 1547 if (isa<UndefValue>(Operands[0])) { 1548 // cosine(arg) is between -1 and 1. cosine(invalid arg) is NaN 1549 if (IntrinsicID == Intrinsic::cos) 1550 return Constant::getNullValue(Ty); 1551 } 1552 if (auto *Op = dyn_cast<ConstantFP>(Operands[0])) { 1553 if (IntrinsicID == Intrinsic::convert_to_fp16) { 1554 APFloat Val(Op->getValueAPF()); 1555 1556 bool lost = false; 1557 Val.convert(APFloat::IEEEhalf(), APFloat::rmNearestTiesToEven, &lost); 1558 1559 return ConstantInt::get(Ty->getContext(), Val.bitcastToAPInt()); 1560 } 1561 1562 if (!Ty->isHalfTy() && !Ty->isFloatTy() && !Ty->isDoubleTy()) 1563 return nullptr; 1564 1565 if (IntrinsicID == Intrinsic::round) { 1566 APFloat V = Op->getValueAPF(); 1567 V.roundToIntegral(APFloat::rmNearestTiesToAway); 1568 return ConstantFP::get(Ty->getContext(), V); 1569 } 1570 1571 if (IntrinsicID == Intrinsic::floor) { 1572 APFloat V = Op->getValueAPF(); 1573 V.roundToIntegral(APFloat::rmTowardNegative); 1574 return ConstantFP::get(Ty->getContext(), V); 1575 } 1576 1577 if (IntrinsicID == Intrinsic::ceil) { 1578 APFloat V = Op->getValueAPF(); 1579 V.roundToIntegral(APFloat::rmTowardPositive); 1580 return ConstantFP::get(Ty->getContext(), V); 1581 } 1582 1583 if (IntrinsicID == Intrinsic::trunc) { 1584 APFloat V = Op->getValueAPF(); 1585 V.roundToIntegral(APFloat::rmTowardZero); 1586 return ConstantFP::get(Ty->getContext(), V); 1587 } 1588 1589 if (IntrinsicID == Intrinsic::rint) { 1590 APFloat V = Op->getValueAPF(); 1591 V.roundToIntegral(APFloat::rmNearestTiesToEven); 1592 return ConstantFP::get(Ty->getContext(), V); 1593 } 1594 1595 if (IntrinsicID == Intrinsic::nearbyint) { 1596 APFloat V = Op->getValueAPF(); 1597 V.roundToIntegral(APFloat::rmNearestTiesToEven); 1598 return ConstantFP::get(Ty->getContext(), V); 1599 } 1600 1601 /// We only fold functions with finite arguments. Folding NaN and inf is 1602 /// likely to be aborted with an exception anyway, and some host libms 1603 /// have known errors raising exceptions. 1604 if (Op->getValueAPF().isNaN() || Op->getValueAPF().isInfinity()) 1605 return nullptr; 1606 1607 /// Currently APFloat versions of these functions do not exist, so we use 1608 /// the host native double versions. Float versions are not called 1609 /// directly but for all these it is true (float)(f((double)arg)) == 1610 /// f(arg). Long double not supported yet. 1611 double V = getValueAsDouble(Op); 1612 1613 switch (IntrinsicID) { 1614 default: break; 1615 case Intrinsic::fabs: 1616 return ConstantFoldFP(fabs, V, Ty); 1617 case Intrinsic::log2: 1618 return ConstantFoldFP(Log2, V, Ty); 1619 case Intrinsic::log: 1620 return ConstantFoldFP(log, V, Ty); 1621 case Intrinsic::log10: 1622 return ConstantFoldFP(log10, V, Ty); 1623 case Intrinsic::exp: 1624 return ConstantFoldFP(exp, V, Ty); 1625 case Intrinsic::exp2: 1626 return ConstantFoldFP(exp2, V, Ty); 1627 case Intrinsic::sin: 1628 return ConstantFoldFP(sin, V, Ty); 1629 case Intrinsic::cos: 1630 return ConstantFoldFP(cos, V, Ty); 1631 } 1632 1633 if (!TLI) 1634 return nullptr; 1635 1636 switch (Name[0]) { 1637 case 'a': 1638 if ((Name == "acos" && TLI->has(LibFunc::acos)) || 1639 (Name == "acosf" && TLI->has(LibFunc::acosf))) 1640 return ConstantFoldFP(acos, V, Ty); 1641 else if ((Name == "asin" && TLI->has(LibFunc::asin)) || 1642 (Name == "asinf" && TLI->has(LibFunc::asinf))) 1643 return ConstantFoldFP(asin, V, Ty); 1644 else if ((Name == "atan" && TLI->has(LibFunc::atan)) || 1645 (Name == "atanf" && TLI->has(LibFunc::atanf))) 1646 return ConstantFoldFP(atan, V, Ty); 1647 break; 1648 case 'c': 1649 if ((Name == "ceil" && TLI->has(LibFunc::ceil)) || 1650 (Name == "ceilf" && TLI->has(LibFunc::ceilf))) 1651 return ConstantFoldFP(ceil, V, Ty); 1652 else if ((Name == "cos" && TLI->has(LibFunc::cos)) || 1653 (Name == "cosf" && TLI->has(LibFunc::cosf))) 1654 return ConstantFoldFP(cos, V, Ty); 1655 else if ((Name == "cosh" && TLI->has(LibFunc::cosh)) || 1656 (Name == "coshf" && TLI->has(LibFunc::coshf))) 1657 return ConstantFoldFP(cosh, V, Ty); 1658 break; 1659 case 'e': 1660 if ((Name == "exp" && TLI->has(LibFunc::exp)) || 1661 (Name == "expf" && TLI->has(LibFunc::expf))) 1662 return ConstantFoldFP(exp, V, Ty); 1663 if ((Name == "exp2" && TLI->has(LibFunc::exp2)) || 1664 (Name == "exp2f" && TLI->has(LibFunc::exp2f))) 1665 // Constant fold exp2(x) as pow(2,x) in case the host doesn't have a 1666 // C99 library. 1667 return ConstantFoldBinaryFP(pow, 2.0, V, Ty); 1668 break; 1669 case 'f': 1670 if ((Name == "fabs" && TLI->has(LibFunc::fabs)) || 1671 (Name == "fabsf" && TLI->has(LibFunc::fabsf))) 1672 return ConstantFoldFP(fabs, V, Ty); 1673 else if ((Name == "floor" && TLI->has(LibFunc::floor)) || 1674 (Name == "floorf" && TLI->has(LibFunc::floorf))) 1675 return ConstantFoldFP(floor, V, Ty); 1676 break; 1677 case 'l': 1678 if ((Name == "log" && V > 0 && TLI->has(LibFunc::log)) || 1679 (Name == "logf" && V > 0 && TLI->has(LibFunc::logf))) 1680 return ConstantFoldFP(log, V, Ty); 1681 else if ((Name == "log10" && V > 0 && TLI->has(LibFunc::log10)) || 1682 (Name == "log10f" && V > 0 && TLI->has(LibFunc::log10f))) 1683 return ConstantFoldFP(log10, V, Ty); 1684 else if (IntrinsicID == Intrinsic::sqrt && 1685 (Ty->isHalfTy() || Ty->isFloatTy() || Ty->isDoubleTy())) { 1686 if (V >= -0.0) 1687 return ConstantFoldFP(sqrt, V, Ty); 1688 else { 1689 // Unlike the sqrt definitions in C/C++, POSIX, and IEEE-754 - which 1690 // all guarantee or favor returning NaN - the square root of a 1691 // negative number is not defined for the LLVM sqrt intrinsic. 1692 // This is because the intrinsic should only be emitted in place of 1693 // libm's sqrt function when using "no-nans-fp-math". 1694 return UndefValue::get(Ty); 1695 } 1696 } 1697 break; 1698 case 's': 1699 if ((Name == "sin" && TLI->has(LibFunc::sin)) || 1700 (Name == "sinf" && TLI->has(LibFunc::sinf))) 1701 return ConstantFoldFP(sin, V, Ty); 1702 else if ((Name == "sinh" && TLI->has(LibFunc::sinh)) || 1703 (Name == "sinhf" && TLI->has(LibFunc::sinhf))) 1704 return ConstantFoldFP(sinh, V, Ty); 1705 else if ((Name == "sqrt" && V >= 0 && TLI->has(LibFunc::sqrt)) || 1706 (Name == "sqrtf" && V >= 0 && TLI->has(LibFunc::sqrtf))) 1707 return ConstantFoldFP(sqrt, V, Ty); 1708 break; 1709 case 't': 1710 if ((Name == "tan" && TLI->has(LibFunc::tan)) || 1711 (Name == "tanf" && TLI->has(LibFunc::tanf))) 1712 return ConstantFoldFP(tan, V, Ty); 1713 else if ((Name == "tanh" && TLI->has(LibFunc::tanh)) || 1714 (Name == "tanhf" && TLI->has(LibFunc::tanhf))) 1715 return ConstantFoldFP(tanh, V, Ty); 1716 break; 1717 default: 1718 break; 1719 } 1720 return nullptr; 1721 } 1722 1723 if (auto *Op = dyn_cast<ConstantInt>(Operands[0])) { 1724 switch (IntrinsicID) { 1725 case Intrinsic::bswap: 1726 return ConstantInt::get(Ty->getContext(), Op->getValue().byteSwap()); 1727 case Intrinsic::ctpop: 1728 return ConstantInt::get(Ty, Op->getValue().countPopulation()); 1729 case Intrinsic::bitreverse: 1730 return ConstantInt::get(Ty->getContext(), Op->getValue().reverseBits()); 1731 case Intrinsic::convert_from_fp16: { 1732 APFloat Val(APFloat::IEEEhalf(), Op->getValue()); 1733 1734 bool lost = false; 1735 APFloat::opStatus status = Val.convert( 1736 Ty->getFltSemantics(), APFloat::rmNearestTiesToEven, &lost); 1737 1738 // Conversion is always precise. 1739 (void)status; 1740 assert(status == APFloat::opOK && !lost && 1741 "Precision lost during fp16 constfolding"); 1742 1743 return ConstantFP::get(Ty->getContext(), Val); 1744 } 1745 default: 1746 return nullptr; 1747 } 1748 } 1749 1750 // Support ConstantVector in case we have an Undef in the top. 1751 if (isa<ConstantVector>(Operands[0]) || 1752 isa<ConstantDataVector>(Operands[0])) { 1753 auto *Op = cast<Constant>(Operands[0]); 1754 switch (IntrinsicID) { 1755 default: break; 1756 case Intrinsic::x86_sse_cvtss2si: 1757 case Intrinsic::x86_sse_cvtss2si64: 1758 case Intrinsic::x86_sse2_cvtsd2si: 1759 case Intrinsic::x86_sse2_cvtsd2si64: 1760 if (ConstantFP *FPOp = 1761 dyn_cast_or_null<ConstantFP>(Op->getAggregateElement(0U))) 1762 return ConstantFoldSSEConvertToInt(FPOp->getValueAPF(), 1763 /*roundTowardZero=*/false, Ty); 1764 case Intrinsic::x86_sse_cvttss2si: 1765 case Intrinsic::x86_sse_cvttss2si64: 1766 case Intrinsic::x86_sse2_cvttsd2si: 1767 case Intrinsic::x86_sse2_cvttsd2si64: 1768 if (ConstantFP *FPOp = 1769 dyn_cast_or_null<ConstantFP>(Op->getAggregateElement(0U))) 1770 return ConstantFoldSSEConvertToInt(FPOp->getValueAPF(), 1771 /*roundTowardZero=*/true, Ty); 1772 } 1773 } 1774 1775 if (isa<UndefValue>(Operands[0])) { 1776 if (IntrinsicID == Intrinsic::bswap) 1777 return Operands[0]; 1778 return nullptr; 1779 } 1780 1781 return nullptr; 1782 } 1783 1784 if (Operands.size() == 2) { 1785 if (auto *Op1 = dyn_cast<ConstantFP>(Operands[0])) { 1786 if (!Ty->isHalfTy() && !Ty->isFloatTy() && !Ty->isDoubleTy()) 1787 return nullptr; 1788 double Op1V = getValueAsDouble(Op1); 1789 1790 if (auto *Op2 = dyn_cast<ConstantFP>(Operands[1])) { 1791 if (Op2->getType() != Op1->getType()) 1792 return nullptr; 1793 1794 double Op2V = getValueAsDouble(Op2); 1795 if (IntrinsicID == Intrinsic::pow) { 1796 return ConstantFoldBinaryFP(pow, Op1V, Op2V, Ty); 1797 } 1798 if (IntrinsicID == Intrinsic::copysign) { 1799 APFloat V1 = Op1->getValueAPF(); 1800 const APFloat &V2 = Op2->getValueAPF(); 1801 V1.copySign(V2); 1802 return ConstantFP::get(Ty->getContext(), V1); 1803 } 1804 1805 if (IntrinsicID == Intrinsic::minnum) { 1806 const APFloat &C1 = Op1->getValueAPF(); 1807 const APFloat &C2 = Op2->getValueAPF(); 1808 return ConstantFP::get(Ty->getContext(), minnum(C1, C2)); 1809 } 1810 1811 if (IntrinsicID == Intrinsic::maxnum) { 1812 const APFloat &C1 = Op1->getValueAPF(); 1813 const APFloat &C2 = Op2->getValueAPF(); 1814 return ConstantFP::get(Ty->getContext(), maxnum(C1, C2)); 1815 } 1816 1817 if (!TLI) 1818 return nullptr; 1819 if ((Name == "pow" && TLI->has(LibFunc::pow)) || 1820 (Name == "powf" && TLI->has(LibFunc::powf))) 1821 return ConstantFoldBinaryFP(pow, Op1V, Op2V, Ty); 1822 if ((Name == "fmod" && TLI->has(LibFunc::fmod)) || 1823 (Name == "fmodf" && TLI->has(LibFunc::fmodf))) 1824 return ConstantFoldBinaryFP(fmod, Op1V, Op2V, Ty); 1825 if ((Name == "atan2" && TLI->has(LibFunc::atan2)) || 1826 (Name == "atan2f" && TLI->has(LibFunc::atan2f))) 1827 return ConstantFoldBinaryFP(atan2, Op1V, Op2V, Ty); 1828 } else if (auto *Op2C = dyn_cast<ConstantInt>(Operands[1])) { 1829 if (IntrinsicID == Intrinsic::powi && Ty->isHalfTy()) 1830 return ConstantFP::get(Ty->getContext(), 1831 APFloat((float)std::pow((float)Op1V, 1832 (int)Op2C->getZExtValue()))); 1833 if (IntrinsicID == Intrinsic::powi && Ty->isFloatTy()) 1834 return ConstantFP::get(Ty->getContext(), 1835 APFloat((float)std::pow((float)Op1V, 1836 (int)Op2C->getZExtValue()))); 1837 if (IntrinsicID == Intrinsic::powi && Ty->isDoubleTy()) 1838 return ConstantFP::get(Ty->getContext(), 1839 APFloat((double)std::pow((double)Op1V, 1840 (int)Op2C->getZExtValue()))); 1841 } 1842 return nullptr; 1843 } 1844 1845 if (auto *Op1 = dyn_cast<ConstantInt>(Operands[0])) { 1846 if (auto *Op2 = dyn_cast<ConstantInt>(Operands[1])) { 1847 switch (IntrinsicID) { 1848 default: break; 1849 case Intrinsic::sadd_with_overflow: 1850 case Intrinsic::uadd_with_overflow: 1851 case Intrinsic::ssub_with_overflow: 1852 case Intrinsic::usub_with_overflow: 1853 case Intrinsic::smul_with_overflow: 1854 case Intrinsic::umul_with_overflow: { 1855 APInt Res; 1856 bool Overflow; 1857 switch (IntrinsicID) { 1858 default: llvm_unreachable("Invalid case"); 1859 case Intrinsic::sadd_with_overflow: 1860 Res = Op1->getValue().sadd_ov(Op2->getValue(), Overflow); 1861 break; 1862 case Intrinsic::uadd_with_overflow: 1863 Res = Op1->getValue().uadd_ov(Op2->getValue(), Overflow); 1864 break; 1865 case Intrinsic::ssub_with_overflow: 1866 Res = Op1->getValue().ssub_ov(Op2->getValue(), Overflow); 1867 break; 1868 case Intrinsic::usub_with_overflow: 1869 Res = Op1->getValue().usub_ov(Op2->getValue(), Overflow); 1870 break; 1871 case Intrinsic::smul_with_overflow: 1872 Res = Op1->getValue().smul_ov(Op2->getValue(), Overflow); 1873 break; 1874 case Intrinsic::umul_with_overflow: 1875 Res = Op1->getValue().umul_ov(Op2->getValue(), Overflow); 1876 break; 1877 } 1878 Constant *Ops[] = { 1879 ConstantInt::get(Ty->getContext(), Res), 1880 ConstantInt::get(Type::getInt1Ty(Ty->getContext()), Overflow) 1881 }; 1882 return ConstantStruct::get(cast<StructType>(Ty), Ops); 1883 } 1884 case Intrinsic::cttz: 1885 if (Op2->isOne() && Op1->isZero()) // cttz(0, 1) is undef. 1886 return UndefValue::get(Ty); 1887 return ConstantInt::get(Ty, Op1->getValue().countTrailingZeros()); 1888 case Intrinsic::ctlz: 1889 if (Op2->isOne() && Op1->isZero()) // ctlz(0, 1) is undef. 1890 return UndefValue::get(Ty); 1891 return ConstantInt::get(Ty, Op1->getValue().countLeadingZeros()); 1892 } 1893 } 1894 1895 return nullptr; 1896 } 1897 return nullptr; 1898 } 1899 1900 if (Operands.size() != 3) 1901 return nullptr; 1902 1903 if (const auto *Op1 = dyn_cast<ConstantFP>(Operands[0])) { 1904 if (const auto *Op2 = dyn_cast<ConstantFP>(Operands[1])) { 1905 if (const auto *Op3 = dyn_cast<ConstantFP>(Operands[2])) { 1906 switch (IntrinsicID) { 1907 default: break; 1908 case Intrinsic::fma: 1909 case Intrinsic::fmuladd: { 1910 APFloat V = Op1->getValueAPF(); 1911 APFloat::opStatus s = V.fusedMultiplyAdd(Op2->getValueAPF(), 1912 Op3->getValueAPF(), 1913 APFloat::rmNearestTiesToEven); 1914 if (s != APFloat::opInvalidOp) 1915 return ConstantFP::get(Ty->getContext(), V); 1916 1917 return nullptr; 1918 } 1919 } 1920 } 1921 } 1922 } 1923 1924 return nullptr; 1925 } 1926 1927 Constant *ConstantFoldVectorCall(StringRef Name, unsigned IntrinsicID, 1928 VectorType *VTy, ArrayRef<Constant *> Operands, 1929 const DataLayout &DL, 1930 const TargetLibraryInfo *TLI) { 1931 SmallVector<Constant *, 4> Result(VTy->getNumElements()); 1932 SmallVector<Constant *, 4> Lane(Operands.size()); 1933 Type *Ty = VTy->getElementType(); 1934 1935 if (IntrinsicID == Intrinsic::masked_load) { 1936 auto *SrcPtr = Operands[0]; 1937 auto *Mask = Operands[2]; 1938 auto *Passthru = Operands[3]; 1939 1940 Constant *VecData = ConstantFoldLoadFromConstPtr(SrcPtr, VTy, DL); 1941 1942 SmallVector<Constant *, 32> NewElements; 1943 for (unsigned I = 0, E = VTy->getNumElements(); I != E; ++I) { 1944 auto *MaskElt = Mask->getAggregateElement(I); 1945 if (!MaskElt) 1946 break; 1947 auto *PassthruElt = Passthru->getAggregateElement(I); 1948 auto *VecElt = VecData ? VecData->getAggregateElement(I) : nullptr; 1949 if (isa<UndefValue>(MaskElt)) { 1950 if (PassthruElt) 1951 NewElements.push_back(PassthruElt); 1952 else if (VecElt) 1953 NewElements.push_back(VecElt); 1954 else 1955 return nullptr; 1956 } 1957 if (MaskElt->isNullValue()) { 1958 if (!PassthruElt) 1959 return nullptr; 1960 NewElements.push_back(PassthruElt); 1961 } else if (MaskElt->isOneValue()) { 1962 if (!VecElt) 1963 return nullptr; 1964 NewElements.push_back(VecElt); 1965 } else { 1966 return nullptr; 1967 } 1968 } 1969 if (NewElements.size() != VTy->getNumElements()) 1970 return nullptr; 1971 return ConstantVector::get(NewElements); 1972 } 1973 1974 for (unsigned I = 0, E = VTy->getNumElements(); I != E; ++I) { 1975 // Gather a column of constants. 1976 for (unsigned J = 0, JE = Operands.size(); J != JE; ++J) { 1977 Constant *Agg = Operands[J]->getAggregateElement(I); 1978 if (!Agg) 1979 return nullptr; 1980 1981 Lane[J] = Agg; 1982 } 1983 1984 // Use the regular scalar folding to simplify this column. 1985 Constant *Folded = ConstantFoldScalarCall(Name, IntrinsicID, Ty, Lane, TLI); 1986 if (!Folded) 1987 return nullptr; 1988 Result[I] = Folded; 1989 } 1990 1991 return ConstantVector::get(Result); 1992 } 1993 1994 } // end anonymous namespace 1995 1996 Constant * 1997 llvm::ConstantFoldCall(Function *F, ArrayRef<Constant *> Operands, 1998 const TargetLibraryInfo *TLI) { 1999 if (!F->hasName()) 2000 return nullptr; 2001 StringRef Name = F->getName(); 2002 2003 Type *Ty = F->getReturnType(); 2004 2005 if (auto *VTy = dyn_cast<VectorType>(Ty)) 2006 return ConstantFoldVectorCall(Name, F->getIntrinsicID(), VTy, Operands, 2007 F->getParent()->getDataLayout(), TLI); 2008 2009 return ConstantFoldScalarCall(Name, F->getIntrinsicID(), Ty, Operands, TLI); 2010 } 2011 2012 bool llvm::isMathLibCallNoop(CallSite CS, const TargetLibraryInfo *TLI) { 2013 // FIXME: Refactor this code; this duplicates logic in LibCallsShrinkWrap 2014 // (and to some extent ConstantFoldScalarCall). 2015 Function *F = CS.getCalledFunction(); 2016 if (!F) 2017 return false; 2018 2019 LibFunc::Func Func; 2020 if (!TLI || !TLI->getLibFunc(*F, Func)) 2021 return false; 2022 2023 if (CS.getNumArgOperands() == 1) { 2024 if (ConstantFP *OpC = dyn_cast<ConstantFP>(CS.getArgOperand(0))) { 2025 const APFloat &Op = OpC->getValueAPF(); 2026 switch (Func) { 2027 case LibFunc::logl: 2028 case LibFunc::log: 2029 case LibFunc::logf: 2030 case LibFunc::log2l: 2031 case LibFunc::log2: 2032 case LibFunc::log2f: 2033 case LibFunc::log10l: 2034 case LibFunc::log10: 2035 case LibFunc::log10f: 2036 return Op.isNaN() || (!Op.isZero() && !Op.isNegative()); 2037 2038 case LibFunc::expl: 2039 case LibFunc::exp: 2040 case LibFunc::expf: 2041 // FIXME: These boundaries are slightly conservative. 2042 if (OpC->getType()->isDoubleTy()) 2043 return Op.compare(APFloat(-745.0)) != APFloat::cmpLessThan && 2044 Op.compare(APFloat(709.0)) != APFloat::cmpGreaterThan; 2045 if (OpC->getType()->isFloatTy()) 2046 return Op.compare(APFloat(-103.0f)) != APFloat::cmpLessThan && 2047 Op.compare(APFloat(88.0f)) != APFloat::cmpGreaterThan; 2048 break; 2049 2050 case LibFunc::exp2l: 2051 case LibFunc::exp2: 2052 case LibFunc::exp2f: 2053 // FIXME: These boundaries are slightly conservative. 2054 if (OpC->getType()->isDoubleTy()) 2055 return Op.compare(APFloat(-1074.0)) != APFloat::cmpLessThan && 2056 Op.compare(APFloat(1023.0)) != APFloat::cmpGreaterThan; 2057 if (OpC->getType()->isFloatTy()) 2058 return Op.compare(APFloat(-149.0f)) != APFloat::cmpLessThan && 2059 Op.compare(APFloat(127.0f)) != APFloat::cmpGreaterThan; 2060 break; 2061 2062 case LibFunc::sinl: 2063 case LibFunc::sin: 2064 case LibFunc::sinf: 2065 case LibFunc::cosl: 2066 case LibFunc::cos: 2067 case LibFunc::cosf: 2068 return !Op.isInfinity(); 2069 2070 case LibFunc::tanl: 2071 case LibFunc::tan: 2072 case LibFunc::tanf: { 2073 // FIXME: Stop using the host math library. 2074 // FIXME: The computation isn't done in the right precision. 2075 Type *Ty = OpC->getType(); 2076 if (Ty->isDoubleTy() || Ty->isFloatTy() || Ty->isHalfTy()) { 2077 double OpV = getValueAsDouble(OpC); 2078 return ConstantFoldFP(tan, OpV, Ty) != nullptr; 2079 } 2080 break; 2081 } 2082 2083 case LibFunc::asinl: 2084 case LibFunc::asin: 2085 case LibFunc::asinf: 2086 case LibFunc::acosl: 2087 case LibFunc::acos: 2088 case LibFunc::acosf: 2089 return Op.compare(APFloat(Op.getSemantics(), "-1")) != 2090 APFloat::cmpLessThan && 2091 Op.compare(APFloat(Op.getSemantics(), "1")) != 2092 APFloat::cmpGreaterThan; 2093 2094 case LibFunc::sinh: 2095 case LibFunc::cosh: 2096 case LibFunc::sinhf: 2097 case LibFunc::coshf: 2098 case LibFunc::sinhl: 2099 case LibFunc::coshl: 2100 // FIXME: These boundaries are slightly conservative. 2101 if (OpC->getType()->isDoubleTy()) 2102 return Op.compare(APFloat(-710.0)) != APFloat::cmpLessThan && 2103 Op.compare(APFloat(710.0)) != APFloat::cmpGreaterThan; 2104 if (OpC->getType()->isFloatTy()) 2105 return Op.compare(APFloat(-89.0f)) != APFloat::cmpLessThan && 2106 Op.compare(APFloat(89.0f)) != APFloat::cmpGreaterThan; 2107 break; 2108 2109 case LibFunc::sqrtl: 2110 case LibFunc::sqrt: 2111 case LibFunc::sqrtf: 2112 return Op.isNaN() || Op.isZero() || !Op.isNegative(); 2113 2114 // FIXME: Add more functions: sqrt_finite, atanh, expm1, log1p, 2115 // maybe others? 2116 default: 2117 break; 2118 } 2119 } 2120 } 2121 2122 if (CS.getNumArgOperands() == 2) { 2123 ConstantFP *Op0C = dyn_cast<ConstantFP>(CS.getArgOperand(0)); 2124 ConstantFP *Op1C = dyn_cast<ConstantFP>(CS.getArgOperand(1)); 2125 if (Op0C && Op1C) { 2126 const APFloat &Op0 = Op0C->getValueAPF(); 2127 const APFloat &Op1 = Op1C->getValueAPF(); 2128 2129 switch (Func) { 2130 case LibFunc::powl: 2131 case LibFunc::pow: 2132 case LibFunc::powf: { 2133 // FIXME: Stop using the host math library. 2134 // FIXME: The computation isn't done in the right precision. 2135 Type *Ty = Op0C->getType(); 2136 if (Ty->isDoubleTy() || Ty->isFloatTy() || Ty->isHalfTy()) { 2137 if (Ty == Op1C->getType()) { 2138 double Op0V = getValueAsDouble(Op0C); 2139 double Op1V = getValueAsDouble(Op1C); 2140 return ConstantFoldBinaryFP(pow, Op0V, Op1V, Ty) != nullptr; 2141 } 2142 } 2143 break; 2144 } 2145 2146 case LibFunc::fmodl: 2147 case LibFunc::fmod: 2148 case LibFunc::fmodf: 2149 return Op0.isNaN() || Op1.isNaN() || 2150 (!Op0.isInfinity() && !Op1.isZero()); 2151 2152 default: 2153 break; 2154 } 2155 } 2156 } 2157 2158 return false; 2159 } 2160