1 //===-- ConstantFolding.cpp - Fold instructions into constants ------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file defines routines for folding instructions into constants. 10 // 11 // Also, to supplement the basic IR ConstantExpr simplifications, 12 // this file defines some additional folding routines that can make use of 13 // DataLayout information. These functions cannot go in IR due to library 14 // dependency issues. 15 // 16 //===----------------------------------------------------------------------===// 17 18 #include "llvm/Analysis/ConstantFolding.h" 19 #include "llvm/ADT/APFloat.h" 20 #include "llvm/ADT/APInt.h" 21 #include "llvm/ADT/APSInt.h" 22 #include "llvm/ADT/ArrayRef.h" 23 #include "llvm/ADT/DenseMap.h" 24 #include "llvm/ADT/STLExtras.h" 25 #include "llvm/ADT/SmallVector.h" 26 #include "llvm/ADT/StringRef.h" 27 #include "llvm/Analysis/TargetFolder.h" 28 #include "llvm/Analysis/TargetLibraryInfo.h" 29 #include "llvm/Analysis/ValueTracking.h" 30 #include "llvm/Analysis/VectorUtils.h" 31 #include "llvm/Config/config.h" 32 #include "llvm/IR/Constant.h" 33 #include "llvm/IR/ConstantFold.h" 34 #include "llvm/IR/Constants.h" 35 #include "llvm/IR/DataLayout.h" 36 #include "llvm/IR/DerivedTypes.h" 37 #include "llvm/IR/Function.h" 38 #include "llvm/IR/GlobalValue.h" 39 #include "llvm/IR/GlobalVariable.h" 40 #include "llvm/IR/InstrTypes.h" 41 #include "llvm/IR/Instruction.h" 42 #include "llvm/IR/Instructions.h" 43 #include "llvm/IR/IntrinsicInst.h" 44 #include "llvm/IR/Intrinsics.h" 45 #include "llvm/IR/IntrinsicsAArch64.h" 46 #include "llvm/IR/IntrinsicsAMDGPU.h" 47 #include "llvm/IR/IntrinsicsARM.h" 48 #include "llvm/IR/IntrinsicsWebAssembly.h" 49 #include "llvm/IR/IntrinsicsX86.h" 50 #include "llvm/IR/Operator.h" 51 #include "llvm/IR/Type.h" 52 #include "llvm/IR/Value.h" 53 #include "llvm/Support/Casting.h" 54 #include "llvm/Support/ErrorHandling.h" 55 #include "llvm/Support/KnownBits.h" 56 #include "llvm/Support/MathExtras.h" 57 #include <cassert> 58 #include <cerrno> 59 #include <cfenv> 60 #include <cmath> 61 #include <cstdint> 62 63 using namespace llvm; 64 65 namespace { 66 67 //===----------------------------------------------------------------------===// 68 // Constant Folding internal helper functions 69 //===----------------------------------------------------------------------===// 70 71 static Constant *foldConstVectorToAPInt(APInt &Result, Type *DestTy, 72 Constant *C, Type *SrcEltTy, 73 unsigned NumSrcElts, 74 const DataLayout &DL) { 75 // Now that we know that the input value is a vector of integers, just shift 76 // and insert them into our result. 77 unsigned BitShift = DL.getTypeSizeInBits(SrcEltTy); 78 for (unsigned i = 0; i != NumSrcElts; ++i) { 79 Constant *Element; 80 if (DL.isLittleEndian()) 81 Element = C->getAggregateElement(NumSrcElts - i - 1); 82 else 83 Element = C->getAggregateElement(i); 84 85 if (Element && isa<UndefValue>(Element)) { 86 Result <<= BitShift; 87 continue; 88 } 89 90 auto *ElementCI = dyn_cast_or_null<ConstantInt>(Element); 91 if (!ElementCI) 92 return ConstantExpr::getBitCast(C, DestTy); 93 94 Result <<= BitShift; 95 Result |= ElementCI->getValue().zext(Result.getBitWidth()); 96 } 97 98 return nullptr; 99 } 100 101 /// Constant fold bitcast, symbolically evaluating it with DataLayout. 102 /// This always returns a non-null constant, but it may be a 103 /// ConstantExpr if unfoldable. 104 Constant *FoldBitCast(Constant *C, Type *DestTy, const DataLayout &DL) { 105 assert(CastInst::castIsValid(Instruction::BitCast, C, DestTy) && 106 "Invalid constantexpr bitcast!"); 107 108 // Catch the obvious splat cases. 109 if (Constant *Res = ConstantFoldLoadFromUniformValue(C, DestTy)) 110 return Res; 111 112 if (auto *VTy = dyn_cast<VectorType>(C->getType())) { 113 // Handle a vector->scalar integer/fp cast. 114 if (isa<IntegerType>(DestTy) || DestTy->isFloatingPointTy()) { 115 unsigned NumSrcElts = cast<FixedVectorType>(VTy)->getNumElements(); 116 Type *SrcEltTy = VTy->getElementType(); 117 118 // If the vector is a vector of floating point, convert it to vector of int 119 // to simplify things. 120 if (SrcEltTy->isFloatingPointTy()) { 121 unsigned FPWidth = SrcEltTy->getPrimitiveSizeInBits(); 122 auto *SrcIVTy = FixedVectorType::get( 123 IntegerType::get(C->getContext(), FPWidth), NumSrcElts); 124 // Ask IR to do the conversion now that #elts line up. 125 C = ConstantExpr::getBitCast(C, SrcIVTy); 126 } 127 128 APInt Result(DL.getTypeSizeInBits(DestTy), 0); 129 if (Constant *CE = foldConstVectorToAPInt(Result, DestTy, C, 130 SrcEltTy, NumSrcElts, DL)) 131 return CE; 132 133 if (isa<IntegerType>(DestTy)) 134 return ConstantInt::get(DestTy, Result); 135 136 APFloat FP(DestTy->getFltSemantics(), Result); 137 return ConstantFP::get(DestTy->getContext(), FP); 138 } 139 } 140 141 // The code below only handles casts to vectors currently. 142 auto *DestVTy = dyn_cast<VectorType>(DestTy); 143 if (!DestVTy) 144 return ConstantExpr::getBitCast(C, DestTy); 145 146 // If this is a scalar -> vector cast, convert the input into a <1 x scalar> 147 // vector so the code below can handle it uniformly. 148 if (isa<ConstantFP>(C) || isa<ConstantInt>(C)) { 149 Constant *Ops = C; // don't take the address of C! 150 return FoldBitCast(ConstantVector::get(Ops), DestTy, DL); 151 } 152 153 // If this is a bitcast from constant vector -> vector, fold it. 154 if (!isa<ConstantDataVector>(C) && !isa<ConstantVector>(C)) 155 return ConstantExpr::getBitCast(C, DestTy); 156 157 // If the element types match, IR can fold it. 158 unsigned NumDstElt = cast<FixedVectorType>(DestVTy)->getNumElements(); 159 unsigned NumSrcElt = cast<FixedVectorType>(C->getType())->getNumElements(); 160 if (NumDstElt == NumSrcElt) 161 return ConstantExpr::getBitCast(C, DestTy); 162 163 Type *SrcEltTy = cast<VectorType>(C->getType())->getElementType(); 164 Type *DstEltTy = DestVTy->getElementType(); 165 166 // Otherwise, we're changing the number of elements in a vector, which 167 // requires endianness information to do the right thing. For example, 168 // bitcast (<2 x i64> <i64 0, i64 1> to <4 x i32>) 169 // folds to (little endian): 170 // <4 x i32> <i32 0, i32 0, i32 1, i32 0> 171 // and to (big endian): 172 // <4 x i32> <i32 0, i32 0, i32 0, i32 1> 173 174 // First thing is first. We only want to think about integer here, so if 175 // we have something in FP form, recast it as integer. 176 if (DstEltTy->isFloatingPointTy()) { 177 // Fold to an vector of integers with same size as our FP type. 178 unsigned FPWidth = DstEltTy->getPrimitiveSizeInBits(); 179 auto *DestIVTy = FixedVectorType::get( 180 IntegerType::get(C->getContext(), FPWidth), NumDstElt); 181 // Recursively handle this integer conversion, if possible. 182 C = FoldBitCast(C, DestIVTy, DL); 183 184 // Finally, IR can handle this now that #elts line up. 185 return ConstantExpr::getBitCast(C, DestTy); 186 } 187 188 // Okay, we know the destination is integer, if the input is FP, convert 189 // it to integer first. 190 if (SrcEltTy->isFloatingPointTy()) { 191 unsigned FPWidth = SrcEltTy->getPrimitiveSizeInBits(); 192 auto *SrcIVTy = FixedVectorType::get( 193 IntegerType::get(C->getContext(), FPWidth), NumSrcElt); 194 // Ask IR to do the conversion now that #elts line up. 195 C = ConstantExpr::getBitCast(C, SrcIVTy); 196 // If IR wasn't able to fold it, bail out. 197 if (!isa<ConstantVector>(C) && // FIXME: Remove ConstantVector. 198 !isa<ConstantDataVector>(C)) 199 return C; 200 } 201 202 // Now we know that the input and output vectors are both integer vectors 203 // of the same size, and that their #elements is not the same. Do the 204 // conversion here, which depends on whether the input or output has 205 // more elements. 206 bool isLittleEndian = DL.isLittleEndian(); 207 208 SmallVector<Constant*, 32> Result; 209 if (NumDstElt < NumSrcElt) { 210 // Handle: bitcast (<4 x i32> <i32 0, i32 1, i32 2, i32 3> to <2 x i64>) 211 Constant *Zero = Constant::getNullValue(DstEltTy); 212 unsigned Ratio = NumSrcElt/NumDstElt; 213 unsigned SrcBitSize = SrcEltTy->getPrimitiveSizeInBits(); 214 unsigned SrcElt = 0; 215 for (unsigned i = 0; i != NumDstElt; ++i) { 216 // Build each element of the result. 217 Constant *Elt = Zero; 218 unsigned ShiftAmt = isLittleEndian ? 0 : SrcBitSize*(Ratio-1); 219 for (unsigned j = 0; j != Ratio; ++j) { 220 Constant *Src = C->getAggregateElement(SrcElt++); 221 if (Src && isa<UndefValue>(Src)) 222 Src = Constant::getNullValue( 223 cast<VectorType>(C->getType())->getElementType()); 224 else 225 Src = dyn_cast_or_null<ConstantInt>(Src); 226 if (!Src) // Reject constantexpr elements. 227 return ConstantExpr::getBitCast(C, DestTy); 228 229 // Zero extend the element to the right size. 230 Src = ConstantExpr::getZExt(Src, Elt->getType()); 231 232 // Shift it to the right place, depending on endianness. 233 Src = ConstantExpr::getShl(Src, 234 ConstantInt::get(Src->getType(), ShiftAmt)); 235 ShiftAmt += isLittleEndian ? SrcBitSize : -SrcBitSize; 236 237 // Mix it in. 238 Elt = ConstantExpr::getOr(Elt, Src); 239 } 240 Result.push_back(Elt); 241 } 242 return ConstantVector::get(Result); 243 } 244 245 // Handle: bitcast (<2 x i64> <i64 0, i64 1> to <4 x i32>) 246 unsigned Ratio = NumDstElt/NumSrcElt; 247 unsigned DstBitSize = DL.getTypeSizeInBits(DstEltTy); 248 249 // Loop over each source value, expanding into multiple results. 250 for (unsigned i = 0; i != NumSrcElt; ++i) { 251 auto *Element = C->getAggregateElement(i); 252 253 if (!Element) // Reject constantexpr elements. 254 return ConstantExpr::getBitCast(C, DestTy); 255 256 if (isa<UndefValue>(Element)) { 257 // Correctly Propagate undef values. 258 Result.append(Ratio, UndefValue::get(DstEltTy)); 259 continue; 260 } 261 262 auto *Src = dyn_cast<ConstantInt>(Element); 263 if (!Src) 264 return ConstantExpr::getBitCast(C, DestTy); 265 266 unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize*(Ratio-1); 267 for (unsigned j = 0; j != Ratio; ++j) { 268 // Shift the piece of the value into the right place, depending on 269 // endianness. 270 Constant *Elt = ConstantExpr::getLShr(Src, 271 ConstantInt::get(Src->getType(), ShiftAmt)); 272 ShiftAmt += isLittleEndian ? DstBitSize : -DstBitSize; 273 274 // Truncate the element to an integer with the same pointer size and 275 // convert the element back to a pointer using a inttoptr. 276 if (DstEltTy->isPointerTy()) { 277 IntegerType *DstIntTy = Type::getIntNTy(C->getContext(), DstBitSize); 278 Constant *CE = ConstantExpr::getTrunc(Elt, DstIntTy); 279 Result.push_back(ConstantExpr::getIntToPtr(CE, DstEltTy)); 280 continue; 281 } 282 283 // Truncate and remember this piece. 284 Result.push_back(ConstantExpr::getTrunc(Elt, DstEltTy)); 285 } 286 } 287 288 return ConstantVector::get(Result); 289 } 290 291 } // end anonymous namespace 292 293 /// If this constant is a constant offset from a global, return the global and 294 /// the constant. Because of constantexprs, this function is recursive. 295 bool llvm::IsConstantOffsetFromGlobal(Constant *C, GlobalValue *&GV, 296 APInt &Offset, const DataLayout &DL, 297 DSOLocalEquivalent **DSOEquiv) { 298 if (DSOEquiv) 299 *DSOEquiv = nullptr; 300 301 // Trivial case, constant is the global. 302 if ((GV = dyn_cast<GlobalValue>(C))) { 303 unsigned BitWidth = DL.getIndexTypeSizeInBits(GV->getType()); 304 Offset = APInt(BitWidth, 0); 305 return true; 306 } 307 308 if (auto *FoundDSOEquiv = dyn_cast<DSOLocalEquivalent>(C)) { 309 if (DSOEquiv) 310 *DSOEquiv = FoundDSOEquiv; 311 GV = FoundDSOEquiv->getGlobalValue(); 312 unsigned BitWidth = DL.getIndexTypeSizeInBits(GV->getType()); 313 Offset = APInt(BitWidth, 0); 314 return true; 315 } 316 317 // Otherwise, if this isn't a constant expr, bail out. 318 auto *CE = dyn_cast<ConstantExpr>(C); 319 if (!CE) return false; 320 321 // Look through ptr->int and ptr->ptr casts. 322 if (CE->getOpcode() == Instruction::PtrToInt || 323 CE->getOpcode() == Instruction::BitCast) 324 return IsConstantOffsetFromGlobal(CE->getOperand(0), GV, Offset, DL, 325 DSOEquiv); 326 327 // i32* getelementptr ([5 x i32]* @a, i32 0, i32 5) 328 auto *GEP = dyn_cast<GEPOperator>(CE); 329 if (!GEP) 330 return false; 331 332 unsigned BitWidth = DL.getIndexTypeSizeInBits(GEP->getType()); 333 APInt TmpOffset(BitWidth, 0); 334 335 // If the base isn't a global+constant, we aren't either. 336 if (!IsConstantOffsetFromGlobal(CE->getOperand(0), GV, TmpOffset, DL, 337 DSOEquiv)) 338 return false; 339 340 // Otherwise, add any offset that our operands provide. 341 if (!GEP->accumulateConstantOffset(DL, TmpOffset)) 342 return false; 343 344 Offset = TmpOffset; 345 return true; 346 } 347 348 Constant *llvm::ConstantFoldLoadThroughBitcast(Constant *C, Type *DestTy, 349 const DataLayout &DL) { 350 do { 351 Type *SrcTy = C->getType(); 352 if (SrcTy == DestTy) 353 return C; 354 355 TypeSize DestSize = DL.getTypeSizeInBits(DestTy); 356 TypeSize SrcSize = DL.getTypeSizeInBits(SrcTy); 357 if (!TypeSize::isKnownGE(SrcSize, DestSize)) 358 return nullptr; 359 360 // Catch the obvious splat cases (since all-zeros can coerce non-integral 361 // pointers legally). 362 if (Constant *Res = ConstantFoldLoadFromUniformValue(C, DestTy)) 363 return Res; 364 365 // If the type sizes are the same and a cast is legal, just directly 366 // cast the constant. 367 // But be careful not to coerce non-integral pointers illegally. 368 if (SrcSize == DestSize && 369 DL.isNonIntegralPointerType(SrcTy->getScalarType()) == 370 DL.isNonIntegralPointerType(DestTy->getScalarType())) { 371 Instruction::CastOps Cast = Instruction::BitCast; 372 // If we are going from a pointer to int or vice versa, we spell the cast 373 // differently. 374 if (SrcTy->isIntegerTy() && DestTy->isPointerTy()) 375 Cast = Instruction::IntToPtr; 376 else if (SrcTy->isPointerTy() && DestTy->isIntegerTy()) 377 Cast = Instruction::PtrToInt; 378 379 if (CastInst::castIsValid(Cast, C, DestTy)) 380 return ConstantExpr::getCast(Cast, C, DestTy); 381 } 382 383 // If this isn't an aggregate type, there is nothing we can do to drill down 384 // and find a bitcastable constant. 385 if (!SrcTy->isAggregateType() && !SrcTy->isVectorTy()) 386 return nullptr; 387 388 // We're simulating a load through a pointer that was bitcast to point to 389 // a different type, so we can try to walk down through the initial 390 // elements of an aggregate to see if some part of the aggregate is 391 // castable to implement the "load" semantic model. 392 if (SrcTy->isStructTy()) { 393 // Struct types might have leading zero-length elements like [0 x i32], 394 // which are certainly not what we are looking for, so skip them. 395 unsigned Elem = 0; 396 Constant *ElemC; 397 do { 398 ElemC = C->getAggregateElement(Elem++); 399 } while (ElemC && DL.getTypeSizeInBits(ElemC->getType()).isZero()); 400 C = ElemC; 401 } else { 402 // For non-byte-sized vector elements, the first element is not 403 // necessarily located at the vector base address. 404 if (auto *VT = dyn_cast<VectorType>(SrcTy)) 405 if (!DL.typeSizeEqualsStoreSize(VT->getElementType())) 406 return nullptr; 407 408 C = C->getAggregateElement(0u); 409 } 410 } while (C); 411 412 return nullptr; 413 } 414 415 namespace { 416 417 /// Recursive helper to read bits out of global. C is the constant being copied 418 /// out of. ByteOffset is an offset into C. CurPtr is the pointer to copy 419 /// results into and BytesLeft is the number of bytes left in 420 /// the CurPtr buffer. DL is the DataLayout. 421 bool ReadDataFromGlobal(Constant *C, uint64_t ByteOffset, unsigned char *CurPtr, 422 unsigned BytesLeft, const DataLayout &DL) { 423 assert(ByteOffset <= DL.getTypeAllocSize(C->getType()) && 424 "Out of range access"); 425 426 // If this element is zero or undefined, we can just return since *CurPtr is 427 // zero initialized. 428 if (isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) 429 return true; 430 431 if (auto *CI = dyn_cast<ConstantInt>(C)) { 432 if (CI->getBitWidth() > 64 || 433 (CI->getBitWidth() & 7) != 0) 434 return false; 435 436 uint64_t Val = CI->getZExtValue(); 437 unsigned IntBytes = unsigned(CI->getBitWidth()/8); 438 439 for (unsigned i = 0; i != BytesLeft && ByteOffset != IntBytes; ++i) { 440 int n = ByteOffset; 441 if (!DL.isLittleEndian()) 442 n = IntBytes - n - 1; 443 CurPtr[i] = (unsigned char)(Val >> (n * 8)); 444 ++ByteOffset; 445 } 446 return true; 447 } 448 449 if (auto *CFP = dyn_cast<ConstantFP>(C)) { 450 if (CFP->getType()->isDoubleTy()) { 451 C = FoldBitCast(C, Type::getInt64Ty(C->getContext()), DL); 452 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL); 453 } 454 if (CFP->getType()->isFloatTy()){ 455 C = FoldBitCast(C, Type::getInt32Ty(C->getContext()), DL); 456 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL); 457 } 458 if (CFP->getType()->isHalfTy()){ 459 C = FoldBitCast(C, Type::getInt16Ty(C->getContext()), DL); 460 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL); 461 } 462 return false; 463 } 464 465 if (auto *CS = dyn_cast<ConstantStruct>(C)) { 466 const StructLayout *SL = DL.getStructLayout(CS->getType()); 467 unsigned Index = SL->getElementContainingOffset(ByteOffset); 468 uint64_t CurEltOffset = SL->getElementOffset(Index); 469 ByteOffset -= CurEltOffset; 470 471 while (true) { 472 // If the element access is to the element itself and not to tail padding, 473 // read the bytes from the element. 474 uint64_t EltSize = DL.getTypeAllocSize(CS->getOperand(Index)->getType()); 475 476 if (ByteOffset < EltSize && 477 !ReadDataFromGlobal(CS->getOperand(Index), ByteOffset, CurPtr, 478 BytesLeft, DL)) 479 return false; 480 481 ++Index; 482 483 // Check to see if we read from the last struct element, if so we're done. 484 if (Index == CS->getType()->getNumElements()) 485 return true; 486 487 // If we read all of the bytes we needed from this element we're done. 488 uint64_t NextEltOffset = SL->getElementOffset(Index); 489 490 if (BytesLeft <= NextEltOffset - CurEltOffset - ByteOffset) 491 return true; 492 493 // Move to the next element of the struct. 494 CurPtr += NextEltOffset - CurEltOffset - ByteOffset; 495 BytesLeft -= NextEltOffset - CurEltOffset - ByteOffset; 496 ByteOffset = 0; 497 CurEltOffset = NextEltOffset; 498 } 499 // not reached. 500 } 501 502 if (isa<ConstantArray>(C) || isa<ConstantVector>(C) || 503 isa<ConstantDataSequential>(C)) { 504 uint64_t NumElts; 505 Type *EltTy; 506 if (auto *AT = dyn_cast<ArrayType>(C->getType())) { 507 NumElts = AT->getNumElements(); 508 EltTy = AT->getElementType(); 509 } else { 510 NumElts = cast<FixedVectorType>(C->getType())->getNumElements(); 511 EltTy = cast<FixedVectorType>(C->getType())->getElementType(); 512 } 513 uint64_t EltSize = DL.getTypeAllocSize(EltTy); 514 uint64_t Index = ByteOffset / EltSize; 515 uint64_t Offset = ByteOffset - Index * EltSize; 516 517 for (; Index != NumElts; ++Index) { 518 if (!ReadDataFromGlobal(C->getAggregateElement(Index), Offset, CurPtr, 519 BytesLeft, DL)) 520 return false; 521 522 uint64_t BytesWritten = EltSize - Offset; 523 assert(BytesWritten <= EltSize && "Not indexing into this element?"); 524 if (BytesWritten >= BytesLeft) 525 return true; 526 527 Offset = 0; 528 BytesLeft -= BytesWritten; 529 CurPtr += BytesWritten; 530 } 531 return true; 532 } 533 534 if (auto *CE = dyn_cast<ConstantExpr>(C)) { 535 if (CE->getOpcode() == Instruction::IntToPtr && 536 CE->getOperand(0)->getType() == DL.getIntPtrType(CE->getType())) { 537 return ReadDataFromGlobal(CE->getOperand(0), ByteOffset, CurPtr, 538 BytesLeft, DL); 539 } 540 } 541 542 // Otherwise, unknown initializer type. 543 return false; 544 } 545 546 Constant *FoldReinterpretLoadFromConst(Constant *C, Type *LoadTy, 547 int64_t Offset, const DataLayout &DL) { 548 // Bail out early. Not expect to load from scalable global variable. 549 if (isa<ScalableVectorType>(LoadTy)) 550 return nullptr; 551 552 auto *IntType = dyn_cast<IntegerType>(LoadTy); 553 554 // If this isn't an integer load we can't fold it directly. 555 if (!IntType) { 556 // If this is a non-integer load, we can try folding it as an int load and 557 // then bitcast the result. This can be useful for union cases. Note 558 // that address spaces don't matter here since we're not going to result in 559 // an actual new load. 560 if (!LoadTy->isFloatingPointTy() && !LoadTy->isPointerTy() && 561 !LoadTy->isVectorTy()) 562 return nullptr; 563 564 Type *MapTy = Type::getIntNTy( 565 C->getContext(), DL.getTypeSizeInBits(LoadTy).getFixedSize()); 566 if (Constant *Res = FoldReinterpretLoadFromConst(C, MapTy, Offset, DL)) { 567 if (Res->isNullValue() && !LoadTy->isX86_MMXTy() && 568 !LoadTy->isX86_AMXTy()) 569 // Materializing a zero can be done trivially without a bitcast 570 return Constant::getNullValue(LoadTy); 571 Type *CastTy = LoadTy->isPtrOrPtrVectorTy() ? DL.getIntPtrType(LoadTy) : LoadTy; 572 Res = FoldBitCast(Res, CastTy, DL); 573 if (LoadTy->isPtrOrPtrVectorTy()) { 574 // For vector of pointer, we needed to first convert to a vector of integer, then do vector inttoptr 575 if (Res->isNullValue() && !LoadTy->isX86_MMXTy() && 576 !LoadTy->isX86_AMXTy()) 577 return Constant::getNullValue(LoadTy); 578 if (DL.isNonIntegralPointerType(LoadTy->getScalarType())) 579 // Be careful not to replace a load of an addrspace value with an inttoptr here 580 return nullptr; 581 Res = ConstantExpr::getCast(Instruction::IntToPtr, Res, LoadTy); 582 } 583 return Res; 584 } 585 return nullptr; 586 } 587 588 unsigned BytesLoaded = (IntType->getBitWidth() + 7) / 8; 589 if (BytesLoaded > 32 || BytesLoaded == 0) 590 return nullptr; 591 592 // If we're not accessing anything in this constant, the result is undefined. 593 if (Offset <= -1 * static_cast<int64_t>(BytesLoaded)) 594 return UndefValue::get(IntType); 595 596 // TODO: We should be able to support scalable types. 597 TypeSize InitializerSize = DL.getTypeAllocSize(C->getType()); 598 if (InitializerSize.isScalable()) 599 return nullptr; 600 601 // If we're not accessing anything in this constant, the result is undefined. 602 if (Offset >= (int64_t)InitializerSize.getFixedValue()) 603 return UndefValue::get(IntType); 604 605 unsigned char RawBytes[32] = {0}; 606 unsigned char *CurPtr = RawBytes; 607 unsigned BytesLeft = BytesLoaded; 608 609 // If we're loading off the beginning of the global, some bytes may be valid. 610 if (Offset < 0) { 611 CurPtr += -Offset; 612 BytesLeft += Offset; 613 Offset = 0; 614 } 615 616 if (!ReadDataFromGlobal(C, Offset, CurPtr, BytesLeft, DL)) 617 return nullptr; 618 619 APInt ResultVal = APInt(IntType->getBitWidth(), 0); 620 if (DL.isLittleEndian()) { 621 ResultVal = RawBytes[BytesLoaded - 1]; 622 for (unsigned i = 1; i != BytesLoaded; ++i) { 623 ResultVal <<= 8; 624 ResultVal |= RawBytes[BytesLoaded - 1 - i]; 625 } 626 } else { 627 ResultVal = RawBytes[0]; 628 for (unsigned i = 1; i != BytesLoaded; ++i) { 629 ResultVal <<= 8; 630 ResultVal |= RawBytes[i]; 631 } 632 } 633 634 return ConstantInt::get(IntType->getContext(), ResultVal); 635 } 636 637 } // anonymous namespace 638 639 // If GV is a constant with an initializer read its representation starting 640 // at Offset and return it as a constant array of unsigned char. Otherwise 641 // return null. 642 Constant *llvm::ReadByteArrayFromGlobal(const GlobalVariable *GV, 643 uint64_t Offset) { 644 if (!GV->isConstant() || !GV->hasDefinitiveInitializer()) 645 return nullptr; 646 647 const DataLayout &DL = GV->getParent()->getDataLayout(); 648 Constant *Init = const_cast<Constant *>(GV->getInitializer()); 649 TypeSize InitSize = DL.getTypeAllocSize(Init->getType()); 650 if (InitSize < Offset) 651 return nullptr; 652 653 uint64_t NBytes = InitSize - Offset; 654 if (NBytes > UINT16_MAX) 655 // Bail for large initializers in excess of 64K to avoid allocating 656 // too much memory. 657 // Offset is assumed to be less than or equal than InitSize (this 658 // is enforced in ReadDataFromGlobal). 659 return nullptr; 660 661 SmallVector<unsigned char, 256> RawBytes(static_cast<size_t>(NBytes)); 662 unsigned char *CurPtr = RawBytes.data(); 663 664 if (!ReadDataFromGlobal(Init, Offset, CurPtr, NBytes, DL)) 665 return nullptr; 666 667 return ConstantDataArray::get(GV->getContext(), RawBytes); 668 } 669 670 /// If this Offset points exactly to the start of an aggregate element, return 671 /// that element, otherwise return nullptr. 672 Constant *getConstantAtOffset(Constant *Base, APInt Offset, 673 const DataLayout &DL) { 674 if (Offset.isZero()) 675 return Base; 676 677 if (!isa<ConstantAggregate>(Base) && !isa<ConstantDataSequential>(Base)) 678 return nullptr; 679 680 Type *ElemTy = Base->getType(); 681 SmallVector<APInt> Indices = DL.getGEPIndicesForOffset(ElemTy, Offset); 682 if (!Offset.isZero() || !Indices[0].isZero()) 683 return nullptr; 684 685 Constant *C = Base; 686 for (const APInt &Index : drop_begin(Indices)) { 687 if (Index.isNegative() || Index.getActiveBits() >= 32) 688 return nullptr; 689 690 C = C->getAggregateElement(Index.getZExtValue()); 691 if (!C) 692 return nullptr; 693 } 694 695 return C; 696 } 697 698 Constant *llvm::ConstantFoldLoadFromConst(Constant *C, Type *Ty, 699 const APInt &Offset, 700 const DataLayout &DL) { 701 if (Constant *AtOffset = getConstantAtOffset(C, Offset, DL)) 702 if (Constant *Result = ConstantFoldLoadThroughBitcast(AtOffset, Ty, DL)) 703 return Result; 704 705 // Explicitly check for out-of-bounds access, so we return undef even if the 706 // constant is a uniform value. 707 TypeSize Size = DL.getTypeAllocSize(C->getType()); 708 if (!Size.isScalable() && Offset.sge(Size.getFixedSize())) 709 return UndefValue::get(Ty); 710 711 // Try an offset-independent fold of a uniform value. 712 if (Constant *Result = ConstantFoldLoadFromUniformValue(C, Ty)) 713 return Result; 714 715 // Try hard to fold loads from bitcasted strange and non-type-safe things. 716 if (Offset.getMinSignedBits() <= 64) 717 if (Constant *Result = 718 FoldReinterpretLoadFromConst(C, Ty, Offset.getSExtValue(), DL)) 719 return Result; 720 721 return nullptr; 722 } 723 724 Constant *llvm::ConstantFoldLoadFromConst(Constant *C, Type *Ty, 725 const DataLayout &DL) { 726 return ConstantFoldLoadFromConst(C, Ty, APInt(64, 0), DL); 727 } 728 729 Constant *llvm::ConstantFoldLoadFromConstPtr(Constant *C, Type *Ty, 730 APInt Offset, 731 const DataLayout &DL) { 732 C = cast<Constant>(C->stripAndAccumulateConstantOffsets( 733 DL, Offset, /* AllowNonInbounds */ true)); 734 735 if (auto *GV = dyn_cast<GlobalVariable>(C)) 736 if (GV->isConstant() && GV->hasDefinitiveInitializer()) 737 if (Constant *Result = ConstantFoldLoadFromConst(GV->getInitializer(), Ty, 738 Offset, DL)) 739 return Result; 740 741 // If this load comes from anywhere in a uniform constant global, the value 742 // is always the same, regardless of the loaded offset. 743 if (auto *GV = dyn_cast<GlobalVariable>(getUnderlyingObject(C))) { 744 if (GV->isConstant() && GV->hasDefinitiveInitializer()) { 745 if (Constant *Res = 746 ConstantFoldLoadFromUniformValue(GV->getInitializer(), Ty)) 747 return Res; 748 } 749 } 750 751 return nullptr; 752 } 753 754 Constant *llvm::ConstantFoldLoadFromConstPtr(Constant *C, Type *Ty, 755 const DataLayout &DL) { 756 APInt Offset(DL.getIndexTypeSizeInBits(C->getType()), 0); 757 return ConstantFoldLoadFromConstPtr(C, Ty, Offset, DL); 758 } 759 760 Constant *llvm::ConstantFoldLoadFromUniformValue(Constant *C, Type *Ty) { 761 if (isa<PoisonValue>(C)) 762 return PoisonValue::get(Ty); 763 if (isa<UndefValue>(C)) 764 return UndefValue::get(Ty); 765 if (C->isNullValue() && !Ty->isX86_MMXTy() && !Ty->isX86_AMXTy()) 766 return Constant::getNullValue(Ty); 767 if (C->isAllOnesValue() && 768 (Ty->isIntOrIntVectorTy() || Ty->isFPOrFPVectorTy())) 769 return Constant::getAllOnesValue(Ty); 770 return nullptr; 771 } 772 773 namespace { 774 775 /// One of Op0/Op1 is a constant expression. 776 /// Attempt to symbolically evaluate the result of a binary operator merging 777 /// these together. If target data info is available, it is provided as DL, 778 /// otherwise DL is null. 779 Constant *SymbolicallyEvaluateBinop(unsigned Opc, Constant *Op0, Constant *Op1, 780 const DataLayout &DL) { 781 // SROA 782 783 // Fold (and 0xffffffff00000000, (shl x, 32)) -> shl. 784 // Fold (lshr (or X, Y), 32) -> (lshr [X/Y], 32) if one doesn't contribute 785 // bits. 786 787 if (Opc == Instruction::And) { 788 KnownBits Known0 = computeKnownBits(Op0, DL); 789 KnownBits Known1 = computeKnownBits(Op1, DL); 790 if ((Known1.One | Known0.Zero).isAllOnes()) { 791 // All the bits of Op0 that the 'and' could be masking are already zero. 792 return Op0; 793 } 794 if ((Known0.One | Known1.Zero).isAllOnes()) { 795 // All the bits of Op1 that the 'and' could be masking are already zero. 796 return Op1; 797 } 798 799 Known0 &= Known1; 800 if (Known0.isConstant()) 801 return ConstantInt::get(Op0->getType(), Known0.getConstant()); 802 } 803 804 // If the constant expr is something like &A[123] - &A[4].f, fold this into a 805 // constant. This happens frequently when iterating over a global array. 806 if (Opc == Instruction::Sub) { 807 GlobalValue *GV1, *GV2; 808 APInt Offs1, Offs2; 809 810 if (IsConstantOffsetFromGlobal(Op0, GV1, Offs1, DL)) 811 if (IsConstantOffsetFromGlobal(Op1, GV2, Offs2, DL) && GV1 == GV2) { 812 unsigned OpSize = DL.getTypeSizeInBits(Op0->getType()); 813 814 // (&GV+C1) - (&GV+C2) -> C1-C2, pointer arithmetic cannot overflow. 815 // PtrToInt may change the bitwidth so we have convert to the right size 816 // first. 817 return ConstantInt::get(Op0->getType(), Offs1.zextOrTrunc(OpSize) - 818 Offs2.zextOrTrunc(OpSize)); 819 } 820 } 821 822 return nullptr; 823 } 824 825 /// If array indices are not pointer-sized integers, explicitly cast them so 826 /// that they aren't implicitly casted by the getelementptr. 827 Constant *CastGEPIndices(Type *SrcElemTy, ArrayRef<Constant *> Ops, 828 Type *ResultTy, Optional<unsigned> InRangeIndex, 829 const DataLayout &DL, const TargetLibraryInfo *TLI) { 830 Type *IntIdxTy = DL.getIndexType(ResultTy); 831 Type *IntIdxScalarTy = IntIdxTy->getScalarType(); 832 833 bool Any = false; 834 SmallVector<Constant*, 32> NewIdxs; 835 for (unsigned i = 1, e = Ops.size(); i != e; ++i) { 836 if ((i == 1 || 837 !isa<StructType>(GetElementPtrInst::getIndexedType( 838 SrcElemTy, Ops.slice(1, i - 1)))) && 839 Ops[i]->getType()->getScalarType() != IntIdxScalarTy) { 840 Any = true; 841 Type *NewType = Ops[i]->getType()->isVectorTy() 842 ? IntIdxTy 843 : IntIdxScalarTy; 844 NewIdxs.push_back(ConstantExpr::getCast(CastInst::getCastOpcode(Ops[i], 845 true, 846 NewType, 847 true), 848 Ops[i], NewType)); 849 } else 850 NewIdxs.push_back(Ops[i]); 851 } 852 853 if (!Any) 854 return nullptr; 855 856 Constant *C = ConstantExpr::getGetElementPtr( 857 SrcElemTy, Ops[0], NewIdxs, /*InBounds=*/false, InRangeIndex); 858 return ConstantFoldConstant(C, DL, TLI); 859 } 860 861 /// Strip the pointer casts, but preserve the address space information. 862 Constant *StripPtrCastKeepAS(Constant *Ptr) { 863 assert(Ptr->getType()->isPointerTy() && "Not a pointer type"); 864 auto *OldPtrTy = cast<PointerType>(Ptr->getType()); 865 Ptr = cast<Constant>(Ptr->stripPointerCasts()); 866 auto *NewPtrTy = cast<PointerType>(Ptr->getType()); 867 868 // Preserve the address space number of the pointer. 869 if (NewPtrTy->getAddressSpace() != OldPtrTy->getAddressSpace()) { 870 Ptr = ConstantExpr::getPointerCast( 871 Ptr, PointerType::getWithSamePointeeType(NewPtrTy, 872 OldPtrTy->getAddressSpace())); 873 } 874 return Ptr; 875 } 876 877 /// If we can symbolically evaluate the GEP constant expression, do so. 878 Constant *SymbolicallyEvaluateGEP(const GEPOperator *GEP, 879 ArrayRef<Constant *> Ops, 880 const DataLayout &DL, 881 const TargetLibraryInfo *TLI) { 882 const GEPOperator *InnermostGEP = GEP; 883 bool InBounds = GEP->isInBounds(); 884 885 Type *SrcElemTy = GEP->getSourceElementType(); 886 Type *ResElemTy = GEP->getResultElementType(); 887 Type *ResTy = GEP->getType(); 888 if (!SrcElemTy->isSized() || isa<ScalableVectorType>(SrcElemTy)) 889 return nullptr; 890 891 if (Constant *C = CastGEPIndices(SrcElemTy, Ops, ResTy, 892 GEP->getInRangeIndex(), DL, TLI)) 893 return C; 894 895 Constant *Ptr = Ops[0]; 896 if (!Ptr->getType()->isPointerTy()) 897 return nullptr; 898 899 Type *IntIdxTy = DL.getIndexType(Ptr->getType()); 900 901 for (unsigned i = 1, e = Ops.size(); i != e; ++i) 902 if (!isa<ConstantInt>(Ops[i])) 903 return nullptr; 904 905 unsigned BitWidth = DL.getTypeSizeInBits(IntIdxTy); 906 APInt Offset = 907 APInt(BitWidth, 908 DL.getIndexedOffsetInType( 909 SrcElemTy, 910 makeArrayRef((Value * const *)Ops.data() + 1, Ops.size() - 1))); 911 Ptr = StripPtrCastKeepAS(Ptr); 912 913 // If this is a GEP of a GEP, fold it all into a single GEP. 914 while (auto *GEP = dyn_cast<GEPOperator>(Ptr)) { 915 InnermostGEP = GEP; 916 InBounds &= GEP->isInBounds(); 917 918 SmallVector<Value *, 4> NestedOps(llvm::drop_begin(GEP->operands())); 919 920 // Do not try the incorporate the sub-GEP if some index is not a number. 921 bool AllConstantInt = true; 922 for (Value *NestedOp : NestedOps) 923 if (!isa<ConstantInt>(NestedOp)) { 924 AllConstantInt = false; 925 break; 926 } 927 if (!AllConstantInt) 928 break; 929 930 Ptr = cast<Constant>(GEP->getOperand(0)); 931 SrcElemTy = GEP->getSourceElementType(); 932 Offset += APInt(BitWidth, DL.getIndexedOffsetInType(SrcElemTy, NestedOps)); 933 Ptr = StripPtrCastKeepAS(Ptr); 934 } 935 936 // If the base value for this address is a literal integer value, fold the 937 // getelementptr to the resulting integer value casted to the pointer type. 938 APInt BasePtr(BitWidth, 0); 939 if (auto *CE = dyn_cast<ConstantExpr>(Ptr)) { 940 if (CE->getOpcode() == Instruction::IntToPtr) { 941 if (auto *Base = dyn_cast<ConstantInt>(CE->getOperand(0))) 942 BasePtr = Base->getValue().zextOrTrunc(BitWidth); 943 } 944 } 945 946 auto *PTy = cast<PointerType>(Ptr->getType()); 947 if ((Ptr->isNullValue() || BasePtr != 0) && 948 !DL.isNonIntegralPointerType(PTy)) { 949 Constant *C = ConstantInt::get(Ptr->getContext(), Offset + BasePtr); 950 return ConstantExpr::getIntToPtr(C, ResTy); 951 } 952 953 // Otherwise form a regular getelementptr. Recompute the indices so that 954 // we eliminate over-indexing of the notional static type array bounds. 955 // This makes it easy to determine if the getelementptr is "inbounds". 956 // Also, this helps GlobalOpt do SROA on GlobalVariables. 957 958 // For GEPs of GlobalValues, use the value type even for opaque pointers. 959 // Otherwise use an i8 GEP. 960 if (auto *GV = dyn_cast<GlobalValue>(Ptr)) 961 SrcElemTy = GV->getValueType(); 962 else if (!PTy->isOpaque()) 963 SrcElemTy = PTy->getNonOpaquePointerElementType(); 964 else 965 SrcElemTy = Type::getInt8Ty(Ptr->getContext()); 966 967 if (!SrcElemTy->isSized()) 968 return nullptr; 969 970 Type *ElemTy = SrcElemTy; 971 SmallVector<APInt> Indices = DL.getGEPIndicesForOffset(ElemTy, Offset); 972 if (Offset != 0) 973 return nullptr; 974 975 // Try to add additional zero indices to reach the desired result element 976 // type. 977 // TODO: Should we avoid extra zero indices if ResElemTy can't be reached and 978 // we'll have to insert a bitcast anyway? 979 while (ElemTy != ResElemTy) { 980 Type *NextTy = GetElementPtrInst::getTypeAtIndex(ElemTy, (uint64_t)0); 981 if (!NextTy) 982 break; 983 984 Indices.push_back(APInt::getZero(isa<StructType>(ElemTy) ? 32 : BitWidth)); 985 ElemTy = NextTy; 986 } 987 988 SmallVector<Constant *, 32> NewIdxs; 989 for (const APInt &Index : Indices) 990 NewIdxs.push_back(ConstantInt::get( 991 Type::getIntNTy(Ptr->getContext(), Index.getBitWidth()), Index)); 992 993 // Preserve the inrange index from the innermost GEP if possible. We must 994 // have calculated the same indices up to and including the inrange index. 995 Optional<unsigned> InRangeIndex; 996 if (Optional<unsigned> LastIRIndex = InnermostGEP->getInRangeIndex()) 997 if (SrcElemTy == InnermostGEP->getSourceElementType() && 998 NewIdxs.size() > *LastIRIndex) { 999 InRangeIndex = LastIRIndex; 1000 for (unsigned I = 0; I <= *LastIRIndex; ++I) 1001 if (NewIdxs[I] != InnermostGEP->getOperand(I + 1)) 1002 return nullptr; 1003 } 1004 1005 // Create a GEP. 1006 Constant *C = ConstantExpr::getGetElementPtr(SrcElemTy, Ptr, NewIdxs, 1007 InBounds, InRangeIndex); 1008 assert( 1009 cast<PointerType>(C->getType())->isOpaqueOrPointeeTypeMatches(ElemTy) && 1010 "Computed GetElementPtr has unexpected type!"); 1011 1012 // If we ended up indexing a member with a type that doesn't match 1013 // the type of what the original indices indexed, add a cast. 1014 if (C->getType() != ResTy) 1015 C = FoldBitCast(C, ResTy, DL); 1016 1017 return C; 1018 } 1019 1020 /// Attempt to constant fold an instruction with the 1021 /// specified opcode and operands. If successful, the constant result is 1022 /// returned, if not, null is returned. Note that this function can fail when 1023 /// attempting to fold instructions like loads and stores, which have no 1024 /// constant expression form. 1025 Constant *ConstantFoldInstOperandsImpl(const Value *InstOrCE, unsigned Opcode, 1026 ArrayRef<Constant *> Ops, 1027 const DataLayout &DL, 1028 const TargetLibraryInfo *TLI) { 1029 Type *DestTy = InstOrCE->getType(); 1030 1031 if (Instruction::isUnaryOp(Opcode)) 1032 return ConstantFoldUnaryOpOperand(Opcode, Ops[0], DL); 1033 1034 if (Instruction::isBinaryOp(Opcode)) { 1035 switch (Opcode) { 1036 default: 1037 break; 1038 case Instruction::FAdd: 1039 case Instruction::FSub: 1040 case Instruction::FMul: 1041 case Instruction::FDiv: 1042 case Instruction::FRem: 1043 // Handle floating point instructions separately to account for denormals 1044 // TODO: If a constant expression is being folded rather than an 1045 // instruction, denormals will not be flushed/treated as zero 1046 if (const auto *I = dyn_cast<Instruction>(InstOrCE)) { 1047 return ConstantFoldFPInstOperands(Opcode, Ops[0], Ops[1], DL, I); 1048 } 1049 } 1050 return ConstantFoldBinaryOpOperands(Opcode, Ops[0], Ops[1], DL); 1051 } 1052 1053 if (Instruction::isCast(Opcode)) 1054 return ConstantFoldCastOperand(Opcode, Ops[0], DestTy, DL); 1055 1056 if (auto *GEP = dyn_cast<GEPOperator>(InstOrCE)) { 1057 if (Constant *C = SymbolicallyEvaluateGEP(GEP, Ops, DL, TLI)) 1058 return C; 1059 1060 return ConstantExpr::getGetElementPtr(GEP->getSourceElementType(), Ops[0], 1061 Ops.slice(1), GEP->isInBounds(), 1062 GEP->getInRangeIndex()); 1063 } 1064 1065 if (auto *CE = dyn_cast<ConstantExpr>(InstOrCE)) { 1066 if (CE->isCompare()) 1067 return ConstantFoldCompareInstOperands(CE->getPredicate(), Ops[0], Ops[1], 1068 DL, TLI); 1069 return CE->getWithOperands(Ops); 1070 } 1071 1072 switch (Opcode) { 1073 default: return nullptr; 1074 case Instruction::ICmp: 1075 case Instruction::FCmp: { 1076 auto *C = cast<CmpInst>(InstOrCE); 1077 return ConstantFoldCompareInstOperands(C->getPredicate(), Ops[0], Ops[1], 1078 DL, TLI, C); 1079 } 1080 case Instruction::Freeze: 1081 return isGuaranteedNotToBeUndefOrPoison(Ops[0]) ? Ops[0] : nullptr; 1082 case Instruction::Call: 1083 if (auto *F = dyn_cast<Function>(Ops.back())) { 1084 const auto *Call = cast<CallBase>(InstOrCE); 1085 if (canConstantFoldCallTo(Call, F)) 1086 return ConstantFoldCall(Call, F, Ops.slice(0, Ops.size() - 1), TLI); 1087 } 1088 return nullptr; 1089 case Instruction::Select: 1090 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]); 1091 case Instruction::ExtractElement: 1092 return ConstantExpr::getExtractElement(Ops[0], Ops[1]); 1093 case Instruction::ExtractValue: 1094 return ConstantFoldExtractValueInstruction( 1095 Ops[0], cast<ExtractValueInst>(InstOrCE)->getIndices()); 1096 case Instruction::InsertElement: 1097 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]); 1098 case Instruction::InsertValue: 1099 return ConstantFoldInsertValueInstruction( 1100 Ops[0], Ops[1], cast<InsertValueInst>(InstOrCE)->getIndices()); 1101 case Instruction::ShuffleVector: 1102 return ConstantExpr::getShuffleVector( 1103 Ops[0], Ops[1], cast<ShuffleVectorInst>(InstOrCE)->getShuffleMask()); 1104 case Instruction::Load: { 1105 const auto *LI = dyn_cast<LoadInst>(InstOrCE); 1106 if (LI->isVolatile()) 1107 return nullptr; 1108 return ConstantFoldLoadFromConstPtr(Ops[0], LI->getType(), DL); 1109 } 1110 } 1111 } 1112 1113 } // end anonymous namespace 1114 1115 //===----------------------------------------------------------------------===// 1116 // Constant Folding public APIs 1117 //===----------------------------------------------------------------------===// 1118 1119 namespace { 1120 1121 Constant * 1122 ConstantFoldConstantImpl(const Constant *C, const DataLayout &DL, 1123 const TargetLibraryInfo *TLI, 1124 SmallDenseMap<Constant *, Constant *> &FoldedOps) { 1125 if (!isa<ConstantVector>(C) && !isa<ConstantExpr>(C)) 1126 return const_cast<Constant *>(C); 1127 1128 SmallVector<Constant *, 8> Ops; 1129 for (const Use &OldU : C->operands()) { 1130 Constant *OldC = cast<Constant>(&OldU); 1131 Constant *NewC = OldC; 1132 // Recursively fold the ConstantExpr's operands. If we have already folded 1133 // a ConstantExpr, we don't have to process it again. 1134 if (isa<ConstantVector>(OldC) || isa<ConstantExpr>(OldC)) { 1135 auto It = FoldedOps.find(OldC); 1136 if (It == FoldedOps.end()) { 1137 NewC = ConstantFoldConstantImpl(OldC, DL, TLI, FoldedOps); 1138 FoldedOps.insert({OldC, NewC}); 1139 } else { 1140 NewC = It->second; 1141 } 1142 } 1143 Ops.push_back(NewC); 1144 } 1145 1146 if (auto *CE = dyn_cast<ConstantExpr>(C)) { 1147 if (Constant *Res = 1148 ConstantFoldInstOperandsImpl(CE, CE->getOpcode(), Ops, DL, TLI)) 1149 return Res; 1150 return const_cast<Constant *>(C); 1151 } 1152 1153 assert(isa<ConstantVector>(C)); 1154 return ConstantVector::get(Ops); 1155 } 1156 1157 } // end anonymous namespace 1158 1159 Constant *llvm::ConstantFoldInstruction(Instruction *I, const DataLayout &DL, 1160 const TargetLibraryInfo *TLI) { 1161 // Handle PHI nodes quickly here... 1162 if (auto *PN = dyn_cast<PHINode>(I)) { 1163 Constant *CommonValue = nullptr; 1164 1165 SmallDenseMap<Constant *, Constant *> FoldedOps; 1166 for (Value *Incoming : PN->incoming_values()) { 1167 // If the incoming value is undef then skip it. Note that while we could 1168 // skip the value if it is equal to the phi node itself we choose not to 1169 // because that would break the rule that constant folding only applies if 1170 // all operands are constants. 1171 if (isa<UndefValue>(Incoming)) 1172 continue; 1173 // If the incoming value is not a constant, then give up. 1174 auto *C = dyn_cast<Constant>(Incoming); 1175 if (!C) 1176 return nullptr; 1177 // Fold the PHI's operands. 1178 C = ConstantFoldConstantImpl(C, DL, TLI, FoldedOps); 1179 // If the incoming value is a different constant to 1180 // the one we saw previously, then give up. 1181 if (CommonValue && C != CommonValue) 1182 return nullptr; 1183 CommonValue = C; 1184 } 1185 1186 // If we reach here, all incoming values are the same constant or undef. 1187 return CommonValue ? CommonValue : UndefValue::get(PN->getType()); 1188 } 1189 1190 // Scan the operand list, checking to see if they are all constants, if so, 1191 // hand off to ConstantFoldInstOperandsImpl. 1192 if (!all_of(I->operands(), [](Use &U) { return isa<Constant>(U); })) 1193 return nullptr; 1194 1195 SmallDenseMap<Constant *, Constant *> FoldedOps; 1196 SmallVector<Constant *, 8> Ops; 1197 for (const Use &OpU : I->operands()) { 1198 auto *Op = cast<Constant>(&OpU); 1199 // Fold the Instruction's operands. 1200 Op = ConstantFoldConstantImpl(Op, DL, TLI, FoldedOps); 1201 Ops.push_back(Op); 1202 } 1203 1204 return ConstantFoldInstOperands(I, Ops, DL, TLI); 1205 } 1206 1207 Constant *llvm::ConstantFoldConstant(const Constant *C, const DataLayout &DL, 1208 const TargetLibraryInfo *TLI) { 1209 SmallDenseMap<Constant *, Constant *> FoldedOps; 1210 return ConstantFoldConstantImpl(C, DL, TLI, FoldedOps); 1211 } 1212 1213 Constant *llvm::ConstantFoldInstOperands(Instruction *I, 1214 ArrayRef<Constant *> Ops, 1215 const DataLayout &DL, 1216 const TargetLibraryInfo *TLI) { 1217 return ConstantFoldInstOperandsImpl(I, I->getOpcode(), Ops, DL, TLI); 1218 } 1219 1220 Constant *llvm::ConstantFoldCompareInstOperands( 1221 unsigned IntPredicate, Constant *Ops0, Constant *Ops1, const DataLayout &DL, 1222 const TargetLibraryInfo *TLI, const Instruction *I) { 1223 CmpInst::Predicate Predicate = (CmpInst::Predicate)IntPredicate; 1224 // fold: icmp (inttoptr x), null -> icmp x, 0 1225 // fold: icmp null, (inttoptr x) -> icmp 0, x 1226 // fold: icmp (ptrtoint x), 0 -> icmp x, null 1227 // fold: icmp 0, (ptrtoint x) -> icmp null, x 1228 // fold: icmp (inttoptr x), (inttoptr y) -> icmp trunc/zext x, trunc/zext y 1229 // fold: icmp (ptrtoint x), (ptrtoint y) -> icmp x, y 1230 // 1231 // FIXME: The following comment is out of data and the DataLayout is here now. 1232 // ConstantExpr::getCompare cannot do this, because it doesn't have DL 1233 // around to know if bit truncation is happening. 1234 if (auto *CE0 = dyn_cast<ConstantExpr>(Ops0)) { 1235 if (Ops1->isNullValue()) { 1236 if (CE0->getOpcode() == Instruction::IntToPtr) { 1237 Type *IntPtrTy = DL.getIntPtrType(CE0->getType()); 1238 // Convert the integer value to the right size to ensure we get the 1239 // proper extension or truncation. 1240 Constant *C = ConstantExpr::getIntegerCast(CE0->getOperand(0), 1241 IntPtrTy, false); 1242 Constant *Null = Constant::getNullValue(C->getType()); 1243 return ConstantFoldCompareInstOperands(Predicate, C, Null, DL, TLI); 1244 } 1245 1246 // Only do this transformation if the int is intptrty in size, otherwise 1247 // there is a truncation or extension that we aren't modeling. 1248 if (CE0->getOpcode() == Instruction::PtrToInt) { 1249 Type *IntPtrTy = DL.getIntPtrType(CE0->getOperand(0)->getType()); 1250 if (CE0->getType() == IntPtrTy) { 1251 Constant *C = CE0->getOperand(0); 1252 Constant *Null = Constant::getNullValue(C->getType()); 1253 return ConstantFoldCompareInstOperands(Predicate, C, Null, DL, TLI); 1254 } 1255 } 1256 } 1257 1258 if (auto *CE1 = dyn_cast<ConstantExpr>(Ops1)) { 1259 if (CE0->getOpcode() == CE1->getOpcode()) { 1260 if (CE0->getOpcode() == Instruction::IntToPtr) { 1261 Type *IntPtrTy = DL.getIntPtrType(CE0->getType()); 1262 1263 // Convert the integer value to the right size to ensure we get the 1264 // proper extension or truncation. 1265 Constant *C0 = ConstantExpr::getIntegerCast(CE0->getOperand(0), 1266 IntPtrTy, false); 1267 Constant *C1 = ConstantExpr::getIntegerCast(CE1->getOperand(0), 1268 IntPtrTy, false); 1269 return ConstantFoldCompareInstOperands(Predicate, C0, C1, DL, TLI); 1270 } 1271 1272 // Only do this transformation if the int is intptrty in size, otherwise 1273 // there is a truncation or extension that we aren't modeling. 1274 if (CE0->getOpcode() == Instruction::PtrToInt) { 1275 Type *IntPtrTy = DL.getIntPtrType(CE0->getOperand(0)->getType()); 1276 if (CE0->getType() == IntPtrTy && 1277 CE0->getOperand(0)->getType() == CE1->getOperand(0)->getType()) { 1278 return ConstantFoldCompareInstOperands( 1279 Predicate, CE0->getOperand(0), CE1->getOperand(0), DL, TLI); 1280 } 1281 } 1282 } 1283 } 1284 1285 // icmp eq (or x, y), 0 -> (icmp eq x, 0) & (icmp eq y, 0) 1286 // icmp ne (or x, y), 0 -> (icmp ne x, 0) | (icmp ne y, 0) 1287 if ((Predicate == ICmpInst::ICMP_EQ || Predicate == ICmpInst::ICMP_NE) && 1288 CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) { 1289 Constant *LHS = ConstantFoldCompareInstOperands( 1290 Predicate, CE0->getOperand(0), Ops1, DL, TLI); 1291 Constant *RHS = ConstantFoldCompareInstOperands( 1292 Predicate, CE0->getOperand(1), Ops1, DL, TLI); 1293 unsigned OpC = 1294 Predicate == ICmpInst::ICMP_EQ ? Instruction::And : Instruction::Or; 1295 return ConstantFoldBinaryOpOperands(OpC, LHS, RHS, DL); 1296 } 1297 1298 // Convert pointer comparison (base+offset1) pred (base+offset2) into 1299 // offset1 pred offset2, for the case where the offset is inbounds. This 1300 // only works for equality and unsigned comparison, as inbounds permits 1301 // crossing the sign boundary. However, the offset comparison itself is 1302 // signed. 1303 if (Ops0->getType()->isPointerTy() && !ICmpInst::isSigned(Predicate)) { 1304 unsigned IndexWidth = DL.getIndexTypeSizeInBits(Ops0->getType()); 1305 APInt Offset0(IndexWidth, 0); 1306 Value *Stripped0 = 1307 Ops0->stripAndAccumulateInBoundsConstantOffsets(DL, Offset0); 1308 APInt Offset1(IndexWidth, 0); 1309 Value *Stripped1 = 1310 Ops1->stripAndAccumulateInBoundsConstantOffsets(DL, Offset1); 1311 if (Stripped0 == Stripped1) 1312 return ConstantExpr::getCompare( 1313 ICmpInst::getSignedPredicate(Predicate), 1314 ConstantInt::get(CE0->getContext(), Offset0), 1315 ConstantInt::get(CE0->getContext(), Offset1)); 1316 } 1317 } else if (isa<ConstantExpr>(Ops1)) { 1318 // If RHS is a constant expression, but the left side isn't, swap the 1319 // operands and try again. 1320 Predicate = ICmpInst::getSwappedPredicate(Predicate); 1321 return ConstantFoldCompareInstOperands(Predicate, Ops1, Ops0, DL, TLI); 1322 } 1323 1324 // Flush any denormal constant float input according to denormal handling 1325 // mode. 1326 Ops0 = FlushFPConstant(Ops0, I, /* IsOutput */ false); 1327 Ops1 = FlushFPConstant(Ops1, I, /* IsOutput */ false); 1328 1329 return ConstantExpr::getCompare(Predicate, Ops0, Ops1); 1330 } 1331 1332 Constant *llvm::ConstantFoldUnaryOpOperand(unsigned Opcode, Constant *Op, 1333 const DataLayout &DL) { 1334 assert(Instruction::isUnaryOp(Opcode)); 1335 1336 return ConstantExpr::get(Opcode, Op); 1337 } 1338 1339 Constant *llvm::ConstantFoldBinaryOpOperands(unsigned Opcode, Constant *LHS, 1340 Constant *RHS, 1341 const DataLayout &DL) { 1342 assert(Instruction::isBinaryOp(Opcode)); 1343 if (isa<ConstantExpr>(LHS) || isa<ConstantExpr>(RHS)) 1344 if (Constant *C = SymbolicallyEvaluateBinop(Opcode, LHS, RHS, DL)) 1345 return C; 1346 1347 if (ConstantExpr::isDesirableBinOp(Opcode)) 1348 return ConstantExpr::get(Opcode, LHS, RHS); 1349 return ConstantFoldBinaryInstruction(Opcode, LHS, RHS); 1350 } 1351 1352 Constant *llvm::FlushFPConstant(Constant *Operand, const Instruction *I, 1353 bool IsOutput) { 1354 if (!I || !I->getParent() || !I->getFunction()) 1355 return Operand; 1356 1357 ConstantFP *CFP = dyn_cast<ConstantFP>(Operand); 1358 if (!CFP) 1359 return Operand; 1360 1361 const APFloat &APF = CFP->getValueAPF(); 1362 Type *Ty = CFP->getType(); 1363 DenormalMode DenormMode = 1364 I->getFunction()->getDenormalMode(Ty->getFltSemantics()); 1365 DenormalMode::DenormalModeKind Mode = 1366 IsOutput ? DenormMode.Output : DenormMode.Input; 1367 switch (Mode) { 1368 default: 1369 llvm_unreachable("unknown denormal mode"); 1370 return Operand; 1371 case DenormalMode::IEEE: 1372 return Operand; 1373 case DenormalMode::PreserveSign: 1374 if (APF.isDenormal()) { 1375 return ConstantFP::get( 1376 Ty->getContext(), 1377 APFloat::getZero(Ty->getFltSemantics(), APF.isNegative())); 1378 } 1379 return Operand; 1380 case DenormalMode::PositiveZero: 1381 if (APF.isDenormal()) { 1382 return ConstantFP::get(Ty->getContext(), 1383 APFloat::getZero(Ty->getFltSemantics(), false)); 1384 } 1385 return Operand; 1386 } 1387 return Operand; 1388 } 1389 1390 Constant *llvm::ConstantFoldFPInstOperands(unsigned Opcode, Constant *LHS, 1391 Constant *RHS, const DataLayout &DL, 1392 const Instruction *I) { 1393 if (Instruction::isBinaryOp(Opcode)) { 1394 // Flush denormal inputs if needed. 1395 Constant *Op0 = FlushFPConstant(LHS, I, /* IsOutput */ false); 1396 Constant *Op1 = FlushFPConstant(RHS, I, /* IsOutput */ false); 1397 1398 // Calculate constant result. 1399 Constant *C = ConstantFoldBinaryOpOperands(Opcode, Op0, Op1, DL); 1400 1401 // Flush denormal output if needed. 1402 return FlushFPConstant(C, I, /* IsOutput */ true); 1403 } 1404 // If instruction lacks a parent/function and the denormal mode cannot be 1405 // determined, use the default (IEEE). 1406 return ConstantFoldBinaryOpOperands(Opcode, LHS, RHS, DL); 1407 } 1408 1409 Constant *llvm::ConstantFoldCastOperand(unsigned Opcode, Constant *C, 1410 Type *DestTy, const DataLayout &DL) { 1411 assert(Instruction::isCast(Opcode)); 1412 switch (Opcode) { 1413 default: 1414 llvm_unreachable("Missing case"); 1415 case Instruction::PtrToInt: 1416 if (auto *CE = dyn_cast<ConstantExpr>(C)) { 1417 Constant *FoldedValue = nullptr; 1418 // If the input is a inttoptr, eliminate the pair. This requires knowing 1419 // the width of a pointer, so it can't be done in ConstantExpr::getCast. 1420 if (CE->getOpcode() == Instruction::IntToPtr) { 1421 // zext/trunc the inttoptr to pointer size. 1422 FoldedValue = ConstantExpr::getIntegerCast( 1423 CE->getOperand(0), DL.getIntPtrType(CE->getType()), 1424 /*IsSigned=*/false); 1425 } else if (auto *GEP = dyn_cast<GEPOperator>(CE)) { 1426 // If we have GEP, we can perform the following folds: 1427 // (ptrtoint (gep null, x)) -> x 1428 // (ptrtoint (gep (gep null, x), y) -> x + y, etc. 1429 unsigned BitWidth = DL.getIndexTypeSizeInBits(GEP->getType()); 1430 APInt BaseOffset(BitWidth, 0); 1431 auto *Base = cast<Constant>(GEP->stripAndAccumulateConstantOffsets( 1432 DL, BaseOffset, /*AllowNonInbounds=*/true)); 1433 if (Base->isNullValue()) { 1434 FoldedValue = ConstantInt::get(CE->getContext(), BaseOffset); 1435 } else { 1436 // ptrtoint (gep i8, Ptr, (sub 0, V)) -> sub (ptrtoint Ptr), V 1437 if (GEP->getNumIndices() == 1 && 1438 GEP->getSourceElementType()->isIntegerTy(8)) { 1439 auto *Ptr = cast<Constant>(GEP->getPointerOperand()); 1440 auto *Sub = dyn_cast<ConstantExpr>(GEP->getOperand(1)); 1441 Type *IntIdxTy = DL.getIndexType(Ptr->getType()); 1442 if (Sub && Sub->getType() == IntIdxTy && 1443 Sub->getOpcode() == Instruction::Sub && 1444 Sub->getOperand(0)->isNullValue()) 1445 FoldedValue = ConstantExpr::getSub( 1446 ConstantExpr::getPtrToInt(Ptr, IntIdxTy), Sub->getOperand(1)); 1447 } 1448 } 1449 } 1450 if (FoldedValue) { 1451 // Do a zext or trunc to get to the ptrtoint dest size. 1452 return ConstantExpr::getIntegerCast(FoldedValue, DestTy, 1453 /*IsSigned=*/false); 1454 } 1455 } 1456 return ConstantExpr::getCast(Opcode, C, DestTy); 1457 case Instruction::IntToPtr: 1458 // If the input is a ptrtoint, turn the pair into a ptr to ptr bitcast if 1459 // the int size is >= the ptr size and the address spaces are the same. 1460 // This requires knowing the width of a pointer, so it can't be done in 1461 // ConstantExpr::getCast. 1462 if (auto *CE = dyn_cast<ConstantExpr>(C)) { 1463 if (CE->getOpcode() == Instruction::PtrToInt) { 1464 Constant *SrcPtr = CE->getOperand(0); 1465 unsigned SrcPtrSize = DL.getPointerTypeSizeInBits(SrcPtr->getType()); 1466 unsigned MidIntSize = CE->getType()->getScalarSizeInBits(); 1467 1468 if (MidIntSize >= SrcPtrSize) { 1469 unsigned SrcAS = SrcPtr->getType()->getPointerAddressSpace(); 1470 if (SrcAS == DestTy->getPointerAddressSpace()) 1471 return FoldBitCast(CE->getOperand(0), DestTy, DL); 1472 } 1473 } 1474 } 1475 1476 return ConstantExpr::getCast(Opcode, C, DestTy); 1477 case Instruction::Trunc: 1478 case Instruction::ZExt: 1479 case Instruction::SExt: 1480 case Instruction::FPTrunc: 1481 case Instruction::FPExt: 1482 case Instruction::UIToFP: 1483 case Instruction::SIToFP: 1484 case Instruction::FPToUI: 1485 case Instruction::FPToSI: 1486 case Instruction::AddrSpaceCast: 1487 return ConstantExpr::getCast(Opcode, C, DestTy); 1488 case Instruction::BitCast: 1489 return FoldBitCast(C, DestTy, DL); 1490 } 1491 } 1492 1493 //===----------------------------------------------------------------------===// 1494 // Constant Folding for Calls 1495 // 1496 1497 bool llvm::canConstantFoldCallTo(const CallBase *Call, const Function *F) { 1498 if (Call->isNoBuiltin()) 1499 return false; 1500 if (Call->getFunctionType() != F->getFunctionType()) 1501 return false; 1502 switch (F->getIntrinsicID()) { 1503 // Operations that do not operate floating-point numbers and do not depend on 1504 // FP environment can be folded even in strictfp functions. 1505 case Intrinsic::bswap: 1506 case Intrinsic::ctpop: 1507 case Intrinsic::ctlz: 1508 case Intrinsic::cttz: 1509 case Intrinsic::fshl: 1510 case Intrinsic::fshr: 1511 case Intrinsic::launder_invariant_group: 1512 case Intrinsic::strip_invariant_group: 1513 case Intrinsic::masked_load: 1514 case Intrinsic::get_active_lane_mask: 1515 case Intrinsic::abs: 1516 case Intrinsic::smax: 1517 case Intrinsic::smin: 1518 case Intrinsic::umax: 1519 case Intrinsic::umin: 1520 case Intrinsic::sadd_with_overflow: 1521 case Intrinsic::uadd_with_overflow: 1522 case Intrinsic::ssub_with_overflow: 1523 case Intrinsic::usub_with_overflow: 1524 case Intrinsic::smul_with_overflow: 1525 case Intrinsic::umul_with_overflow: 1526 case Intrinsic::sadd_sat: 1527 case Intrinsic::uadd_sat: 1528 case Intrinsic::ssub_sat: 1529 case Intrinsic::usub_sat: 1530 case Intrinsic::smul_fix: 1531 case Intrinsic::smul_fix_sat: 1532 case Intrinsic::bitreverse: 1533 case Intrinsic::is_constant: 1534 case Intrinsic::vector_reduce_add: 1535 case Intrinsic::vector_reduce_mul: 1536 case Intrinsic::vector_reduce_and: 1537 case Intrinsic::vector_reduce_or: 1538 case Intrinsic::vector_reduce_xor: 1539 case Intrinsic::vector_reduce_smin: 1540 case Intrinsic::vector_reduce_smax: 1541 case Intrinsic::vector_reduce_umin: 1542 case Intrinsic::vector_reduce_umax: 1543 // Target intrinsics 1544 case Intrinsic::amdgcn_perm: 1545 case Intrinsic::arm_mve_vctp8: 1546 case Intrinsic::arm_mve_vctp16: 1547 case Intrinsic::arm_mve_vctp32: 1548 case Intrinsic::arm_mve_vctp64: 1549 case Intrinsic::aarch64_sve_convert_from_svbool: 1550 // WebAssembly float semantics are always known 1551 case Intrinsic::wasm_trunc_signed: 1552 case Intrinsic::wasm_trunc_unsigned: 1553 return true; 1554 1555 // Floating point operations cannot be folded in strictfp functions in 1556 // general case. They can be folded if FP environment is known to compiler. 1557 case Intrinsic::minnum: 1558 case Intrinsic::maxnum: 1559 case Intrinsic::minimum: 1560 case Intrinsic::maximum: 1561 case Intrinsic::log: 1562 case Intrinsic::log2: 1563 case Intrinsic::log10: 1564 case Intrinsic::exp: 1565 case Intrinsic::exp2: 1566 case Intrinsic::sqrt: 1567 case Intrinsic::sin: 1568 case Intrinsic::cos: 1569 case Intrinsic::pow: 1570 case Intrinsic::powi: 1571 case Intrinsic::fma: 1572 case Intrinsic::fmuladd: 1573 case Intrinsic::fptoui_sat: 1574 case Intrinsic::fptosi_sat: 1575 case Intrinsic::convert_from_fp16: 1576 case Intrinsic::convert_to_fp16: 1577 case Intrinsic::amdgcn_cos: 1578 case Intrinsic::amdgcn_cubeid: 1579 case Intrinsic::amdgcn_cubema: 1580 case Intrinsic::amdgcn_cubesc: 1581 case Intrinsic::amdgcn_cubetc: 1582 case Intrinsic::amdgcn_fmul_legacy: 1583 case Intrinsic::amdgcn_fma_legacy: 1584 case Intrinsic::amdgcn_fract: 1585 case Intrinsic::amdgcn_ldexp: 1586 case Intrinsic::amdgcn_sin: 1587 // The intrinsics below depend on rounding mode in MXCSR. 1588 case Intrinsic::x86_sse_cvtss2si: 1589 case Intrinsic::x86_sse_cvtss2si64: 1590 case Intrinsic::x86_sse_cvttss2si: 1591 case Intrinsic::x86_sse_cvttss2si64: 1592 case Intrinsic::x86_sse2_cvtsd2si: 1593 case Intrinsic::x86_sse2_cvtsd2si64: 1594 case Intrinsic::x86_sse2_cvttsd2si: 1595 case Intrinsic::x86_sse2_cvttsd2si64: 1596 case Intrinsic::x86_avx512_vcvtss2si32: 1597 case Intrinsic::x86_avx512_vcvtss2si64: 1598 case Intrinsic::x86_avx512_cvttss2si: 1599 case Intrinsic::x86_avx512_cvttss2si64: 1600 case Intrinsic::x86_avx512_vcvtsd2si32: 1601 case Intrinsic::x86_avx512_vcvtsd2si64: 1602 case Intrinsic::x86_avx512_cvttsd2si: 1603 case Intrinsic::x86_avx512_cvttsd2si64: 1604 case Intrinsic::x86_avx512_vcvtss2usi32: 1605 case Intrinsic::x86_avx512_vcvtss2usi64: 1606 case Intrinsic::x86_avx512_cvttss2usi: 1607 case Intrinsic::x86_avx512_cvttss2usi64: 1608 case Intrinsic::x86_avx512_vcvtsd2usi32: 1609 case Intrinsic::x86_avx512_vcvtsd2usi64: 1610 case Intrinsic::x86_avx512_cvttsd2usi: 1611 case Intrinsic::x86_avx512_cvttsd2usi64: 1612 return !Call->isStrictFP(); 1613 1614 // Sign operations are actually bitwise operations, they do not raise 1615 // exceptions even for SNANs. 1616 case Intrinsic::fabs: 1617 case Intrinsic::copysign: 1618 // Non-constrained variants of rounding operations means default FP 1619 // environment, they can be folded in any case. 1620 case Intrinsic::ceil: 1621 case Intrinsic::floor: 1622 case Intrinsic::round: 1623 case Intrinsic::roundeven: 1624 case Intrinsic::trunc: 1625 case Intrinsic::nearbyint: 1626 case Intrinsic::rint: 1627 // Constrained intrinsics can be folded if FP environment is known 1628 // to compiler. 1629 case Intrinsic::experimental_constrained_fma: 1630 case Intrinsic::experimental_constrained_fmuladd: 1631 case Intrinsic::experimental_constrained_fadd: 1632 case Intrinsic::experimental_constrained_fsub: 1633 case Intrinsic::experimental_constrained_fmul: 1634 case Intrinsic::experimental_constrained_fdiv: 1635 case Intrinsic::experimental_constrained_frem: 1636 case Intrinsic::experimental_constrained_ceil: 1637 case Intrinsic::experimental_constrained_floor: 1638 case Intrinsic::experimental_constrained_round: 1639 case Intrinsic::experimental_constrained_roundeven: 1640 case Intrinsic::experimental_constrained_trunc: 1641 case Intrinsic::experimental_constrained_nearbyint: 1642 case Intrinsic::experimental_constrained_rint: 1643 case Intrinsic::experimental_constrained_fcmp: 1644 case Intrinsic::experimental_constrained_fcmps: 1645 return true; 1646 default: 1647 return false; 1648 case Intrinsic::not_intrinsic: break; 1649 } 1650 1651 if (!F->hasName() || Call->isStrictFP()) 1652 return false; 1653 1654 // In these cases, the check of the length is required. We don't want to 1655 // return true for a name like "cos\0blah" which strcmp would return equal to 1656 // "cos", but has length 8. 1657 StringRef Name = F->getName(); 1658 switch (Name[0]) { 1659 default: 1660 return false; 1661 case 'a': 1662 return Name == "acos" || Name == "acosf" || 1663 Name == "asin" || Name == "asinf" || 1664 Name == "atan" || Name == "atanf" || 1665 Name == "atan2" || Name == "atan2f"; 1666 case 'c': 1667 return Name == "ceil" || Name == "ceilf" || 1668 Name == "cos" || Name == "cosf" || 1669 Name == "cosh" || Name == "coshf"; 1670 case 'e': 1671 return Name == "exp" || Name == "expf" || 1672 Name == "exp2" || Name == "exp2f"; 1673 case 'f': 1674 return Name == "fabs" || Name == "fabsf" || 1675 Name == "floor" || Name == "floorf" || 1676 Name == "fmod" || Name == "fmodf"; 1677 case 'l': 1678 return Name == "log" || Name == "logf" || 1679 Name == "log2" || Name == "log2f" || 1680 Name == "log10" || Name == "log10f"; 1681 case 'n': 1682 return Name == "nearbyint" || Name == "nearbyintf"; 1683 case 'p': 1684 return Name == "pow" || Name == "powf"; 1685 case 'r': 1686 return Name == "remainder" || Name == "remainderf" || 1687 Name == "rint" || Name == "rintf" || 1688 Name == "round" || Name == "roundf"; 1689 case 's': 1690 return Name == "sin" || Name == "sinf" || 1691 Name == "sinh" || Name == "sinhf" || 1692 Name == "sqrt" || Name == "sqrtf"; 1693 case 't': 1694 return Name == "tan" || Name == "tanf" || 1695 Name == "tanh" || Name == "tanhf" || 1696 Name == "trunc" || Name == "truncf"; 1697 case '_': 1698 // Check for various function names that get used for the math functions 1699 // when the header files are preprocessed with the macro 1700 // __FINITE_MATH_ONLY__ enabled. 1701 // The '12' here is the length of the shortest name that can match. 1702 // We need to check the size before looking at Name[1] and Name[2] 1703 // so we may as well check a limit that will eliminate mismatches. 1704 if (Name.size() < 12 || Name[1] != '_') 1705 return false; 1706 switch (Name[2]) { 1707 default: 1708 return false; 1709 case 'a': 1710 return Name == "__acos_finite" || Name == "__acosf_finite" || 1711 Name == "__asin_finite" || Name == "__asinf_finite" || 1712 Name == "__atan2_finite" || Name == "__atan2f_finite"; 1713 case 'c': 1714 return Name == "__cosh_finite" || Name == "__coshf_finite"; 1715 case 'e': 1716 return Name == "__exp_finite" || Name == "__expf_finite" || 1717 Name == "__exp2_finite" || Name == "__exp2f_finite"; 1718 case 'l': 1719 return Name == "__log_finite" || Name == "__logf_finite" || 1720 Name == "__log10_finite" || Name == "__log10f_finite"; 1721 case 'p': 1722 return Name == "__pow_finite" || Name == "__powf_finite"; 1723 case 's': 1724 return Name == "__sinh_finite" || Name == "__sinhf_finite"; 1725 } 1726 } 1727 } 1728 1729 namespace { 1730 1731 Constant *GetConstantFoldFPValue(double V, Type *Ty) { 1732 if (Ty->isHalfTy() || Ty->isFloatTy()) { 1733 APFloat APF(V); 1734 bool unused; 1735 APF.convert(Ty->getFltSemantics(), APFloat::rmNearestTiesToEven, &unused); 1736 return ConstantFP::get(Ty->getContext(), APF); 1737 } 1738 if (Ty->isDoubleTy()) 1739 return ConstantFP::get(Ty->getContext(), APFloat(V)); 1740 llvm_unreachable("Can only constant fold half/float/double"); 1741 } 1742 1743 /// Clear the floating-point exception state. 1744 inline void llvm_fenv_clearexcept() { 1745 #if defined(HAVE_FENV_H) && HAVE_DECL_FE_ALL_EXCEPT 1746 feclearexcept(FE_ALL_EXCEPT); 1747 #endif 1748 errno = 0; 1749 } 1750 1751 /// Test if a floating-point exception was raised. 1752 inline bool llvm_fenv_testexcept() { 1753 int errno_val = errno; 1754 if (errno_val == ERANGE || errno_val == EDOM) 1755 return true; 1756 #if defined(HAVE_FENV_H) && HAVE_DECL_FE_ALL_EXCEPT && HAVE_DECL_FE_INEXACT 1757 if (fetestexcept(FE_ALL_EXCEPT & ~FE_INEXACT)) 1758 return true; 1759 #endif 1760 return false; 1761 } 1762 1763 Constant *ConstantFoldFP(double (*NativeFP)(double), const APFloat &V, 1764 Type *Ty) { 1765 llvm_fenv_clearexcept(); 1766 double Result = NativeFP(V.convertToDouble()); 1767 if (llvm_fenv_testexcept()) { 1768 llvm_fenv_clearexcept(); 1769 return nullptr; 1770 } 1771 1772 return GetConstantFoldFPValue(Result, Ty); 1773 } 1774 1775 Constant *ConstantFoldBinaryFP(double (*NativeFP)(double, double), 1776 const APFloat &V, const APFloat &W, Type *Ty) { 1777 llvm_fenv_clearexcept(); 1778 double Result = NativeFP(V.convertToDouble(), W.convertToDouble()); 1779 if (llvm_fenv_testexcept()) { 1780 llvm_fenv_clearexcept(); 1781 return nullptr; 1782 } 1783 1784 return GetConstantFoldFPValue(Result, Ty); 1785 } 1786 1787 Constant *constantFoldVectorReduce(Intrinsic::ID IID, Constant *Op) { 1788 FixedVectorType *VT = dyn_cast<FixedVectorType>(Op->getType()); 1789 if (!VT) 1790 return nullptr; 1791 1792 // This isn't strictly necessary, but handle the special/common case of zero: 1793 // all integer reductions of a zero input produce zero. 1794 if (isa<ConstantAggregateZero>(Op)) 1795 return ConstantInt::get(VT->getElementType(), 0); 1796 1797 // This is the same as the underlying binops - poison propagates. 1798 if (isa<PoisonValue>(Op) || Op->containsPoisonElement()) 1799 return PoisonValue::get(VT->getElementType()); 1800 1801 // TODO: Handle undef. 1802 if (!isa<ConstantVector>(Op) && !isa<ConstantDataVector>(Op)) 1803 return nullptr; 1804 1805 auto *EltC = dyn_cast<ConstantInt>(Op->getAggregateElement(0U)); 1806 if (!EltC) 1807 return nullptr; 1808 1809 APInt Acc = EltC->getValue(); 1810 for (unsigned I = 1, E = VT->getNumElements(); I != E; I++) { 1811 if (!(EltC = dyn_cast<ConstantInt>(Op->getAggregateElement(I)))) 1812 return nullptr; 1813 const APInt &X = EltC->getValue(); 1814 switch (IID) { 1815 case Intrinsic::vector_reduce_add: 1816 Acc = Acc + X; 1817 break; 1818 case Intrinsic::vector_reduce_mul: 1819 Acc = Acc * X; 1820 break; 1821 case Intrinsic::vector_reduce_and: 1822 Acc = Acc & X; 1823 break; 1824 case Intrinsic::vector_reduce_or: 1825 Acc = Acc | X; 1826 break; 1827 case Intrinsic::vector_reduce_xor: 1828 Acc = Acc ^ X; 1829 break; 1830 case Intrinsic::vector_reduce_smin: 1831 Acc = APIntOps::smin(Acc, X); 1832 break; 1833 case Intrinsic::vector_reduce_smax: 1834 Acc = APIntOps::smax(Acc, X); 1835 break; 1836 case Intrinsic::vector_reduce_umin: 1837 Acc = APIntOps::umin(Acc, X); 1838 break; 1839 case Intrinsic::vector_reduce_umax: 1840 Acc = APIntOps::umax(Acc, X); 1841 break; 1842 } 1843 } 1844 1845 return ConstantInt::get(Op->getContext(), Acc); 1846 } 1847 1848 /// Attempt to fold an SSE floating point to integer conversion of a constant 1849 /// floating point. If roundTowardZero is false, the default IEEE rounding is 1850 /// used (toward nearest, ties to even). This matches the behavior of the 1851 /// non-truncating SSE instructions in the default rounding mode. The desired 1852 /// integer type Ty is used to select how many bits are available for the 1853 /// result. Returns null if the conversion cannot be performed, otherwise 1854 /// returns the Constant value resulting from the conversion. 1855 Constant *ConstantFoldSSEConvertToInt(const APFloat &Val, bool roundTowardZero, 1856 Type *Ty, bool IsSigned) { 1857 // All of these conversion intrinsics form an integer of at most 64bits. 1858 unsigned ResultWidth = Ty->getIntegerBitWidth(); 1859 assert(ResultWidth <= 64 && 1860 "Can only constant fold conversions to 64 and 32 bit ints"); 1861 1862 uint64_t UIntVal; 1863 bool isExact = false; 1864 APFloat::roundingMode mode = roundTowardZero? APFloat::rmTowardZero 1865 : APFloat::rmNearestTiesToEven; 1866 APFloat::opStatus status = 1867 Val.convertToInteger(makeMutableArrayRef(UIntVal), ResultWidth, 1868 IsSigned, mode, &isExact); 1869 if (status != APFloat::opOK && 1870 (!roundTowardZero || status != APFloat::opInexact)) 1871 return nullptr; 1872 return ConstantInt::get(Ty, UIntVal, IsSigned); 1873 } 1874 1875 double getValueAsDouble(ConstantFP *Op) { 1876 Type *Ty = Op->getType(); 1877 1878 if (Ty->isBFloatTy() || Ty->isHalfTy() || Ty->isFloatTy() || Ty->isDoubleTy()) 1879 return Op->getValueAPF().convertToDouble(); 1880 1881 bool unused; 1882 APFloat APF = Op->getValueAPF(); 1883 APF.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, &unused); 1884 return APF.convertToDouble(); 1885 } 1886 1887 static bool getConstIntOrUndef(Value *Op, const APInt *&C) { 1888 if (auto *CI = dyn_cast<ConstantInt>(Op)) { 1889 C = &CI->getValue(); 1890 return true; 1891 } 1892 if (isa<UndefValue>(Op)) { 1893 C = nullptr; 1894 return true; 1895 } 1896 return false; 1897 } 1898 1899 /// Checks if the given intrinsic call, which evaluates to constant, is allowed 1900 /// to be folded. 1901 /// 1902 /// \param CI Constrained intrinsic call. 1903 /// \param St Exception flags raised during constant evaluation. 1904 static bool mayFoldConstrained(ConstrainedFPIntrinsic *CI, 1905 APFloat::opStatus St) { 1906 Optional<RoundingMode> ORM = CI->getRoundingMode(); 1907 Optional<fp::ExceptionBehavior> EB = CI->getExceptionBehavior(); 1908 1909 // If the operation does not change exception status flags, it is safe 1910 // to fold. 1911 if (St == APFloat::opStatus::opOK) 1912 return true; 1913 1914 // If evaluation raised FP exception, the result can depend on rounding 1915 // mode. If the latter is unknown, folding is not possible. 1916 if (ORM && *ORM == RoundingMode::Dynamic) 1917 return false; 1918 1919 // If FP exceptions are ignored, fold the call, even if such exception is 1920 // raised. 1921 if (EB && *EB != fp::ExceptionBehavior::ebStrict) 1922 return true; 1923 1924 // Leave the calculation for runtime so that exception flags be correctly set 1925 // in hardware. 1926 return false; 1927 } 1928 1929 /// Returns the rounding mode that should be used for constant evaluation. 1930 static RoundingMode 1931 getEvaluationRoundingMode(const ConstrainedFPIntrinsic *CI) { 1932 Optional<RoundingMode> ORM = CI->getRoundingMode(); 1933 if (!ORM || *ORM == RoundingMode::Dynamic) 1934 // Even if the rounding mode is unknown, try evaluating the operation. 1935 // If it does not raise inexact exception, rounding was not applied, 1936 // so the result is exact and does not depend on rounding mode. Whether 1937 // other FP exceptions are raised, it does not depend on rounding mode. 1938 return RoundingMode::NearestTiesToEven; 1939 return *ORM; 1940 } 1941 1942 static Constant *ConstantFoldScalarCall1(StringRef Name, 1943 Intrinsic::ID IntrinsicID, 1944 Type *Ty, 1945 ArrayRef<Constant *> Operands, 1946 const TargetLibraryInfo *TLI, 1947 const CallBase *Call) { 1948 assert(Operands.size() == 1 && "Wrong number of operands."); 1949 1950 if (IntrinsicID == Intrinsic::is_constant) { 1951 // We know we have a "Constant" argument. But we want to only 1952 // return true for manifest constants, not those that depend on 1953 // constants with unknowable values, e.g. GlobalValue or BlockAddress. 1954 if (Operands[0]->isManifestConstant()) 1955 return ConstantInt::getTrue(Ty->getContext()); 1956 return nullptr; 1957 } 1958 if (isa<UndefValue>(Operands[0])) { 1959 // cosine(arg) is between -1 and 1. cosine(invalid arg) is NaN. 1960 // ctpop() is between 0 and bitwidth, pick 0 for undef. 1961 // fptoui.sat and fptosi.sat can always fold to zero (for a zero input). 1962 if (IntrinsicID == Intrinsic::cos || 1963 IntrinsicID == Intrinsic::ctpop || 1964 IntrinsicID == Intrinsic::fptoui_sat || 1965 IntrinsicID == Intrinsic::fptosi_sat) 1966 return Constant::getNullValue(Ty); 1967 if (IntrinsicID == Intrinsic::bswap || 1968 IntrinsicID == Intrinsic::bitreverse || 1969 IntrinsicID == Intrinsic::launder_invariant_group || 1970 IntrinsicID == Intrinsic::strip_invariant_group) 1971 return Operands[0]; 1972 } 1973 1974 if (isa<ConstantPointerNull>(Operands[0])) { 1975 // launder(null) == null == strip(null) iff in addrspace 0 1976 if (IntrinsicID == Intrinsic::launder_invariant_group || 1977 IntrinsicID == Intrinsic::strip_invariant_group) { 1978 // If instruction is not yet put in a basic block (e.g. when cloning 1979 // a function during inlining), Call's caller may not be available. 1980 // So check Call's BB first before querying Call->getCaller. 1981 const Function *Caller = 1982 Call->getParent() ? Call->getCaller() : nullptr; 1983 if (Caller && 1984 !NullPointerIsDefined( 1985 Caller, Operands[0]->getType()->getPointerAddressSpace())) { 1986 return Operands[0]; 1987 } 1988 return nullptr; 1989 } 1990 } 1991 1992 if (auto *Op = dyn_cast<ConstantFP>(Operands[0])) { 1993 if (IntrinsicID == Intrinsic::convert_to_fp16) { 1994 APFloat Val(Op->getValueAPF()); 1995 1996 bool lost = false; 1997 Val.convert(APFloat::IEEEhalf(), APFloat::rmNearestTiesToEven, &lost); 1998 1999 return ConstantInt::get(Ty->getContext(), Val.bitcastToAPInt()); 2000 } 2001 2002 APFloat U = Op->getValueAPF(); 2003 2004 if (IntrinsicID == Intrinsic::wasm_trunc_signed || 2005 IntrinsicID == Intrinsic::wasm_trunc_unsigned) { 2006 bool Signed = IntrinsicID == Intrinsic::wasm_trunc_signed; 2007 2008 if (U.isNaN()) 2009 return nullptr; 2010 2011 unsigned Width = Ty->getIntegerBitWidth(); 2012 APSInt Int(Width, !Signed); 2013 bool IsExact = false; 2014 APFloat::opStatus Status = 2015 U.convertToInteger(Int, APFloat::rmTowardZero, &IsExact); 2016 2017 if (Status == APFloat::opOK || Status == APFloat::opInexact) 2018 return ConstantInt::get(Ty, Int); 2019 2020 return nullptr; 2021 } 2022 2023 if (IntrinsicID == Intrinsic::fptoui_sat || 2024 IntrinsicID == Intrinsic::fptosi_sat) { 2025 // convertToInteger() already has the desired saturation semantics. 2026 APSInt Int(Ty->getIntegerBitWidth(), 2027 IntrinsicID == Intrinsic::fptoui_sat); 2028 bool IsExact; 2029 U.convertToInteger(Int, APFloat::rmTowardZero, &IsExact); 2030 return ConstantInt::get(Ty, Int); 2031 } 2032 2033 if (!Ty->isHalfTy() && !Ty->isFloatTy() && !Ty->isDoubleTy()) 2034 return nullptr; 2035 2036 // Use internal versions of these intrinsics. 2037 2038 if (IntrinsicID == Intrinsic::nearbyint || IntrinsicID == Intrinsic::rint) { 2039 U.roundToIntegral(APFloat::rmNearestTiesToEven); 2040 return ConstantFP::get(Ty->getContext(), U); 2041 } 2042 2043 if (IntrinsicID == Intrinsic::round) { 2044 U.roundToIntegral(APFloat::rmNearestTiesToAway); 2045 return ConstantFP::get(Ty->getContext(), U); 2046 } 2047 2048 if (IntrinsicID == Intrinsic::roundeven) { 2049 U.roundToIntegral(APFloat::rmNearestTiesToEven); 2050 return ConstantFP::get(Ty->getContext(), U); 2051 } 2052 2053 if (IntrinsicID == Intrinsic::ceil) { 2054 U.roundToIntegral(APFloat::rmTowardPositive); 2055 return ConstantFP::get(Ty->getContext(), U); 2056 } 2057 2058 if (IntrinsicID == Intrinsic::floor) { 2059 U.roundToIntegral(APFloat::rmTowardNegative); 2060 return ConstantFP::get(Ty->getContext(), U); 2061 } 2062 2063 if (IntrinsicID == Intrinsic::trunc) { 2064 U.roundToIntegral(APFloat::rmTowardZero); 2065 return ConstantFP::get(Ty->getContext(), U); 2066 } 2067 2068 if (IntrinsicID == Intrinsic::fabs) { 2069 U.clearSign(); 2070 return ConstantFP::get(Ty->getContext(), U); 2071 } 2072 2073 if (IntrinsicID == Intrinsic::amdgcn_fract) { 2074 // The v_fract instruction behaves like the OpenCL spec, which defines 2075 // fract(x) as fmin(x - floor(x), 0x1.fffffep-1f): "The min() operator is 2076 // there to prevent fract(-small) from returning 1.0. It returns the 2077 // largest positive floating-point number less than 1.0." 2078 APFloat FloorU(U); 2079 FloorU.roundToIntegral(APFloat::rmTowardNegative); 2080 APFloat FractU(U - FloorU); 2081 APFloat AlmostOne(U.getSemantics(), 1); 2082 AlmostOne.next(/*nextDown*/ true); 2083 return ConstantFP::get(Ty->getContext(), minimum(FractU, AlmostOne)); 2084 } 2085 2086 // Rounding operations (floor, trunc, ceil, round and nearbyint) do not 2087 // raise FP exceptions, unless the argument is signaling NaN. 2088 2089 Optional<APFloat::roundingMode> RM; 2090 switch (IntrinsicID) { 2091 default: 2092 break; 2093 case Intrinsic::experimental_constrained_nearbyint: 2094 case Intrinsic::experimental_constrained_rint: { 2095 auto CI = cast<ConstrainedFPIntrinsic>(Call); 2096 RM = CI->getRoundingMode(); 2097 if (!RM || *RM == RoundingMode::Dynamic) 2098 return nullptr; 2099 break; 2100 } 2101 case Intrinsic::experimental_constrained_round: 2102 RM = APFloat::rmNearestTiesToAway; 2103 break; 2104 case Intrinsic::experimental_constrained_ceil: 2105 RM = APFloat::rmTowardPositive; 2106 break; 2107 case Intrinsic::experimental_constrained_floor: 2108 RM = APFloat::rmTowardNegative; 2109 break; 2110 case Intrinsic::experimental_constrained_trunc: 2111 RM = APFloat::rmTowardZero; 2112 break; 2113 } 2114 if (RM) { 2115 auto CI = cast<ConstrainedFPIntrinsic>(Call); 2116 if (U.isFinite()) { 2117 APFloat::opStatus St = U.roundToIntegral(*RM); 2118 if (IntrinsicID == Intrinsic::experimental_constrained_rint && 2119 St == APFloat::opInexact) { 2120 Optional<fp::ExceptionBehavior> EB = CI->getExceptionBehavior(); 2121 if (EB && *EB == fp::ebStrict) 2122 return nullptr; 2123 } 2124 } else if (U.isSignaling()) { 2125 Optional<fp::ExceptionBehavior> EB = CI->getExceptionBehavior(); 2126 if (EB && *EB != fp::ebIgnore) 2127 return nullptr; 2128 U = APFloat::getQNaN(U.getSemantics()); 2129 } 2130 return ConstantFP::get(Ty->getContext(), U); 2131 } 2132 2133 /// We only fold functions with finite arguments. Folding NaN and inf is 2134 /// likely to be aborted with an exception anyway, and some host libms 2135 /// have known errors raising exceptions. 2136 if (!U.isFinite()) 2137 return nullptr; 2138 2139 /// Currently APFloat versions of these functions do not exist, so we use 2140 /// the host native double versions. Float versions are not called 2141 /// directly but for all these it is true (float)(f((double)arg)) == 2142 /// f(arg). Long double not supported yet. 2143 const APFloat &APF = Op->getValueAPF(); 2144 2145 switch (IntrinsicID) { 2146 default: break; 2147 case Intrinsic::log: 2148 return ConstantFoldFP(log, APF, Ty); 2149 case Intrinsic::log2: 2150 // TODO: What about hosts that lack a C99 library? 2151 return ConstantFoldFP(Log2, APF, Ty); 2152 case Intrinsic::log10: 2153 // TODO: What about hosts that lack a C99 library? 2154 return ConstantFoldFP(log10, APF, Ty); 2155 case Intrinsic::exp: 2156 return ConstantFoldFP(exp, APF, Ty); 2157 case Intrinsic::exp2: 2158 // Fold exp2(x) as pow(2, x), in case the host lacks a C99 library. 2159 return ConstantFoldBinaryFP(pow, APFloat(2.0), APF, Ty); 2160 case Intrinsic::sin: 2161 return ConstantFoldFP(sin, APF, Ty); 2162 case Intrinsic::cos: 2163 return ConstantFoldFP(cos, APF, Ty); 2164 case Intrinsic::sqrt: 2165 return ConstantFoldFP(sqrt, APF, Ty); 2166 case Intrinsic::amdgcn_cos: 2167 case Intrinsic::amdgcn_sin: { 2168 double V = getValueAsDouble(Op); 2169 if (V < -256.0 || V > 256.0) 2170 // The gfx8 and gfx9 architectures handle arguments outside the range 2171 // [-256, 256] differently. This should be a rare case so bail out 2172 // rather than trying to handle the difference. 2173 return nullptr; 2174 bool IsCos = IntrinsicID == Intrinsic::amdgcn_cos; 2175 double V4 = V * 4.0; 2176 if (V4 == floor(V4)) { 2177 // Force exact results for quarter-integer inputs. 2178 const double SinVals[4] = { 0.0, 1.0, 0.0, -1.0 }; 2179 V = SinVals[((int)V4 + (IsCos ? 1 : 0)) & 3]; 2180 } else { 2181 if (IsCos) 2182 V = cos(V * 2.0 * numbers::pi); 2183 else 2184 V = sin(V * 2.0 * numbers::pi); 2185 } 2186 return GetConstantFoldFPValue(V, Ty); 2187 } 2188 } 2189 2190 if (!TLI) 2191 return nullptr; 2192 2193 LibFunc Func = NotLibFunc; 2194 if (!TLI->getLibFunc(Name, Func)) 2195 return nullptr; 2196 2197 switch (Func) { 2198 default: 2199 break; 2200 case LibFunc_acos: 2201 case LibFunc_acosf: 2202 case LibFunc_acos_finite: 2203 case LibFunc_acosf_finite: 2204 if (TLI->has(Func)) 2205 return ConstantFoldFP(acos, APF, Ty); 2206 break; 2207 case LibFunc_asin: 2208 case LibFunc_asinf: 2209 case LibFunc_asin_finite: 2210 case LibFunc_asinf_finite: 2211 if (TLI->has(Func)) 2212 return ConstantFoldFP(asin, APF, Ty); 2213 break; 2214 case LibFunc_atan: 2215 case LibFunc_atanf: 2216 if (TLI->has(Func)) 2217 return ConstantFoldFP(atan, APF, Ty); 2218 break; 2219 case LibFunc_ceil: 2220 case LibFunc_ceilf: 2221 if (TLI->has(Func)) { 2222 U.roundToIntegral(APFloat::rmTowardPositive); 2223 return ConstantFP::get(Ty->getContext(), U); 2224 } 2225 break; 2226 case LibFunc_cos: 2227 case LibFunc_cosf: 2228 if (TLI->has(Func)) 2229 return ConstantFoldFP(cos, APF, Ty); 2230 break; 2231 case LibFunc_cosh: 2232 case LibFunc_coshf: 2233 case LibFunc_cosh_finite: 2234 case LibFunc_coshf_finite: 2235 if (TLI->has(Func)) 2236 return ConstantFoldFP(cosh, APF, Ty); 2237 break; 2238 case LibFunc_exp: 2239 case LibFunc_expf: 2240 case LibFunc_exp_finite: 2241 case LibFunc_expf_finite: 2242 if (TLI->has(Func)) 2243 return ConstantFoldFP(exp, APF, Ty); 2244 break; 2245 case LibFunc_exp2: 2246 case LibFunc_exp2f: 2247 case LibFunc_exp2_finite: 2248 case LibFunc_exp2f_finite: 2249 if (TLI->has(Func)) 2250 // Fold exp2(x) as pow(2, x), in case the host lacks a C99 library. 2251 return ConstantFoldBinaryFP(pow, APFloat(2.0), APF, Ty); 2252 break; 2253 case LibFunc_fabs: 2254 case LibFunc_fabsf: 2255 if (TLI->has(Func)) { 2256 U.clearSign(); 2257 return ConstantFP::get(Ty->getContext(), U); 2258 } 2259 break; 2260 case LibFunc_floor: 2261 case LibFunc_floorf: 2262 if (TLI->has(Func)) { 2263 U.roundToIntegral(APFloat::rmTowardNegative); 2264 return ConstantFP::get(Ty->getContext(), U); 2265 } 2266 break; 2267 case LibFunc_log: 2268 case LibFunc_logf: 2269 case LibFunc_log_finite: 2270 case LibFunc_logf_finite: 2271 if (!APF.isNegative() && !APF.isZero() && TLI->has(Func)) 2272 return ConstantFoldFP(log, APF, Ty); 2273 break; 2274 case LibFunc_log2: 2275 case LibFunc_log2f: 2276 case LibFunc_log2_finite: 2277 case LibFunc_log2f_finite: 2278 if (!APF.isNegative() && !APF.isZero() && TLI->has(Func)) 2279 // TODO: What about hosts that lack a C99 library? 2280 return ConstantFoldFP(Log2, APF, Ty); 2281 break; 2282 case LibFunc_log10: 2283 case LibFunc_log10f: 2284 case LibFunc_log10_finite: 2285 case LibFunc_log10f_finite: 2286 if (!APF.isNegative() && !APF.isZero() && TLI->has(Func)) 2287 // TODO: What about hosts that lack a C99 library? 2288 return ConstantFoldFP(log10, APF, Ty); 2289 break; 2290 case LibFunc_nearbyint: 2291 case LibFunc_nearbyintf: 2292 case LibFunc_rint: 2293 case LibFunc_rintf: 2294 if (TLI->has(Func)) { 2295 U.roundToIntegral(APFloat::rmNearestTiesToEven); 2296 return ConstantFP::get(Ty->getContext(), U); 2297 } 2298 break; 2299 case LibFunc_round: 2300 case LibFunc_roundf: 2301 if (TLI->has(Func)) { 2302 U.roundToIntegral(APFloat::rmNearestTiesToAway); 2303 return ConstantFP::get(Ty->getContext(), U); 2304 } 2305 break; 2306 case LibFunc_sin: 2307 case LibFunc_sinf: 2308 if (TLI->has(Func)) 2309 return ConstantFoldFP(sin, APF, Ty); 2310 break; 2311 case LibFunc_sinh: 2312 case LibFunc_sinhf: 2313 case LibFunc_sinh_finite: 2314 case LibFunc_sinhf_finite: 2315 if (TLI->has(Func)) 2316 return ConstantFoldFP(sinh, APF, Ty); 2317 break; 2318 case LibFunc_sqrt: 2319 case LibFunc_sqrtf: 2320 if (!APF.isNegative() && TLI->has(Func)) 2321 return ConstantFoldFP(sqrt, APF, Ty); 2322 break; 2323 case LibFunc_tan: 2324 case LibFunc_tanf: 2325 if (TLI->has(Func)) 2326 return ConstantFoldFP(tan, APF, Ty); 2327 break; 2328 case LibFunc_tanh: 2329 case LibFunc_tanhf: 2330 if (TLI->has(Func)) 2331 return ConstantFoldFP(tanh, APF, Ty); 2332 break; 2333 case LibFunc_trunc: 2334 case LibFunc_truncf: 2335 if (TLI->has(Func)) { 2336 U.roundToIntegral(APFloat::rmTowardZero); 2337 return ConstantFP::get(Ty->getContext(), U); 2338 } 2339 break; 2340 } 2341 return nullptr; 2342 } 2343 2344 if (auto *Op = dyn_cast<ConstantInt>(Operands[0])) { 2345 switch (IntrinsicID) { 2346 case Intrinsic::bswap: 2347 return ConstantInt::get(Ty->getContext(), Op->getValue().byteSwap()); 2348 case Intrinsic::ctpop: 2349 return ConstantInt::get(Ty, Op->getValue().countPopulation()); 2350 case Intrinsic::bitreverse: 2351 return ConstantInt::get(Ty->getContext(), Op->getValue().reverseBits()); 2352 case Intrinsic::convert_from_fp16: { 2353 APFloat Val(APFloat::IEEEhalf(), Op->getValue()); 2354 2355 bool lost = false; 2356 APFloat::opStatus status = Val.convert( 2357 Ty->getFltSemantics(), APFloat::rmNearestTiesToEven, &lost); 2358 2359 // Conversion is always precise. 2360 (void)status; 2361 assert(status == APFloat::opOK && !lost && 2362 "Precision lost during fp16 constfolding"); 2363 2364 return ConstantFP::get(Ty->getContext(), Val); 2365 } 2366 default: 2367 return nullptr; 2368 } 2369 } 2370 2371 switch (IntrinsicID) { 2372 default: break; 2373 case Intrinsic::vector_reduce_add: 2374 case Intrinsic::vector_reduce_mul: 2375 case Intrinsic::vector_reduce_and: 2376 case Intrinsic::vector_reduce_or: 2377 case Intrinsic::vector_reduce_xor: 2378 case Intrinsic::vector_reduce_smin: 2379 case Intrinsic::vector_reduce_smax: 2380 case Intrinsic::vector_reduce_umin: 2381 case Intrinsic::vector_reduce_umax: 2382 if (Constant *C = constantFoldVectorReduce(IntrinsicID, Operands[0])) 2383 return C; 2384 break; 2385 } 2386 2387 // Support ConstantVector in case we have an Undef in the top. 2388 if (isa<ConstantVector>(Operands[0]) || 2389 isa<ConstantDataVector>(Operands[0])) { 2390 auto *Op = cast<Constant>(Operands[0]); 2391 switch (IntrinsicID) { 2392 default: break; 2393 case Intrinsic::x86_sse_cvtss2si: 2394 case Intrinsic::x86_sse_cvtss2si64: 2395 case Intrinsic::x86_sse2_cvtsd2si: 2396 case Intrinsic::x86_sse2_cvtsd2si64: 2397 if (ConstantFP *FPOp = 2398 dyn_cast_or_null<ConstantFP>(Op->getAggregateElement(0U))) 2399 return ConstantFoldSSEConvertToInt(FPOp->getValueAPF(), 2400 /*roundTowardZero=*/false, Ty, 2401 /*IsSigned*/true); 2402 break; 2403 case Intrinsic::x86_sse_cvttss2si: 2404 case Intrinsic::x86_sse_cvttss2si64: 2405 case Intrinsic::x86_sse2_cvttsd2si: 2406 case Intrinsic::x86_sse2_cvttsd2si64: 2407 if (ConstantFP *FPOp = 2408 dyn_cast_or_null<ConstantFP>(Op->getAggregateElement(0U))) 2409 return ConstantFoldSSEConvertToInt(FPOp->getValueAPF(), 2410 /*roundTowardZero=*/true, Ty, 2411 /*IsSigned*/true); 2412 break; 2413 } 2414 } 2415 2416 return nullptr; 2417 } 2418 2419 static Constant *evaluateCompare(const APFloat &Op1, const APFloat &Op2, 2420 const ConstrainedFPIntrinsic *Call) { 2421 APFloat::opStatus St = APFloat::opOK; 2422 auto *FCmp = cast<ConstrainedFPCmpIntrinsic>(Call); 2423 FCmpInst::Predicate Cond = FCmp->getPredicate(); 2424 if (FCmp->isSignaling()) { 2425 if (Op1.isNaN() || Op2.isNaN()) 2426 St = APFloat::opInvalidOp; 2427 } else { 2428 if (Op1.isSignaling() || Op2.isSignaling()) 2429 St = APFloat::opInvalidOp; 2430 } 2431 bool Result = FCmpInst::compare(Op1, Op2, Cond); 2432 if (mayFoldConstrained(const_cast<ConstrainedFPCmpIntrinsic *>(FCmp), St)) 2433 return ConstantInt::get(Call->getType()->getScalarType(), Result); 2434 return nullptr; 2435 } 2436 2437 static Constant *ConstantFoldScalarCall2(StringRef Name, 2438 Intrinsic::ID IntrinsicID, 2439 Type *Ty, 2440 ArrayRef<Constant *> Operands, 2441 const TargetLibraryInfo *TLI, 2442 const CallBase *Call) { 2443 assert(Operands.size() == 2 && "Wrong number of operands."); 2444 2445 if (Ty->isFloatingPointTy()) { 2446 // TODO: We should have undef handling for all of the FP intrinsics that 2447 // are attempted to be folded in this function. 2448 bool IsOp0Undef = isa<UndefValue>(Operands[0]); 2449 bool IsOp1Undef = isa<UndefValue>(Operands[1]); 2450 switch (IntrinsicID) { 2451 case Intrinsic::maxnum: 2452 case Intrinsic::minnum: 2453 case Intrinsic::maximum: 2454 case Intrinsic::minimum: 2455 // If one argument is undef, return the other argument. 2456 if (IsOp0Undef) 2457 return Operands[1]; 2458 if (IsOp1Undef) 2459 return Operands[0]; 2460 break; 2461 } 2462 } 2463 2464 if (const auto *Op1 = dyn_cast<ConstantFP>(Operands[0])) { 2465 const APFloat &Op1V = Op1->getValueAPF(); 2466 2467 if (const auto *Op2 = dyn_cast<ConstantFP>(Operands[1])) { 2468 if (Op2->getType() != Op1->getType()) 2469 return nullptr; 2470 const APFloat &Op2V = Op2->getValueAPF(); 2471 2472 if (const auto *ConstrIntr = dyn_cast<ConstrainedFPIntrinsic>(Call)) { 2473 RoundingMode RM = getEvaluationRoundingMode(ConstrIntr); 2474 APFloat Res = Op1V; 2475 APFloat::opStatus St; 2476 switch (IntrinsicID) { 2477 default: 2478 return nullptr; 2479 case Intrinsic::experimental_constrained_fadd: 2480 St = Res.add(Op2V, RM); 2481 break; 2482 case Intrinsic::experimental_constrained_fsub: 2483 St = Res.subtract(Op2V, RM); 2484 break; 2485 case Intrinsic::experimental_constrained_fmul: 2486 St = Res.multiply(Op2V, RM); 2487 break; 2488 case Intrinsic::experimental_constrained_fdiv: 2489 St = Res.divide(Op2V, RM); 2490 break; 2491 case Intrinsic::experimental_constrained_frem: 2492 St = Res.mod(Op2V); 2493 break; 2494 case Intrinsic::experimental_constrained_fcmp: 2495 case Intrinsic::experimental_constrained_fcmps: 2496 return evaluateCompare(Op1V, Op2V, ConstrIntr); 2497 } 2498 if (mayFoldConstrained(const_cast<ConstrainedFPIntrinsic *>(ConstrIntr), 2499 St)) 2500 return ConstantFP::get(Ty->getContext(), Res); 2501 return nullptr; 2502 } 2503 2504 switch (IntrinsicID) { 2505 default: 2506 break; 2507 case Intrinsic::copysign: 2508 return ConstantFP::get(Ty->getContext(), APFloat::copySign(Op1V, Op2V)); 2509 case Intrinsic::minnum: 2510 return ConstantFP::get(Ty->getContext(), minnum(Op1V, Op2V)); 2511 case Intrinsic::maxnum: 2512 return ConstantFP::get(Ty->getContext(), maxnum(Op1V, Op2V)); 2513 case Intrinsic::minimum: 2514 return ConstantFP::get(Ty->getContext(), minimum(Op1V, Op2V)); 2515 case Intrinsic::maximum: 2516 return ConstantFP::get(Ty->getContext(), maximum(Op1V, Op2V)); 2517 } 2518 2519 if (!Ty->isHalfTy() && !Ty->isFloatTy() && !Ty->isDoubleTy()) 2520 return nullptr; 2521 2522 switch (IntrinsicID) { 2523 default: 2524 break; 2525 case Intrinsic::pow: 2526 return ConstantFoldBinaryFP(pow, Op1V, Op2V, Ty); 2527 case Intrinsic::amdgcn_fmul_legacy: 2528 // The legacy behaviour is that multiplying +/- 0.0 by anything, even 2529 // NaN or infinity, gives +0.0. 2530 if (Op1V.isZero() || Op2V.isZero()) 2531 return ConstantFP::getNullValue(Ty); 2532 return ConstantFP::get(Ty->getContext(), Op1V * Op2V); 2533 } 2534 2535 if (!TLI) 2536 return nullptr; 2537 2538 LibFunc Func = NotLibFunc; 2539 if (!TLI->getLibFunc(Name, Func)) 2540 return nullptr; 2541 2542 switch (Func) { 2543 default: 2544 break; 2545 case LibFunc_pow: 2546 case LibFunc_powf: 2547 case LibFunc_pow_finite: 2548 case LibFunc_powf_finite: 2549 if (TLI->has(Func)) 2550 return ConstantFoldBinaryFP(pow, Op1V, Op2V, Ty); 2551 break; 2552 case LibFunc_fmod: 2553 case LibFunc_fmodf: 2554 if (TLI->has(Func)) { 2555 APFloat V = Op1->getValueAPF(); 2556 if (APFloat::opStatus::opOK == V.mod(Op2->getValueAPF())) 2557 return ConstantFP::get(Ty->getContext(), V); 2558 } 2559 break; 2560 case LibFunc_remainder: 2561 case LibFunc_remainderf: 2562 if (TLI->has(Func)) { 2563 APFloat V = Op1->getValueAPF(); 2564 if (APFloat::opStatus::opOK == V.remainder(Op2->getValueAPF())) 2565 return ConstantFP::get(Ty->getContext(), V); 2566 } 2567 break; 2568 case LibFunc_atan2: 2569 case LibFunc_atan2f: 2570 case LibFunc_atan2_finite: 2571 case LibFunc_atan2f_finite: 2572 if (TLI->has(Func)) 2573 return ConstantFoldBinaryFP(atan2, Op1V, Op2V, Ty); 2574 break; 2575 } 2576 } else if (auto *Op2C = dyn_cast<ConstantInt>(Operands[1])) { 2577 if (!Ty->isHalfTy() && !Ty->isFloatTy() && !Ty->isDoubleTy()) 2578 return nullptr; 2579 if (IntrinsicID == Intrinsic::powi && Ty->isHalfTy()) 2580 return ConstantFP::get( 2581 Ty->getContext(), 2582 APFloat((float)std::pow((float)Op1V.convertToDouble(), 2583 (int)Op2C->getZExtValue()))); 2584 if (IntrinsicID == Intrinsic::powi && Ty->isFloatTy()) 2585 return ConstantFP::get( 2586 Ty->getContext(), 2587 APFloat((float)std::pow((float)Op1V.convertToDouble(), 2588 (int)Op2C->getZExtValue()))); 2589 if (IntrinsicID == Intrinsic::powi && Ty->isDoubleTy()) 2590 return ConstantFP::get( 2591 Ty->getContext(), 2592 APFloat((double)std::pow(Op1V.convertToDouble(), 2593 (int)Op2C->getZExtValue()))); 2594 2595 if (IntrinsicID == Intrinsic::amdgcn_ldexp) { 2596 // FIXME: Should flush denorms depending on FP mode, but that's ignored 2597 // everywhere else. 2598 2599 // scalbn is equivalent to ldexp with float radix 2 2600 APFloat Result = scalbn(Op1->getValueAPF(), Op2C->getSExtValue(), 2601 APFloat::rmNearestTiesToEven); 2602 return ConstantFP::get(Ty->getContext(), Result); 2603 } 2604 } 2605 return nullptr; 2606 } 2607 2608 if (Operands[0]->getType()->isIntegerTy() && 2609 Operands[1]->getType()->isIntegerTy()) { 2610 const APInt *C0, *C1; 2611 if (!getConstIntOrUndef(Operands[0], C0) || 2612 !getConstIntOrUndef(Operands[1], C1)) 2613 return nullptr; 2614 2615 switch (IntrinsicID) { 2616 default: break; 2617 case Intrinsic::smax: 2618 case Intrinsic::smin: 2619 case Intrinsic::umax: 2620 case Intrinsic::umin: 2621 // This is the same as for binary ops - poison propagates. 2622 // TODO: Poison handling should be consolidated. 2623 if (isa<PoisonValue>(Operands[0]) || isa<PoisonValue>(Operands[1])) 2624 return PoisonValue::get(Ty); 2625 2626 if (!C0 && !C1) 2627 return UndefValue::get(Ty); 2628 if (!C0 || !C1) 2629 return MinMaxIntrinsic::getSaturationPoint(IntrinsicID, Ty); 2630 return ConstantInt::get( 2631 Ty, ICmpInst::compare(*C0, *C1, 2632 MinMaxIntrinsic::getPredicate(IntrinsicID)) 2633 ? *C0 2634 : *C1); 2635 2636 case Intrinsic::usub_with_overflow: 2637 case Intrinsic::ssub_with_overflow: 2638 // X - undef -> { 0, false } 2639 // undef - X -> { 0, false } 2640 if (!C0 || !C1) 2641 return Constant::getNullValue(Ty); 2642 LLVM_FALLTHROUGH; 2643 case Intrinsic::uadd_with_overflow: 2644 case Intrinsic::sadd_with_overflow: 2645 // X + undef -> { -1, false } 2646 // undef + x -> { -1, false } 2647 if (!C0 || !C1) { 2648 return ConstantStruct::get( 2649 cast<StructType>(Ty), 2650 {Constant::getAllOnesValue(Ty->getStructElementType(0)), 2651 Constant::getNullValue(Ty->getStructElementType(1))}); 2652 } 2653 LLVM_FALLTHROUGH; 2654 case Intrinsic::smul_with_overflow: 2655 case Intrinsic::umul_with_overflow: { 2656 // undef * X -> { 0, false } 2657 // X * undef -> { 0, false } 2658 if (!C0 || !C1) 2659 return Constant::getNullValue(Ty); 2660 2661 APInt Res; 2662 bool Overflow; 2663 switch (IntrinsicID) { 2664 default: llvm_unreachable("Invalid case"); 2665 case Intrinsic::sadd_with_overflow: 2666 Res = C0->sadd_ov(*C1, Overflow); 2667 break; 2668 case Intrinsic::uadd_with_overflow: 2669 Res = C0->uadd_ov(*C1, Overflow); 2670 break; 2671 case Intrinsic::ssub_with_overflow: 2672 Res = C0->ssub_ov(*C1, Overflow); 2673 break; 2674 case Intrinsic::usub_with_overflow: 2675 Res = C0->usub_ov(*C1, Overflow); 2676 break; 2677 case Intrinsic::smul_with_overflow: 2678 Res = C0->smul_ov(*C1, Overflow); 2679 break; 2680 case Intrinsic::umul_with_overflow: 2681 Res = C0->umul_ov(*C1, Overflow); 2682 break; 2683 } 2684 Constant *Ops[] = { 2685 ConstantInt::get(Ty->getContext(), Res), 2686 ConstantInt::get(Type::getInt1Ty(Ty->getContext()), Overflow) 2687 }; 2688 return ConstantStruct::get(cast<StructType>(Ty), Ops); 2689 } 2690 case Intrinsic::uadd_sat: 2691 case Intrinsic::sadd_sat: 2692 // This is the same as for binary ops - poison propagates. 2693 // TODO: Poison handling should be consolidated. 2694 if (isa<PoisonValue>(Operands[0]) || isa<PoisonValue>(Operands[1])) 2695 return PoisonValue::get(Ty); 2696 2697 if (!C0 && !C1) 2698 return UndefValue::get(Ty); 2699 if (!C0 || !C1) 2700 return Constant::getAllOnesValue(Ty); 2701 if (IntrinsicID == Intrinsic::uadd_sat) 2702 return ConstantInt::get(Ty, C0->uadd_sat(*C1)); 2703 else 2704 return ConstantInt::get(Ty, C0->sadd_sat(*C1)); 2705 case Intrinsic::usub_sat: 2706 case Intrinsic::ssub_sat: 2707 // This is the same as for binary ops - poison propagates. 2708 // TODO: Poison handling should be consolidated. 2709 if (isa<PoisonValue>(Operands[0]) || isa<PoisonValue>(Operands[1])) 2710 return PoisonValue::get(Ty); 2711 2712 if (!C0 && !C1) 2713 return UndefValue::get(Ty); 2714 if (!C0 || !C1) 2715 return Constant::getNullValue(Ty); 2716 if (IntrinsicID == Intrinsic::usub_sat) 2717 return ConstantInt::get(Ty, C0->usub_sat(*C1)); 2718 else 2719 return ConstantInt::get(Ty, C0->ssub_sat(*C1)); 2720 case Intrinsic::cttz: 2721 case Intrinsic::ctlz: 2722 assert(C1 && "Must be constant int"); 2723 2724 // cttz(0, 1) and ctlz(0, 1) are poison. 2725 if (C1->isOne() && (!C0 || C0->isZero())) 2726 return PoisonValue::get(Ty); 2727 if (!C0) 2728 return Constant::getNullValue(Ty); 2729 if (IntrinsicID == Intrinsic::cttz) 2730 return ConstantInt::get(Ty, C0->countTrailingZeros()); 2731 else 2732 return ConstantInt::get(Ty, C0->countLeadingZeros()); 2733 2734 case Intrinsic::abs: 2735 assert(C1 && "Must be constant int"); 2736 assert((C1->isOne() || C1->isZero()) && "Must be 0 or 1"); 2737 2738 // Undef or minimum val operand with poison min --> undef 2739 if (C1->isOne() && (!C0 || C0->isMinSignedValue())) 2740 return UndefValue::get(Ty); 2741 2742 // Undef operand with no poison min --> 0 (sign bit must be clear) 2743 if (!C0) 2744 return Constant::getNullValue(Ty); 2745 2746 return ConstantInt::get(Ty, C0->abs()); 2747 } 2748 2749 return nullptr; 2750 } 2751 2752 // Support ConstantVector in case we have an Undef in the top. 2753 if ((isa<ConstantVector>(Operands[0]) || 2754 isa<ConstantDataVector>(Operands[0])) && 2755 // Check for default rounding mode. 2756 // FIXME: Support other rounding modes? 2757 isa<ConstantInt>(Operands[1]) && 2758 cast<ConstantInt>(Operands[1])->getValue() == 4) { 2759 auto *Op = cast<Constant>(Operands[0]); 2760 switch (IntrinsicID) { 2761 default: break; 2762 case Intrinsic::x86_avx512_vcvtss2si32: 2763 case Intrinsic::x86_avx512_vcvtss2si64: 2764 case Intrinsic::x86_avx512_vcvtsd2si32: 2765 case Intrinsic::x86_avx512_vcvtsd2si64: 2766 if (ConstantFP *FPOp = 2767 dyn_cast_or_null<ConstantFP>(Op->getAggregateElement(0U))) 2768 return ConstantFoldSSEConvertToInt(FPOp->getValueAPF(), 2769 /*roundTowardZero=*/false, Ty, 2770 /*IsSigned*/true); 2771 break; 2772 case Intrinsic::x86_avx512_vcvtss2usi32: 2773 case Intrinsic::x86_avx512_vcvtss2usi64: 2774 case Intrinsic::x86_avx512_vcvtsd2usi32: 2775 case Intrinsic::x86_avx512_vcvtsd2usi64: 2776 if (ConstantFP *FPOp = 2777 dyn_cast_or_null<ConstantFP>(Op->getAggregateElement(0U))) 2778 return ConstantFoldSSEConvertToInt(FPOp->getValueAPF(), 2779 /*roundTowardZero=*/false, Ty, 2780 /*IsSigned*/false); 2781 break; 2782 case Intrinsic::x86_avx512_cvttss2si: 2783 case Intrinsic::x86_avx512_cvttss2si64: 2784 case Intrinsic::x86_avx512_cvttsd2si: 2785 case Intrinsic::x86_avx512_cvttsd2si64: 2786 if (ConstantFP *FPOp = 2787 dyn_cast_or_null<ConstantFP>(Op->getAggregateElement(0U))) 2788 return ConstantFoldSSEConvertToInt(FPOp->getValueAPF(), 2789 /*roundTowardZero=*/true, Ty, 2790 /*IsSigned*/true); 2791 break; 2792 case Intrinsic::x86_avx512_cvttss2usi: 2793 case Intrinsic::x86_avx512_cvttss2usi64: 2794 case Intrinsic::x86_avx512_cvttsd2usi: 2795 case Intrinsic::x86_avx512_cvttsd2usi64: 2796 if (ConstantFP *FPOp = 2797 dyn_cast_or_null<ConstantFP>(Op->getAggregateElement(0U))) 2798 return ConstantFoldSSEConvertToInt(FPOp->getValueAPF(), 2799 /*roundTowardZero=*/true, Ty, 2800 /*IsSigned*/false); 2801 break; 2802 } 2803 } 2804 return nullptr; 2805 } 2806 2807 static APFloat ConstantFoldAMDGCNCubeIntrinsic(Intrinsic::ID IntrinsicID, 2808 const APFloat &S0, 2809 const APFloat &S1, 2810 const APFloat &S2) { 2811 unsigned ID; 2812 const fltSemantics &Sem = S0.getSemantics(); 2813 APFloat MA(Sem), SC(Sem), TC(Sem); 2814 if (abs(S2) >= abs(S0) && abs(S2) >= abs(S1)) { 2815 if (S2.isNegative() && S2.isNonZero() && !S2.isNaN()) { 2816 // S2 < 0 2817 ID = 5; 2818 SC = -S0; 2819 } else { 2820 ID = 4; 2821 SC = S0; 2822 } 2823 MA = S2; 2824 TC = -S1; 2825 } else if (abs(S1) >= abs(S0)) { 2826 if (S1.isNegative() && S1.isNonZero() && !S1.isNaN()) { 2827 // S1 < 0 2828 ID = 3; 2829 TC = -S2; 2830 } else { 2831 ID = 2; 2832 TC = S2; 2833 } 2834 MA = S1; 2835 SC = S0; 2836 } else { 2837 if (S0.isNegative() && S0.isNonZero() && !S0.isNaN()) { 2838 // S0 < 0 2839 ID = 1; 2840 SC = S2; 2841 } else { 2842 ID = 0; 2843 SC = -S2; 2844 } 2845 MA = S0; 2846 TC = -S1; 2847 } 2848 switch (IntrinsicID) { 2849 default: 2850 llvm_unreachable("unhandled amdgcn cube intrinsic"); 2851 case Intrinsic::amdgcn_cubeid: 2852 return APFloat(Sem, ID); 2853 case Intrinsic::amdgcn_cubema: 2854 return MA + MA; 2855 case Intrinsic::amdgcn_cubesc: 2856 return SC; 2857 case Intrinsic::amdgcn_cubetc: 2858 return TC; 2859 } 2860 } 2861 2862 static Constant *ConstantFoldAMDGCNPermIntrinsic(ArrayRef<Constant *> Operands, 2863 Type *Ty) { 2864 const APInt *C0, *C1, *C2; 2865 if (!getConstIntOrUndef(Operands[0], C0) || 2866 !getConstIntOrUndef(Operands[1], C1) || 2867 !getConstIntOrUndef(Operands[2], C2)) 2868 return nullptr; 2869 2870 if (!C2) 2871 return UndefValue::get(Ty); 2872 2873 APInt Val(32, 0); 2874 unsigned NumUndefBytes = 0; 2875 for (unsigned I = 0; I < 32; I += 8) { 2876 unsigned Sel = C2->extractBitsAsZExtValue(8, I); 2877 unsigned B = 0; 2878 2879 if (Sel >= 13) 2880 B = 0xff; 2881 else if (Sel == 12) 2882 B = 0x00; 2883 else { 2884 const APInt *Src = ((Sel & 10) == 10 || (Sel & 12) == 4) ? C0 : C1; 2885 if (!Src) 2886 ++NumUndefBytes; 2887 else if (Sel < 8) 2888 B = Src->extractBitsAsZExtValue(8, (Sel & 3) * 8); 2889 else 2890 B = Src->extractBitsAsZExtValue(1, (Sel & 1) ? 31 : 15) * 0xff; 2891 } 2892 2893 Val.insertBits(B, I, 8); 2894 } 2895 2896 if (NumUndefBytes == 4) 2897 return UndefValue::get(Ty); 2898 2899 return ConstantInt::get(Ty, Val); 2900 } 2901 2902 static Constant *ConstantFoldScalarCall3(StringRef Name, 2903 Intrinsic::ID IntrinsicID, 2904 Type *Ty, 2905 ArrayRef<Constant *> Operands, 2906 const TargetLibraryInfo *TLI, 2907 const CallBase *Call) { 2908 assert(Operands.size() == 3 && "Wrong number of operands."); 2909 2910 if (const auto *Op1 = dyn_cast<ConstantFP>(Operands[0])) { 2911 if (const auto *Op2 = dyn_cast<ConstantFP>(Operands[1])) { 2912 if (const auto *Op3 = dyn_cast<ConstantFP>(Operands[2])) { 2913 const APFloat &C1 = Op1->getValueAPF(); 2914 const APFloat &C2 = Op2->getValueAPF(); 2915 const APFloat &C3 = Op3->getValueAPF(); 2916 2917 if (const auto *ConstrIntr = dyn_cast<ConstrainedFPIntrinsic>(Call)) { 2918 RoundingMode RM = getEvaluationRoundingMode(ConstrIntr); 2919 APFloat Res = C1; 2920 APFloat::opStatus St; 2921 switch (IntrinsicID) { 2922 default: 2923 return nullptr; 2924 case Intrinsic::experimental_constrained_fma: 2925 case Intrinsic::experimental_constrained_fmuladd: 2926 St = Res.fusedMultiplyAdd(C2, C3, RM); 2927 break; 2928 } 2929 if (mayFoldConstrained( 2930 const_cast<ConstrainedFPIntrinsic *>(ConstrIntr), St)) 2931 return ConstantFP::get(Ty->getContext(), Res); 2932 return nullptr; 2933 } 2934 2935 switch (IntrinsicID) { 2936 default: break; 2937 case Intrinsic::amdgcn_fma_legacy: { 2938 // The legacy behaviour is that multiplying +/- 0.0 by anything, even 2939 // NaN or infinity, gives +0.0. 2940 if (C1.isZero() || C2.isZero()) { 2941 // It's tempting to just return C3 here, but that would give the 2942 // wrong result if C3 was -0.0. 2943 return ConstantFP::get(Ty->getContext(), APFloat(0.0f) + C3); 2944 } 2945 LLVM_FALLTHROUGH; 2946 } 2947 case Intrinsic::fma: 2948 case Intrinsic::fmuladd: { 2949 APFloat V = C1; 2950 V.fusedMultiplyAdd(C2, C3, APFloat::rmNearestTiesToEven); 2951 return ConstantFP::get(Ty->getContext(), V); 2952 } 2953 case Intrinsic::amdgcn_cubeid: 2954 case Intrinsic::amdgcn_cubema: 2955 case Intrinsic::amdgcn_cubesc: 2956 case Intrinsic::amdgcn_cubetc: { 2957 APFloat V = ConstantFoldAMDGCNCubeIntrinsic(IntrinsicID, C1, C2, C3); 2958 return ConstantFP::get(Ty->getContext(), V); 2959 } 2960 } 2961 } 2962 } 2963 } 2964 2965 if (IntrinsicID == Intrinsic::smul_fix || 2966 IntrinsicID == Intrinsic::smul_fix_sat) { 2967 // poison * C -> poison 2968 // C * poison -> poison 2969 if (isa<PoisonValue>(Operands[0]) || isa<PoisonValue>(Operands[1])) 2970 return PoisonValue::get(Ty); 2971 2972 const APInt *C0, *C1; 2973 if (!getConstIntOrUndef(Operands[0], C0) || 2974 !getConstIntOrUndef(Operands[1], C1)) 2975 return nullptr; 2976 2977 // undef * C -> 0 2978 // C * undef -> 0 2979 if (!C0 || !C1) 2980 return Constant::getNullValue(Ty); 2981 2982 // This code performs rounding towards negative infinity in case the result 2983 // cannot be represented exactly for the given scale. Targets that do care 2984 // about rounding should use a target hook for specifying how rounding 2985 // should be done, and provide their own folding to be consistent with 2986 // rounding. This is the same approach as used by 2987 // DAGTypeLegalizer::ExpandIntRes_MULFIX. 2988 unsigned Scale = cast<ConstantInt>(Operands[2])->getZExtValue(); 2989 unsigned Width = C0->getBitWidth(); 2990 assert(Scale < Width && "Illegal scale."); 2991 unsigned ExtendedWidth = Width * 2; 2992 APInt Product = 2993 (C0->sext(ExtendedWidth) * C1->sext(ExtendedWidth)).ashr(Scale); 2994 if (IntrinsicID == Intrinsic::smul_fix_sat) { 2995 APInt Max = APInt::getSignedMaxValue(Width).sext(ExtendedWidth); 2996 APInt Min = APInt::getSignedMinValue(Width).sext(ExtendedWidth); 2997 Product = APIntOps::smin(Product, Max); 2998 Product = APIntOps::smax(Product, Min); 2999 } 3000 return ConstantInt::get(Ty->getContext(), Product.sextOrTrunc(Width)); 3001 } 3002 3003 if (IntrinsicID == Intrinsic::fshl || IntrinsicID == Intrinsic::fshr) { 3004 const APInt *C0, *C1, *C2; 3005 if (!getConstIntOrUndef(Operands[0], C0) || 3006 !getConstIntOrUndef(Operands[1], C1) || 3007 !getConstIntOrUndef(Operands[2], C2)) 3008 return nullptr; 3009 3010 bool IsRight = IntrinsicID == Intrinsic::fshr; 3011 if (!C2) 3012 return Operands[IsRight ? 1 : 0]; 3013 if (!C0 && !C1) 3014 return UndefValue::get(Ty); 3015 3016 // The shift amount is interpreted as modulo the bitwidth. If the shift 3017 // amount is effectively 0, avoid UB due to oversized inverse shift below. 3018 unsigned BitWidth = C2->getBitWidth(); 3019 unsigned ShAmt = C2->urem(BitWidth); 3020 if (!ShAmt) 3021 return Operands[IsRight ? 1 : 0]; 3022 3023 // (C0 << ShlAmt) | (C1 >> LshrAmt) 3024 unsigned LshrAmt = IsRight ? ShAmt : BitWidth - ShAmt; 3025 unsigned ShlAmt = !IsRight ? ShAmt : BitWidth - ShAmt; 3026 if (!C0) 3027 return ConstantInt::get(Ty, C1->lshr(LshrAmt)); 3028 if (!C1) 3029 return ConstantInt::get(Ty, C0->shl(ShlAmt)); 3030 return ConstantInt::get(Ty, C0->shl(ShlAmt) | C1->lshr(LshrAmt)); 3031 } 3032 3033 if (IntrinsicID == Intrinsic::amdgcn_perm) 3034 return ConstantFoldAMDGCNPermIntrinsic(Operands, Ty); 3035 3036 return nullptr; 3037 } 3038 3039 static Constant *ConstantFoldScalarCall(StringRef Name, 3040 Intrinsic::ID IntrinsicID, 3041 Type *Ty, 3042 ArrayRef<Constant *> Operands, 3043 const TargetLibraryInfo *TLI, 3044 const CallBase *Call) { 3045 if (Operands.size() == 1) 3046 return ConstantFoldScalarCall1(Name, IntrinsicID, Ty, Operands, TLI, Call); 3047 3048 if (Operands.size() == 2) 3049 return ConstantFoldScalarCall2(Name, IntrinsicID, Ty, Operands, TLI, Call); 3050 3051 if (Operands.size() == 3) 3052 return ConstantFoldScalarCall3(Name, IntrinsicID, Ty, Operands, TLI, Call); 3053 3054 return nullptr; 3055 } 3056 3057 static Constant *ConstantFoldFixedVectorCall( 3058 StringRef Name, Intrinsic::ID IntrinsicID, FixedVectorType *FVTy, 3059 ArrayRef<Constant *> Operands, const DataLayout &DL, 3060 const TargetLibraryInfo *TLI, const CallBase *Call) { 3061 SmallVector<Constant *, 4> Result(FVTy->getNumElements()); 3062 SmallVector<Constant *, 4> Lane(Operands.size()); 3063 Type *Ty = FVTy->getElementType(); 3064 3065 switch (IntrinsicID) { 3066 case Intrinsic::masked_load: { 3067 auto *SrcPtr = Operands[0]; 3068 auto *Mask = Operands[2]; 3069 auto *Passthru = Operands[3]; 3070 3071 Constant *VecData = ConstantFoldLoadFromConstPtr(SrcPtr, FVTy, DL); 3072 3073 SmallVector<Constant *, 32> NewElements; 3074 for (unsigned I = 0, E = FVTy->getNumElements(); I != E; ++I) { 3075 auto *MaskElt = Mask->getAggregateElement(I); 3076 if (!MaskElt) 3077 break; 3078 auto *PassthruElt = Passthru->getAggregateElement(I); 3079 auto *VecElt = VecData ? VecData->getAggregateElement(I) : nullptr; 3080 if (isa<UndefValue>(MaskElt)) { 3081 if (PassthruElt) 3082 NewElements.push_back(PassthruElt); 3083 else if (VecElt) 3084 NewElements.push_back(VecElt); 3085 else 3086 return nullptr; 3087 } 3088 if (MaskElt->isNullValue()) { 3089 if (!PassthruElt) 3090 return nullptr; 3091 NewElements.push_back(PassthruElt); 3092 } else if (MaskElt->isOneValue()) { 3093 if (!VecElt) 3094 return nullptr; 3095 NewElements.push_back(VecElt); 3096 } else { 3097 return nullptr; 3098 } 3099 } 3100 if (NewElements.size() != FVTy->getNumElements()) 3101 return nullptr; 3102 return ConstantVector::get(NewElements); 3103 } 3104 case Intrinsic::arm_mve_vctp8: 3105 case Intrinsic::arm_mve_vctp16: 3106 case Intrinsic::arm_mve_vctp32: 3107 case Intrinsic::arm_mve_vctp64: { 3108 if (auto *Op = dyn_cast<ConstantInt>(Operands[0])) { 3109 unsigned Lanes = FVTy->getNumElements(); 3110 uint64_t Limit = Op->getZExtValue(); 3111 3112 SmallVector<Constant *, 16> NCs; 3113 for (unsigned i = 0; i < Lanes; i++) { 3114 if (i < Limit) 3115 NCs.push_back(ConstantInt::getTrue(Ty)); 3116 else 3117 NCs.push_back(ConstantInt::getFalse(Ty)); 3118 } 3119 return ConstantVector::get(NCs); 3120 } 3121 break; 3122 } 3123 case Intrinsic::get_active_lane_mask: { 3124 auto *Op0 = dyn_cast<ConstantInt>(Operands[0]); 3125 auto *Op1 = dyn_cast<ConstantInt>(Operands[1]); 3126 if (Op0 && Op1) { 3127 unsigned Lanes = FVTy->getNumElements(); 3128 uint64_t Base = Op0->getZExtValue(); 3129 uint64_t Limit = Op1->getZExtValue(); 3130 3131 SmallVector<Constant *, 16> NCs; 3132 for (unsigned i = 0; i < Lanes; i++) { 3133 if (Base + i < Limit) 3134 NCs.push_back(ConstantInt::getTrue(Ty)); 3135 else 3136 NCs.push_back(ConstantInt::getFalse(Ty)); 3137 } 3138 return ConstantVector::get(NCs); 3139 } 3140 break; 3141 } 3142 default: 3143 break; 3144 } 3145 3146 for (unsigned I = 0, E = FVTy->getNumElements(); I != E; ++I) { 3147 // Gather a column of constants. 3148 for (unsigned J = 0, JE = Operands.size(); J != JE; ++J) { 3149 // Some intrinsics use a scalar type for certain arguments. 3150 if (isVectorIntrinsicWithScalarOpAtArg(IntrinsicID, J)) { 3151 Lane[J] = Operands[J]; 3152 continue; 3153 } 3154 3155 Constant *Agg = Operands[J]->getAggregateElement(I); 3156 if (!Agg) 3157 return nullptr; 3158 3159 Lane[J] = Agg; 3160 } 3161 3162 // Use the regular scalar folding to simplify this column. 3163 Constant *Folded = 3164 ConstantFoldScalarCall(Name, IntrinsicID, Ty, Lane, TLI, Call); 3165 if (!Folded) 3166 return nullptr; 3167 Result[I] = Folded; 3168 } 3169 3170 return ConstantVector::get(Result); 3171 } 3172 3173 static Constant *ConstantFoldScalableVectorCall( 3174 StringRef Name, Intrinsic::ID IntrinsicID, ScalableVectorType *SVTy, 3175 ArrayRef<Constant *> Operands, const DataLayout &DL, 3176 const TargetLibraryInfo *TLI, const CallBase *Call) { 3177 switch (IntrinsicID) { 3178 case Intrinsic::aarch64_sve_convert_from_svbool: { 3179 auto *Src = dyn_cast<Constant>(Operands[0]); 3180 if (!Src || !Src->isNullValue()) 3181 break; 3182 3183 return ConstantInt::getFalse(SVTy); 3184 } 3185 default: 3186 break; 3187 } 3188 return nullptr; 3189 } 3190 3191 } // end anonymous namespace 3192 3193 Constant *llvm::ConstantFoldCall(const CallBase *Call, Function *F, 3194 ArrayRef<Constant *> Operands, 3195 const TargetLibraryInfo *TLI) { 3196 if (Call->isNoBuiltin()) 3197 return nullptr; 3198 if (!F->hasName()) 3199 return nullptr; 3200 3201 // If this is not an intrinsic and not recognized as a library call, bail out. 3202 if (F->getIntrinsicID() == Intrinsic::not_intrinsic) { 3203 if (!TLI) 3204 return nullptr; 3205 LibFunc LibF; 3206 if (!TLI->getLibFunc(*F, LibF)) 3207 return nullptr; 3208 } 3209 3210 StringRef Name = F->getName(); 3211 Type *Ty = F->getReturnType(); 3212 if (auto *FVTy = dyn_cast<FixedVectorType>(Ty)) 3213 return ConstantFoldFixedVectorCall( 3214 Name, F->getIntrinsicID(), FVTy, Operands, 3215 F->getParent()->getDataLayout(), TLI, Call); 3216 3217 if (auto *SVTy = dyn_cast<ScalableVectorType>(Ty)) 3218 return ConstantFoldScalableVectorCall( 3219 Name, F->getIntrinsicID(), SVTy, Operands, 3220 F->getParent()->getDataLayout(), TLI, Call); 3221 3222 // TODO: If this is a library function, we already discovered that above, 3223 // so we should pass the LibFunc, not the name (and it might be better 3224 // still to separate intrinsic handling from libcalls). 3225 return ConstantFoldScalarCall(Name, F->getIntrinsicID(), Ty, Operands, TLI, 3226 Call); 3227 } 3228 3229 bool llvm::isMathLibCallNoop(const CallBase *Call, 3230 const TargetLibraryInfo *TLI) { 3231 // FIXME: Refactor this code; this duplicates logic in LibCallsShrinkWrap 3232 // (and to some extent ConstantFoldScalarCall). 3233 if (Call->isNoBuiltin() || Call->isStrictFP()) 3234 return false; 3235 Function *F = Call->getCalledFunction(); 3236 if (!F) 3237 return false; 3238 3239 LibFunc Func; 3240 if (!TLI || !TLI->getLibFunc(*F, Func)) 3241 return false; 3242 3243 if (Call->arg_size() == 1) { 3244 if (ConstantFP *OpC = dyn_cast<ConstantFP>(Call->getArgOperand(0))) { 3245 const APFloat &Op = OpC->getValueAPF(); 3246 switch (Func) { 3247 case LibFunc_logl: 3248 case LibFunc_log: 3249 case LibFunc_logf: 3250 case LibFunc_log2l: 3251 case LibFunc_log2: 3252 case LibFunc_log2f: 3253 case LibFunc_log10l: 3254 case LibFunc_log10: 3255 case LibFunc_log10f: 3256 return Op.isNaN() || (!Op.isZero() && !Op.isNegative()); 3257 3258 case LibFunc_expl: 3259 case LibFunc_exp: 3260 case LibFunc_expf: 3261 // FIXME: These boundaries are slightly conservative. 3262 if (OpC->getType()->isDoubleTy()) 3263 return !(Op < APFloat(-745.0) || Op > APFloat(709.0)); 3264 if (OpC->getType()->isFloatTy()) 3265 return !(Op < APFloat(-103.0f) || Op > APFloat(88.0f)); 3266 break; 3267 3268 case LibFunc_exp2l: 3269 case LibFunc_exp2: 3270 case LibFunc_exp2f: 3271 // FIXME: These boundaries are slightly conservative. 3272 if (OpC->getType()->isDoubleTy()) 3273 return !(Op < APFloat(-1074.0) || Op > APFloat(1023.0)); 3274 if (OpC->getType()->isFloatTy()) 3275 return !(Op < APFloat(-149.0f) || Op > APFloat(127.0f)); 3276 break; 3277 3278 case LibFunc_sinl: 3279 case LibFunc_sin: 3280 case LibFunc_sinf: 3281 case LibFunc_cosl: 3282 case LibFunc_cos: 3283 case LibFunc_cosf: 3284 return !Op.isInfinity(); 3285 3286 case LibFunc_tanl: 3287 case LibFunc_tan: 3288 case LibFunc_tanf: { 3289 // FIXME: Stop using the host math library. 3290 // FIXME: The computation isn't done in the right precision. 3291 Type *Ty = OpC->getType(); 3292 if (Ty->isDoubleTy() || Ty->isFloatTy() || Ty->isHalfTy()) 3293 return ConstantFoldFP(tan, OpC->getValueAPF(), Ty) != nullptr; 3294 break; 3295 } 3296 3297 case LibFunc_asinl: 3298 case LibFunc_asin: 3299 case LibFunc_asinf: 3300 case LibFunc_acosl: 3301 case LibFunc_acos: 3302 case LibFunc_acosf: 3303 return !(Op < APFloat(Op.getSemantics(), "-1") || 3304 Op > APFloat(Op.getSemantics(), "1")); 3305 3306 case LibFunc_sinh: 3307 case LibFunc_cosh: 3308 case LibFunc_sinhf: 3309 case LibFunc_coshf: 3310 case LibFunc_sinhl: 3311 case LibFunc_coshl: 3312 // FIXME: These boundaries are slightly conservative. 3313 if (OpC->getType()->isDoubleTy()) 3314 return !(Op < APFloat(-710.0) || Op > APFloat(710.0)); 3315 if (OpC->getType()->isFloatTy()) 3316 return !(Op < APFloat(-89.0f) || Op > APFloat(89.0f)); 3317 break; 3318 3319 case LibFunc_sqrtl: 3320 case LibFunc_sqrt: 3321 case LibFunc_sqrtf: 3322 return Op.isNaN() || Op.isZero() || !Op.isNegative(); 3323 3324 // FIXME: Add more functions: sqrt_finite, atanh, expm1, log1p, 3325 // maybe others? 3326 default: 3327 break; 3328 } 3329 } 3330 } 3331 3332 if (Call->arg_size() == 2) { 3333 ConstantFP *Op0C = dyn_cast<ConstantFP>(Call->getArgOperand(0)); 3334 ConstantFP *Op1C = dyn_cast<ConstantFP>(Call->getArgOperand(1)); 3335 if (Op0C && Op1C) { 3336 const APFloat &Op0 = Op0C->getValueAPF(); 3337 const APFloat &Op1 = Op1C->getValueAPF(); 3338 3339 switch (Func) { 3340 case LibFunc_powl: 3341 case LibFunc_pow: 3342 case LibFunc_powf: { 3343 // FIXME: Stop using the host math library. 3344 // FIXME: The computation isn't done in the right precision. 3345 Type *Ty = Op0C->getType(); 3346 if (Ty->isDoubleTy() || Ty->isFloatTy() || Ty->isHalfTy()) { 3347 if (Ty == Op1C->getType()) 3348 return ConstantFoldBinaryFP(pow, Op0, Op1, Ty) != nullptr; 3349 } 3350 break; 3351 } 3352 3353 case LibFunc_fmodl: 3354 case LibFunc_fmod: 3355 case LibFunc_fmodf: 3356 case LibFunc_remainderl: 3357 case LibFunc_remainder: 3358 case LibFunc_remainderf: 3359 return Op0.isNaN() || Op1.isNaN() || 3360 (!Op0.isInfinity() && !Op1.isZero()); 3361 3362 default: 3363 break; 3364 } 3365 } 3366 } 3367 3368 return false; 3369 } 3370 3371 void TargetFolder::anchor() {} 3372