blob: 6e169de8291373d732209cfce6ed4901ef4cb563 [file] [log] [blame]
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001//===- SimplifyLibCalls.cpp - Optimize specific well-known library calls --===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements a simple pass that applies a variety of small
11// optimizations for calls to specific well-known function calls (e.g. runtime
Chris Lattnere9f9a7e2009-09-03 05:19:59 +000012// library functions). Any optimization that takes the very simple form
13// "replace call to library function with simpler code that provides the same
14// result" belongs in this file.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000015//
16//===----------------------------------------------------------------------===//
17
18#define DEBUG_TYPE "simplify-libcalls"
19#include "llvm/Transforms/Scalar.h"
Eric Christopherb6174e32010-03-05 22:25:30 +000020#include "llvm/Transforms/Utils/BuildLibCalls.h"
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000021#include "llvm/Intrinsics.h"
Owen Andersonfa5cbd62009-07-03 19:42:02 +000022#include "llvm/LLVMContext.h"
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000023#include "llvm/Module.h"
24#include "llvm/Pass.h"
25#include "llvm/Support/IRBuilder.h"
Evan Cheng0ff39b32008-06-30 07:31:25 +000026#include "llvm/Analysis/ValueTracking.h"
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000027#include "llvm/Target/TargetData.h"
Chris Lattnerafbf4832011-02-24 07:16:14 +000028#include "llvm/Target/TargetLibraryInfo.h"
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000029#include "llvm/ADT/SmallPtrSet.h"
30#include "llvm/ADT/StringMap.h"
31#include "llvm/ADT/Statistic.h"
Daniel Dunbar473955f2009-07-29 22:00:43 +000032#include "llvm/ADT/STLExtras.h"
Chris Lattner56b4f2b2008-05-01 06:39:12 +000033#include "llvm/Support/Debug.h"
Daniel Dunbarf0443c12009-07-26 08:34:35 +000034#include "llvm/Support/raw_ostream.h"
Chris Lattnerafbf4832011-02-24 07:16:14 +000035#include "llvm/Config/config.h" // FIXME: Shouldn't depend on host!
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000036using namespace llvm;
37
38STATISTIC(NumSimplified, "Number of library calls simplified");
Nick Lewycky0f8df9a2009-01-04 20:27:34 +000039STATISTIC(NumAnnotated, "Number of attributes added to library functions");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000040
41//===----------------------------------------------------------------------===//
42// Optimizer Base Class
43//===----------------------------------------------------------------------===//
44
45/// This class is the abstract base class for the set of optimizations that
46/// corresponds to one library call.
47namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +000048class LibCallOptimization {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000049protected:
50 Function *Caller;
51 const TargetData *TD;
Richard Osborne36498242011-03-03 13:17:51 +000052 const TargetLibraryInfo *TLI;
Owen Andersonfa5cbd62009-07-03 19:42:02 +000053 LLVMContext* Context;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000054public:
Evan Chengeb8c6452010-03-24 20:19:04 +000055 LibCallOptimization() { }
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000056 virtual ~LibCallOptimization() {}
57
58 /// CallOptimizer - This pure virtual method is implemented by base classes to
59 /// do various optimizations. If this returns null then no transformation was
60 /// performed. If it returns CI, then it transformed the call and CI is to be
61 /// deleted. If it returns something else, replace CI with the new value and
62 /// delete CI.
Eric Christopher37c8b862009-10-07 21:14:25 +000063 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B)
Eric Christopher7a61d702008-08-08 19:39:37 +000064 =0;
Eric Christopher37c8b862009-10-07 21:14:25 +000065
Richard Osborne36498242011-03-03 13:17:51 +000066 Value *OptimizeCall(CallInst *CI, const TargetData *TD,
67 const TargetLibraryInfo *TLI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000068 Caller = CI->getParent()->getParent();
Dan Gohmanf14d9192009-08-18 00:48:13 +000069 this->TD = TD;
Richard Osborne36498242011-03-03 13:17:51 +000070 this->TLI = TLI;
Owen Andersonfa5cbd62009-07-03 19:42:02 +000071 if (CI->getCalledFunction())
Owen Andersone922c022009-07-22 00:24:57 +000072 Context = &CI->getCalledFunction()->getContext();
Rafael Espindolae96af562010-06-16 19:34:01 +000073
74 // We never change the calling convention.
75 if (CI->getCallingConv() != llvm::CallingConv::C)
76 return NULL;
77
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000078 return CallOptimizer(CI->getCalledFunction(), CI, B);
79 }
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000080};
81} // End anonymous namespace.
82
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000083
84//===----------------------------------------------------------------------===//
85// Helper Functions
86//===----------------------------------------------------------------------===//
87
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000088/// IsOnlyUsedInZeroEqualityComparison - Return true if it only matters that the
Eric Christopher37c8b862009-10-07 21:14:25 +000089/// value is equal or not-equal to zero.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000090static bool IsOnlyUsedInZeroEqualityComparison(Value *V) {
91 for (Value::use_iterator UI = V->use_begin(), E = V->use_end();
92 UI != E; ++UI) {
93 if (ICmpInst *IC = dyn_cast<ICmpInst>(*UI))
94 if (IC->isEquality())
95 if (Constant *C = dyn_cast<Constant>(IC->getOperand(1)))
96 if (C->isNullValue())
97 continue;
98 // Unknown instruction.
99 return false;
100 }
101 return true;
102}
Richard Osborne36498242011-03-03 13:17:51 +0000103
104static bool CallHasFloatingPointArgument(const CallInst *CI) {
105 for (CallInst::const_op_iterator it = CI->op_begin(), e = CI->op_end();
106 it != e; ++it) {
107 if ((*it)->getType()->isFloatingPointTy())
108 return true;
109 }
110 return false;
111}
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000112
Benjamin Kramer386e9182010-06-15 21:34:25 +0000113/// IsOnlyUsedInEqualityComparison - Return true if it is only used in equality
114/// comparisons with With.
115static bool IsOnlyUsedInEqualityComparison(Value *V, Value *With) {
116 for (Value::use_iterator UI = V->use_begin(), E = V->use_end();
117 UI != E; ++UI) {
118 if (ICmpInst *IC = dyn_cast<ICmpInst>(*UI))
119 if (IC->isEquality() && IC->getOperand(1) == With)
120 continue;
121 // Unknown instruction.
122 return false;
123 }
124 return true;
125}
126
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000127//===----------------------------------------------------------------------===//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000128// String and Memory LibCall Optimizations
129//===----------------------------------------------------------------------===//
130
131//===---------------------------------------===//
132// 'strcat' Optimizations
Chris Lattnere9f9a7e2009-09-03 05:19:59 +0000133namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +0000134struct StrCatOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000135 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000136 // Verify the "strcat" function prototype.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000137 FunctionType *FT = Callee->getFunctionType();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000138 if (FT->getNumParams() != 2 ||
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000139 FT->getReturnType() != B.getInt8PtrTy() ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000140 FT->getParamType(0) != FT->getReturnType() ||
141 FT->getParamType(1) != FT->getReturnType())
142 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000143
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000144 // Extract some information from the instruction
Gabor Greifaee5dc12010-06-24 10:42:46 +0000145 Value *Dst = CI->getArgOperand(0);
146 Value *Src = CI->getArgOperand(1);
Eric Christopher37c8b862009-10-07 21:14:25 +0000147
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000148 // See if we can get the length of the input string.
149 uint64_t Len = GetStringLength(Src);
Chris Lattner56b4f2b2008-05-01 06:39:12 +0000150 if (Len == 0) return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000151 --Len; // Unbias length.
Eric Christopher37c8b862009-10-07 21:14:25 +0000152
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000153 // Handle the simple, do-nothing case: strcat(x, "") -> x
154 if (Len == 0)
155 return Dst;
Dan Gohmanf14d9192009-08-18 00:48:13 +0000156
157 // These optimizations require TargetData.
158 if (!TD) return 0;
159
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000160 EmitStrLenMemCpy(Src, Dst, Len, B);
161 return Dst;
162 }
163
164 void EmitStrLenMemCpy(Value *Src, Value *Dst, uint64_t Len, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000165 // We need to find the end of the destination string. That's where the
166 // memory is to be moved to. We just generate a call to strlen.
Eric Christopherb6174e32010-03-05 22:25:30 +0000167 Value *DstLen = EmitStrLen(Dst, B, TD);
Eric Christopher37c8b862009-10-07 21:14:25 +0000168
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000169 // Now that we have the destination's length, we must index into the
170 // destination's pointer to get the actual memcpy destination (end of
171 // the string .. we're concatenating).
Ed Schoutenb5e0a962009-04-06 13:06:48 +0000172 Value *CpyDst = B.CreateGEP(Dst, DstLen, "endptr");
Eric Christopher37c8b862009-10-07 21:14:25 +0000173
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000174 // We have enough information to now generate the memcpy call to do the
175 // concatenation for us. Make a memcpy to copy the nul byte with align = 1.
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000176 B.CreateMemCpy(CpyDst, Src,
177 ConstantInt::get(TD->getIntPtrType(*Context), Len + 1), 1);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000178 }
179};
180
181//===---------------------------------------===//
182// 'strncat' Optimizations
183
Chris Lattner3e8b6632009-09-02 06:11:42 +0000184struct StrNCatOpt : public StrCatOpt {
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000185 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
186 // Verify the "strncat" function prototype.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000187 FunctionType *FT = Callee->getFunctionType();
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000188 if (FT->getNumParams() != 3 ||
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000189 FT->getReturnType() != B.getInt8PtrTy() ||
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000190 FT->getParamType(0) != FT->getReturnType() ||
191 FT->getParamType(1) != FT->getReturnType() ||
Duncan Sands1df98592010-02-16 11:11:14 +0000192 !FT->getParamType(2)->isIntegerTy())
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000193 return 0;
194
195 // Extract some information from the instruction
Gabor Greifaee5dc12010-06-24 10:42:46 +0000196 Value *Dst = CI->getArgOperand(0);
197 Value *Src = CI->getArgOperand(1);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000198 uint64_t Len;
199
200 // We don't do anything if length is not constant
Gabor Greifaee5dc12010-06-24 10:42:46 +0000201 if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(CI->getArgOperand(2)))
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000202 Len = LengthArg->getZExtValue();
203 else
204 return 0;
205
206 // See if we can get the length of the input string.
207 uint64_t SrcLen = GetStringLength(Src);
208 if (SrcLen == 0) return 0;
209 --SrcLen; // Unbias length.
210
211 // Handle the simple, do-nothing cases:
212 // strncat(x, "", c) -> x
213 // strncat(x, c, 0) -> x
214 if (SrcLen == 0 || Len == 0) return Dst;
215
Dan Gohmanf14d9192009-08-18 00:48:13 +0000216 // These optimizations require TargetData.
217 if (!TD) return 0;
218
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000219 // We don't optimize this case
220 if (Len < SrcLen) return 0;
221
222 // strncat(x, s, c) -> strcat(x, s)
223 // s is constant so the strcat can be optimized further
Chris Lattner5db4cdf2009-04-12 18:22:33 +0000224 EmitStrLenMemCpy(Src, Dst, SrcLen, B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000225 return Dst;
226 }
227};
228
229//===---------------------------------------===//
230// 'strchr' Optimizations
231
Chris Lattner3e8b6632009-09-02 06:11:42 +0000232struct StrChrOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000233 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000234 // Verify the "strchr" function prototype.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000235 FunctionType *FT = Callee->getFunctionType();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000236 if (FT->getNumParams() != 2 ||
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000237 FT->getReturnType() != B.getInt8PtrTy() ||
Benjamin Kramer4c756792010-09-30 11:21:59 +0000238 FT->getParamType(0) != FT->getReturnType() ||
239 !FT->getParamType(1)->isIntegerTy(32))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000240 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000241
Gabor Greifaee5dc12010-06-24 10:42:46 +0000242 Value *SrcStr = CI->getArgOperand(0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000243
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000244 // If the second operand is non-constant, see if we can compute the length
245 // of the input string and turn this into memchr.
Gabor Greifaee5dc12010-06-24 10:42:46 +0000246 ConstantInt *CharC = dyn_cast<ConstantInt>(CI->getArgOperand(1));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000247 if (CharC == 0) {
Dan Gohmanf14d9192009-08-18 00:48:13 +0000248 // These optimizations require TargetData.
249 if (!TD) return 0;
250
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000251 uint64_t Len = GetStringLength(SrcStr);
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000252 if (Len == 0 || !FT->getParamType(1)->isIntegerTy(32))// memchr needs i32.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000253 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000254
Gabor Greifaee5dc12010-06-24 10:42:46 +0000255 return EmitMemChr(SrcStr, CI->getArgOperand(1), // include nul.
Eric Christopherb6174e32010-03-05 22:25:30 +0000256 ConstantInt::get(TD->getIntPtrType(*Context), Len),
257 B, TD);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000258 }
259
260 // Otherwise, the character is a constant, see if the first argument is
261 // a string literal. If so, we can constant fold.
Bill Wendling0582ae92009-03-13 04:39:26 +0000262 std::string Str;
263 if (!GetConstantStringInfo(SrcStr, Str))
Chris Lattner56b4f2b2008-05-01 06:39:12 +0000264 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000265
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000266 // strchr can find the nul character.
267 Str += '\0';
Eric Christopher37c8b862009-10-07 21:14:25 +0000268
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000269 // Compute the offset.
Benjamin Kramere2609902010-09-29 22:29:12 +0000270 size_t I = Str.find(CharC->getSExtValue());
271 if (I == std::string::npos) // Didn't find the char. strchr returns null.
272 return Constant::getNullValue(CI->getType());
Eric Christopher37c8b862009-10-07 21:14:25 +0000273
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000274 // strchr(s+n,c) -> gep(s+n+i,c)
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000275 return B.CreateGEP(SrcStr, B.getInt64(I), "strchr");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000276 }
277};
278
279//===---------------------------------------===//
Benjamin Kramer06f25cf2010-09-29 21:50:51 +0000280// 'strrchr' Optimizations
281
282struct StrRChrOpt : public LibCallOptimization {
283 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
284 // Verify the "strrchr" function prototype.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000285 FunctionType *FT = Callee->getFunctionType();
Benjamin Kramer06f25cf2010-09-29 21:50:51 +0000286 if (FT->getNumParams() != 2 ||
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000287 FT->getReturnType() != B.getInt8PtrTy() ||
Benjamin Kramer4c756792010-09-30 11:21:59 +0000288 FT->getParamType(0) != FT->getReturnType() ||
289 !FT->getParamType(1)->isIntegerTy(32))
Benjamin Kramer06f25cf2010-09-29 21:50:51 +0000290 return 0;
291
292 Value *SrcStr = CI->getArgOperand(0);
293 ConstantInt *CharC = dyn_cast<ConstantInt>(CI->getArgOperand(1));
294
295 // Cannot fold anything if we're not looking for a constant.
296 if (!CharC)
297 return 0;
298
299 std::string Str;
300 if (!GetConstantStringInfo(SrcStr, Str)) {
301 // strrchr(s, 0) -> strchr(s, 0)
302 if (TD && CharC->isZero())
303 return EmitStrChr(SrcStr, '\0', B, TD);
304 return 0;
305 }
306
307 // strrchr can find the nul character.
308 Str += '\0';
309
310 // Compute the offset.
311 size_t I = Str.rfind(CharC->getSExtValue());
312 if (I == std::string::npos) // Didn't find the char. Return null.
313 return Constant::getNullValue(CI->getType());
314
315 // strrchr(s+n,c) -> gep(s+n+i,c)
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000316 return B.CreateGEP(SrcStr, B.getInt64(I), "strrchr");
Benjamin Kramer06f25cf2010-09-29 21:50:51 +0000317 }
318};
319
320//===---------------------------------------===//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000321// 'strcmp' Optimizations
322
Chris Lattner3e8b6632009-09-02 06:11:42 +0000323struct StrCmpOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000324 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000325 // Verify the "strcmp" function prototype.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000326 FunctionType *FT = Callee->getFunctionType();
Eric Christopher37c8b862009-10-07 21:14:25 +0000327 if (FT->getNumParams() != 2 ||
Nick Lewycky10d2f4d2010-07-06 03:53:43 +0000328 !FT->getReturnType()->isIntegerTy(32) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000329 FT->getParamType(0) != FT->getParamType(1) ||
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000330 FT->getParamType(0) != B.getInt8PtrTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000331 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000332
Gabor Greifaee5dc12010-06-24 10:42:46 +0000333 Value *Str1P = CI->getArgOperand(0), *Str2P = CI->getArgOperand(1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000334 if (Str1P == Str2P) // strcmp(x,x) -> 0
Owen Andersoneed707b2009-07-24 23:12:02 +0000335 return ConstantInt::get(CI->getType(), 0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000336
Bill Wendling0582ae92009-03-13 04:39:26 +0000337 std::string Str1, Str2;
338 bool HasStr1 = GetConstantStringInfo(Str1P, Str1);
339 bool HasStr2 = GetConstantStringInfo(Str2P, Str2);
Eric Christopher37c8b862009-10-07 21:14:25 +0000340
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000341 // strcmp(x, y) -> cnst (if both x and y are constant strings)
Bill Wendling0582ae92009-03-13 04:39:26 +0000342 if (HasStr1 && HasStr2)
Eric Christopher37c8b862009-10-07 21:14:25 +0000343 return ConstantInt::get(CI->getType(),
Eli Friedman79286082011-10-05 22:27:16 +0000344 StringRef(Str1).compare(Str2));
345
346 if (HasStr1 && Str1.empty()) // strcmp("", x) -> -*x
347 return B.CreateNeg(B.CreateZExt(B.CreateLoad(Str2P, "strcmpload"),
348 CI->getType()));
349
350 if (HasStr2 && Str2.empty()) // strcmp(x,"") -> *x
351 return B.CreateZExt(B.CreateLoad(Str1P, "strcmpload"), CI->getType());
Nick Lewycky13a09e22008-12-21 00:19:21 +0000352
353 // strcmp(P, "x") -> memcmp(P, "x", 2)
354 uint64_t Len1 = GetStringLength(Str1P);
355 uint64_t Len2 = GetStringLength(Str2P);
Chris Lattner849832c2009-06-19 04:17:36 +0000356 if (Len1 && Len2) {
Dan Gohmanf14d9192009-08-18 00:48:13 +0000357 // These optimizations require TargetData.
358 if (!TD) return 0;
359
Nick Lewycky13a09e22008-12-21 00:19:21 +0000360 return EmitMemCmp(Str1P, Str2P,
Owen Anderson1d0be152009-08-13 21:58:54 +0000361 ConstantInt::get(TD->getIntPtrType(*Context),
Eric Christopherb6174e32010-03-05 22:25:30 +0000362 std::min(Len1, Len2)), B, TD);
Nick Lewycky13a09e22008-12-21 00:19:21 +0000363 }
364
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000365 return 0;
366 }
367};
368
369//===---------------------------------------===//
370// 'strncmp' Optimizations
371
Chris Lattner3e8b6632009-09-02 06:11:42 +0000372struct StrNCmpOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000373 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000374 // Verify the "strncmp" function prototype.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000375 FunctionType *FT = Callee->getFunctionType();
Eric Christopher37c8b862009-10-07 21:14:25 +0000376 if (FT->getNumParams() != 3 ||
Nick Lewycky10d2f4d2010-07-06 03:53:43 +0000377 !FT->getReturnType()->isIntegerTy(32) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000378 FT->getParamType(0) != FT->getParamType(1) ||
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000379 FT->getParamType(0) != B.getInt8PtrTy() ||
Duncan Sands1df98592010-02-16 11:11:14 +0000380 !FT->getParamType(2)->isIntegerTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000381 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000382
Gabor Greifaee5dc12010-06-24 10:42:46 +0000383 Value *Str1P = CI->getArgOperand(0), *Str2P = CI->getArgOperand(1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000384 if (Str1P == Str2P) // strncmp(x,x,n) -> 0
Owen Andersoneed707b2009-07-24 23:12:02 +0000385 return ConstantInt::get(CI->getType(), 0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000386
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000387 // Get the length argument if it is constant.
388 uint64_t Length;
Gabor Greifaee5dc12010-06-24 10:42:46 +0000389 if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(CI->getArgOperand(2)))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000390 Length = LengthArg->getZExtValue();
391 else
392 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000393
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000394 if (Length == 0) // strncmp(x,y,0) -> 0
Owen Andersoneed707b2009-07-24 23:12:02 +0000395 return ConstantInt::get(CI->getType(), 0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000396
Benjamin Kramerea9ca022010-06-16 10:30:29 +0000397 if (TD && Length == 1) // strncmp(x,y,1) -> memcmp(x,y,1)
Gabor Greif8e1ebff2010-06-30 12:42:43 +0000398 return EmitMemCmp(Str1P, Str2P, CI->getArgOperand(2), B, TD);
Benjamin Kramerea9ca022010-06-16 10:30:29 +0000399
Bill Wendling0582ae92009-03-13 04:39:26 +0000400 std::string Str1, Str2;
401 bool HasStr1 = GetConstantStringInfo(Str1P, Str1);
402 bool HasStr2 = GetConstantStringInfo(Str2P, Str2);
Eric Christopher37c8b862009-10-07 21:14:25 +0000403
Eli Friedman79286082011-10-05 22:27:16 +0000404 // strncmp(x, y) -> cnst (if both x and y are constant strings)
405 if (HasStr1 && HasStr2) {
406 StringRef SubStr1 = StringRef(Str1).substr(0, Length);
407 StringRef SubStr2 = StringRef(Str2).substr(0, Length);
408 return ConstantInt::get(CI->getType(), SubStr1.compare(SubStr2));
409 }
410
411 if (HasStr1 && Str1.empty()) // strncmp("", x, n) -> -*x
412 return B.CreateNeg(B.CreateZExt(B.CreateLoad(Str2P, "strcmpload"),
413 CI->getType()));
Eric Christopher37c8b862009-10-07 21:14:25 +0000414
Bill Wendling0582ae92009-03-13 04:39:26 +0000415 if (HasStr2 && Str2.empty()) // strncmp(x, "", n) -> *x
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000416 return B.CreateZExt(B.CreateLoad(Str1P, "strcmpload"), CI->getType());
Eric Christopher37c8b862009-10-07 21:14:25 +0000417
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000418 return 0;
419 }
420};
421
422
423//===---------------------------------------===//
424// 'strcpy' Optimizations
425
Chris Lattner3e8b6632009-09-02 06:11:42 +0000426struct StrCpyOpt : public LibCallOptimization {
Evan Chengeb8c6452010-03-24 20:19:04 +0000427 bool OptChkCall; // True if it's optimizing a __strcpy_chk libcall.
428
429 StrCpyOpt(bool c) : OptChkCall(c) {}
430
Eric Christopher7a61d702008-08-08 19:39:37 +0000431 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000432 // Verify the "strcpy" function prototype.
Evan Cheng0289b412010-03-23 15:48:04 +0000433 unsigned NumParams = OptChkCall ? 3 : 2;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000434 FunctionType *FT = Callee->getFunctionType();
Evan Cheng0289b412010-03-23 15:48:04 +0000435 if (FT->getNumParams() != NumParams ||
436 FT->getReturnType() != FT->getParamType(0) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000437 FT->getParamType(0) != FT->getParamType(1) ||
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000438 FT->getParamType(0) != B.getInt8PtrTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000439 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000440
Gabor Greifaee5dc12010-06-24 10:42:46 +0000441 Value *Dst = CI->getArgOperand(0), *Src = CI->getArgOperand(1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000442 if (Dst == Src) // strcpy(x,x) -> x
443 return Src;
Eric Christopher37c8b862009-10-07 21:14:25 +0000444
Dan Gohmanf14d9192009-08-18 00:48:13 +0000445 // These optimizations require TargetData.
446 if (!TD) return 0;
447
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000448 // See if we can get the length of the input string.
449 uint64_t Len = GetStringLength(Src);
Chris Lattner56b4f2b2008-05-01 06:39:12 +0000450 if (Len == 0) return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000451
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000452 // We have enough information to now generate the memcpy call to do the
453 // concatenation for us. Make a memcpy to copy the nul byte with align = 1.
Evan Cheng0289b412010-03-23 15:48:04 +0000454 if (OptChkCall)
455 EmitMemCpyChk(Dst, Src,
456 ConstantInt::get(TD->getIntPtrType(*Context), Len),
Gabor Greifaee5dc12010-06-24 10:42:46 +0000457 CI->getArgOperand(2), B, TD);
Evan Cheng0289b412010-03-23 15:48:04 +0000458 else
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000459 B.CreateMemCpy(Dst, Src,
460 ConstantInt::get(TD->getIntPtrType(*Context), Len), 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000461 return Dst;
462 }
463};
464
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000465//===---------------------------------------===//
466// 'strncpy' Optimizations
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000467
Chris Lattner3e8b6632009-09-02 06:11:42 +0000468struct StrNCpyOpt : public LibCallOptimization {
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000469 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000470 FunctionType *FT = Callee->getFunctionType();
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000471 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
472 FT->getParamType(0) != FT->getParamType(1) ||
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000473 FT->getParamType(0) != B.getInt8PtrTy() ||
Duncan Sands1df98592010-02-16 11:11:14 +0000474 !FT->getParamType(2)->isIntegerTy())
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000475 return 0;
476
Gabor Greifaee5dc12010-06-24 10:42:46 +0000477 Value *Dst = CI->getArgOperand(0);
478 Value *Src = CI->getArgOperand(1);
479 Value *LenOp = CI->getArgOperand(2);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000480
481 // See if we can get the length of the input string.
482 uint64_t SrcLen = GetStringLength(Src);
483 if (SrcLen == 0) return 0;
484 --SrcLen;
485
486 if (SrcLen == 0) {
487 // strncpy(x, "", y) -> memset(x, '\0', y, 1)
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000488 B.CreateMemSet(Dst, B.getInt8('\0'), LenOp, 1);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000489 return Dst;
490 }
491
492 uint64_t Len;
493 if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(LenOp))
494 Len = LengthArg->getZExtValue();
495 else
496 return 0;
497
498 if (Len == 0) return Dst; // strncpy(x, y, 0) -> x
499
Dan Gohmanf14d9192009-08-18 00:48:13 +0000500 // These optimizations require TargetData.
501 if (!TD) return 0;
502
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000503 // Let strncpy handle the zero padding
504 if (Len > SrcLen+1) return 0;
505
506 // strncpy(x, s, c) -> memcpy(x, s, c, 1) [s and c are constant]
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000507 B.CreateMemCpy(Dst, Src,
508 ConstantInt::get(TD->getIntPtrType(*Context), Len), 1);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000509
510 return Dst;
511 }
512};
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000513
514//===---------------------------------------===//
515// 'strlen' Optimizations
516
Chris Lattner3e8b6632009-09-02 06:11:42 +0000517struct StrLenOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000518 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000519 FunctionType *FT = Callee->getFunctionType();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000520 if (FT->getNumParams() != 1 ||
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000521 FT->getParamType(0) != B.getInt8PtrTy() ||
Duncan Sands1df98592010-02-16 11:11:14 +0000522 !FT->getReturnType()->isIntegerTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000523 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000524
Gabor Greifaee5dc12010-06-24 10:42:46 +0000525 Value *Src = CI->getArgOperand(0);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000526
527 // Constant folding: strlen("xyz") -> 3
528 if (uint64_t Len = GetStringLength(Src))
Owen Andersoneed707b2009-07-24 23:12:02 +0000529 return ConstantInt::get(CI->getType(), Len-1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000530
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000531 // strlen(x) != 0 --> *x != 0
532 // strlen(x) == 0 --> *x == 0
Chris Lattner98d67d72009-12-23 23:24:51 +0000533 if (IsOnlyUsedInZeroEqualityComparison(CI))
534 return B.CreateZExt(B.CreateLoad(Src, "strlenfirst"), CI->getType());
535 return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000536 }
537};
538
Benjamin Kramer05f585e2010-09-29 23:52:12 +0000539
540//===---------------------------------------===//
541// 'strpbrk' Optimizations
542
543struct StrPBrkOpt : public LibCallOptimization {
544 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000545 FunctionType *FT = Callee->getFunctionType();
Benjamin Kramer05f585e2010-09-29 23:52:12 +0000546 if (FT->getNumParams() != 2 ||
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000547 FT->getParamType(0) != B.getInt8PtrTy() ||
Benjamin Kramer05f585e2010-09-29 23:52:12 +0000548 FT->getParamType(1) != FT->getParamType(0) ||
549 FT->getReturnType() != FT->getParamType(0))
550 return 0;
551
552 std::string S1, S2;
553 bool HasS1 = GetConstantStringInfo(CI->getArgOperand(0), S1);
554 bool HasS2 = GetConstantStringInfo(CI->getArgOperand(1), S2);
555
556 // strpbrk(s, "") -> NULL
557 // strpbrk("", s) -> NULL
558 if ((HasS1 && S1.empty()) || (HasS2 && S2.empty()))
559 return Constant::getNullValue(CI->getType());
560
561 // Constant folding.
562 if (HasS1 && HasS2) {
563 size_t I = S1.find_first_of(S2);
564 if (I == std::string::npos) // No match.
565 return Constant::getNullValue(CI->getType());
566
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000567 return B.CreateGEP(CI->getArgOperand(0), B.getInt64(I), "strpbrk");
Benjamin Kramer05f585e2010-09-29 23:52:12 +0000568 }
569
570 // strpbrk(s, "a") -> strchr(s, 'a')
571 if (TD && HasS2 && S2.size() == 1)
572 return EmitStrChr(CI->getArgOperand(0), S2[0], B, TD);
573
574 return 0;
575 }
576};
577
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000578//===---------------------------------------===//
Chris Lattner24604112009-12-16 09:32:05 +0000579// 'strto*' Optimizations. This handles strtol, strtod, strtof, strtoul, etc.
Nick Lewycky4c498412009-02-13 15:31:46 +0000580
Chris Lattner3e8b6632009-09-02 06:11:42 +0000581struct StrToOpt : public LibCallOptimization {
Nick Lewycky4c498412009-02-13 15:31:46 +0000582 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000583 FunctionType *FT = Callee->getFunctionType();
Nick Lewycky4c498412009-02-13 15:31:46 +0000584 if ((FT->getNumParams() != 2 && FT->getNumParams() != 3) ||
Duncan Sands1df98592010-02-16 11:11:14 +0000585 !FT->getParamType(0)->isPointerTy() ||
586 !FT->getParamType(1)->isPointerTy())
Nick Lewycky4c498412009-02-13 15:31:46 +0000587 return 0;
588
Gabor Greifaee5dc12010-06-24 10:42:46 +0000589 Value *EndPtr = CI->getArgOperand(1);
Nick Lewycky02b6a6a2009-02-13 17:08:33 +0000590 if (isa<ConstantPointerNull>(EndPtr)) {
Dan Gohmanc32046e2010-12-17 01:09:43 +0000591 // With a null EndPtr, this function won't capture the main argument.
592 // It would be readonly too, except that it still may write to errno.
Nick Lewycky4c498412009-02-13 15:31:46 +0000593 CI->addAttribute(1, Attribute::NoCapture);
Nick Lewycky02b6a6a2009-02-13 17:08:33 +0000594 }
Nick Lewycky4c498412009-02-13 15:31:46 +0000595
596 return 0;
597 }
598};
599
Chris Lattner24604112009-12-16 09:32:05 +0000600//===---------------------------------------===//
Benjamin Kramer9510a252010-09-30 00:58:35 +0000601// 'strspn' Optimizations
602
603struct StrSpnOpt : public LibCallOptimization {
604 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000605 FunctionType *FT = Callee->getFunctionType();
Benjamin Kramer9510a252010-09-30 00:58:35 +0000606 if (FT->getNumParams() != 2 ||
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000607 FT->getParamType(0) != B.getInt8PtrTy() ||
Benjamin Kramer9510a252010-09-30 00:58:35 +0000608 FT->getParamType(1) != FT->getParamType(0) ||
609 !FT->getReturnType()->isIntegerTy())
610 return 0;
611
612 std::string S1, S2;
613 bool HasS1 = GetConstantStringInfo(CI->getArgOperand(0), S1);
614 bool HasS2 = GetConstantStringInfo(CI->getArgOperand(1), S2);
615
616 // strspn(s, "") -> 0
617 // strspn("", s) -> 0
618 if ((HasS1 && S1.empty()) || (HasS2 && S2.empty()))
619 return Constant::getNullValue(CI->getType());
620
621 // Constant folding.
622 if (HasS1 && HasS2)
623 return ConstantInt::get(CI->getType(), strspn(S1.c_str(), S2.c_str()));
624
625 return 0;
626 }
627};
628
629//===---------------------------------------===//
630// 'strcspn' Optimizations
631
632struct StrCSpnOpt : public LibCallOptimization {
633 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000634 FunctionType *FT = Callee->getFunctionType();
Benjamin Kramer9510a252010-09-30 00:58:35 +0000635 if (FT->getNumParams() != 2 ||
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000636 FT->getParamType(0) != B.getInt8PtrTy() ||
Benjamin Kramer9510a252010-09-30 00:58:35 +0000637 FT->getParamType(1) != FT->getParamType(0) ||
638 !FT->getReturnType()->isIntegerTy())
639 return 0;
640
641 std::string S1, S2;
642 bool HasS1 = GetConstantStringInfo(CI->getArgOperand(0), S1);
643 bool HasS2 = GetConstantStringInfo(CI->getArgOperand(1), S2);
644
645 // strcspn("", s) -> 0
646 if (HasS1 && S1.empty())
647 return Constant::getNullValue(CI->getType());
648
649 // Constant folding.
650 if (HasS1 && HasS2)
651 return ConstantInt::get(CI->getType(), strcspn(S1.c_str(), S2.c_str()));
652
653 // strcspn(s, "") -> strlen(s)
654 if (TD && HasS2 && S2.empty())
655 return EmitStrLen(CI->getArgOperand(0), B, TD);
656
657 return 0;
658 }
659};
660
661//===---------------------------------------===//
Chris Lattner24604112009-12-16 09:32:05 +0000662// 'strstr' Optimizations
663
664struct StrStrOpt : public LibCallOptimization {
665 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000666 FunctionType *FT = Callee->getFunctionType();
Chris Lattner24604112009-12-16 09:32:05 +0000667 if (FT->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +0000668 !FT->getParamType(0)->isPointerTy() ||
669 !FT->getParamType(1)->isPointerTy() ||
670 !FT->getReturnType()->isPointerTy())
Chris Lattner24604112009-12-16 09:32:05 +0000671 return 0;
672
673 // fold strstr(x, x) -> x.
Gabor Greifaee5dc12010-06-24 10:42:46 +0000674 if (CI->getArgOperand(0) == CI->getArgOperand(1))
675 return B.CreateBitCast(CI->getArgOperand(0), CI->getType());
Mikhail Glushenkoved5cb592010-01-04 07:55:25 +0000676
Benjamin Kramer386e9182010-06-15 21:34:25 +0000677 // fold strstr(a, b) == a -> strncmp(a, b, strlen(b)) == 0
Gabor Greif8e1ebff2010-06-30 12:42:43 +0000678 if (TD && IsOnlyUsedInEqualityComparison(CI, CI->getArgOperand(0))) {
679 Value *StrLen = EmitStrLen(CI->getArgOperand(1), B, TD);
680 Value *StrNCmp = EmitStrNCmp(CI->getArgOperand(0), CI->getArgOperand(1),
Benjamin Kramer386e9182010-06-15 21:34:25 +0000681 StrLen, B, TD);
682 for (Value::use_iterator UI = CI->use_begin(), UE = CI->use_end();
683 UI != UE; ) {
Gabor Greif96f1d8e2010-07-22 13:36:47 +0000684 ICmpInst *Old = cast<ICmpInst>(*UI++);
Benjamin Kramer386e9182010-06-15 21:34:25 +0000685 Value *Cmp = B.CreateICmp(Old->getPredicate(), StrNCmp,
686 ConstantInt::getNullValue(StrNCmp->getType()),
687 "cmp");
688 Old->replaceAllUsesWith(Cmp);
689 Old->eraseFromParent();
690 }
691 return CI;
692 }
693
Chris Lattner24604112009-12-16 09:32:05 +0000694 // See if either input string is a constant string.
695 std::string SearchStr, ToFindStr;
Gabor Greifaee5dc12010-06-24 10:42:46 +0000696 bool HasStr1 = GetConstantStringInfo(CI->getArgOperand(0), SearchStr);
697 bool HasStr2 = GetConstantStringInfo(CI->getArgOperand(1), ToFindStr);
Mikhail Glushenkoved5cb592010-01-04 07:55:25 +0000698
Chris Lattner24604112009-12-16 09:32:05 +0000699 // fold strstr(x, "") -> x.
700 if (HasStr2 && ToFindStr.empty())
Gabor Greifaee5dc12010-06-24 10:42:46 +0000701 return B.CreateBitCast(CI->getArgOperand(0), CI->getType());
Mikhail Glushenkoved5cb592010-01-04 07:55:25 +0000702
Chris Lattner24604112009-12-16 09:32:05 +0000703 // If both strings are known, constant fold it.
704 if (HasStr1 && HasStr2) {
705 std::string::size_type Offset = SearchStr.find(ToFindStr);
Mikhail Glushenkoved5cb592010-01-04 07:55:25 +0000706
Chris Lattner24604112009-12-16 09:32:05 +0000707 if (Offset == std::string::npos) // strstr("foo", "bar") -> null
708 return Constant::getNullValue(CI->getType());
709
710 // strstr("abcd", "bc") -> gep((char*)"abcd", 1)
Gabor Greifaee5dc12010-06-24 10:42:46 +0000711 Value *Result = CastToCStr(CI->getArgOperand(0), B);
Chris Lattner24604112009-12-16 09:32:05 +0000712 Result = B.CreateConstInBoundsGEP1_64(Result, Offset, "strstr");
713 return B.CreateBitCast(Result, CI->getType());
714 }
Mikhail Glushenkoved5cb592010-01-04 07:55:25 +0000715
Chris Lattner24604112009-12-16 09:32:05 +0000716 // fold strstr(x, "y") -> strchr(x, 'y').
717 if (HasStr2 && ToFindStr.size() == 1)
Gabor Greifa3997812010-07-22 10:37:47 +0000718 return B.CreateBitCast(EmitStrChr(CI->getArgOperand(0),
719 ToFindStr[0], B, TD), CI->getType());
Chris Lattner24604112009-12-16 09:32:05 +0000720 return 0;
721 }
722};
Mikhail Glushenkoved5cb592010-01-04 07:55:25 +0000723
Nick Lewycky4c498412009-02-13 15:31:46 +0000724
725//===---------------------------------------===//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000726// 'memcmp' Optimizations
727
Chris Lattner3e8b6632009-09-02 06:11:42 +0000728struct MemCmpOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000729 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000730 FunctionType *FT = Callee->getFunctionType();
Duncan Sands1df98592010-02-16 11:11:14 +0000731 if (FT->getNumParams() != 3 || !FT->getParamType(0)->isPointerTy() ||
732 !FT->getParamType(1)->isPointerTy() ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000733 !FT->getReturnType()->isIntegerTy(32))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000734 return 0;
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000735
Gabor Greifaee5dc12010-06-24 10:42:46 +0000736 Value *LHS = CI->getArgOperand(0), *RHS = CI->getArgOperand(1);
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000737
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000738 if (LHS == RHS) // memcmp(s,s,x) -> 0
Owen Andersona7235ea2009-07-31 20:28:14 +0000739 return Constant::getNullValue(CI->getType());
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000740
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000741 // Make sure we have a constant length.
Gabor Greifaee5dc12010-06-24 10:42:46 +0000742 ConstantInt *LenC = dyn_cast<ConstantInt>(CI->getArgOperand(2));
Chris Lattner56b4f2b2008-05-01 06:39:12 +0000743 if (!LenC) return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000744 uint64_t Len = LenC->getZExtValue();
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000745
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000746 if (Len == 0) // memcmp(s1,s2,0) -> 0
Owen Andersona7235ea2009-07-31 20:28:14 +0000747 return Constant::getNullValue(CI->getType());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000748
Benjamin Kramer48aefe12010-05-25 22:53:43 +0000749 // memcmp(S1,S2,1) -> *(unsigned char*)LHS - *(unsigned char*)RHS
750 if (Len == 1) {
751 Value *LHSV = B.CreateZExt(B.CreateLoad(CastToCStr(LHS, B), "lhsc"),
752 CI->getType(), "lhsv");
753 Value *RHSV = B.CreateZExt(B.CreateLoad(CastToCStr(RHS, B), "rhsc"),
754 CI->getType(), "rhsv");
Benjamin Kramer1464c1d2010-05-26 09:45:04 +0000755 return B.CreateSub(LHSV, RHSV, "chardiff");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000756 }
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000757
Benjamin Kramer992a6372009-11-05 17:44:22 +0000758 // Constant folding: memcmp(x, y, l) -> cnst (all arguments are constant)
759 std::string LHSStr, RHSStr;
760 if (GetConstantStringInfo(LHS, LHSStr) &&
761 GetConstantStringInfo(RHS, RHSStr)) {
762 // Make sure we're not reading out-of-bounds memory.
763 if (Len > LHSStr.length() || Len > RHSStr.length())
764 return 0;
765 uint64_t Ret = memcmp(LHSStr.data(), RHSStr.data(), Len);
766 return ConstantInt::get(CI->getType(), Ret);
767 }
768
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000769 return 0;
770 }
771};
772
773//===---------------------------------------===//
774// 'memcpy' Optimizations
775
Chris Lattner3e8b6632009-09-02 06:11:42 +0000776struct MemCpyOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000777 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Dan Gohmanf14d9192009-08-18 00:48:13 +0000778 // These optimizations require TargetData.
779 if (!TD) return 0;
780
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000781 FunctionType *FT = Callee->getFunctionType();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000782 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
Duncan Sands1df98592010-02-16 11:11:14 +0000783 !FT->getParamType(0)->isPointerTy() ||
784 !FT->getParamType(1)->isPointerTy() ||
Owen Anderson1d0be152009-08-13 21:58:54 +0000785 FT->getParamType(2) != TD->getIntPtrType(*Context))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000786 return 0;
787
788 // memcpy(x, y, n) -> llvm.memcpy(x, y, n, 1)
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000789 B.CreateMemCpy(CI->getArgOperand(0), CI->getArgOperand(1),
790 CI->getArgOperand(2), 1);
Gabor Greifaee5dc12010-06-24 10:42:46 +0000791 return CI->getArgOperand(0);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000792 }
793};
794
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000795//===---------------------------------------===//
796// 'memmove' Optimizations
797
Chris Lattner3e8b6632009-09-02 06:11:42 +0000798struct MemMoveOpt : public LibCallOptimization {
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000799 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Dan Gohmanf14d9192009-08-18 00:48:13 +0000800 // These optimizations require TargetData.
801 if (!TD) return 0;
802
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000803 FunctionType *FT = Callee->getFunctionType();
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000804 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
Duncan Sands1df98592010-02-16 11:11:14 +0000805 !FT->getParamType(0)->isPointerTy() ||
806 !FT->getParamType(1)->isPointerTy() ||
Owen Anderson1d0be152009-08-13 21:58:54 +0000807 FT->getParamType(2) != TD->getIntPtrType(*Context))
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000808 return 0;
809
810 // memmove(x, y, n) -> llvm.memmove(x, y, n, 1)
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000811 B.CreateMemMove(CI->getArgOperand(0), CI->getArgOperand(1),
812 CI->getArgOperand(2), 1);
Gabor Greifaee5dc12010-06-24 10:42:46 +0000813 return CI->getArgOperand(0);
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000814 }
815};
816
817//===---------------------------------------===//
818// 'memset' Optimizations
819
Chris Lattner3e8b6632009-09-02 06:11:42 +0000820struct MemSetOpt : public LibCallOptimization {
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000821 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Dan Gohmanf14d9192009-08-18 00:48:13 +0000822 // These optimizations require TargetData.
823 if (!TD) return 0;
824
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000825 FunctionType *FT = Callee->getFunctionType();
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000826 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
Duncan Sands1df98592010-02-16 11:11:14 +0000827 !FT->getParamType(0)->isPointerTy() ||
828 !FT->getParamType(1)->isIntegerTy() ||
Owen Anderson1d0be152009-08-13 21:58:54 +0000829 FT->getParamType(2) != TD->getIntPtrType(*Context))
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000830 return 0;
831
832 // memset(p, v, n) -> llvm.memset(p, v, n, 1)
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000833 Value *Val = B.CreateIntCast(CI->getArgOperand(1), B.getInt8Ty(), false);
834 B.CreateMemSet(CI->getArgOperand(0), Val, CI->getArgOperand(2), 1);
Gabor Greifaee5dc12010-06-24 10:42:46 +0000835 return CI->getArgOperand(0);
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000836 }
837};
838
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000839//===----------------------------------------------------------------------===//
840// Math Library Optimizations
841//===----------------------------------------------------------------------===//
842
843//===---------------------------------------===//
844// 'pow*' Optimizations
845
Chris Lattner3e8b6632009-09-02 06:11:42 +0000846struct PowOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000847 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000848 FunctionType *FT = Callee->getFunctionType();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000849 // Just make sure this has 2 arguments of the same FP type, which match the
850 // result type.
851 if (FT->getNumParams() != 2 || FT->getReturnType() != FT->getParamType(0) ||
852 FT->getParamType(0) != FT->getParamType(1) ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000853 !FT->getParamType(0)->isFloatingPointTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000854 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000855
Gabor Greifaee5dc12010-06-24 10:42:46 +0000856 Value *Op1 = CI->getArgOperand(0), *Op2 = CI->getArgOperand(1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000857 if (ConstantFP *Op1C = dyn_cast<ConstantFP>(Op1)) {
858 if (Op1C->isExactlyValue(1.0)) // pow(1.0, x) -> 1.0
859 return Op1C;
860 if (Op1C->isExactlyValue(2.0)) // pow(2.0, x) -> exp2(x)
Dan Gohman76926b62009-09-26 18:10:13 +0000861 return EmitUnaryFloatFnCall(Op2, "exp2", B, Callee->getAttributes());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000862 }
Eric Christopher37c8b862009-10-07 21:14:25 +0000863
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000864 ConstantFP *Op2C = dyn_cast<ConstantFP>(Op2);
865 if (Op2C == 0) return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000866
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000867 if (Op2C->getValueAPF().isZero()) // pow(x, 0.0) -> 1.0
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000868 return ConstantFP::get(CI->getType(), 1.0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000869
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000870 if (Op2C->isExactlyValue(0.5)) {
Dan Gohman79cb8402009-09-25 23:10:17 +0000871 // Expand pow(x, 0.5) to (x == -infinity ? +infinity : fabs(sqrt(x))).
872 // This is faster than calling pow, and still handles negative zero
873 // and negative infinite correctly.
874 // TODO: In fast-math mode, this could be just sqrt(x).
875 // TODO: In finite-only mode, this could be just fabs(sqrt(x)).
Dan Gohmana23643d2009-09-25 23:40:21 +0000876 Value *Inf = ConstantFP::getInfinity(CI->getType());
877 Value *NegInf = ConstantFP::getInfinity(CI->getType(), true);
Dan Gohman76926b62009-09-26 18:10:13 +0000878 Value *Sqrt = EmitUnaryFloatFnCall(Op1, "sqrt", B,
879 Callee->getAttributes());
880 Value *FAbs = EmitUnaryFloatFnCall(Sqrt, "fabs", B,
881 Callee->getAttributes());
Benjamin Kramera9390a42011-09-27 20:39:19 +0000882 Value *FCmp = B.CreateFCmpOEQ(Op1, NegInf);
883 Value *Sel = B.CreateSelect(FCmp, Inf, FAbs);
Dan Gohman79cb8402009-09-25 23:10:17 +0000884 return Sel;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000885 }
Eric Christopher37c8b862009-10-07 21:14:25 +0000886
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000887 if (Op2C->isExactlyValue(1.0)) // pow(x, 1.0) -> x
888 return Op1;
889 if (Op2C->isExactlyValue(2.0)) // pow(x, 2.0) -> x*x
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000890 return B.CreateFMul(Op1, Op1, "pow2");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000891 if (Op2C->isExactlyValue(-1.0)) // pow(x, -1.0) -> 1.0/x
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000892 return B.CreateFDiv(ConstantFP::get(CI->getType(), 1.0),
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000893 Op1, "powrecip");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000894 return 0;
895 }
896};
897
898//===---------------------------------------===//
Chris Lattnere818f772008-05-02 18:43:35 +0000899// 'exp2' Optimizations
900
Chris Lattner3e8b6632009-09-02 06:11:42 +0000901struct Exp2Opt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000902 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000903 FunctionType *FT = Callee->getFunctionType();
Chris Lattnere818f772008-05-02 18:43:35 +0000904 // Just make sure this has 1 argument of FP type, which matches the
905 // result type.
906 if (FT->getNumParams() != 1 || FT->getReturnType() != FT->getParamType(0) ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000907 !FT->getParamType(0)->isFloatingPointTy())
Chris Lattnere818f772008-05-02 18:43:35 +0000908 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000909
Gabor Greifaee5dc12010-06-24 10:42:46 +0000910 Value *Op = CI->getArgOperand(0);
Chris Lattnere818f772008-05-02 18:43:35 +0000911 // Turn exp2(sitofp(x)) -> ldexp(1.0, sext(x)) if sizeof(x) <= 32
912 // Turn exp2(uitofp(x)) -> ldexp(1.0, zext(x)) if sizeof(x) < 32
913 Value *LdExpArg = 0;
914 if (SIToFPInst *OpC = dyn_cast<SIToFPInst>(Op)) {
915 if (OpC->getOperand(0)->getType()->getPrimitiveSizeInBits() <= 32)
Benjamin Kramera9390a42011-09-27 20:39:19 +0000916 LdExpArg = B.CreateSExt(OpC->getOperand(0), B.getInt32Ty());
Chris Lattnere818f772008-05-02 18:43:35 +0000917 } else if (UIToFPInst *OpC = dyn_cast<UIToFPInst>(Op)) {
918 if (OpC->getOperand(0)->getType()->getPrimitiveSizeInBits() < 32)
Benjamin Kramera9390a42011-09-27 20:39:19 +0000919 LdExpArg = B.CreateZExt(OpC->getOperand(0), B.getInt32Ty());
Chris Lattnere818f772008-05-02 18:43:35 +0000920 }
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000921
Chris Lattnere818f772008-05-02 18:43:35 +0000922 if (LdExpArg) {
923 const char *Name;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000924 if (Op->getType()->isFloatTy())
Chris Lattnere818f772008-05-02 18:43:35 +0000925 Name = "ldexpf";
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000926 else if (Op->getType()->isDoubleTy())
Chris Lattnere818f772008-05-02 18:43:35 +0000927 Name = "ldexp";
928 else
929 Name = "ldexpl";
930
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000931 Constant *One = ConstantFP::get(*Context, APFloat(1.0f));
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000932 if (!Op->getType()->isFloatTy())
Owen Andersonbaf3c402009-07-29 18:55:55 +0000933 One = ConstantExpr::getFPExtend(One, Op->getType());
Chris Lattnere818f772008-05-02 18:43:35 +0000934
935 Module *M = Caller->getParent();
936 Value *Callee = M->getOrInsertFunction(Name, Op->getType(),
Eric Christopher37c8b862009-10-07 21:14:25 +0000937 Op->getType(),
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000938 B.getInt32Ty(), NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000939 CallInst *CI = B.CreateCall2(Callee, One, LdExpArg);
940 if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
941 CI->setCallingConv(F->getCallingConv());
942
943 return CI;
Chris Lattnere818f772008-05-02 18:43:35 +0000944 }
945 return 0;
946 }
947};
Chris Lattnere818f772008-05-02 18:43:35 +0000948
949//===---------------------------------------===//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000950// Double -> Float Shrinking Optimizations for Unary Functions like 'floor'
951
Chris Lattner3e8b6632009-09-02 06:11:42 +0000952struct UnaryDoubleFPOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000953 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000954 FunctionType *FT = Callee->getFunctionType();
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000955 if (FT->getNumParams() != 1 || !FT->getReturnType()->isDoubleTy() ||
956 !FT->getParamType(0)->isDoubleTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000957 return 0;
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000958
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000959 // If this is something like 'floor((double)floatval)', convert to floorf.
Gabor Greifaee5dc12010-06-24 10:42:46 +0000960 FPExtInst *Cast = dyn_cast<FPExtInst>(CI->getArgOperand(0));
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000961 if (Cast == 0 || !Cast->getOperand(0)->getType()->isFloatTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000962 return 0;
963
964 // floor((double)floatval) -> (double)floorf(floatval)
965 Value *V = Cast->getOperand(0);
Benjamin Kramerb5ccb252011-11-15 19:12:09 +0000966 V = EmitUnaryFloatFnCall(V, Callee->getName(), B, Callee->getAttributes());
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000967 return B.CreateFPExt(V, B.getDoubleTy());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000968 }
969};
970
971//===----------------------------------------------------------------------===//
972// Integer Optimizations
973//===----------------------------------------------------------------------===//
974
975//===---------------------------------------===//
976// 'ffs*' Optimizations
977
Chris Lattner3e8b6632009-09-02 06:11:42 +0000978struct FFSOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000979 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000980 FunctionType *FT = Callee->getFunctionType();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000981 // Just make sure this has 2 arguments of the same FP type, which match the
982 // result type.
Eric Christopher37c8b862009-10-07 21:14:25 +0000983 if (FT->getNumParams() != 1 ||
Nick Lewycky10d2f4d2010-07-06 03:53:43 +0000984 !FT->getReturnType()->isIntegerTy(32) ||
Duncan Sands1df98592010-02-16 11:11:14 +0000985 !FT->getParamType(0)->isIntegerTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000986 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000987
Gabor Greifaee5dc12010-06-24 10:42:46 +0000988 Value *Op = CI->getArgOperand(0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000989
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000990 // Constant fold.
991 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
992 if (CI->getValue() == 0) // ffs(0) -> 0.
Owen Andersona7235ea2009-07-31 20:28:14 +0000993 return Constant::getNullValue(CI->getType());
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +0000994 // ffs(c) -> cttz(c)+1
995 return B.getInt32(CI->getValue().countTrailingZeros() + 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000996 }
Eric Christopher37c8b862009-10-07 21:14:25 +0000997
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000998 // ffs(x) -> x != 0 ? (i32)llvm.cttz(x)+1 : 0
Jay Foad5fdd6c82011-07-12 14:06:48 +0000999 Type *ArgType = Op->getType();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001000 Value *F = Intrinsic::getDeclaration(Callee->getParent(),
Benjamin Kramereb9a85f2011-07-14 17:45:39 +00001001 Intrinsic::cttz, ArgType);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001002 Value *V = B.CreateCall(F, Op, "cttz");
Benjamin Kramera9390a42011-09-27 20:39:19 +00001003 V = B.CreateAdd(V, ConstantInt::get(V->getType(), 1));
1004 V = B.CreateIntCast(V, B.getInt32Ty(), false);
Eric Christopher37c8b862009-10-07 21:14:25 +00001005
Benjamin Kramera9390a42011-09-27 20:39:19 +00001006 Value *Cond = B.CreateICmpNE(Op, Constant::getNullValue(ArgType));
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +00001007 return B.CreateSelect(Cond, V, B.getInt32(0));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001008 }
1009};
1010
1011//===---------------------------------------===//
1012// 'isdigit' Optimizations
1013
Chris Lattner3e8b6632009-09-02 06:11:42 +00001014struct IsDigitOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001015 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001016 FunctionType *FT = Callee->getFunctionType();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001017 // We require integer(i32)
Duncan Sands1df98592010-02-16 11:11:14 +00001018 if (FT->getNumParams() != 1 || !FT->getReturnType()->isIntegerTy() ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001019 !FT->getParamType(0)->isIntegerTy(32))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001020 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001021
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001022 // isdigit(c) -> (c-'0') <u 10
Gabor Greifaee5dc12010-06-24 10:42:46 +00001023 Value *Op = CI->getArgOperand(0);
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +00001024 Op = B.CreateSub(Op, B.getInt32('0'), "isdigittmp");
1025 Op = B.CreateICmpULT(Op, B.getInt32(10), "isdigit");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001026 return B.CreateZExt(Op, CI->getType());
1027 }
1028};
1029
1030//===---------------------------------------===//
1031// 'isascii' Optimizations
1032
Chris Lattner3e8b6632009-09-02 06:11:42 +00001033struct IsAsciiOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001034 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001035 FunctionType *FT = Callee->getFunctionType();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001036 // We require integer(i32)
Duncan Sands1df98592010-02-16 11:11:14 +00001037 if (FT->getNumParams() != 1 || !FT->getReturnType()->isIntegerTy() ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001038 !FT->getParamType(0)->isIntegerTy(32))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001039 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001040
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001041 // isascii(c) -> c <u 128
Gabor Greifaee5dc12010-06-24 10:42:46 +00001042 Value *Op = CI->getArgOperand(0);
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +00001043 Op = B.CreateICmpULT(Op, B.getInt32(128), "isascii");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001044 return B.CreateZExt(Op, CI->getType());
1045 }
1046};
Eric Christopher37c8b862009-10-07 21:14:25 +00001047
Chris Lattner313f0e62008-06-09 08:26:51 +00001048//===---------------------------------------===//
1049// 'abs', 'labs', 'llabs' Optimizations
1050
Chris Lattner3e8b6632009-09-02 06:11:42 +00001051struct AbsOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001052 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001053 FunctionType *FT = Callee->getFunctionType();
Chris Lattner313f0e62008-06-09 08:26:51 +00001054 // We require integer(integer) where the types agree.
Duncan Sands1df98592010-02-16 11:11:14 +00001055 if (FT->getNumParams() != 1 || !FT->getReturnType()->isIntegerTy() ||
Chris Lattner313f0e62008-06-09 08:26:51 +00001056 FT->getParamType(0) != FT->getReturnType())
1057 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001058
Chris Lattner313f0e62008-06-09 08:26:51 +00001059 // abs(x) -> x >s -1 ? x : -x
Gabor Greifaee5dc12010-06-24 10:42:46 +00001060 Value *Op = CI->getArgOperand(0);
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +00001061 Value *Pos = B.CreateICmpSGT(Op, Constant::getAllOnesValue(Op->getType()),
Chris Lattner313f0e62008-06-09 08:26:51 +00001062 "ispos");
1063 Value *Neg = B.CreateNeg(Op, "neg");
1064 return B.CreateSelect(Pos, Op, Neg);
1065 }
1066};
Eric Christopher37c8b862009-10-07 21:14:25 +00001067
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001068
1069//===---------------------------------------===//
1070// 'toascii' Optimizations
1071
Chris Lattner3e8b6632009-09-02 06:11:42 +00001072struct ToAsciiOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001073 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001074 FunctionType *FT = Callee->getFunctionType();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001075 // We require i32(i32)
1076 if (FT->getNumParams() != 1 || FT->getReturnType() != FT->getParamType(0) ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001077 !FT->getParamType(0)->isIntegerTy(32))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001078 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001079
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001080 // isascii(c) -> c & 0x7f
Gabor Greifaee5dc12010-06-24 10:42:46 +00001081 return B.CreateAnd(CI->getArgOperand(0),
Owen Andersoneed707b2009-07-24 23:12:02 +00001082 ConstantInt::get(CI->getType(),0x7F));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001083 }
1084};
1085
1086//===----------------------------------------------------------------------===//
1087// Formatting and IO Optimizations
1088//===----------------------------------------------------------------------===//
1089
1090//===---------------------------------------===//
1091// 'printf' Optimizations
1092
Chris Lattner3e8b6632009-09-02 06:11:42 +00001093struct PrintFOpt : public LibCallOptimization {
Richard Osborne36498242011-03-03 13:17:51 +00001094 Value *OptimizeFixedFormatString(Function *Callee, CallInst *CI,
1095 IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001096 // Check for a fixed format string.
Bill Wendling0582ae92009-03-13 04:39:26 +00001097 std::string FormatStr;
Gabor Greifaee5dc12010-06-24 10:42:46 +00001098 if (!GetConstantStringInfo(CI->getArgOperand(0), FormatStr))
Bill Wendling0582ae92009-03-13 04:39:26 +00001099 return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001100
1101 // Empty format string -> noop.
1102 if (FormatStr.empty()) // Tolerate printf's declared void.
Eric Christopher37c8b862009-10-07 21:14:25 +00001103 return CI->use_empty() ? (Value*)CI :
Owen Andersoneed707b2009-07-24 23:12:02 +00001104 ConstantInt::get(CI->getType(), 0);
Eric Christopher37c8b862009-10-07 21:14:25 +00001105
Daniel Dunbard02be242011-02-12 18:19:57 +00001106 // Do not do any of the following transformations if the printf return value
1107 // is used, in general the printf return value is not compatible with either
1108 // putchar() or puts().
1109 if (!CI->use_empty())
1110 return 0;
1111
1112 // printf("x") -> putchar('x'), even for '%'.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001113 if (FormatStr.size() == 1) {
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +00001114 Value *Res = EmitPutChar(B.getInt32(FormatStr[0]), B, TD);
Chris Lattner74965f22009-11-09 04:57:04 +00001115 if (CI->use_empty()) return CI;
1116 return B.CreateIntCast(Res, CI->getType(), true);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001117 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001118
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001119 // printf("foo\n") --> puts("foo")
1120 if (FormatStr[FormatStr.size()-1] == '\n' &&
1121 FormatStr.find('%') == std::string::npos) { // no format characters.
1122 // Create a string literal with no \n on it. We expect the constant merge
1123 // pass to be run after this pass, to merge duplicate strings.
1124 FormatStr.erase(FormatStr.end()-1);
Benjamin Kramer59e43bd2011-10-29 19:43:31 +00001125 Value *GV = B.CreateGlobalString(FormatStr, "str");
1126 EmitPutS(GV, B, TD);
Eric Christopher37c8b862009-10-07 21:14:25 +00001127 return CI->use_empty() ? (Value*)CI :
Owen Andersoneed707b2009-07-24 23:12:02 +00001128 ConstantInt::get(CI->getType(), FormatStr.size()+1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001129 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001130
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001131 // Optimize specific format strings.
Gabor Greifaee5dc12010-06-24 10:42:46 +00001132 // printf("%c", chr) --> putchar(chr)
Gabor Greif8e1ebff2010-06-30 12:42:43 +00001133 if (FormatStr == "%c" && CI->getNumArgOperands() > 1 &&
Gabor Greifaee5dc12010-06-24 10:42:46 +00001134 CI->getArgOperand(1)->getType()->isIntegerTy()) {
1135 Value *Res = EmitPutChar(CI->getArgOperand(1), B, TD);
Eric Christopher80bf1d52009-11-21 01:01:30 +00001136
Chris Lattner74965f22009-11-09 04:57:04 +00001137 if (CI->use_empty()) return CI;
1138 return B.CreateIntCast(Res, CI->getType(), true);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001139 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001140
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001141 // printf("%s\n", str) --> puts(str)
Gabor Greif8e1ebff2010-06-30 12:42:43 +00001142 if (FormatStr == "%s\n" && CI->getNumArgOperands() > 1 &&
Daniel Dunbard02be242011-02-12 18:19:57 +00001143 CI->getArgOperand(1)->getType()->isPointerTy()) {
Gabor Greifaee5dc12010-06-24 10:42:46 +00001144 EmitPutS(CI->getArgOperand(1), B, TD);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001145 return CI;
1146 }
1147 return 0;
1148 }
Richard Osborne36498242011-03-03 13:17:51 +00001149
1150 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
1151 // Require one fixed pointer argument and an integer/void result.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001152 FunctionType *FT = Callee->getFunctionType();
Richard Osborne36498242011-03-03 13:17:51 +00001153 if (FT->getNumParams() < 1 || !FT->getParamType(0)->isPointerTy() ||
1154 !(FT->getReturnType()->isIntegerTy() ||
1155 FT->getReturnType()->isVoidTy()))
1156 return 0;
1157
1158 if (Value *V = OptimizeFixedFormatString(Callee, CI, B)) {
1159 return V;
1160 }
1161
1162 // printf(format, ...) -> iprintf(format, ...) if no floating point
1163 // arguments.
1164 if (TLI->has(LibFunc::iprintf) && !CallHasFloatingPointArgument(CI)) {
1165 Module *M = B.GetInsertBlock()->getParent()->getParent();
1166 Constant *IPrintFFn =
1167 M->getOrInsertFunction("iprintf", FT, Callee->getAttributes());
1168 CallInst *New = cast<CallInst>(CI->clone());
1169 New->setCalledFunction(IPrintFFn);
1170 B.Insert(New);
1171 return New;
1172 }
1173 return 0;
1174 }
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001175};
1176
1177//===---------------------------------------===//
1178// 'sprintf' Optimizations
1179
Chris Lattner3e8b6632009-09-02 06:11:42 +00001180struct SPrintFOpt : public LibCallOptimization {
Richard Osborne419454a2011-03-03 14:09:28 +00001181 Value *OptimizeFixedFormatString(Function *Callee, CallInst *CI,
1182 IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001183 // Check for a fixed format string.
Bill Wendling0582ae92009-03-13 04:39:26 +00001184 std::string FormatStr;
Gabor Greifaee5dc12010-06-24 10:42:46 +00001185 if (!GetConstantStringInfo(CI->getArgOperand(1), FormatStr))
Bill Wendling0582ae92009-03-13 04:39:26 +00001186 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001187
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001188 // If we just have a format string (nothing else crazy) transform it.
Gabor Greif8e1ebff2010-06-30 12:42:43 +00001189 if (CI->getNumArgOperands() == 2) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001190 // Make sure there's no % in the constant array. We could try to handle
1191 // %% -> % in the future if we cared.
1192 for (unsigned i = 0, e = FormatStr.size(); i != e; ++i)
1193 if (FormatStr[i] == '%')
1194 return 0; // we found a format specifier, bail out.
Dan Gohmanf14d9192009-08-18 00:48:13 +00001195
1196 // These optimizations require TargetData.
1197 if (!TD) return 0;
1198
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001199 // sprintf(str, fmt) -> llvm.memcpy(str, fmt, strlen(fmt)+1, 1)
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +00001200 B.CreateMemCpy(CI->getArgOperand(0), CI->getArgOperand(1),
1201 ConstantInt::get(TD->getIntPtrType(*Context), // Copy the
1202 FormatStr.size() + 1), 1); // nul byte.
Owen Andersoneed707b2009-07-24 23:12:02 +00001203 return ConstantInt::get(CI->getType(), FormatStr.size());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001204 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001205
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001206 // The remaining optimizations require the format string to be "%s" or "%c"
1207 // and have an extra operand.
Gabor Greif8e1ebff2010-06-30 12:42:43 +00001208 if (FormatStr.size() != 2 || FormatStr[0] != '%' ||
1209 CI->getNumArgOperands() < 3)
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001210 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001211
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001212 // Decode the second character of the format string.
1213 if (FormatStr[1] == 'c') {
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001214 // sprintf(dst, "%c", chr) --> *(i8*)dst = chr; *((i8*)dst+1) = 0
Gabor Greifaee5dc12010-06-24 10:42:46 +00001215 if (!CI->getArgOperand(2)->getType()->isIntegerTy()) return 0;
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +00001216 Value *V = B.CreateTrunc(CI->getArgOperand(2), B.getInt8Ty(), "char");
Gabor Greifaee5dc12010-06-24 10:42:46 +00001217 Value *Ptr = CastToCStr(CI->getArgOperand(0), B);
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001218 B.CreateStore(V, Ptr);
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +00001219 Ptr = B.CreateGEP(Ptr, B.getInt32(1), "nul");
1220 B.CreateStore(B.getInt8(0), Ptr);
Eric Christopher37c8b862009-10-07 21:14:25 +00001221
Owen Andersoneed707b2009-07-24 23:12:02 +00001222 return ConstantInt::get(CI->getType(), 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001223 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001224
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001225 if (FormatStr[1] == 's') {
Dan Gohmanf14d9192009-08-18 00:48:13 +00001226 // These optimizations require TargetData.
1227 if (!TD) return 0;
1228
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001229 // sprintf(dest, "%s", str) -> llvm.memcpy(dest, str, strlen(str)+1, 1)
Gabor Greifaee5dc12010-06-24 10:42:46 +00001230 if (!CI->getArgOperand(2)->getType()->isPointerTy()) return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001231
Gabor Greifaee5dc12010-06-24 10:42:46 +00001232 Value *Len = EmitStrLen(CI->getArgOperand(2), B, TD);
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001233 Value *IncLen = B.CreateAdd(Len,
Owen Andersoneed707b2009-07-24 23:12:02 +00001234 ConstantInt::get(Len->getType(), 1),
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001235 "leninc");
Benjamin Kramera1bf4ca2010-12-27 00:16:46 +00001236 B.CreateMemCpy(CI->getArgOperand(0), CI->getArgOperand(2), IncLen, 1);
Eric Christopher37c8b862009-10-07 21:14:25 +00001237
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001238 // The sprintf result is the unincremented number of bytes in the string.
1239 return B.CreateIntCast(Len, CI->getType(), false);
1240 }
1241 return 0;
1242 }
Richard Osborne419454a2011-03-03 14:09:28 +00001243
1244 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
1245 // Require two fixed pointer arguments and an integer result.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001246 FunctionType *FT = Callee->getFunctionType();
Richard Osborne419454a2011-03-03 14:09:28 +00001247 if (FT->getNumParams() != 2 || !FT->getParamType(0)->isPointerTy() ||
1248 !FT->getParamType(1)->isPointerTy() ||
1249 !FT->getReturnType()->isIntegerTy())
1250 return 0;
1251
1252 if (Value *V = OptimizeFixedFormatString(Callee, CI, B)) {
1253 return V;
1254 }
1255
Richard Osborneea2578c2011-03-03 14:21:22 +00001256 // sprintf(str, format, ...) -> siprintf(str, format, ...) if no floating
Richard Osborne419454a2011-03-03 14:09:28 +00001257 // point arguments.
1258 if (TLI->has(LibFunc::siprintf) && !CallHasFloatingPointArgument(CI)) {
1259 Module *M = B.GetInsertBlock()->getParent()->getParent();
1260 Constant *SIPrintFFn =
1261 M->getOrInsertFunction("siprintf", FT, Callee->getAttributes());
1262 CallInst *New = cast<CallInst>(CI->clone());
1263 New->setCalledFunction(SIPrintFFn);
1264 B.Insert(New);
1265 return New;
1266 }
1267 return 0;
1268 }
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001269};
1270
1271//===---------------------------------------===//
1272// 'fwrite' Optimizations
1273
Chris Lattner3e8b6632009-09-02 06:11:42 +00001274struct FWriteOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001275 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001276 // Require a pointer, an integer, an integer, a pointer, returning integer.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001277 FunctionType *FT = Callee->getFunctionType();
Duncan Sands1df98592010-02-16 11:11:14 +00001278 if (FT->getNumParams() != 4 || !FT->getParamType(0)->isPointerTy() ||
1279 !FT->getParamType(1)->isIntegerTy() ||
1280 !FT->getParamType(2)->isIntegerTy() ||
1281 !FT->getParamType(3)->isPointerTy() ||
1282 !FT->getReturnType()->isIntegerTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001283 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001284
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001285 // Get the element size and count.
Gabor Greifaee5dc12010-06-24 10:42:46 +00001286 ConstantInt *SizeC = dyn_cast<ConstantInt>(CI->getArgOperand(1));
1287 ConstantInt *CountC = dyn_cast<ConstantInt>(CI->getArgOperand(2));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001288 if (!SizeC || !CountC) return 0;
1289 uint64_t Bytes = SizeC->getZExtValue()*CountC->getZExtValue();
Eric Christopher37c8b862009-10-07 21:14:25 +00001290
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001291 // If this is writing zero records, remove the call (it's a noop).
1292 if (Bytes == 0)
Owen Andersoneed707b2009-07-24 23:12:02 +00001293 return ConstantInt::get(CI->getType(), 0);
Eric Christopher37c8b862009-10-07 21:14:25 +00001294
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001295 // If this is writing one byte, turn it into fputc.
1296 if (Bytes == 1) { // fwrite(S,1,1,F) -> fputc(S[0],F)
Gabor Greifaee5dc12010-06-24 10:42:46 +00001297 Value *Char = B.CreateLoad(CastToCStr(CI->getArgOperand(0), B), "char");
1298 EmitFPutC(Char, CI->getArgOperand(3), B, TD);
Owen Andersoneed707b2009-07-24 23:12:02 +00001299 return ConstantInt::get(CI->getType(), 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001300 }
1301
1302 return 0;
1303 }
1304};
1305
1306//===---------------------------------------===//
1307// 'fputs' Optimizations
1308
Chris Lattner3e8b6632009-09-02 06:11:42 +00001309struct FPutsOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001310 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Dan Gohmanf14d9192009-08-18 00:48:13 +00001311 // These optimizations require TargetData.
1312 if (!TD) return 0;
1313
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001314 // Require two pointers. Also, we can't optimize if return value is used.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001315 FunctionType *FT = Callee->getFunctionType();
Duncan Sands1df98592010-02-16 11:11:14 +00001316 if (FT->getNumParams() != 2 || !FT->getParamType(0)->isPointerTy() ||
1317 !FT->getParamType(1)->isPointerTy() ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001318 !CI->use_empty())
1319 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001320
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001321 // fputs(s,F) --> fwrite(s,1,strlen(s),F)
Gabor Greifaee5dc12010-06-24 10:42:46 +00001322 uint64_t Len = GetStringLength(CI->getArgOperand(0));
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001323 if (!Len) return 0;
Gabor Greifaee5dc12010-06-24 10:42:46 +00001324 EmitFWrite(CI->getArgOperand(0),
Owen Anderson1d0be152009-08-13 21:58:54 +00001325 ConstantInt::get(TD->getIntPtrType(*Context), Len-1),
Eli Friedman9d434db2011-11-17 01:27:36 +00001326 CI->getArgOperand(1), B, TD, TLI);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001327 return CI; // Known to have no uses (see above).
1328 }
1329};
1330
1331//===---------------------------------------===//
1332// 'fprintf' Optimizations
1333
Chris Lattner3e8b6632009-09-02 06:11:42 +00001334struct FPrintFOpt : public LibCallOptimization {
Richard Osborne022708f2011-03-03 14:20:22 +00001335 Value *OptimizeFixedFormatString(Function *Callee, CallInst *CI,
1336 IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001337 // All the optimizations depend on the format string.
Bill Wendling0582ae92009-03-13 04:39:26 +00001338 std::string FormatStr;
Gabor Greifaee5dc12010-06-24 10:42:46 +00001339 if (!GetConstantStringInfo(CI->getArgOperand(1), FormatStr))
Bill Wendling0582ae92009-03-13 04:39:26 +00001340 return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001341
1342 // fprintf(F, "foo") --> fwrite("foo", 3, 1, F)
Gabor Greif8e1ebff2010-06-30 12:42:43 +00001343 if (CI->getNumArgOperands() == 2) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001344 for (unsigned i = 0, e = FormatStr.size(); i != e; ++i)
1345 if (FormatStr[i] == '%') // Could handle %% -> % if we cared.
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001346 return 0; // We found a format specifier.
Dan Gohmanf14d9192009-08-18 00:48:13 +00001347
1348 // These optimizations require TargetData.
1349 if (!TD) return 0;
1350
Gabor Greifaee5dc12010-06-24 10:42:46 +00001351 EmitFWrite(CI->getArgOperand(1),
Mikhail Glushenkoved5cb592010-01-04 07:55:25 +00001352 ConstantInt::get(TD->getIntPtrType(*Context),
1353 FormatStr.size()),
Eli Friedman9d434db2011-11-17 01:27:36 +00001354 CI->getArgOperand(0), B, TD, TLI);
Owen Andersoneed707b2009-07-24 23:12:02 +00001355 return ConstantInt::get(CI->getType(), FormatStr.size());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001356 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001357
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001358 // The remaining optimizations require the format string to be "%s" or "%c"
1359 // and have an extra operand.
Gabor Greif8e1ebff2010-06-30 12:42:43 +00001360 if (FormatStr.size() != 2 || FormatStr[0] != '%' ||
1361 CI->getNumArgOperands() < 3)
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001362 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001363
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001364 // Decode the second character of the format string.
1365 if (FormatStr[1] == 'c') {
Gabor Greifaee5dc12010-06-24 10:42:46 +00001366 // fprintf(F, "%c", chr) --> fputc(chr, F)
1367 if (!CI->getArgOperand(2)->getType()->isIntegerTy()) return 0;
1368 EmitFPutC(CI->getArgOperand(2), CI->getArgOperand(0), B, TD);
Owen Andersoneed707b2009-07-24 23:12:02 +00001369 return ConstantInt::get(CI->getType(), 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001370 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001371
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001372 if (FormatStr[1] == 's') {
Gabor Greifaee5dc12010-06-24 10:42:46 +00001373 // fprintf(F, "%s", str) --> fputs(str, F)
1374 if (!CI->getArgOperand(2)->getType()->isPointerTy() || !CI->use_empty())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001375 return 0;
Eli Friedman9d434db2011-11-17 01:27:36 +00001376 EmitFPutS(CI->getArgOperand(2), CI->getArgOperand(0), B, TD, TLI);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001377 return CI;
1378 }
1379 return 0;
1380 }
Richard Osborne022708f2011-03-03 14:20:22 +00001381
1382 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
1383 // Require two fixed paramters as pointers and integer result.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001384 FunctionType *FT = Callee->getFunctionType();
Richard Osborne022708f2011-03-03 14:20:22 +00001385 if (FT->getNumParams() != 2 || !FT->getParamType(0)->isPointerTy() ||
1386 !FT->getParamType(1)->isPointerTy() ||
1387 !FT->getReturnType()->isIntegerTy())
1388 return 0;
1389
1390 if (Value *V = OptimizeFixedFormatString(Callee, CI, B)) {
1391 return V;
1392 }
1393
1394 // fprintf(stream, format, ...) -> fiprintf(stream, format, ...) if no
1395 // floating point arguments.
1396 if (TLI->has(LibFunc::fiprintf) && !CallHasFloatingPointArgument(CI)) {
1397 Module *M = B.GetInsertBlock()->getParent()->getParent();
1398 Constant *FIPrintFFn =
1399 M->getOrInsertFunction("fiprintf", FT, Callee->getAttributes());
1400 CallInst *New = cast<CallInst>(CI->clone());
1401 New->setCalledFunction(FIPrintFFn);
1402 B.Insert(New);
1403 return New;
1404 }
1405 return 0;
1406 }
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001407};
1408
Anders Carlsson303023d2010-11-30 06:19:18 +00001409//===---------------------------------------===//
1410// 'puts' Optimizations
1411
1412struct PutsOpt : public LibCallOptimization {
1413 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
1414 // Require one fixed pointer argument and an integer/void result.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001415 FunctionType *FT = Callee->getFunctionType();
Anders Carlsson303023d2010-11-30 06:19:18 +00001416 if (FT->getNumParams() < 1 || !FT->getParamType(0)->isPointerTy() ||
1417 !(FT->getReturnType()->isIntegerTy() ||
1418 FT->getReturnType()->isVoidTy()))
1419 return 0;
1420
1421 // Check for a constant string.
1422 std::string Str;
1423 if (!GetConstantStringInfo(CI->getArgOperand(0), Str))
1424 return 0;
1425
Daniel Dunbard02be242011-02-12 18:19:57 +00001426 if (Str.empty() && CI->use_empty()) {
Anders Carlsson303023d2010-11-30 06:19:18 +00001427 // puts("") -> putchar('\n')
1428 Value *Res = EmitPutChar(B.getInt32('\n'), B, TD);
1429 if (CI->use_empty()) return CI;
1430 return B.CreateIntCast(Res, CI->getType(), true);
1431 }
1432
1433 return 0;
1434 }
1435};
1436
Bill Wendlingac178222008-05-05 21:37:59 +00001437} // end anonymous namespace.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001438
1439//===----------------------------------------------------------------------===//
1440// SimplifyLibCalls Pass Implementation
1441//===----------------------------------------------------------------------===//
1442
1443namespace {
1444 /// This pass optimizes well known library functions from libc and libm.
1445 ///
Chris Lattner3e8b6632009-09-02 06:11:42 +00001446 class SimplifyLibCalls : public FunctionPass {
Chris Lattnerafbf4832011-02-24 07:16:14 +00001447 TargetLibraryInfo *TLI;
1448
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001449 StringMap<LibCallOptimization*> Optimizations;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001450 // String and Memory LibCall Optimizations
Benjamin Kramer06f25cf2010-09-29 21:50:51 +00001451 StrCatOpt StrCat; StrNCatOpt StrNCat; StrChrOpt StrChr; StrRChrOpt StrRChr;
1452 StrCmpOpt StrCmp; StrNCmpOpt StrNCmp; StrCpyOpt StrCpy; StrCpyOpt StrCpyChk;
Benjamin Kramer05f585e2010-09-29 23:52:12 +00001453 StrNCpyOpt StrNCpy; StrLenOpt StrLen; StrPBrkOpt StrPBrk;
Benjamin Kramer9510a252010-09-30 00:58:35 +00001454 StrToOpt StrTo; StrSpnOpt StrSpn; StrCSpnOpt StrCSpn; StrStrOpt StrStr;
Chris Lattner24604112009-12-16 09:32:05 +00001455 MemCmpOpt MemCmp; MemCpyOpt MemCpy; MemMoveOpt MemMove; MemSetOpt MemSet;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001456 // Math Library Optimizations
Chris Lattnere818f772008-05-02 18:43:35 +00001457 PowOpt Pow; Exp2Opt Exp2; UnaryDoubleFPOpt UnaryDoubleFP;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001458 // Integer Optimizations
Chris Lattner313f0e62008-06-09 08:26:51 +00001459 FFSOpt FFS; AbsOpt Abs; IsDigitOpt IsDigit; IsAsciiOpt IsAscii;
1460 ToAsciiOpt ToAscii;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001461 // Formatting and IO Optimizations
1462 SPrintFOpt SPrintF; PrintFOpt PrintF;
1463 FWriteOpt FWrite; FPutsOpt FPuts; FPrintFOpt FPrintF;
Anders Carlsson303023d2010-11-30 06:19:18 +00001464 PutsOpt Puts;
Chris Lattnerafbf4832011-02-24 07:16:14 +00001465
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001466 bool Modified; // This is only used by doInitialization.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001467 public:
1468 static char ID; // Pass identification
Owen Anderson081c34b2010-10-19 17:21:58 +00001469 SimplifyLibCalls() : FunctionPass(ID), StrCpy(false), StrCpyChk(true) {
1470 initializeSimplifyLibCallsPass(*PassRegistry::getPassRegistry());
1471 }
Eli Friedman9d434db2011-11-17 01:27:36 +00001472 void AddOpt(LibFunc::Func F, LibCallOptimization* Opt);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001473 void InitOptimizations();
1474 bool runOnFunction(Function &F);
1475
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001476 void setDoesNotAccessMemory(Function &F);
1477 void setOnlyReadsMemory(Function &F);
1478 void setDoesNotThrow(Function &F);
1479 void setDoesNotCapture(Function &F, unsigned n);
1480 void setDoesNotAlias(Function &F, unsigned n);
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001481 bool doInitialization(Module &M);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001482
Chris Lattnere265ad82011-02-24 07:12:12 +00001483 void inferPrototypeAttributes(Function &F);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001484 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerafbf4832011-02-24 07:16:14 +00001485 AU.addRequired<TargetLibraryInfo>();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001486 }
1487 };
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001488} // end anonymous namespace.
1489
Chris Lattnerafbf4832011-02-24 07:16:14 +00001490char SimplifyLibCalls::ID = 0;
1491
1492INITIALIZE_PASS_BEGIN(SimplifyLibCalls, "simplify-libcalls",
1493 "Simplify well-known library calls", false, false)
1494INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfo)
1495INITIALIZE_PASS_END(SimplifyLibCalls, "simplify-libcalls",
1496 "Simplify well-known library calls", false, false)
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001497
1498// Public interface to the Simplify LibCalls pass.
1499FunctionPass *llvm::createSimplifyLibCallsPass() {
Eric Christopher37c8b862009-10-07 21:14:25 +00001500 return new SimplifyLibCalls();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001501}
1502
Eli Friedman9d434db2011-11-17 01:27:36 +00001503void SimplifyLibCalls::AddOpt(LibFunc::Func F, LibCallOptimization* Opt) {
1504 if (TLI->has(F))
1505 Optimizations[TLI->getName(F)] = Opt;
1506}
1507
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001508/// Optimizations - Populate the Optimizations map with all the optimizations
1509/// we know.
1510void SimplifyLibCalls::InitOptimizations() {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001511 // String and Memory LibCall Optimizations
1512 Optimizations["strcat"] = &StrCat;
Chris Lattnerf5b6bc72009-04-12 05:06:39 +00001513 Optimizations["strncat"] = &StrNCat;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001514 Optimizations["strchr"] = &StrChr;
Benjamin Kramer06f25cf2010-09-29 21:50:51 +00001515 Optimizations["strrchr"] = &StrRChr;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001516 Optimizations["strcmp"] = &StrCmp;
1517 Optimizations["strncmp"] = &StrNCmp;
1518 Optimizations["strcpy"] = &StrCpy;
Chris Lattnerf5b6bc72009-04-12 05:06:39 +00001519 Optimizations["strncpy"] = &StrNCpy;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001520 Optimizations["strlen"] = &StrLen;
Benjamin Kramer05f585e2010-09-29 23:52:12 +00001521 Optimizations["strpbrk"] = &StrPBrk;
Nick Lewycky4c498412009-02-13 15:31:46 +00001522 Optimizations["strtol"] = &StrTo;
1523 Optimizations["strtod"] = &StrTo;
1524 Optimizations["strtof"] = &StrTo;
1525 Optimizations["strtoul"] = &StrTo;
1526 Optimizations["strtoll"] = &StrTo;
1527 Optimizations["strtold"] = &StrTo;
1528 Optimizations["strtoull"] = &StrTo;
Benjamin Kramer9510a252010-09-30 00:58:35 +00001529 Optimizations["strspn"] = &StrSpn;
1530 Optimizations["strcspn"] = &StrCSpn;
Chris Lattner24604112009-12-16 09:32:05 +00001531 Optimizations["strstr"] = &StrStr;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001532 Optimizations["memcmp"] = &MemCmp;
Eli Friedman9d434db2011-11-17 01:27:36 +00001533 AddOpt(LibFunc::memcpy, &MemCpy);
Eli Friedmand83ae7d2008-11-30 08:32:11 +00001534 Optimizations["memmove"] = &MemMove;
Eli Friedman9d434db2011-11-17 01:27:36 +00001535 AddOpt(LibFunc::memset, &MemSet);
Eric Christopher37c8b862009-10-07 21:14:25 +00001536
Evan Cheng0289b412010-03-23 15:48:04 +00001537 // _chk variants of String and Memory LibCall Optimizations.
Evan Cheng0289b412010-03-23 15:48:04 +00001538 Optimizations["__strcpy_chk"] = &StrCpyChk;
1539
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001540 // Math Library Optimizations
1541 Optimizations["powf"] = &Pow;
1542 Optimizations["pow"] = &Pow;
1543 Optimizations["powl"] = &Pow;
Dale Johannesen53bfbbc2008-09-04 18:30:46 +00001544 Optimizations["llvm.pow.f32"] = &Pow;
1545 Optimizations["llvm.pow.f64"] = &Pow;
1546 Optimizations["llvm.pow.f80"] = &Pow;
1547 Optimizations["llvm.pow.f128"] = &Pow;
1548 Optimizations["llvm.pow.ppcf128"] = &Pow;
Chris Lattnere818f772008-05-02 18:43:35 +00001549 Optimizations["exp2l"] = &Exp2;
1550 Optimizations["exp2"] = &Exp2;
1551 Optimizations["exp2f"] = &Exp2;
Dale Johannesen53bfbbc2008-09-04 18:30:46 +00001552 Optimizations["llvm.exp2.ppcf128"] = &Exp2;
1553 Optimizations["llvm.exp2.f128"] = &Exp2;
1554 Optimizations["llvm.exp2.f80"] = &Exp2;
1555 Optimizations["llvm.exp2.f64"] = &Exp2;
1556 Optimizations["llvm.exp2.f32"] = &Exp2;
Eric Christopher37c8b862009-10-07 21:14:25 +00001557
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001558#ifdef HAVE_FLOORF
1559 Optimizations["floor"] = &UnaryDoubleFP;
1560#endif
1561#ifdef HAVE_CEILF
1562 Optimizations["ceil"] = &UnaryDoubleFP;
1563#endif
1564#ifdef HAVE_ROUNDF
1565 Optimizations["round"] = &UnaryDoubleFP;
1566#endif
1567#ifdef HAVE_RINTF
1568 Optimizations["rint"] = &UnaryDoubleFP;
1569#endif
1570#ifdef HAVE_NEARBYINTF
1571 Optimizations["nearbyint"] = &UnaryDoubleFP;
1572#endif
Eric Christopher37c8b862009-10-07 21:14:25 +00001573
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001574 // Integer Optimizations
1575 Optimizations["ffs"] = &FFS;
1576 Optimizations["ffsl"] = &FFS;
1577 Optimizations["ffsll"] = &FFS;
Chris Lattner313f0e62008-06-09 08:26:51 +00001578 Optimizations["abs"] = &Abs;
1579 Optimizations["labs"] = &Abs;
1580 Optimizations["llabs"] = &Abs;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001581 Optimizations["isdigit"] = &IsDigit;
1582 Optimizations["isascii"] = &IsAscii;
1583 Optimizations["toascii"] = &ToAscii;
Eric Christopher37c8b862009-10-07 21:14:25 +00001584
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001585 // Formatting and IO Optimizations
1586 Optimizations["sprintf"] = &SPrintF;
1587 Optimizations["printf"] = &PrintF;
Eli Friedman9d434db2011-11-17 01:27:36 +00001588 AddOpt(LibFunc::fwrite, &FWrite);
1589 AddOpt(LibFunc::fputs, &FPuts);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001590 Optimizations["fprintf"] = &FPrintF;
Anders Carlsson303023d2010-11-30 06:19:18 +00001591 Optimizations["puts"] = &Puts;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001592}
1593
1594
1595/// runOnFunction - Top level algorithm.
1596///
1597bool SimplifyLibCalls::runOnFunction(Function &F) {
Chris Lattnerafbf4832011-02-24 07:16:14 +00001598 TLI = &getAnalysis<TargetLibraryInfo>();
1599
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001600 if (Optimizations.empty())
1601 InitOptimizations();
Eric Christopher37c8b862009-10-07 21:14:25 +00001602
Dan Gohmanf14d9192009-08-18 00:48:13 +00001603 const TargetData *TD = getAnalysisIfAvailable<TargetData>();
Eric Christopher37c8b862009-10-07 21:14:25 +00001604
Owen Andersone922c022009-07-22 00:24:57 +00001605 IRBuilder<> Builder(F.getContext());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001606
1607 bool Changed = false;
1608 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
1609 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ) {
1610 // Ignore non-calls.
1611 CallInst *CI = dyn_cast<CallInst>(I++);
1612 if (!CI) continue;
Eric Christopher37c8b862009-10-07 21:14:25 +00001613
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001614 // Ignore indirect calls and calls to non-external functions.
1615 Function *Callee = CI->getCalledFunction();
1616 if (Callee == 0 || !Callee->isDeclaration() ||
1617 !(Callee->hasExternalLinkage() || Callee->hasDLLImportLinkage()))
1618 continue;
Eric Christopher37c8b862009-10-07 21:14:25 +00001619
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001620 // Ignore unknown calls.
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001621 LibCallOptimization *LCO = Optimizations.lookup(Callee->getName());
1622 if (!LCO) continue;
Eric Christopher37c8b862009-10-07 21:14:25 +00001623
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001624 // Set the builder to the instruction after the call.
1625 Builder.SetInsertPoint(BB, I);
Eric Christopher37c8b862009-10-07 21:14:25 +00001626
Devang Patela2ab3992011-03-09 21:27:52 +00001627 // Use debug location of CI for all new instructions.
1628 Builder.SetCurrentDebugLocation(CI->getDebugLoc());
1629
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001630 // Try to optimize this call.
Richard Osborne36498242011-03-03 13:17:51 +00001631 Value *Result = LCO->OptimizeCall(CI, TD, TLI, Builder);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001632 if (Result == 0) continue;
1633
David Greene6a6b90e2010-01-05 01:27:21 +00001634 DEBUG(dbgs() << "SimplifyLibCalls simplified: " << *CI;
1635 dbgs() << " into: " << *Result << "\n");
Eric Christopher37c8b862009-10-07 21:14:25 +00001636
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001637 // Something changed!
1638 Changed = true;
1639 ++NumSimplified;
Eric Christopher37c8b862009-10-07 21:14:25 +00001640
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001641 // Inspect the instruction after the call (which was potentially just
1642 // added) next.
1643 I = CI; ++I;
Eric Christopher37c8b862009-10-07 21:14:25 +00001644
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001645 if (CI != Result && !CI->use_empty()) {
1646 CI->replaceAllUsesWith(Result);
1647 if (!Result->hasName())
1648 Result->takeName(CI);
1649 }
1650 CI->eraseFromParent();
1651 }
1652 }
1653 return Changed;
1654}
1655
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001656// Utility methods for doInitialization.
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001657
1658void SimplifyLibCalls::setDoesNotAccessMemory(Function &F) {
1659 if (!F.doesNotAccessMemory()) {
1660 F.setDoesNotAccessMemory();
1661 ++NumAnnotated;
1662 Modified = true;
1663 }
1664}
1665void SimplifyLibCalls::setOnlyReadsMemory(Function &F) {
1666 if (!F.onlyReadsMemory()) {
1667 F.setOnlyReadsMemory();
1668 ++NumAnnotated;
1669 Modified = true;
1670 }
1671}
1672void SimplifyLibCalls::setDoesNotThrow(Function &F) {
1673 if (!F.doesNotThrow()) {
1674 F.setDoesNotThrow();
1675 ++NumAnnotated;
1676 Modified = true;
1677 }
1678}
1679void SimplifyLibCalls::setDoesNotCapture(Function &F, unsigned n) {
1680 if (!F.doesNotCapture(n)) {
1681 F.setDoesNotCapture(n);
1682 ++NumAnnotated;
1683 Modified = true;
1684 }
1685}
1686void SimplifyLibCalls::setDoesNotAlias(Function &F, unsigned n) {
1687 if (!F.doesNotAlias(n)) {
1688 F.setDoesNotAlias(n);
1689 ++NumAnnotated;
1690 Modified = true;
1691 }
1692}
1693
Chris Lattnere265ad82011-02-24 07:12:12 +00001694
1695void SimplifyLibCalls::inferPrototypeAttributes(Function &F) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001696 FunctionType *FTy = F.getFunctionType();
Chris Lattnere265ad82011-02-24 07:12:12 +00001697
1698 StringRef Name = F.getName();
1699 switch (Name[0]) {
1700 case 's':
1701 if (Name == "strlen") {
1702 if (FTy->getNumParams() != 1 || !FTy->getParamType(0)->isPointerTy())
1703 return;
1704 setOnlyReadsMemory(F);
1705 setDoesNotThrow(F);
1706 setDoesNotCapture(F, 1);
1707 } else if (Name == "strchr" ||
1708 Name == "strrchr") {
1709 if (FTy->getNumParams() != 2 ||
1710 !FTy->getParamType(0)->isPointerTy() ||
1711 !FTy->getParamType(1)->isIntegerTy())
1712 return;
1713 setOnlyReadsMemory(F);
1714 setDoesNotThrow(F);
1715 } else if (Name == "strcpy" ||
1716 Name == "stpcpy" ||
1717 Name == "strcat" ||
1718 Name == "strtol" ||
1719 Name == "strtod" ||
1720 Name == "strtof" ||
1721 Name == "strtoul" ||
1722 Name == "strtoll" ||
1723 Name == "strtold" ||
1724 Name == "strncat" ||
1725 Name == "strncpy" ||
1726 Name == "strtoull") {
1727 if (FTy->getNumParams() < 2 ||
1728 !FTy->getParamType(1)->isPointerTy())
1729 return;
1730 setDoesNotThrow(F);
1731 setDoesNotCapture(F, 2);
1732 } else if (Name == "strxfrm") {
1733 if (FTy->getNumParams() != 3 ||
1734 !FTy->getParamType(0)->isPointerTy() ||
1735 !FTy->getParamType(1)->isPointerTy())
1736 return;
1737 setDoesNotThrow(F);
1738 setDoesNotCapture(F, 1);
1739 setDoesNotCapture(F, 2);
1740 } else if (Name == "strcmp" ||
1741 Name == "strspn" ||
1742 Name == "strncmp" ||
1743 Name == "strcspn" ||
1744 Name == "strcoll" ||
1745 Name == "strcasecmp" ||
1746 Name == "strncasecmp") {
1747 if (FTy->getNumParams() < 2 ||
1748 !FTy->getParamType(0)->isPointerTy() ||
1749 !FTy->getParamType(1)->isPointerTy())
1750 return;
1751 setOnlyReadsMemory(F);
1752 setDoesNotThrow(F);
1753 setDoesNotCapture(F, 1);
1754 setDoesNotCapture(F, 2);
1755 } else if (Name == "strstr" ||
1756 Name == "strpbrk") {
1757 if (FTy->getNumParams() != 2 || !FTy->getParamType(1)->isPointerTy())
1758 return;
1759 setOnlyReadsMemory(F);
1760 setDoesNotThrow(F);
1761 setDoesNotCapture(F, 2);
1762 } else if (Name == "strtok" ||
1763 Name == "strtok_r") {
1764 if (FTy->getNumParams() < 2 || !FTy->getParamType(1)->isPointerTy())
1765 return;
1766 setDoesNotThrow(F);
1767 setDoesNotCapture(F, 2);
1768 } else if (Name == "scanf" ||
1769 Name == "setbuf" ||
1770 Name == "setvbuf") {
1771 if (FTy->getNumParams() < 1 || !FTy->getParamType(0)->isPointerTy())
1772 return;
1773 setDoesNotThrow(F);
1774 setDoesNotCapture(F, 1);
1775 } else if (Name == "strdup" ||
1776 Name == "strndup") {
1777 if (FTy->getNumParams() < 1 || !FTy->getReturnType()->isPointerTy() ||
1778 !FTy->getParamType(0)->isPointerTy())
1779 return;
1780 setDoesNotThrow(F);
1781 setDoesNotAlias(F, 0);
1782 setDoesNotCapture(F, 1);
1783 } else if (Name == "stat" ||
1784 Name == "sscanf" ||
1785 Name == "sprintf" ||
1786 Name == "statvfs") {
1787 if (FTy->getNumParams() < 2 ||
1788 !FTy->getParamType(0)->isPointerTy() ||
1789 !FTy->getParamType(1)->isPointerTy())
1790 return;
1791 setDoesNotThrow(F);
1792 setDoesNotCapture(F, 1);
1793 setDoesNotCapture(F, 2);
1794 } else if (Name == "snprintf") {
1795 if (FTy->getNumParams() != 3 ||
1796 !FTy->getParamType(0)->isPointerTy() ||
1797 !FTy->getParamType(2)->isPointerTy())
1798 return;
1799 setDoesNotThrow(F);
1800 setDoesNotCapture(F, 1);
1801 setDoesNotCapture(F, 3);
1802 } else if (Name == "setitimer") {
1803 if (FTy->getNumParams() != 3 ||
1804 !FTy->getParamType(1)->isPointerTy() ||
1805 !FTy->getParamType(2)->isPointerTy())
1806 return;
1807 setDoesNotThrow(F);
1808 setDoesNotCapture(F, 2);
1809 setDoesNotCapture(F, 3);
1810 } else if (Name == "system") {
1811 if (FTy->getNumParams() != 1 ||
1812 !FTy->getParamType(0)->isPointerTy())
1813 return;
1814 // May throw; "system" is a valid pthread cancellation point.
1815 setDoesNotCapture(F, 1);
1816 }
1817 break;
1818 case 'm':
1819 if (Name == "malloc") {
1820 if (FTy->getNumParams() != 1 ||
1821 !FTy->getReturnType()->isPointerTy())
1822 return;
1823 setDoesNotThrow(F);
1824 setDoesNotAlias(F, 0);
1825 } else if (Name == "memcmp") {
1826 if (FTy->getNumParams() != 3 ||
1827 !FTy->getParamType(0)->isPointerTy() ||
1828 !FTy->getParamType(1)->isPointerTy())
1829 return;
1830 setOnlyReadsMemory(F);
1831 setDoesNotThrow(F);
1832 setDoesNotCapture(F, 1);
1833 setDoesNotCapture(F, 2);
1834 } else if (Name == "memchr" ||
1835 Name == "memrchr") {
1836 if (FTy->getNumParams() != 3)
1837 return;
1838 setOnlyReadsMemory(F);
1839 setDoesNotThrow(F);
1840 } else if (Name == "modf" ||
1841 Name == "modff" ||
1842 Name == "modfl" ||
1843 Name == "memcpy" ||
1844 Name == "memccpy" ||
1845 Name == "memmove") {
1846 if (FTy->getNumParams() < 2 ||
1847 !FTy->getParamType(1)->isPointerTy())
1848 return;
1849 setDoesNotThrow(F);
1850 setDoesNotCapture(F, 2);
1851 } else if (Name == "memalign") {
1852 if (!FTy->getReturnType()->isPointerTy())
1853 return;
1854 setDoesNotAlias(F, 0);
1855 } else if (Name == "mkdir" ||
1856 Name == "mktime") {
1857 if (FTy->getNumParams() == 0 ||
1858 !FTy->getParamType(0)->isPointerTy())
1859 return;
1860 setDoesNotThrow(F);
1861 setDoesNotCapture(F, 1);
1862 }
1863 break;
1864 case 'r':
1865 if (Name == "realloc") {
1866 if (FTy->getNumParams() != 2 ||
1867 !FTy->getParamType(0)->isPointerTy() ||
1868 !FTy->getReturnType()->isPointerTy())
1869 return;
1870 setDoesNotThrow(F);
1871 setDoesNotAlias(F, 0);
1872 setDoesNotCapture(F, 1);
1873 } else if (Name == "read") {
1874 if (FTy->getNumParams() != 3 ||
1875 !FTy->getParamType(1)->isPointerTy())
1876 return;
1877 // May throw; "read" is a valid pthread cancellation point.
1878 setDoesNotCapture(F, 2);
1879 } else if (Name == "rmdir" ||
1880 Name == "rewind" ||
1881 Name == "remove" ||
1882 Name == "realpath") {
1883 if (FTy->getNumParams() < 1 ||
1884 !FTy->getParamType(0)->isPointerTy())
1885 return;
1886 setDoesNotThrow(F);
1887 setDoesNotCapture(F, 1);
1888 } else if (Name == "rename" ||
1889 Name == "readlink") {
1890 if (FTy->getNumParams() < 2 ||
1891 !FTy->getParamType(0)->isPointerTy() ||
1892 !FTy->getParamType(1)->isPointerTy())
1893 return;
1894 setDoesNotThrow(F);
1895 setDoesNotCapture(F, 1);
1896 setDoesNotCapture(F, 2);
1897 }
1898 break;
1899 case 'w':
1900 if (Name == "write") {
1901 if (FTy->getNumParams() != 3 || !FTy->getParamType(1)->isPointerTy())
1902 return;
1903 // May throw; "write" is a valid pthread cancellation point.
1904 setDoesNotCapture(F, 2);
1905 }
1906 break;
1907 case 'b':
1908 if (Name == "bcopy") {
1909 if (FTy->getNumParams() != 3 ||
1910 !FTy->getParamType(0)->isPointerTy() ||
1911 !FTy->getParamType(1)->isPointerTy())
1912 return;
1913 setDoesNotThrow(F);
1914 setDoesNotCapture(F, 1);
1915 setDoesNotCapture(F, 2);
1916 } else if (Name == "bcmp") {
1917 if (FTy->getNumParams() != 3 ||
1918 !FTy->getParamType(0)->isPointerTy() ||
1919 !FTy->getParamType(1)->isPointerTy())
1920 return;
1921 setDoesNotThrow(F);
1922 setOnlyReadsMemory(F);
1923 setDoesNotCapture(F, 1);
1924 setDoesNotCapture(F, 2);
1925 } else if (Name == "bzero") {
1926 if (FTy->getNumParams() != 2 || !FTy->getParamType(0)->isPointerTy())
1927 return;
1928 setDoesNotThrow(F);
1929 setDoesNotCapture(F, 1);
1930 }
1931 break;
1932 case 'c':
1933 if (Name == "calloc") {
1934 if (FTy->getNumParams() != 2 ||
1935 !FTy->getReturnType()->isPointerTy())
1936 return;
1937 setDoesNotThrow(F);
1938 setDoesNotAlias(F, 0);
1939 } else if (Name == "chmod" ||
1940 Name == "chown" ||
1941 Name == "ctermid" ||
1942 Name == "clearerr" ||
1943 Name == "closedir") {
1944 if (FTy->getNumParams() == 0 || !FTy->getParamType(0)->isPointerTy())
1945 return;
1946 setDoesNotThrow(F);
1947 setDoesNotCapture(F, 1);
1948 }
1949 break;
1950 case 'a':
1951 if (Name == "atoi" ||
1952 Name == "atol" ||
1953 Name == "atof" ||
1954 Name == "atoll") {
1955 if (FTy->getNumParams() != 1 || !FTy->getParamType(0)->isPointerTy())
1956 return;
1957 setDoesNotThrow(F);
1958 setOnlyReadsMemory(F);
1959 setDoesNotCapture(F, 1);
1960 } else if (Name == "access") {
1961 if (FTy->getNumParams() != 2 || !FTy->getParamType(0)->isPointerTy())
1962 return;
1963 setDoesNotThrow(F);
1964 setDoesNotCapture(F, 1);
1965 }
1966 break;
1967 case 'f':
1968 if (Name == "fopen") {
1969 if (FTy->getNumParams() != 2 ||
1970 !FTy->getReturnType()->isPointerTy() ||
1971 !FTy->getParamType(0)->isPointerTy() ||
1972 !FTy->getParamType(1)->isPointerTy())
1973 return;
1974 setDoesNotThrow(F);
1975 setDoesNotAlias(F, 0);
1976 setDoesNotCapture(F, 1);
1977 setDoesNotCapture(F, 2);
1978 } else if (Name == "fdopen") {
1979 if (FTy->getNumParams() != 2 ||
1980 !FTy->getReturnType()->isPointerTy() ||
1981 !FTy->getParamType(1)->isPointerTy())
1982 return;
1983 setDoesNotThrow(F);
1984 setDoesNotAlias(F, 0);
1985 setDoesNotCapture(F, 2);
1986 } else if (Name == "feof" ||
1987 Name == "free" ||
1988 Name == "fseek" ||
1989 Name == "ftell" ||
1990 Name == "fgetc" ||
1991 Name == "fseeko" ||
1992 Name == "ftello" ||
1993 Name == "fileno" ||
1994 Name == "fflush" ||
1995 Name == "fclose" ||
1996 Name == "fsetpos" ||
1997 Name == "flockfile" ||
1998 Name == "funlockfile" ||
1999 Name == "ftrylockfile") {
2000 if (FTy->getNumParams() == 0 || !FTy->getParamType(0)->isPointerTy())
2001 return;
2002 setDoesNotThrow(F);
2003 setDoesNotCapture(F, 1);
2004 } else if (Name == "ferror") {
2005 if (FTy->getNumParams() != 1 || !FTy->getParamType(0)->isPointerTy())
2006 return;
2007 setDoesNotThrow(F);
2008 setDoesNotCapture(F, 1);
2009 setOnlyReadsMemory(F);
2010 } else if (Name == "fputc" ||
2011 Name == "fstat" ||
2012 Name == "frexp" ||
2013 Name == "frexpf" ||
2014 Name == "frexpl" ||
2015 Name == "fstatvfs") {
2016 if (FTy->getNumParams() != 2 || !FTy->getParamType(1)->isPointerTy())
2017 return;
2018 setDoesNotThrow(F);
2019 setDoesNotCapture(F, 2);
2020 } else if (Name == "fgets") {
2021 if (FTy->getNumParams() != 3 ||
2022 !FTy->getParamType(0)->isPointerTy() ||
2023 !FTy->getParamType(2)->isPointerTy())
2024 return;
2025 setDoesNotThrow(F);
2026 setDoesNotCapture(F, 3);
2027 } else if (Name == "fread" ||
2028 Name == "fwrite") {
2029 if (FTy->getNumParams() != 4 ||
2030 !FTy->getParamType(0)->isPointerTy() ||
2031 !FTy->getParamType(3)->isPointerTy())
2032 return;
2033 setDoesNotThrow(F);
2034 setDoesNotCapture(F, 1);
2035 setDoesNotCapture(F, 4);
2036 } else if (Name == "fputs" ||
2037 Name == "fscanf" ||
2038 Name == "fprintf" ||
2039 Name == "fgetpos") {
2040 if (FTy->getNumParams() < 2 ||
2041 !FTy->getParamType(0)->isPointerTy() ||
2042 !FTy->getParamType(1)->isPointerTy())
2043 return;
2044 setDoesNotThrow(F);
2045 setDoesNotCapture(F, 1);
2046 setDoesNotCapture(F, 2);
2047 }
2048 break;
2049 case 'g':
2050 if (Name == "getc" ||
2051 Name == "getlogin_r" ||
2052 Name == "getc_unlocked") {
2053 if (FTy->getNumParams() == 0 || !FTy->getParamType(0)->isPointerTy())
2054 return;
2055 setDoesNotThrow(F);
2056 setDoesNotCapture(F, 1);
2057 } else if (Name == "getenv") {
2058 if (FTy->getNumParams() != 1 || !FTy->getParamType(0)->isPointerTy())
2059 return;
2060 setDoesNotThrow(F);
2061 setOnlyReadsMemory(F);
2062 setDoesNotCapture(F, 1);
2063 } else if (Name == "gets" ||
2064 Name == "getchar") {
2065 setDoesNotThrow(F);
2066 } else if (Name == "getitimer") {
2067 if (FTy->getNumParams() != 2 || !FTy->getParamType(1)->isPointerTy())
2068 return;
2069 setDoesNotThrow(F);
2070 setDoesNotCapture(F, 2);
2071 } else if (Name == "getpwnam") {
2072 if (FTy->getNumParams() != 1 || !FTy->getParamType(0)->isPointerTy())
2073 return;
2074 setDoesNotThrow(F);
2075 setDoesNotCapture(F, 1);
2076 }
2077 break;
2078 case 'u':
2079 if (Name == "ungetc") {
2080 if (FTy->getNumParams() != 2 || !FTy->getParamType(1)->isPointerTy())
2081 return;
2082 setDoesNotThrow(F);
2083 setDoesNotCapture(F, 2);
2084 } else if (Name == "uname" ||
2085 Name == "unlink" ||
2086 Name == "unsetenv") {
2087 if (FTy->getNumParams() != 1 || !FTy->getParamType(0)->isPointerTy())
2088 return;
2089 setDoesNotThrow(F);
2090 setDoesNotCapture(F, 1);
2091 } else if (Name == "utime" ||
2092 Name == "utimes") {
2093 if (FTy->getNumParams() != 2 ||
2094 !FTy->getParamType(0)->isPointerTy() ||
2095 !FTy->getParamType(1)->isPointerTy())
2096 return;
2097 setDoesNotThrow(F);
2098 setDoesNotCapture(F, 1);
2099 setDoesNotCapture(F, 2);
2100 }
2101 break;
2102 case 'p':
2103 if (Name == "putc") {
2104 if (FTy->getNumParams() != 2 || !FTy->getParamType(1)->isPointerTy())
2105 return;
2106 setDoesNotThrow(F);
2107 setDoesNotCapture(F, 2);
2108 } else if (Name == "puts" ||
2109 Name == "printf" ||
2110 Name == "perror") {
2111 if (FTy->getNumParams() != 1 || !FTy->getParamType(0)->isPointerTy())
2112 return;
2113 setDoesNotThrow(F);
2114 setDoesNotCapture(F, 1);
2115 } else if (Name == "pread" ||
2116 Name == "pwrite") {
2117 if (FTy->getNumParams() != 4 || !FTy->getParamType(1)->isPointerTy())
2118 return;
2119 // May throw; these are valid pthread cancellation points.
2120 setDoesNotCapture(F, 2);
2121 } else if (Name == "putchar") {
2122 setDoesNotThrow(F);
2123 } else if (Name == "popen") {
2124 if (FTy->getNumParams() != 2 ||
2125 !FTy->getReturnType()->isPointerTy() ||
2126 !FTy->getParamType(0)->isPointerTy() ||
2127 !FTy->getParamType(1)->isPointerTy())
2128 return;
2129 setDoesNotThrow(F);
2130 setDoesNotAlias(F, 0);
2131 setDoesNotCapture(F, 1);
2132 setDoesNotCapture(F, 2);
2133 } else if (Name == "pclose") {
2134 if (FTy->getNumParams() != 1 || !FTy->getParamType(0)->isPointerTy())
2135 return;
2136 setDoesNotThrow(F);
2137 setDoesNotCapture(F, 1);
2138 }
2139 break;
2140 case 'v':
2141 if (Name == "vscanf") {
2142 if (FTy->getNumParams() != 2 || !FTy->getParamType(1)->isPointerTy())
2143 return;
2144 setDoesNotThrow(F);
2145 setDoesNotCapture(F, 1);
2146 } else if (Name == "vsscanf" ||
2147 Name == "vfscanf") {
2148 if (FTy->getNumParams() != 3 ||
2149 !FTy->getParamType(1)->isPointerTy() ||
2150 !FTy->getParamType(2)->isPointerTy())
2151 return;
2152 setDoesNotThrow(F);
2153 setDoesNotCapture(F, 1);
2154 setDoesNotCapture(F, 2);
2155 } else if (Name == "valloc") {
2156 if (!FTy->getReturnType()->isPointerTy())
2157 return;
2158 setDoesNotThrow(F);
2159 setDoesNotAlias(F, 0);
2160 } else if (Name == "vprintf") {
2161 if (FTy->getNumParams() != 2 || !FTy->getParamType(0)->isPointerTy())
2162 return;
2163 setDoesNotThrow(F);
2164 setDoesNotCapture(F, 1);
2165 } else if (Name == "vfprintf" ||
2166 Name == "vsprintf") {
2167 if (FTy->getNumParams() != 3 ||
2168 !FTy->getParamType(0)->isPointerTy() ||
2169 !FTy->getParamType(1)->isPointerTy())
2170 return;
2171 setDoesNotThrow(F);
2172 setDoesNotCapture(F, 1);
2173 setDoesNotCapture(F, 2);
2174 } else if (Name == "vsnprintf") {
2175 if (FTy->getNumParams() != 4 ||
2176 !FTy->getParamType(0)->isPointerTy() ||
2177 !FTy->getParamType(2)->isPointerTy())
2178 return;
2179 setDoesNotThrow(F);
2180 setDoesNotCapture(F, 1);
2181 setDoesNotCapture(F, 3);
2182 }
2183 break;
2184 case 'o':
2185 if (Name == "open") {
2186 if (FTy->getNumParams() < 2 || !FTy->getParamType(0)->isPointerTy())
2187 return;
2188 // May throw; "open" is a valid pthread cancellation point.
2189 setDoesNotCapture(F, 1);
2190 } else if (Name == "opendir") {
2191 if (FTy->getNumParams() != 1 ||
2192 !FTy->getReturnType()->isPointerTy() ||
2193 !FTy->getParamType(0)->isPointerTy())
2194 return;
2195 setDoesNotThrow(F);
2196 setDoesNotAlias(F, 0);
2197 setDoesNotCapture(F, 1);
2198 }
2199 break;
2200 case 't':
2201 if (Name == "tmpfile") {
2202 if (!FTy->getReturnType()->isPointerTy())
2203 return;
2204 setDoesNotThrow(F);
2205 setDoesNotAlias(F, 0);
2206 } else if (Name == "times") {
2207 if (FTy->getNumParams() != 1 || !FTy->getParamType(0)->isPointerTy())
2208 return;
2209 setDoesNotThrow(F);
2210 setDoesNotCapture(F, 1);
2211 }
2212 break;
2213 case 'h':
2214 if (Name == "htonl" ||
2215 Name == "htons") {
2216 setDoesNotThrow(F);
2217 setDoesNotAccessMemory(F);
2218 }
2219 break;
2220 case 'n':
2221 if (Name == "ntohl" ||
2222 Name == "ntohs") {
2223 setDoesNotThrow(F);
2224 setDoesNotAccessMemory(F);
2225 }
2226 break;
2227 case 'l':
2228 if (Name == "lstat") {
2229 if (FTy->getNumParams() != 2 ||
2230 !FTy->getParamType(0)->isPointerTy() ||
2231 !FTy->getParamType(1)->isPointerTy())
2232 return;
2233 setDoesNotThrow(F);
2234 setDoesNotCapture(F, 1);
2235 setDoesNotCapture(F, 2);
2236 } else if (Name == "lchown") {
2237 if (FTy->getNumParams() != 3 || !FTy->getParamType(0)->isPointerTy())
2238 return;
2239 setDoesNotThrow(F);
2240 setDoesNotCapture(F, 1);
2241 }
2242 break;
2243 case 'q':
2244 if (Name == "qsort") {
2245 if (FTy->getNumParams() != 4 || !FTy->getParamType(3)->isPointerTy())
2246 return;
2247 // May throw; places call through function pointer.
2248 setDoesNotCapture(F, 4);
2249 }
2250 break;
2251 case '_':
2252 if (Name == "__strdup" ||
2253 Name == "__strndup") {
2254 if (FTy->getNumParams() < 1 ||
2255 !FTy->getReturnType()->isPointerTy() ||
2256 !FTy->getParamType(0)->isPointerTy())
2257 return;
2258 setDoesNotThrow(F);
2259 setDoesNotAlias(F, 0);
2260 setDoesNotCapture(F, 1);
2261 } else if (Name == "__strtok_r") {
2262 if (FTy->getNumParams() != 3 ||
2263 !FTy->getParamType(1)->isPointerTy())
2264 return;
2265 setDoesNotThrow(F);
2266 setDoesNotCapture(F, 2);
2267 } else if (Name == "_IO_getc") {
2268 if (FTy->getNumParams() != 1 || !FTy->getParamType(0)->isPointerTy())
2269 return;
2270 setDoesNotThrow(F);
2271 setDoesNotCapture(F, 1);
2272 } else if (Name == "_IO_putc") {
2273 if (FTy->getNumParams() != 2 || !FTy->getParamType(1)->isPointerTy())
2274 return;
2275 setDoesNotThrow(F);
2276 setDoesNotCapture(F, 2);
2277 }
2278 break;
2279 case 1:
2280 if (Name == "\1__isoc99_scanf") {
2281 if (FTy->getNumParams() < 1 ||
2282 !FTy->getParamType(0)->isPointerTy())
2283 return;
2284 setDoesNotThrow(F);
2285 setDoesNotCapture(F, 1);
2286 } else if (Name == "\1stat64" ||
2287 Name == "\1lstat64" ||
2288 Name == "\1statvfs64" ||
2289 Name == "\1__isoc99_sscanf") {
2290 if (FTy->getNumParams() < 1 ||
2291 !FTy->getParamType(0)->isPointerTy() ||
2292 !FTy->getParamType(1)->isPointerTy())
2293 return;
2294 setDoesNotThrow(F);
2295 setDoesNotCapture(F, 1);
2296 setDoesNotCapture(F, 2);
2297 } else if (Name == "\1fopen64") {
2298 if (FTy->getNumParams() != 2 ||
2299 !FTy->getReturnType()->isPointerTy() ||
2300 !FTy->getParamType(0)->isPointerTy() ||
2301 !FTy->getParamType(1)->isPointerTy())
2302 return;
2303 setDoesNotThrow(F);
2304 setDoesNotAlias(F, 0);
2305 setDoesNotCapture(F, 1);
2306 setDoesNotCapture(F, 2);
2307 } else if (Name == "\1fseeko64" ||
2308 Name == "\1ftello64") {
2309 if (FTy->getNumParams() == 0 || !FTy->getParamType(0)->isPointerTy())
2310 return;
2311 setDoesNotThrow(F);
2312 setDoesNotCapture(F, 1);
2313 } else if (Name == "\1tmpfile64") {
2314 if (!FTy->getReturnType()->isPointerTy())
2315 return;
2316 setDoesNotThrow(F);
2317 setDoesNotAlias(F, 0);
2318 } else if (Name == "\1fstat64" ||
2319 Name == "\1fstatvfs64") {
2320 if (FTy->getNumParams() != 2 || !FTy->getParamType(1)->isPointerTy())
2321 return;
2322 setDoesNotThrow(F);
2323 setDoesNotCapture(F, 2);
2324 } else if (Name == "\1open64") {
2325 if (FTy->getNumParams() < 2 || !FTy->getParamType(0)->isPointerTy())
2326 return;
2327 // May throw; "open" is a valid pthread cancellation point.
2328 setDoesNotCapture(F, 1);
2329 }
2330 break;
2331 }
2332}
2333
Nick Lewycky6cd0c042009-01-05 00:07:50 +00002334/// doInitialization - Add attributes to well-known functions.
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002335///
Nick Lewycky6cd0c042009-01-05 00:07:50 +00002336bool SimplifyLibCalls::doInitialization(Module &M) {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002337 Modified = false;
2338 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
2339 Function &F = *I;
Chris Lattnere265ad82011-02-24 07:12:12 +00002340 if (F.isDeclaration() && F.hasName())
2341 inferPrototypeAttributes(F);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002342 }
2343 return Modified;
2344}
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002345
2346// TODO:
2347// Additional cases that we need to add to this file:
2348//
2349// cbrt:
2350// * cbrt(expN(X)) -> expN(x/3)
2351// * cbrt(sqrt(x)) -> pow(x,1/6)
2352// * cbrt(sqrt(x)) -> pow(x,1/9)
2353//
2354// cos, cosf, cosl:
2355// * cos(-x) -> cos(x)
2356//
2357// exp, expf, expl:
2358// * exp(log(x)) -> x
2359//
2360// log, logf, logl:
2361// * log(exp(x)) -> x
2362// * log(x**y) -> y*log(x)
2363// * log(exp(y)) -> y*log(e)
2364// * log(exp2(y)) -> y*log(2)
2365// * log(exp10(y)) -> y*log(10)
2366// * log(sqrt(x)) -> 0.5*log(x)
2367// * log(pow(x,y)) -> y*log(x)
2368//
2369// lround, lroundf, lroundl:
2370// * lround(cnst) -> cnst'
2371//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002372// pow, powf, powl:
2373// * pow(exp(x),y) -> exp(x*y)
2374// * pow(sqrt(x),y) -> pow(x,y*0.5)
2375// * pow(pow(x,y),z)-> pow(x,y*z)
2376//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002377// round, roundf, roundl:
2378// * round(cnst) -> cnst'
2379//
2380// signbit:
2381// * signbit(cnst) -> cnst'
2382// * signbit(nncst) -> 0 (if pstv is a non-negative constant)
2383//
2384// sqrt, sqrtf, sqrtl:
2385// * sqrt(expN(x)) -> expN(x*0.5)
2386// * sqrt(Nroot(x)) -> pow(x,1/(2*N))
2387// * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
2388//
2389// stpcpy:
2390// * stpcpy(str, "literal") ->
2391// llvm.memcpy(str,"literal",strlen("literal")+1,1)
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002392//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002393// tan, tanf, tanl:
2394// * tan(atan(x)) -> x
2395//
2396// trunc, truncf, truncl:
2397// * trunc(cnst) -> cnst'
2398//
2399//