1 //===------ SimplifyLibCalls.cpp - Library calls simplifier ---------------===//
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 implements the library calls simplifier. It does not implement
10 // any pass, but can't be used by other passes to do simplifications.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "llvm/Transforms/Utils/SimplifyLibCalls.h"
15 #include "llvm/ADT/APSInt.h"
16 #include "llvm/ADT/SmallString.h"
17 #include "llvm/ADT/StringMap.h"
18 #include "llvm/ADT/Triple.h"
19 #include "llvm/Analysis/BlockFrequencyInfo.h"
20 #include "llvm/Analysis/ConstantFolding.h"
21 #include "llvm/Analysis/OptimizationRemarkEmitter.h"
22 #include "llvm/Analysis/ProfileSummaryInfo.h"
23 #include "llvm/Analysis/TargetLibraryInfo.h"
24 #include "llvm/Transforms/Utils/Local.h"
25 #include "llvm/Analysis/ValueTracking.h"
26 #include "llvm/Analysis/CaptureTracking.h"
27 #include "llvm/Analysis/Loads.h"
28 #include "llvm/IR/DataLayout.h"
29 #include "llvm/IR/Function.h"
30 #include "llvm/IR/IRBuilder.h"
31 #include "llvm/IR/IntrinsicInst.h"
32 #include "llvm/IR/Intrinsics.h"
33 #include "llvm/IR/LLVMContext.h"
34 #include "llvm/IR/Module.h"
35 #include "llvm/IR/PatternMatch.h"
36 #include "llvm/Support/CommandLine.h"
37 #include "llvm/Support/KnownBits.h"
38 #include "llvm/Transforms/Utils/BuildLibCalls.h"
39 #include "llvm/Transforms/Utils/SizeOpts.h"
40 
41 using namespace llvm;
42 using namespace PatternMatch;
43 
44 static cl::opt<bool>
45     EnableUnsafeFPShrink("enable-double-float-shrink", cl::Hidden,
46                          cl::init(false),
47                          cl::desc("Enable unsafe double to float "
48                                   "shrinking for math lib calls"));
49 
50 
51 //===----------------------------------------------------------------------===//
52 // Helper Functions
53 //===----------------------------------------------------------------------===//
54 
55 static bool ignoreCallingConv(LibFunc Func) {
56   return Func == LibFunc_abs || Func == LibFunc_labs ||
57          Func == LibFunc_llabs || Func == LibFunc_strlen;
58 }
59 
60 static bool isCallingConvCCompatible(CallInst *CI) {
61   switch(CI->getCallingConv()) {
62   default:
63     return false;
64   case llvm::CallingConv::C:
65     return true;
66   case llvm::CallingConv::ARM_APCS:
67   case llvm::CallingConv::ARM_AAPCS:
68   case llvm::CallingConv::ARM_AAPCS_VFP: {
69 
70     // The iOS ABI diverges from the standard in some cases, so for now don't
71     // try to simplify those calls.
72     if (Triple(CI->getModule()->getTargetTriple()).isiOS())
73       return false;
74 
75     auto *FuncTy = CI->getFunctionType();
76 
77     if (!FuncTy->getReturnType()->isPointerTy() &&
78         !FuncTy->getReturnType()->isIntegerTy() &&
79         !FuncTy->getReturnType()->isVoidTy())
80       return false;
81 
82     for (auto Param : FuncTy->params()) {
83       if (!Param->isPointerTy() && !Param->isIntegerTy())
84         return false;
85     }
86     return true;
87   }
88   }
89   return false;
90 }
91 
92 /// Return true if it is only used in equality comparisons with With.
93 static bool isOnlyUsedInEqualityComparison(Value *V, Value *With) {
94   for (User *U : V->users()) {
95     if (ICmpInst *IC = dyn_cast<ICmpInst>(U))
96       if (IC->isEquality() && IC->getOperand(1) == With)
97         continue;
98     // Unknown instruction.
99     return false;
100   }
101   return true;
102 }
103 
104 static bool callHasFloatingPointArgument(const CallInst *CI) {
105   return any_of(CI->operands(), [](const Use &OI) {
106     return OI->getType()->isFloatingPointTy();
107   });
108 }
109 
110 static bool callHasFP128Argument(const CallInst *CI) {
111   return any_of(CI->operands(), [](const Use &OI) {
112     return OI->getType()->isFP128Ty();
113   });
114 }
115 
116 static Value *convertStrToNumber(CallInst *CI, StringRef &Str, int64_t Base) {
117   if (Base < 2 || Base > 36)
118     // handle special zero base
119     if (Base != 0)
120       return nullptr;
121 
122   char *End;
123   std::string nptr = Str.str();
124   errno = 0;
125   long long int Result = strtoll(nptr.c_str(), &End, Base);
126   if (errno)
127     return nullptr;
128 
129   // if we assume all possible target locales are ASCII supersets,
130   // then if strtoll successfully parses a number on the host,
131   // it will also successfully parse the same way on the target
132   if (*End != '\0')
133     return nullptr;
134 
135   if (!isIntN(CI->getType()->getPrimitiveSizeInBits(), Result))
136     return nullptr;
137 
138   return ConstantInt::get(CI->getType(), Result);
139 }
140 
141 static bool isLocallyOpenedFile(Value *File, CallInst *CI, IRBuilder<> &B,
142                                 const TargetLibraryInfo *TLI) {
143   CallInst *FOpen = dyn_cast<CallInst>(File);
144   if (!FOpen)
145     return false;
146 
147   Function *InnerCallee = FOpen->getCalledFunction();
148   if (!InnerCallee)
149     return false;
150 
151   LibFunc Func;
152   if (!TLI->getLibFunc(*InnerCallee, Func) || !TLI->has(Func) ||
153       Func != LibFunc_fopen)
154     return false;
155 
156   inferLibFuncAttributes(*CI->getCalledFunction(), *TLI);
157   if (PointerMayBeCaptured(File, true, true))
158     return false;
159 
160   return true;
161 }
162 
163 static bool isOnlyUsedInComparisonWithZero(Value *V) {
164   for (User *U : V->users()) {
165     if (ICmpInst *IC = dyn_cast<ICmpInst>(U))
166       if (Constant *C = dyn_cast<Constant>(IC->getOperand(1)))
167         if (C->isNullValue())
168           continue;
169     // Unknown instruction.
170     return false;
171   }
172   return true;
173 }
174 
175 static bool canTransformToMemCmp(CallInst *CI, Value *Str, uint64_t Len,
176                                  const DataLayout &DL) {
177   if (!isOnlyUsedInComparisonWithZero(CI))
178     return false;
179 
180   if (!isDereferenceableAndAlignedPointer(Str, 1, APInt(64, Len), DL))
181     return false;
182 
183   if (CI->getFunction()->hasFnAttribute(Attribute::SanitizeMemory))
184     return false;
185 
186   return true;
187 }
188 
189 //===----------------------------------------------------------------------===//
190 // String and Memory Library Call Optimizations
191 //===----------------------------------------------------------------------===//
192 
193 Value *LibCallSimplifier::optimizeStrCat(CallInst *CI, IRBuilder<> &B) {
194   // Extract some information from the instruction
195   Value *Dst = CI->getArgOperand(0);
196   Value *Src = CI->getArgOperand(1);
197 
198   // See if we can get the length of the input string.
199   uint64_t Len = GetStringLength(Src);
200   if (Len == 0)
201     return nullptr;
202   --Len; // Unbias length.
203 
204   // Handle the simple, do-nothing case: strcat(x, "") -> x
205   if (Len == 0)
206     return Dst;
207 
208   return emitStrLenMemCpy(Src, Dst, Len, B);
209 }
210 
211 Value *LibCallSimplifier::emitStrLenMemCpy(Value *Src, Value *Dst, uint64_t Len,
212                                            IRBuilder<> &B) {
213   // We need to find the end of the destination string.  That's where the
214   // memory is to be moved to. We just generate a call to strlen.
215   Value *DstLen = emitStrLen(Dst, B, DL, TLI);
216   if (!DstLen)
217     return nullptr;
218 
219   // Now that we have the destination's length, we must index into the
220   // destination's pointer to get the actual memcpy destination (end of
221   // the string .. we're concatenating).
222   Value *CpyDst = B.CreateGEP(B.getInt8Ty(), Dst, DstLen, "endptr");
223 
224   // We have enough information to now generate the memcpy call to do the
225   // concatenation for us.  Make a memcpy to copy the nul byte with align = 1.
226   B.CreateMemCpy(CpyDst, 1, Src, 1,
227                  ConstantInt::get(DL.getIntPtrType(Src->getContext()), Len + 1));
228   return Dst;
229 }
230 
231 Value *LibCallSimplifier::optimizeStrNCat(CallInst *CI, IRBuilder<> &B) {
232   // Extract some information from the instruction.
233   Value *Dst = CI->getArgOperand(0);
234   Value *Src = CI->getArgOperand(1);
235   uint64_t Len;
236 
237   // We don't do anything if length is not constant.
238   if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(CI->getArgOperand(2)))
239     Len = LengthArg->getZExtValue();
240   else
241     return nullptr;
242 
243   // See if we can get the length of the input string.
244   uint64_t SrcLen = GetStringLength(Src);
245   if (SrcLen == 0)
246     return nullptr;
247   --SrcLen; // Unbias length.
248 
249   // Handle the simple, do-nothing cases:
250   // strncat(x, "", c) -> x
251   // strncat(x,  c, 0) -> x
252   if (SrcLen == 0 || Len == 0)
253     return Dst;
254 
255   // We don't optimize this case.
256   if (Len < SrcLen)
257     return nullptr;
258 
259   // strncat(x, s, c) -> strcat(x, s)
260   // s is constant so the strcat can be optimized further.
261   return emitStrLenMemCpy(Src, Dst, SrcLen, B);
262 }
263 
264 Value *LibCallSimplifier::optimizeStrChr(CallInst *CI, IRBuilder<> &B) {
265   Function *Callee = CI->getCalledFunction();
266   FunctionType *FT = Callee->getFunctionType();
267   Value *SrcStr = CI->getArgOperand(0);
268 
269   // If the second operand is non-constant, see if we can compute the length
270   // of the input string and turn this into memchr.
271   ConstantInt *CharC = dyn_cast<ConstantInt>(CI->getArgOperand(1));
272   if (!CharC) {
273     uint64_t Len = GetStringLength(SrcStr);
274     if (Len == 0 || !FT->getParamType(1)->isIntegerTy(32)) // memchr needs i32.
275       return nullptr;
276 
277     return emitMemChr(SrcStr, CI->getArgOperand(1), // include nul.
278                       ConstantInt::get(DL.getIntPtrType(CI->getContext()), Len),
279                       B, DL, TLI);
280   }
281 
282   // Otherwise, the character is a constant, see if the first argument is
283   // a string literal.  If so, we can constant fold.
284   StringRef Str;
285   if (!getConstantStringInfo(SrcStr, Str)) {
286     if (CharC->isZero()) // strchr(p, 0) -> p + strlen(p)
287       return B.CreateGEP(B.getInt8Ty(), SrcStr, emitStrLen(SrcStr, B, DL, TLI),
288                          "strchr");
289     return nullptr;
290   }
291 
292   // Compute the offset, make sure to handle the case when we're searching for
293   // zero (a weird way to spell strlen).
294   size_t I = (0xFF & CharC->getSExtValue()) == 0
295                  ? Str.size()
296                  : Str.find(CharC->getSExtValue());
297   if (I == StringRef::npos) // Didn't find the char.  strchr returns null.
298     return Constant::getNullValue(CI->getType());
299 
300   // strchr(s+n,c)  -> gep(s+n+i,c)
301   return B.CreateGEP(B.getInt8Ty(), SrcStr, B.getInt64(I), "strchr");
302 }
303 
304 Value *LibCallSimplifier::optimizeStrRChr(CallInst *CI, IRBuilder<> &B) {
305   Value *SrcStr = CI->getArgOperand(0);
306   ConstantInt *CharC = dyn_cast<ConstantInt>(CI->getArgOperand(1));
307 
308   // Cannot fold anything if we're not looking for a constant.
309   if (!CharC)
310     return nullptr;
311 
312   StringRef Str;
313   if (!getConstantStringInfo(SrcStr, Str)) {
314     // strrchr(s, 0) -> strchr(s, 0)
315     if (CharC->isZero())
316       return emitStrChr(SrcStr, '\0', B, TLI);
317     return nullptr;
318   }
319 
320   // Compute the offset.
321   size_t I = (0xFF & CharC->getSExtValue()) == 0
322                  ? Str.size()
323                  : Str.rfind(CharC->getSExtValue());
324   if (I == StringRef::npos) // Didn't find the char. Return null.
325     return Constant::getNullValue(CI->getType());
326 
327   // strrchr(s+n,c) -> gep(s+n+i,c)
328   return B.CreateGEP(B.getInt8Ty(), SrcStr, B.getInt64(I), "strrchr");
329 }
330 
331 Value *LibCallSimplifier::optimizeStrCmp(CallInst *CI, IRBuilder<> &B) {
332   Value *Str1P = CI->getArgOperand(0), *Str2P = CI->getArgOperand(1);
333   if (Str1P == Str2P) // strcmp(x,x)  -> 0
334     return ConstantInt::get(CI->getType(), 0);
335 
336   StringRef Str1, Str2;
337   bool HasStr1 = getConstantStringInfo(Str1P, Str1);
338   bool HasStr2 = getConstantStringInfo(Str2P, Str2);
339 
340   // strcmp(x, y)  -> cnst  (if both x and y are constant strings)
341   if (HasStr1 && HasStr2)
342     return ConstantInt::get(CI->getType(), Str1.compare(Str2));
343 
344   if (HasStr1 && Str1.empty()) // strcmp("", x) -> -*x
345     return B.CreateNeg(B.CreateZExt(
346         B.CreateLoad(B.getInt8Ty(), Str2P, "strcmpload"), CI->getType()));
347 
348   if (HasStr2 && Str2.empty()) // strcmp(x,"") -> *x
349     return B.CreateZExt(B.CreateLoad(B.getInt8Ty(), Str1P, "strcmpload"),
350                         CI->getType());
351 
352   // strcmp(P, "x") -> memcmp(P, "x", 2)
353   uint64_t Len1 = GetStringLength(Str1P);
354   uint64_t Len2 = GetStringLength(Str2P);
355   if (Len1 && Len2) {
356     return emitMemCmp(Str1P, Str2P,
357                       ConstantInt::get(DL.getIntPtrType(CI->getContext()),
358                                        std::min(Len1, Len2)),
359                       B, DL, TLI);
360   }
361 
362   // strcmp to memcmp
363   if (!HasStr1 && HasStr2) {
364     if (canTransformToMemCmp(CI, Str1P, Len2, DL))
365       return emitMemCmp(
366           Str1P, Str2P,
367           ConstantInt::get(DL.getIntPtrType(CI->getContext()), Len2), B, DL,
368           TLI);
369   } else if (HasStr1 && !HasStr2) {
370     if (canTransformToMemCmp(CI, Str2P, Len1, DL))
371       return emitMemCmp(
372           Str1P, Str2P,
373           ConstantInt::get(DL.getIntPtrType(CI->getContext()), Len1), B, DL,
374           TLI);
375   }
376 
377   return nullptr;
378 }
379 
380 Value *LibCallSimplifier::optimizeStrNCmp(CallInst *CI, IRBuilder<> &B) {
381   Value *Str1P = CI->getArgOperand(0), *Str2P = CI->getArgOperand(1);
382   if (Str1P == Str2P) // strncmp(x,x,n)  -> 0
383     return ConstantInt::get(CI->getType(), 0);
384 
385   // Get the length argument if it is constant.
386   uint64_t Length;
387   if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(CI->getArgOperand(2)))
388     Length = LengthArg->getZExtValue();
389   else
390     return nullptr;
391 
392   if (Length == 0) // strncmp(x,y,0)   -> 0
393     return ConstantInt::get(CI->getType(), 0);
394 
395   if (Length == 1) // strncmp(x,y,1) -> memcmp(x,y,1)
396     return emitMemCmp(Str1P, Str2P, CI->getArgOperand(2), B, DL, TLI);
397 
398   StringRef Str1, Str2;
399   bool HasStr1 = getConstantStringInfo(Str1P, Str1);
400   bool HasStr2 = getConstantStringInfo(Str2P, Str2);
401 
402   // strncmp(x, y)  -> cnst  (if both x and y are constant strings)
403   if (HasStr1 && HasStr2) {
404     StringRef SubStr1 = Str1.substr(0, Length);
405     StringRef SubStr2 = Str2.substr(0, Length);
406     return ConstantInt::get(CI->getType(), SubStr1.compare(SubStr2));
407   }
408 
409   if (HasStr1 && Str1.empty()) // strncmp("", x, n) -> -*x
410     return B.CreateNeg(B.CreateZExt(
411         B.CreateLoad(B.getInt8Ty(), Str2P, "strcmpload"), CI->getType()));
412 
413   if (HasStr2 && Str2.empty()) // strncmp(x, "", n) -> *x
414     return B.CreateZExt(B.CreateLoad(B.getInt8Ty(), Str1P, "strcmpload"),
415                         CI->getType());
416 
417   uint64_t Len1 = GetStringLength(Str1P);
418   uint64_t Len2 = GetStringLength(Str2P);
419 
420   // strncmp to memcmp
421   if (!HasStr1 && HasStr2) {
422     Len2 = std::min(Len2, Length);
423     if (canTransformToMemCmp(CI, Str1P, Len2, DL))
424       return emitMemCmp(
425           Str1P, Str2P,
426           ConstantInt::get(DL.getIntPtrType(CI->getContext()), Len2), B, DL,
427           TLI);
428   } else if (HasStr1 && !HasStr2) {
429     Len1 = std::min(Len1, Length);
430     if (canTransformToMemCmp(CI, Str2P, Len1, DL))
431       return emitMemCmp(
432           Str1P, Str2P,
433           ConstantInt::get(DL.getIntPtrType(CI->getContext()), Len1), B, DL,
434           TLI);
435   }
436 
437   return nullptr;
438 }
439 
440 Value *LibCallSimplifier::optimizeStrCpy(CallInst *CI, IRBuilder<> &B) {
441   Value *Dst = CI->getArgOperand(0), *Src = CI->getArgOperand(1);
442   if (Dst == Src) // strcpy(x,x)  -> x
443     return Src;
444 
445   // See if we can get the length of the input string.
446   uint64_t Len = GetStringLength(Src);
447   if (Len == 0)
448     return nullptr;
449 
450   // We have enough information to now generate the memcpy call to do the
451   // copy for us.  Make a memcpy to copy the nul byte with align = 1.
452   B.CreateMemCpy(Dst, 1, Src, 1,
453                  ConstantInt::get(DL.getIntPtrType(CI->getContext()), Len));
454   return Dst;
455 }
456 
457 Value *LibCallSimplifier::optimizeStpCpy(CallInst *CI, IRBuilder<> &B) {
458   Function *Callee = CI->getCalledFunction();
459   Value *Dst = CI->getArgOperand(0), *Src = CI->getArgOperand(1);
460   if (Dst == Src) { // stpcpy(x,x)  -> x+strlen(x)
461     Value *StrLen = emitStrLen(Src, B, DL, TLI);
462     return StrLen ? B.CreateInBoundsGEP(B.getInt8Ty(), Dst, StrLen) : nullptr;
463   }
464 
465   // See if we can get the length of the input string.
466   uint64_t Len = GetStringLength(Src);
467   if (Len == 0)
468     return nullptr;
469 
470   Type *PT = Callee->getFunctionType()->getParamType(0);
471   Value *LenV = ConstantInt::get(DL.getIntPtrType(PT), Len);
472   Value *DstEnd = B.CreateGEP(B.getInt8Ty(), Dst,
473                               ConstantInt::get(DL.getIntPtrType(PT), Len - 1));
474 
475   // We have enough information to now generate the memcpy call to do the
476   // copy for us.  Make a memcpy to copy the nul byte with align = 1.
477   B.CreateMemCpy(Dst, 1, Src, 1, LenV);
478   return DstEnd;
479 }
480 
481 Value *LibCallSimplifier::optimizeStrNCpy(CallInst *CI, IRBuilder<> &B) {
482   Function *Callee = CI->getCalledFunction();
483   Value *Dst = CI->getArgOperand(0);
484   Value *Src = CI->getArgOperand(1);
485   Value *LenOp = CI->getArgOperand(2);
486 
487   // See if we can get the length of the input string.
488   uint64_t SrcLen = GetStringLength(Src);
489   if (SrcLen == 0)
490     return nullptr;
491   --SrcLen;
492 
493   if (SrcLen == 0) {
494     // strncpy(x, "", y) -> memset(align 1 x, '\0', y)
495     B.CreateMemSet(Dst, B.getInt8('\0'), LenOp, 1);
496     return Dst;
497   }
498 
499   uint64_t Len;
500   if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(LenOp))
501     Len = LengthArg->getZExtValue();
502   else
503     return nullptr;
504 
505   if (Len == 0)
506     return Dst; // strncpy(x, y, 0) -> x
507 
508   // Let strncpy handle the zero padding
509   if (Len > SrcLen + 1)
510     return nullptr;
511 
512   Type *PT = Callee->getFunctionType()->getParamType(0);
513   // strncpy(x, s, c) -> memcpy(align 1 x, align 1 s, c) [s and c are constant]
514   B.CreateMemCpy(Dst, 1, Src, 1, ConstantInt::get(DL.getIntPtrType(PT), Len));
515 
516   return Dst;
517 }
518 
519 Value *LibCallSimplifier::optimizeStringLength(CallInst *CI, IRBuilder<> &B,
520                                                unsigned CharSize) {
521   Value *Src = CI->getArgOperand(0);
522 
523   // Constant folding: strlen("xyz") -> 3
524   if (uint64_t Len = GetStringLength(Src, CharSize))
525     return ConstantInt::get(CI->getType(), Len - 1);
526 
527   // If s is a constant pointer pointing to a string literal, we can fold
528   // strlen(s + x) to strlen(s) - x, when x is known to be in the range
529   // [0, strlen(s)] or the string has a single null terminator '\0' at the end.
530   // We only try to simplify strlen when the pointer s points to an array
531   // of i8. Otherwise, we would need to scale the offset x before doing the
532   // subtraction. This will make the optimization more complex, and it's not
533   // very useful because calling strlen for a pointer of other types is
534   // very uncommon.
535   if (GEPOperator *GEP = dyn_cast<GEPOperator>(Src)) {
536     if (!isGEPBasedOnPointerToString(GEP, CharSize))
537       return nullptr;
538 
539     ConstantDataArraySlice Slice;
540     if (getConstantDataArrayInfo(GEP->getOperand(0), Slice, CharSize)) {
541       uint64_t NullTermIdx;
542       if (Slice.Array == nullptr) {
543         NullTermIdx = 0;
544       } else {
545         NullTermIdx = ~((uint64_t)0);
546         for (uint64_t I = 0, E = Slice.Length; I < E; ++I) {
547           if (Slice.Array->getElementAsInteger(I + Slice.Offset) == 0) {
548             NullTermIdx = I;
549             break;
550           }
551         }
552         // If the string does not have '\0', leave it to strlen to compute
553         // its length.
554         if (NullTermIdx == ~((uint64_t)0))
555           return nullptr;
556       }
557 
558       Value *Offset = GEP->getOperand(2);
559       KnownBits Known = computeKnownBits(Offset, DL, 0, nullptr, CI, nullptr);
560       Known.Zero.flipAllBits();
561       uint64_t ArrSize =
562              cast<ArrayType>(GEP->getSourceElementType())->getNumElements();
563 
564       // KnownZero's bits are flipped, so zeros in KnownZero now represent
565       // bits known to be zeros in Offset, and ones in KnowZero represent
566       // bits unknown in Offset. Therefore, Offset is known to be in range
567       // [0, NullTermIdx] when the flipped KnownZero is non-negative and
568       // unsigned-less-than NullTermIdx.
569       //
570       // If Offset is not provably in the range [0, NullTermIdx], we can still
571       // optimize if we can prove that the program has undefined behavior when
572       // Offset is outside that range. That is the case when GEP->getOperand(0)
573       // is a pointer to an object whose memory extent is NullTermIdx+1.
574       if ((Known.Zero.isNonNegative() && Known.Zero.ule(NullTermIdx)) ||
575           (GEP->isInBounds() && isa<GlobalVariable>(GEP->getOperand(0)) &&
576            NullTermIdx == ArrSize - 1)) {
577         Offset = B.CreateSExtOrTrunc(Offset, CI->getType());
578         return B.CreateSub(ConstantInt::get(CI->getType(), NullTermIdx),
579                            Offset);
580       }
581     }
582 
583     return nullptr;
584   }
585 
586   // strlen(x?"foo":"bars") --> x ? 3 : 4
587   if (SelectInst *SI = dyn_cast<SelectInst>(Src)) {
588     uint64_t LenTrue = GetStringLength(SI->getTrueValue(), CharSize);
589     uint64_t LenFalse = GetStringLength(SI->getFalseValue(), CharSize);
590     if (LenTrue && LenFalse) {
591       ORE.emit([&]() {
592         return OptimizationRemark("instcombine", "simplify-libcalls", CI)
593                << "folded strlen(select) to select of constants";
594       });
595       return B.CreateSelect(SI->getCondition(),
596                             ConstantInt::get(CI->getType(), LenTrue - 1),
597                             ConstantInt::get(CI->getType(), LenFalse - 1));
598     }
599   }
600 
601   // strlen(x) != 0 --> *x != 0
602   // strlen(x) == 0 --> *x == 0
603   if (isOnlyUsedInZeroEqualityComparison(CI))
604     return B.CreateZExt(B.CreateLoad(B.getIntNTy(CharSize), Src, "strlenfirst"),
605                         CI->getType());
606 
607   return nullptr;
608 }
609 
610 Value *LibCallSimplifier::optimizeStrLen(CallInst *CI, IRBuilder<> &B) {
611   return optimizeStringLength(CI, B, 8);
612 }
613 
614 Value *LibCallSimplifier::optimizeWcslen(CallInst *CI, IRBuilder<> &B) {
615   Module &M = *CI->getModule();
616   unsigned WCharSize = TLI->getWCharSize(M) * 8;
617   // We cannot perform this optimization without wchar_size metadata.
618   if (WCharSize == 0)
619     return nullptr;
620 
621   return optimizeStringLength(CI, B, WCharSize);
622 }
623 
624 Value *LibCallSimplifier::optimizeStrPBrk(CallInst *CI, IRBuilder<> &B) {
625   StringRef S1, S2;
626   bool HasS1 = getConstantStringInfo(CI->getArgOperand(0), S1);
627   bool HasS2 = getConstantStringInfo(CI->getArgOperand(1), S2);
628 
629   // strpbrk(s, "") -> nullptr
630   // strpbrk("", s) -> nullptr
631   if ((HasS1 && S1.empty()) || (HasS2 && S2.empty()))
632     return Constant::getNullValue(CI->getType());
633 
634   // Constant folding.
635   if (HasS1 && HasS2) {
636     size_t I = S1.find_first_of(S2);
637     if (I == StringRef::npos) // No match.
638       return Constant::getNullValue(CI->getType());
639 
640     return B.CreateGEP(B.getInt8Ty(), CI->getArgOperand(0), B.getInt64(I),
641                        "strpbrk");
642   }
643 
644   // strpbrk(s, "a") -> strchr(s, 'a')
645   if (HasS2 && S2.size() == 1)
646     return emitStrChr(CI->getArgOperand(0), S2[0], B, TLI);
647 
648   return nullptr;
649 }
650 
651 Value *LibCallSimplifier::optimizeStrTo(CallInst *CI, IRBuilder<> &B) {
652   Value *EndPtr = CI->getArgOperand(1);
653   if (isa<ConstantPointerNull>(EndPtr)) {
654     // With a null EndPtr, this function won't capture the main argument.
655     // It would be readonly too, except that it still may write to errno.
656     CI->addParamAttr(0, Attribute::NoCapture);
657   }
658 
659   return nullptr;
660 }
661 
662 Value *LibCallSimplifier::optimizeStrSpn(CallInst *CI, IRBuilder<> &B) {
663   StringRef S1, S2;
664   bool HasS1 = getConstantStringInfo(CI->getArgOperand(0), S1);
665   bool HasS2 = getConstantStringInfo(CI->getArgOperand(1), S2);
666 
667   // strspn(s, "") -> 0
668   // strspn("", s) -> 0
669   if ((HasS1 && S1.empty()) || (HasS2 && S2.empty()))
670     return Constant::getNullValue(CI->getType());
671 
672   // Constant folding.
673   if (HasS1 && HasS2) {
674     size_t Pos = S1.find_first_not_of(S2);
675     if (Pos == StringRef::npos)
676       Pos = S1.size();
677     return ConstantInt::get(CI->getType(), Pos);
678   }
679 
680   return nullptr;
681 }
682 
683 Value *LibCallSimplifier::optimizeStrCSpn(CallInst *CI, IRBuilder<> &B) {
684   StringRef S1, S2;
685   bool HasS1 = getConstantStringInfo(CI->getArgOperand(0), S1);
686   bool HasS2 = getConstantStringInfo(CI->getArgOperand(1), S2);
687 
688   // strcspn("", s) -> 0
689   if (HasS1 && S1.empty())
690     return Constant::getNullValue(CI->getType());
691 
692   // Constant folding.
693   if (HasS1 && HasS2) {
694     size_t Pos = S1.find_first_of(S2);
695     if (Pos == StringRef::npos)
696       Pos = S1.size();
697     return ConstantInt::get(CI->getType(), Pos);
698   }
699 
700   // strcspn(s, "") -> strlen(s)
701   if (HasS2 && S2.empty())
702     return emitStrLen(CI->getArgOperand(0), B, DL, TLI);
703 
704   return nullptr;
705 }
706 
707 Value *LibCallSimplifier::optimizeStrStr(CallInst *CI, IRBuilder<> &B) {
708   // fold strstr(x, x) -> x.
709   if (CI->getArgOperand(0) == CI->getArgOperand(1))
710     return B.CreateBitCast(CI->getArgOperand(0), CI->getType());
711 
712   // fold strstr(a, b) == a -> strncmp(a, b, strlen(b)) == 0
713   if (isOnlyUsedInEqualityComparison(CI, CI->getArgOperand(0))) {
714     Value *StrLen = emitStrLen(CI->getArgOperand(1), B, DL, TLI);
715     if (!StrLen)
716       return nullptr;
717     Value *StrNCmp = emitStrNCmp(CI->getArgOperand(0), CI->getArgOperand(1),
718                                  StrLen, B, DL, TLI);
719     if (!StrNCmp)
720       return nullptr;
721     for (auto UI = CI->user_begin(), UE = CI->user_end(); UI != UE;) {
722       ICmpInst *Old = cast<ICmpInst>(*UI++);
723       Value *Cmp =
724           B.CreateICmp(Old->getPredicate(), StrNCmp,
725                        ConstantInt::getNullValue(StrNCmp->getType()), "cmp");
726       replaceAllUsesWith(Old, Cmp);
727     }
728     return CI;
729   }
730 
731   // See if either input string is a constant string.
732   StringRef SearchStr, ToFindStr;
733   bool HasStr1 = getConstantStringInfo(CI->getArgOperand(0), SearchStr);
734   bool HasStr2 = getConstantStringInfo(CI->getArgOperand(1), ToFindStr);
735 
736   // fold strstr(x, "") -> x.
737   if (HasStr2 && ToFindStr.empty())
738     return B.CreateBitCast(CI->getArgOperand(0), CI->getType());
739 
740   // If both strings are known, constant fold it.
741   if (HasStr1 && HasStr2) {
742     size_t Offset = SearchStr.find(ToFindStr);
743 
744     if (Offset == StringRef::npos) // strstr("foo", "bar") -> null
745       return Constant::getNullValue(CI->getType());
746 
747     // strstr("abcd", "bc") -> gep((char*)"abcd", 1)
748     Value *Result = castToCStr(CI->getArgOperand(0), B);
749     Result =
750         B.CreateConstInBoundsGEP1_64(B.getInt8Ty(), Result, Offset, "strstr");
751     return B.CreateBitCast(Result, CI->getType());
752   }
753 
754   // fold strstr(x, "y") -> strchr(x, 'y').
755   if (HasStr2 && ToFindStr.size() == 1) {
756     Value *StrChr = emitStrChr(CI->getArgOperand(0), ToFindStr[0], B, TLI);
757     return StrChr ? B.CreateBitCast(StrChr, CI->getType()) : nullptr;
758   }
759   return nullptr;
760 }
761 
762 Value *LibCallSimplifier::optimizeMemChr(CallInst *CI, IRBuilder<> &B) {
763   Value *SrcStr = CI->getArgOperand(0);
764   ConstantInt *CharC = dyn_cast<ConstantInt>(CI->getArgOperand(1));
765   ConstantInt *LenC = dyn_cast<ConstantInt>(CI->getArgOperand(2));
766 
767   // memchr(x, y, 0) -> null
768   if (LenC && LenC->isZero())
769     return Constant::getNullValue(CI->getType());
770 
771   // From now on we need at least constant length and string.
772   StringRef Str;
773   if (!LenC || !getConstantStringInfo(SrcStr, Str, 0, /*TrimAtNul=*/false))
774     return nullptr;
775 
776   // Truncate the string to LenC. If Str is smaller than LenC we will still only
777   // scan the string, as reading past the end of it is undefined and we can just
778   // return null if we don't find the char.
779   Str = Str.substr(0, LenC->getZExtValue());
780 
781   // If the char is variable but the input str and length are not we can turn
782   // this memchr call into a simple bit field test. Of course this only works
783   // when the return value is only checked against null.
784   //
785   // It would be really nice to reuse switch lowering here but we can't change
786   // the CFG at this point.
787   //
788   // memchr("\r\n", C, 2) != nullptr -> (1 << C & ((1 << '\r') | (1 << '\n')))
789   // != 0
790   //   after bounds check.
791   if (!CharC && !Str.empty() && isOnlyUsedInZeroEqualityComparison(CI)) {
792     unsigned char Max =
793         *std::max_element(reinterpret_cast<const unsigned char *>(Str.begin()),
794                           reinterpret_cast<const unsigned char *>(Str.end()));
795 
796     // Make sure the bit field we're about to create fits in a register on the
797     // target.
798     // FIXME: On a 64 bit architecture this prevents us from using the
799     // interesting range of alpha ascii chars. We could do better by emitting
800     // two bitfields or shifting the range by 64 if no lower chars are used.
801     if (!DL.fitsInLegalInteger(Max + 1))
802       return nullptr;
803 
804     // For the bit field use a power-of-2 type with at least 8 bits to avoid
805     // creating unnecessary illegal types.
806     unsigned char Width = NextPowerOf2(std::max((unsigned char)7, Max));
807 
808     // Now build the bit field.
809     APInt Bitfield(Width, 0);
810     for (char C : Str)
811       Bitfield.setBit((unsigned char)C);
812     Value *BitfieldC = B.getInt(Bitfield);
813 
814     // Adjust width of "C" to the bitfield width, then mask off the high bits.
815     Value *C = B.CreateZExtOrTrunc(CI->getArgOperand(1), BitfieldC->getType());
816     C = B.CreateAnd(C, B.getIntN(Width, 0xFF));
817 
818     // First check that the bit field access is within bounds.
819     Value *Bounds = B.CreateICmp(ICmpInst::ICMP_ULT, C, B.getIntN(Width, Width),
820                                  "memchr.bounds");
821 
822     // Create code that checks if the given bit is set in the field.
823     Value *Shl = B.CreateShl(B.getIntN(Width, 1ULL), C);
824     Value *Bits = B.CreateIsNotNull(B.CreateAnd(Shl, BitfieldC), "memchr.bits");
825 
826     // Finally merge both checks and cast to pointer type. The inttoptr
827     // implicitly zexts the i1 to intptr type.
828     return B.CreateIntToPtr(B.CreateAnd(Bounds, Bits, "memchr"), CI->getType());
829   }
830 
831   // Check if all arguments are constants.  If so, we can constant fold.
832   if (!CharC)
833     return nullptr;
834 
835   // Compute the offset.
836   size_t I = Str.find(CharC->getSExtValue() & 0xFF);
837   if (I == StringRef::npos) // Didn't find the char.  memchr returns null.
838     return Constant::getNullValue(CI->getType());
839 
840   // memchr(s+n,c,l) -> gep(s+n+i,c)
841   return B.CreateGEP(B.getInt8Ty(), SrcStr, B.getInt64(I), "memchr");
842 }
843 
844 static Value *optimizeMemCmpConstantSize(CallInst *CI, Value *LHS, Value *RHS,
845                                          uint64_t Len, IRBuilder<> &B,
846                                          const DataLayout &DL) {
847   if (Len == 0) // memcmp(s1,s2,0) -> 0
848     return Constant::getNullValue(CI->getType());
849 
850   // memcmp(S1,S2,1) -> *(unsigned char*)LHS - *(unsigned char*)RHS
851   if (Len == 1) {
852     Value *LHSV =
853         B.CreateZExt(B.CreateLoad(B.getInt8Ty(), castToCStr(LHS, B), "lhsc"),
854                      CI->getType(), "lhsv");
855     Value *RHSV =
856         B.CreateZExt(B.CreateLoad(B.getInt8Ty(), castToCStr(RHS, B), "rhsc"),
857                      CI->getType(), "rhsv");
858     return B.CreateSub(LHSV, RHSV, "chardiff");
859   }
860 
861   // memcmp(S1,S2,N/8)==0 -> (*(intN_t*)S1 != *(intN_t*)S2)==0
862   // TODO: The case where both inputs are constants does not need to be limited
863   // to legal integers or equality comparison. See block below this.
864   if (DL.isLegalInteger(Len * 8) && isOnlyUsedInZeroEqualityComparison(CI)) {
865     IntegerType *IntType = IntegerType::get(CI->getContext(), Len * 8);
866     unsigned PrefAlignment = DL.getPrefTypeAlignment(IntType);
867 
868     // First, see if we can fold either argument to a constant.
869     Value *LHSV = nullptr;
870     if (auto *LHSC = dyn_cast<Constant>(LHS)) {
871       LHSC = ConstantExpr::getBitCast(LHSC, IntType->getPointerTo());
872       LHSV = ConstantFoldLoadFromConstPtr(LHSC, IntType, DL);
873     }
874     Value *RHSV = nullptr;
875     if (auto *RHSC = dyn_cast<Constant>(RHS)) {
876       RHSC = ConstantExpr::getBitCast(RHSC, IntType->getPointerTo());
877       RHSV = ConstantFoldLoadFromConstPtr(RHSC, IntType, DL);
878     }
879 
880     // Don't generate unaligned loads. If either source is constant data,
881     // alignment doesn't matter for that source because there is no load.
882     if ((LHSV || getKnownAlignment(LHS, DL, CI) >= PrefAlignment) &&
883         (RHSV || getKnownAlignment(RHS, DL, CI) >= PrefAlignment)) {
884       if (!LHSV) {
885         Type *LHSPtrTy =
886             IntType->getPointerTo(LHS->getType()->getPointerAddressSpace());
887         LHSV = B.CreateLoad(IntType, B.CreateBitCast(LHS, LHSPtrTy), "lhsv");
888       }
889       if (!RHSV) {
890         Type *RHSPtrTy =
891             IntType->getPointerTo(RHS->getType()->getPointerAddressSpace());
892         RHSV = B.CreateLoad(IntType, B.CreateBitCast(RHS, RHSPtrTy), "rhsv");
893       }
894       return B.CreateZExt(B.CreateICmpNE(LHSV, RHSV), CI->getType(), "memcmp");
895     }
896   }
897 
898   // Constant folding: memcmp(x, y, Len) -> constant (all arguments are const).
899   // TODO: This is limited to i8 arrays.
900   StringRef LHSStr, RHSStr;
901   if (getConstantStringInfo(LHS, LHSStr) &&
902       getConstantStringInfo(RHS, RHSStr)) {
903     // Make sure we're not reading out-of-bounds memory.
904     if (Len > LHSStr.size() || Len > RHSStr.size())
905       return nullptr;
906     // Fold the memcmp and normalize the result.  This way we get consistent
907     // results across multiple platforms.
908     uint64_t Ret = 0;
909     int Cmp = memcmp(LHSStr.data(), RHSStr.data(), Len);
910     if (Cmp < 0)
911       Ret = -1;
912     else if (Cmp > 0)
913       Ret = 1;
914     return ConstantInt::get(CI->getType(), Ret);
915   }
916   return nullptr;
917 }
918 
919 // Most simplifications for memcmp also apply to bcmp.
920 Value *LibCallSimplifier::optimizeMemCmpBCmpCommon(CallInst *CI,
921                                                    IRBuilder<> &B) {
922   Value *LHS = CI->getArgOperand(0), *RHS = CI->getArgOperand(1);
923   Value *Size = CI->getArgOperand(2);
924 
925   if (LHS == RHS) // memcmp(s,s,x) -> 0
926     return Constant::getNullValue(CI->getType());
927 
928   // Handle constant lengths.
929   if (ConstantInt *LenC = dyn_cast<ConstantInt>(Size))
930     if (Value *Res = optimizeMemCmpConstantSize(CI, LHS, RHS,
931                                                 LenC->getZExtValue(), B, DL))
932       return Res;
933 
934   return nullptr;
935 }
936 
937 Value *LibCallSimplifier::optimizeMemCmp(CallInst *CI, IRBuilder<> &B) {
938   if (Value *V = optimizeMemCmpBCmpCommon(CI, B))
939     return V;
940 
941   // memcmp(x, y, Len) == 0 -> bcmp(x, y, Len) == 0
942   // `bcmp` can be more efficient than memcmp because it only has to know that
943   // there is a difference, not where it is.
944   if (isOnlyUsedInZeroEqualityComparison(CI) && TLI->has(LibFunc_bcmp)) {
945     Value *LHS = CI->getArgOperand(0);
946     Value *RHS = CI->getArgOperand(1);
947     Value *Size = CI->getArgOperand(2);
948     return emitBCmp(LHS, RHS, Size, B, DL, TLI);
949   }
950 
951   return nullptr;
952 }
953 
954 Value *LibCallSimplifier::optimizeBCmp(CallInst *CI, IRBuilder<> &B) {
955   return optimizeMemCmpBCmpCommon(CI, B);
956 }
957 
958 Value *LibCallSimplifier::optimizeMemCpy(CallInst *CI, IRBuilder<> &B) {
959   // memcpy(x, y, n) -> llvm.memcpy(align 1 x, align 1 y, n)
960   B.CreateMemCpy(CI->getArgOperand(0), 1, CI->getArgOperand(1), 1,
961                  CI->getArgOperand(2));
962   return CI->getArgOperand(0);
963 }
964 
965 Value *LibCallSimplifier::optimizeMemMove(CallInst *CI, IRBuilder<> &B) {
966   // memmove(x, y, n) -> llvm.memmove(align 1 x, align 1 y, n)
967   B.CreateMemMove(CI->getArgOperand(0), 1, CI->getArgOperand(1), 1,
968                   CI->getArgOperand(2));
969   return CI->getArgOperand(0);
970 }
971 
972 /// Fold memset[_chk](malloc(n), 0, n) --> calloc(1, n).
973 Value *LibCallSimplifier::foldMallocMemset(CallInst *Memset, IRBuilder<> &B) {
974   // This has to be a memset of zeros (bzero).
975   auto *FillValue = dyn_cast<ConstantInt>(Memset->getArgOperand(1));
976   if (!FillValue || FillValue->getZExtValue() != 0)
977     return nullptr;
978 
979   // TODO: We should handle the case where the malloc has more than one use.
980   // This is necessary to optimize common patterns such as when the result of
981   // the malloc is checked against null or when a memset intrinsic is used in
982   // place of a memset library call.
983   auto *Malloc = dyn_cast<CallInst>(Memset->getArgOperand(0));
984   if (!Malloc || !Malloc->hasOneUse())
985     return nullptr;
986 
987   // Is the inner call really malloc()?
988   Function *InnerCallee = Malloc->getCalledFunction();
989   if (!InnerCallee)
990     return nullptr;
991 
992   LibFunc Func;
993   if (!TLI->getLibFunc(*InnerCallee, Func) || !TLI->has(Func) ||
994       Func != LibFunc_malloc)
995     return nullptr;
996 
997   // The memset must cover the same number of bytes that are malloc'd.
998   if (Memset->getArgOperand(2) != Malloc->getArgOperand(0))
999     return nullptr;
1000 
1001   // Replace the malloc with a calloc. We need the data layout to know what the
1002   // actual size of a 'size_t' parameter is.
1003   B.SetInsertPoint(Malloc->getParent(), ++Malloc->getIterator());
1004   const DataLayout &DL = Malloc->getModule()->getDataLayout();
1005   IntegerType *SizeType = DL.getIntPtrType(B.GetInsertBlock()->getContext());
1006   Value *Calloc = emitCalloc(ConstantInt::get(SizeType, 1),
1007                              Malloc->getArgOperand(0), Malloc->getAttributes(),
1008                              B, *TLI);
1009   if (!Calloc)
1010     return nullptr;
1011 
1012   Malloc->replaceAllUsesWith(Calloc);
1013   eraseFromParent(Malloc);
1014 
1015   return Calloc;
1016 }
1017 
1018 Value *LibCallSimplifier::optimizeMemSet(CallInst *CI, IRBuilder<> &B) {
1019   if (auto *Calloc = foldMallocMemset(CI, B))
1020     return Calloc;
1021 
1022   // memset(p, v, n) -> llvm.memset(align 1 p, v, n)
1023   Value *Val = B.CreateIntCast(CI->getArgOperand(1), B.getInt8Ty(), false);
1024   B.CreateMemSet(CI->getArgOperand(0), Val, CI->getArgOperand(2), 1);
1025   return CI->getArgOperand(0);
1026 }
1027 
1028 Value *LibCallSimplifier::optimizeRealloc(CallInst *CI, IRBuilder<> &B) {
1029   if (isa<ConstantPointerNull>(CI->getArgOperand(0)))
1030     return emitMalloc(CI->getArgOperand(1), B, DL, TLI);
1031 
1032   return nullptr;
1033 }
1034 
1035 //===----------------------------------------------------------------------===//
1036 // Math Library Optimizations
1037 //===----------------------------------------------------------------------===//
1038 
1039 // Replace a libcall \p CI with a call to intrinsic \p IID
1040 static Value *replaceUnaryCall(CallInst *CI, IRBuilder<> &B, Intrinsic::ID IID) {
1041   // Propagate fast-math flags from the existing call to the new call.
1042   IRBuilder<>::FastMathFlagGuard Guard(B);
1043   B.setFastMathFlags(CI->getFastMathFlags());
1044 
1045   Module *M = CI->getModule();
1046   Value *V = CI->getArgOperand(0);
1047   Function *F = Intrinsic::getDeclaration(M, IID, CI->getType());
1048   CallInst *NewCall = B.CreateCall(F, V);
1049   NewCall->takeName(CI);
1050   return NewCall;
1051 }
1052 
1053 /// Return a variant of Val with float type.
1054 /// Currently this works in two cases: If Val is an FPExtension of a float
1055 /// value to something bigger, simply return the operand.
1056 /// If Val is a ConstantFP but can be converted to a float ConstantFP without
1057 /// loss of precision do so.
1058 static Value *valueHasFloatPrecision(Value *Val) {
1059   if (FPExtInst *Cast = dyn_cast<FPExtInst>(Val)) {
1060     Value *Op = Cast->getOperand(0);
1061     if (Op->getType()->isFloatTy())
1062       return Op;
1063   }
1064   if (ConstantFP *Const = dyn_cast<ConstantFP>(Val)) {
1065     APFloat F = Const->getValueAPF();
1066     bool losesInfo;
1067     (void)F.convert(APFloat::IEEEsingle(), APFloat::rmNearestTiesToEven,
1068                     &losesInfo);
1069     if (!losesInfo)
1070       return ConstantFP::get(Const->getContext(), F);
1071   }
1072   return nullptr;
1073 }
1074 
1075 /// Shrink double -> float functions.
1076 static Value *optimizeDoubleFP(CallInst *CI, IRBuilder<> &B,
1077                                bool isBinary, bool isPrecise = false) {
1078   Function *CalleeFn = CI->getCalledFunction();
1079   if (!CI->getType()->isDoubleTy() || !CalleeFn)
1080     return nullptr;
1081 
1082   // If not all the uses of the function are converted to float, then bail out.
1083   // This matters if the precision of the result is more important than the
1084   // precision of the arguments.
1085   if (isPrecise)
1086     for (User *U : CI->users()) {
1087       FPTruncInst *Cast = dyn_cast<FPTruncInst>(U);
1088       if (!Cast || !Cast->getType()->isFloatTy())
1089         return nullptr;
1090     }
1091 
1092   // If this is something like 'g((double) float)', convert to 'gf(float)'.
1093   Value *V[2];
1094   V[0] = valueHasFloatPrecision(CI->getArgOperand(0));
1095   V[1] = isBinary ? valueHasFloatPrecision(CI->getArgOperand(1)) : nullptr;
1096   if (!V[0] || (isBinary && !V[1]))
1097     return nullptr;
1098 
1099   StringRef CalleeNm = CalleeFn->getName();
1100   AttributeList CalleeAt = CalleeFn->getAttributes();
1101   bool CalleeIn = CalleeFn->isIntrinsic();
1102 
1103   // If call isn't an intrinsic, check that it isn't within a function with the
1104   // same name as the float version of this call, otherwise the result is an
1105   // infinite loop.  For example, from MinGW-w64:
1106   //
1107   // float expf(float val) { return (float) exp((double) val); }
1108   if (!CalleeIn) {
1109     const Function *Fn = CI->getFunction();
1110     StringRef FnName = Fn->getName();
1111     if (FnName.back() == 'f' &&
1112         FnName.size() == (CalleeNm.size() + 1) &&
1113         FnName.startswith(CalleeNm))
1114       return nullptr;
1115   }
1116 
1117   // Propagate the math semantics from the current function to the new function.
1118   IRBuilder<>::FastMathFlagGuard Guard(B);
1119   B.setFastMathFlags(CI->getFastMathFlags());
1120 
1121   // g((double) float) -> (double) gf(float)
1122   Value *R;
1123   if (CalleeIn) {
1124     Module *M = CI->getModule();
1125     Intrinsic::ID IID = CalleeFn->getIntrinsicID();
1126     Function *Fn = Intrinsic::getDeclaration(M, IID, B.getFloatTy());
1127     R = isBinary ? B.CreateCall(Fn, V) : B.CreateCall(Fn, V[0]);
1128   }
1129   else
1130     R = isBinary ? emitBinaryFloatFnCall(V[0], V[1], CalleeNm, B, CalleeAt)
1131                  : emitUnaryFloatFnCall(V[0], CalleeNm, B, CalleeAt);
1132 
1133   return B.CreateFPExt(R, B.getDoubleTy());
1134 }
1135 
1136 /// Shrink double -> float for unary functions.
1137 static Value *optimizeUnaryDoubleFP(CallInst *CI, IRBuilder<> &B,
1138                                     bool isPrecise = false) {
1139   return optimizeDoubleFP(CI, B, false, isPrecise);
1140 }
1141 
1142 /// Shrink double -> float for binary functions.
1143 static Value *optimizeBinaryDoubleFP(CallInst *CI, IRBuilder<> &B,
1144                                      bool isPrecise = false) {
1145   return optimizeDoubleFP(CI, B, true, isPrecise);
1146 }
1147 
1148 // cabs(z) -> sqrt((creal(z)*creal(z)) + (cimag(z)*cimag(z)))
1149 Value *LibCallSimplifier::optimizeCAbs(CallInst *CI, IRBuilder<> &B) {
1150   if (!CI->isFast())
1151     return nullptr;
1152 
1153   // Propagate fast-math flags from the existing call to new instructions.
1154   IRBuilder<>::FastMathFlagGuard Guard(B);
1155   B.setFastMathFlags(CI->getFastMathFlags());
1156 
1157   Value *Real, *Imag;
1158   if (CI->getNumArgOperands() == 1) {
1159     Value *Op = CI->getArgOperand(0);
1160     assert(Op->getType()->isArrayTy() && "Unexpected signature for cabs!");
1161     Real = B.CreateExtractValue(Op, 0, "real");
1162     Imag = B.CreateExtractValue(Op, 1, "imag");
1163   } else {
1164     assert(CI->getNumArgOperands() == 2 && "Unexpected signature for cabs!");
1165     Real = CI->getArgOperand(0);
1166     Imag = CI->getArgOperand(1);
1167   }
1168 
1169   Value *RealReal = B.CreateFMul(Real, Real);
1170   Value *ImagImag = B.CreateFMul(Imag, Imag);
1171 
1172   Function *FSqrt = Intrinsic::getDeclaration(CI->getModule(), Intrinsic::sqrt,
1173                                               CI->getType());
1174   return B.CreateCall(FSqrt, B.CreateFAdd(RealReal, ImagImag), "cabs");
1175 }
1176 
1177 static Value *optimizeTrigReflections(CallInst *Call, LibFunc Func,
1178                                       IRBuilder<> &B) {
1179   if (!isa<FPMathOperator>(Call))
1180     return nullptr;
1181 
1182   IRBuilder<>::FastMathFlagGuard Guard(B);
1183   B.setFastMathFlags(Call->getFastMathFlags());
1184 
1185   // TODO: Can this be shared to also handle LLVM intrinsics?
1186   Value *X;
1187   switch (Func) {
1188   case LibFunc_sin:
1189   case LibFunc_sinf:
1190   case LibFunc_sinl:
1191   case LibFunc_tan:
1192   case LibFunc_tanf:
1193   case LibFunc_tanl:
1194     // sin(-X) --> -sin(X)
1195     // tan(-X) --> -tan(X)
1196     if (match(Call->getArgOperand(0), m_OneUse(m_FNeg(m_Value(X)))))
1197       return B.CreateFNeg(B.CreateCall(Call->getCalledFunction(), X));
1198     break;
1199   case LibFunc_cos:
1200   case LibFunc_cosf:
1201   case LibFunc_cosl:
1202     // cos(-X) --> cos(X)
1203     if (match(Call->getArgOperand(0), m_FNeg(m_Value(X))))
1204       return B.CreateCall(Call->getCalledFunction(), X, "cos");
1205     break;
1206   default:
1207     break;
1208   }
1209   return nullptr;
1210 }
1211 
1212 static Value *getPow(Value *InnerChain[33], unsigned Exp, IRBuilder<> &B) {
1213   // Multiplications calculated using Addition Chains.
1214   // Refer: http://wwwhomes.uni-bielefeld.de/achim/addition_chain.html
1215 
1216   assert(Exp != 0 && "Incorrect exponent 0 not handled");
1217 
1218   if (InnerChain[Exp])
1219     return InnerChain[Exp];
1220 
1221   static const unsigned AddChain[33][2] = {
1222       {0, 0}, // Unused.
1223       {0, 0}, // Unused (base case = pow1).
1224       {1, 1}, // Unused (pre-computed).
1225       {1, 2},  {2, 2},   {2, 3},  {3, 3},   {2, 5},  {4, 4},
1226       {1, 8},  {5, 5},   {1, 10}, {6, 6},   {4, 9},  {7, 7},
1227       {3, 12}, {8, 8},   {8, 9},  {2, 16},  {1, 18}, {10, 10},
1228       {6, 15}, {11, 11}, {3, 20}, {12, 12}, {8, 17}, {13, 13},
1229       {3, 24}, {14, 14}, {4, 25}, {15, 15}, {3, 28}, {16, 16},
1230   };
1231 
1232   InnerChain[Exp] = B.CreateFMul(getPow(InnerChain, AddChain[Exp][0], B),
1233                                  getPow(InnerChain, AddChain[Exp][1], B));
1234   return InnerChain[Exp];
1235 }
1236 
1237 /// Use exp{,2}(x * y) for pow(exp{,2}(x), y);
1238 /// exp2(n * x) for pow(2.0 ** n, x); exp10(x) for pow(10.0, x);
1239 /// exp2(log2(C)*x) for pow(C,x).
1240 Value *LibCallSimplifier::replacePowWithExp(CallInst *Pow, IRBuilder<> &B) {
1241   Value *Base = Pow->getArgOperand(0), *Expo = Pow->getArgOperand(1);
1242   AttributeList Attrs = Pow->getCalledFunction()->getAttributes();
1243   Module *Mod = Pow->getModule();
1244   Type *Ty = Pow->getType();
1245   bool Ignored;
1246 
1247   // Evaluate special cases related to a nested function as the base.
1248 
1249   // pow(exp(x), y) -> exp(x * y)
1250   // pow(exp2(x), y) -> exp2(x * y)
1251   // If exp{,2}() is used only once, it is better to fold two transcendental
1252   // math functions into one.  If used again, exp{,2}() would still have to be
1253   // called with the original argument, then keep both original transcendental
1254   // functions.  However, this transformation is only safe with fully relaxed
1255   // math semantics, since, besides rounding differences, it changes overflow
1256   // and underflow behavior quite dramatically.  For example:
1257   //   pow(exp(1000), 0.001) = pow(inf, 0.001) = inf
1258   // Whereas:
1259   //   exp(1000 * 0.001) = exp(1)
1260   // TODO: Loosen the requirement for fully relaxed math semantics.
1261   // TODO: Handle exp10() when more targets have it available.
1262   CallInst *BaseFn = dyn_cast<CallInst>(Base);
1263   if (BaseFn && BaseFn->hasOneUse() && BaseFn->isFast() && Pow->isFast()) {
1264     LibFunc LibFn;
1265 
1266     Function *CalleeFn = BaseFn->getCalledFunction();
1267     if (CalleeFn &&
1268         TLI->getLibFunc(CalleeFn->getName(), LibFn) && TLI->has(LibFn)) {
1269       StringRef ExpName;
1270       Intrinsic::ID ID;
1271       Value *ExpFn;
1272       LibFunc LibFnFloat;
1273       LibFunc LibFnDouble;
1274       LibFunc LibFnLongDouble;
1275 
1276       switch (LibFn) {
1277       default:
1278         return nullptr;
1279       case LibFunc_expf:  case LibFunc_exp:  case LibFunc_expl:
1280         ExpName = TLI->getName(LibFunc_exp);
1281         ID = Intrinsic::exp;
1282         LibFnFloat = LibFunc_expf;
1283         LibFnDouble = LibFunc_exp;
1284         LibFnLongDouble = LibFunc_expl;
1285         break;
1286       case LibFunc_exp2f: case LibFunc_exp2: case LibFunc_exp2l:
1287         ExpName = TLI->getName(LibFunc_exp2);
1288         ID = Intrinsic::exp2;
1289         LibFnFloat = LibFunc_exp2f;
1290         LibFnDouble = LibFunc_exp2;
1291         LibFnLongDouble = LibFunc_exp2l;
1292         break;
1293       }
1294 
1295       // Create new exp{,2}() with the product as its argument.
1296       Value *FMul = B.CreateFMul(BaseFn->getArgOperand(0), Expo, "mul");
1297       ExpFn = BaseFn->doesNotAccessMemory()
1298               ? B.CreateCall(Intrinsic::getDeclaration(Mod, ID, Ty),
1299                              FMul, ExpName)
1300               : emitUnaryFloatFnCall(FMul, TLI, LibFnDouble, LibFnFloat,
1301                                      LibFnLongDouble, B,
1302                                      BaseFn->getAttributes());
1303 
1304       // Since the new exp{,2}() is different from the original one, dead code
1305       // elimination cannot be trusted to remove it, since it may have side
1306       // effects (e.g., errno).  When the only consumer for the original
1307       // exp{,2}() is pow(), then it has to be explicitly erased.
1308       BaseFn->replaceAllUsesWith(ExpFn);
1309       eraseFromParent(BaseFn);
1310 
1311       return ExpFn;
1312     }
1313   }
1314 
1315   // Evaluate special cases related to a constant base.
1316 
1317   const APFloat *BaseF;
1318   if (!match(Pow->getArgOperand(0), m_APFloat(BaseF)))
1319     return nullptr;
1320 
1321   // pow(2.0 ** n, x) -> exp2(n * x)
1322   if (hasUnaryFloatFn(TLI, Ty, LibFunc_exp2, LibFunc_exp2f, LibFunc_exp2l)) {
1323     APFloat BaseR = APFloat(1.0);
1324     BaseR.convert(BaseF->getSemantics(), APFloat::rmTowardZero, &Ignored);
1325     BaseR = BaseR / *BaseF;
1326     bool IsInteger = BaseF->isInteger(), IsReciprocal = BaseR.isInteger();
1327     const APFloat *NF = IsReciprocal ? &BaseR : BaseF;
1328     APSInt NI(64, false);
1329     if ((IsInteger || IsReciprocal) &&
1330         NF->convertToInteger(NI, APFloat::rmTowardZero, &Ignored) ==
1331             APFloat::opOK &&
1332         NI > 1 && NI.isPowerOf2()) {
1333       double N = NI.logBase2() * (IsReciprocal ? -1.0 : 1.0);
1334       Value *FMul = B.CreateFMul(Expo, ConstantFP::get(Ty, N), "mul");
1335       if (Pow->doesNotAccessMemory())
1336         return B.CreateCall(Intrinsic::getDeclaration(Mod, Intrinsic::exp2, Ty),
1337                             FMul, "exp2");
1338       else
1339         return emitUnaryFloatFnCall(FMul, TLI, LibFunc_exp2, LibFunc_exp2f,
1340                                     LibFunc_exp2l, B, Attrs);
1341     }
1342   }
1343 
1344   // pow(10.0, x) -> exp10(x)
1345   // TODO: There is no exp10() intrinsic yet, but some day there shall be one.
1346   if (match(Base, m_SpecificFP(10.0)) &&
1347       hasUnaryFloatFn(TLI, Ty, LibFunc_exp10, LibFunc_exp10f, LibFunc_exp10l))
1348     return emitUnaryFloatFnCall(Expo, TLI, LibFunc_exp10, LibFunc_exp10f,
1349                                 LibFunc_exp10l, B, Attrs);
1350 
1351   // pow(C,x) -> exp2(log2(C)*x)
1352   if (Pow->hasOneUse() && Pow->hasApproxFunc() && Pow->hasNoNaNs() &&
1353       Pow->hasNoInfs() && BaseF->isNormal() && !BaseF->isNegative()) {
1354     Value *Log = nullptr;
1355     if (Ty->isFloatTy())
1356       Log = ConstantFP::get(Ty, std::log2(BaseF->convertToFloat()));
1357     else if (Ty->isDoubleTy())
1358       Log = ConstantFP::get(Ty, std::log2(BaseF->convertToDouble()));
1359 
1360     if (Log) {
1361       Value *FMul = B.CreateFMul(Log, Expo, "mul");
1362       if (Pow->doesNotAccessMemory()) {
1363         return B.CreateCall(Intrinsic::getDeclaration(Mod, Intrinsic::exp2, Ty),
1364                             FMul, "exp2");
1365       } else {
1366         if (hasUnaryFloatFn(TLI, Ty, LibFunc_exp2, LibFunc_exp2f,
1367                             LibFunc_exp2l))
1368           return emitUnaryFloatFnCall(FMul, TLI, LibFunc_exp2, LibFunc_exp2f,
1369                                       LibFunc_exp2l, B, Attrs);
1370       }
1371     }
1372   }
1373   return nullptr;
1374 }
1375 
1376 static Value *getSqrtCall(Value *V, AttributeList Attrs, bool NoErrno,
1377                           Module *M, IRBuilder<> &B,
1378                           const TargetLibraryInfo *TLI) {
1379   // If errno is never set, then use the intrinsic for sqrt().
1380   if (NoErrno) {
1381     Function *SqrtFn =
1382         Intrinsic::getDeclaration(M, Intrinsic::sqrt, V->getType());
1383     return B.CreateCall(SqrtFn, V, "sqrt");
1384   }
1385 
1386   // Otherwise, use the libcall for sqrt().
1387   if (hasUnaryFloatFn(TLI, V->getType(), LibFunc_sqrt, LibFunc_sqrtf,
1388                       LibFunc_sqrtl))
1389     // TODO: We also should check that the target can in fact lower the sqrt()
1390     // libcall. We currently have no way to ask this question, so we ask if
1391     // the target has a sqrt() libcall, which is not exactly the same.
1392     return emitUnaryFloatFnCall(V, TLI, LibFunc_sqrt, LibFunc_sqrtf,
1393                                 LibFunc_sqrtl, B, Attrs);
1394 
1395   return nullptr;
1396 }
1397 
1398 /// Use square root in place of pow(x, +/-0.5).
1399 Value *LibCallSimplifier::replacePowWithSqrt(CallInst *Pow, IRBuilder<> &B) {
1400   Value *Sqrt, *Base = Pow->getArgOperand(0), *Expo = Pow->getArgOperand(1);
1401   AttributeList Attrs = Pow->getCalledFunction()->getAttributes();
1402   Module *Mod = Pow->getModule();
1403   Type *Ty = Pow->getType();
1404 
1405   const APFloat *ExpoF;
1406   if (!match(Expo, m_APFloat(ExpoF)) ||
1407       (!ExpoF->isExactlyValue(0.5) && !ExpoF->isExactlyValue(-0.5)))
1408     return nullptr;
1409 
1410   Sqrt = getSqrtCall(Base, Attrs, Pow->doesNotAccessMemory(), Mod, B, TLI);
1411   if (!Sqrt)
1412     return nullptr;
1413 
1414   // Handle signed zero base by expanding to fabs(sqrt(x)).
1415   if (!Pow->hasNoSignedZeros()) {
1416     Function *FAbsFn = Intrinsic::getDeclaration(Mod, Intrinsic::fabs, Ty);
1417     Sqrt = B.CreateCall(FAbsFn, Sqrt, "abs");
1418   }
1419 
1420   // Handle non finite base by expanding to
1421   // (x == -infinity ? +infinity : sqrt(x)).
1422   if (!Pow->hasNoInfs()) {
1423     Value *PosInf = ConstantFP::getInfinity(Ty),
1424           *NegInf = ConstantFP::getInfinity(Ty, true);
1425     Value *FCmp = B.CreateFCmpOEQ(Base, NegInf, "isinf");
1426     Sqrt = B.CreateSelect(FCmp, PosInf, Sqrt);
1427   }
1428 
1429   // If the exponent is negative, then get the reciprocal.
1430   if (ExpoF->isNegative())
1431     Sqrt = B.CreateFDiv(ConstantFP::get(Ty, 1.0), Sqrt, "reciprocal");
1432 
1433   return Sqrt;
1434 }
1435 
1436 static Value *createPowWithIntegerExponent(Value *Base, Value *Expo, Module *M,
1437                                            IRBuilder<> &B) {
1438   Value *Args[] = {Base, Expo};
1439   Function *F = Intrinsic::getDeclaration(M, Intrinsic::powi, Base->getType());
1440   return B.CreateCall(F, Args);
1441 }
1442 
1443 Value *LibCallSimplifier::optimizePow(CallInst *Pow, IRBuilder<> &B) {
1444   Value *Base = Pow->getArgOperand(0);
1445   Value *Expo = Pow->getArgOperand(1);
1446   Function *Callee = Pow->getCalledFunction();
1447   StringRef Name = Callee->getName();
1448   Type *Ty = Pow->getType();
1449   Module *M = Pow->getModule();
1450   Value *Shrunk = nullptr;
1451   bool AllowApprox = Pow->hasApproxFunc();
1452   bool Ignored;
1453 
1454   // Bail out if simplifying libcalls to pow() is disabled.
1455   if (!hasUnaryFloatFn(TLI, Ty, LibFunc_pow, LibFunc_powf, LibFunc_powl))
1456     return nullptr;
1457 
1458   // Propagate the math semantics from the call to any created instructions.
1459   IRBuilder<>::FastMathFlagGuard Guard(B);
1460   B.setFastMathFlags(Pow->getFastMathFlags());
1461 
1462   // Shrink pow() to powf() if the arguments are single precision,
1463   // unless the result is expected to be double precision.
1464   if (UnsafeFPShrink && Name == TLI->getName(LibFunc_pow) &&
1465       hasFloatVersion(Name))
1466     Shrunk = optimizeBinaryDoubleFP(Pow, B, true);
1467 
1468   // Evaluate special cases related to the base.
1469 
1470   // pow(1.0, x) -> 1.0
1471   if (match(Base, m_FPOne()))
1472     return Base;
1473 
1474   // powf(x, sitofp(e)) -> powi(x, e)
1475   // powf(x, uitofp(e)) -> powi(x, e)
1476   if (AllowApprox && (isa<SIToFPInst>(Expo) || isa<UIToFPInst>(Expo))) {
1477     Value *IntExpo = cast<Instruction>(Expo)->getOperand(0);
1478     Value *NewExpo = nullptr;
1479     unsigned BitWidth = IntExpo->getType()->getPrimitiveSizeInBits();
1480     if (isa<SIToFPInst>(Expo) && BitWidth == 32)
1481       NewExpo = IntExpo;
1482     else if (BitWidth < 32)
1483       NewExpo = isa<SIToFPInst>(Expo) ? B.CreateSExt(IntExpo, B.getInt32Ty())
1484                                       : B.CreateZExt(IntExpo, B.getInt32Ty());
1485     if (NewExpo)
1486       return createPowWithIntegerExponent(Base, NewExpo, M, B);
1487   }
1488 
1489   if (Value *Exp = replacePowWithExp(Pow, B))
1490     return Exp;
1491 
1492   // Evaluate special cases related to the exponent.
1493 
1494   // pow(x, -1.0) -> 1.0 / x
1495   if (match(Expo, m_SpecificFP(-1.0)))
1496     return B.CreateFDiv(ConstantFP::get(Ty, 1.0), Base, "reciprocal");
1497 
1498   // pow(x, 0.0) -> 1.0
1499   if (match(Expo, m_SpecificFP(0.0)))
1500     return ConstantFP::get(Ty, 1.0);
1501 
1502   // pow(x, 1.0) -> x
1503   if (match(Expo, m_FPOne()))
1504     return Base;
1505 
1506   // pow(x, 2.0) -> x * x
1507   if (match(Expo, m_SpecificFP(2.0)))
1508     return B.CreateFMul(Base, Base, "square");
1509 
1510   if (Value *Sqrt = replacePowWithSqrt(Pow, B))
1511     return Sqrt;
1512 
1513   if (!AllowApprox)
1514     return Shrunk;
1515 
1516   // pow(x, n) -> x * x * x * ...
1517   const APFloat *ExpoF;
1518   if (match(Expo, m_APFloat(ExpoF))) {
1519     // We limit to a max of 7 multiplications, thus the maximum exponent is 32.
1520     // If the exponent is an integer+0.5 we generate a call to sqrt and an
1521     // additional fmul.
1522     // TODO: This whole transformation should be backend specific (e.g. some
1523     //       backends might prefer libcalls or the limit for the exponent might
1524     //       be different) and it should also consider optimizing for size.
1525     APFloat LimF(ExpoF->getSemantics(), 33.0),
1526             ExpoA(abs(*ExpoF));
1527     if (ExpoA.compare(LimF) == APFloat::cmpLessThan) {
1528       // This transformation applies to integer or integer+0.5 exponents only.
1529       // For integer+0.5, we create a sqrt(Base) call.
1530       Value *Sqrt = nullptr;
1531       if (!ExpoA.isInteger()) {
1532         APFloat Expo2 = ExpoA;
1533         // To check if ExpoA is an integer + 0.5, we add it to itself. If there
1534         // is no floating point exception and the result is an integer, then
1535         // ExpoA == integer + 0.5
1536         if (Expo2.add(ExpoA, APFloat::rmNearestTiesToEven) != APFloat::opOK)
1537           return nullptr;
1538 
1539         if (!Expo2.isInteger())
1540           return nullptr;
1541 
1542         Sqrt = getSqrtCall(Base, Pow->getCalledFunction()->getAttributes(),
1543                            Pow->doesNotAccessMemory(), M, B, TLI);
1544       }
1545 
1546       // We will memoize intermediate products of the Addition Chain.
1547       Value *InnerChain[33] = {nullptr};
1548       InnerChain[1] = Base;
1549       InnerChain[2] = B.CreateFMul(Base, Base, "square");
1550 
1551       // We cannot readily convert a non-double type (like float) to a double.
1552       // So we first convert it to something which could be converted to double.
1553       ExpoA.convert(APFloat::IEEEdouble(), APFloat::rmTowardZero, &Ignored);
1554       Value *FMul = getPow(InnerChain, ExpoA.convertToDouble(), B);
1555 
1556       // Expand pow(x, y+0.5) to pow(x, y) * sqrt(x).
1557       if (Sqrt)
1558         FMul = B.CreateFMul(FMul, Sqrt);
1559 
1560       // If the exponent is negative, then get the reciprocal.
1561       if (ExpoF->isNegative())
1562         FMul = B.CreateFDiv(ConstantFP::get(Ty, 1.0), FMul, "reciprocal");
1563 
1564       return FMul;
1565     }
1566 
1567     APSInt IntExpo(32, /*isUnsigned=*/false);
1568     // powf(x, C) -> powi(x, C) iff C is a constant signed integer value
1569     if (ExpoF->isInteger() &&
1570         ExpoF->convertToInteger(IntExpo, APFloat::rmTowardZero, &Ignored) ==
1571             APFloat::opOK) {
1572       return createPowWithIntegerExponent(
1573           Base, ConstantInt::get(B.getInt32Ty(), IntExpo), M, B);
1574     }
1575   }
1576 
1577   return Shrunk;
1578 }
1579 
1580 Value *LibCallSimplifier::optimizeExp2(CallInst *CI, IRBuilder<> &B) {
1581   Function *Callee = CI->getCalledFunction();
1582   Value *Ret = nullptr;
1583   StringRef Name = Callee->getName();
1584   if (UnsafeFPShrink && Name == "exp2" && hasFloatVersion(Name))
1585     Ret = optimizeUnaryDoubleFP(CI, B, true);
1586 
1587   Value *Op = CI->getArgOperand(0);
1588   // Turn exp2(sitofp(x)) -> ldexp(1.0, sext(x))  if sizeof(x) <= 32
1589   // Turn exp2(uitofp(x)) -> ldexp(1.0, zext(x))  if sizeof(x) < 32
1590   LibFunc LdExp = LibFunc_ldexpl;
1591   if (Op->getType()->isFloatTy())
1592     LdExp = LibFunc_ldexpf;
1593   else if (Op->getType()->isDoubleTy())
1594     LdExp = LibFunc_ldexp;
1595 
1596   if (TLI->has(LdExp)) {
1597     Value *LdExpArg = nullptr;
1598     if (SIToFPInst *OpC = dyn_cast<SIToFPInst>(Op)) {
1599       if (OpC->getOperand(0)->getType()->getPrimitiveSizeInBits() <= 32)
1600         LdExpArg = B.CreateSExt(OpC->getOperand(0), B.getInt32Ty());
1601     } else if (UIToFPInst *OpC = dyn_cast<UIToFPInst>(Op)) {
1602       if (OpC->getOperand(0)->getType()->getPrimitiveSizeInBits() < 32)
1603         LdExpArg = B.CreateZExt(OpC->getOperand(0), B.getInt32Ty());
1604     }
1605 
1606     if (LdExpArg) {
1607       Constant *One = ConstantFP::get(CI->getContext(), APFloat(1.0f));
1608       if (!Op->getType()->isFloatTy())
1609         One = ConstantExpr::getFPExtend(One, Op->getType());
1610 
1611       Module *M = CI->getModule();
1612       FunctionCallee NewCallee = M->getOrInsertFunction(
1613           TLI->getName(LdExp), Op->getType(), Op->getType(), B.getInt32Ty());
1614       CallInst *CI = B.CreateCall(NewCallee, {One, LdExpArg});
1615       if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
1616         CI->setCallingConv(F->getCallingConv());
1617 
1618       return CI;
1619     }
1620   }
1621   return Ret;
1622 }
1623 
1624 Value *LibCallSimplifier::optimizeFMinFMax(CallInst *CI, IRBuilder<> &B) {
1625   // If we can shrink the call to a float function rather than a double
1626   // function, do that first.
1627   Function *Callee = CI->getCalledFunction();
1628   StringRef Name = Callee->getName();
1629   if ((Name == "fmin" || Name == "fmax") && hasFloatVersion(Name))
1630     if (Value *Ret = optimizeBinaryDoubleFP(CI, B))
1631       return Ret;
1632 
1633   // The LLVM intrinsics minnum/maxnum correspond to fmin/fmax. Canonicalize to
1634   // the intrinsics for improved optimization (for example, vectorization).
1635   // No-signed-zeros is implied by the definitions of fmax/fmin themselves.
1636   // From the C standard draft WG14/N1256:
1637   // "Ideally, fmax would be sensitive to the sign of zero, for example
1638   // fmax(-0.0, +0.0) would return +0; however, implementation in software
1639   // might be impractical."
1640   IRBuilder<>::FastMathFlagGuard Guard(B);
1641   FastMathFlags FMF = CI->getFastMathFlags();
1642   FMF.setNoSignedZeros();
1643   B.setFastMathFlags(FMF);
1644 
1645   Intrinsic::ID IID = Callee->getName().startswith("fmin") ? Intrinsic::minnum
1646                                                            : Intrinsic::maxnum;
1647   Function *F = Intrinsic::getDeclaration(CI->getModule(), IID, CI->getType());
1648   return B.CreateCall(F, { CI->getArgOperand(0), CI->getArgOperand(1) });
1649 }
1650 
1651 Value *LibCallSimplifier::optimizeLog(CallInst *CI, IRBuilder<> &B) {
1652   Function *Callee = CI->getCalledFunction();
1653   Value *Ret = nullptr;
1654   StringRef Name = Callee->getName();
1655   if (UnsafeFPShrink && hasFloatVersion(Name))
1656     Ret = optimizeUnaryDoubleFP(CI, B, true);
1657 
1658   if (!CI->isFast())
1659     return Ret;
1660   Value *Op1 = CI->getArgOperand(0);
1661   auto *OpC = dyn_cast<CallInst>(Op1);
1662 
1663   // The earlier call must also be 'fast' in order to do these transforms.
1664   if (!OpC || !OpC->isFast())
1665     return Ret;
1666 
1667   // log(pow(x,y)) -> y*log(x)
1668   // This is only applicable to log, log2, log10.
1669   if (Name != "log" && Name != "log2" && Name != "log10")
1670     return Ret;
1671 
1672   IRBuilder<>::FastMathFlagGuard Guard(B);
1673   FastMathFlags FMF;
1674   FMF.setFast();
1675   B.setFastMathFlags(FMF);
1676 
1677   LibFunc Func;
1678   Function *F = OpC->getCalledFunction();
1679   if (F && ((TLI->getLibFunc(F->getName(), Func) && TLI->has(Func) &&
1680       Func == LibFunc_pow) || F->getIntrinsicID() == Intrinsic::pow))
1681     return B.CreateFMul(OpC->getArgOperand(1),
1682       emitUnaryFloatFnCall(OpC->getOperand(0), Callee->getName(), B,
1683                            Callee->getAttributes()), "mul");
1684 
1685   // log(exp2(y)) -> y*log(2)
1686   if (F && Name == "log" && TLI->getLibFunc(F->getName(), Func) &&
1687       TLI->has(Func) && Func == LibFunc_exp2)
1688     return B.CreateFMul(
1689         OpC->getArgOperand(0),
1690         emitUnaryFloatFnCall(ConstantFP::get(CI->getType(), 2.0),
1691                              Callee->getName(), B, Callee->getAttributes()),
1692         "logmul");
1693   return Ret;
1694 }
1695 
1696 Value *LibCallSimplifier::optimizeSqrt(CallInst *CI, IRBuilder<> &B) {
1697   Function *Callee = CI->getCalledFunction();
1698   Value *Ret = nullptr;
1699   // TODO: Once we have a way (other than checking for the existince of the
1700   // libcall) to tell whether our target can lower @llvm.sqrt, relax the
1701   // condition below.
1702   if (TLI->has(LibFunc_sqrtf) && (Callee->getName() == "sqrt" ||
1703                                   Callee->getIntrinsicID() == Intrinsic::sqrt))
1704     Ret = optimizeUnaryDoubleFP(CI, B, true);
1705 
1706   if (!CI->isFast())
1707     return Ret;
1708 
1709   Instruction *I = dyn_cast<Instruction>(CI->getArgOperand(0));
1710   if (!I || I->getOpcode() != Instruction::FMul || !I->isFast())
1711     return Ret;
1712 
1713   // We're looking for a repeated factor in a multiplication tree,
1714   // so we can do this fold: sqrt(x * x) -> fabs(x);
1715   // or this fold: sqrt((x * x) * y) -> fabs(x) * sqrt(y).
1716   Value *Op0 = I->getOperand(0);
1717   Value *Op1 = I->getOperand(1);
1718   Value *RepeatOp = nullptr;
1719   Value *OtherOp = nullptr;
1720   if (Op0 == Op1) {
1721     // Simple match: the operands of the multiply are identical.
1722     RepeatOp = Op0;
1723   } else {
1724     // Look for a more complicated pattern: one of the operands is itself
1725     // a multiply, so search for a common factor in that multiply.
1726     // Note: We don't bother looking any deeper than this first level or for
1727     // variations of this pattern because instcombine's visitFMUL and/or the
1728     // reassociation pass should give us this form.
1729     Value *OtherMul0, *OtherMul1;
1730     if (match(Op0, m_FMul(m_Value(OtherMul0), m_Value(OtherMul1)))) {
1731       // Pattern: sqrt((x * y) * z)
1732       if (OtherMul0 == OtherMul1 && cast<Instruction>(Op0)->isFast()) {
1733         // Matched: sqrt((x * x) * z)
1734         RepeatOp = OtherMul0;
1735         OtherOp = Op1;
1736       }
1737     }
1738   }
1739   if (!RepeatOp)
1740     return Ret;
1741 
1742   // Fast math flags for any created instructions should match the sqrt
1743   // and multiply.
1744   IRBuilder<>::FastMathFlagGuard Guard(B);
1745   B.setFastMathFlags(I->getFastMathFlags());
1746 
1747   // If we found a repeated factor, hoist it out of the square root and
1748   // replace it with the fabs of that factor.
1749   Module *M = Callee->getParent();
1750   Type *ArgType = I->getType();
1751   Function *Fabs = Intrinsic::getDeclaration(M, Intrinsic::fabs, ArgType);
1752   Value *FabsCall = B.CreateCall(Fabs, RepeatOp, "fabs");
1753   if (OtherOp) {
1754     // If we found a non-repeated factor, we still need to get its square
1755     // root. We then multiply that by the value that was simplified out
1756     // of the square root calculation.
1757     Function *Sqrt = Intrinsic::getDeclaration(M, Intrinsic::sqrt, ArgType);
1758     Value *SqrtCall = B.CreateCall(Sqrt, OtherOp, "sqrt");
1759     return B.CreateFMul(FabsCall, SqrtCall);
1760   }
1761   return FabsCall;
1762 }
1763 
1764 // TODO: Generalize to handle any trig function and its inverse.
1765 Value *LibCallSimplifier::optimizeTan(CallInst *CI, IRBuilder<> &B) {
1766   Function *Callee = CI->getCalledFunction();
1767   Value *Ret = nullptr;
1768   StringRef Name = Callee->getName();
1769   if (UnsafeFPShrink && Name == "tan" && hasFloatVersion(Name))
1770     Ret = optimizeUnaryDoubleFP(CI, B, true);
1771 
1772   Value *Op1 = CI->getArgOperand(0);
1773   auto *OpC = dyn_cast<CallInst>(Op1);
1774   if (!OpC)
1775     return Ret;
1776 
1777   // Both calls must be 'fast' in order to remove them.
1778   if (!CI->isFast() || !OpC->isFast())
1779     return Ret;
1780 
1781   // tan(atan(x)) -> x
1782   // tanf(atanf(x)) -> x
1783   // tanl(atanl(x)) -> x
1784   LibFunc Func;
1785   Function *F = OpC->getCalledFunction();
1786   if (F && TLI->getLibFunc(F->getName(), Func) && TLI->has(Func) &&
1787       ((Func == LibFunc_atan && Callee->getName() == "tan") ||
1788        (Func == LibFunc_atanf && Callee->getName() == "tanf") ||
1789        (Func == LibFunc_atanl && Callee->getName() == "tanl")))
1790     Ret = OpC->getArgOperand(0);
1791   return Ret;
1792 }
1793 
1794 static bool isTrigLibCall(CallInst *CI) {
1795   // We can only hope to do anything useful if we can ignore things like errno
1796   // and floating-point exceptions.
1797   // We already checked the prototype.
1798   return CI->hasFnAttr(Attribute::NoUnwind) &&
1799          CI->hasFnAttr(Attribute::ReadNone);
1800 }
1801 
1802 static void insertSinCosCall(IRBuilder<> &B, Function *OrigCallee, Value *Arg,
1803                              bool UseFloat, Value *&Sin, Value *&Cos,
1804                              Value *&SinCos) {
1805   Type *ArgTy = Arg->getType();
1806   Type *ResTy;
1807   StringRef Name;
1808 
1809   Triple T(OrigCallee->getParent()->getTargetTriple());
1810   if (UseFloat) {
1811     Name = "__sincospif_stret";
1812 
1813     assert(T.getArch() != Triple::x86 && "x86 messy and unsupported for now");
1814     // x86_64 can't use {float, float} since that would be returned in both
1815     // xmm0 and xmm1, which isn't what a real struct would do.
1816     ResTy = T.getArch() == Triple::x86_64
1817                 ? static_cast<Type *>(VectorType::get(ArgTy, 2))
1818                 : static_cast<Type *>(StructType::get(ArgTy, ArgTy));
1819   } else {
1820     Name = "__sincospi_stret";
1821     ResTy = StructType::get(ArgTy, ArgTy);
1822   }
1823 
1824   Module *M = OrigCallee->getParent();
1825   FunctionCallee Callee =
1826       M->getOrInsertFunction(Name, OrigCallee->getAttributes(), ResTy, ArgTy);
1827 
1828   if (Instruction *ArgInst = dyn_cast<Instruction>(Arg)) {
1829     // If the argument is an instruction, it must dominate all uses so put our
1830     // sincos call there.
1831     B.SetInsertPoint(ArgInst->getParent(), ++ArgInst->getIterator());
1832   } else {
1833     // Otherwise (e.g. for a constant) the beginning of the function is as
1834     // good a place as any.
1835     BasicBlock &EntryBB = B.GetInsertBlock()->getParent()->getEntryBlock();
1836     B.SetInsertPoint(&EntryBB, EntryBB.begin());
1837   }
1838 
1839   SinCos = B.CreateCall(Callee, Arg, "sincospi");
1840 
1841   if (SinCos->getType()->isStructTy()) {
1842     Sin = B.CreateExtractValue(SinCos, 0, "sinpi");
1843     Cos = B.CreateExtractValue(SinCos, 1, "cospi");
1844   } else {
1845     Sin = B.CreateExtractElement(SinCos, ConstantInt::get(B.getInt32Ty(), 0),
1846                                  "sinpi");
1847     Cos = B.CreateExtractElement(SinCos, ConstantInt::get(B.getInt32Ty(), 1),
1848                                  "cospi");
1849   }
1850 }
1851 
1852 Value *LibCallSimplifier::optimizeSinCosPi(CallInst *CI, IRBuilder<> &B) {
1853   // Make sure the prototype is as expected, otherwise the rest of the
1854   // function is probably invalid and likely to abort.
1855   if (!isTrigLibCall(CI))
1856     return nullptr;
1857 
1858   Value *Arg = CI->getArgOperand(0);
1859   SmallVector<CallInst *, 1> SinCalls;
1860   SmallVector<CallInst *, 1> CosCalls;
1861   SmallVector<CallInst *, 1> SinCosCalls;
1862 
1863   bool IsFloat = Arg->getType()->isFloatTy();
1864 
1865   // Look for all compatible sinpi, cospi and sincospi calls with the same
1866   // argument. If there are enough (in some sense) we can make the
1867   // substitution.
1868   Function *F = CI->getFunction();
1869   for (User *U : Arg->users())
1870     classifyArgUse(U, F, IsFloat, SinCalls, CosCalls, SinCosCalls);
1871 
1872   // It's only worthwhile if both sinpi and cospi are actually used.
1873   if (SinCosCalls.empty() && (SinCalls.empty() || CosCalls.empty()))
1874     return nullptr;
1875 
1876   Value *Sin, *Cos, *SinCos;
1877   insertSinCosCall(B, CI->getCalledFunction(), Arg, IsFloat, Sin, Cos, SinCos);
1878 
1879   auto replaceTrigInsts = [this](SmallVectorImpl<CallInst *> &Calls,
1880                                  Value *Res) {
1881     for (CallInst *C : Calls)
1882       replaceAllUsesWith(C, Res);
1883   };
1884 
1885   replaceTrigInsts(SinCalls, Sin);
1886   replaceTrigInsts(CosCalls, Cos);
1887   replaceTrigInsts(SinCosCalls, SinCos);
1888 
1889   return nullptr;
1890 }
1891 
1892 void LibCallSimplifier::classifyArgUse(
1893     Value *Val, Function *F, bool IsFloat,
1894     SmallVectorImpl<CallInst *> &SinCalls,
1895     SmallVectorImpl<CallInst *> &CosCalls,
1896     SmallVectorImpl<CallInst *> &SinCosCalls) {
1897   CallInst *CI = dyn_cast<CallInst>(Val);
1898 
1899   if (!CI)
1900     return;
1901 
1902   // Don't consider calls in other functions.
1903   if (CI->getFunction() != F)
1904     return;
1905 
1906   Function *Callee = CI->getCalledFunction();
1907   LibFunc Func;
1908   if (!Callee || !TLI->getLibFunc(*Callee, Func) || !TLI->has(Func) ||
1909       !isTrigLibCall(CI))
1910     return;
1911 
1912   if (IsFloat) {
1913     if (Func == LibFunc_sinpif)
1914       SinCalls.push_back(CI);
1915     else if (Func == LibFunc_cospif)
1916       CosCalls.push_back(CI);
1917     else if (Func == LibFunc_sincospif_stret)
1918       SinCosCalls.push_back(CI);
1919   } else {
1920     if (Func == LibFunc_sinpi)
1921       SinCalls.push_back(CI);
1922     else if (Func == LibFunc_cospi)
1923       CosCalls.push_back(CI);
1924     else if (Func == LibFunc_sincospi_stret)
1925       SinCosCalls.push_back(CI);
1926   }
1927 }
1928 
1929 //===----------------------------------------------------------------------===//
1930 // Integer Library Call Optimizations
1931 //===----------------------------------------------------------------------===//
1932 
1933 Value *LibCallSimplifier::optimizeFFS(CallInst *CI, IRBuilder<> &B) {
1934   // ffs(x) -> x != 0 ? (i32)llvm.cttz(x)+1 : 0
1935   Value *Op = CI->getArgOperand(0);
1936   Type *ArgType = Op->getType();
1937   Function *F = Intrinsic::getDeclaration(CI->getCalledFunction()->getParent(),
1938                                           Intrinsic::cttz, ArgType);
1939   Value *V = B.CreateCall(F, {Op, B.getTrue()}, "cttz");
1940   V = B.CreateAdd(V, ConstantInt::get(V->getType(), 1));
1941   V = B.CreateIntCast(V, B.getInt32Ty(), false);
1942 
1943   Value *Cond = B.CreateICmpNE(Op, Constant::getNullValue(ArgType));
1944   return B.CreateSelect(Cond, V, B.getInt32(0));
1945 }
1946 
1947 Value *LibCallSimplifier::optimizeFls(CallInst *CI, IRBuilder<> &B) {
1948   // fls(x) -> (i32)(sizeInBits(x) - llvm.ctlz(x, false))
1949   Value *Op = CI->getArgOperand(0);
1950   Type *ArgType = Op->getType();
1951   Function *F = Intrinsic::getDeclaration(CI->getCalledFunction()->getParent(),
1952                                           Intrinsic::ctlz, ArgType);
1953   Value *V = B.CreateCall(F, {Op, B.getFalse()}, "ctlz");
1954   V = B.CreateSub(ConstantInt::get(V->getType(), ArgType->getIntegerBitWidth()),
1955                   V);
1956   return B.CreateIntCast(V, CI->getType(), false);
1957 }
1958 
1959 Value *LibCallSimplifier::optimizeAbs(CallInst *CI, IRBuilder<> &B) {
1960   // abs(x) -> x <s 0 ? -x : x
1961   // The negation has 'nsw' because abs of INT_MIN is undefined.
1962   Value *X = CI->getArgOperand(0);
1963   Value *IsNeg = B.CreateICmpSLT(X, Constant::getNullValue(X->getType()));
1964   Value *NegX = B.CreateNSWNeg(X, "neg");
1965   return B.CreateSelect(IsNeg, NegX, X);
1966 }
1967 
1968 Value *LibCallSimplifier::optimizeIsDigit(CallInst *CI, IRBuilder<> &B) {
1969   // isdigit(c) -> (c-'0') <u 10
1970   Value *Op = CI->getArgOperand(0);
1971   Op = B.CreateSub(Op, B.getInt32('0'), "isdigittmp");
1972   Op = B.CreateICmpULT(Op, B.getInt32(10), "isdigit");
1973   return B.CreateZExt(Op, CI->getType());
1974 }
1975 
1976 Value *LibCallSimplifier::optimizeIsAscii(CallInst *CI, IRBuilder<> &B) {
1977   // isascii(c) -> c <u 128
1978   Value *Op = CI->getArgOperand(0);
1979   Op = B.CreateICmpULT(Op, B.getInt32(128), "isascii");
1980   return B.CreateZExt(Op, CI->getType());
1981 }
1982 
1983 Value *LibCallSimplifier::optimizeToAscii(CallInst *CI, IRBuilder<> &B) {
1984   // toascii(c) -> c & 0x7f
1985   return B.CreateAnd(CI->getArgOperand(0),
1986                      ConstantInt::get(CI->getType(), 0x7F));
1987 }
1988 
1989 Value *LibCallSimplifier::optimizeAtoi(CallInst *CI, IRBuilder<> &B) {
1990   StringRef Str;
1991   if (!getConstantStringInfo(CI->getArgOperand(0), Str))
1992     return nullptr;
1993 
1994   return convertStrToNumber(CI, Str, 10);
1995 }
1996 
1997 Value *LibCallSimplifier::optimizeStrtol(CallInst *CI, IRBuilder<> &B) {
1998   StringRef Str;
1999   if (!getConstantStringInfo(CI->getArgOperand(0), Str))
2000     return nullptr;
2001 
2002   if (!isa<ConstantPointerNull>(CI->getArgOperand(1)))
2003     return nullptr;
2004 
2005   if (ConstantInt *CInt = dyn_cast<ConstantInt>(CI->getArgOperand(2))) {
2006     return convertStrToNumber(CI, Str, CInt->getSExtValue());
2007   }
2008 
2009   return nullptr;
2010 }
2011 
2012 //===----------------------------------------------------------------------===//
2013 // Formatting and IO Library Call Optimizations
2014 //===----------------------------------------------------------------------===//
2015 
2016 static bool isReportingError(Function *Callee, CallInst *CI, int StreamArg);
2017 
2018 Value *LibCallSimplifier::optimizeErrorReporting(CallInst *CI, IRBuilder<> &B,
2019                                                  int StreamArg) {
2020   Function *Callee = CI->getCalledFunction();
2021   // Error reporting calls should be cold, mark them as such.
2022   // This applies even to non-builtin calls: it is only a hint and applies to
2023   // functions that the frontend might not understand as builtins.
2024 
2025   // This heuristic was suggested in:
2026   // Improving Static Branch Prediction in a Compiler
2027   // Brian L. Deitrich, Ben-Chung Cheng, Wen-mei W. Hwu
2028   // Proceedings of PACT'98, Oct. 1998, IEEE
2029   if (!CI->hasFnAttr(Attribute::Cold) &&
2030       isReportingError(Callee, CI, StreamArg)) {
2031     CI->addAttribute(AttributeList::FunctionIndex, Attribute::Cold);
2032   }
2033 
2034   return nullptr;
2035 }
2036 
2037 static bool isReportingError(Function *Callee, CallInst *CI, int StreamArg) {
2038   if (!Callee || !Callee->isDeclaration())
2039     return false;
2040 
2041   if (StreamArg < 0)
2042     return true;
2043 
2044   // These functions might be considered cold, but only if their stream
2045   // argument is stderr.
2046 
2047   if (StreamArg >= (int)CI->getNumArgOperands())
2048     return false;
2049   LoadInst *LI = dyn_cast<LoadInst>(CI->getArgOperand(StreamArg));
2050   if (!LI)
2051     return false;
2052   GlobalVariable *GV = dyn_cast<GlobalVariable>(LI->getPointerOperand());
2053   if (!GV || !GV->isDeclaration())
2054     return false;
2055   return GV->getName() == "stderr";
2056 }
2057 
2058 Value *LibCallSimplifier::optimizePrintFString(CallInst *CI, IRBuilder<> &B) {
2059   // Check for a fixed format string.
2060   StringRef FormatStr;
2061   if (!getConstantStringInfo(CI->getArgOperand(0), FormatStr))
2062     return nullptr;
2063 
2064   // Empty format string -> noop.
2065   if (FormatStr.empty()) // Tolerate printf's declared void.
2066     return CI->use_empty() ? (Value *)CI : ConstantInt::get(CI->getType(), 0);
2067 
2068   // Do not do any of the following transformations if the printf return value
2069   // is used, in general the printf return value is not compatible with either
2070   // putchar() or puts().
2071   if (!CI->use_empty())
2072     return nullptr;
2073 
2074   // printf("x") -> putchar('x'), even for "%" and "%%".
2075   if (FormatStr.size() == 1 || FormatStr == "%%")
2076     return emitPutChar(B.getInt32(FormatStr[0]), B, TLI);
2077 
2078   // printf("%s", "a") --> putchar('a')
2079   if (FormatStr == "%s" && CI->getNumArgOperands() > 1) {
2080     StringRef ChrStr;
2081     if (!getConstantStringInfo(CI->getOperand(1), ChrStr))
2082       return nullptr;
2083     if (ChrStr.size() != 1)
2084       return nullptr;
2085     return emitPutChar(B.getInt32(ChrStr[0]), B, TLI);
2086   }
2087 
2088   // printf("foo\n") --> puts("foo")
2089   if (FormatStr[FormatStr.size() - 1] == '\n' &&
2090       FormatStr.find('%') == StringRef::npos) { // No format characters.
2091     // Create a string literal with no \n on it.  We expect the constant merge
2092     // pass to be run after this pass, to merge duplicate strings.
2093     FormatStr = FormatStr.drop_back();
2094     Value *GV = B.CreateGlobalString(FormatStr, "str");
2095     return emitPutS(GV, B, TLI);
2096   }
2097 
2098   // Optimize specific format strings.
2099   // printf("%c", chr) --> putchar(chr)
2100   if (FormatStr == "%c" && CI->getNumArgOperands() > 1 &&
2101       CI->getArgOperand(1)->getType()->isIntegerTy())
2102     return emitPutChar(CI->getArgOperand(1), B, TLI);
2103 
2104   // printf("%s\n", str) --> puts(str)
2105   if (FormatStr == "%s\n" && CI->getNumArgOperands() > 1 &&
2106       CI->getArgOperand(1)->getType()->isPointerTy())
2107     return emitPutS(CI->getArgOperand(1), B, TLI);
2108   return nullptr;
2109 }
2110 
2111 Value *LibCallSimplifier::optimizePrintF(CallInst *CI, IRBuilder<> &B) {
2112 
2113   Function *Callee = CI->getCalledFunction();
2114   FunctionType *FT = Callee->getFunctionType();
2115   if (Value *V = optimizePrintFString(CI, B)) {
2116     return V;
2117   }
2118 
2119   // printf(format, ...) -> iprintf(format, ...) if no floating point
2120   // arguments.
2121   if (TLI->has(LibFunc_iprintf) && !callHasFloatingPointArgument(CI)) {
2122     Module *M = B.GetInsertBlock()->getParent()->getParent();
2123     FunctionCallee IPrintFFn =
2124         M->getOrInsertFunction("iprintf", FT, Callee->getAttributes());
2125     CallInst *New = cast<CallInst>(CI->clone());
2126     New->setCalledFunction(IPrintFFn);
2127     B.Insert(New);
2128     return New;
2129   }
2130 
2131   // printf(format, ...) -> __small_printf(format, ...) if no 128-bit floating point
2132   // arguments.
2133   if (TLI->has(LibFunc_small_printf) && !callHasFP128Argument(CI)) {
2134     Module *M = B.GetInsertBlock()->getParent()->getParent();
2135     auto SmallPrintFFn =
2136         M->getOrInsertFunction(TLI->getName(LibFunc_small_printf),
2137                                FT, Callee->getAttributes());
2138     CallInst *New = cast<CallInst>(CI->clone());
2139     New->setCalledFunction(SmallPrintFFn);
2140     B.Insert(New);
2141     return New;
2142   }
2143 
2144   return nullptr;
2145 }
2146 
2147 Value *LibCallSimplifier::optimizeSPrintFString(CallInst *CI, IRBuilder<> &B) {
2148   // Check for a fixed format string.
2149   StringRef FormatStr;
2150   if (!getConstantStringInfo(CI->getArgOperand(1), FormatStr))
2151     return nullptr;
2152 
2153   // If we just have a format string (nothing else crazy) transform it.
2154   if (CI->getNumArgOperands() == 2) {
2155     // Make sure there's no % in the constant array.  We could try to handle
2156     // %% -> % in the future if we cared.
2157     if (FormatStr.find('%') != StringRef::npos)
2158       return nullptr; // we found a format specifier, bail out.
2159 
2160     // sprintf(str, fmt) -> llvm.memcpy(align 1 str, align 1 fmt, strlen(fmt)+1)
2161     B.CreateMemCpy(CI->getArgOperand(0), 1, CI->getArgOperand(1), 1,
2162                    ConstantInt::get(DL.getIntPtrType(CI->getContext()),
2163                                     FormatStr.size() + 1)); // Copy the null byte.
2164     return ConstantInt::get(CI->getType(), FormatStr.size());
2165   }
2166 
2167   // The remaining optimizations require the format string to be "%s" or "%c"
2168   // and have an extra operand.
2169   if (FormatStr.size() != 2 || FormatStr[0] != '%' ||
2170       CI->getNumArgOperands() < 3)
2171     return nullptr;
2172 
2173   // Decode the second character of the format string.
2174   if (FormatStr[1] == 'c') {
2175     // sprintf(dst, "%c", chr) --> *(i8*)dst = chr; *((i8*)dst+1) = 0
2176     if (!CI->getArgOperand(2)->getType()->isIntegerTy())
2177       return nullptr;
2178     Value *V = B.CreateTrunc(CI->getArgOperand(2), B.getInt8Ty(), "char");
2179     Value *Ptr = castToCStr(CI->getArgOperand(0), B);
2180     B.CreateStore(V, Ptr);
2181     Ptr = B.CreateGEP(B.getInt8Ty(), Ptr, B.getInt32(1), "nul");
2182     B.CreateStore(B.getInt8(0), Ptr);
2183 
2184     return ConstantInt::get(CI->getType(), 1);
2185   }
2186 
2187   if (FormatStr[1] == 's') {
2188     // sprintf(dest, "%s", str) -> llvm.memcpy(align 1 dest, align 1 str,
2189     // strlen(str)+1)
2190     if (!CI->getArgOperand(2)->getType()->isPointerTy())
2191       return nullptr;
2192 
2193     Value *Len = emitStrLen(CI->getArgOperand(2), B, DL, TLI);
2194     if (!Len)
2195       return nullptr;
2196     Value *IncLen =
2197         B.CreateAdd(Len, ConstantInt::get(Len->getType(), 1), "leninc");
2198     B.CreateMemCpy(CI->getArgOperand(0), 1, CI->getArgOperand(2), 1, IncLen);
2199 
2200     // The sprintf result is the unincremented number of bytes in the string.
2201     return B.CreateIntCast(Len, CI->getType(), false);
2202   }
2203   return nullptr;
2204 }
2205 
2206 Value *LibCallSimplifier::optimizeSPrintF(CallInst *CI, IRBuilder<> &B) {
2207   Function *Callee = CI->getCalledFunction();
2208   FunctionType *FT = Callee->getFunctionType();
2209   if (Value *V = optimizeSPrintFString(CI, B)) {
2210     return V;
2211   }
2212 
2213   // sprintf(str, format, ...) -> siprintf(str, format, ...) if no floating
2214   // point arguments.
2215   if (TLI->has(LibFunc_siprintf) && !callHasFloatingPointArgument(CI)) {
2216     Module *M = B.GetInsertBlock()->getParent()->getParent();
2217     FunctionCallee SIPrintFFn =
2218         M->getOrInsertFunction("siprintf", FT, Callee->getAttributes());
2219     CallInst *New = cast<CallInst>(CI->clone());
2220     New->setCalledFunction(SIPrintFFn);
2221     B.Insert(New);
2222     return New;
2223   }
2224 
2225   // sprintf(str, format, ...) -> __small_sprintf(str, format, ...) if no 128-bit
2226   // floating point arguments.
2227   if (TLI->has(LibFunc_small_sprintf) && !callHasFP128Argument(CI)) {
2228     Module *M = B.GetInsertBlock()->getParent()->getParent();
2229     auto SmallSPrintFFn =
2230         M->getOrInsertFunction(TLI->getName(LibFunc_small_sprintf),
2231                                FT, Callee->getAttributes());
2232     CallInst *New = cast<CallInst>(CI->clone());
2233     New->setCalledFunction(SmallSPrintFFn);
2234     B.Insert(New);
2235     return New;
2236   }
2237 
2238   return nullptr;
2239 }
2240 
2241 Value *LibCallSimplifier::optimizeSnPrintFString(CallInst *CI, IRBuilder<> &B) {
2242   // Check for a fixed format string.
2243   StringRef FormatStr;
2244   if (!getConstantStringInfo(CI->getArgOperand(2), FormatStr))
2245     return nullptr;
2246 
2247   // Check for size
2248   ConstantInt *Size = dyn_cast<ConstantInt>(CI->getArgOperand(1));
2249   if (!Size)
2250     return nullptr;
2251 
2252   uint64_t N = Size->getZExtValue();
2253 
2254   // If we just have a format string (nothing else crazy) transform it.
2255   if (CI->getNumArgOperands() == 3) {
2256     // Make sure there's no % in the constant array.  We could try to handle
2257     // %% -> % in the future if we cared.
2258     if (FormatStr.find('%') != StringRef::npos)
2259       return nullptr; // we found a format specifier, bail out.
2260 
2261     if (N == 0)
2262       return ConstantInt::get(CI->getType(), FormatStr.size());
2263     else if (N < FormatStr.size() + 1)
2264       return nullptr;
2265 
2266     // snprintf(dst, size, fmt) -> llvm.memcpy(align 1 dst, align 1 fmt,
2267     // strlen(fmt)+1)
2268     B.CreateMemCpy(
2269         CI->getArgOperand(0), 1, CI->getArgOperand(2), 1,
2270         ConstantInt::get(DL.getIntPtrType(CI->getContext()),
2271                          FormatStr.size() + 1)); // Copy the null byte.
2272     return ConstantInt::get(CI->getType(), FormatStr.size());
2273   }
2274 
2275   // The remaining optimizations require the format string to be "%s" or "%c"
2276   // and have an extra operand.
2277   if (FormatStr.size() == 2 && FormatStr[0] == '%' &&
2278       CI->getNumArgOperands() == 4) {
2279 
2280     // Decode the second character of the format string.
2281     if (FormatStr[1] == 'c') {
2282       if (N == 0)
2283         return ConstantInt::get(CI->getType(), 1);
2284       else if (N == 1)
2285         return nullptr;
2286 
2287       // snprintf(dst, size, "%c", chr) --> *(i8*)dst = chr; *((i8*)dst+1) = 0
2288       if (!CI->getArgOperand(3)->getType()->isIntegerTy())
2289         return nullptr;
2290       Value *V = B.CreateTrunc(CI->getArgOperand(3), B.getInt8Ty(), "char");
2291       Value *Ptr = castToCStr(CI->getArgOperand(0), B);
2292       B.CreateStore(V, Ptr);
2293       Ptr = B.CreateGEP(B.getInt8Ty(), Ptr, B.getInt32(1), "nul");
2294       B.CreateStore(B.getInt8(0), Ptr);
2295 
2296       return ConstantInt::get(CI->getType(), 1);
2297     }
2298 
2299     if (FormatStr[1] == 's') {
2300       // snprintf(dest, size, "%s", str) to llvm.memcpy(dest, str, len+1, 1)
2301       StringRef Str;
2302       if (!getConstantStringInfo(CI->getArgOperand(3), Str))
2303         return nullptr;
2304 
2305       if (N == 0)
2306         return ConstantInt::get(CI->getType(), Str.size());
2307       else if (N < Str.size() + 1)
2308         return nullptr;
2309 
2310       B.CreateMemCpy(CI->getArgOperand(0), 1, CI->getArgOperand(3), 1,
2311                      ConstantInt::get(CI->getType(), Str.size() + 1));
2312 
2313       // The snprintf result is the unincremented number of bytes in the string.
2314       return ConstantInt::get(CI->getType(), Str.size());
2315     }
2316   }
2317   return nullptr;
2318 }
2319 
2320 Value *LibCallSimplifier::optimizeSnPrintF(CallInst *CI, IRBuilder<> &B) {
2321   if (Value *V = optimizeSnPrintFString(CI, B)) {
2322     return V;
2323   }
2324 
2325   return nullptr;
2326 }
2327 
2328 Value *LibCallSimplifier::optimizeFPrintFString(CallInst *CI, IRBuilder<> &B) {
2329   optimizeErrorReporting(CI, B, 0);
2330 
2331   // All the optimizations depend on the format string.
2332   StringRef FormatStr;
2333   if (!getConstantStringInfo(CI->getArgOperand(1), FormatStr))
2334     return nullptr;
2335 
2336   // Do not do any of the following transformations if the fprintf return
2337   // value is used, in general the fprintf return value is not compatible
2338   // with fwrite(), fputc() or fputs().
2339   if (!CI->use_empty())
2340     return nullptr;
2341 
2342   // fprintf(F, "foo") --> fwrite("foo", 3, 1, F)
2343   if (CI->getNumArgOperands() == 2) {
2344     // Could handle %% -> % if we cared.
2345     if (FormatStr.find('%') != StringRef::npos)
2346       return nullptr; // We found a format specifier.
2347 
2348     return emitFWrite(
2349         CI->getArgOperand(1),
2350         ConstantInt::get(DL.getIntPtrType(CI->getContext()), FormatStr.size()),
2351         CI->getArgOperand(0), B, DL, TLI);
2352   }
2353 
2354   // The remaining optimizations require the format string to be "%s" or "%c"
2355   // and have an extra operand.
2356   if (FormatStr.size() != 2 || FormatStr[0] != '%' ||
2357       CI->getNumArgOperands() < 3)
2358     return nullptr;
2359 
2360   // Decode the second character of the format string.
2361   if (FormatStr[1] == 'c') {
2362     // fprintf(F, "%c", chr) --> fputc(chr, F)
2363     if (!CI->getArgOperand(2)->getType()->isIntegerTy())
2364       return nullptr;
2365     return emitFPutC(CI->getArgOperand(2), CI->getArgOperand(0), B, TLI);
2366   }
2367 
2368   if (FormatStr[1] == 's') {
2369     // fprintf(F, "%s", str) --> fputs(str, F)
2370     if (!CI->getArgOperand(2)->getType()->isPointerTy())
2371       return nullptr;
2372     return emitFPutS(CI->getArgOperand(2), CI->getArgOperand(0), B, TLI);
2373   }
2374   return nullptr;
2375 }
2376 
2377 Value *LibCallSimplifier::optimizeFPrintF(CallInst *CI, IRBuilder<> &B) {
2378   Function *Callee = CI->getCalledFunction();
2379   FunctionType *FT = Callee->getFunctionType();
2380   if (Value *V = optimizeFPrintFString(CI, B)) {
2381     return V;
2382   }
2383 
2384   // fprintf(stream, format, ...) -> fiprintf(stream, format, ...) if no
2385   // floating point arguments.
2386   if (TLI->has(LibFunc_fiprintf) && !callHasFloatingPointArgument(CI)) {
2387     Module *M = B.GetInsertBlock()->getParent()->getParent();
2388     FunctionCallee FIPrintFFn =
2389         M->getOrInsertFunction("fiprintf", FT, Callee->getAttributes());
2390     CallInst *New = cast<CallInst>(CI->clone());
2391     New->setCalledFunction(FIPrintFFn);
2392     B.Insert(New);
2393     return New;
2394   }
2395 
2396   // fprintf(stream, format, ...) -> __small_fprintf(stream, format, ...) if no
2397   // 128-bit floating point arguments.
2398   if (TLI->has(LibFunc_small_fprintf) && !callHasFP128Argument(CI)) {
2399     Module *M = B.GetInsertBlock()->getParent()->getParent();
2400     auto SmallFPrintFFn =
2401         M->getOrInsertFunction(TLI->getName(LibFunc_small_fprintf),
2402                                FT, Callee->getAttributes());
2403     CallInst *New = cast<CallInst>(CI->clone());
2404     New->setCalledFunction(SmallFPrintFFn);
2405     B.Insert(New);
2406     return New;
2407   }
2408 
2409   return nullptr;
2410 }
2411 
2412 Value *LibCallSimplifier::optimizeFWrite(CallInst *CI, IRBuilder<> &B) {
2413   optimizeErrorReporting(CI, B, 3);
2414 
2415   // Get the element size and count.
2416   ConstantInt *SizeC = dyn_cast<ConstantInt>(CI->getArgOperand(1));
2417   ConstantInt *CountC = dyn_cast<ConstantInt>(CI->getArgOperand(2));
2418   if (SizeC && CountC) {
2419     uint64_t Bytes = SizeC->getZExtValue() * CountC->getZExtValue();
2420 
2421     // If this is writing zero records, remove the call (it's a noop).
2422     if (Bytes == 0)
2423       return ConstantInt::get(CI->getType(), 0);
2424 
2425     // If this is writing one byte, turn it into fputc.
2426     // This optimisation is only valid, if the return value is unused.
2427     if (Bytes == 1 && CI->use_empty()) { // fwrite(S,1,1,F) -> fputc(S[0],F)
2428       Value *Char = B.CreateLoad(B.getInt8Ty(),
2429                                  castToCStr(CI->getArgOperand(0), B), "char");
2430       Value *NewCI = emitFPutC(Char, CI->getArgOperand(3), B, TLI);
2431       return NewCI ? ConstantInt::get(CI->getType(), 1) : nullptr;
2432     }
2433   }
2434 
2435   if (isLocallyOpenedFile(CI->getArgOperand(3), CI, B, TLI))
2436     return emitFWriteUnlocked(CI->getArgOperand(0), CI->getArgOperand(1),
2437                               CI->getArgOperand(2), CI->getArgOperand(3), B, DL,
2438                               TLI);
2439 
2440   return nullptr;
2441 }
2442 
2443 Value *LibCallSimplifier::optimizeFPuts(CallInst *CI, IRBuilder<> &B) {
2444   optimizeErrorReporting(CI, B, 1);
2445 
2446   // Don't rewrite fputs to fwrite when optimising for size because fwrite
2447   // requires more arguments and thus extra MOVs are required.
2448   bool OptForSize = CI->getFunction()->hasOptSize() ||
2449                     llvm::shouldOptimizeForSize(CI->getParent(), PSI, BFI);
2450   if (OptForSize)
2451     return nullptr;
2452 
2453   // Check if has any use
2454   if (!CI->use_empty()) {
2455     if (isLocallyOpenedFile(CI->getArgOperand(1), CI, B, TLI))
2456       return emitFPutSUnlocked(CI->getArgOperand(0), CI->getArgOperand(1), B,
2457                                TLI);
2458     else
2459       // We can't optimize if return value is used.
2460       return nullptr;
2461   }
2462 
2463   // fputs(s,F) --> fwrite(s,strlen(s),1,F)
2464   uint64_t Len = GetStringLength(CI->getArgOperand(0));
2465   if (!Len)
2466     return nullptr;
2467 
2468   // Known to have no uses (see above).
2469   return emitFWrite(
2470       CI->getArgOperand(0),
2471       ConstantInt::get(DL.getIntPtrType(CI->getContext()), Len - 1),
2472       CI->getArgOperand(1), B, DL, TLI);
2473 }
2474 
2475 Value *LibCallSimplifier::optimizeFPutc(CallInst *CI, IRBuilder<> &B) {
2476   optimizeErrorReporting(CI, B, 1);
2477 
2478   if (isLocallyOpenedFile(CI->getArgOperand(1), CI, B, TLI))
2479     return emitFPutCUnlocked(CI->getArgOperand(0), CI->getArgOperand(1), B,
2480                              TLI);
2481 
2482   return nullptr;
2483 }
2484 
2485 Value *LibCallSimplifier::optimizeFGetc(CallInst *CI, IRBuilder<> &B) {
2486   if (isLocallyOpenedFile(CI->getArgOperand(0), CI, B, TLI))
2487     return emitFGetCUnlocked(CI->getArgOperand(0), B, TLI);
2488 
2489   return nullptr;
2490 }
2491 
2492 Value *LibCallSimplifier::optimizeFGets(CallInst *CI, IRBuilder<> &B) {
2493   if (isLocallyOpenedFile(CI->getArgOperand(2), CI, B, TLI))
2494     return emitFGetSUnlocked(CI->getArgOperand(0), CI->getArgOperand(1),
2495                              CI->getArgOperand(2), B, TLI);
2496 
2497   return nullptr;
2498 }
2499 
2500 Value *LibCallSimplifier::optimizeFRead(CallInst *CI, IRBuilder<> &B) {
2501   if (isLocallyOpenedFile(CI->getArgOperand(3), CI, B, TLI))
2502     return emitFReadUnlocked(CI->getArgOperand(0), CI->getArgOperand(1),
2503                              CI->getArgOperand(2), CI->getArgOperand(3), B, DL,
2504                              TLI);
2505 
2506   return nullptr;
2507 }
2508 
2509 Value *LibCallSimplifier::optimizePuts(CallInst *CI, IRBuilder<> &B) {
2510   if (!CI->use_empty())
2511     return nullptr;
2512 
2513   // Check for a constant string.
2514   // puts("") -> putchar('\n')
2515   StringRef Str;
2516   if (getConstantStringInfo(CI->getArgOperand(0), Str) && Str.empty())
2517     return emitPutChar(B.getInt32('\n'), B, TLI);
2518 
2519   return nullptr;
2520 }
2521 
2522 bool LibCallSimplifier::hasFloatVersion(StringRef FuncName) {
2523   LibFunc Func;
2524   SmallString<20> FloatFuncName = FuncName;
2525   FloatFuncName += 'f';
2526   if (TLI->getLibFunc(FloatFuncName, Func))
2527     return TLI->has(Func);
2528   return false;
2529 }
2530 
2531 Value *LibCallSimplifier::optimizeStringMemoryLibCall(CallInst *CI,
2532                                                       IRBuilder<> &Builder) {
2533   LibFunc Func;
2534   Function *Callee = CI->getCalledFunction();
2535   // Check for string/memory library functions.
2536   if (TLI->getLibFunc(*Callee, Func) && TLI->has(Func)) {
2537     // Make sure we never change the calling convention.
2538     assert((ignoreCallingConv(Func) ||
2539             isCallingConvCCompatible(CI)) &&
2540       "Optimizing string/memory libcall would change the calling convention");
2541     switch (Func) {
2542     case LibFunc_strcat:
2543       return optimizeStrCat(CI, Builder);
2544     case LibFunc_strncat:
2545       return optimizeStrNCat(CI, Builder);
2546     case LibFunc_strchr:
2547       return optimizeStrChr(CI, Builder);
2548     case LibFunc_strrchr:
2549       return optimizeStrRChr(CI, Builder);
2550     case LibFunc_strcmp:
2551       return optimizeStrCmp(CI, Builder);
2552     case LibFunc_strncmp:
2553       return optimizeStrNCmp(CI, Builder);
2554     case LibFunc_strcpy:
2555       return optimizeStrCpy(CI, Builder);
2556     case LibFunc_stpcpy:
2557       return optimizeStpCpy(CI, Builder);
2558     case LibFunc_strncpy:
2559       return optimizeStrNCpy(CI, Builder);
2560     case LibFunc_strlen:
2561       return optimizeStrLen(CI, Builder);
2562     case LibFunc_strpbrk:
2563       return optimizeStrPBrk(CI, Builder);
2564     case LibFunc_strtol:
2565     case LibFunc_strtod:
2566     case LibFunc_strtof:
2567     case LibFunc_strtoul:
2568     case LibFunc_strtoll:
2569     case LibFunc_strtold:
2570     case LibFunc_strtoull:
2571       return optimizeStrTo(CI, Builder);
2572     case LibFunc_strspn:
2573       return optimizeStrSpn(CI, Builder);
2574     case LibFunc_strcspn:
2575       return optimizeStrCSpn(CI, Builder);
2576     case LibFunc_strstr:
2577       return optimizeStrStr(CI, Builder);
2578     case LibFunc_memchr:
2579       return optimizeMemChr(CI, Builder);
2580     case LibFunc_bcmp:
2581       return optimizeBCmp(CI, Builder);
2582     case LibFunc_memcmp:
2583       return optimizeMemCmp(CI, Builder);
2584     case LibFunc_memcpy:
2585       return optimizeMemCpy(CI, Builder);
2586     case LibFunc_memmove:
2587       return optimizeMemMove(CI, Builder);
2588     case LibFunc_memset:
2589       return optimizeMemSet(CI, Builder);
2590     case LibFunc_realloc:
2591       return optimizeRealloc(CI, Builder);
2592     case LibFunc_wcslen:
2593       return optimizeWcslen(CI, Builder);
2594     default:
2595       break;
2596     }
2597   }
2598   return nullptr;
2599 }
2600 
2601 Value *LibCallSimplifier::optimizeFloatingPointLibCall(CallInst *CI,
2602                                                        LibFunc Func,
2603                                                        IRBuilder<> &Builder) {
2604   // Don't optimize calls that require strict floating point semantics.
2605   if (CI->isStrictFP())
2606     return nullptr;
2607 
2608   if (Value *V = optimizeTrigReflections(CI, Func, Builder))
2609     return V;
2610 
2611   switch (Func) {
2612   case LibFunc_sinpif:
2613   case LibFunc_sinpi:
2614   case LibFunc_cospif:
2615   case LibFunc_cospi:
2616     return optimizeSinCosPi(CI, Builder);
2617   case LibFunc_powf:
2618   case LibFunc_pow:
2619   case LibFunc_powl:
2620     return optimizePow(CI, Builder);
2621   case LibFunc_exp2l:
2622   case LibFunc_exp2:
2623   case LibFunc_exp2f:
2624     return optimizeExp2(CI, Builder);
2625   case LibFunc_fabsf:
2626   case LibFunc_fabs:
2627   case LibFunc_fabsl:
2628     return replaceUnaryCall(CI, Builder, Intrinsic::fabs);
2629   case LibFunc_sqrtf:
2630   case LibFunc_sqrt:
2631   case LibFunc_sqrtl:
2632     return optimizeSqrt(CI, Builder);
2633   case LibFunc_log:
2634   case LibFunc_log10:
2635   case LibFunc_log1p:
2636   case LibFunc_log2:
2637   case LibFunc_logb:
2638     return optimizeLog(CI, Builder);
2639   case LibFunc_tan:
2640   case LibFunc_tanf:
2641   case LibFunc_tanl:
2642     return optimizeTan(CI, Builder);
2643   case LibFunc_ceil:
2644     return replaceUnaryCall(CI, Builder, Intrinsic::ceil);
2645   case LibFunc_floor:
2646     return replaceUnaryCall(CI, Builder, Intrinsic::floor);
2647   case LibFunc_round:
2648     return replaceUnaryCall(CI, Builder, Intrinsic::round);
2649   case LibFunc_nearbyint:
2650     return replaceUnaryCall(CI, Builder, Intrinsic::nearbyint);
2651   case LibFunc_rint:
2652     return replaceUnaryCall(CI, Builder, Intrinsic::rint);
2653   case LibFunc_trunc:
2654     return replaceUnaryCall(CI, Builder, Intrinsic::trunc);
2655   case LibFunc_acos:
2656   case LibFunc_acosh:
2657   case LibFunc_asin:
2658   case LibFunc_asinh:
2659   case LibFunc_atan:
2660   case LibFunc_atanh:
2661   case LibFunc_cbrt:
2662   case LibFunc_cosh:
2663   case LibFunc_exp:
2664   case LibFunc_exp10:
2665   case LibFunc_expm1:
2666   case LibFunc_cos:
2667   case LibFunc_sin:
2668   case LibFunc_sinh:
2669   case LibFunc_tanh:
2670     if (UnsafeFPShrink && hasFloatVersion(CI->getCalledFunction()->getName()))
2671       return optimizeUnaryDoubleFP(CI, Builder, true);
2672     return nullptr;
2673   case LibFunc_copysign:
2674     if (hasFloatVersion(CI->getCalledFunction()->getName()))
2675       return optimizeBinaryDoubleFP(CI, Builder);
2676     return nullptr;
2677   case LibFunc_fminf:
2678   case LibFunc_fmin:
2679   case LibFunc_fminl:
2680   case LibFunc_fmaxf:
2681   case LibFunc_fmax:
2682   case LibFunc_fmaxl:
2683     return optimizeFMinFMax(CI, Builder);
2684   case LibFunc_cabs:
2685   case LibFunc_cabsf:
2686   case LibFunc_cabsl:
2687     return optimizeCAbs(CI, Builder);
2688   default:
2689     return nullptr;
2690   }
2691 }
2692 
2693 Value *LibCallSimplifier::optimizeCall(CallInst *CI) {
2694   // TODO: Split out the code below that operates on FP calls so that
2695   //       we can all non-FP calls with the StrictFP attribute to be
2696   //       optimized.
2697   if (CI->isNoBuiltin())
2698     return nullptr;
2699 
2700   LibFunc Func;
2701   Function *Callee = CI->getCalledFunction();
2702 
2703   SmallVector<OperandBundleDef, 2> OpBundles;
2704   CI->getOperandBundlesAsDefs(OpBundles);
2705   IRBuilder<> Builder(CI, /*FPMathTag=*/nullptr, OpBundles);
2706   bool isCallingConvC = isCallingConvCCompatible(CI);
2707 
2708   // Command-line parameter overrides instruction attribute.
2709   // This can't be moved to optimizeFloatingPointLibCall() because it may be
2710   // used by the intrinsic optimizations.
2711   if (EnableUnsafeFPShrink.getNumOccurrences() > 0)
2712     UnsafeFPShrink = EnableUnsafeFPShrink;
2713   else if (isa<FPMathOperator>(CI) && CI->isFast())
2714     UnsafeFPShrink = true;
2715 
2716   // First, check for intrinsics.
2717   if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI)) {
2718     if (!isCallingConvC)
2719       return nullptr;
2720     // The FP intrinsics have corresponding constrained versions so we don't
2721     // need to check for the StrictFP attribute here.
2722     switch (II->getIntrinsicID()) {
2723     case Intrinsic::pow:
2724       return optimizePow(CI, Builder);
2725     case Intrinsic::exp2:
2726       return optimizeExp2(CI, Builder);
2727     case Intrinsic::log:
2728       return optimizeLog(CI, Builder);
2729     case Intrinsic::sqrt:
2730       return optimizeSqrt(CI, Builder);
2731     // TODO: Use foldMallocMemset() with memset intrinsic.
2732     default:
2733       return nullptr;
2734     }
2735   }
2736 
2737   // Also try to simplify calls to fortified library functions.
2738   if (Value *SimplifiedFortifiedCI = FortifiedSimplifier.optimizeCall(CI)) {
2739     // Try to further simplify the result.
2740     CallInst *SimplifiedCI = dyn_cast<CallInst>(SimplifiedFortifiedCI);
2741     if (SimplifiedCI && SimplifiedCI->getCalledFunction()) {
2742       // Use an IR Builder from SimplifiedCI if available instead of CI
2743       // to guarantee we reach all uses we might replace later on.
2744       IRBuilder<> TmpBuilder(SimplifiedCI);
2745       if (Value *V = optimizeStringMemoryLibCall(SimplifiedCI, TmpBuilder)) {
2746         // If we were able to further simplify, remove the now redundant call.
2747         SimplifiedCI->replaceAllUsesWith(V);
2748         eraseFromParent(SimplifiedCI);
2749         return V;
2750       }
2751     }
2752     return SimplifiedFortifiedCI;
2753   }
2754 
2755   // Then check for known library functions.
2756   if (TLI->getLibFunc(*Callee, Func) && TLI->has(Func)) {
2757     // We never change the calling convention.
2758     if (!ignoreCallingConv(Func) && !isCallingConvC)
2759       return nullptr;
2760     if (Value *V = optimizeStringMemoryLibCall(CI, Builder))
2761       return V;
2762     if (Value *V = optimizeFloatingPointLibCall(CI, Func, Builder))
2763       return V;
2764     switch (Func) {
2765     case LibFunc_ffs:
2766     case LibFunc_ffsl:
2767     case LibFunc_ffsll:
2768       return optimizeFFS(CI, Builder);
2769     case LibFunc_fls:
2770     case LibFunc_flsl:
2771     case LibFunc_flsll:
2772       return optimizeFls(CI, Builder);
2773     case LibFunc_abs:
2774     case LibFunc_labs:
2775     case LibFunc_llabs:
2776       return optimizeAbs(CI, Builder);
2777     case LibFunc_isdigit:
2778       return optimizeIsDigit(CI, Builder);
2779     case LibFunc_isascii:
2780       return optimizeIsAscii(CI, Builder);
2781     case LibFunc_toascii:
2782       return optimizeToAscii(CI, Builder);
2783     case LibFunc_atoi:
2784     case LibFunc_atol:
2785     case LibFunc_atoll:
2786       return optimizeAtoi(CI, Builder);
2787     case LibFunc_strtol:
2788     case LibFunc_strtoll:
2789       return optimizeStrtol(CI, Builder);
2790     case LibFunc_printf:
2791       return optimizePrintF(CI, Builder);
2792     case LibFunc_sprintf:
2793       return optimizeSPrintF(CI, Builder);
2794     case LibFunc_snprintf:
2795       return optimizeSnPrintF(CI, Builder);
2796     case LibFunc_fprintf:
2797       return optimizeFPrintF(CI, Builder);
2798     case LibFunc_fwrite:
2799       return optimizeFWrite(CI, Builder);
2800     case LibFunc_fread:
2801       return optimizeFRead(CI, Builder);
2802     case LibFunc_fputs:
2803       return optimizeFPuts(CI, Builder);
2804     case LibFunc_fgets:
2805       return optimizeFGets(CI, Builder);
2806     case LibFunc_fputc:
2807       return optimizeFPutc(CI, Builder);
2808     case LibFunc_fgetc:
2809       return optimizeFGetc(CI, Builder);
2810     case LibFunc_puts:
2811       return optimizePuts(CI, Builder);
2812     case LibFunc_perror:
2813       return optimizeErrorReporting(CI, Builder);
2814     case LibFunc_vfprintf:
2815     case LibFunc_fiprintf:
2816       return optimizeErrorReporting(CI, Builder, 0);
2817     default:
2818       return nullptr;
2819     }
2820   }
2821   return nullptr;
2822 }
2823 
2824 LibCallSimplifier::LibCallSimplifier(
2825     const DataLayout &DL, const TargetLibraryInfo *TLI,
2826     OptimizationRemarkEmitter &ORE,
2827     BlockFrequencyInfo *BFI, ProfileSummaryInfo *PSI,
2828     function_ref<void(Instruction *, Value *)> Replacer,
2829     function_ref<void(Instruction *)> Eraser)
2830     : FortifiedSimplifier(TLI), DL(DL), TLI(TLI), ORE(ORE), BFI(BFI), PSI(PSI),
2831       UnsafeFPShrink(false), Replacer(Replacer), Eraser(Eraser) {}
2832 
2833 void LibCallSimplifier::replaceAllUsesWith(Instruction *I, Value *With) {
2834   // Indirect through the replacer used in this instance.
2835   Replacer(I, With);
2836 }
2837 
2838 void LibCallSimplifier::eraseFromParent(Instruction *I) {
2839   Eraser(I);
2840 }
2841 
2842 // TODO:
2843 //   Additional cases that we need to add to this file:
2844 //
2845 // cbrt:
2846 //   * cbrt(expN(X))  -> expN(x/3)
2847 //   * cbrt(sqrt(x))  -> pow(x,1/6)
2848 //   * cbrt(cbrt(x))  -> pow(x,1/9)
2849 //
2850 // exp, expf, expl:
2851 //   * exp(log(x))  -> x
2852 //
2853 // log, logf, logl:
2854 //   * log(exp(x))   -> x
2855 //   * log(exp(y))   -> y*log(e)
2856 //   * log(exp10(y)) -> y*log(10)
2857 //   * log(sqrt(x))  -> 0.5*log(x)
2858 //
2859 // pow, powf, powl:
2860 //   * pow(sqrt(x),y) -> pow(x,y*0.5)
2861 //   * pow(pow(x,y),z)-> pow(x,y*z)
2862 //
2863 // signbit:
2864 //   * signbit(cnst) -> cnst'
2865 //   * signbit(nncst) -> 0 (if pstv is a non-negative constant)
2866 //
2867 // sqrt, sqrtf, sqrtl:
2868 //   * sqrt(expN(x))  -> expN(x*0.5)
2869 //   * sqrt(Nroot(x)) -> pow(x,1/(2*N))
2870 //   * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
2871 //
2872 
2873 //===----------------------------------------------------------------------===//
2874 // Fortified Library Call Optimizations
2875 //===----------------------------------------------------------------------===//
2876 
2877 bool
2878 FortifiedLibCallSimplifier::isFortifiedCallFoldable(CallInst *CI,
2879                                                     unsigned ObjSizeOp,
2880                                                     Optional<unsigned> SizeOp,
2881                                                     Optional<unsigned> StrOp,
2882                                                     Optional<unsigned> FlagOp) {
2883   // If this function takes a flag argument, the implementation may use it to
2884   // perform extra checks. Don't fold into the non-checking variant.
2885   if (FlagOp) {
2886     ConstantInt *Flag = dyn_cast<ConstantInt>(CI->getArgOperand(*FlagOp));
2887     if (!Flag || !Flag->isZero())
2888       return false;
2889   }
2890 
2891   if (SizeOp && CI->getArgOperand(ObjSizeOp) == CI->getArgOperand(*SizeOp))
2892     return true;
2893 
2894   if (ConstantInt *ObjSizeCI =
2895           dyn_cast<ConstantInt>(CI->getArgOperand(ObjSizeOp))) {
2896     if (ObjSizeCI->isMinusOne())
2897       return true;
2898     // If the object size wasn't -1 (unknown), bail out if we were asked to.
2899     if (OnlyLowerUnknownSize)
2900       return false;
2901     if (StrOp) {
2902       uint64_t Len = GetStringLength(CI->getArgOperand(*StrOp));
2903       // If the length is 0 we don't know how long it is and so we can't
2904       // remove the check.
2905       if (Len == 0)
2906         return false;
2907       return ObjSizeCI->getZExtValue() >= Len;
2908     }
2909 
2910     if (SizeOp) {
2911       if (ConstantInt *SizeCI =
2912               dyn_cast<ConstantInt>(CI->getArgOperand(*SizeOp)))
2913         return ObjSizeCI->getZExtValue() >= SizeCI->getZExtValue();
2914     }
2915   }
2916   return false;
2917 }
2918 
2919 Value *FortifiedLibCallSimplifier::optimizeMemCpyChk(CallInst *CI,
2920                                                      IRBuilder<> &B) {
2921   if (isFortifiedCallFoldable(CI, 3, 2)) {
2922     B.CreateMemCpy(CI->getArgOperand(0), 1, CI->getArgOperand(1), 1,
2923                    CI->getArgOperand(2));
2924     return CI->getArgOperand(0);
2925   }
2926   return nullptr;
2927 }
2928 
2929 Value *FortifiedLibCallSimplifier::optimizeMemMoveChk(CallInst *CI,
2930                                                       IRBuilder<> &B) {
2931   if (isFortifiedCallFoldable(CI, 3, 2)) {
2932     B.CreateMemMove(CI->getArgOperand(0), 1, CI->getArgOperand(1), 1,
2933                     CI->getArgOperand(2));
2934     return CI->getArgOperand(0);
2935   }
2936   return nullptr;
2937 }
2938 
2939 Value *FortifiedLibCallSimplifier::optimizeMemSetChk(CallInst *CI,
2940                                                      IRBuilder<> &B) {
2941   // TODO: Try foldMallocMemset() here.
2942 
2943   if (isFortifiedCallFoldable(CI, 3, 2)) {
2944     Value *Val = B.CreateIntCast(CI->getArgOperand(1), B.getInt8Ty(), false);
2945     B.CreateMemSet(CI->getArgOperand(0), Val, CI->getArgOperand(2), 1);
2946     return CI->getArgOperand(0);
2947   }
2948   return nullptr;
2949 }
2950 
2951 Value *FortifiedLibCallSimplifier::optimizeStrpCpyChk(CallInst *CI,
2952                                                       IRBuilder<> &B,
2953                                                       LibFunc Func) {
2954   const DataLayout &DL = CI->getModule()->getDataLayout();
2955   Value *Dst = CI->getArgOperand(0), *Src = CI->getArgOperand(1),
2956         *ObjSize = CI->getArgOperand(2);
2957 
2958   // __stpcpy_chk(x,x,...)  -> x+strlen(x)
2959   if (Func == LibFunc_stpcpy_chk && !OnlyLowerUnknownSize && Dst == Src) {
2960     Value *StrLen = emitStrLen(Src, B, DL, TLI);
2961     return StrLen ? B.CreateInBoundsGEP(B.getInt8Ty(), Dst, StrLen) : nullptr;
2962   }
2963 
2964   // If a) we don't have any length information, or b) we know this will
2965   // fit then just lower to a plain st[rp]cpy. Otherwise we'll keep our
2966   // st[rp]cpy_chk call which may fail at runtime if the size is too long.
2967   // TODO: It might be nice to get a maximum length out of the possible
2968   // string lengths for varying.
2969   if (isFortifiedCallFoldable(CI, 2, None, 1)) {
2970     if (Func == LibFunc_strcpy_chk)
2971       return emitStrCpy(Dst, Src, B, TLI);
2972     else
2973       return emitStpCpy(Dst, Src, B, TLI);
2974   }
2975 
2976   if (OnlyLowerUnknownSize)
2977     return nullptr;
2978 
2979   // Maybe we can stil fold __st[rp]cpy_chk to __memcpy_chk.
2980   uint64_t Len = GetStringLength(Src);
2981   if (Len == 0)
2982     return nullptr;
2983 
2984   Type *SizeTTy = DL.getIntPtrType(CI->getContext());
2985   Value *LenV = ConstantInt::get(SizeTTy, Len);
2986   Value *Ret = emitMemCpyChk(Dst, Src, LenV, ObjSize, B, DL, TLI);
2987   // If the function was an __stpcpy_chk, and we were able to fold it into
2988   // a __memcpy_chk, we still need to return the correct end pointer.
2989   if (Ret && Func == LibFunc_stpcpy_chk)
2990     return B.CreateGEP(B.getInt8Ty(), Dst, ConstantInt::get(SizeTTy, Len - 1));
2991   return Ret;
2992 }
2993 
2994 Value *FortifiedLibCallSimplifier::optimizeStrpNCpyChk(CallInst *CI,
2995                                                        IRBuilder<> &B,
2996                                                        LibFunc Func) {
2997   if (isFortifiedCallFoldable(CI, 3, 2)) {
2998     if (Func == LibFunc_strncpy_chk)
2999       return emitStrNCpy(CI->getArgOperand(0), CI->getArgOperand(1),
3000                                CI->getArgOperand(2), B, TLI);
3001     else
3002       return emitStpNCpy(CI->getArgOperand(0), CI->getArgOperand(1),
3003                          CI->getArgOperand(2), B, TLI);
3004   }
3005 
3006   return nullptr;
3007 }
3008 
3009 Value *FortifiedLibCallSimplifier::optimizeMemCCpyChk(CallInst *CI,
3010                                                       IRBuilder<> &B) {
3011   if (isFortifiedCallFoldable(CI, 4, 3))
3012     return emitMemCCpy(CI->getArgOperand(0), CI->getArgOperand(1),
3013                        CI->getArgOperand(2), CI->getArgOperand(3), B, TLI);
3014 
3015   return nullptr;
3016 }
3017 
3018 Value *FortifiedLibCallSimplifier::optimizeSNPrintfChk(CallInst *CI,
3019                                                        IRBuilder<> &B) {
3020   if (isFortifiedCallFoldable(CI, 3, 1, None, 2)) {
3021     SmallVector<Value *, 8> VariadicArgs(CI->arg_begin() + 5, CI->arg_end());
3022     return emitSNPrintf(CI->getArgOperand(0), CI->getArgOperand(1),
3023                         CI->getArgOperand(4), VariadicArgs, B, TLI);
3024   }
3025 
3026   return nullptr;
3027 }
3028 
3029 Value *FortifiedLibCallSimplifier::optimizeSPrintfChk(CallInst *CI,
3030                                                       IRBuilder<> &B) {
3031   if (isFortifiedCallFoldable(CI, 2, None, None, 1)) {
3032     SmallVector<Value *, 8> VariadicArgs(CI->arg_begin() + 4, CI->arg_end());
3033     return emitSPrintf(CI->getArgOperand(0), CI->getArgOperand(3), VariadicArgs,
3034                        B, TLI);
3035   }
3036 
3037   return nullptr;
3038 }
3039 
3040 Value *FortifiedLibCallSimplifier::optimizeStrCatChk(CallInst *CI,
3041                                                      IRBuilder<> &B) {
3042   if (isFortifiedCallFoldable(CI, 2))
3043     return emitStrCat(CI->getArgOperand(0), CI->getArgOperand(1), B, TLI);
3044 
3045   return nullptr;
3046 }
3047 
3048 Value *FortifiedLibCallSimplifier::optimizeStrLCat(CallInst *CI,
3049                                                    IRBuilder<> &B) {
3050   if (isFortifiedCallFoldable(CI, 3))
3051     return emitStrLCat(CI->getArgOperand(0), CI->getArgOperand(1),
3052                        CI->getArgOperand(2), B, TLI);
3053 
3054   return nullptr;
3055 }
3056 
3057 Value *FortifiedLibCallSimplifier::optimizeStrNCatChk(CallInst *CI,
3058                                                       IRBuilder<> &B) {
3059   if (isFortifiedCallFoldable(CI, 3))
3060     return emitStrNCat(CI->getArgOperand(0), CI->getArgOperand(1),
3061                        CI->getArgOperand(2), B, TLI);
3062 
3063   return nullptr;
3064 }
3065 
3066 Value *FortifiedLibCallSimplifier::optimizeStrLCpyChk(CallInst *CI,
3067                                                       IRBuilder<> &B) {
3068   if (isFortifiedCallFoldable(CI, 3))
3069     return emitStrLCpy(CI->getArgOperand(0), CI->getArgOperand(1),
3070                        CI->getArgOperand(2), B, TLI);
3071 
3072   return nullptr;
3073 }
3074 
3075 Value *FortifiedLibCallSimplifier::optimizeVSNPrintfChk(CallInst *CI,
3076                                                         IRBuilder<> &B) {
3077   if (isFortifiedCallFoldable(CI, 3, 1, None, 2))
3078     return emitVSNPrintf(CI->getArgOperand(0), CI->getArgOperand(1),
3079                          CI->getArgOperand(4), CI->getArgOperand(5), B, TLI);
3080 
3081   return nullptr;
3082 }
3083 
3084 Value *FortifiedLibCallSimplifier::optimizeVSPrintfChk(CallInst *CI,
3085                                                        IRBuilder<> &B) {
3086   if (isFortifiedCallFoldable(CI, 2, None, None, 1))
3087     return emitVSPrintf(CI->getArgOperand(0), CI->getArgOperand(3),
3088                         CI->getArgOperand(4), B, TLI);
3089 
3090   return nullptr;
3091 }
3092 
3093 Value *FortifiedLibCallSimplifier::optimizeCall(CallInst *CI) {
3094   // FIXME: We shouldn't be changing "nobuiltin" or TLI unavailable calls here.
3095   // Some clang users checked for _chk libcall availability using:
3096   //   __has_builtin(__builtin___memcpy_chk)
3097   // When compiling with -fno-builtin, this is always true.
3098   // When passing -ffreestanding/-mkernel, which both imply -fno-builtin, we
3099   // end up with fortified libcalls, which isn't acceptable in a freestanding
3100   // environment which only provides their non-fortified counterparts.
3101   //
3102   // Until we change clang and/or teach external users to check for availability
3103   // differently, disregard the "nobuiltin" attribute and TLI::has.
3104   //
3105   // PR23093.
3106 
3107   LibFunc Func;
3108   Function *Callee = CI->getCalledFunction();
3109 
3110   SmallVector<OperandBundleDef, 2> OpBundles;
3111   CI->getOperandBundlesAsDefs(OpBundles);
3112   IRBuilder<> Builder(CI, /*FPMathTag=*/nullptr, OpBundles);
3113   bool isCallingConvC = isCallingConvCCompatible(CI);
3114 
3115   // First, check that this is a known library functions and that the prototype
3116   // is correct.
3117   if (!TLI->getLibFunc(*Callee, Func))
3118     return nullptr;
3119 
3120   // We never change the calling convention.
3121   if (!ignoreCallingConv(Func) && !isCallingConvC)
3122     return nullptr;
3123 
3124   switch (Func) {
3125   case LibFunc_memcpy_chk:
3126     return optimizeMemCpyChk(CI, Builder);
3127   case LibFunc_memmove_chk:
3128     return optimizeMemMoveChk(CI, Builder);
3129   case LibFunc_memset_chk:
3130     return optimizeMemSetChk(CI, Builder);
3131   case LibFunc_stpcpy_chk:
3132   case LibFunc_strcpy_chk:
3133     return optimizeStrpCpyChk(CI, Builder, Func);
3134   case LibFunc_stpncpy_chk:
3135   case LibFunc_strncpy_chk:
3136     return optimizeStrpNCpyChk(CI, Builder, Func);
3137   case LibFunc_memccpy_chk:
3138     return optimizeMemCCpyChk(CI, Builder);
3139   case LibFunc_snprintf_chk:
3140     return optimizeSNPrintfChk(CI, Builder);
3141   case LibFunc_sprintf_chk:
3142     return optimizeSPrintfChk(CI, Builder);
3143   case LibFunc_strcat_chk:
3144     return optimizeStrCatChk(CI, Builder);
3145   case LibFunc_strlcat_chk:
3146     return optimizeStrLCat(CI, Builder);
3147   case LibFunc_strncat_chk:
3148     return optimizeStrNCatChk(CI, Builder);
3149   case LibFunc_strlcpy_chk:
3150     return optimizeStrLCpyChk(CI, Builder);
3151   case LibFunc_vsnprintf_chk:
3152     return optimizeVSNPrintfChk(CI, Builder);
3153   case LibFunc_vsprintf_chk:
3154     return optimizeVSPrintfChk(CI, Builder);
3155   default:
3156     break;
3157   }
3158   return nullptr;
3159 }
3160 
3161 FortifiedLibCallSimplifier::FortifiedLibCallSimplifier(
3162     const TargetLibraryInfo *TLI, bool OnlyLowerUnknownSize)
3163     : TLI(TLI), OnlyLowerUnknownSize(OnlyLowerUnknownSize) {}