blob: 837024f62673ed0543f9a566ba8e71753ff47727 [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
12// library functions). For example, a call to the function "exit(3)" that
13// occurs within the main() function can be transformed into a simple "return 3"
14// instruction. Any optimization that takes this form (replace call to library
15// function with simpler code that provides the same result) belongs in this
16// file.
17//
18//===----------------------------------------------------------------------===//
19
20#define DEBUG_TYPE "simplify-libcalls"
21#include "llvm/Transforms/Scalar.h"
22#include "llvm/Intrinsics.h"
Owen Andersonfa5cbd62009-07-03 19:42:02 +000023#include "llvm/LLVMContext.h"
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000024#include "llvm/Module.h"
25#include "llvm/Pass.h"
26#include "llvm/Support/IRBuilder.h"
Evan Cheng0ff39b32008-06-30 07:31:25 +000027#include "llvm/Analysis/ValueTracking.h"
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000028#include "llvm/Target/TargetData.h"
29#include "llvm/ADT/SmallPtrSet.h"
30#include "llvm/ADT/StringMap.h"
31#include "llvm/ADT/Statistic.h"
32#include "llvm/Support/Compiler.h"
Chris Lattner56b4f2b2008-05-01 06:39:12 +000033#include "llvm/Support/Debug.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 {
47class VISIBILITY_HIDDEN LibCallOptimization {
48protected:
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:
53 LibCallOptimization() { }
54 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 Christopher7a61d702008-08-08 19:39:37 +000061 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B)
62 =0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000063
Eric Christopher7a61d702008-08-08 19:39:37 +000064 Value *OptimizeCall(CallInst *CI, const TargetData &TD, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000065 Caller = CI->getParent()->getParent();
66 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();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000069 return CallOptimizer(CI->getCalledFunction(), CI, B);
70 }
71
72 /// CastToCStr - Return V if it is an i8*, otherwise cast it to i8*.
Eric Christopher7a61d702008-08-08 19:39:37 +000073 Value *CastToCStr(Value *V, IRBuilder<> &B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000074
75 /// EmitStrLen - Emit a call to the strlen function to the builder, for the
76 /// specified pointer. Ptr is required to be some pointer type, and the
77 /// return value has 'intptr_t' type.
Eric Christopher7a61d702008-08-08 19:39:37 +000078 Value *EmitStrLen(Value *Ptr, IRBuilder<> &B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000079
80 /// EmitMemCpy - Emit a call to the memcpy function to the builder. This
81 /// always expects that the size has type 'intptr_t' and Dst/Src are pointers.
82 Value *EmitMemCpy(Value *Dst, Value *Src, Value *Len,
Eric Christopher7a61d702008-08-08 19:39:37 +000083 unsigned Align, IRBuilder<> &B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000084
85 /// EmitMemChr - Emit a call to the memchr function. This assumes that Ptr is
86 /// a pointer, Val is an i32 value, and Len is an 'intptr_t' value.
Eric Christopher7a61d702008-08-08 19:39:37 +000087 Value *EmitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilder<> &B);
Nick Lewycky13a09e22008-12-21 00:19:21 +000088
89 /// EmitMemCmp - Emit a call to the memcmp function.
90 Value *EmitMemCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B);
91
Chris Lattnerf5b6bc72009-04-12 05:06:39 +000092 /// EmitMemSet - Emit a call to the memset function
93 Value *EmitMemSet(Value *Dst, Value *Val, Value *Len, IRBuilder<> &B);
94
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000095 /// EmitUnaryFloatFnCall - Emit a call to the unary function named 'Name' (e.g.
96 /// 'floor'). This function is known to take a single of type matching 'Op'
97 /// and returns one value with the same type. If 'Op' is a long double, 'l'
98 /// is added as the suffix of name, if 'Op' is a float, we add a 'f' suffix.
Eric Christopher7a61d702008-08-08 19:39:37 +000099 Value *EmitUnaryFloatFnCall(Value *Op, const char *Name, IRBuilder<> &B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000100
101 /// EmitPutChar - Emit a call to the putchar function. This assumes that Char
102 /// is an integer.
Eric Christopher7a61d702008-08-08 19:39:37 +0000103 void EmitPutChar(Value *Char, IRBuilder<> &B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000104
105 /// EmitPutS - Emit a call to the puts function. This assumes that Str is
106 /// some pointer.
Eric Christopher7a61d702008-08-08 19:39:37 +0000107 void EmitPutS(Value *Str, IRBuilder<> &B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000108
109 /// EmitFPutC - Emit a call to the fputc function. This assumes that Char is
110 /// an i32, and File is a pointer to FILE.
Eric Christopher7a61d702008-08-08 19:39:37 +0000111 void EmitFPutC(Value *Char, Value *File, IRBuilder<> &B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000112
113 /// EmitFPutS - Emit a call to the puts function. Str is required to be a
114 /// pointer and File is a pointer to FILE.
Eric Christopher7a61d702008-08-08 19:39:37 +0000115 void EmitFPutS(Value *Str, Value *File, IRBuilder<> &B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000116
117 /// EmitFWrite - Emit a call to the fwrite function. This assumes that Ptr is
118 /// a pointer, Size is an 'intptr_t', and File is a pointer to FILE.
Eric Christopher7a61d702008-08-08 19:39:37 +0000119 void EmitFWrite(Value *Ptr, Value *Size, Value *File, IRBuilder<> &B);
Nick Lewycky13a09e22008-12-21 00:19:21 +0000120
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000121};
122} // End anonymous namespace.
123
124/// CastToCStr - Return V if it is an i8*, otherwise cast it to i8*.
Eric Christopher7a61d702008-08-08 19:39:37 +0000125Value *LibCallOptimization::CastToCStr(Value *V, IRBuilder<> &B) {
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000126 return
127 B.CreateBitCast(V, Context->getPointerTypeUnqual(Type::Int8Ty), "cstr");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000128}
129
130/// EmitStrLen - Emit a call to the strlen function to the builder, for the
131/// specified pointer. This always returns an integer value of size intptr_t.
Eric Christopher7a61d702008-08-08 19:39:37 +0000132Value *LibCallOptimization::EmitStrLen(Value *Ptr, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000133 Module *M = Caller->getParent();
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000134 AttributeWithIndex AWI[2];
135 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
136 AWI[1] = AttributeWithIndex::get(~0u, Attribute::ReadOnly |
137 Attribute::NoUnwind);
138
139 Constant *StrLen =M->getOrInsertFunction("strlen", AttrListPtr::get(AWI, 2),
140 TD->getIntPtrType(),
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000141 Context->getPointerTypeUnqual(Type::Int8Ty),
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000142 NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000143 CallInst *CI = B.CreateCall(StrLen, CastToCStr(Ptr, B), "strlen");
144 if (const Function *F = dyn_cast<Function>(StrLen->stripPointerCasts()))
145 CI->setCallingConv(F->getCallingConv());
146
147 return CI;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000148}
149
150/// EmitMemCpy - Emit a call to the memcpy function to the builder. This always
151/// expects that the size has type 'intptr_t' and Dst/Src are pointers.
152Value *LibCallOptimization::EmitMemCpy(Value *Dst, Value *Src, Value *Len,
Eric Christopher7a61d702008-08-08 19:39:37 +0000153 unsigned Align, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000154 Module *M = Caller->getParent();
Chris Lattner824b9582008-11-21 16:42:48 +0000155 Intrinsic::ID IID = Intrinsic::memcpy;
156 const Type *Tys[1];
157 Tys[0] = Len->getType();
158 Value *MemCpy = Intrinsic::getDeclaration(M, IID, Tys, 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000159 return B.CreateCall4(MemCpy, CastToCStr(Dst, B), CastToCStr(Src, B), Len,
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000160 Context->getConstantInt(Type::Int32Ty, Align));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000161}
162
163/// EmitMemChr - Emit a call to the memchr function. This assumes that Ptr is
164/// a pointer, Val is an i32 value, and Len is an 'intptr_t' value.
165Value *LibCallOptimization::EmitMemChr(Value *Ptr, Value *Val,
Eric Christopher7a61d702008-08-08 19:39:37 +0000166 Value *Len, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000167 Module *M = Caller->getParent();
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000168 AttributeWithIndex AWI;
169 AWI = AttributeWithIndex::get(~0u, Attribute::ReadOnly | Attribute::NoUnwind);
170
171 Value *MemChr = M->getOrInsertFunction("memchr", AttrListPtr::get(&AWI, 1),
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000172 Context->getPointerTypeUnqual(Type::Int8Ty),
173 Context->getPointerTypeUnqual(Type::Int8Ty),
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000174 Type::Int32Ty, TD->getIntPtrType(),
175 NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000176 CallInst *CI = B.CreateCall3(MemChr, CastToCStr(Ptr, B), Val, Len, "memchr");
177
178 if (const Function *F = dyn_cast<Function>(MemChr->stripPointerCasts()))
179 CI->setCallingConv(F->getCallingConv());
180
181 return CI;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000182}
183
Nick Lewycky13a09e22008-12-21 00:19:21 +0000184/// EmitMemCmp - Emit a call to the memcmp function.
185Value *LibCallOptimization::EmitMemCmp(Value *Ptr1, Value *Ptr2,
186 Value *Len, IRBuilder<> &B) {
187 Module *M = Caller->getParent();
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000188 AttributeWithIndex AWI[3];
189 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
190 AWI[1] = AttributeWithIndex::get(2, Attribute::NoCapture);
191 AWI[2] = AttributeWithIndex::get(~0u, Attribute::ReadOnly |
192 Attribute::NoUnwind);
193
194 Value *MemCmp = M->getOrInsertFunction("memcmp", AttrListPtr::get(AWI, 3),
Nick Lewycky13a09e22008-12-21 00:19:21 +0000195 Type::Int32Ty,
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000196 Context->getPointerTypeUnqual(Type::Int8Ty),
197 Context->getPointerTypeUnqual(Type::Int8Ty),
Nick Lewycky13a09e22008-12-21 00:19:21 +0000198 TD->getIntPtrType(), NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000199 CallInst *CI = B.CreateCall3(MemCmp, CastToCStr(Ptr1, B), CastToCStr(Ptr2, B),
200 Len, "memcmp");
201
202 if (const Function *F = dyn_cast<Function>(MemCmp->stripPointerCasts()))
203 CI->setCallingConv(F->getCallingConv());
204
205 return CI;
Nick Lewycky13a09e22008-12-21 00:19:21 +0000206}
207
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000208/// EmitMemSet - Emit a call to the memset function
209Value *LibCallOptimization::EmitMemSet(Value *Dst, Value *Val,
210 Value *Len, IRBuilder<> &B) {
211 Module *M = Caller->getParent();
212 Intrinsic::ID IID = Intrinsic::memset;
213 const Type *Tys[1];
214 Tys[0] = Len->getType();
215 Value *MemSet = Intrinsic::getDeclaration(M, IID, Tys, 1);
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000216 Value *Align = Context->getConstantInt(Type::Int32Ty, 1);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000217 return B.CreateCall4(MemSet, CastToCStr(Dst, B), Val, Len, Align);
218}
219
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000220/// EmitUnaryFloatFnCall - Emit a call to the unary function named 'Name' (e.g.
221/// 'floor'). This function is known to take a single of type matching 'Op' and
222/// returns one value with the same type. If 'Op' is a long double, 'l' is
223/// added as the suffix of name, if 'Op' is a float, we add a 'f' suffix.
224Value *LibCallOptimization::EmitUnaryFloatFnCall(Value *Op, const char *Name,
Eric Christopher7a61d702008-08-08 19:39:37 +0000225 IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000226 char NameBuffer[20];
227 if (Op->getType() != Type::DoubleTy) {
228 // If we need to add a suffix, copy into NameBuffer.
229 unsigned NameLen = strlen(Name);
230 assert(NameLen < sizeof(NameBuffer)-2);
231 memcpy(NameBuffer, Name, NameLen);
232 if (Op->getType() == Type::FloatTy)
233 NameBuffer[NameLen] = 'f'; // floorf
234 else
235 NameBuffer[NameLen] = 'l'; // floorl
236 NameBuffer[NameLen+1] = 0;
237 Name = NameBuffer;
238 }
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000239
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000240 Module *M = Caller->getParent();
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000241 Value *Callee = M->getOrInsertFunction(Name, Op->getType(),
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000242 Op->getType(), NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000243 CallInst *CI = B.CreateCall(Callee, Op, Name);
244
245 if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
246 CI->setCallingConv(F->getCallingConv());
247
248 return CI;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000249}
250
251/// EmitPutChar - Emit a call to the putchar function. This assumes that Char
252/// is an integer.
Eric Christopher7a61d702008-08-08 19:39:37 +0000253void LibCallOptimization::EmitPutChar(Value *Char, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000254 Module *M = Caller->getParent();
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000255 Value *PutChar = M->getOrInsertFunction("putchar", Type::Int32Ty,
256 Type::Int32Ty, NULL);
257 CallInst *CI = B.CreateCall(PutChar,
258 B.CreateIntCast(Char, Type::Int32Ty, "chari"),
259 "putchar");
260
261 if (const Function *F = dyn_cast<Function>(PutChar->stripPointerCasts()))
262 CI->setCallingConv(F->getCallingConv());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000263}
264
265/// EmitPutS - Emit a call to the puts function. This assumes that Str is
266/// some pointer.
Eric Christopher7a61d702008-08-08 19:39:37 +0000267void LibCallOptimization::EmitPutS(Value *Str, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000268 Module *M = Caller->getParent();
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000269 AttributeWithIndex AWI[2];
270 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
271 AWI[1] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
272
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000273 Value *PutS = M->getOrInsertFunction("puts", AttrListPtr::get(AWI, 2),
274 Type::Int32Ty,
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000275 Context->getPointerTypeUnqual(Type::Int8Ty),
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000276 NULL);
277 CallInst *CI = B.CreateCall(PutS, CastToCStr(Str, B), "puts");
278 if (const Function *F = dyn_cast<Function>(PutS->stripPointerCasts()))
279 CI->setCallingConv(F->getCallingConv());
280
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000281}
282
283/// EmitFPutC - Emit a call to the fputc function. This assumes that Char is
284/// an integer and File is a pointer to FILE.
Eric Christopher7a61d702008-08-08 19:39:37 +0000285void LibCallOptimization::EmitFPutC(Value *Char, Value *File, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000286 Module *M = Caller->getParent();
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000287 AttributeWithIndex AWI[2];
288 AWI[0] = AttributeWithIndex::get(2, Attribute::NoCapture);
289 AWI[1] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
290 Constant *F;
291 if (isa<PointerType>(File->getType()))
292 F = M->getOrInsertFunction("fputc", AttrListPtr::get(AWI, 2), Type::Int32Ty,
293 Type::Int32Ty, File->getType(), NULL);
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000294 else
295 F = M->getOrInsertFunction("fputc", Type::Int32Ty, Type::Int32Ty,
296 File->getType(), NULL);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000297 Char = B.CreateIntCast(Char, Type::Int32Ty, "chari");
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000298 CallInst *CI = B.CreateCall2(F, Char, File, "fputc");
299
300 if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
301 CI->setCallingConv(Fn->getCallingConv());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000302}
303
304/// EmitFPutS - Emit a call to the puts function. Str is required to be a
305/// pointer and File is a pointer to FILE.
Eric Christopher7a61d702008-08-08 19:39:37 +0000306void LibCallOptimization::EmitFPutS(Value *Str, Value *File, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000307 Module *M = Caller->getParent();
Nick Lewycky225f7472009-02-15 22:47:25 +0000308 AttributeWithIndex AWI[3];
309 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
310 AWI[1] = AttributeWithIndex::get(2, Attribute::NoCapture);
311 AWI[2] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000312 Constant *F;
313 if (isa<PointerType>(File->getType()))
Nick Lewycky225f7472009-02-15 22:47:25 +0000314 F = M->getOrInsertFunction("fputs", AttrListPtr::get(AWI, 3), Type::Int32Ty,
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000315 Context->getPointerTypeUnqual(Type::Int8Ty),
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000316 File->getType(), NULL);
317 else
318 F = M->getOrInsertFunction("fputs", Type::Int32Ty,
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000319 Context->getPointerTypeUnqual(Type::Int8Ty),
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000320 File->getType(), NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000321 CallInst *CI = B.CreateCall2(F, CastToCStr(Str, B), File, "fputs");
322
323 if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
324 CI->setCallingConv(Fn->getCallingConv());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000325}
326
327/// EmitFWrite - Emit a call to the fwrite function. This assumes that Ptr is
328/// a pointer, Size is an 'intptr_t', and File is a pointer to FILE.
329void LibCallOptimization::EmitFWrite(Value *Ptr, Value *Size, Value *File,
Eric Christopher7a61d702008-08-08 19:39:37 +0000330 IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000331 Module *M = Caller->getParent();
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000332 AttributeWithIndex AWI[3];
333 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
334 AWI[1] = AttributeWithIndex::get(4, Attribute::NoCapture);
335 AWI[2] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
336 Constant *F;
337 if (isa<PointerType>(File->getType()))
338 F = M->getOrInsertFunction("fwrite", AttrListPtr::get(AWI, 3),
339 TD->getIntPtrType(),
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000340 Context->getPointerTypeUnqual(Type::Int8Ty),
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000341 TD->getIntPtrType(), TD->getIntPtrType(),
342 File->getType(), NULL);
343 else
344 F = M->getOrInsertFunction("fwrite", TD->getIntPtrType(),
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000345 Context->getPointerTypeUnqual(Type::Int8Ty),
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000346 TD->getIntPtrType(), TD->getIntPtrType(),
347 File->getType(), NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000348 CallInst *CI = B.CreateCall4(F, CastToCStr(Ptr, B), Size,
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000349 Context->getConstantInt(TD->getIntPtrType(), 1), File);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000350
351 if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
352 CI->setCallingConv(Fn->getCallingConv());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000353}
354
355//===----------------------------------------------------------------------===//
356// Helper Functions
357//===----------------------------------------------------------------------===//
358
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000359/// GetStringLengthH - If we can compute the length of the string pointed to by
360/// the specified pointer, return 'len+1'. If we can't, return 0.
361static uint64_t GetStringLengthH(Value *V, SmallPtrSet<PHINode*, 32> &PHIs) {
362 // Look through noop bitcast instructions.
363 if (BitCastInst *BCI = dyn_cast<BitCastInst>(V))
364 return GetStringLengthH(BCI->getOperand(0), PHIs);
365
366 // If this is a PHI node, there are two cases: either we have already seen it
367 // or we haven't.
368 if (PHINode *PN = dyn_cast<PHINode>(V)) {
369 if (!PHIs.insert(PN))
370 return ~0ULL; // already in the set.
371
372 // If it was new, see if all the input strings are the same length.
373 uint64_t LenSoFar = ~0ULL;
374 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
375 uint64_t Len = GetStringLengthH(PN->getIncomingValue(i), PHIs);
376 if (Len == 0) return 0; // Unknown length -> unknown.
377
378 if (Len == ~0ULL) continue;
379
380 if (Len != LenSoFar && LenSoFar != ~0ULL)
381 return 0; // Disagree -> unknown.
382 LenSoFar = Len;
383 }
384
385 // Success, all agree.
386 return LenSoFar;
387 }
388
389 // strlen(select(c,x,y)) -> strlen(x) ^ strlen(y)
390 if (SelectInst *SI = dyn_cast<SelectInst>(V)) {
391 uint64_t Len1 = GetStringLengthH(SI->getTrueValue(), PHIs);
392 if (Len1 == 0) return 0;
393 uint64_t Len2 = GetStringLengthH(SI->getFalseValue(), PHIs);
394 if (Len2 == 0) return 0;
395 if (Len1 == ~0ULL) return Len2;
396 if (Len2 == ~0ULL) return Len1;
397 if (Len1 != Len2) return 0;
398 return Len1;
399 }
400
401 // If the value is not a GEP instruction nor a constant expression with a
402 // GEP instruction, then return unknown.
403 User *GEP = 0;
404 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(V)) {
405 GEP = GEPI;
406 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
407 if (CE->getOpcode() != Instruction::GetElementPtr)
408 return 0;
409 GEP = CE;
410 } else {
411 return 0;
412 }
413
414 // Make sure the GEP has exactly three arguments.
415 if (GEP->getNumOperands() != 3)
416 return 0;
417
418 // Check to make sure that the first operand of the GEP is an integer and
419 // has value 0 so that we are sure we're indexing into the initializer.
420 if (ConstantInt *Idx = dyn_cast<ConstantInt>(GEP->getOperand(1))) {
421 if (!Idx->isZero())
422 return 0;
423 } else
424 return 0;
425
426 // If the second index isn't a ConstantInt, then this is a variable index
427 // into the array. If this occurs, we can't say anything meaningful about
428 // the string.
429 uint64_t StartIdx = 0;
430 if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(2)))
431 StartIdx = CI->getZExtValue();
432 else
433 return 0;
434
435 // The GEP instruction, constant or instruction, must reference a global
436 // variable that is a constant and is initialized. The referenced constant
437 // initializer is the array that we'll use for optimization.
438 GlobalVariable* GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
439 if (!GV || !GV->isConstant() || !GV->hasInitializer())
440 return 0;
441 Constant *GlobalInit = GV->getInitializer();
442
443 // Handle the ConstantAggregateZero case, which is a degenerate case. The
444 // initializer is constant zero so the length of the string must be zero.
445 if (isa<ConstantAggregateZero>(GlobalInit))
446 return 1; // Len = 0 offset by 1.
447
448 // Must be a Constant Array
449 ConstantArray *Array = dyn_cast<ConstantArray>(GlobalInit);
450 if (!Array || Array->getType()->getElementType() != Type::Int8Ty)
451 return false;
452
453 // Get the number of elements in the array
454 uint64_t NumElts = Array->getType()->getNumElements();
455
456 // Traverse the constant array from StartIdx (derived above) which is
457 // the place the GEP refers to in the array.
458 for (unsigned i = StartIdx; i != NumElts; ++i) {
459 Constant *Elt = Array->getOperand(i);
460 ConstantInt *CI = dyn_cast<ConstantInt>(Elt);
461 if (!CI) // This array isn't suitable, non-int initializer.
462 return 0;
463 if (CI->isZero())
464 return i-StartIdx+1; // We found end of string, success!
465 }
466
467 return 0; // The array isn't null terminated, conservatively return 'unknown'.
468}
469
470/// GetStringLength - If we can compute the length of the string pointed to by
471/// the specified pointer, return 'len+1'. If we can't, return 0.
472static uint64_t GetStringLength(Value *V) {
473 if (!isa<PointerType>(V->getType())) return 0;
474
475 SmallPtrSet<PHINode*, 32> PHIs;
476 uint64_t Len = GetStringLengthH(V, PHIs);
477 // If Len is ~0ULL, we had an infinite phi cycle: this is dead code, so return
478 // an empty string as a length.
479 return Len == ~0ULL ? 1 : Len;
480}
481
482/// IsOnlyUsedInZeroEqualityComparison - Return true if it only matters that the
483/// value is equal or not-equal to zero.
484static bool IsOnlyUsedInZeroEqualityComparison(Value *V) {
485 for (Value::use_iterator UI = V->use_begin(), E = V->use_end();
486 UI != E; ++UI) {
487 if (ICmpInst *IC = dyn_cast<ICmpInst>(*UI))
488 if (IC->isEquality())
489 if (Constant *C = dyn_cast<Constant>(IC->getOperand(1)))
490 if (C->isNullValue())
491 continue;
492 // Unknown instruction.
493 return false;
494 }
495 return true;
496}
497
498//===----------------------------------------------------------------------===//
499// Miscellaneous LibCall Optimizations
500//===----------------------------------------------------------------------===//
501
Bill Wendlingac178222008-05-05 21:37:59 +0000502namespace {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000503//===---------------------------------------===//
504// 'exit' Optimizations
505
506/// ExitOpt - int main() { exit(4); } --> int main() { return 4; }
507struct VISIBILITY_HIDDEN ExitOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000508 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000509 // Verify we have a reasonable prototype for exit.
510 if (Callee->arg_size() == 0 || !CI->use_empty())
511 return 0;
512
513 // Verify the caller is main, and that the result type of main matches the
514 // argument type of exit.
515 if (!Caller->isName("main") || !Caller->hasExternalLinkage() ||
516 Caller->getReturnType() != CI->getOperand(1)->getType())
517 return 0;
518
519 TerminatorInst *OldTI = CI->getParent()->getTerminator();
520
521 // Create the return after the call.
522 ReturnInst *RI = B.CreateRet(CI->getOperand(1));
523
524 // Drop all successor phi node entries.
525 for (unsigned i = 0, e = OldTI->getNumSuccessors(); i != e; ++i)
526 OldTI->getSuccessor(i)->removePredecessor(CI->getParent());
527
528 // Erase all instructions from after our return instruction until the end of
529 // the block.
530 BasicBlock::iterator FirstDead = RI; ++FirstDead;
531 CI->getParent()->getInstList().erase(FirstDead, CI->getParent()->end());
532 return CI;
533 }
534};
535
536//===----------------------------------------------------------------------===//
537// String and Memory LibCall Optimizations
538//===----------------------------------------------------------------------===//
539
540//===---------------------------------------===//
541// 'strcat' Optimizations
542
543struct VISIBILITY_HIDDEN StrCatOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000544 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000545 // Verify the "strcat" function prototype.
546 const FunctionType *FT = Callee->getFunctionType();
547 if (FT->getNumParams() != 2 ||
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000548 FT->getReturnType() != Context->getPointerTypeUnqual(Type::Int8Ty) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000549 FT->getParamType(0) != FT->getReturnType() ||
550 FT->getParamType(1) != FT->getReturnType())
551 return 0;
552
553 // Extract some information from the instruction
554 Value *Dst = CI->getOperand(1);
555 Value *Src = CI->getOperand(2);
556
557 // See if we can get the length of the input string.
558 uint64_t Len = GetStringLength(Src);
Chris Lattner56b4f2b2008-05-01 06:39:12 +0000559 if (Len == 0) return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000560 --Len; // Unbias length.
561
562 // Handle the simple, do-nothing case: strcat(x, "") -> x
563 if (Len == 0)
564 return Dst;
565
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000566 EmitStrLenMemCpy(Src, Dst, Len, B);
567 return Dst;
568 }
569
570 void EmitStrLenMemCpy(Value *Src, Value *Dst, uint64_t Len, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000571 // We need to find the end of the destination string. That's where the
572 // memory is to be moved to. We just generate a call to strlen.
573 Value *DstLen = EmitStrLen(Dst, B);
574
575 // Now that we have the destination's length, we must index into the
576 // destination's pointer to get the actual memcpy destination (end of
577 // the string .. we're concatenating).
Ed Schoutenb5e0a962009-04-06 13:06:48 +0000578 Value *CpyDst = B.CreateGEP(Dst, DstLen, "endptr");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000579
580 // We have enough information to now generate the memcpy call to do the
581 // concatenation for us. Make a memcpy to copy the nul byte with align = 1.
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000582 EmitMemCpy(CpyDst, Src,
583 Context->getConstantInt(TD->getIntPtrType(), Len+1), 1, B);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000584 }
585};
586
587//===---------------------------------------===//
588// 'strncat' Optimizations
589
590struct VISIBILITY_HIDDEN StrNCatOpt : public StrCatOpt {
591 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
592 // Verify the "strncat" function prototype.
593 const FunctionType *FT = Callee->getFunctionType();
594 if (FT->getNumParams() != 3 ||
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000595 FT->getReturnType() != Context->getPointerTypeUnqual(Type::Int8Ty) ||
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000596 FT->getParamType(0) != FT->getReturnType() ||
597 FT->getParamType(1) != FT->getReturnType() ||
598 !isa<IntegerType>(FT->getParamType(2)))
599 return 0;
600
601 // Extract some information from the instruction
602 Value *Dst = CI->getOperand(1);
603 Value *Src = CI->getOperand(2);
604 uint64_t Len;
605
606 // We don't do anything if length is not constant
607 if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(CI->getOperand(3)))
608 Len = LengthArg->getZExtValue();
609 else
610 return 0;
611
612 // See if we can get the length of the input string.
613 uint64_t SrcLen = GetStringLength(Src);
614 if (SrcLen == 0) return 0;
615 --SrcLen; // Unbias length.
616
617 // Handle the simple, do-nothing cases:
618 // strncat(x, "", c) -> x
619 // strncat(x, c, 0) -> x
620 if (SrcLen == 0 || Len == 0) return Dst;
621
622 // We don't optimize this case
623 if (Len < SrcLen) return 0;
624
625 // strncat(x, s, c) -> strcat(x, s)
626 // s is constant so the strcat can be optimized further
Chris Lattner5db4cdf2009-04-12 18:22:33 +0000627 EmitStrLenMemCpy(Src, Dst, SrcLen, B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000628 return Dst;
629 }
630};
631
632//===---------------------------------------===//
633// 'strchr' Optimizations
634
635struct VISIBILITY_HIDDEN StrChrOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000636 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000637 // Verify the "strchr" function prototype.
638 const FunctionType *FT = Callee->getFunctionType();
639 if (FT->getNumParams() != 2 ||
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000640 FT->getReturnType() != Context->getPointerTypeUnqual(Type::Int8Ty) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000641 FT->getParamType(0) != FT->getReturnType())
642 return 0;
643
644 Value *SrcStr = CI->getOperand(1);
645
646 // If the second operand is non-constant, see if we can compute the length
647 // of the input string and turn this into memchr.
648 ConstantInt *CharC = dyn_cast<ConstantInt>(CI->getOperand(2));
649 if (CharC == 0) {
650 uint64_t Len = GetStringLength(SrcStr);
651 if (Len == 0 || FT->getParamType(1) != Type::Int32Ty) // memchr needs i32.
652 return 0;
653
654 return EmitMemChr(SrcStr, CI->getOperand(2), // include nul.
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000655 Context->getConstantInt(TD->getIntPtrType(), Len), B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000656 }
657
658 // Otherwise, the character is a constant, see if the first argument is
659 // a string literal. If so, we can constant fold.
Bill Wendling0582ae92009-03-13 04:39:26 +0000660 std::string Str;
661 if (!GetConstantStringInfo(SrcStr, Str))
Chris Lattner56b4f2b2008-05-01 06:39:12 +0000662 return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000663
664 // strchr can find the nul character.
665 Str += '\0';
666 char CharValue = CharC->getSExtValue();
667
668 // Compute the offset.
669 uint64_t i = 0;
670 while (1) {
671 if (i == Str.size()) // Didn't find the char. strchr returns null.
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000672 return Context->getNullValue(CI->getType());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000673 // Did we find our match?
674 if (Str[i] == CharValue)
675 break;
676 ++i;
677 }
678
679 // strchr(s+n,c) -> gep(s+n+i,c)
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000680 Value *Idx = Context->getConstantInt(Type::Int64Ty, i);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000681 return B.CreateGEP(SrcStr, Idx, "strchr");
682 }
683};
684
685//===---------------------------------------===//
686// 'strcmp' Optimizations
687
688struct VISIBILITY_HIDDEN StrCmpOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000689 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000690 // Verify the "strcmp" function prototype.
691 const FunctionType *FT = Callee->getFunctionType();
692 if (FT->getNumParams() != 2 || FT->getReturnType() != Type::Int32Ty ||
693 FT->getParamType(0) != FT->getParamType(1) ||
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000694 FT->getParamType(0) != Context->getPointerTypeUnqual(Type::Int8Ty))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000695 return 0;
696
697 Value *Str1P = CI->getOperand(1), *Str2P = CI->getOperand(2);
698 if (Str1P == Str2P) // strcmp(x,x) -> 0
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000699 return Context->getConstantInt(CI->getType(), 0);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000700
Bill Wendling0582ae92009-03-13 04:39:26 +0000701 std::string Str1, Str2;
702 bool HasStr1 = GetConstantStringInfo(Str1P, Str1);
703 bool HasStr2 = GetConstantStringInfo(Str2P, Str2);
704
705 if (HasStr1 && Str1.empty()) // strcmp("", x) -> *x
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000706 return B.CreateZExt(B.CreateLoad(Str2P, "strcmpload"), CI->getType());
707
Bill Wendling0582ae92009-03-13 04:39:26 +0000708 if (HasStr2 && Str2.empty()) // strcmp(x,"") -> *x
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000709 return B.CreateZExt(B.CreateLoad(Str1P, "strcmpload"), CI->getType());
710
711 // strcmp(x, y) -> cnst (if both x and y are constant strings)
Bill Wendling0582ae92009-03-13 04:39:26 +0000712 if (HasStr1 && HasStr2)
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000713 return Context->getConstantInt(CI->getType(),
714 strcmp(Str1.c_str(),Str2.c_str()));
Nick Lewycky13a09e22008-12-21 00:19:21 +0000715
716 // strcmp(P, "x") -> memcmp(P, "x", 2)
717 uint64_t Len1 = GetStringLength(Str1P);
718 uint64_t Len2 = GetStringLength(Str2P);
Chris Lattner849832c2009-06-19 04:17:36 +0000719 if (Len1 && Len2) {
Nick Lewycky13a09e22008-12-21 00:19:21 +0000720 return EmitMemCmp(Str1P, Str2P,
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000721 Context->getConstantInt(TD->getIntPtrType(),
Chris Lattner849832c2009-06-19 04:17:36 +0000722 std::min(Len1, Len2)), B);
Nick Lewycky13a09e22008-12-21 00:19:21 +0000723 }
724
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000725 return 0;
726 }
727};
728
729//===---------------------------------------===//
730// 'strncmp' Optimizations
731
732struct VISIBILITY_HIDDEN StrNCmpOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000733 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000734 // Verify the "strncmp" function prototype.
735 const FunctionType *FT = Callee->getFunctionType();
736 if (FT->getNumParams() != 3 || FT->getReturnType() != Type::Int32Ty ||
737 FT->getParamType(0) != FT->getParamType(1) ||
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000738 FT->getParamType(0) != Context->getPointerTypeUnqual(Type::Int8Ty) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000739 !isa<IntegerType>(FT->getParamType(2)))
740 return 0;
741
742 Value *Str1P = CI->getOperand(1), *Str2P = CI->getOperand(2);
743 if (Str1P == Str2P) // strncmp(x,x,n) -> 0
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000744 return Context->getConstantInt(CI->getType(), 0);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000745
746 // Get the length argument if it is constant.
747 uint64_t Length;
748 if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(CI->getOperand(3)))
749 Length = LengthArg->getZExtValue();
750 else
751 return 0;
752
753 if (Length == 0) // strncmp(x,y,0) -> 0
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000754 return Context->getConstantInt(CI->getType(), 0);
Bill Wendling0582ae92009-03-13 04:39:26 +0000755
756 std::string Str1, Str2;
757 bool HasStr1 = GetConstantStringInfo(Str1P, Str1);
758 bool HasStr2 = GetConstantStringInfo(Str2P, Str2);
759
760 if (HasStr1 && Str1.empty()) // strncmp("", x, n) -> *x
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000761 return B.CreateZExt(B.CreateLoad(Str2P, "strcmpload"), CI->getType());
762
Bill Wendling0582ae92009-03-13 04:39:26 +0000763 if (HasStr2 && Str2.empty()) // strncmp(x, "", n) -> *x
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000764 return B.CreateZExt(B.CreateLoad(Str1P, "strcmpload"), CI->getType());
765
766 // strncmp(x, y) -> cnst (if both x and y are constant strings)
Bill Wendling0582ae92009-03-13 04:39:26 +0000767 if (HasStr1 && HasStr2)
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000768 return Context->getConstantInt(CI->getType(),
Bill Wendling0582ae92009-03-13 04:39:26 +0000769 strncmp(Str1.c_str(), Str2.c_str(), Length));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000770 return 0;
771 }
772};
773
774
775//===---------------------------------------===//
776// 'strcpy' Optimizations
777
778struct VISIBILITY_HIDDEN StrCpyOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000779 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000780 // Verify the "strcpy" function prototype.
781 const FunctionType *FT = Callee->getFunctionType();
782 if (FT->getNumParams() != 2 || FT->getReturnType() != FT->getParamType(0) ||
783 FT->getParamType(0) != FT->getParamType(1) ||
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000784 FT->getParamType(0) != Context->getPointerTypeUnqual(Type::Int8Ty))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000785 return 0;
786
787 Value *Dst = CI->getOperand(1), *Src = CI->getOperand(2);
788 if (Dst == Src) // strcpy(x,x) -> x
789 return Src;
790
791 // See if we can get the length of the input string.
792 uint64_t Len = GetStringLength(Src);
Chris Lattner56b4f2b2008-05-01 06:39:12 +0000793 if (Len == 0) return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000794
795 // We have enough information to now generate the memcpy call to do the
796 // concatenation for us. Make a memcpy to copy the nul byte with align = 1.
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000797 EmitMemCpy(Dst, Src,
798 Context->getConstantInt(TD->getIntPtrType(), Len), 1, B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000799 return Dst;
800 }
801};
802
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000803//===---------------------------------------===//
804// 'strncpy' Optimizations
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000805
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000806struct VISIBILITY_HIDDEN StrNCpyOpt : public LibCallOptimization {
807 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
808 const FunctionType *FT = Callee->getFunctionType();
809 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
810 FT->getParamType(0) != FT->getParamType(1) ||
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000811 FT->getParamType(0) != Context->getPointerTypeUnqual(Type::Int8Ty) ||
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000812 !isa<IntegerType>(FT->getParamType(2)))
813 return 0;
814
815 Value *Dst = CI->getOperand(1);
816 Value *Src = CI->getOperand(2);
817 Value *LenOp = CI->getOperand(3);
818
819 // See if we can get the length of the input string.
820 uint64_t SrcLen = GetStringLength(Src);
821 if (SrcLen == 0) return 0;
822 --SrcLen;
823
824 if (SrcLen == 0) {
825 // strncpy(x, "", y) -> memset(x, '\0', y, 1)
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000826 EmitMemSet(Dst, Context->getConstantInt(Type::Int8Ty, '\0'), LenOp, B);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000827 return Dst;
828 }
829
830 uint64_t Len;
831 if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(LenOp))
832 Len = LengthArg->getZExtValue();
833 else
834 return 0;
835
836 if (Len == 0) return Dst; // strncpy(x, y, 0) -> x
837
838 // Let strncpy handle the zero padding
839 if (Len > SrcLen+1) return 0;
840
841 // strncpy(x, s, c) -> memcpy(x, s, c, 1) [s and c are constant]
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000842 EmitMemCpy(Dst, Src,
843 Context->getConstantInt(TD->getIntPtrType(), Len), 1, B);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000844
845 return Dst;
846 }
847};
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000848
849//===---------------------------------------===//
850// 'strlen' Optimizations
851
852struct VISIBILITY_HIDDEN StrLenOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000853 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000854 const FunctionType *FT = Callee->getFunctionType();
855 if (FT->getNumParams() != 1 ||
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000856 FT->getParamType(0) != Context->getPointerTypeUnqual(Type::Int8Ty) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000857 !isa<IntegerType>(FT->getReturnType()))
858 return 0;
859
860 Value *Src = CI->getOperand(1);
861
862 // Constant folding: strlen("xyz") -> 3
863 if (uint64_t Len = GetStringLength(Src))
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000864 return Context->getConstantInt(CI->getType(), Len-1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000865
866 // Handle strlen(p) != 0.
867 if (!IsOnlyUsedInZeroEqualityComparison(CI)) return 0;
868
869 // strlen(x) != 0 --> *x != 0
870 // strlen(x) == 0 --> *x == 0
871 return B.CreateZExt(B.CreateLoad(Src, "strlenfirst"), CI->getType());
872 }
873};
874
875//===---------------------------------------===//
Nick Lewycky4c498412009-02-13 15:31:46 +0000876// 'strto*' Optimizations
877
878struct VISIBILITY_HIDDEN StrToOpt : public LibCallOptimization {
879 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
880 const FunctionType *FT = Callee->getFunctionType();
881 if ((FT->getNumParams() != 2 && FT->getNumParams() != 3) ||
882 !isa<PointerType>(FT->getParamType(0)) ||
883 !isa<PointerType>(FT->getParamType(1)))
884 return 0;
885
886 Value *EndPtr = CI->getOperand(2);
Nick Lewycky02b6a6a2009-02-13 17:08:33 +0000887 if (isa<ConstantPointerNull>(EndPtr)) {
888 CI->setOnlyReadsMemory();
Nick Lewycky4c498412009-02-13 15:31:46 +0000889 CI->addAttribute(1, Attribute::NoCapture);
Nick Lewycky02b6a6a2009-02-13 17:08:33 +0000890 }
Nick Lewycky4c498412009-02-13 15:31:46 +0000891
892 return 0;
893 }
894};
895
896
897//===---------------------------------------===//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000898// 'memcmp' Optimizations
899
900struct VISIBILITY_HIDDEN MemCmpOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000901 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000902 const FunctionType *FT = Callee->getFunctionType();
903 if (FT->getNumParams() != 3 || !isa<PointerType>(FT->getParamType(0)) ||
904 !isa<PointerType>(FT->getParamType(1)) ||
905 FT->getReturnType() != Type::Int32Ty)
906 return 0;
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000907
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000908 Value *LHS = CI->getOperand(1), *RHS = CI->getOperand(2);
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000909
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000910 if (LHS == RHS) // memcmp(s,s,x) -> 0
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000911 return Context->getNullValue(CI->getType());
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000912
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000913 // Make sure we have a constant length.
914 ConstantInt *LenC = dyn_cast<ConstantInt>(CI->getOperand(3));
Chris Lattner56b4f2b2008-05-01 06:39:12 +0000915 if (!LenC) return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000916 uint64_t Len = LenC->getZExtValue();
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000917
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000918 if (Len == 0) // memcmp(s1,s2,0) -> 0
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000919 return Context->getNullValue(CI->getType());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000920
921 if (Len == 1) { // memcmp(S1,S2,1) -> *LHS - *RHS
922 Value *LHSV = B.CreateLoad(CastToCStr(LHS, B), "lhsv");
923 Value *RHSV = B.CreateLoad(CastToCStr(RHS, B), "rhsv");
Chris Lattner0e98e4d2009-05-30 18:43:04 +0000924 return B.CreateSExt(B.CreateSub(LHSV, RHSV, "chardiff"), CI->getType());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000925 }
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000926
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000927 // memcmp(S1,S2,2) != 0 -> (*(short*)LHS ^ *(short*)RHS) != 0
928 // memcmp(S1,S2,4) != 0 -> (*(int*)LHS ^ *(int*)RHS) != 0
929 if ((Len == 2 || Len == 4) && IsOnlyUsedInZeroEqualityComparison(CI)) {
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000930 const Type *PTy = Context->getPointerTypeUnqual(Len == 2 ?
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000931 Type::Int16Ty : Type::Int32Ty);
932 LHS = B.CreateBitCast(LHS, PTy, "tmp");
933 RHS = B.CreateBitCast(RHS, PTy, "tmp");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000934 LoadInst *LHSV = B.CreateLoad(LHS, "lhsv");
935 LoadInst *RHSV = B.CreateLoad(RHS, "rhsv");
936 LHSV->setAlignment(1); RHSV->setAlignment(1); // Unaligned loads.
937 return B.CreateZExt(B.CreateXor(LHSV, RHSV, "shortdiff"), CI->getType());
938 }
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000939
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000940 return 0;
941 }
942};
943
944//===---------------------------------------===//
945// 'memcpy' Optimizations
946
947struct VISIBILITY_HIDDEN MemCpyOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000948 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000949 const FunctionType *FT = Callee->getFunctionType();
950 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
951 !isa<PointerType>(FT->getParamType(0)) ||
952 !isa<PointerType>(FT->getParamType(1)) ||
953 FT->getParamType(2) != TD->getIntPtrType())
954 return 0;
955
956 // memcpy(x, y, n) -> llvm.memcpy(x, y, n, 1)
957 EmitMemCpy(CI->getOperand(1), CI->getOperand(2), CI->getOperand(3), 1, B);
958 return CI->getOperand(1);
959 }
960};
961
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000962//===---------------------------------------===//
963// 'memmove' Optimizations
964
965struct VISIBILITY_HIDDEN MemMoveOpt : public LibCallOptimization {
966 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
967 const FunctionType *FT = Callee->getFunctionType();
968 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
969 !isa<PointerType>(FT->getParamType(0)) ||
970 !isa<PointerType>(FT->getParamType(1)) ||
971 FT->getParamType(2) != TD->getIntPtrType())
972 return 0;
973
974 // memmove(x, y, n) -> llvm.memmove(x, y, n, 1)
975 Module *M = Caller->getParent();
976 Intrinsic::ID IID = Intrinsic::memmove;
977 const Type *Tys[1];
978 Tys[0] = TD->getIntPtrType();
979 Value *MemMove = Intrinsic::getDeclaration(M, IID, Tys, 1);
980 Value *Dst = CastToCStr(CI->getOperand(1), B);
981 Value *Src = CastToCStr(CI->getOperand(2), B);
982 Value *Size = CI->getOperand(3);
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000983 Value *Align = Context->getConstantInt(Type::Int32Ty, 1);
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000984 B.CreateCall4(MemMove, Dst, Src, Size, Align);
985 return CI->getOperand(1);
986 }
987};
988
989//===---------------------------------------===//
990// 'memset' Optimizations
991
992struct VISIBILITY_HIDDEN MemSetOpt : public LibCallOptimization {
993 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
994 const FunctionType *FT = Callee->getFunctionType();
995 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
996 !isa<PointerType>(FT->getParamType(0)) ||
Eli Friedman62bb4132009-07-18 08:34:51 +0000997 !isa<IntegerType>(FT->getParamType(1)) ||
Eli Friedmand83ae7d2008-11-30 08:32:11 +0000998 FT->getParamType(2) != TD->getIntPtrType())
999 return 0;
1000
1001 // memset(p, v, n) -> llvm.memset(p, v, n, 1)
Eli Friedman62bb4132009-07-18 08:34:51 +00001002 Value *Val = B.CreateIntCast(CI->getOperand(2), Type::Int8Ty, false);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +00001003 EmitMemSet(CI->getOperand(1), Val, CI->getOperand(3), B);
Eli Friedmand83ae7d2008-11-30 08:32:11 +00001004 return CI->getOperand(1);
1005 }
1006};
1007
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001008//===----------------------------------------------------------------------===//
1009// Math Library Optimizations
1010//===----------------------------------------------------------------------===//
1011
1012//===---------------------------------------===//
1013// 'pow*' Optimizations
1014
1015struct VISIBILITY_HIDDEN PowOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001016 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001017 const FunctionType *FT = Callee->getFunctionType();
1018 // Just make sure this has 2 arguments of the same FP type, which match the
1019 // result type.
1020 if (FT->getNumParams() != 2 || FT->getReturnType() != FT->getParamType(0) ||
1021 FT->getParamType(0) != FT->getParamType(1) ||
1022 !FT->getParamType(0)->isFloatingPoint())
1023 return 0;
1024
1025 Value *Op1 = CI->getOperand(1), *Op2 = CI->getOperand(2);
1026 if (ConstantFP *Op1C = dyn_cast<ConstantFP>(Op1)) {
1027 if (Op1C->isExactlyValue(1.0)) // pow(1.0, x) -> 1.0
1028 return Op1C;
1029 if (Op1C->isExactlyValue(2.0)) // pow(2.0, x) -> exp2(x)
1030 return EmitUnaryFloatFnCall(Op2, "exp2", B);
1031 }
1032
1033 ConstantFP *Op2C = dyn_cast<ConstantFP>(Op2);
1034 if (Op2C == 0) return 0;
1035
1036 if (Op2C->getValueAPF().isZero()) // pow(x, 0.0) -> 1.0
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001037 return Context->getConstantFP(CI->getType(), 1.0);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001038
1039 if (Op2C->isExactlyValue(0.5)) {
1040 // FIXME: This is not safe for -0.0 and -inf. This can only be done when
1041 // 'unsafe' math optimizations are allowed.
1042 // x pow(x, 0.5) sqrt(x)
1043 // ---------------------------------------------
1044 // -0.0 +0.0 -0.0
1045 // -inf +inf NaN
1046#if 0
1047 // pow(x, 0.5) -> sqrt(x)
1048 return B.CreateCall(get_sqrt(), Op1, "sqrt");
1049#endif
1050 }
1051
1052 if (Op2C->isExactlyValue(1.0)) // pow(x, 1.0) -> x
1053 return Op1;
1054 if (Op2C->isExactlyValue(2.0)) // pow(x, 2.0) -> x*x
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001055 return B.CreateFMul(Op1, Op1, "pow2");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001056 if (Op2C->isExactlyValue(-1.0)) // pow(x, -1.0) -> 1.0/x
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001057 return B.CreateFDiv(Context->getConstantFP(CI->getType(), 1.0),
1058 Op1, "powrecip");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001059 return 0;
1060 }
1061};
1062
1063//===---------------------------------------===//
Chris Lattnere818f772008-05-02 18:43:35 +00001064// 'exp2' Optimizations
1065
1066struct VISIBILITY_HIDDEN Exp2Opt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001067 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnere818f772008-05-02 18:43:35 +00001068 const FunctionType *FT = Callee->getFunctionType();
1069 // Just make sure this has 1 argument of FP type, which matches the
1070 // result type.
1071 if (FT->getNumParams() != 1 || FT->getReturnType() != FT->getParamType(0) ||
1072 !FT->getParamType(0)->isFloatingPoint())
1073 return 0;
1074
1075 Value *Op = CI->getOperand(1);
1076 // Turn exp2(sitofp(x)) -> ldexp(1.0, sext(x)) if sizeof(x) <= 32
1077 // Turn exp2(uitofp(x)) -> ldexp(1.0, zext(x)) if sizeof(x) < 32
1078 Value *LdExpArg = 0;
1079 if (SIToFPInst *OpC = dyn_cast<SIToFPInst>(Op)) {
1080 if (OpC->getOperand(0)->getType()->getPrimitiveSizeInBits() <= 32)
1081 LdExpArg = B.CreateSExt(OpC->getOperand(0), Type::Int32Ty, "tmp");
1082 } else if (UIToFPInst *OpC = dyn_cast<UIToFPInst>(Op)) {
1083 if (OpC->getOperand(0)->getType()->getPrimitiveSizeInBits() < 32)
1084 LdExpArg = B.CreateZExt(OpC->getOperand(0), Type::Int32Ty, "tmp");
1085 }
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +00001086
Chris Lattnere818f772008-05-02 18:43:35 +00001087 if (LdExpArg) {
1088 const char *Name;
1089 if (Op->getType() == Type::FloatTy)
1090 Name = "ldexpf";
1091 else if (Op->getType() == Type::DoubleTy)
1092 Name = "ldexp";
1093 else
1094 Name = "ldexpl";
1095
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001096 Constant *One = Context->getConstantFP(APFloat(1.0f));
Chris Lattnere818f772008-05-02 18:43:35 +00001097 if (Op->getType() != Type::FloatTy)
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001098 One = Context->getConstantExprFPExtend(One, Op->getType());
Chris Lattnere818f772008-05-02 18:43:35 +00001099
1100 Module *M = Caller->getParent();
1101 Value *Callee = M->getOrInsertFunction(Name, Op->getType(),
1102 Op->getType(), Type::Int32Ty,NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +00001103 CallInst *CI = B.CreateCall2(Callee, One, LdExpArg);
1104 if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
1105 CI->setCallingConv(F->getCallingConv());
1106
1107 return CI;
Chris Lattnere818f772008-05-02 18:43:35 +00001108 }
1109 return 0;
1110 }
1111};
Chris Lattnere818f772008-05-02 18:43:35 +00001112
1113//===---------------------------------------===//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001114// Double -> Float Shrinking Optimizations for Unary Functions like 'floor'
1115
1116struct VISIBILITY_HIDDEN UnaryDoubleFPOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001117 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001118 const FunctionType *FT = Callee->getFunctionType();
1119 if (FT->getNumParams() != 1 || FT->getReturnType() != Type::DoubleTy ||
1120 FT->getParamType(0) != Type::DoubleTy)
1121 return 0;
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +00001122
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001123 // If this is something like 'floor((double)floatval)', convert to floorf.
1124 FPExtInst *Cast = dyn_cast<FPExtInst>(CI->getOperand(1));
1125 if (Cast == 0 || Cast->getOperand(0)->getType() != Type::FloatTy)
1126 return 0;
1127
1128 // floor((double)floatval) -> (double)floorf(floatval)
1129 Value *V = Cast->getOperand(0);
1130 V = EmitUnaryFloatFnCall(V, Callee->getNameStart(), B);
1131 return B.CreateFPExt(V, Type::DoubleTy);
1132 }
1133};
1134
1135//===----------------------------------------------------------------------===//
1136// Integer Optimizations
1137//===----------------------------------------------------------------------===//
1138
1139//===---------------------------------------===//
1140// 'ffs*' Optimizations
1141
1142struct VISIBILITY_HIDDEN FFSOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001143 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001144 const FunctionType *FT = Callee->getFunctionType();
1145 // Just make sure this has 2 arguments of the same FP type, which match the
1146 // result type.
1147 if (FT->getNumParams() != 1 || FT->getReturnType() != Type::Int32Ty ||
1148 !isa<IntegerType>(FT->getParamType(0)))
1149 return 0;
1150
1151 Value *Op = CI->getOperand(1);
1152
1153 // Constant fold.
1154 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
1155 if (CI->getValue() == 0) // ffs(0) -> 0.
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001156 return Context->getNullValue(CI->getType());
1157 return Context->getConstantInt(Type::Int32Ty, // ffs(c) -> cttz(c)+1
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001158 CI->getValue().countTrailingZeros()+1);
1159 }
1160
1161 // ffs(x) -> x != 0 ? (i32)llvm.cttz(x)+1 : 0
1162 const Type *ArgType = Op->getType();
1163 Value *F = Intrinsic::getDeclaration(Callee->getParent(),
1164 Intrinsic::cttz, &ArgType, 1);
1165 Value *V = B.CreateCall(F, Op, "cttz");
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001166 V = B.CreateAdd(V, Context->getConstantInt(V->getType(), 1), "tmp");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001167 V = B.CreateIntCast(V, Type::Int32Ty, false, "tmp");
1168
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001169 Value *Cond = B.CreateICmpNE(Op, Context->getNullValue(ArgType), "tmp");
1170 return B.CreateSelect(Cond, V, Context->getConstantInt(Type::Int32Ty, 0));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001171 }
1172};
1173
1174//===---------------------------------------===//
1175// 'isdigit' Optimizations
1176
1177struct VISIBILITY_HIDDEN IsDigitOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001178 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001179 const FunctionType *FT = Callee->getFunctionType();
1180 // We require integer(i32)
1181 if (FT->getNumParams() != 1 || !isa<IntegerType>(FT->getReturnType()) ||
1182 FT->getParamType(0) != Type::Int32Ty)
1183 return 0;
1184
1185 // isdigit(c) -> (c-'0') <u 10
1186 Value *Op = CI->getOperand(1);
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001187 Op = B.CreateSub(Op, Context->getConstantInt(Type::Int32Ty, '0'),
1188 "isdigittmp");
1189 Op = B.CreateICmpULT(Op, Context->getConstantInt(Type::Int32Ty, 10),
1190 "isdigit");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001191 return B.CreateZExt(Op, CI->getType());
1192 }
1193};
1194
1195//===---------------------------------------===//
1196// 'isascii' Optimizations
1197
1198struct VISIBILITY_HIDDEN IsAsciiOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001199 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001200 const FunctionType *FT = Callee->getFunctionType();
1201 // We require integer(i32)
1202 if (FT->getNumParams() != 1 || !isa<IntegerType>(FT->getReturnType()) ||
1203 FT->getParamType(0) != Type::Int32Ty)
1204 return 0;
1205
1206 // isascii(c) -> c <u 128
1207 Value *Op = CI->getOperand(1);
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001208 Op = B.CreateICmpULT(Op, Context->getConstantInt(Type::Int32Ty, 128),
1209 "isascii");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001210 return B.CreateZExt(Op, CI->getType());
1211 }
1212};
Chris Lattner313f0e62008-06-09 08:26:51 +00001213
1214//===---------------------------------------===//
1215// 'abs', 'labs', 'llabs' Optimizations
1216
1217struct VISIBILITY_HIDDEN AbsOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001218 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattner313f0e62008-06-09 08:26:51 +00001219 const FunctionType *FT = Callee->getFunctionType();
1220 // We require integer(integer) where the types agree.
1221 if (FT->getNumParams() != 1 || !isa<IntegerType>(FT->getReturnType()) ||
1222 FT->getParamType(0) != FT->getReturnType())
1223 return 0;
1224
1225 // abs(x) -> x >s -1 ? x : -x
1226 Value *Op = CI->getOperand(1);
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001227 Value *Pos = B.CreateICmpSGT(Op,
Owen Anderson73c6b712009-07-13 20:58:05 +00001228 Context->getAllOnesValue(Op->getType()),
Chris Lattner313f0e62008-06-09 08:26:51 +00001229 "ispos");
1230 Value *Neg = B.CreateNeg(Op, "neg");
1231 return B.CreateSelect(Pos, Op, Neg);
1232 }
1233};
1234
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001235
1236//===---------------------------------------===//
1237// 'toascii' Optimizations
1238
1239struct VISIBILITY_HIDDEN ToAsciiOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001240 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001241 const FunctionType *FT = Callee->getFunctionType();
1242 // We require i32(i32)
1243 if (FT->getNumParams() != 1 || FT->getReturnType() != FT->getParamType(0) ||
1244 FT->getParamType(0) != Type::Int32Ty)
1245 return 0;
1246
1247 // isascii(c) -> c & 0x7f
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001248 return B.CreateAnd(CI->getOperand(1),
1249 Context->getConstantInt(CI->getType(),0x7F));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001250 }
1251};
1252
1253//===----------------------------------------------------------------------===//
1254// Formatting and IO Optimizations
1255//===----------------------------------------------------------------------===//
1256
1257//===---------------------------------------===//
1258// 'printf' Optimizations
1259
1260struct VISIBILITY_HIDDEN PrintFOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001261 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001262 // Require one fixed pointer argument and an integer/void result.
1263 const FunctionType *FT = Callee->getFunctionType();
1264 if (FT->getNumParams() < 1 || !isa<PointerType>(FT->getParamType(0)) ||
1265 !(isa<IntegerType>(FT->getReturnType()) ||
1266 FT->getReturnType() == Type::VoidTy))
1267 return 0;
1268
1269 // Check for a fixed format string.
Bill Wendling0582ae92009-03-13 04:39:26 +00001270 std::string FormatStr;
1271 if (!GetConstantStringInfo(CI->getOperand(1), FormatStr))
1272 return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001273
1274 // Empty format string -> noop.
1275 if (FormatStr.empty()) // Tolerate printf's declared void.
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001276 return CI->use_empty() ? (Value*)CI :
1277 Context->getConstantInt(CI->getType(), 0);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001278
1279 // printf("x") -> putchar('x'), even for '%'.
1280 if (FormatStr.size() == 1) {
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001281 EmitPutChar(Context->getConstantInt(Type::Int32Ty, FormatStr[0]), B);
1282 return CI->use_empty() ? (Value*)CI :
1283 Context->getConstantInt(CI->getType(), 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001284 }
1285
1286 // printf("foo\n") --> puts("foo")
1287 if (FormatStr[FormatStr.size()-1] == '\n' &&
1288 FormatStr.find('%') == std::string::npos) { // no format characters.
1289 // Create a string literal with no \n on it. We expect the constant merge
1290 // pass to be run after this pass, to merge duplicate strings.
1291 FormatStr.erase(FormatStr.end()-1);
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001292 Constant *C = Context->getConstantArray(FormatStr, true);
Owen Andersone9b11b42009-07-08 19:03:57 +00001293 C = new GlobalVariable(*Callee->getParent(), C->getType(), true,
1294 GlobalVariable::InternalLinkage, C, "str");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001295 EmitPutS(C, B);
1296 return CI->use_empty() ? (Value*)CI :
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001297 Context->getConstantInt(CI->getType(), FormatStr.size()+1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001298 }
1299
1300 // Optimize specific format strings.
1301 // printf("%c", chr) --> putchar(*(i8*)dst)
1302 if (FormatStr == "%c" && CI->getNumOperands() > 2 &&
1303 isa<IntegerType>(CI->getOperand(2)->getType())) {
1304 EmitPutChar(CI->getOperand(2), B);
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001305 return CI->use_empty() ? (Value*)CI :
1306 Context->getConstantInt(CI->getType(), 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001307 }
1308
1309 // printf("%s\n", str) --> puts(str)
1310 if (FormatStr == "%s\n" && CI->getNumOperands() > 2 &&
1311 isa<PointerType>(CI->getOperand(2)->getType()) &&
1312 CI->use_empty()) {
1313 EmitPutS(CI->getOperand(2), B);
1314 return CI;
1315 }
1316 return 0;
1317 }
1318};
1319
1320//===---------------------------------------===//
1321// 'sprintf' Optimizations
1322
1323struct VISIBILITY_HIDDEN SPrintFOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001324 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001325 // Require two fixed pointer arguments and an integer result.
1326 const FunctionType *FT = Callee->getFunctionType();
1327 if (FT->getNumParams() != 2 || !isa<PointerType>(FT->getParamType(0)) ||
1328 !isa<PointerType>(FT->getParamType(1)) ||
1329 !isa<IntegerType>(FT->getReturnType()))
1330 return 0;
1331
1332 // Check for a fixed format string.
Bill Wendling0582ae92009-03-13 04:39:26 +00001333 std::string FormatStr;
1334 if (!GetConstantStringInfo(CI->getOperand(2), FormatStr))
1335 return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001336
1337 // If we just have a format string (nothing else crazy) transform it.
1338 if (CI->getNumOperands() == 3) {
1339 // Make sure there's no % in the constant array. We could try to handle
1340 // %% -> % in the future if we cared.
1341 for (unsigned i = 0, e = FormatStr.size(); i != e; ++i)
1342 if (FormatStr[i] == '%')
1343 return 0; // we found a format specifier, bail out.
1344
1345 // sprintf(str, fmt) -> llvm.memcpy(str, fmt, strlen(fmt)+1, 1)
1346 EmitMemCpy(CI->getOperand(1), CI->getOperand(2), // Copy the nul byte.
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001347 Context->getConstantInt(TD->getIntPtrType(), FormatStr.size()+1),1,B);
1348 return Context->getConstantInt(CI->getType(), FormatStr.size());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001349 }
1350
1351 // The remaining optimizations require the format string to be "%s" or "%c"
1352 // and have an extra operand.
1353 if (FormatStr.size() != 2 || FormatStr[0] != '%' || CI->getNumOperands() <4)
1354 return 0;
1355
1356 // Decode the second character of the format string.
1357 if (FormatStr[1] == 'c') {
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001358 // sprintf(dst, "%c", chr) --> *(i8*)dst = chr; *((i8*)dst+1) = 0
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001359 if (!isa<IntegerType>(CI->getOperand(3)->getType())) return 0;
1360 Value *V = B.CreateTrunc(CI->getOperand(3), Type::Int8Ty, "char");
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001361 Value *Ptr = CastToCStr(CI->getOperand(1), B);
1362 B.CreateStore(V, Ptr);
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001363 Ptr = B.CreateGEP(Ptr, Context->getConstantInt(Type::Int32Ty, 1), "nul");
1364 B.CreateStore(Context->getNullValue(Type::Int8Ty), Ptr);
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001365
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001366 return Context->getConstantInt(CI->getType(), 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001367 }
1368
1369 if (FormatStr[1] == 's') {
1370 // sprintf(dest, "%s", str) -> llvm.memcpy(dest, str, strlen(str)+1, 1)
1371 if (!isa<PointerType>(CI->getOperand(3)->getType())) return 0;
1372
1373 Value *Len = EmitStrLen(CI->getOperand(3), B);
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001374 Value *IncLen = B.CreateAdd(Len,
1375 Context->getConstantInt(Len->getType(), 1),
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001376 "leninc");
1377 EmitMemCpy(CI->getOperand(1), CI->getOperand(3), IncLen, 1, B);
1378
1379 // The sprintf result is the unincremented number of bytes in the string.
1380 return B.CreateIntCast(Len, CI->getType(), false);
1381 }
1382 return 0;
1383 }
1384};
1385
1386//===---------------------------------------===//
1387// 'fwrite' Optimizations
1388
1389struct VISIBILITY_HIDDEN FWriteOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001390 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001391 // Require a pointer, an integer, an integer, a pointer, returning integer.
1392 const FunctionType *FT = Callee->getFunctionType();
1393 if (FT->getNumParams() != 4 || !isa<PointerType>(FT->getParamType(0)) ||
1394 !isa<IntegerType>(FT->getParamType(1)) ||
1395 !isa<IntegerType>(FT->getParamType(2)) ||
1396 !isa<PointerType>(FT->getParamType(3)) ||
1397 !isa<IntegerType>(FT->getReturnType()))
1398 return 0;
1399
1400 // Get the element size and count.
1401 ConstantInt *SizeC = dyn_cast<ConstantInt>(CI->getOperand(2));
1402 ConstantInt *CountC = dyn_cast<ConstantInt>(CI->getOperand(3));
1403 if (!SizeC || !CountC) return 0;
1404 uint64_t Bytes = SizeC->getZExtValue()*CountC->getZExtValue();
1405
1406 // If this is writing zero records, remove the call (it's a noop).
1407 if (Bytes == 0)
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001408 return Context->getConstantInt(CI->getType(), 0);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001409
1410 // If this is writing one byte, turn it into fputc.
1411 if (Bytes == 1) { // fwrite(S,1,1,F) -> fputc(S[0],F)
1412 Value *Char = B.CreateLoad(CastToCStr(CI->getOperand(1), B), "char");
1413 EmitFPutC(Char, CI->getOperand(4), B);
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001414 return Context->getConstantInt(CI->getType(), 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001415 }
1416
1417 return 0;
1418 }
1419};
1420
1421//===---------------------------------------===//
1422// 'fputs' Optimizations
1423
1424struct VISIBILITY_HIDDEN FPutsOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001425 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001426 // Require two pointers. Also, we can't optimize if return value is used.
1427 const FunctionType *FT = Callee->getFunctionType();
1428 if (FT->getNumParams() != 2 || !isa<PointerType>(FT->getParamType(0)) ||
1429 !isa<PointerType>(FT->getParamType(1)) ||
1430 !CI->use_empty())
1431 return 0;
1432
1433 // fputs(s,F) --> fwrite(s,1,strlen(s),F)
1434 uint64_t Len = GetStringLength(CI->getOperand(1));
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001435 if (!Len) return 0;
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001436 EmitFWrite(CI->getOperand(1),
1437 Context->getConstantInt(TD->getIntPtrType(), Len-1),
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001438 CI->getOperand(2), B);
1439 return CI; // Known to have no uses (see above).
1440 }
1441};
1442
1443//===---------------------------------------===//
1444// 'fprintf' Optimizations
1445
1446struct VISIBILITY_HIDDEN FPrintFOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001447 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001448 // Require two fixed paramters as pointers and integer result.
1449 const FunctionType *FT = Callee->getFunctionType();
1450 if (FT->getNumParams() != 2 || !isa<PointerType>(FT->getParamType(0)) ||
1451 !isa<PointerType>(FT->getParamType(1)) ||
1452 !isa<IntegerType>(FT->getReturnType()))
1453 return 0;
1454
1455 // All the optimizations depend on the format string.
Bill Wendling0582ae92009-03-13 04:39:26 +00001456 std::string FormatStr;
1457 if (!GetConstantStringInfo(CI->getOperand(2), FormatStr))
1458 return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001459
1460 // fprintf(F, "foo") --> fwrite("foo", 3, 1, F)
1461 if (CI->getNumOperands() == 3) {
1462 for (unsigned i = 0, e = FormatStr.size(); i != e; ++i)
1463 if (FormatStr[i] == '%') // Could handle %% -> % if we cared.
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001464 return 0; // We found a format specifier.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001465
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001466 EmitFWrite(CI->getOperand(2), Context->getConstantInt(TD->getIntPtrType(),
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001467 FormatStr.size()),
1468 CI->getOperand(1), B);
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001469 return Context->getConstantInt(CI->getType(), FormatStr.size());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001470 }
1471
1472 // The remaining optimizations require the format string to be "%s" or "%c"
1473 // and have an extra operand.
1474 if (FormatStr.size() != 2 || FormatStr[0] != '%' || CI->getNumOperands() <4)
1475 return 0;
1476
1477 // Decode the second character of the format string.
1478 if (FormatStr[1] == 'c') {
1479 // fprintf(F, "%c", chr) --> *(i8*)dst = chr
1480 if (!isa<IntegerType>(CI->getOperand(3)->getType())) return 0;
1481 EmitFPutC(CI->getOperand(3), CI->getOperand(1), B);
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001482 return Context->getConstantInt(CI->getType(), 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001483 }
1484
1485 if (FormatStr[1] == 's') {
1486 // fprintf(F, "%s", str) -> fputs(str, F)
1487 if (!isa<PointerType>(CI->getOperand(3)->getType()) || !CI->use_empty())
1488 return 0;
1489 EmitFPutS(CI->getOperand(3), CI->getOperand(1), B);
1490 return CI;
1491 }
1492 return 0;
1493 }
1494};
1495
Bill Wendlingac178222008-05-05 21:37:59 +00001496} // end anonymous namespace.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001497
1498//===----------------------------------------------------------------------===//
1499// SimplifyLibCalls Pass Implementation
1500//===----------------------------------------------------------------------===//
1501
1502namespace {
1503 /// This pass optimizes well known library functions from libc and libm.
1504 ///
1505 class VISIBILITY_HIDDEN SimplifyLibCalls : public FunctionPass {
1506 StringMap<LibCallOptimization*> Optimizations;
1507 // Miscellaneous LibCall Optimizations
1508 ExitOpt Exit;
1509 // String and Memory LibCall Optimizations
Chris Lattnerf5b6bc72009-04-12 05:06:39 +00001510 StrCatOpt StrCat; StrNCatOpt StrNCat; StrChrOpt StrChr; StrCmpOpt StrCmp;
1511 StrNCmpOpt StrNCmp; StrCpyOpt StrCpy; StrNCpyOpt StrNCpy; StrLenOpt StrLen;
1512 StrToOpt StrTo; MemCmpOpt MemCmp; MemCpyOpt MemCpy; MemMoveOpt MemMove;
1513 MemSetOpt MemSet;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001514 // Math Library Optimizations
Chris Lattnere818f772008-05-02 18:43:35 +00001515 PowOpt Pow; Exp2Opt Exp2; UnaryDoubleFPOpt UnaryDoubleFP;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001516 // Integer Optimizations
Chris Lattner313f0e62008-06-09 08:26:51 +00001517 FFSOpt FFS; AbsOpt Abs; IsDigitOpt IsDigit; IsAsciiOpt IsAscii;
1518 ToAsciiOpt ToAscii;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001519 // Formatting and IO Optimizations
1520 SPrintFOpt SPrintF; PrintFOpt PrintF;
1521 FWriteOpt FWrite; FPutsOpt FPuts; FPrintFOpt FPrintF;
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001522
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001523 bool Modified; // This is only used by doInitialization.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001524 public:
1525 static char ID; // Pass identification
Dan Gohmanae73dc12008-09-04 17:05:41 +00001526 SimplifyLibCalls() : FunctionPass(&ID) {}
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001527
1528 void InitOptimizations();
1529 bool runOnFunction(Function &F);
1530
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001531 void setDoesNotAccessMemory(Function &F);
1532 void setOnlyReadsMemory(Function &F);
1533 void setDoesNotThrow(Function &F);
1534 void setDoesNotCapture(Function &F, unsigned n);
1535 void setDoesNotAlias(Function &F, unsigned n);
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001536 bool doInitialization(Module &M);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001537
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001538 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
1539 AU.addRequired<TargetData>();
1540 }
1541 };
1542 char SimplifyLibCalls::ID = 0;
1543} // end anonymous namespace.
1544
1545static RegisterPass<SimplifyLibCalls>
1546X("simplify-libcalls", "Simplify well-known library calls");
1547
1548// Public interface to the Simplify LibCalls pass.
1549FunctionPass *llvm::createSimplifyLibCallsPass() {
1550 return new SimplifyLibCalls();
1551}
1552
1553/// Optimizations - Populate the Optimizations map with all the optimizations
1554/// we know.
1555void SimplifyLibCalls::InitOptimizations() {
1556 // Miscellaneous LibCall Optimizations
1557 Optimizations["exit"] = &Exit;
1558
1559 // String and Memory LibCall Optimizations
1560 Optimizations["strcat"] = &StrCat;
Chris Lattnerf5b6bc72009-04-12 05:06:39 +00001561 Optimizations["strncat"] = &StrNCat;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001562 Optimizations["strchr"] = &StrChr;
1563 Optimizations["strcmp"] = &StrCmp;
1564 Optimizations["strncmp"] = &StrNCmp;
1565 Optimizations["strcpy"] = &StrCpy;
Chris Lattnerf5b6bc72009-04-12 05:06:39 +00001566 Optimizations["strncpy"] = &StrNCpy;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001567 Optimizations["strlen"] = &StrLen;
Nick Lewycky4c498412009-02-13 15:31:46 +00001568 Optimizations["strtol"] = &StrTo;
1569 Optimizations["strtod"] = &StrTo;
1570 Optimizations["strtof"] = &StrTo;
1571 Optimizations["strtoul"] = &StrTo;
1572 Optimizations["strtoll"] = &StrTo;
1573 Optimizations["strtold"] = &StrTo;
1574 Optimizations["strtoull"] = &StrTo;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001575 Optimizations["memcmp"] = &MemCmp;
1576 Optimizations["memcpy"] = &MemCpy;
Eli Friedmand83ae7d2008-11-30 08:32:11 +00001577 Optimizations["memmove"] = &MemMove;
1578 Optimizations["memset"] = &MemSet;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001579
1580 // Math Library Optimizations
1581 Optimizations["powf"] = &Pow;
1582 Optimizations["pow"] = &Pow;
1583 Optimizations["powl"] = &Pow;
Dale Johannesen53bfbbc2008-09-04 18:30:46 +00001584 Optimizations["llvm.pow.f32"] = &Pow;
1585 Optimizations["llvm.pow.f64"] = &Pow;
1586 Optimizations["llvm.pow.f80"] = &Pow;
1587 Optimizations["llvm.pow.f128"] = &Pow;
1588 Optimizations["llvm.pow.ppcf128"] = &Pow;
Chris Lattnere818f772008-05-02 18:43:35 +00001589 Optimizations["exp2l"] = &Exp2;
1590 Optimizations["exp2"] = &Exp2;
1591 Optimizations["exp2f"] = &Exp2;
Dale Johannesen53bfbbc2008-09-04 18:30:46 +00001592 Optimizations["llvm.exp2.ppcf128"] = &Exp2;
1593 Optimizations["llvm.exp2.f128"] = &Exp2;
1594 Optimizations["llvm.exp2.f80"] = &Exp2;
1595 Optimizations["llvm.exp2.f64"] = &Exp2;
1596 Optimizations["llvm.exp2.f32"] = &Exp2;
Chris Lattnere818f772008-05-02 18:43:35 +00001597
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001598#ifdef HAVE_FLOORF
1599 Optimizations["floor"] = &UnaryDoubleFP;
1600#endif
1601#ifdef HAVE_CEILF
1602 Optimizations["ceil"] = &UnaryDoubleFP;
1603#endif
1604#ifdef HAVE_ROUNDF
1605 Optimizations["round"] = &UnaryDoubleFP;
1606#endif
1607#ifdef HAVE_RINTF
1608 Optimizations["rint"] = &UnaryDoubleFP;
1609#endif
1610#ifdef HAVE_NEARBYINTF
1611 Optimizations["nearbyint"] = &UnaryDoubleFP;
1612#endif
1613
1614 // Integer Optimizations
1615 Optimizations["ffs"] = &FFS;
1616 Optimizations["ffsl"] = &FFS;
1617 Optimizations["ffsll"] = &FFS;
Chris Lattner313f0e62008-06-09 08:26:51 +00001618 Optimizations["abs"] = &Abs;
1619 Optimizations["labs"] = &Abs;
1620 Optimizations["llabs"] = &Abs;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001621 Optimizations["isdigit"] = &IsDigit;
1622 Optimizations["isascii"] = &IsAscii;
1623 Optimizations["toascii"] = &ToAscii;
1624
1625 // Formatting and IO Optimizations
1626 Optimizations["sprintf"] = &SPrintF;
1627 Optimizations["printf"] = &PrintF;
1628 Optimizations["fwrite"] = &FWrite;
1629 Optimizations["fputs"] = &FPuts;
1630 Optimizations["fprintf"] = &FPrintF;
1631}
1632
1633
1634/// runOnFunction - Top level algorithm.
1635///
1636bool SimplifyLibCalls::runOnFunction(Function &F) {
1637 if (Optimizations.empty())
1638 InitOptimizations();
1639
1640 const TargetData &TD = getAnalysis<TargetData>();
1641
Owen Andersone922c022009-07-22 00:24:57 +00001642 IRBuilder<> Builder(F.getContext());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001643
1644 bool Changed = false;
1645 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
1646 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ) {
1647 // Ignore non-calls.
1648 CallInst *CI = dyn_cast<CallInst>(I++);
1649 if (!CI) continue;
1650
1651 // Ignore indirect calls and calls to non-external functions.
1652 Function *Callee = CI->getCalledFunction();
1653 if (Callee == 0 || !Callee->isDeclaration() ||
1654 !(Callee->hasExternalLinkage() || Callee->hasDLLImportLinkage()))
1655 continue;
1656
1657 // Ignore unknown calls.
1658 const char *CalleeName = Callee->getNameStart();
1659 StringMap<LibCallOptimization*>::iterator OMI =
1660 Optimizations.find(CalleeName, CalleeName+Callee->getNameLen());
1661 if (OMI == Optimizations.end()) continue;
1662
1663 // Set the builder to the instruction after the call.
1664 Builder.SetInsertPoint(BB, I);
1665
1666 // Try to optimize this call.
1667 Value *Result = OMI->second->OptimizeCall(CI, TD, Builder);
1668 if (Result == 0) continue;
1669
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001670 DEBUG(DOUT << "SimplifyLibCalls simplified: " << *CI;
1671 DOUT << " into: " << *Result << "\n");
1672
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001673 // Something changed!
1674 Changed = true;
1675 ++NumSimplified;
1676
1677 // Inspect the instruction after the call (which was potentially just
1678 // added) next.
1679 I = CI; ++I;
1680
1681 if (CI != Result && !CI->use_empty()) {
1682 CI->replaceAllUsesWith(Result);
1683 if (!Result->hasName())
1684 Result->takeName(CI);
1685 }
1686 CI->eraseFromParent();
1687 }
1688 }
1689 return Changed;
1690}
1691
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001692// Utility methods for doInitialization.
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001693
1694void SimplifyLibCalls::setDoesNotAccessMemory(Function &F) {
1695 if (!F.doesNotAccessMemory()) {
1696 F.setDoesNotAccessMemory();
1697 ++NumAnnotated;
1698 Modified = true;
1699 }
1700}
1701void SimplifyLibCalls::setOnlyReadsMemory(Function &F) {
1702 if (!F.onlyReadsMemory()) {
1703 F.setOnlyReadsMemory();
1704 ++NumAnnotated;
1705 Modified = true;
1706 }
1707}
1708void SimplifyLibCalls::setDoesNotThrow(Function &F) {
1709 if (!F.doesNotThrow()) {
1710 F.setDoesNotThrow();
1711 ++NumAnnotated;
1712 Modified = true;
1713 }
1714}
1715void SimplifyLibCalls::setDoesNotCapture(Function &F, unsigned n) {
1716 if (!F.doesNotCapture(n)) {
1717 F.setDoesNotCapture(n);
1718 ++NumAnnotated;
1719 Modified = true;
1720 }
1721}
1722void SimplifyLibCalls::setDoesNotAlias(Function &F, unsigned n) {
1723 if (!F.doesNotAlias(n)) {
1724 F.setDoesNotAlias(n);
1725 ++NumAnnotated;
1726 Modified = true;
1727 }
1728}
1729
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001730/// doInitialization - Add attributes to well-known functions.
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001731///
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001732bool SimplifyLibCalls::doInitialization(Module &M) {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001733 Modified = false;
1734 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
1735 Function &F = *I;
1736 if (!F.isDeclaration())
1737 continue;
1738
1739 unsigned NameLen = F.getNameLen();
1740 if (!NameLen)
1741 continue;
1742
1743 const FunctionType *FTy = F.getFunctionType();
1744
1745 const char *NameStr = F.getNameStart();
1746 switch (NameStr[0]) {
1747 case 's':
1748 if (NameLen == 6 && !strcmp(NameStr, "strlen")) {
1749 if (FTy->getNumParams() != 1 ||
1750 !isa<PointerType>(FTy->getParamType(0)))
1751 continue;
1752 setOnlyReadsMemory(F);
1753 setDoesNotThrow(F);
1754 setDoesNotCapture(F, 1);
1755 } else if ((NameLen == 6 && !strcmp(NameStr, "strcpy")) ||
1756 (NameLen == 6 && !strcmp(NameStr, "stpcpy")) ||
1757 (NameLen == 6 && !strcmp(NameStr, "strcat")) ||
Nick Lewycky4c498412009-02-13 15:31:46 +00001758 (NameLen == 6 && !strcmp(NameStr, "strtol")) ||
1759 (NameLen == 6 && !strcmp(NameStr, "strtod")) ||
1760 (NameLen == 6 && !strcmp(NameStr, "strtof")) ||
1761 (NameLen == 7 && !strcmp(NameStr, "strtoul")) ||
1762 (NameLen == 7 && !strcmp(NameStr, "strtoll")) ||
1763 (NameLen == 7 && !strcmp(NameStr, "strtold")) ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001764 (NameLen == 7 && !strcmp(NameStr, "strncat")) ||
Nick Lewycky4c498412009-02-13 15:31:46 +00001765 (NameLen == 7 && !strcmp(NameStr, "strncpy")) ||
1766 (NameLen == 8 && !strcmp(NameStr, "strtoull"))) {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001767 if (FTy->getNumParams() < 2 ||
1768 !isa<PointerType>(FTy->getParamType(1)))
1769 continue;
1770 setDoesNotThrow(F);
1771 setDoesNotCapture(F, 2);
1772 } else if (NameLen == 7 && !strcmp(NameStr, "strxfrm")) {
1773 if (FTy->getNumParams() != 3 ||
1774 !isa<PointerType>(FTy->getParamType(0)) ||
1775 !isa<PointerType>(FTy->getParamType(1)))
1776 continue;
1777 setDoesNotThrow(F);
1778 setDoesNotCapture(F, 1);
1779 setDoesNotCapture(F, 2);
1780 } else if ((NameLen == 6 && !strcmp(NameStr, "strcmp")) ||
1781 (NameLen == 6 && !strcmp(NameStr, "strspn")) ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001782 (NameLen == 7 && !strcmp(NameStr, "strncmp")) ||
1783 (NameLen == 7 && !strcmp(NameStr, "strcspn")) ||
1784 (NameLen == 7 && !strcmp(NameStr, "strcoll")) ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001785 (NameLen == 10 && !strcmp(NameStr, "strcasecmp")) ||
1786 (NameLen == 11 && !strcmp(NameStr, "strncasecmp"))) {
1787 if (FTy->getNumParams() < 2 ||
1788 !isa<PointerType>(FTy->getParamType(0)) ||
1789 !isa<PointerType>(FTy->getParamType(1)))
1790 continue;
1791 setOnlyReadsMemory(F);
1792 setDoesNotThrow(F);
1793 setDoesNotCapture(F, 1);
1794 setDoesNotCapture(F, 2);
1795 } else if ((NameLen == 6 && !strcmp(NameStr, "strstr")) ||
1796 (NameLen == 7 && !strcmp(NameStr, "strpbrk"))) {
1797 if (FTy->getNumParams() != 2 ||
1798 !isa<PointerType>(FTy->getParamType(1)))
1799 continue;
1800 setOnlyReadsMemory(F);
1801 setDoesNotThrow(F);
1802 setDoesNotCapture(F, 2);
1803 } else if ((NameLen == 6 && !strcmp(NameStr, "strtok")) ||
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001804 (NameLen == 8 && !strcmp(NameStr, "strtok_r"))) {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001805 if (FTy->getNumParams() < 2 ||
1806 !isa<PointerType>(FTy->getParamType(1)))
1807 continue;
1808 setDoesNotThrow(F);
1809 setDoesNotCapture(F, 2);
1810 } else if ((NameLen == 5 && !strcmp(NameStr, "scanf")) ||
1811 (NameLen == 6 && !strcmp(NameStr, "setbuf")) ||
1812 (NameLen == 7 && !strcmp(NameStr, "setvbuf"))) {
1813 if (FTy->getNumParams() < 1 ||
1814 !isa<PointerType>(FTy->getParamType(0)))
1815 continue;
1816 setDoesNotThrow(F);
1817 setDoesNotCapture(F, 1);
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001818 } else if ((NameLen == 6 && !strcmp(NameStr, "strdup")) ||
1819 (NameLen == 7 && !strcmp(NameStr, "strndup"))) {
1820 if (FTy->getNumParams() < 1 ||
1821 !isa<PointerType>(FTy->getReturnType()) ||
1822 !isa<PointerType>(FTy->getParamType(0)))
1823 continue;
1824 setDoesNotThrow(F);
1825 setDoesNotAlias(F, 0);
1826 setDoesNotCapture(F, 1);
Nick Lewycky225f7472009-02-15 22:47:25 +00001827 } else if ((NameLen == 4 && !strcmp(NameStr, "stat")) ||
1828 (NameLen == 6 && !strcmp(NameStr, "sscanf")) ||
1829 (NameLen == 7 && !strcmp(NameStr, "sprintf")) ||
1830 (NameLen == 7 && !strcmp(NameStr, "statvfs"))) {
1831 if (FTy->getNumParams() < 2 ||
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001832 !isa<PointerType>(FTy->getParamType(0)) ||
1833 !isa<PointerType>(FTy->getParamType(1)))
1834 continue;
1835 setDoesNotThrow(F);
1836 setDoesNotCapture(F, 1);
1837 setDoesNotCapture(F, 2);
1838 } else if (NameLen == 8 && !strcmp(NameStr, "snprintf")) {
1839 if (FTy->getNumParams() != 3 ||
1840 !isa<PointerType>(FTy->getParamType(0)) ||
1841 !isa<PointerType>(FTy->getParamType(2)))
1842 continue;
1843 setDoesNotThrow(F);
1844 setDoesNotCapture(F, 1);
1845 setDoesNotCapture(F, 3);
Nick Lewycky225f7472009-02-15 22:47:25 +00001846 } else if (NameLen == 9 && !strcmp(NameStr, "setitimer")) {
1847 if (FTy->getNumParams() != 3 ||
1848 !isa<PointerType>(FTy->getParamType(1)) ||
1849 !isa<PointerType>(FTy->getParamType(2)))
1850 continue;
1851 setDoesNotThrow(F);
1852 setDoesNotCapture(F, 2);
1853 setDoesNotCapture(F, 3);
1854 } else if (NameLen == 6 && !strcmp(NameStr, "system")) {
1855 if (FTy->getNumParams() != 1 ||
1856 !isa<PointerType>(FTy->getParamType(0)))
1857 continue;
1858 // May throw; "system" is a valid pthread cancellation point.
1859 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001860 }
1861 break;
1862 case 'm':
1863 if (NameLen == 6 && !strcmp(NameStr, "memcmp")) {
1864 if (FTy->getNumParams() != 3 ||
1865 !isa<PointerType>(FTy->getParamType(0)) ||
1866 !isa<PointerType>(FTy->getParamType(1)))
1867 continue;
1868 setOnlyReadsMemory(F);
1869 setDoesNotThrow(F);
1870 setDoesNotCapture(F, 1);
1871 setDoesNotCapture(F, 2);
1872 } else if ((NameLen == 6 && !strcmp(NameStr, "memchr")) ||
1873 (NameLen == 7 && !strcmp(NameStr, "memrchr"))) {
1874 if (FTy->getNumParams() != 3)
1875 continue;
1876 setOnlyReadsMemory(F);
1877 setDoesNotThrow(F);
Nick Lewycky225f7472009-02-15 22:47:25 +00001878 } else if ((NameLen == 4 && !strcmp(NameStr, "modf")) ||
1879 (NameLen == 5 && !strcmp(NameStr, "modff")) ||
1880 (NameLen == 5 && !strcmp(NameStr, "modfl")) ||
1881 (NameLen == 6 && !strcmp(NameStr, "memcpy")) ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001882 (NameLen == 7 && !strcmp(NameStr, "memccpy")) ||
1883 (NameLen == 7 && !strcmp(NameStr, "memmove"))) {
Nick Lewycky225f7472009-02-15 22:47:25 +00001884 if (FTy->getNumParams() < 2 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001885 !isa<PointerType>(FTy->getParamType(1)))
1886 continue;
1887 setDoesNotThrow(F);
1888 setDoesNotCapture(F, 2);
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001889 } else if (NameLen == 8 && !strcmp(NameStr, "memalign")) {
1890 if (!isa<PointerType>(FTy->getReturnType()))
1891 continue;
1892 setDoesNotAlias(F, 0);
Nick Lewycky225f7472009-02-15 22:47:25 +00001893 } else if ((NameLen == 5 && !strcmp(NameStr, "mkdir")) ||
1894 (NameLen == 6 && !strcmp(NameStr, "mktime"))) {
1895 if (FTy->getNumParams() == 0 ||
1896 !isa<PointerType>(FTy->getParamType(0)))
1897 continue;
1898 setDoesNotThrow(F);
1899 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001900 }
1901 break;
1902 case 'r':
1903 if (NameLen == 7 && !strcmp(NameStr, "realloc")) {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001904 if (FTy->getNumParams() != 2 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001905 !isa<PointerType>(FTy->getParamType(0)) ||
1906 !isa<PointerType>(FTy->getReturnType()))
1907 continue;
1908 setDoesNotThrow(F);
1909 setDoesNotAlias(F, 0);
1910 setDoesNotCapture(F, 1);
1911 } else if (NameLen == 4 && !strcmp(NameStr, "read")) {
1912 if (FTy->getNumParams() != 3 ||
1913 !isa<PointerType>(FTy->getParamType(1)))
1914 continue;
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001915 // May throw; "read" is a valid pthread cancellation point.
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001916 setDoesNotCapture(F, 2);
1917 } else if ((NameLen == 5 && !strcmp(NameStr, "rmdir")) ||
1918 (NameLen == 6 && !strcmp(NameStr, "rewind")) ||
Nick Lewycky225f7472009-02-15 22:47:25 +00001919 (NameLen == 6 && !strcmp(NameStr, "remove")) ||
1920 (NameLen == 8 && !strcmp(NameStr, "realpath"))) {
1921 if (FTy->getNumParams() < 1 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001922 !isa<PointerType>(FTy->getParamType(0)))
1923 continue;
1924 setDoesNotThrow(F);
1925 setDoesNotCapture(F, 1);
Nick Lewycky225f7472009-02-15 22:47:25 +00001926 } else if ((NameLen == 6 && !strcmp(NameStr, "rename")) ||
1927 (NameLen == 8 && !strcmp(NameStr, "readlink"))) {
1928 if (FTy->getNumParams() < 2 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001929 !isa<PointerType>(FTy->getParamType(0)) ||
1930 !isa<PointerType>(FTy->getParamType(1)))
1931 continue;
1932 setDoesNotThrow(F);
1933 setDoesNotCapture(F, 1);
1934 setDoesNotCapture(F, 2);
1935 }
1936 break;
1937 case 'w':
1938 if (NameLen == 5 && !strcmp(NameStr, "write")) {
1939 if (FTy->getNumParams() != 3 ||
1940 !isa<PointerType>(FTy->getParamType(1)))
1941 continue;
Nick Lewycky0b6679d2009-01-18 04:34:36 +00001942 // May throw; "write" is a valid pthread cancellation point.
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001943 setDoesNotCapture(F, 2);
1944 }
1945 break;
1946 case 'b':
1947 if (NameLen == 5 && !strcmp(NameStr, "bcopy")) {
1948 if (FTy->getNumParams() != 3 ||
1949 !isa<PointerType>(FTy->getParamType(0)) ||
1950 !isa<PointerType>(FTy->getParamType(1)))
1951 continue;
1952 setDoesNotThrow(F);
1953 setDoesNotCapture(F, 1);
1954 setDoesNotCapture(F, 2);
1955 } else if (NameLen == 4 && !strcmp(NameStr, "bcmp")) {
1956 if (FTy->getNumParams() != 3 ||
1957 !isa<PointerType>(FTy->getParamType(0)) ||
1958 !isa<PointerType>(FTy->getParamType(1)))
1959 continue;
1960 setDoesNotThrow(F);
1961 setOnlyReadsMemory(F);
1962 setDoesNotCapture(F, 1);
1963 setDoesNotCapture(F, 2);
1964 } else if (NameLen == 5 && !strcmp(NameStr, "bzero")) {
1965 if (FTy->getNumParams() != 2 ||
1966 !isa<PointerType>(FTy->getParamType(0)))
1967 continue;
1968 setDoesNotThrow(F);
1969 setDoesNotCapture(F, 1);
1970 }
1971 break;
1972 case 'c':
1973 if (NameLen == 6 && !strcmp(NameStr, "calloc")) {
1974 if (FTy->getNumParams() != 2 ||
1975 !isa<PointerType>(FTy->getReturnType()))
1976 continue;
1977 setDoesNotThrow(F);
1978 setDoesNotAlias(F, 0);
Nick Lewycky225f7472009-02-15 22:47:25 +00001979 } else if ((NameLen == 5 && !strcmp(NameStr, "chmod")) ||
1980 (NameLen == 5 && !strcmp(NameStr, "chown")) ||
1981 (NameLen == 7 && !strcmp(NameStr, "ctermid")) ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001982 (NameLen == 8 && !strcmp(NameStr, "clearerr")) ||
1983 (NameLen == 8 && !strcmp(NameStr, "closedir"))) {
1984 if (FTy->getNumParams() == 0 ||
1985 !isa<PointerType>(FTy->getParamType(0)))
1986 continue;
1987 setDoesNotThrow(F);
1988 setDoesNotCapture(F, 1);
1989 }
1990 break;
1991 case 'a':
1992 if ((NameLen == 4 && !strcmp(NameStr, "atoi")) ||
1993 (NameLen == 4 && !strcmp(NameStr, "atol")) ||
1994 (NameLen == 4 && !strcmp(NameStr, "atof")) ||
1995 (NameLen == 5 && !strcmp(NameStr, "atoll"))) {
1996 if (FTy->getNumParams() != 1 ||
1997 !isa<PointerType>(FTy->getParamType(0)))
1998 continue;
1999 setDoesNotThrow(F);
2000 setOnlyReadsMemory(F);
2001 setDoesNotCapture(F, 1);
2002 } else if (NameLen == 6 && !strcmp(NameStr, "access")) {
2003 if (FTy->getNumParams() != 2 ||
2004 !isa<PointerType>(FTy->getParamType(0)))
2005 continue;
2006 setDoesNotThrow(F);
2007 setDoesNotCapture(F, 1);
2008 }
2009 break;
2010 case 'f':
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002011 if (NameLen == 5 && !strcmp(NameStr, "fopen")) {
2012 if (FTy->getNumParams() != 2 ||
2013 !isa<PointerType>(FTy->getReturnType()) ||
2014 !isa<PointerType>(FTy->getParamType(0)) ||
2015 !isa<PointerType>(FTy->getParamType(1)))
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002016 continue;
2017 setDoesNotThrow(F);
2018 setDoesNotAlias(F, 0);
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002019 setDoesNotCapture(F, 1);
2020 setDoesNotCapture(F, 2);
2021 } else if (NameLen == 6 && !strcmp(NameStr, "fdopen")) {
2022 if (FTy->getNumParams() != 2 ||
2023 !isa<PointerType>(FTy->getReturnType()) ||
2024 !isa<PointerType>(FTy->getParamType(1)))
2025 continue;
2026 setDoesNotThrow(F);
2027 setDoesNotAlias(F, 0);
2028 setDoesNotCapture(F, 2);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002029 } else if ((NameLen == 4 && !strcmp(NameStr, "feof")) ||
2030 (NameLen == 4 && !strcmp(NameStr, "free")) ||
2031 (NameLen == 5 && !strcmp(NameStr, "fseek")) ||
2032 (NameLen == 5 && !strcmp(NameStr, "ftell")) ||
2033 (NameLen == 5 && !strcmp(NameStr, "fgetc")) ||
2034 (NameLen == 6 && !strcmp(NameStr, "fseeko")) ||
2035 (NameLen == 6 && !strcmp(NameStr, "ftello")) ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002036 (NameLen == 6 && !strcmp(NameStr, "fileno")) ||
2037 (NameLen == 6 && !strcmp(NameStr, "fflush")) ||
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002038 (NameLen == 6 && !strcmp(NameStr, "fclose")) ||
Nick Lewycky225f7472009-02-15 22:47:25 +00002039 (NameLen == 7 && !strcmp(NameStr, "fsetpos")) ||
2040 (NameLen == 9 && !strcmp(NameStr, "flockfile")) ||
2041 (NameLen == 11 && !strcmp(NameStr, "funlockfile")) ||
2042 (NameLen == 12 && !strcmp(NameStr, "ftrylockfile"))) {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002043 if (FTy->getNumParams() == 0 ||
2044 !isa<PointerType>(FTy->getParamType(0)))
2045 continue;
2046 setDoesNotThrow(F);
2047 setDoesNotCapture(F, 1);
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002048 } else if (NameLen == 6 && !strcmp(NameStr, "ferror")) {
2049 if (FTy->getNumParams() != 1 ||
2050 !isa<PointerType>(FTy->getParamType(0)))
2051 continue;
2052 setDoesNotThrow(F);
2053 setDoesNotCapture(F, 1);
2054 setOnlyReadsMemory(F);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002055 } else if ((NameLen == 5 && !strcmp(NameStr, "fputc")) ||
Nick Lewycky225f7472009-02-15 22:47:25 +00002056 (NameLen == 5 && !strcmp(NameStr, "fstat")) ||
2057 (NameLen == 5 && !strcmp(NameStr, "frexp")) ||
2058 (NameLen == 6 && !strcmp(NameStr, "frexpf")) ||
2059 (NameLen == 6 && !strcmp(NameStr, "frexpl")) ||
2060 (NameLen == 8 && !strcmp(NameStr, "fstatvfs"))) {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002061 if (FTy->getNumParams() != 2 ||
2062 !isa<PointerType>(FTy->getParamType(1)))
2063 continue;
2064 setDoesNotThrow(F);
2065 setDoesNotCapture(F, 2);
2066 } else if (NameLen == 5 && !strcmp(NameStr, "fgets")) {
2067 if (FTy->getNumParams() != 3 ||
2068 !isa<PointerType>(FTy->getParamType(0)) ||
2069 !isa<PointerType>(FTy->getParamType(2)))
2070 continue;
2071 setDoesNotThrow(F);
2072 setDoesNotCapture(F, 3);
2073 } else if ((NameLen == 5 && !strcmp(NameStr, "fread")) ||
2074 (NameLen == 6 && !strcmp(NameStr, "fwrite"))) {
2075 if (FTy->getNumParams() != 4 ||
2076 !isa<PointerType>(FTy->getParamType(0)) ||
2077 !isa<PointerType>(FTy->getParamType(3)))
2078 continue;
2079 setDoesNotThrow(F);
2080 setDoesNotCapture(F, 1);
2081 setDoesNotCapture(F, 4);
Nick Lewycky225f7472009-02-15 22:47:25 +00002082 } else if ((NameLen == 5 && !strcmp(NameStr, "fputs")) ||
2083 (NameLen == 6 && !strcmp(NameStr, "fscanf")) ||
2084 (NameLen == 7 && !strcmp(NameStr, "fprintf")) ||
2085 (NameLen == 7 && !strcmp(NameStr, "fgetpos"))) {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002086 if (FTy->getNumParams() < 2 ||
2087 !isa<PointerType>(FTy->getParamType(0)) ||
2088 !isa<PointerType>(FTy->getParamType(1)))
2089 continue;
2090 setDoesNotThrow(F);
2091 setDoesNotCapture(F, 1);
2092 setDoesNotCapture(F, 2);
2093 }
2094 break;
2095 case 'g':
2096 if ((NameLen == 4 && !strcmp(NameStr, "getc")) ||
Nick Lewycky225f7472009-02-15 22:47:25 +00002097 (NameLen == 10 && !strcmp(NameStr, "getlogin_r")) ||
2098 (NameLen == 13 && !strcmp(NameStr, "getc_unlocked"))) {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002099 if (FTy->getNumParams() == 0 ||
2100 !isa<PointerType>(FTy->getParamType(0)))
2101 continue;
2102 setDoesNotThrow(F);
2103 setDoesNotCapture(F, 1);
2104 } else if (NameLen == 6 && !strcmp(NameStr, "getenv")) {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002105 if (FTy->getNumParams() != 1 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002106 !isa<PointerType>(FTy->getParamType(0)))
2107 continue;
2108 setDoesNotThrow(F);
2109 setOnlyReadsMemory(F);
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002110 setDoesNotCapture(F, 1);
2111 } else if ((NameLen == 4 && !strcmp(NameStr, "gets")) ||
2112 (NameLen == 7 && !strcmp(NameStr, "getchar"))) {
2113 setDoesNotThrow(F);
Nick Lewycky225f7472009-02-15 22:47:25 +00002114 } else if (NameLen == 9 && !strcmp(NameStr, "getitimer")) {
2115 if (FTy->getNumParams() != 2 ||
2116 !isa<PointerType>(FTy->getParamType(1)))
2117 continue;
2118 setDoesNotThrow(F);
2119 setDoesNotCapture(F, 2);
2120 } else if (NameLen == 8 && !strcmp(NameStr, "getpwnam")) {
2121 if (FTy->getNumParams() != 1 ||
2122 !isa<PointerType>(FTy->getParamType(0)))
2123 continue;
2124 setDoesNotThrow(F);
2125 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002126 }
2127 break;
2128 case 'u':
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002129 if (NameLen == 6 && !strcmp(NameStr, "ungetc")) {
2130 if (FTy->getNumParams() != 2 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002131 !isa<PointerType>(FTy->getParamType(1)))
2132 continue;
2133 setDoesNotThrow(F);
2134 setDoesNotCapture(F, 2);
Nick Lewycky225f7472009-02-15 22:47:25 +00002135 } else if ((NameLen == 5 && !strcmp(NameStr, "uname")) ||
2136 (NameLen == 6 && !strcmp(NameStr, "unlink")) ||
2137 (NameLen == 8 && !strcmp(NameStr, "unsetenv"))) {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002138 if (FTy->getNumParams() != 1 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002139 !isa<PointerType>(FTy->getParamType(0)))
2140 continue;
2141 setDoesNotThrow(F);
2142 setDoesNotCapture(F, 1);
Nick Lewycky225f7472009-02-15 22:47:25 +00002143 } else if ((NameLen == 5 && !strcmp(NameStr, "utime")) ||
2144 (NameLen == 6 && !strcmp(NameStr, "utimes"))) {
2145 if (FTy->getNumParams() != 2 ||
2146 !isa<PointerType>(FTy->getParamType(0)) ||
2147 !isa<PointerType>(FTy->getParamType(1)))
2148 continue;
2149 setDoesNotThrow(F);
2150 setDoesNotCapture(F, 1);
2151 setDoesNotCapture(F, 2);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002152 }
2153 break;
2154 case 'p':
2155 if (NameLen == 4 && !strcmp(NameStr, "putc")) {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002156 if (FTy->getNumParams() != 2 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002157 !isa<PointerType>(FTy->getParamType(1)))
2158 continue;
2159 setDoesNotThrow(F);
2160 setDoesNotCapture(F, 2);
2161 } else if ((NameLen == 4 && !strcmp(NameStr, "puts")) ||
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002162 (NameLen == 6 && !strcmp(NameStr, "printf")) ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002163 (NameLen == 6 && !strcmp(NameStr, "perror"))) {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002164 if (FTy->getNumParams() != 1 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002165 !isa<PointerType>(FTy->getParamType(0)))
2166 continue;
2167 setDoesNotThrow(F);
2168 setDoesNotCapture(F, 1);
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002169 } else if ((NameLen == 5 && !strcmp(NameStr, "pread")) ||
2170 (NameLen == 6 && !strcmp(NameStr, "pwrite"))) {
2171 if (FTy->getNumParams() != 4 ||
2172 !isa<PointerType>(FTy->getParamType(1)))
2173 continue;
2174 // May throw; these are valid pthread cancellation points.
2175 setDoesNotCapture(F, 2);
2176 } else if (NameLen == 7 && !strcmp(NameStr, "putchar")) {
2177 setDoesNotThrow(F);
Nick Lewycky225f7472009-02-15 22:47:25 +00002178 } else if (NameLen == 5 && !strcmp(NameStr, "popen")) {
2179 if (FTy->getNumParams() != 2 ||
2180 !isa<PointerType>(FTy->getReturnType()) ||
2181 !isa<PointerType>(FTy->getParamType(0)) ||
2182 !isa<PointerType>(FTy->getParamType(1)))
2183 continue;
2184 setDoesNotThrow(F);
2185 setDoesNotAlias(F, 0);
2186 setDoesNotCapture(F, 1);
2187 setDoesNotCapture(F, 2);
2188 } else if (NameLen == 6 && !strcmp(NameStr, "pclose")) {
2189 if (FTy->getNumParams() != 1 ||
2190 !isa<PointerType>(FTy->getParamType(0)))
2191 continue;
2192 setDoesNotThrow(F);
2193 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002194 }
2195 break;
2196 case 'v':
2197 if (NameLen == 6 && !strcmp(NameStr, "vscanf")) {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002198 if (FTy->getNumParams() != 2 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002199 !isa<PointerType>(FTy->getParamType(1)))
2200 continue;
2201 setDoesNotThrow(F);
2202 setDoesNotCapture(F, 1);
2203 } else if ((NameLen == 7 && !strcmp(NameStr, "vsscanf")) ||
2204 (NameLen == 7 && !strcmp(NameStr, "vfscanf"))) {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002205 if (FTy->getNumParams() != 3 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002206 !isa<PointerType>(FTy->getParamType(1)) ||
2207 !isa<PointerType>(FTy->getParamType(2)))
2208 continue;
2209 setDoesNotThrow(F);
2210 setDoesNotCapture(F, 1);
2211 setDoesNotCapture(F, 2);
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002212 } else if (NameLen == 6 && !strcmp(NameStr, "valloc")) {
2213 if (!isa<PointerType>(FTy->getReturnType()))
2214 continue;
2215 setDoesNotThrow(F);
2216 setDoesNotAlias(F, 0);
2217 } else if (NameLen == 7 && !strcmp(NameStr, "vprintf")) {
2218 if (FTy->getNumParams() != 2 ||
2219 !isa<PointerType>(FTy->getParamType(0)))
2220 continue;
2221 setDoesNotThrow(F);
2222 setDoesNotCapture(F, 1);
2223 } else if ((NameLen == 8 && !strcmp(NameStr, "vfprintf")) ||
2224 (NameLen == 8 && !strcmp(NameStr, "vsprintf"))) {
2225 if (FTy->getNumParams() != 3 ||
2226 !isa<PointerType>(FTy->getParamType(0)) ||
2227 !isa<PointerType>(FTy->getParamType(1)))
2228 continue;
2229 setDoesNotThrow(F);
2230 setDoesNotCapture(F, 1);
2231 setDoesNotCapture(F, 2);
2232 } else if (NameLen == 9 && !strcmp(NameStr, "vsnprintf")) {
2233 if (FTy->getNumParams() != 4 ||
2234 !isa<PointerType>(FTy->getParamType(0)) ||
2235 !isa<PointerType>(FTy->getParamType(2)))
2236 continue;
2237 setDoesNotThrow(F);
2238 setDoesNotCapture(F, 1);
2239 setDoesNotCapture(F, 3);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002240 }
2241 break;
2242 case 'o':
Nick Lewycky225f7472009-02-15 22:47:25 +00002243 if (NameLen == 4 && !strcmp(NameStr, "open")) {
2244 if (FTy->getNumParams() < 2 ||
2245 !isa<PointerType>(FTy->getParamType(0)))
2246 continue;
2247 // May throw; "open" is a valid pthread cancellation point.
2248 setDoesNotCapture(F, 1);
2249 } else if (NameLen == 7 && !strcmp(NameStr, "opendir")) {
2250 if (FTy->getNumParams() != 1 ||
2251 !isa<PointerType>(FTy->getReturnType()) ||
2252 !isa<PointerType>(FTy->getParamType(0)))
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002253 continue;
2254 setDoesNotThrow(F);
2255 setDoesNotAlias(F, 0);
Nick Lewycky225f7472009-02-15 22:47:25 +00002256 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002257 }
2258 break;
2259 case 't':
2260 if (NameLen == 7 && !strcmp(NameStr, "tmpfile")) {
2261 if (!isa<PointerType>(FTy->getReturnType()))
2262 continue;
2263 setDoesNotThrow(F);
2264 setDoesNotAlias(F, 0);
Nick Lewycky225f7472009-02-15 22:47:25 +00002265 } else if (NameLen == 5 && !strcmp(NameStr, "times")) {
2266 if (FTy->getNumParams() != 1 ||
2267 !isa<PointerType>(FTy->getParamType(0)))
2268 continue;
2269 setDoesNotThrow(F);
2270 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002271 }
Nick Lewycky225f7472009-02-15 22:47:25 +00002272 break;
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002273 case 'h':
2274 if ((NameLen == 5 && !strcmp(NameStr, "htonl")) ||
2275 (NameLen == 5 && !strcmp(NameStr, "htons"))) {
2276 setDoesNotThrow(F);
2277 setDoesNotAccessMemory(F);
2278 }
2279 break;
2280 case 'n':
2281 if ((NameLen == 5 && !strcmp(NameStr, "ntohl")) ||
2282 (NameLen == 5 && !strcmp(NameStr, "ntohs"))) {
2283 setDoesNotThrow(F);
2284 setDoesNotAccessMemory(F);
2285 }
Nick Lewycky225f7472009-02-15 22:47:25 +00002286 break;
2287 case 'l':
2288 if (NameLen == 5 && !strcmp(NameStr, "lstat")) {
2289 if (FTy->getNumParams() != 2 ||
2290 !isa<PointerType>(FTy->getParamType(0)) ||
2291 !isa<PointerType>(FTy->getParamType(1)))
2292 continue;
2293 setDoesNotThrow(F);
2294 setDoesNotCapture(F, 1);
2295 setDoesNotCapture(F, 2);
2296 } else if (NameLen == 6 && !strcmp(NameStr, "lchown")) {
2297 if (FTy->getNumParams() != 3 ||
2298 !isa<PointerType>(FTy->getParamType(0)))
2299 continue;
2300 setDoesNotThrow(F);
2301 setDoesNotCapture(F, 1);
2302 }
2303 break;
2304 case 'q':
2305 if (NameLen == 5 && !strcmp(NameStr, "qsort")) {
2306 if (FTy->getNumParams() != 4 ||
2307 !isa<PointerType>(FTy->getParamType(3)))
2308 continue;
2309 // May throw; places call through function pointer.
2310 setDoesNotCapture(F, 4);
2311 }
2312 break;
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002313 case '_':
2314 if ((NameLen == 8 && !strcmp(NameStr, "__strdup")) ||
2315 (NameLen == 9 && !strcmp(NameStr, "__strndup"))) {
2316 if (FTy->getNumParams() < 1 ||
2317 !isa<PointerType>(FTy->getReturnType()) ||
2318 !isa<PointerType>(FTy->getParamType(0)))
2319 continue;
2320 setDoesNotThrow(F);
2321 setDoesNotAlias(F, 0);
2322 setDoesNotCapture(F, 1);
2323 } else if (NameLen == 10 && !strcmp(NameStr, "__strtok_r")) {
2324 if (FTy->getNumParams() != 3 ||
2325 !isa<PointerType>(FTy->getParamType(1)))
2326 continue;
2327 setDoesNotThrow(F);
2328 setDoesNotCapture(F, 2);
2329 } else if (NameLen == 8 && !strcmp(NameStr, "_IO_getc")) {
2330 if (FTy->getNumParams() != 1 ||
2331 !isa<PointerType>(FTy->getParamType(0)))
2332 continue;
2333 setDoesNotThrow(F);
2334 setDoesNotCapture(F, 1);
2335 } else if (NameLen == 8 && !strcmp(NameStr, "_IO_putc")) {
2336 if (FTy->getNumParams() != 2 ||
2337 !isa<PointerType>(FTy->getParamType(1)))
2338 continue;
2339 setDoesNotThrow(F);
2340 setDoesNotCapture(F, 2);
2341 }
Nick Lewycky225f7472009-02-15 22:47:25 +00002342 break;
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002343 case 1:
2344 if (NameLen == 15 && !strcmp(NameStr, "\1__isoc99_scanf")) {
2345 if (FTy->getNumParams() < 1 ||
2346 !isa<PointerType>(FTy->getParamType(0)))
2347 continue;
2348 setDoesNotThrow(F);
2349 setDoesNotCapture(F, 1);
Nick Lewycky225f7472009-02-15 22:47:25 +00002350 } else if ((NameLen == 7 && !strcmp(NameStr, "\1stat64")) ||
2351 (NameLen == 8 && !strcmp(NameStr, "\1lstat64")) ||
2352 (NameLen == 10 && !strcmp(NameStr, "\1statvfs64")) ||
2353 (NameLen == 16 && !strcmp(NameStr, "\1__isoc99_sscanf"))) {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002354 if (FTy->getNumParams() < 1 ||
Nick Lewycky225f7472009-02-15 22:47:25 +00002355 !isa<PointerType>(FTy->getParamType(0)) ||
2356 !isa<PointerType>(FTy->getParamType(1)))
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002357 continue;
2358 setDoesNotThrow(F);
2359 setDoesNotCapture(F, 1);
2360 setDoesNotCapture(F, 2);
Nick Lewycky225f7472009-02-15 22:47:25 +00002361 } else if (NameLen == 8 && !strcmp(NameStr, "\1fopen64")) {
2362 if (FTy->getNumParams() != 2 ||
2363 !isa<PointerType>(FTy->getReturnType()) ||
2364 !isa<PointerType>(FTy->getParamType(0)) ||
2365 !isa<PointerType>(FTy->getParamType(1)))
2366 continue;
2367 setDoesNotThrow(F);
2368 setDoesNotAlias(F, 0);
2369 setDoesNotCapture(F, 1);
2370 setDoesNotCapture(F, 2);
2371 } else if ((NameLen == 9 && !strcmp(NameStr, "\1fseeko64")) ||
2372 (NameLen == 9 && !strcmp(NameStr, "\1ftello64"))) {
2373 if (FTy->getNumParams() == 0 ||
2374 !isa<PointerType>(FTy->getParamType(0)))
2375 continue;
2376 setDoesNotThrow(F);
2377 setDoesNotCapture(F, 1);
2378 } else if (NameLen == 10 && !strcmp(NameStr, "\1tmpfile64")) {
2379 if (!isa<PointerType>(FTy->getReturnType()))
2380 continue;
2381 setDoesNotThrow(F);
2382 setDoesNotAlias(F, 0);
2383 } else if ((NameLen == 8 && !strcmp(NameStr, "\1fstat64")) ||
2384 (NameLen == 11 && !strcmp(NameStr, "\1fstatvfs64"))) {
2385 if (FTy->getNumParams() != 2 ||
2386 !isa<PointerType>(FTy->getParamType(1)))
2387 continue;
2388 setDoesNotThrow(F);
2389 setDoesNotCapture(F, 2);
2390 } else if (NameLen == 7 && !strcmp(NameStr, "\1open64")) {
2391 if (FTy->getNumParams() < 2 ||
2392 !isa<PointerType>(FTy->getParamType(0)))
2393 continue;
2394 // May throw; "open" is a valid pthread cancellation point.
2395 setDoesNotCapture(F, 1);
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002396 }
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002397 break;
2398 }
2399 }
2400 return Modified;
2401}
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002402
2403// TODO:
2404// Additional cases that we need to add to this file:
2405//
2406// cbrt:
2407// * cbrt(expN(X)) -> expN(x/3)
2408// * cbrt(sqrt(x)) -> pow(x,1/6)
2409// * cbrt(sqrt(x)) -> pow(x,1/9)
2410//
2411// cos, cosf, cosl:
2412// * cos(-x) -> cos(x)
2413//
2414// exp, expf, expl:
2415// * exp(log(x)) -> x
2416//
2417// log, logf, logl:
2418// * log(exp(x)) -> x
2419// * log(x**y) -> y*log(x)
2420// * log(exp(y)) -> y*log(e)
2421// * log(exp2(y)) -> y*log(2)
2422// * log(exp10(y)) -> y*log(10)
2423// * log(sqrt(x)) -> 0.5*log(x)
2424// * log(pow(x,y)) -> y*log(x)
2425//
2426// lround, lroundf, lroundl:
2427// * lround(cnst) -> cnst'
2428//
2429// memcmp:
2430// * memcmp(x,y,l) -> cnst
2431// (if all arguments are constant and strlen(x) <= l and strlen(y) <= l)
2432//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002433// pow, powf, powl:
2434// * pow(exp(x),y) -> exp(x*y)
2435// * pow(sqrt(x),y) -> pow(x,y*0.5)
2436// * pow(pow(x,y),z)-> pow(x,y*z)
2437//
2438// puts:
2439// * puts("") -> putchar("\n")
2440//
2441// round, roundf, roundl:
2442// * round(cnst) -> cnst'
2443//
2444// signbit:
2445// * signbit(cnst) -> cnst'
2446// * signbit(nncst) -> 0 (if pstv is a non-negative constant)
2447//
2448// sqrt, sqrtf, sqrtl:
2449// * sqrt(expN(x)) -> expN(x*0.5)
2450// * sqrt(Nroot(x)) -> pow(x,1/(2*N))
2451// * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
2452//
2453// stpcpy:
2454// * stpcpy(str, "literal") ->
2455// llvm.memcpy(str,"literal",strlen("literal")+1,1)
2456// strrchr:
2457// * strrchr(s,c) -> reverse_offset_of_in(c,s)
2458// (if c is a constant integer and s is a constant string)
2459// * strrchr(s1,0) -> strchr(s1,0)
2460//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002461// strpbrk:
2462// * strpbrk(s,a) -> offset_in_for(s,a)
2463// (if s and a are both constant strings)
2464// * strpbrk(s,"") -> 0
2465// * strpbrk(s,a) -> strchr(s,a[0]) (if a is constant string of length 1)
2466//
2467// strspn, strcspn:
2468// * strspn(s,a) -> const_int (if both args are constant)
2469// * strspn("",a) -> 0
2470// * strspn(s,"") -> 0
2471// * strcspn(s,a) -> const_int (if both args are constant)
2472// * strcspn("",a) -> 0
2473// * strcspn(s,"") -> strlen(a)
2474//
2475// strstr:
2476// * strstr(x,x) -> x
2477// * strstr(s1,s2) -> offset_of_s2_in(s1)
2478// (if s1 and s2 are constant strings)
2479//
2480// tan, tanf, tanl:
2481// * tan(atan(x)) -> x
2482//
2483// trunc, truncf, truncl:
2484// * trunc(cnst) -> cnst'
2485//
2486//