blob: b47705888325b7deaf08f1847c47e33f4fa7238c [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"
28#include "llvm/ADT/SmallPtrSet.h"
29#include "llvm/ADT/StringMap.h"
30#include "llvm/ADT/Statistic.h"
Daniel Dunbar473955f2009-07-29 22:00:43 +000031#include "llvm/ADT/STLExtras.h"
Chris Lattner56b4f2b2008-05-01 06:39:12 +000032#include "llvm/Support/Debug.h"
Daniel Dunbarf0443c12009-07-26 08:34:35 +000033#include "llvm/Support/raw_ostream.h"
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000034#include "llvm/Config/config.h"
35using namespace llvm;
36
37STATISTIC(NumSimplified, "Number of library calls simplified");
Nick Lewycky0f8df9a2009-01-04 20:27:34 +000038STATISTIC(NumAnnotated, "Number of attributes added to library functions");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000039
40//===----------------------------------------------------------------------===//
41// Optimizer Base Class
42//===----------------------------------------------------------------------===//
43
44/// This class is the abstract base class for the set of optimizations that
45/// corresponds to one library call.
46namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +000047class LibCallOptimization {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000048protected:
49 Function *Caller;
50 const TargetData *TD;
Owen Andersonfa5cbd62009-07-03 19:42:02 +000051 LLVMContext* Context;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000052public:
Evan Chengeb8c6452010-03-24 20:19:04 +000053 LibCallOptimization() { }
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000054 virtual ~LibCallOptimization() {}
55
56 /// CallOptimizer - This pure virtual method is implemented by base classes to
57 /// do various optimizations. If this returns null then no transformation was
58 /// performed. If it returns CI, then it transformed the call and CI is to be
59 /// deleted. If it returns something else, replace CI with the new value and
60 /// delete CI.
Eric Christopher37c8b862009-10-07 21:14:25 +000061 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B)
Eric Christopher7a61d702008-08-08 19:39:37 +000062 =0;
Eric Christopher37c8b862009-10-07 21:14:25 +000063
Dan Gohmanf14d9192009-08-18 00:48:13 +000064 Value *OptimizeCall(CallInst *CI, const TargetData *TD, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000065 Caller = CI->getParent()->getParent();
Dan Gohmanf14d9192009-08-18 00:48:13 +000066 this->TD = TD;
Owen Andersonfa5cbd62009-07-03 19:42:02 +000067 if (CI->getCalledFunction())
Owen Andersone922c022009-07-22 00:24:57 +000068 Context = &CI->getCalledFunction()->getContext();
Rafael Espindolae96af562010-06-16 19:34:01 +000069
70 // We never change the calling convention.
71 if (CI->getCallingConv() != llvm::CallingConv::C)
72 return NULL;
73
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000074 return CallOptimizer(CI->getCalledFunction(), CI, B);
75 }
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000076};
77} // End anonymous namespace.
78
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000079
80//===----------------------------------------------------------------------===//
81// Helper Functions
82//===----------------------------------------------------------------------===//
83
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000084/// IsOnlyUsedInZeroEqualityComparison - Return true if it only matters that the
Eric Christopher37c8b862009-10-07 21:14:25 +000085/// value is equal or not-equal to zero.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000086static bool IsOnlyUsedInZeroEqualityComparison(Value *V) {
87 for (Value::use_iterator UI = V->use_begin(), E = V->use_end();
88 UI != E; ++UI) {
89 if (ICmpInst *IC = dyn_cast<ICmpInst>(*UI))
90 if (IC->isEquality())
91 if (Constant *C = dyn_cast<Constant>(IC->getOperand(1)))
92 if (C->isNullValue())
93 continue;
94 // Unknown instruction.
95 return false;
96 }
97 return true;
98}
99
Benjamin Kramer386e9182010-06-15 21:34:25 +0000100/// IsOnlyUsedInEqualityComparison - Return true if it is only used in equality
101/// comparisons with With.
102static bool IsOnlyUsedInEqualityComparison(Value *V, Value *With) {
103 for (Value::use_iterator UI = V->use_begin(), E = V->use_end();
104 UI != E; ++UI) {
105 if (ICmpInst *IC = dyn_cast<ICmpInst>(*UI))
106 if (IC->isEquality() && IC->getOperand(1) == With)
107 continue;
108 // Unknown instruction.
109 return false;
110 }
111 return true;
112}
113
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000114//===----------------------------------------------------------------------===//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000115// String and Memory LibCall Optimizations
116//===----------------------------------------------------------------------===//
117
118//===---------------------------------------===//
119// 'strcat' Optimizations
Chris Lattnere9f9a7e2009-09-03 05:19:59 +0000120namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +0000121struct StrCatOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000122 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000123 // Verify the "strcat" function prototype.
124 const FunctionType *FT = Callee->getFunctionType();
125 if (FT->getNumParams() != 2 ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000126 FT->getReturnType() != Type::getInt8PtrTy(*Context) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000127 FT->getParamType(0) != FT->getReturnType() ||
128 FT->getParamType(1) != FT->getReturnType())
129 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000130
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000131 // Extract some information from the instruction
Gabor Greifaee5dc12010-06-24 10:42:46 +0000132 Value *Dst = CI->getArgOperand(0);
133 Value *Src = CI->getArgOperand(1);
Eric Christopher37c8b862009-10-07 21:14:25 +0000134
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000135 // See if we can get the length of the input string.
136 uint64_t Len = GetStringLength(Src);
Chris Lattner56b4f2b2008-05-01 06:39:12 +0000137 if (Len == 0) return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000138 --Len; // Unbias length.
Eric Christopher37c8b862009-10-07 21:14:25 +0000139
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000140 // Handle the simple, do-nothing case: strcat(x, "") -> x
141 if (Len == 0)
142 return Dst;
Dan Gohmanf14d9192009-08-18 00:48:13 +0000143
144 // These optimizations require TargetData.
145 if (!TD) return 0;
146
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000147 EmitStrLenMemCpy(Src, Dst, Len, B);
148 return Dst;
149 }
150
151 void EmitStrLenMemCpy(Value *Src, Value *Dst, uint64_t Len, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000152 // We need to find the end of the destination string. That's where the
153 // memory is to be moved to. We just generate a call to strlen.
Eric Christopherb6174e32010-03-05 22:25:30 +0000154 Value *DstLen = EmitStrLen(Dst, B, TD);
Eric Christopher37c8b862009-10-07 21:14:25 +0000155
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000156 // Now that we have the destination's length, we must index into the
157 // destination's pointer to get the actual memcpy destination (end of
158 // the string .. we're concatenating).
Ed Schoutenb5e0a962009-04-06 13:06:48 +0000159 Value *CpyDst = B.CreateGEP(Dst, DstLen, "endptr");
Eric Christopher37c8b862009-10-07 21:14:25 +0000160
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000161 // We have enough information to now generate the memcpy call to do the
162 // concatenation for us. Make a memcpy to copy the nul byte with align = 1.
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000163 EmitMemCpy(CpyDst, Src,
Mon P Wang20adc9d2010-04-04 03:10:48 +0000164 ConstantInt::get(TD->getIntPtrType(*Context), Len+1),
165 1, false, B, TD);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000166 }
167};
168
169//===---------------------------------------===//
170// 'strncat' Optimizations
171
Chris Lattner3e8b6632009-09-02 06:11:42 +0000172struct StrNCatOpt : public StrCatOpt {
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000173 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
174 // Verify the "strncat" function prototype.
175 const FunctionType *FT = Callee->getFunctionType();
176 if (FT->getNumParams() != 3 ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000177 FT->getReturnType() != Type::getInt8PtrTy(*Context) ||
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000178 FT->getParamType(0) != FT->getReturnType() ||
179 FT->getParamType(1) != FT->getReturnType() ||
Duncan Sands1df98592010-02-16 11:11:14 +0000180 !FT->getParamType(2)->isIntegerTy())
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000181 return 0;
182
183 // Extract some information from the instruction
Gabor Greifaee5dc12010-06-24 10:42:46 +0000184 Value *Dst = CI->getArgOperand(0);
185 Value *Src = CI->getArgOperand(1);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000186 uint64_t Len;
187
188 // We don't do anything if length is not constant
Gabor Greifaee5dc12010-06-24 10:42:46 +0000189 if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(CI->getArgOperand(2)))
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000190 Len = LengthArg->getZExtValue();
191 else
192 return 0;
193
194 // See if we can get the length of the input string.
195 uint64_t SrcLen = GetStringLength(Src);
196 if (SrcLen == 0) return 0;
197 --SrcLen; // Unbias length.
198
199 // Handle the simple, do-nothing cases:
200 // strncat(x, "", c) -> x
201 // strncat(x, c, 0) -> x
202 if (SrcLen == 0 || Len == 0) return Dst;
203
Dan Gohmanf14d9192009-08-18 00:48:13 +0000204 // These optimizations require TargetData.
205 if (!TD) return 0;
206
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000207 // We don't optimize this case
208 if (Len < SrcLen) return 0;
209
210 // strncat(x, s, c) -> strcat(x, s)
211 // s is constant so the strcat can be optimized further
Chris Lattner5db4cdf2009-04-12 18:22:33 +0000212 EmitStrLenMemCpy(Src, Dst, SrcLen, B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000213 return Dst;
214 }
215};
216
217//===---------------------------------------===//
218// 'strchr' Optimizations
219
Chris Lattner3e8b6632009-09-02 06:11:42 +0000220struct StrChrOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000221 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000222 // Verify the "strchr" function prototype.
223 const FunctionType *FT = Callee->getFunctionType();
224 if (FT->getNumParams() != 2 ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000225 FT->getReturnType() != Type::getInt8PtrTy(*Context) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000226 FT->getParamType(0) != FT->getReturnType())
227 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000228
Gabor Greifaee5dc12010-06-24 10:42:46 +0000229 Value *SrcStr = CI->getArgOperand(0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000230
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000231 // If the second operand is non-constant, see if we can compute the length
232 // of the input string and turn this into memchr.
Gabor Greifaee5dc12010-06-24 10:42:46 +0000233 ConstantInt *CharC = dyn_cast<ConstantInt>(CI->getArgOperand(1));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000234 if (CharC == 0) {
Dan Gohmanf14d9192009-08-18 00:48:13 +0000235 // These optimizations require TargetData.
236 if (!TD) return 0;
237
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000238 uint64_t Len = GetStringLength(SrcStr);
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000239 if (Len == 0 || !FT->getParamType(1)->isIntegerTy(32))// memchr needs i32.
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 return EmitMemChr(SrcStr, CI->getArgOperand(1), // include nul.
Eric Christopherb6174e32010-03-05 22:25:30 +0000243 ConstantInt::get(TD->getIntPtrType(*Context), Len),
244 B, TD);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000245 }
246
247 // Otherwise, the character is a constant, see if the first argument is
248 // a string literal. If so, we can constant fold.
Bill Wendling0582ae92009-03-13 04:39:26 +0000249 std::string Str;
250 if (!GetConstantStringInfo(SrcStr, Str))
Chris Lattner56b4f2b2008-05-01 06:39:12 +0000251 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000252
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000253 // strchr can find the nul character.
254 Str += '\0';
255 char CharValue = CharC->getSExtValue();
Eric Christopher37c8b862009-10-07 21:14:25 +0000256
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000257 // Compute the offset.
258 uint64_t i = 0;
259 while (1) {
260 if (i == Str.size()) // Didn't find the char. strchr returns null.
Owen Andersona7235ea2009-07-31 20:28:14 +0000261 return Constant::getNullValue(CI->getType());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000262 // Did we find our match?
263 if (Str[i] == CharValue)
264 break;
265 ++i;
266 }
Eric Christopher37c8b862009-10-07 21:14:25 +0000267
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000268 // strchr(s+n,c) -> gep(s+n+i,c)
Owen Anderson1d0be152009-08-13 21:58:54 +0000269 Value *Idx = ConstantInt::get(Type::getInt64Ty(*Context), i);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000270 return B.CreateGEP(SrcStr, Idx, "strchr");
271 }
272};
273
274//===---------------------------------------===//
275// 'strcmp' Optimizations
276
Chris Lattner3e8b6632009-09-02 06:11:42 +0000277struct StrCmpOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000278 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000279 // Verify the "strcmp" function prototype.
280 const FunctionType *FT = Callee->getFunctionType();
Eric Christopher37c8b862009-10-07 21:14:25 +0000281 if (FT->getNumParams() != 2 ||
Nick Lewycky10d2f4d2010-07-06 03:53:43 +0000282 !FT->getReturnType()->isIntegerTy(32) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000283 FT->getParamType(0) != FT->getParamType(1) ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000284 FT->getParamType(0) != Type::getInt8PtrTy(*Context))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000285 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000286
Gabor Greifaee5dc12010-06-24 10:42:46 +0000287 Value *Str1P = CI->getArgOperand(0), *Str2P = CI->getArgOperand(1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000288 if (Str1P == Str2P) // strcmp(x,x) -> 0
Owen Andersoneed707b2009-07-24 23:12:02 +0000289 return ConstantInt::get(CI->getType(), 0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000290
Bill Wendling0582ae92009-03-13 04:39:26 +0000291 std::string Str1, Str2;
292 bool HasStr1 = GetConstantStringInfo(Str1P, Str1);
293 bool HasStr2 = GetConstantStringInfo(Str2P, Str2);
Eric Christopher37c8b862009-10-07 21:14:25 +0000294
Bill Wendling0582ae92009-03-13 04:39:26 +0000295 if (HasStr1 && Str1.empty()) // strcmp("", x) -> *x
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000296 return B.CreateZExt(B.CreateLoad(Str2P, "strcmpload"), CI->getType());
Eric Christopher37c8b862009-10-07 21:14:25 +0000297
Bill Wendling0582ae92009-03-13 04:39:26 +0000298 if (HasStr2 && Str2.empty()) // strcmp(x,"") -> *x
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000299 return B.CreateZExt(B.CreateLoad(Str1P, "strcmpload"), CI->getType());
Eric Christopher37c8b862009-10-07 21:14:25 +0000300
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000301 // strcmp(x, y) -> cnst (if both x and y are constant strings)
Bill Wendling0582ae92009-03-13 04:39:26 +0000302 if (HasStr1 && HasStr2)
Eric Christopher37c8b862009-10-07 21:14:25 +0000303 return ConstantInt::get(CI->getType(),
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000304 strcmp(Str1.c_str(),Str2.c_str()));
Nick Lewycky13a09e22008-12-21 00:19:21 +0000305
306 // strcmp(P, "x") -> memcmp(P, "x", 2)
307 uint64_t Len1 = GetStringLength(Str1P);
308 uint64_t Len2 = GetStringLength(Str2P);
Chris Lattner849832c2009-06-19 04:17:36 +0000309 if (Len1 && Len2) {
Dan Gohmanf14d9192009-08-18 00:48:13 +0000310 // These optimizations require TargetData.
311 if (!TD) return 0;
312
Nick Lewycky13a09e22008-12-21 00:19:21 +0000313 return EmitMemCmp(Str1P, Str2P,
Owen Anderson1d0be152009-08-13 21:58:54 +0000314 ConstantInt::get(TD->getIntPtrType(*Context),
Eric Christopherb6174e32010-03-05 22:25:30 +0000315 std::min(Len1, Len2)), B, TD);
Nick Lewycky13a09e22008-12-21 00:19:21 +0000316 }
317
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000318 return 0;
319 }
320};
321
322//===---------------------------------------===//
323// 'strncmp' Optimizations
324
Chris Lattner3e8b6632009-09-02 06:11:42 +0000325struct StrNCmpOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000326 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000327 // Verify the "strncmp" function prototype.
328 const FunctionType *FT = Callee->getFunctionType();
Eric Christopher37c8b862009-10-07 21:14:25 +0000329 if (FT->getNumParams() != 3 ||
Nick Lewycky10d2f4d2010-07-06 03:53:43 +0000330 !FT->getReturnType()->isIntegerTy(32) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000331 FT->getParamType(0) != FT->getParamType(1) ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000332 FT->getParamType(0) != Type::getInt8PtrTy(*Context) ||
Duncan Sands1df98592010-02-16 11:11:14 +0000333 !FT->getParamType(2)->isIntegerTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000334 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000335
Gabor Greifaee5dc12010-06-24 10:42:46 +0000336 Value *Str1P = CI->getArgOperand(0), *Str2P = CI->getArgOperand(1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000337 if (Str1P == Str2P) // strncmp(x,x,n) -> 0
Owen Andersoneed707b2009-07-24 23:12:02 +0000338 return ConstantInt::get(CI->getType(), 0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000339
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000340 // Get the length argument if it is constant.
341 uint64_t Length;
Gabor Greifaee5dc12010-06-24 10:42:46 +0000342 if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(CI->getArgOperand(2)))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000343 Length = LengthArg->getZExtValue();
344 else
345 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000346
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000347 if (Length == 0) // strncmp(x,y,0) -> 0
Owen Andersoneed707b2009-07-24 23:12:02 +0000348 return ConstantInt::get(CI->getType(), 0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000349
Benjamin Kramerea9ca022010-06-16 10:30:29 +0000350 if (TD && Length == 1) // strncmp(x,y,1) -> memcmp(x,y,1)
Gabor Greif8e1ebff2010-06-30 12:42:43 +0000351 return EmitMemCmp(Str1P, Str2P, CI->getArgOperand(2), B, TD);
Benjamin Kramerea9ca022010-06-16 10:30:29 +0000352
Bill Wendling0582ae92009-03-13 04:39:26 +0000353 std::string Str1, Str2;
354 bool HasStr1 = GetConstantStringInfo(Str1P, Str1);
355 bool HasStr2 = GetConstantStringInfo(Str2P, Str2);
Eric Christopher37c8b862009-10-07 21:14:25 +0000356
Bill Wendling0582ae92009-03-13 04:39:26 +0000357 if (HasStr1 && Str1.empty()) // strncmp("", x, n) -> *x
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000358 return B.CreateZExt(B.CreateLoad(Str2P, "strcmpload"), CI->getType());
Eric Christopher37c8b862009-10-07 21:14:25 +0000359
Bill Wendling0582ae92009-03-13 04:39:26 +0000360 if (HasStr2 && Str2.empty()) // strncmp(x, "", n) -> *x
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000361 return B.CreateZExt(B.CreateLoad(Str1P, "strcmpload"), CI->getType());
Eric Christopher37c8b862009-10-07 21:14:25 +0000362
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000363 // strncmp(x, y) -> cnst (if both x and y are constant strings)
Bill Wendling0582ae92009-03-13 04:39:26 +0000364 if (HasStr1 && HasStr2)
Owen Andersoneed707b2009-07-24 23:12:02 +0000365 return ConstantInt::get(CI->getType(),
Bill Wendling0582ae92009-03-13 04:39:26 +0000366 strncmp(Str1.c_str(), Str2.c_str(), Length));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000367 return 0;
368 }
369};
370
371
372//===---------------------------------------===//
373// 'strcpy' Optimizations
374
Chris Lattner3e8b6632009-09-02 06:11:42 +0000375struct StrCpyOpt : public LibCallOptimization {
Evan Chengeb8c6452010-03-24 20:19:04 +0000376 bool OptChkCall; // True if it's optimizing a __strcpy_chk libcall.
377
378 StrCpyOpt(bool c) : OptChkCall(c) {}
379
Eric Christopher7a61d702008-08-08 19:39:37 +0000380 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000381 // Verify the "strcpy" function prototype.
Evan Cheng0289b412010-03-23 15:48:04 +0000382 unsigned NumParams = OptChkCall ? 3 : 2;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000383 const FunctionType *FT = Callee->getFunctionType();
Evan Cheng0289b412010-03-23 15:48:04 +0000384 if (FT->getNumParams() != NumParams ||
385 FT->getReturnType() != FT->getParamType(0) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000386 FT->getParamType(0) != FT->getParamType(1) ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000387 FT->getParamType(0) != Type::getInt8PtrTy(*Context))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000388 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000389
Gabor Greifaee5dc12010-06-24 10:42:46 +0000390 Value *Dst = CI->getArgOperand(0), *Src = CI->getArgOperand(1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000391 if (Dst == Src) // strcpy(x,x) -> x
392 return Src;
Eric Christopher37c8b862009-10-07 21:14:25 +0000393
Dan Gohmanf14d9192009-08-18 00:48:13 +0000394 // These optimizations require TargetData.
395 if (!TD) return 0;
396
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000397 // See if we can get the length of the input string.
398 uint64_t Len = GetStringLength(Src);
Chris Lattner56b4f2b2008-05-01 06:39:12 +0000399 if (Len == 0) return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000400
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000401 // We have enough information to now generate the memcpy call to do the
402 // concatenation for us. Make a memcpy to copy the nul byte with align = 1.
Evan Cheng0289b412010-03-23 15:48:04 +0000403 if (OptChkCall)
404 EmitMemCpyChk(Dst, Src,
405 ConstantInt::get(TD->getIntPtrType(*Context), Len),
Gabor Greifaee5dc12010-06-24 10:42:46 +0000406 CI->getArgOperand(2), B, TD);
Evan Cheng0289b412010-03-23 15:48:04 +0000407 else
408 EmitMemCpy(Dst, Src,
Mon P Wang20adc9d2010-04-04 03:10:48 +0000409 ConstantInt::get(TD->getIntPtrType(*Context), Len),
410 1, false, B, TD);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000411 return Dst;
412 }
413};
414
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000415//===---------------------------------------===//
416// 'strncpy' Optimizations
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000417
Chris Lattner3e8b6632009-09-02 06:11:42 +0000418struct StrNCpyOpt : public LibCallOptimization {
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000419 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
420 const FunctionType *FT = Callee->getFunctionType();
421 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
422 FT->getParamType(0) != FT->getParamType(1) ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000423 FT->getParamType(0) != Type::getInt8PtrTy(*Context) ||
Duncan Sands1df98592010-02-16 11:11:14 +0000424 !FT->getParamType(2)->isIntegerTy())
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000425 return 0;
426
Gabor Greifaee5dc12010-06-24 10:42:46 +0000427 Value *Dst = CI->getArgOperand(0);
428 Value *Src = CI->getArgOperand(1);
429 Value *LenOp = CI->getArgOperand(2);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000430
431 // See if we can get the length of the input string.
432 uint64_t SrcLen = GetStringLength(Src);
433 if (SrcLen == 0) return 0;
434 --SrcLen;
435
436 if (SrcLen == 0) {
437 // strncpy(x, "", y) -> memset(x, '\0', y, 1)
Mon P Wang20adc9d2010-04-04 03:10:48 +0000438 EmitMemSet(Dst, ConstantInt::get(Type::getInt8Ty(*Context), '\0'),
439 LenOp, false, B, TD);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000440 return Dst;
441 }
442
443 uint64_t Len;
444 if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(LenOp))
445 Len = LengthArg->getZExtValue();
446 else
447 return 0;
448
449 if (Len == 0) return Dst; // strncpy(x, y, 0) -> x
450
Dan Gohmanf14d9192009-08-18 00:48:13 +0000451 // These optimizations require TargetData.
452 if (!TD) return 0;
453
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000454 // Let strncpy handle the zero padding
455 if (Len > SrcLen+1) return 0;
456
457 // strncpy(x, s, c) -> memcpy(x, s, c, 1) [s and c are constant]
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000458 EmitMemCpy(Dst, Src,
Mon P Wang20adc9d2010-04-04 03:10:48 +0000459 ConstantInt::get(TD->getIntPtrType(*Context), Len),
460 1, false, B, TD);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000461
462 return Dst;
463 }
464};
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000465
466//===---------------------------------------===//
467// 'strlen' Optimizations
468
Chris Lattner3e8b6632009-09-02 06:11:42 +0000469struct StrLenOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000470 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000471 const FunctionType *FT = Callee->getFunctionType();
472 if (FT->getNumParams() != 1 ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000473 FT->getParamType(0) != Type::getInt8PtrTy(*Context) ||
Duncan Sands1df98592010-02-16 11:11:14 +0000474 !FT->getReturnType()->isIntegerTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000475 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000476
Gabor Greifaee5dc12010-06-24 10:42:46 +0000477 Value *Src = CI->getArgOperand(0);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000478
479 // Constant folding: strlen("xyz") -> 3
480 if (uint64_t Len = GetStringLength(Src))
Owen Andersoneed707b2009-07-24 23:12:02 +0000481 return ConstantInt::get(CI->getType(), Len-1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000482
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000483 // strlen(x) != 0 --> *x != 0
484 // strlen(x) == 0 --> *x == 0
Chris Lattner98d67d72009-12-23 23:24:51 +0000485 if (IsOnlyUsedInZeroEqualityComparison(CI))
486 return B.CreateZExt(B.CreateLoad(Src, "strlenfirst"), CI->getType());
487 return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000488 }
489};
490
491//===---------------------------------------===//
Chris Lattner24604112009-12-16 09:32:05 +0000492// 'strto*' Optimizations. This handles strtol, strtod, strtof, strtoul, etc.
Nick Lewycky4c498412009-02-13 15:31:46 +0000493
Chris Lattner3e8b6632009-09-02 06:11:42 +0000494struct StrToOpt : public LibCallOptimization {
Nick Lewycky4c498412009-02-13 15:31:46 +0000495 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
496 const FunctionType *FT = Callee->getFunctionType();
497 if ((FT->getNumParams() != 2 && FT->getNumParams() != 3) ||
Duncan Sands1df98592010-02-16 11:11:14 +0000498 !FT->getParamType(0)->isPointerTy() ||
499 !FT->getParamType(1)->isPointerTy())
Nick Lewycky4c498412009-02-13 15:31:46 +0000500 return 0;
501
Gabor Greifaee5dc12010-06-24 10:42:46 +0000502 Value *EndPtr = CI->getArgOperand(1);
Nick Lewycky02b6a6a2009-02-13 17:08:33 +0000503 if (isa<ConstantPointerNull>(EndPtr)) {
504 CI->setOnlyReadsMemory();
Nick Lewycky4c498412009-02-13 15:31:46 +0000505 CI->addAttribute(1, Attribute::NoCapture);
Nick Lewycky02b6a6a2009-02-13 17:08:33 +0000506 }
Nick Lewycky4c498412009-02-13 15:31:46 +0000507
508 return 0;
509 }
510};
511
Chris Lattner24604112009-12-16 09:32:05 +0000512//===---------------------------------------===//
513// 'strstr' Optimizations
514
515struct StrStrOpt : public LibCallOptimization {
516 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
517 const FunctionType *FT = Callee->getFunctionType();
518 if (FT->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +0000519 !FT->getParamType(0)->isPointerTy() ||
520 !FT->getParamType(1)->isPointerTy() ||
521 !FT->getReturnType()->isPointerTy())
Chris Lattner24604112009-12-16 09:32:05 +0000522 return 0;
523
524 // fold strstr(x, x) -> x.
Gabor Greifaee5dc12010-06-24 10:42:46 +0000525 if (CI->getArgOperand(0) == CI->getArgOperand(1))
526 return B.CreateBitCast(CI->getArgOperand(0), CI->getType());
Mikhail Glushenkoved5cb592010-01-04 07:55:25 +0000527
Benjamin Kramer386e9182010-06-15 21:34:25 +0000528 // fold strstr(a, b) == a -> strncmp(a, b, strlen(b)) == 0
Gabor Greif8e1ebff2010-06-30 12:42:43 +0000529 if (TD && IsOnlyUsedInEqualityComparison(CI, CI->getArgOperand(0))) {
530 Value *StrLen = EmitStrLen(CI->getArgOperand(1), B, TD);
531 Value *StrNCmp = EmitStrNCmp(CI->getArgOperand(0), CI->getArgOperand(1),
Benjamin Kramer386e9182010-06-15 21:34:25 +0000532 StrLen, B, TD);
533 for (Value::use_iterator UI = CI->use_begin(), UE = CI->use_end();
534 UI != UE; ) {
535 ICmpInst *Old = cast<ICmpInst>(UI++);
536 Value *Cmp = B.CreateICmp(Old->getPredicate(), StrNCmp,
537 ConstantInt::getNullValue(StrNCmp->getType()),
538 "cmp");
539 Old->replaceAllUsesWith(Cmp);
540 Old->eraseFromParent();
541 }
542 return CI;
543 }
544
Chris Lattner24604112009-12-16 09:32:05 +0000545 // See if either input string is a constant string.
546 std::string SearchStr, ToFindStr;
Gabor Greifaee5dc12010-06-24 10:42:46 +0000547 bool HasStr1 = GetConstantStringInfo(CI->getArgOperand(0), SearchStr);
548 bool HasStr2 = GetConstantStringInfo(CI->getArgOperand(1), ToFindStr);
Mikhail Glushenkoved5cb592010-01-04 07:55:25 +0000549
Chris Lattner24604112009-12-16 09:32:05 +0000550 // fold strstr(x, "") -> x.
551 if (HasStr2 && ToFindStr.empty())
Gabor Greifaee5dc12010-06-24 10:42:46 +0000552 return B.CreateBitCast(CI->getArgOperand(0), CI->getType());
Mikhail Glushenkoved5cb592010-01-04 07:55:25 +0000553
Chris Lattner24604112009-12-16 09:32:05 +0000554 // If both strings are known, constant fold it.
555 if (HasStr1 && HasStr2) {
556 std::string::size_type Offset = SearchStr.find(ToFindStr);
Mikhail Glushenkoved5cb592010-01-04 07:55:25 +0000557
Chris Lattner24604112009-12-16 09:32:05 +0000558 if (Offset == std::string::npos) // strstr("foo", "bar") -> null
559 return Constant::getNullValue(CI->getType());
560
561 // strstr("abcd", "bc") -> gep((char*)"abcd", 1)
Gabor Greifaee5dc12010-06-24 10:42:46 +0000562 Value *Result = CastToCStr(CI->getArgOperand(0), B);
Chris Lattner24604112009-12-16 09:32:05 +0000563 Result = B.CreateConstInBoundsGEP1_64(Result, Offset, "strstr");
564 return B.CreateBitCast(Result, CI->getType());
565 }
Mikhail Glushenkoved5cb592010-01-04 07:55:25 +0000566
Chris Lattner24604112009-12-16 09:32:05 +0000567 // fold strstr(x, "y") -> strchr(x, 'y').
568 if (HasStr2 && ToFindStr.size() == 1)
Gabor Greifa3997812010-07-22 10:37:47 +0000569 return B.CreateBitCast(EmitStrChr(CI->getArgOperand(0),
570 ToFindStr[0], B, TD), CI->getType());
Chris Lattner24604112009-12-16 09:32:05 +0000571 return 0;
572 }
573};
Mikhail Glushenkoved5cb592010-01-04 07:55:25 +0000574
Nick Lewycky4c498412009-02-13 15:31:46 +0000575
576//===---------------------------------------===//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000577// 'memcmp' Optimizations
578
Chris Lattner3e8b6632009-09-02 06:11:42 +0000579struct MemCmpOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000580 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000581 const FunctionType *FT = Callee->getFunctionType();
Duncan Sands1df98592010-02-16 11:11:14 +0000582 if (FT->getNumParams() != 3 || !FT->getParamType(0)->isPointerTy() ||
583 !FT->getParamType(1)->isPointerTy() ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000584 !FT->getReturnType()->isIntegerTy(32))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000585 return 0;
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000586
Gabor Greifaee5dc12010-06-24 10:42:46 +0000587 Value *LHS = CI->getArgOperand(0), *RHS = CI->getArgOperand(1);
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000588
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000589 if (LHS == RHS) // memcmp(s,s,x) -> 0
Owen Andersona7235ea2009-07-31 20:28:14 +0000590 return Constant::getNullValue(CI->getType());
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000591
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000592 // Make sure we have a constant length.
Gabor Greifaee5dc12010-06-24 10:42:46 +0000593 ConstantInt *LenC = dyn_cast<ConstantInt>(CI->getArgOperand(2));
Chris Lattner56b4f2b2008-05-01 06:39:12 +0000594 if (!LenC) return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000595 uint64_t Len = LenC->getZExtValue();
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000596
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000597 if (Len == 0) // memcmp(s1,s2,0) -> 0
Owen Andersona7235ea2009-07-31 20:28:14 +0000598 return Constant::getNullValue(CI->getType());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000599
Benjamin Kramer48aefe12010-05-25 22:53:43 +0000600 // memcmp(S1,S2,1) -> *(unsigned char*)LHS - *(unsigned char*)RHS
601 if (Len == 1) {
602 Value *LHSV = B.CreateZExt(B.CreateLoad(CastToCStr(LHS, B), "lhsc"),
603 CI->getType(), "lhsv");
604 Value *RHSV = B.CreateZExt(B.CreateLoad(CastToCStr(RHS, B), "rhsc"),
605 CI->getType(), "rhsv");
Benjamin Kramer1464c1d2010-05-26 09:45:04 +0000606 return B.CreateSub(LHSV, RHSV, "chardiff");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000607 }
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000608
Benjamin Kramer992a6372009-11-05 17:44:22 +0000609 // Constant folding: memcmp(x, y, l) -> cnst (all arguments are constant)
610 std::string LHSStr, RHSStr;
611 if (GetConstantStringInfo(LHS, LHSStr) &&
612 GetConstantStringInfo(RHS, RHSStr)) {
613 // Make sure we're not reading out-of-bounds memory.
614 if (Len > LHSStr.length() || Len > RHSStr.length())
615 return 0;
616 uint64_t Ret = memcmp(LHSStr.data(), RHSStr.data(), Len);
617 return ConstantInt::get(CI->getType(), Ret);
618 }
619
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000620 return 0;
621 }
622};
623
624//===---------------------------------------===//
625// 'memcpy' Optimizations
626
Chris Lattner3e8b6632009-09-02 06:11:42 +0000627struct MemCpyOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000628 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Dan Gohmanf14d9192009-08-18 00:48:13 +0000629 // These optimizations require TargetData.
630 if (!TD) return 0;
631
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000632 const FunctionType *FT = Callee->getFunctionType();
633 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
Duncan Sands1df98592010-02-16 11:11:14 +0000634 !FT->getParamType(0)->isPointerTy() ||
635 !FT->getParamType(1)->isPointerTy() ||
Owen Anderson1d0be152009-08-13 21:58:54 +0000636 FT->getParamType(2) != TD->getIntPtrType(*Context))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000637 return 0;
638
639 // memcpy(x, y, n) -> llvm.memcpy(x, y, n, 1)
Gabor Greifaee5dc12010-06-24 10:42:46 +0000640 EmitMemCpy(CI->getArgOperand(0), CI->getArgOperand(1),
641 CI->getArgOperand(2), 1, false, B, TD);
642 return CI->getArgOperand(0);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000643 }
644};
645
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000646//===---------------------------------------===//
647// 'memmove' Optimizations
648
Chris Lattner3e8b6632009-09-02 06:11:42 +0000649struct MemMoveOpt : public LibCallOptimization {
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000650 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Dan Gohmanf14d9192009-08-18 00:48:13 +0000651 // These optimizations require TargetData.
652 if (!TD) return 0;
653
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000654 const FunctionType *FT = Callee->getFunctionType();
655 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
Duncan Sands1df98592010-02-16 11:11:14 +0000656 !FT->getParamType(0)->isPointerTy() ||
657 !FT->getParamType(1)->isPointerTy() ||
Owen Anderson1d0be152009-08-13 21:58:54 +0000658 FT->getParamType(2) != TD->getIntPtrType(*Context))
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000659 return 0;
660
661 // memmove(x, y, n) -> llvm.memmove(x, y, n, 1)
Gabor Greifaee5dc12010-06-24 10:42:46 +0000662 EmitMemMove(CI->getArgOperand(0), CI->getArgOperand(1),
663 CI->getArgOperand(2), 1, false, B, TD);
664 return CI->getArgOperand(0);
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000665 }
666};
667
668//===---------------------------------------===//
669// 'memset' Optimizations
670
Chris Lattner3e8b6632009-09-02 06:11:42 +0000671struct MemSetOpt : public LibCallOptimization {
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000672 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Dan Gohmanf14d9192009-08-18 00:48:13 +0000673 // These optimizations require TargetData.
674 if (!TD) return 0;
675
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000676 const FunctionType *FT = Callee->getFunctionType();
677 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
Duncan Sands1df98592010-02-16 11:11:14 +0000678 !FT->getParamType(0)->isPointerTy() ||
679 !FT->getParamType(1)->isIntegerTy() ||
Owen Anderson1d0be152009-08-13 21:58:54 +0000680 FT->getParamType(2) != TD->getIntPtrType(*Context))
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000681 return 0;
682
683 // memset(p, v, n) -> llvm.memset(p, v, n, 1)
Gabor Greifa3997812010-07-22 10:37:47 +0000684 Value *Val = B.CreateIntCast(CI->getArgOperand(1),
685 Type::getInt8Ty(*Context), false);
Gabor Greifaee5dc12010-06-24 10:42:46 +0000686 EmitMemSet(CI->getArgOperand(0), Val, CI->getArgOperand(2), false, B, TD);
687 return CI->getArgOperand(0);
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000688 }
689};
690
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000691//===----------------------------------------------------------------------===//
692// Math Library Optimizations
693//===----------------------------------------------------------------------===//
694
695//===---------------------------------------===//
696// 'pow*' Optimizations
697
Chris Lattner3e8b6632009-09-02 06:11:42 +0000698struct PowOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000699 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000700 const FunctionType *FT = Callee->getFunctionType();
701 // Just make sure this has 2 arguments of the same FP type, which match the
702 // result type.
703 if (FT->getNumParams() != 2 || FT->getReturnType() != FT->getParamType(0) ||
704 FT->getParamType(0) != FT->getParamType(1) ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000705 !FT->getParamType(0)->isFloatingPointTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000706 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000707
Gabor Greifaee5dc12010-06-24 10:42:46 +0000708 Value *Op1 = CI->getArgOperand(0), *Op2 = CI->getArgOperand(1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000709 if (ConstantFP *Op1C = dyn_cast<ConstantFP>(Op1)) {
710 if (Op1C->isExactlyValue(1.0)) // pow(1.0, x) -> 1.0
711 return Op1C;
712 if (Op1C->isExactlyValue(2.0)) // pow(2.0, x) -> exp2(x)
Dan Gohman76926b62009-09-26 18:10:13 +0000713 return EmitUnaryFloatFnCall(Op2, "exp2", B, Callee->getAttributes());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000714 }
Eric Christopher37c8b862009-10-07 21:14:25 +0000715
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000716 ConstantFP *Op2C = dyn_cast<ConstantFP>(Op2);
717 if (Op2C == 0) return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000718
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000719 if (Op2C->getValueAPF().isZero()) // pow(x, 0.0) -> 1.0
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000720 return ConstantFP::get(CI->getType(), 1.0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000721
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000722 if (Op2C->isExactlyValue(0.5)) {
Dan Gohman79cb8402009-09-25 23:10:17 +0000723 // Expand pow(x, 0.5) to (x == -infinity ? +infinity : fabs(sqrt(x))).
724 // This is faster than calling pow, and still handles negative zero
725 // and negative infinite correctly.
726 // TODO: In fast-math mode, this could be just sqrt(x).
727 // TODO: In finite-only mode, this could be just fabs(sqrt(x)).
Dan Gohmana23643d2009-09-25 23:40:21 +0000728 Value *Inf = ConstantFP::getInfinity(CI->getType());
729 Value *NegInf = ConstantFP::getInfinity(CI->getType(), true);
Dan Gohman76926b62009-09-26 18:10:13 +0000730 Value *Sqrt = EmitUnaryFloatFnCall(Op1, "sqrt", B,
731 Callee->getAttributes());
732 Value *FAbs = EmitUnaryFloatFnCall(Sqrt, "fabs", B,
733 Callee->getAttributes());
Dan Gohman79cb8402009-09-25 23:10:17 +0000734 Value *FCmp = B.CreateFCmpOEQ(Op1, NegInf, "tmp");
735 Value *Sel = B.CreateSelect(FCmp, Inf, FAbs, "tmp");
736 return Sel;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000737 }
Eric Christopher37c8b862009-10-07 21:14:25 +0000738
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000739 if (Op2C->isExactlyValue(1.0)) // pow(x, 1.0) -> x
740 return Op1;
741 if (Op2C->isExactlyValue(2.0)) // pow(x, 2.0) -> x*x
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000742 return B.CreateFMul(Op1, Op1, "pow2");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000743 if (Op2C->isExactlyValue(-1.0)) // pow(x, -1.0) -> 1.0/x
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000744 return B.CreateFDiv(ConstantFP::get(CI->getType(), 1.0),
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000745 Op1, "powrecip");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000746 return 0;
747 }
748};
749
750//===---------------------------------------===//
Chris Lattnere818f772008-05-02 18:43:35 +0000751// 'exp2' Optimizations
752
Chris Lattner3e8b6632009-09-02 06:11:42 +0000753struct Exp2Opt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000754 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnere818f772008-05-02 18:43:35 +0000755 const FunctionType *FT = Callee->getFunctionType();
756 // Just make sure this has 1 argument of FP type, which matches the
757 // result type.
758 if (FT->getNumParams() != 1 || FT->getReturnType() != FT->getParamType(0) ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000759 !FT->getParamType(0)->isFloatingPointTy())
Chris Lattnere818f772008-05-02 18:43:35 +0000760 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000761
Gabor Greifaee5dc12010-06-24 10:42:46 +0000762 Value *Op = CI->getArgOperand(0);
Chris Lattnere818f772008-05-02 18:43:35 +0000763 // Turn exp2(sitofp(x)) -> ldexp(1.0, sext(x)) if sizeof(x) <= 32
764 // Turn exp2(uitofp(x)) -> ldexp(1.0, zext(x)) if sizeof(x) < 32
765 Value *LdExpArg = 0;
766 if (SIToFPInst *OpC = dyn_cast<SIToFPInst>(Op)) {
767 if (OpC->getOperand(0)->getType()->getPrimitiveSizeInBits() <= 32)
Eric Christopher37c8b862009-10-07 21:14:25 +0000768 LdExpArg = B.CreateSExt(OpC->getOperand(0),
Nick Lewycky10d2f4d2010-07-06 03:53:43 +0000769 Type::getInt32Ty(*Context), "tmp");
Chris Lattnere818f772008-05-02 18:43:35 +0000770 } else if (UIToFPInst *OpC = dyn_cast<UIToFPInst>(Op)) {
771 if (OpC->getOperand(0)->getType()->getPrimitiveSizeInBits() < 32)
Eric Christopher37c8b862009-10-07 21:14:25 +0000772 LdExpArg = B.CreateZExt(OpC->getOperand(0),
Nick Lewycky10d2f4d2010-07-06 03:53:43 +0000773 Type::getInt32Ty(*Context), "tmp");
Chris Lattnere818f772008-05-02 18:43:35 +0000774 }
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000775
Chris Lattnere818f772008-05-02 18:43:35 +0000776 if (LdExpArg) {
777 const char *Name;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000778 if (Op->getType()->isFloatTy())
Chris Lattnere818f772008-05-02 18:43:35 +0000779 Name = "ldexpf";
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000780 else if (Op->getType()->isDoubleTy())
Chris Lattnere818f772008-05-02 18:43:35 +0000781 Name = "ldexp";
782 else
783 Name = "ldexpl";
784
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000785 Constant *One = ConstantFP::get(*Context, APFloat(1.0f));
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000786 if (!Op->getType()->isFloatTy())
Owen Andersonbaf3c402009-07-29 18:55:55 +0000787 One = ConstantExpr::getFPExtend(One, Op->getType());
Chris Lattnere818f772008-05-02 18:43:35 +0000788
789 Module *M = Caller->getParent();
790 Value *Callee = M->getOrInsertFunction(Name, Op->getType(),
Eric Christopher37c8b862009-10-07 21:14:25 +0000791 Op->getType(),
Eric Christopher3a8bb732010-02-02 00:13:06 +0000792 Type::getInt32Ty(*Context),NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000793 CallInst *CI = B.CreateCall2(Callee, One, LdExpArg);
794 if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
795 CI->setCallingConv(F->getCallingConv());
796
797 return CI;
Chris Lattnere818f772008-05-02 18:43:35 +0000798 }
799 return 0;
800 }
801};
Chris Lattnere818f772008-05-02 18:43:35 +0000802
803//===---------------------------------------===//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000804// Double -> Float Shrinking Optimizations for Unary Functions like 'floor'
805
Chris Lattner3e8b6632009-09-02 06:11:42 +0000806struct UnaryDoubleFPOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000807 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000808 const FunctionType *FT = Callee->getFunctionType();
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000809 if (FT->getNumParams() != 1 || !FT->getReturnType()->isDoubleTy() ||
810 !FT->getParamType(0)->isDoubleTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000811 return 0;
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000812
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000813 // If this is something like 'floor((double)floatval)', convert to floorf.
Gabor Greifaee5dc12010-06-24 10:42:46 +0000814 FPExtInst *Cast = dyn_cast<FPExtInst>(CI->getArgOperand(0));
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000815 if (Cast == 0 || !Cast->getOperand(0)->getType()->isFloatTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000816 return 0;
817
818 // floor((double)floatval) -> (double)floorf(floatval)
819 Value *V = Cast->getOperand(0);
Dan Gohman76926b62009-09-26 18:10:13 +0000820 V = EmitUnaryFloatFnCall(V, Callee->getName().data(), B,
821 Callee->getAttributes());
Owen Anderson1d0be152009-08-13 21:58:54 +0000822 return B.CreateFPExt(V, Type::getDoubleTy(*Context));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000823 }
824};
825
826//===----------------------------------------------------------------------===//
827// Integer Optimizations
828//===----------------------------------------------------------------------===//
829
830//===---------------------------------------===//
831// 'ffs*' Optimizations
832
Chris Lattner3e8b6632009-09-02 06:11:42 +0000833struct FFSOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000834 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000835 const FunctionType *FT = Callee->getFunctionType();
836 // Just make sure this has 2 arguments of the same FP type, which match the
837 // result type.
Eric Christopher37c8b862009-10-07 21:14:25 +0000838 if (FT->getNumParams() != 1 ||
Nick Lewycky10d2f4d2010-07-06 03:53:43 +0000839 !FT->getReturnType()->isIntegerTy(32) ||
Duncan Sands1df98592010-02-16 11:11:14 +0000840 !FT->getParamType(0)->isIntegerTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000841 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000842
Gabor Greifaee5dc12010-06-24 10:42:46 +0000843 Value *Op = CI->getArgOperand(0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000844
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000845 // Constant fold.
846 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
847 if (CI->getValue() == 0) // ffs(0) -> 0.
Owen Andersona7235ea2009-07-31 20:28:14 +0000848 return Constant::getNullValue(CI->getType());
Owen Anderson1d0be152009-08-13 21:58:54 +0000849 return ConstantInt::get(Type::getInt32Ty(*Context), // ffs(c) -> cttz(c)+1
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000850 CI->getValue().countTrailingZeros()+1);
851 }
Eric Christopher37c8b862009-10-07 21:14:25 +0000852
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000853 // ffs(x) -> x != 0 ? (i32)llvm.cttz(x)+1 : 0
854 const Type *ArgType = Op->getType();
855 Value *F = Intrinsic::getDeclaration(Callee->getParent(),
856 Intrinsic::cttz, &ArgType, 1);
857 Value *V = B.CreateCall(F, Op, "cttz");
Owen Andersoneed707b2009-07-24 23:12:02 +0000858 V = B.CreateAdd(V, ConstantInt::get(V->getType(), 1), "tmp");
Owen Anderson1d0be152009-08-13 21:58:54 +0000859 V = B.CreateIntCast(V, Type::getInt32Ty(*Context), false, "tmp");
Eric Christopher37c8b862009-10-07 21:14:25 +0000860
Owen Andersona7235ea2009-07-31 20:28:14 +0000861 Value *Cond = B.CreateICmpNE(Op, Constant::getNullValue(ArgType), "tmp");
Eric Christopher37c8b862009-10-07 21:14:25 +0000862 return B.CreateSelect(Cond, V,
Nick Lewycky10d2f4d2010-07-06 03:53:43 +0000863 ConstantInt::get(Type::getInt32Ty(*Context), 0));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000864 }
865};
866
867//===---------------------------------------===//
868// 'isdigit' Optimizations
869
Chris Lattner3e8b6632009-09-02 06:11:42 +0000870struct IsDigitOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000871 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000872 const FunctionType *FT = Callee->getFunctionType();
873 // We require integer(i32)
Duncan Sands1df98592010-02-16 11:11:14 +0000874 if (FT->getNumParams() != 1 || !FT->getReturnType()->isIntegerTy() ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000875 !FT->getParamType(0)->isIntegerTy(32))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000876 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000877
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000878 // isdigit(c) -> (c-'0') <u 10
Gabor Greifaee5dc12010-06-24 10:42:46 +0000879 Value *Op = CI->getArgOperand(0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000880 Op = B.CreateSub(Op, ConstantInt::get(Type::getInt32Ty(*Context), '0'),
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000881 "isdigittmp");
Eric Christopher37c8b862009-10-07 21:14:25 +0000882 Op = B.CreateICmpULT(Op, ConstantInt::get(Type::getInt32Ty(*Context), 10),
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000883 "isdigit");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000884 return B.CreateZExt(Op, CI->getType());
885 }
886};
887
888//===---------------------------------------===//
889// 'isascii' Optimizations
890
Chris Lattner3e8b6632009-09-02 06:11:42 +0000891struct IsAsciiOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000892 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000893 const FunctionType *FT = Callee->getFunctionType();
894 // We require integer(i32)
Duncan Sands1df98592010-02-16 11:11:14 +0000895 if (FT->getNumParams() != 1 || !FT->getReturnType()->isIntegerTy() ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000896 !FT->getParamType(0)->isIntegerTy(32))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000897 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000898
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000899 // isascii(c) -> c <u 128
Gabor Greifaee5dc12010-06-24 10:42:46 +0000900 Value *Op = CI->getArgOperand(0);
Owen Anderson1d0be152009-08-13 21:58:54 +0000901 Op = B.CreateICmpULT(Op, ConstantInt::get(Type::getInt32Ty(*Context), 128),
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000902 "isascii");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000903 return B.CreateZExt(Op, CI->getType());
904 }
905};
Eric Christopher37c8b862009-10-07 21:14:25 +0000906
Chris Lattner313f0e62008-06-09 08:26:51 +0000907//===---------------------------------------===//
908// 'abs', 'labs', 'llabs' Optimizations
909
Chris Lattner3e8b6632009-09-02 06:11:42 +0000910struct AbsOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000911 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattner313f0e62008-06-09 08:26:51 +0000912 const FunctionType *FT = Callee->getFunctionType();
913 // We require integer(integer) where the types agree.
Duncan Sands1df98592010-02-16 11:11:14 +0000914 if (FT->getNumParams() != 1 || !FT->getReturnType()->isIntegerTy() ||
Chris Lattner313f0e62008-06-09 08:26:51 +0000915 FT->getParamType(0) != FT->getReturnType())
916 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000917
Chris Lattner313f0e62008-06-09 08:26:51 +0000918 // abs(x) -> x >s -1 ? x : -x
Gabor Greifaee5dc12010-06-24 10:42:46 +0000919 Value *Op = CI->getArgOperand(0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000920 Value *Pos = B.CreateICmpSGT(Op,
Owen Andersona7235ea2009-07-31 20:28:14 +0000921 Constant::getAllOnesValue(Op->getType()),
Chris Lattner313f0e62008-06-09 08:26:51 +0000922 "ispos");
923 Value *Neg = B.CreateNeg(Op, "neg");
924 return B.CreateSelect(Pos, Op, Neg);
925 }
926};
Eric Christopher37c8b862009-10-07 21:14:25 +0000927
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000928
929//===---------------------------------------===//
930// 'toascii' Optimizations
931
Chris Lattner3e8b6632009-09-02 06:11:42 +0000932struct ToAsciiOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000933 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000934 const FunctionType *FT = Callee->getFunctionType();
935 // We require i32(i32)
936 if (FT->getNumParams() != 1 || FT->getReturnType() != FT->getParamType(0) ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000937 !FT->getParamType(0)->isIntegerTy(32))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000938 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000939
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000940 // isascii(c) -> c & 0x7f
Gabor Greifaee5dc12010-06-24 10:42:46 +0000941 return B.CreateAnd(CI->getArgOperand(0),
Owen Andersoneed707b2009-07-24 23:12:02 +0000942 ConstantInt::get(CI->getType(),0x7F));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000943 }
944};
945
946//===----------------------------------------------------------------------===//
947// Formatting and IO Optimizations
948//===----------------------------------------------------------------------===//
949
950//===---------------------------------------===//
951// 'printf' Optimizations
952
Chris Lattner3e8b6632009-09-02 06:11:42 +0000953struct PrintFOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000954 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000955 // Require one fixed pointer argument and an integer/void result.
956 const FunctionType *FT = Callee->getFunctionType();
Duncan Sands1df98592010-02-16 11:11:14 +0000957 if (FT->getNumParams() < 1 || !FT->getParamType(0)->isPointerTy() ||
958 !(FT->getReturnType()->isIntegerTy() ||
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000959 FT->getReturnType()->isVoidTy()))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000960 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000961
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000962 // Check for a fixed format string.
Bill Wendling0582ae92009-03-13 04:39:26 +0000963 std::string FormatStr;
Gabor Greifaee5dc12010-06-24 10:42:46 +0000964 if (!GetConstantStringInfo(CI->getArgOperand(0), FormatStr))
Bill Wendling0582ae92009-03-13 04:39:26 +0000965 return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000966
967 // Empty format string -> noop.
968 if (FormatStr.empty()) // Tolerate printf's declared void.
Eric Christopher37c8b862009-10-07 21:14:25 +0000969 return CI->use_empty() ? (Value*)CI :
Owen Andersoneed707b2009-07-24 23:12:02 +0000970 ConstantInt::get(CI->getType(), 0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000971
Chris Lattner74965f22009-11-09 04:57:04 +0000972 // printf("x") -> putchar('x'), even for '%'. Return the result of putchar
973 // in case there is an error writing to stdout.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000974 if (FormatStr.size() == 1) {
Chris Lattner74965f22009-11-09 04:57:04 +0000975 Value *Res = EmitPutChar(ConstantInt::get(Type::getInt32Ty(*Context),
Eric Christopherb6174e32010-03-05 22:25:30 +0000976 FormatStr[0]), B, TD);
Chris Lattner74965f22009-11-09 04:57:04 +0000977 if (CI->use_empty()) return CI;
978 return B.CreateIntCast(Res, CI->getType(), true);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000979 }
Eric Christopher37c8b862009-10-07 21:14:25 +0000980
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000981 // printf("foo\n") --> puts("foo")
982 if (FormatStr[FormatStr.size()-1] == '\n' &&
983 FormatStr.find('%') == std::string::npos) { // no format characters.
984 // Create a string literal with no \n on it. We expect the constant merge
985 // pass to be run after this pass, to merge duplicate strings.
986 FormatStr.erase(FormatStr.end()-1);
Owen Anderson1d0be152009-08-13 21:58:54 +0000987 Constant *C = ConstantArray::get(*Context, FormatStr, true);
Owen Andersone9b11b42009-07-08 19:03:57 +0000988 C = new GlobalVariable(*Callee->getParent(), C->getType(), true,
989 GlobalVariable::InternalLinkage, C, "str");
Eric Christopherb6174e32010-03-05 22:25:30 +0000990 EmitPutS(C, B, TD);
Eric Christopher37c8b862009-10-07 21:14:25 +0000991 return CI->use_empty() ? (Value*)CI :
Owen Andersoneed707b2009-07-24 23:12:02 +0000992 ConstantInt::get(CI->getType(), FormatStr.size()+1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000993 }
Eric Christopher37c8b862009-10-07 21:14:25 +0000994
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000995 // Optimize specific format strings.
Gabor Greifaee5dc12010-06-24 10:42:46 +0000996 // printf("%c", chr) --> putchar(chr)
Gabor Greif8e1ebff2010-06-30 12:42:43 +0000997 if (FormatStr == "%c" && CI->getNumArgOperands() > 1 &&
Gabor Greifaee5dc12010-06-24 10:42:46 +0000998 CI->getArgOperand(1)->getType()->isIntegerTy()) {
999 Value *Res = EmitPutChar(CI->getArgOperand(1), B, TD);
Eric Christopher80bf1d52009-11-21 01:01:30 +00001000
Chris Lattner74965f22009-11-09 04:57:04 +00001001 if (CI->use_empty()) return CI;
1002 return B.CreateIntCast(Res, CI->getType(), true);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001003 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001004
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001005 // printf("%s\n", str) --> puts(str)
Gabor Greif8e1ebff2010-06-30 12:42:43 +00001006 if (FormatStr == "%s\n" && CI->getNumArgOperands() > 1 &&
Gabor Greifaee5dc12010-06-24 10:42:46 +00001007 CI->getArgOperand(1)->getType()->isPointerTy() &&
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001008 CI->use_empty()) {
Gabor Greifaee5dc12010-06-24 10:42:46 +00001009 EmitPutS(CI->getArgOperand(1), B, TD);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001010 return CI;
1011 }
1012 return 0;
1013 }
1014};
1015
1016//===---------------------------------------===//
1017// 'sprintf' Optimizations
1018
Chris Lattner3e8b6632009-09-02 06:11:42 +00001019struct SPrintFOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001020 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001021 // Require two fixed pointer arguments and an integer result.
1022 const FunctionType *FT = Callee->getFunctionType();
Duncan Sands1df98592010-02-16 11:11:14 +00001023 if (FT->getNumParams() != 2 || !FT->getParamType(0)->isPointerTy() ||
1024 !FT->getParamType(1)->isPointerTy() ||
1025 !FT->getReturnType()->isIntegerTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001026 return 0;
1027
1028 // Check for a fixed format string.
Bill Wendling0582ae92009-03-13 04:39:26 +00001029 std::string FormatStr;
Gabor Greifaee5dc12010-06-24 10:42:46 +00001030 if (!GetConstantStringInfo(CI->getArgOperand(1), FormatStr))
Bill Wendling0582ae92009-03-13 04:39:26 +00001031 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001032
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001033 // If we just have a format string (nothing else crazy) transform it.
Gabor Greif8e1ebff2010-06-30 12:42:43 +00001034 if (CI->getNumArgOperands() == 2) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001035 // Make sure there's no % in the constant array. We could try to handle
1036 // %% -> % in the future if we cared.
1037 for (unsigned i = 0, e = FormatStr.size(); i != e; ++i)
1038 if (FormatStr[i] == '%')
1039 return 0; // we found a format specifier, bail out.
Dan Gohmanf14d9192009-08-18 00:48:13 +00001040
1041 // These optimizations require TargetData.
1042 if (!TD) return 0;
1043
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001044 // sprintf(str, fmt) -> llvm.memcpy(str, fmt, strlen(fmt)+1, 1)
Gabor Greifa3997812010-07-22 10:37:47 +00001045 EmitMemCpy(CI->getArgOperand(0), CI->getArgOperand(1), // Copy the
1046 ConstantInt::get(TD->getIntPtrType(*Context), // nul byte.
1047 FormatStr.size() + 1), 1, false, B, TD);
Owen Andersoneed707b2009-07-24 23:12:02 +00001048 return ConstantInt::get(CI->getType(), FormatStr.size());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001049 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001050
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001051 // The remaining optimizations require the format string to be "%s" or "%c"
1052 // and have an extra operand.
Gabor Greif8e1ebff2010-06-30 12:42:43 +00001053 if (FormatStr.size() != 2 || FormatStr[0] != '%' ||
1054 CI->getNumArgOperands() < 3)
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001055 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001056
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001057 // Decode the second character of the format string.
1058 if (FormatStr[1] == 'c') {
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001059 // sprintf(dst, "%c", chr) --> *(i8*)dst = chr; *((i8*)dst+1) = 0
Gabor Greifaee5dc12010-06-24 10:42:46 +00001060 if (!CI->getArgOperand(2)->getType()->isIntegerTy()) return 0;
1061 Value *V = B.CreateTrunc(CI->getArgOperand(2),
Mon P Wang20adc9d2010-04-04 03:10:48 +00001062 Type::getInt8Ty(*Context), "char");
Gabor Greifaee5dc12010-06-24 10:42:46 +00001063 Value *Ptr = CastToCStr(CI->getArgOperand(0), B);
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001064 B.CreateStore(V, Ptr);
Eric Christopher37c8b862009-10-07 21:14:25 +00001065 Ptr = B.CreateGEP(Ptr, ConstantInt::get(Type::getInt32Ty(*Context), 1),
Mon P Wang20adc9d2010-04-04 03:10:48 +00001066 "nul");
Owen Anderson1d0be152009-08-13 21:58:54 +00001067 B.CreateStore(Constant::getNullValue(Type::getInt8Ty(*Context)), Ptr);
Eric Christopher37c8b862009-10-07 21:14:25 +00001068
Owen Andersoneed707b2009-07-24 23:12:02 +00001069 return ConstantInt::get(CI->getType(), 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001070 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001071
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001072 if (FormatStr[1] == 's') {
Dan Gohmanf14d9192009-08-18 00:48:13 +00001073 // These optimizations require TargetData.
1074 if (!TD) return 0;
1075
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001076 // sprintf(dest, "%s", str) -> llvm.memcpy(dest, str, strlen(str)+1, 1)
Gabor Greifaee5dc12010-06-24 10:42:46 +00001077 if (!CI->getArgOperand(2)->getType()->isPointerTy()) return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001078
Gabor Greifaee5dc12010-06-24 10:42:46 +00001079 Value *Len = EmitStrLen(CI->getArgOperand(2), B, TD);
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001080 Value *IncLen = B.CreateAdd(Len,
Owen Andersoneed707b2009-07-24 23:12:02 +00001081 ConstantInt::get(Len->getType(), 1),
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001082 "leninc");
Gabor Greifa3997812010-07-22 10:37:47 +00001083 EmitMemCpy(CI->getArgOperand(0), CI->getArgOperand(2),
1084 IncLen, 1, false, B, TD);
Eric Christopher37c8b862009-10-07 21:14:25 +00001085
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001086 // The sprintf result is the unincremented number of bytes in the string.
1087 return B.CreateIntCast(Len, CI->getType(), false);
1088 }
1089 return 0;
1090 }
1091};
1092
1093//===---------------------------------------===//
1094// 'fwrite' Optimizations
1095
Chris Lattner3e8b6632009-09-02 06:11:42 +00001096struct FWriteOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001097 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001098 // Require a pointer, an integer, an integer, a pointer, returning integer.
1099 const FunctionType *FT = Callee->getFunctionType();
Duncan Sands1df98592010-02-16 11:11:14 +00001100 if (FT->getNumParams() != 4 || !FT->getParamType(0)->isPointerTy() ||
1101 !FT->getParamType(1)->isIntegerTy() ||
1102 !FT->getParamType(2)->isIntegerTy() ||
1103 !FT->getParamType(3)->isPointerTy() ||
1104 !FT->getReturnType()->isIntegerTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001105 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001106
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001107 // Get the element size and count.
Gabor Greifaee5dc12010-06-24 10:42:46 +00001108 ConstantInt *SizeC = dyn_cast<ConstantInt>(CI->getArgOperand(1));
1109 ConstantInt *CountC = dyn_cast<ConstantInt>(CI->getArgOperand(2));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001110 if (!SizeC || !CountC) return 0;
1111 uint64_t Bytes = SizeC->getZExtValue()*CountC->getZExtValue();
Eric Christopher37c8b862009-10-07 21:14:25 +00001112
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001113 // If this is writing zero records, remove the call (it's a noop).
1114 if (Bytes == 0)
Owen Andersoneed707b2009-07-24 23:12:02 +00001115 return ConstantInt::get(CI->getType(), 0);
Eric Christopher37c8b862009-10-07 21:14:25 +00001116
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001117 // If this is writing one byte, turn it into fputc.
1118 if (Bytes == 1) { // fwrite(S,1,1,F) -> fputc(S[0],F)
Gabor Greifaee5dc12010-06-24 10:42:46 +00001119 Value *Char = B.CreateLoad(CastToCStr(CI->getArgOperand(0), B), "char");
1120 EmitFPutC(Char, CI->getArgOperand(3), B, TD);
Owen Andersoneed707b2009-07-24 23:12:02 +00001121 return ConstantInt::get(CI->getType(), 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001122 }
1123
1124 return 0;
1125 }
1126};
1127
1128//===---------------------------------------===//
1129// 'fputs' Optimizations
1130
Chris Lattner3e8b6632009-09-02 06:11:42 +00001131struct FPutsOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001132 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Dan Gohmanf14d9192009-08-18 00:48:13 +00001133 // These optimizations require TargetData.
1134 if (!TD) return 0;
1135
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001136 // Require two pointers. Also, we can't optimize if return value is used.
1137 const FunctionType *FT = Callee->getFunctionType();
Duncan Sands1df98592010-02-16 11:11:14 +00001138 if (FT->getNumParams() != 2 || !FT->getParamType(0)->isPointerTy() ||
1139 !FT->getParamType(1)->isPointerTy() ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001140 !CI->use_empty())
1141 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001142
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001143 // fputs(s,F) --> fwrite(s,1,strlen(s),F)
Gabor Greifaee5dc12010-06-24 10:42:46 +00001144 uint64_t Len = GetStringLength(CI->getArgOperand(0));
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001145 if (!Len) return 0;
Gabor Greifaee5dc12010-06-24 10:42:46 +00001146 EmitFWrite(CI->getArgOperand(0),
Owen Anderson1d0be152009-08-13 21:58:54 +00001147 ConstantInt::get(TD->getIntPtrType(*Context), Len-1),
Gabor Greifaee5dc12010-06-24 10:42:46 +00001148 CI->getArgOperand(1), B, TD);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001149 return CI; // Known to have no uses (see above).
1150 }
1151};
1152
1153//===---------------------------------------===//
1154// 'fprintf' Optimizations
1155
Chris Lattner3e8b6632009-09-02 06:11:42 +00001156struct FPrintFOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001157 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001158 // Require two fixed paramters as pointers and integer result.
1159 const FunctionType *FT = Callee->getFunctionType();
Duncan Sands1df98592010-02-16 11:11:14 +00001160 if (FT->getNumParams() != 2 || !FT->getParamType(0)->isPointerTy() ||
1161 !FT->getParamType(1)->isPointerTy() ||
1162 !FT->getReturnType()->isIntegerTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001163 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001164
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001165 // All the optimizations depend on the format string.
Bill Wendling0582ae92009-03-13 04:39:26 +00001166 std::string FormatStr;
Gabor Greifaee5dc12010-06-24 10:42:46 +00001167 if (!GetConstantStringInfo(CI->getArgOperand(1), FormatStr))
Bill Wendling0582ae92009-03-13 04:39:26 +00001168 return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001169
1170 // fprintf(F, "foo") --> fwrite("foo", 3, 1, F)
Gabor Greif8e1ebff2010-06-30 12:42:43 +00001171 if (CI->getNumArgOperands() == 2) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001172 for (unsigned i = 0, e = FormatStr.size(); i != e; ++i)
1173 if (FormatStr[i] == '%') // Could handle %% -> % if we cared.
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001174 return 0; // We found a format specifier.
Dan Gohmanf14d9192009-08-18 00:48:13 +00001175
1176 // These optimizations require TargetData.
1177 if (!TD) return 0;
1178
Gabor Greifaee5dc12010-06-24 10:42:46 +00001179 EmitFWrite(CI->getArgOperand(1),
Mikhail Glushenkoved5cb592010-01-04 07:55:25 +00001180 ConstantInt::get(TD->getIntPtrType(*Context),
1181 FormatStr.size()),
Gabor Greifaee5dc12010-06-24 10:42:46 +00001182 CI->getArgOperand(0), B, TD);
Owen Andersoneed707b2009-07-24 23:12:02 +00001183 return ConstantInt::get(CI->getType(), FormatStr.size());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001184 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001185
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001186 // The remaining optimizations require the format string to be "%s" or "%c"
1187 // and have an extra operand.
Gabor Greif8e1ebff2010-06-30 12:42:43 +00001188 if (FormatStr.size() != 2 || FormatStr[0] != '%' ||
1189 CI->getNumArgOperands() < 3)
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001190 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001191
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001192 // Decode the second character of the format string.
1193 if (FormatStr[1] == 'c') {
Gabor Greifaee5dc12010-06-24 10:42:46 +00001194 // fprintf(F, "%c", chr) --> fputc(chr, F)
1195 if (!CI->getArgOperand(2)->getType()->isIntegerTy()) return 0;
1196 EmitFPutC(CI->getArgOperand(2), CI->getArgOperand(0), B, TD);
Owen Andersoneed707b2009-07-24 23:12:02 +00001197 return ConstantInt::get(CI->getType(), 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001198 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001199
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001200 if (FormatStr[1] == 's') {
Gabor Greifaee5dc12010-06-24 10:42:46 +00001201 // fprintf(F, "%s", str) --> fputs(str, F)
1202 if (!CI->getArgOperand(2)->getType()->isPointerTy() || !CI->use_empty())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001203 return 0;
Gabor Greifaee5dc12010-06-24 10:42:46 +00001204 EmitFPutS(CI->getArgOperand(2), CI->getArgOperand(0), B, TD);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001205 return CI;
1206 }
1207 return 0;
1208 }
1209};
1210
Bill Wendlingac178222008-05-05 21:37:59 +00001211} // end anonymous namespace.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001212
1213//===----------------------------------------------------------------------===//
1214// SimplifyLibCalls Pass Implementation
1215//===----------------------------------------------------------------------===//
1216
1217namespace {
1218 /// This pass optimizes well known library functions from libc and libm.
1219 ///
Chris Lattner3e8b6632009-09-02 06:11:42 +00001220 class SimplifyLibCalls : public FunctionPass {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001221 StringMap<LibCallOptimization*> Optimizations;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001222 // String and Memory LibCall Optimizations
Chris Lattnerf5b6bc72009-04-12 05:06:39 +00001223 StrCatOpt StrCat; StrNCatOpt StrNCat; StrChrOpt StrChr; StrCmpOpt StrCmp;
Evan Cheng0289b412010-03-23 15:48:04 +00001224 StrNCmpOpt StrNCmp; StrCpyOpt StrCpy; StrCpyOpt StrCpyChk;
1225 StrNCpyOpt StrNCpy; StrLenOpt StrLen;
Chris Lattner24604112009-12-16 09:32:05 +00001226 StrToOpt StrTo; StrStrOpt StrStr;
1227 MemCmpOpt MemCmp; MemCpyOpt MemCpy; MemMoveOpt MemMove; MemSetOpt MemSet;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001228 // Math Library Optimizations
Chris Lattnere818f772008-05-02 18:43:35 +00001229 PowOpt Pow; Exp2Opt Exp2; UnaryDoubleFPOpt UnaryDoubleFP;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001230 // Integer Optimizations
Chris Lattner313f0e62008-06-09 08:26:51 +00001231 FFSOpt FFS; AbsOpt Abs; IsDigitOpt IsDigit; IsAsciiOpt IsAscii;
1232 ToAsciiOpt ToAscii;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001233 // Formatting and IO Optimizations
1234 SPrintFOpt SPrintF; PrintFOpt PrintF;
1235 FWriteOpt FWrite; FPutsOpt FPuts; FPrintFOpt FPrintF;
Eric Christopher80bf1d52009-11-21 01:01:30 +00001236
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001237 bool Modified; // This is only used by doInitialization.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001238 public:
1239 static char ID; // Pass identification
Evan Chengeb8c6452010-03-24 20:19:04 +00001240 SimplifyLibCalls() : FunctionPass(&ID), StrCpy(false), StrCpyChk(true) {}
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001241 void InitOptimizations();
1242 bool runOnFunction(Function &F);
1243
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001244 void setDoesNotAccessMemory(Function &F);
1245 void setOnlyReadsMemory(Function &F);
1246 void setDoesNotThrow(Function &F);
1247 void setDoesNotCapture(Function &F, unsigned n);
1248 void setDoesNotAlias(Function &F, unsigned n);
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001249 bool doInitialization(Module &M);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001250
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001251 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001252 }
1253 };
1254 char SimplifyLibCalls::ID = 0;
1255} // end anonymous namespace.
1256
Owen Andersond13db2c2010-07-21 22:09:45 +00001257INITIALIZE_PASS(SimplifyLibCalls, "simplify-libcalls",
1258 "Simplify well-known library calls", false, false);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001259
1260// Public interface to the Simplify LibCalls pass.
1261FunctionPass *llvm::createSimplifyLibCallsPass() {
Eric Christopher37c8b862009-10-07 21:14:25 +00001262 return new SimplifyLibCalls();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001263}
1264
1265/// Optimizations - Populate the Optimizations map with all the optimizations
1266/// we know.
1267void SimplifyLibCalls::InitOptimizations() {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001268 // String and Memory LibCall Optimizations
1269 Optimizations["strcat"] = &StrCat;
Chris Lattnerf5b6bc72009-04-12 05:06:39 +00001270 Optimizations["strncat"] = &StrNCat;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001271 Optimizations["strchr"] = &StrChr;
1272 Optimizations["strcmp"] = &StrCmp;
1273 Optimizations["strncmp"] = &StrNCmp;
1274 Optimizations["strcpy"] = &StrCpy;
Chris Lattnerf5b6bc72009-04-12 05:06:39 +00001275 Optimizations["strncpy"] = &StrNCpy;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001276 Optimizations["strlen"] = &StrLen;
Nick Lewycky4c498412009-02-13 15:31:46 +00001277 Optimizations["strtol"] = &StrTo;
1278 Optimizations["strtod"] = &StrTo;
1279 Optimizations["strtof"] = &StrTo;
1280 Optimizations["strtoul"] = &StrTo;
1281 Optimizations["strtoll"] = &StrTo;
1282 Optimizations["strtold"] = &StrTo;
1283 Optimizations["strtoull"] = &StrTo;
Chris Lattner24604112009-12-16 09:32:05 +00001284 Optimizations["strstr"] = &StrStr;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001285 Optimizations["memcmp"] = &MemCmp;
1286 Optimizations["memcpy"] = &MemCpy;
Eli Friedmand83ae7d2008-11-30 08:32:11 +00001287 Optimizations["memmove"] = &MemMove;
1288 Optimizations["memset"] = &MemSet;
Eric Christopher37c8b862009-10-07 21:14:25 +00001289
Evan Cheng0289b412010-03-23 15:48:04 +00001290 // _chk variants of String and Memory LibCall Optimizations.
Evan Cheng0289b412010-03-23 15:48:04 +00001291 Optimizations["__strcpy_chk"] = &StrCpyChk;
1292
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001293 // Math Library Optimizations
1294 Optimizations["powf"] = &Pow;
1295 Optimizations["pow"] = &Pow;
1296 Optimizations["powl"] = &Pow;
Dale Johannesen53bfbbc2008-09-04 18:30:46 +00001297 Optimizations["llvm.pow.f32"] = &Pow;
1298 Optimizations["llvm.pow.f64"] = &Pow;
1299 Optimizations["llvm.pow.f80"] = &Pow;
1300 Optimizations["llvm.pow.f128"] = &Pow;
1301 Optimizations["llvm.pow.ppcf128"] = &Pow;
Chris Lattnere818f772008-05-02 18:43:35 +00001302 Optimizations["exp2l"] = &Exp2;
1303 Optimizations["exp2"] = &Exp2;
1304 Optimizations["exp2f"] = &Exp2;
Dale Johannesen53bfbbc2008-09-04 18:30:46 +00001305 Optimizations["llvm.exp2.ppcf128"] = &Exp2;
1306 Optimizations["llvm.exp2.f128"] = &Exp2;
1307 Optimizations["llvm.exp2.f80"] = &Exp2;
1308 Optimizations["llvm.exp2.f64"] = &Exp2;
1309 Optimizations["llvm.exp2.f32"] = &Exp2;
Eric Christopher37c8b862009-10-07 21:14:25 +00001310
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001311#ifdef HAVE_FLOORF
1312 Optimizations["floor"] = &UnaryDoubleFP;
1313#endif
1314#ifdef HAVE_CEILF
1315 Optimizations["ceil"] = &UnaryDoubleFP;
1316#endif
1317#ifdef HAVE_ROUNDF
1318 Optimizations["round"] = &UnaryDoubleFP;
1319#endif
1320#ifdef HAVE_RINTF
1321 Optimizations["rint"] = &UnaryDoubleFP;
1322#endif
1323#ifdef HAVE_NEARBYINTF
1324 Optimizations["nearbyint"] = &UnaryDoubleFP;
1325#endif
Eric Christopher37c8b862009-10-07 21:14:25 +00001326
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001327 // Integer Optimizations
1328 Optimizations["ffs"] = &FFS;
1329 Optimizations["ffsl"] = &FFS;
1330 Optimizations["ffsll"] = &FFS;
Chris Lattner313f0e62008-06-09 08:26:51 +00001331 Optimizations["abs"] = &Abs;
1332 Optimizations["labs"] = &Abs;
1333 Optimizations["llabs"] = &Abs;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001334 Optimizations["isdigit"] = &IsDigit;
1335 Optimizations["isascii"] = &IsAscii;
1336 Optimizations["toascii"] = &ToAscii;
Eric Christopher37c8b862009-10-07 21:14:25 +00001337
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001338 // Formatting and IO Optimizations
1339 Optimizations["sprintf"] = &SPrintF;
1340 Optimizations["printf"] = &PrintF;
1341 Optimizations["fwrite"] = &FWrite;
1342 Optimizations["fputs"] = &FPuts;
1343 Optimizations["fprintf"] = &FPrintF;
1344}
1345
1346
1347/// runOnFunction - Top level algorithm.
1348///
1349bool SimplifyLibCalls::runOnFunction(Function &F) {
1350 if (Optimizations.empty())
1351 InitOptimizations();
Eric Christopher37c8b862009-10-07 21:14:25 +00001352
Dan Gohmanf14d9192009-08-18 00:48:13 +00001353 const TargetData *TD = getAnalysisIfAvailable<TargetData>();
Eric Christopher37c8b862009-10-07 21:14:25 +00001354
Owen Andersone922c022009-07-22 00:24:57 +00001355 IRBuilder<> Builder(F.getContext());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001356
1357 bool Changed = false;
1358 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
1359 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ) {
1360 // Ignore non-calls.
1361 CallInst *CI = dyn_cast<CallInst>(I++);
1362 if (!CI) continue;
Eric Christopher37c8b862009-10-07 21:14:25 +00001363
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001364 // Ignore indirect calls and calls to non-external functions.
1365 Function *Callee = CI->getCalledFunction();
1366 if (Callee == 0 || !Callee->isDeclaration() ||
1367 !(Callee->hasExternalLinkage() || Callee->hasDLLImportLinkage()))
1368 continue;
Eric Christopher37c8b862009-10-07 21:14:25 +00001369
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001370 // Ignore unknown calls.
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001371 LibCallOptimization *LCO = Optimizations.lookup(Callee->getName());
1372 if (!LCO) continue;
Eric Christopher37c8b862009-10-07 21:14:25 +00001373
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001374 // Set the builder to the instruction after the call.
1375 Builder.SetInsertPoint(BB, I);
Eric Christopher37c8b862009-10-07 21:14:25 +00001376
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001377 // Try to optimize this call.
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001378 Value *Result = LCO->OptimizeCall(CI, TD, Builder);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001379 if (Result == 0) continue;
1380
David Greene6a6b90e2010-01-05 01:27:21 +00001381 DEBUG(dbgs() << "SimplifyLibCalls simplified: " << *CI;
1382 dbgs() << " into: " << *Result << "\n");
Eric Christopher37c8b862009-10-07 21:14:25 +00001383
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001384 // Something changed!
1385 Changed = true;
1386 ++NumSimplified;
Eric Christopher37c8b862009-10-07 21:14:25 +00001387
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001388 // Inspect the instruction after the call (which was potentially just
1389 // added) next.
1390 I = CI; ++I;
Eric Christopher37c8b862009-10-07 21:14:25 +00001391
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001392 if (CI != Result && !CI->use_empty()) {
1393 CI->replaceAllUsesWith(Result);
1394 if (!Result->hasName())
1395 Result->takeName(CI);
1396 }
1397 CI->eraseFromParent();
1398 }
1399 }
1400 return Changed;
1401}
1402
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001403// Utility methods for doInitialization.
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001404
1405void SimplifyLibCalls::setDoesNotAccessMemory(Function &F) {
1406 if (!F.doesNotAccessMemory()) {
1407 F.setDoesNotAccessMemory();
1408 ++NumAnnotated;
1409 Modified = true;
1410 }
1411}
1412void SimplifyLibCalls::setOnlyReadsMemory(Function &F) {
1413 if (!F.onlyReadsMemory()) {
1414 F.setOnlyReadsMemory();
1415 ++NumAnnotated;
1416 Modified = true;
1417 }
1418}
1419void SimplifyLibCalls::setDoesNotThrow(Function &F) {
1420 if (!F.doesNotThrow()) {
1421 F.setDoesNotThrow();
1422 ++NumAnnotated;
1423 Modified = true;
1424 }
1425}
1426void SimplifyLibCalls::setDoesNotCapture(Function &F, unsigned n) {
1427 if (!F.doesNotCapture(n)) {
1428 F.setDoesNotCapture(n);
1429 ++NumAnnotated;
1430 Modified = true;
1431 }
1432}
1433void SimplifyLibCalls::setDoesNotAlias(Function &F, unsigned n) {
1434 if (!F.doesNotAlias(n)) {
1435 F.setDoesNotAlias(n);
1436 ++NumAnnotated;
1437 Modified = true;
1438 }
1439}
1440
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001441/// doInitialization - Add attributes to well-known functions.
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001442///
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001443bool SimplifyLibCalls::doInitialization(Module &M) {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001444 Modified = false;
1445 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
1446 Function &F = *I;
1447 if (!F.isDeclaration())
1448 continue;
1449
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001450 if (!F.hasName())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001451 continue;
1452
1453 const FunctionType *FTy = F.getFunctionType();
1454
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001455 StringRef Name = F.getName();
1456 switch (Name[0]) {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001457 case 's':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001458 if (Name == "strlen") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001459 if (FTy->getNumParams() != 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001460 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001461 continue;
1462 setOnlyReadsMemory(F);
1463 setDoesNotThrow(F);
1464 setDoesNotCapture(F, 1);
Benjamin Kramer4446b042010-03-16 19:36:43 +00001465 } else if (Name == "strchr" ||
1466 Name == "strrchr") {
1467 if (FTy->getNumParams() != 2 ||
1468 !FTy->getParamType(0)->isPointerTy() ||
1469 !FTy->getParamType(1)->isIntegerTy())
1470 continue;
1471 setOnlyReadsMemory(F);
1472 setDoesNotThrow(F);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001473 } else if (Name == "strcpy" ||
1474 Name == "stpcpy" ||
1475 Name == "strcat" ||
1476 Name == "strtol" ||
1477 Name == "strtod" ||
1478 Name == "strtof" ||
1479 Name == "strtoul" ||
1480 Name == "strtoll" ||
1481 Name == "strtold" ||
1482 Name == "strncat" ||
1483 Name == "strncpy" ||
1484 Name == "strtoull") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001485 if (FTy->getNumParams() < 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001486 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001487 continue;
1488 setDoesNotThrow(F);
1489 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001490 } else if (Name == "strxfrm") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001491 if (FTy->getNumParams() != 3 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001492 !FTy->getParamType(0)->isPointerTy() ||
1493 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001494 continue;
1495 setDoesNotThrow(F);
1496 setDoesNotCapture(F, 1);
1497 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001498 } else if (Name == "strcmp" ||
1499 Name == "strspn" ||
1500 Name == "strncmp" ||
Benjamin Kramer4446b042010-03-16 19:36:43 +00001501 Name == "strcspn" ||
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001502 Name == "strcoll" ||
1503 Name == "strcasecmp" ||
1504 Name == "strncasecmp") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001505 if (FTy->getNumParams() < 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001506 !FTy->getParamType(0)->isPointerTy() ||
1507 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001508 continue;
1509 setOnlyReadsMemory(F);
1510 setDoesNotThrow(F);
1511 setDoesNotCapture(F, 1);
1512 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001513 } else if (Name == "strstr" ||
1514 Name == "strpbrk") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001515 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001516 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001517 continue;
1518 setOnlyReadsMemory(F);
1519 setDoesNotThrow(F);
1520 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001521 } else if (Name == "strtok" ||
1522 Name == "strtok_r") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001523 if (FTy->getNumParams() < 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001524 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001525 continue;
1526 setDoesNotThrow(F);
1527 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001528 } else if (Name == "scanf" ||
1529 Name == "setbuf" ||
1530 Name == "setvbuf") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001531 if (FTy->getNumParams() < 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001532 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001533 continue;
1534 setDoesNotThrow(F);
1535 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001536 } else if (Name == "strdup" ||
1537 Name == "strndup") {
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001538 if (FTy->getNumParams() < 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001539 !FTy->getReturnType()->isPointerTy() ||
1540 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001541 continue;
1542 setDoesNotThrow(F);
1543 setDoesNotAlias(F, 0);
1544 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001545 } else if (Name == "stat" ||
1546 Name == "sscanf" ||
1547 Name == "sprintf" ||
1548 Name == "statvfs") {
Nick Lewycky225f7472009-02-15 22:47:25 +00001549 if (FTy->getNumParams() < 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001550 !FTy->getParamType(0)->isPointerTy() ||
1551 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001552 continue;
1553 setDoesNotThrow(F);
1554 setDoesNotCapture(F, 1);
1555 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001556 } else if (Name == "snprintf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001557 if (FTy->getNumParams() != 3 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001558 !FTy->getParamType(0)->isPointerTy() ||
1559 !FTy->getParamType(2)->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001560 continue;
1561 setDoesNotThrow(F);
1562 setDoesNotCapture(F, 1);
1563 setDoesNotCapture(F, 3);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001564 } else if (Name == "setitimer") {
Nick Lewycky225f7472009-02-15 22:47:25 +00001565 if (FTy->getNumParams() != 3 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001566 !FTy->getParamType(1)->isPointerTy() ||
1567 !FTy->getParamType(2)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00001568 continue;
1569 setDoesNotThrow(F);
1570 setDoesNotCapture(F, 2);
1571 setDoesNotCapture(F, 3);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001572 } else if (Name == "system") {
Nick Lewycky225f7472009-02-15 22:47:25 +00001573 if (FTy->getNumParams() != 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001574 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00001575 continue;
1576 // May throw; "system" is a valid pthread cancellation point.
1577 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001578 }
1579 break;
1580 case 'm':
Victor Hernandez83d63912009-09-18 22:35:49 +00001581 if (Name == "malloc") {
1582 if (FTy->getNumParams() != 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001583 !FTy->getReturnType()->isPointerTy())
Victor Hernandez83d63912009-09-18 22:35:49 +00001584 continue;
1585 setDoesNotThrow(F);
1586 setDoesNotAlias(F, 0);
1587 } else if (Name == "memcmp") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001588 if (FTy->getNumParams() != 3 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001589 !FTy->getParamType(0)->isPointerTy() ||
1590 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001591 continue;
1592 setOnlyReadsMemory(F);
1593 setDoesNotThrow(F);
1594 setDoesNotCapture(F, 1);
1595 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001596 } else if (Name == "memchr" ||
1597 Name == "memrchr") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001598 if (FTy->getNumParams() != 3)
1599 continue;
1600 setOnlyReadsMemory(F);
1601 setDoesNotThrow(F);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001602 } else if (Name == "modf" ||
1603 Name == "modff" ||
1604 Name == "modfl" ||
1605 Name == "memcpy" ||
1606 Name == "memccpy" ||
1607 Name == "memmove") {
Nick Lewycky225f7472009-02-15 22:47:25 +00001608 if (FTy->getNumParams() < 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001609 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001610 continue;
1611 setDoesNotThrow(F);
1612 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001613 } else if (Name == "memalign") {
Duncan Sands1df98592010-02-16 11:11:14 +00001614 if (!FTy->getReturnType()->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001615 continue;
1616 setDoesNotAlias(F, 0);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001617 } else if (Name == "mkdir" ||
1618 Name == "mktime") {
Nick Lewycky225f7472009-02-15 22:47:25 +00001619 if (FTy->getNumParams() == 0 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001620 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00001621 continue;
1622 setDoesNotThrow(F);
1623 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001624 }
1625 break;
1626 case 'r':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001627 if (Name == "realloc") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001628 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001629 !FTy->getParamType(0)->isPointerTy() ||
1630 !FTy->getReturnType()->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001631 continue;
1632 setDoesNotThrow(F);
1633 setDoesNotAlias(F, 0);
1634 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001635 } else if (Name == "read") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001636 if (FTy->getNumParams() != 3 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001637 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001638 continue;
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001639 // May throw; "read" is a valid pthread cancellation point.
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001640 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001641 } else if (Name == "rmdir" ||
1642 Name == "rewind" ||
1643 Name == "remove" ||
1644 Name == "realpath") {
Nick Lewycky225f7472009-02-15 22:47:25 +00001645 if (FTy->getNumParams() < 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001646 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001647 continue;
1648 setDoesNotThrow(F);
1649 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001650 } else if (Name == "rename" ||
1651 Name == "readlink") {
Nick Lewycky225f7472009-02-15 22:47:25 +00001652 if (FTy->getNumParams() < 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001653 !FTy->getParamType(0)->isPointerTy() ||
1654 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001655 continue;
1656 setDoesNotThrow(F);
1657 setDoesNotCapture(F, 1);
1658 setDoesNotCapture(F, 2);
1659 }
1660 break;
1661 case 'w':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001662 if (Name == "write") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001663 if (FTy->getNumParams() != 3 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001664 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001665 continue;
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001666 // May throw; "write" is a valid pthread cancellation point.
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001667 setDoesNotCapture(F, 2);
1668 }
1669 break;
1670 case 'b':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001671 if (Name == "bcopy") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001672 if (FTy->getNumParams() != 3 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001673 !FTy->getParamType(0)->isPointerTy() ||
1674 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001675 continue;
1676 setDoesNotThrow(F);
1677 setDoesNotCapture(F, 1);
1678 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001679 } else if (Name == "bcmp") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001680 if (FTy->getNumParams() != 3 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001681 !FTy->getParamType(0)->isPointerTy() ||
1682 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001683 continue;
1684 setDoesNotThrow(F);
1685 setOnlyReadsMemory(F);
1686 setDoesNotCapture(F, 1);
1687 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001688 } else if (Name == "bzero") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001689 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001690 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001691 continue;
1692 setDoesNotThrow(F);
1693 setDoesNotCapture(F, 1);
1694 }
1695 break;
1696 case 'c':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001697 if (Name == "calloc") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001698 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001699 !FTy->getReturnType()->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001700 continue;
1701 setDoesNotThrow(F);
1702 setDoesNotAlias(F, 0);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001703 } else if (Name == "chmod" ||
1704 Name == "chown" ||
1705 Name == "ctermid" ||
1706 Name == "clearerr" ||
1707 Name == "closedir") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001708 if (FTy->getNumParams() == 0 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001709 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001710 continue;
1711 setDoesNotThrow(F);
1712 setDoesNotCapture(F, 1);
1713 }
1714 break;
1715 case 'a':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001716 if (Name == "atoi" ||
1717 Name == "atol" ||
1718 Name == "atof" ||
1719 Name == "atoll") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001720 if (FTy->getNumParams() != 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001721 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001722 continue;
1723 setDoesNotThrow(F);
1724 setOnlyReadsMemory(F);
1725 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001726 } else if (Name == "access") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001727 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001728 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001729 continue;
1730 setDoesNotThrow(F);
1731 setDoesNotCapture(F, 1);
1732 }
1733 break;
1734 case 'f':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001735 if (Name == "fopen") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001736 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001737 !FTy->getReturnType()->isPointerTy() ||
1738 !FTy->getParamType(0)->isPointerTy() ||
1739 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001740 continue;
1741 setDoesNotThrow(F);
1742 setDoesNotAlias(F, 0);
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001743 setDoesNotCapture(F, 1);
1744 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001745 } else if (Name == "fdopen") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001746 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001747 !FTy->getReturnType()->isPointerTy() ||
1748 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001749 continue;
1750 setDoesNotThrow(F);
1751 setDoesNotAlias(F, 0);
1752 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001753 } else if (Name == "feof" ||
1754 Name == "free" ||
1755 Name == "fseek" ||
1756 Name == "ftell" ||
1757 Name == "fgetc" ||
1758 Name == "fseeko" ||
1759 Name == "ftello" ||
1760 Name == "fileno" ||
1761 Name == "fflush" ||
1762 Name == "fclose" ||
1763 Name == "fsetpos" ||
1764 Name == "flockfile" ||
1765 Name == "funlockfile" ||
1766 Name == "ftrylockfile") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001767 if (FTy->getNumParams() == 0 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001768 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001769 continue;
1770 setDoesNotThrow(F);
1771 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001772 } else if (Name == "ferror") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001773 if (FTy->getNumParams() != 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001774 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001775 continue;
1776 setDoesNotThrow(F);
1777 setDoesNotCapture(F, 1);
1778 setOnlyReadsMemory(F);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001779 } else if (Name == "fputc" ||
1780 Name == "fstat" ||
1781 Name == "frexp" ||
1782 Name == "frexpf" ||
1783 Name == "frexpl" ||
1784 Name == "fstatvfs") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001785 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001786 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001787 continue;
1788 setDoesNotThrow(F);
1789 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001790 } else if (Name == "fgets") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001791 if (FTy->getNumParams() != 3 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001792 !FTy->getParamType(0)->isPointerTy() ||
1793 !FTy->getParamType(2)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001794 continue;
1795 setDoesNotThrow(F);
1796 setDoesNotCapture(F, 3);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001797 } else if (Name == "fread" ||
1798 Name == "fwrite") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001799 if (FTy->getNumParams() != 4 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001800 !FTy->getParamType(0)->isPointerTy() ||
1801 !FTy->getParamType(3)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001802 continue;
1803 setDoesNotThrow(F);
1804 setDoesNotCapture(F, 1);
1805 setDoesNotCapture(F, 4);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001806 } else if (Name == "fputs" ||
1807 Name == "fscanf" ||
1808 Name == "fprintf" ||
1809 Name == "fgetpos") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001810 if (FTy->getNumParams() < 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001811 !FTy->getParamType(0)->isPointerTy() ||
1812 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001813 continue;
1814 setDoesNotThrow(F);
1815 setDoesNotCapture(F, 1);
1816 setDoesNotCapture(F, 2);
1817 }
1818 break;
1819 case 'g':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001820 if (Name == "getc" ||
1821 Name == "getlogin_r" ||
1822 Name == "getc_unlocked") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001823 if (FTy->getNumParams() == 0 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001824 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001825 continue;
1826 setDoesNotThrow(F);
1827 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001828 } else if (Name == "getenv") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001829 if (FTy->getNumParams() != 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001830 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001831 continue;
1832 setDoesNotThrow(F);
1833 setOnlyReadsMemory(F);
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001834 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001835 } else if (Name == "gets" ||
1836 Name == "getchar") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001837 setDoesNotThrow(F);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001838 } else if (Name == "getitimer") {
Nick Lewycky225f7472009-02-15 22:47:25 +00001839 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001840 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00001841 continue;
1842 setDoesNotThrow(F);
1843 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001844 } else if (Name == "getpwnam") {
Nick Lewycky225f7472009-02-15 22:47:25 +00001845 if (FTy->getNumParams() != 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001846 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00001847 continue;
1848 setDoesNotThrow(F);
1849 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001850 }
1851 break;
1852 case 'u':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001853 if (Name == "ungetc") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001854 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001855 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001856 continue;
1857 setDoesNotThrow(F);
1858 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001859 } else if (Name == "uname" ||
1860 Name == "unlink" ||
1861 Name == "unsetenv") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001862 if (FTy->getNumParams() != 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001863 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001864 continue;
1865 setDoesNotThrow(F);
1866 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001867 } else if (Name == "utime" ||
1868 Name == "utimes") {
Nick Lewycky225f7472009-02-15 22:47:25 +00001869 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001870 !FTy->getParamType(0)->isPointerTy() ||
1871 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00001872 continue;
1873 setDoesNotThrow(F);
1874 setDoesNotCapture(F, 1);
1875 setDoesNotCapture(F, 2);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001876 }
1877 break;
1878 case 'p':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001879 if (Name == "putc") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001880 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001881 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001882 continue;
1883 setDoesNotThrow(F);
1884 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001885 } else if (Name == "puts" ||
1886 Name == "printf" ||
1887 Name == "perror") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001888 if (FTy->getNumParams() != 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001889 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001890 continue;
1891 setDoesNotThrow(F);
1892 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001893 } else if (Name == "pread" ||
1894 Name == "pwrite") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001895 if (FTy->getNumParams() != 4 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001896 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001897 continue;
1898 // May throw; these are valid pthread cancellation points.
1899 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001900 } else if (Name == "putchar") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001901 setDoesNotThrow(F);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001902 } else if (Name == "popen") {
Nick Lewycky225f7472009-02-15 22:47:25 +00001903 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001904 !FTy->getReturnType()->isPointerTy() ||
1905 !FTy->getParamType(0)->isPointerTy() ||
1906 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00001907 continue;
1908 setDoesNotThrow(F);
1909 setDoesNotAlias(F, 0);
1910 setDoesNotCapture(F, 1);
1911 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001912 } else if (Name == "pclose") {
Nick Lewycky225f7472009-02-15 22:47:25 +00001913 if (FTy->getNumParams() != 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001914 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00001915 continue;
1916 setDoesNotThrow(F);
1917 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001918 }
1919 break;
1920 case 'v':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001921 if (Name == "vscanf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001922 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001923 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001924 continue;
1925 setDoesNotThrow(F);
1926 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001927 } else if (Name == "vsscanf" ||
1928 Name == "vfscanf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001929 if (FTy->getNumParams() != 3 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001930 !FTy->getParamType(1)->isPointerTy() ||
1931 !FTy->getParamType(2)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001932 continue;
1933 setDoesNotThrow(F);
1934 setDoesNotCapture(F, 1);
1935 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001936 } else if (Name == "valloc") {
Duncan Sands1df98592010-02-16 11:11:14 +00001937 if (!FTy->getReturnType()->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001938 continue;
1939 setDoesNotThrow(F);
1940 setDoesNotAlias(F, 0);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001941 } else if (Name == "vprintf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001942 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001943 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001944 continue;
1945 setDoesNotThrow(F);
1946 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001947 } else if (Name == "vfprintf" ||
1948 Name == "vsprintf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001949 if (FTy->getNumParams() != 3 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001950 !FTy->getParamType(0)->isPointerTy() ||
1951 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001952 continue;
1953 setDoesNotThrow(F);
1954 setDoesNotCapture(F, 1);
1955 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001956 } else if (Name == "vsnprintf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001957 if (FTy->getNumParams() != 4 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001958 !FTy->getParamType(0)->isPointerTy() ||
1959 !FTy->getParamType(2)->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001960 continue;
1961 setDoesNotThrow(F);
1962 setDoesNotCapture(F, 1);
1963 setDoesNotCapture(F, 3);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001964 }
1965 break;
1966 case 'o':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001967 if (Name == "open") {
Nick Lewycky225f7472009-02-15 22:47:25 +00001968 if (FTy->getNumParams() < 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001969 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00001970 continue;
1971 // May throw; "open" is a valid pthread cancellation point.
1972 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001973 } else if (Name == "opendir") {
Nick Lewycky225f7472009-02-15 22:47:25 +00001974 if (FTy->getNumParams() != 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001975 !FTy->getReturnType()->isPointerTy() ||
1976 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001977 continue;
1978 setDoesNotThrow(F);
1979 setDoesNotAlias(F, 0);
Nick Lewycky225f7472009-02-15 22:47:25 +00001980 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001981 }
1982 break;
1983 case 't':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001984 if (Name == "tmpfile") {
Duncan Sands1df98592010-02-16 11:11:14 +00001985 if (!FTy->getReturnType()->isPointerTy())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001986 continue;
1987 setDoesNotThrow(F);
1988 setDoesNotAlias(F, 0);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001989 } else if (Name == "times") {
Nick Lewycky225f7472009-02-15 22:47:25 +00001990 if (FTy->getNumParams() != 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00001991 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00001992 continue;
1993 setDoesNotThrow(F);
1994 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001995 }
Nick Lewycky225f7472009-02-15 22:47:25 +00001996 break;
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001997 case 'h':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001998 if (Name == "htonl" ||
1999 Name == "htons") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002000 setDoesNotThrow(F);
2001 setDoesNotAccessMemory(F);
2002 }
2003 break;
2004 case 'n':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002005 if (Name == "ntohl" ||
2006 Name == "ntohs") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002007 setDoesNotThrow(F);
2008 setDoesNotAccessMemory(F);
2009 }
Nick Lewycky225f7472009-02-15 22:47:25 +00002010 break;
2011 case 'l':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002012 if (Name == "lstat") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002013 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00002014 !FTy->getParamType(0)->isPointerTy() ||
2015 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00002016 continue;
2017 setDoesNotThrow(F);
2018 setDoesNotCapture(F, 1);
2019 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002020 } else if (Name == "lchown") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002021 if (FTy->getNumParams() != 3 ||
Duncan Sands1df98592010-02-16 11:11:14 +00002022 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00002023 continue;
2024 setDoesNotThrow(F);
2025 setDoesNotCapture(F, 1);
2026 }
2027 break;
2028 case 'q':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002029 if (Name == "qsort") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002030 if (FTy->getNumParams() != 4 ||
Duncan Sands1df98592010-02-16 11:11:14 +00002031 !FTy->getParamType(3)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00002032 continue;
2033 // May throw; places call through function pointer.
2034 setDoesNotCapture(F, 4);
2035 }
2036 break;
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002037 case '_':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002038 if (Name == "__strdup" ||
2039 Name == "__strndup") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002040 if (FTy->getNumParams() < 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00002041 !FTy->getReturnType()->isPointerTy() ||
2042 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002043 continue;
2044 setDoesNotThrow(F);
2045 setDoesNotAlias(F, 0);
2046 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002047 } else if (Name == "__strtok_r") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002048 if (FTy->getNumParams() != 3 ||
Duncan Sands1df98592010-02-16 11:11:14 +00002049 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002050 continue;
2051 setDoesNotThrow(F);
2052 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002053 } else if (Name == "_IO_getc") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002054 if (FTy->getNumParams() != 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00002055 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002056 continue;
2057 setDoesNotThrow(F);
2058 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002059 } else if (Name == "_IO_putc") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002060 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00002061 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002062 continue;
2063 setDoesNotThrow(F);
2064 setDoesNotCapture(F, 2);
2065 }
Nick Lewycky225f7472009-02-15 22:47:25 +00002066 break;
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002067 case 1:
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002068 if (Name == "\1__isoc99_scanf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002069 if (FTy->getNumParams() < 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00002070 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002071 continue;
2072 setDoesNotThrow(F);
2073 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002074 } else if (Name == "\1stat64" ||
2075 Name == "\1lstat64" ||
2076 Name == "\1statvfs64" ||
2077 Name == "\1__isoc99_sscanf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002078 if (FTy->getNumParams() < 1 ||
Duncan Sands1df98592010-02-16 11:11:14 +00002079 !FTy->getParamType(0)->isPointerTy() ||
2080 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002081 continue;
2082 setDoesNotThrow(F);
2083 setDoesNotCapture(F, 1);
2084 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002085 } else if (Name == "\1fopen64") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002086 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00002087 !FTy->getReturnType()->isPointerTy() ||
2088 !FTy->getParamType(0)->isPointerTy() ||
2089 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00002090 continue;
2091 setDoesNotThrow(F);
2092 setDoesNotAlias(F, 0);
2093 setDoesNotCapture(F, 1);
2094 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002095 } else if (Name == "\1fseeko64" ||
2096 Name == "\1ftello64") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002097 if (FTy->getNumParams() == 0 ||
Duncan Sands1df98592010-02-16 11:11:14 +00002098 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00002099 continue;
2100 setDoesNotThrow(F);
2101 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002102 } else if (Name == "\1tmpfile64") {
Duncan Sands1df98592010-02-16 11:11:14 +00002103 if (!FTy->getReturnType()->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00002104 continue;
2105 setDoesNotThrow(F);
2106 setDoesNotAlias(F, 0);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002107 } else if (Name == "\1fstat64" ||
2108 Name == "\1fstatvfs64") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002109 if (FTy->getNumParams() != 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00002110 !FTy->getParamType(1)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00002111 continue;
2112 setDoesNotThrow(F);
2113 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002114 } else if (Name == "\1open64") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002115 if (FTy->getNumParams() < 2 ||
Duncan Sands1df98592010-02-16 11:11:14 +00002116 !FTy->getParamType(0)->isPointerTy())
Nick Lewycky225f7472009-02-15 22:47:25 +00002117 continue;
2118 // May throw; "open" is a valid pthread cancellation point.
2119 setDoesNotCapture(F, 1);
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002120 }
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002121 break;
2122 }
2123 }
2124 return Modified;
2125}
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002126
2127// TODO:
2128// Additional cases that we need to add to this file:
2129//
2130// cbrt:
2131// * cbrt(expN(X)) -> expN(x/3)
2132// * cbrt(sqrt(x)) -> pow(x,1/6)
2133// * cbrt(sqrt(x)) -> pow(x,1/9)
2134//
2135// cos, cosf, cosl:
2136// * cos(-x) -> cos(x)
2137//
2138// exp, expf, expl:
2139// * exp(log(x)) -> x
2140//
2141// log, logf, logl:
2142// * log(exp(x)) -> x
2143// * log(x**y) -> y*log(x)
2144// * log(exp(y)) -> y*log(e)
2145// * log(exp2(y)) -> y*log(2)
2146// * log(exp10(y)) -> y*log(10)
2147// * log(sqrt(x)) -> 0.5*log(x)
2148// * log(pow(x,y)) -> y*log(x)
2149//
2150// lround, lroundf, lroundl:
2151// * lround(cnst) -> cnst'
2152//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002153// pow, powf, powl:
2154// * pow(exp(x),y) -> exp(x*y)
2155// * pow(sqrt(x),y) -> pow(x,y*0.5)
2156// * pow(pow(x,y),z)-> pow(x,y*z)
2157//
2158// puts:
2159// * puts("") -> putchar("\n")
2160//
2161// round, roundf, roundl:
2162// * round(cnst) -> cnst'
2163//
2164// signbit:
2165// * signbit(cnst) -> cnst'
2166// * signbit(nncst) -> 0 (if pstv is a non-negative constant)
2167//
2168// sqrt, sqrtf, sqrtl:
2169// * sqrt(expN(x)) -> expN(x*0.5)
2170// * sqrt(Nroot(x)) -> pow(x,1/(2*N))
2171// * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
2172//
2173// stpcpy:
2174// * stpcpy(str, "literal") ->
2175// llvm.memcpy(str,"literal",strlen("literal")+1,1)
2176// strrchr:
2177// * strrchr(s,c) -> reverse_offset_of_in(c,s)
2178// (if c is a constant integer and s is a constant string)
2179// * strrchr(s1,0) -> strchr(s1,0)
2180//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002181// strpbrk:
2182// * strpbrk(s,a) -> offset_in_for(s,a)
2183// (if s and a are both constant strings)
2184// * strpbrk(s,"") -> 0
2185// * strpbrk(s,a) -> strchr(s,a[0]) (if a is constant string of length 1)
2186//
2187// strspn, strcspn:
2188// * strspn(s,a) -> const_int (if both args are constant)
2189// * strspn("",a) -> 0
2190// * strspn(s,"") -> 0
2191// * strcspn(s,a) -> const_int (if both args are constant)
2192// * strcspn("",a) -> 0
2193// * strcspn(s,"") -> strlen(a)
2194//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002195// tan, tanf, tanl:
2196// * tan(atan(x)) -> x
2197//
2198// trunc, truncf, truncl:
2199// * trunc(cnst) -> cnst'
2200//
2201//