blob: 3c28ad27e57aedfa03effdf299082c79dc7a5589 [file] [log] [blame]
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001//===- SimplifyLibCalls.cpp - Optimize specific well-known library calls --===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements a simple pass that applies a variety of small
11// optimizations for calls to specific well-known function calls (e.g. runtime
Chris Lattnere9f9a7e2009-09-03 05:19:59 +000012// library functions). Any optimization that takes the very simple form
13// "replace call to library function with simpler code that provides the same
14// result" belongs in this file.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000015//
16//===----------------------------------------------------------------------===//
17
18#define DEBUG_TYPE "simplify-libcalls"
19#include "llvm/Transforms/Scalar.h"
20#include "llvm/Intrinsics.h"
Owen Andersonfa5cbd62009-07-03 19:42:02 +000021#include "llvm/LLVMContext.h"
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000022#include "llvm/Module.h"
23#include "llvm/Pass.h"
24#include "llvm/Support/IRBuilder.h"
Evan Cheng0ff39b32008-06-30 07:31:25 +000025#include "llvm/Analysis/ValueTracking.h"
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000026#include "llvm/Target/TargetData.h"
27#include "llvm/ADT/SmallPtrSet.h"
28#include "llvm/ADT/StringMap.h"
29#include "llvm/ADT/Statistic.h"
Daniel Dunbar473955f2009-07-29 22:00:43 +000030#include "llvm/ADT/STLExtras.h"
Chris Lattner56b4f2b2008-05-01 06:39:12 +000031#include "llvm/Support/Debug.h"
Daniel Dunbarf0443c12009-07-26 08:34:35 +000032#include "llvm/Support/raw_ostream.h"
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000033#include "llvm/Config/config.h"
34using namespace llvm;
35
36STATISTIC(NumSimplified, "Number of library calls simplified");
Nick Lewycky0f8df9a2009-01-04 20:27:34 +000037STATISTIC(NumAnnotated, "Number of attributes added to library functions");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000038
39//===----------------------------------------------------------------------===//
40// Optimizer Base Class
41//===----------------------------------------------------------------------===//
42
43/// This class is the abstract base class for the set of optimizations that
44/// corresponds to one library call.
45namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +000046class LibCallOptimization {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000047protected:
48 Function *Caller;
49 const TargetData *TD;
Owen Andersonfa5cbd62009-07-03 19:42:02 +000050 LLVMContext* Context;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000051public:
52 LibCallOptimization() { }
53 virtual ~LibCallOptimization() {}
54
55 /// CallOptimizer - This pure virtual method is implemented by base classes to
56 /// do various optimizations. If this returns null then no transformation was
57 /// performed. If it returns CI, then it transformed the call and CI is to be
58 /// deleted. If it returns something else, replace CI with the new value and
59 /// delete CI.
Eric Christopher37c8b862009-10-07 21:14:25 +000060 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B)
Eric Christopher7a61d702008-08-08 19:39:37 +000061 =0;
Eric Christopher37c8b862009-10-07 21:14:25 +000062
Dan Gohmanf14d9192009-08-18 00:48:13 +000063 Value *OptimizeCall(CallInst *CI, const TargetData *TD, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000064 Caller = CI->getParent()->getParent();
Dan Gohmanf14d9192009-08-18 00:48:13 +000065 this->TD = TD;
Owen Andersonfa5cbd62009-07-03 19:42:02 +000066 if (CI->getCalledFunction())
Owen Andersone922c022009-07-22 00:24:57 +000067 Context = &CI->getCalledFunction()->getContext();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000068 return CallOptimizer(CI->getCalledFunction(), CI, B);
69 }
70
71 /// CastToCStr - Return V if it is an i8*, otherwise cast it to i8*.
Eric Christopher7a61d702008-08-08 19:39:37 +000072 Value *CastToCStr(Value *V, IRBuilder<> &B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000073
74 /// EmitStrLen - Emit a call to the strlen function to the builder, for the
75 /// specified pointer. Ptr is required to be some pointer type, and the
76 /// return value has 'intptr_t' type.
Eric Christopher7a61d702008-08-08 19:39:37 +000077 Value *EmitStrLen(Value *Ptr, IRBuilder<> &B);
Eric Christopher37c8b862009-10-07 21:14:25 +000078
Chris Lattner24604112009-12-16 09:32:05 +000079 /// EmitStrChr - Emit a call to the strchr function to the builder, for the
80 /// specified pointer and character. Ptr is required to be some pointer type,
81 /// and the return value has 'i8*' type.
82 Value *EmitStrChr(Value *Ptr, char C, IRBuilder<> &B);
83
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000084 /// EmitMemCpy - Emit a call to the memcpy function to the builder. This
85 /// always expects that the size has type 'intptr_t' and Dst/Src are pointers.
Eric Christopher37c8b862009-10-07 21:14:25 +000086 Value *EmitMemCpy(Value *Dst, Value *Src, Value *Len,
Eric Christopher7a61d702008-08-08 19:39:37 +000087 unsigned Align, IRBuilder<> &B);
Eric Christopher37c8b862009-10-07 21:14:25 +000088
Eric Christopher80bf1d52009-11-21 01:01:30 +000089 /// EmitMemMove - Emit a call to the memmove function to the builder. This
90 /// always expects that the size has type 'intptr_t' and Dst/Src are pointers.
91 Value *EmitMemMove(Value *Dst, Value *Src, Value *Len,
92 unsigned Align, IRBuilder<> &B);
93
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +000094 /// EmitMemChr - Emit a call to the memchr function. This assumes that Ptr is
95 /// a pointer, Val is an i32 value, and Len is an 'intptr_t' value.
Eric Christopher7a61d702008-08-08 19:39:37 +000096 Value *EmitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilder<> &B);
Nick Lewycky13a09e22008-12-21 00:19:21 +000097
98 /// EmitMemCmp - Emit a call to the memcmp function.
99 Value *EmitMemCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B);
100
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000101 /// EmitMemSet - Emit a call to the memset function
102 Value *EmitMemSet(Value *Dst, Value *Val, Value *Len, IRBuilder<> &B);
103
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000104 /// EmitUnaryFloatFnCall - Emit a call to the unary function named 'Name' (e.g.
105 /// 'floor'). This function is known to take a single of type matching 'Op'
106 /// and returns one value with the same type. If 'Op' is a long double, 'l'
107 /// is added as the suffix of name, if 'Op' is a float, we add a 'f' suffix.
Dan Gohman79cb8402009-09-25 23:10:17 +0000108 Value *EmitUnaryFloatFnCall(Value *Op, const char *Name, IRBuilder<> &B,
109 const AttrListPtr &Attrs);
Eric Christopher37c8b862009-10-07 21:14:25 +0000110
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000111 /// EmitPutChar - Emit a call to the putchar function. This assumes that Char
112 /// is an integer.
Chris Lattner74965f22009-11-09 04:57:04 +0000113 Value *EmitPutChar(Value *Char, IRBuilder<> &B);
Eric Christopher37c8b862009-10-07 21:14:25 +0000114
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000115 /// EmitPutS - Emit a call to the puts function. This assumes that Str is
116 /// some pointer.
Eric Christopher7a61d702008-08-08 19:39:37 +0000117 void EmitPutS(Value *Str, IRBuilder<> &B);
Eric Christopher37c8b862009-10-07 21:14:25 +0000118
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000119 /// EmitFPutC - Emit a call to the fputc function. This assumes that Char is
120 /// an i32, and File is a pointer to FILE.
Eric Christopher7a61d702008-08-08 19:39:37 +0000121 void EmitFPutC(Value *Char, Value *File, IRBuilder<> &B);
Eric Christopher37c8b862009-10-07 21:14:25 +0000122
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000123 /// EmitFPutS - Emit a call to the puts function. Str is required to be a
124 /// pointer and File is a pointer to FILE.
Eric Christopher7a61d702008-08-08 19:39:37 +0000125 void EmitFPutS(Value *Str, Value *File, IRBuilder<> &B);
Eric Christopher37c8b862009-10-07 21:14:25 +0000126
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000127 /// EmitFWrite - Emit a call to the fwrite function. This assumes that Ptr is
128 /// a pointer, Size is an 'intptr_t', and File is a pointer to FILE.
Eric Christopher7a61d702008-08-08 19:39:37 +0000129 void EmitFWrite(Value *Ptr, Value *Size, Value *File, IRBuilder<> &B);
Eric Christopher37c8b862009-10-07 21:14:25 +0000130
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000131};
132} // End anonymous namespace.
133
134/// CastToCStr - Return V if it is an i8*, otherwise cast it to i8*.
Eric Christopher7a61d702008-08-08 19:39:37 +0000135Value *LibCallOptimization::CastToCStr(Value *V, IRBuilder<> &B) {
Chris Lattnerbf796322009-12-02 06:05:42 +0000136 return B.CreateBitCast(V, Type::getInt8PtrTy(*Context), "cstr");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000137}
138
139/// EmitStrLen - Emit a call to the strlen function to the builder, for the
140/// specified pointer. This always returns an integer value of size intptr_t.
Eric Christopher7a61d702008-08-08 19:39:37 +0000141Value *LibCallOptimization::EmitStrLen(Value *Ptr, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000142 Module *M = Caller->getParent();
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000143 AttributeWithIndex AWI[2];
144 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
145 AWI[1] = AttributeWithIndex::get(~0u, Attribute::ReadOnly |
146 Attribute::NoUnwind);
147
148 Constant *StrLen =M->getOrInsertFunction("strlen", AttrListPtr::get(AWI, 2),
Owen Anderson1d0be152009-08-13 21:58:54 +0000149 TD->getIntPtrType(*Context),
Eric Christopher37c8b862009-10-07 21:14:25 +0000150 Type::getInt8PtrTy(*Context),
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000151 NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000152 CallInst *CI = B.CreateCall(StrLen, CastToCStr(Ptr, B), "strlen");
153 if (const Function *F = dyn_cast<Function>(StrLen->stripPointerCasts()))
154 CI->setCallingConv(F->getCallingConv());
155
156 return CI;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000157}
158
Chris Lattner24604112009-12-16 09:32:05 +0000159/// EmitStrChr - Emit a call to the strchr function to the builder, for the
160/// specified pointer and character. Ptr is required to be some pointer type,
161/// and the return value has 'i8*' type.
162Value *LibCallOptimization::EmitStrChr(Value *Ptr, char C, IRBuilder<> &B) {
163 Module *M = Caller->getParent();
164 AttributeWithIndex AWI =
165 AttributeWithIndex::get(~0u, Attribute::ReadOnly | Attribute::NoUnwind);
166
167 const Type *I8Ptr = Type::getInt8PtrTy(*Context);
168 const Type *I32Ty = Type::getInt32Ty(*Context);
169 Constant *StrChr = M->getOrInsertFunction("strchr", AttrListPtr::get(&AWI, 1),
170 I8Ptr, I8Ptr, I32Ty, NULL);
171 CallInst *CI = B.CreateCall2(StrChr, CastToCStr(Ptr, B),
172 ConstantInt::get(I32Ty, C), "strchr");
173 if (const Function *F = dyn_cast<Function>(StrChr->stripPointerCasts()))
174 CI->setCallingConv(F->getCallingConv());
175 return CI;
176}
177
178
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000179/// EmitMemCpy - Emit a call to the memcpy function to the builder. This always
180/// expects that the size has type 'intptr_t' and Dst/Src are pointers.
181Value *LibCallOptimization::EmitMemCpy(Value *Dst, Value *Src, Value *Len,
Eric Christopher7a61d702008-08-08 19:39:37 +0000182 unsigned Align, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000183 Module *M = Caller->getParent();
Chris Lattnerbf796322009-12-02 06:05:42 +0000184 const Type *Ty = Len->getType();
185 Value *MemCpy = Intrinsic::getDeclaration(M, Intrinsic::memcpy, &Ty, 1);
186 Dst = CastToCStr(Dst, B);
187 Src = CastToCStr(Src, B);
188 return B.CreateCall4(MemCpy, Dst, Src, Len,
Owen Anderson1d0be152009-08-13 21:58:54 +0000189 ConstantInt::get(Type::getInt32Ty(*Context), Align));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000190}
191
Chris Lattnerbf796322009-12-02 06:05:42 +0000192/// EmitMemMove - Emit a call to the memmove function to the builder. This
Eric Christopher80bf1d52009-11-21 01:01:30 +0000193/// always expects that the size has type 'intptr_t' and Dst/Src are pointers.
194Value *LibCallOptimization::EmitMemMove(Value *Dst, Value *Src, Value *Len,
195 unsigned Align, IRBuilder<> &B) {
196 Module *M = Caller->getParent();
Chris Lattnerbf796322009-12-02 06:05:42 +0000197 const Type *Ty = TD->getIntPtrType(*Context);
198 Value *MemMove = Intrinsic::getDeclaration(M, Intrinsic::memmove, &Ty, 1);
199 Dst = CastToCStr(Dst, B);
200 Src = CastToCStr(Src, B);
Eric Christopher80bf1d52009-11-21 01:01:30 +0000201 Value *A = ConstantInt::get(Type::getInt32Ty(*Context), Align);
Chris Lattnerbf796322009-12-02 06:05:42 +0000202 return B.CreateCall4(MemMove, Dst, Src, Len, A);
Eric Christopher80bf1d52009-11-21 01:01:30 +0000203}
204
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000205/// EmitMemChr - Emit a call to the memchr function. This assumes that Ptr is
206/// a pointer, Val is an i32 value, and Len is an 'intptr_t' value.
207Value *LibCallOptimization::EmitMemChr(Value *Ptr, Value *Val,
Eric Christopher7a61d702008-08-08 19:39:37 +0000208 Value *Len, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000209 Module *M = Caller->getParent();
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000210 AttributeWithIndex AWI;
211 AWI = AttributeWithIndex::get(~0u, Attribute::ReadOnly | Attribute::NoUnwind);
212
213 Value *MemChr = M->getOrInsertFunction("memchr", AttrListPtr::get(&AWI, 1),
Eric Christopher37c8b862009-10-07 21:14:25 +0000214 Type::getInt8PtrTy(*Context),
215 Type::getInt8PtrTy(*Context),
216 Type::getInt32Ty(*Context),
217 TD->getIntPtrType(*Context),
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000218 NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000219 CallInst *CI = B.CreateCall3(MemChr, CastToCStr(Ptr, B), Val, Len, "memchr");
220
221 if (const Function *F = dyn_cast<Function>(MemChr->stripPointerCasts()))
222 CI->setCallingConv(F->getCallingConv());
223
224 return CI;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000225}
226
Nick Lewycky13a09e22008-12-21 00:19:21 +0000227/// EmitMemCmp - Emit a call to the memcmp function.
228Value *LibCallOptimization::EmitMemCmp(Value *Ptr1, Value *Ptr2,
229 Value *Len, IRBuilder<> &B) {
230 Module *M = Caller->getParent();
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000231 AttributeWithIndex AWI[3];
232 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
233 AWI[1] = AttributeWithIndex::get(2, Attribute::NoCapture);
234 AWI[2] = AttributeWithIndex::get(~0u, Attribute::ReadOnly |
235 Attribute::NoUnwind);
236
237 Value *MemCmp = M->getOrInsertFunction("memcmp", AttrListPtr::get(AWI, 3),
Owen Anderson1d0be152009-08-13 21:58:54 +0000238 Type::getInt32Ty(*Context),
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000239 Type::getInt8PtrTy(*Context),
240 Type::getInt8PtrTy(*Context),
Owen Anderson1d0be152009-08-13 21:58:54 +0000241 TD->getIntPtrType(*Context), NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000242 CallInst *CI = B.CreateCall3(MemCmp, CastToCStr(Ptr1, B), CastToCStr(Ptr2, B),
243 Len, "memcmp");
244
245 if (const Function *F = dyn_cast<Function>(MemCmp->stripPointerCasts()))
246 CI->setCallingConv(F->getCallingConv());
247
248 return CI;
Nick Lewycky13a09e22008-12-21 00:19:21 +0000249}
250
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000251/// EmitMemSet - Emit a call to the memset function
252Value *LibCallOptimization::EmitMemSet(Value *Dst, Value *Val,
253 Value *Len, IRBuilder<> &B) {
254 Module *M = Caller->getParent();
255 Intrinsic::ID IID = Intrinsic::memset;
256 const Type *Tys[1];
257 Tys[0] = Len->getType();
258 Value *MemSet = Intrinsic::getDeclaration(M, IID, Tys, 1);
Owen Anderson1d0be152009-08-13 21:58:54 +0000259 Value *Align = ConstantInt::get(Type::getInt32Ty(*Context), 1);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000260 return B.CreateCall4(MemSet, CastToCStr(Dst, B), Val, Len, Align);
261}
262
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000263/// EmitUnaryFloatFnCall - Emit a call to the unary function named 'Name' (e.g.
264/// 'floor'). This function is known to take a single of type matching 'Op' and
265/// returns one value with the same type. If 'Op' is a long double, 'l' is
266/// added as the suffix of name, if 'Op' is a float, we add a 'f' suffix.
267Value *LibCallOptimization::EmitUnaryFloatFnCall(Value *Op, const char *Name,
Dan Gohman79cb8402009-09-25 23:10:17 +0000268 IRBuilder<> &B,
269 const AttrListPtr &Attrs) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000270 char NameBuffer[20];
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000271 if (!Op->getType()->isDoubleTy()) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000272 // If we need to add a suffix, copy into NameBuffer.
273 unsigned NameLen = strlen(Name);
274 assert(NameLen < sizeof(NameBuffer)-2);
275 memcpy(NameBuffer, Name, NameLen);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000276 if (Op->getType()->isFloatTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000277 NameBuffer[NameLen] = 'f'; // floorf
278 else
279 NameBuffer[NameLen] = 'l'; // floorl
280 NameBuffer[NameLen+1] = 0;
281 Name = NameBuffer;
282 }
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000283
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000284 Module *M = Caller->getParent();
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000285 Value *Callee = M->getOrInsertFunction(Name, Op->getType(),
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000286 Op->getType(), NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000287 CallInst *CI = B.CreateCall(Callee, Op, Name);
Dan Gohman79cb8402009-09-25 23:10:17 +0000288 CI->setAttributes(Attrs);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000289 if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
290 CI->setCallingConv(F->getCallingConv());
291
292 return CI;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000293}
294
295/// EmitPutChar - Emit a call to the putchar function. This assumes that Char
296/// is an integer.
Chris Lattner74965f22009-11-09 04:57:04 +0000297Value *LibCallOptimization::EmitPutChar(Value *Char, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000298 Module *M = Caller->getParent();
Owen Anderson1d0be152009-08-13 21:58:54 +0000299 Value *PutChar = M->getOrInsertFunction("putchar", Type::getInt32Ty(*Context),
300 Type::getInt32Ty(*Context), NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000301 CallInst *CI = B.CreateCall(PutChar,
Eric Christopher37c8b862009-10-07 21:14:25 +0000302 B.CreateIntCast(Char,
303 Type::getInt32Ty(*Context),
Duncan Sandsf63c4102009-11-16 12:32:28 +0000304 /*isSigned*/true,
Eric Christopher37c8b862009-10-07 21:14:25 +0000305 "chari"),
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000306 "putchar");
307
308 if (const Function *F = dyn_cast<Function>(PutChar->stripPointerCasts()))
309 CI->setCallingConv(F->getCallingConv());
Chris Lattner74965f22009-11-09 04:57:04 +0000310 return CI;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000311}
312
313/// EmitPutS - Emit a call to the puts function. This assumes that Str is
314/// some pointer.
Eric Christopher7a61d702008-08-08 19:39:37 +0000315void LibCallOptimization::EmitPutS(Value *Str, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000316 Module *M = Caller->getParent();
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000317 AttributeWithIndex AWI[2];
318 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
319 AWI[1] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
320
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000321 Value *PutS = M->getOrInsertFunction("puts", AttrListPtr::get(AWI, 2),
Owen Anderson1d0be152009-08-13 21:58:54 +0000322 Type::getInt32Ty(*Context),
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000323 Type::getInt8PtrTy(*Context),
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000324 NULL);
325 CallInst *CI = B.CreateCall(PutS, CastToCStr(Str, B), "puts");
326 if (const Function *F = dyn_cast<Function>(PutS->stripPointerCasts()))
327 CI->setCallingConv(F->getCallingConv());
328
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000329}
330
331/// EmitFPutC - Emit a call to the fputc function. This assumes that Char is
332/// an integer and File is a pointer to FILE.
Eric Christopher7a61d702008-08-08 19:39:37 +0000333void LibCallOptimization::EmitFPutC(Value *Char, Value *File, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000334 Module *M = Caller->getParent();
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000335 AttributeWithIndex AWI[2];
336 AWI[0] = AttributeWithIndex::get(2, Attribute::NoCapture);
337 AWI[1] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
338 Constant *F;
339 if (isa<PointerType>(File->getType()))
Eric Christopher37c8b862009-10-07 21:14:25 +0000340 F = M->getOrInsertFunction("fputc", AttrListPtr::get(AWI, 2),
341 Type::getInt32Ty(*Context),
342 Type::getInt32Ty(*Context), File->getType(),
343 NULL);
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000344 else
Eric Christopher37c8b862009-10-07 21:14:25 +0000345 F = M->getOrInsertFunction("fputc",
346 Type::getInt32Ty(*Context),
347 Type::getInt32Ty(*Context),
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000348 File->getType(), NULL);
Duncan Sandsf63c4102009-11-16 12:32:28 +0000349 Char = B.CreateIntCast(Char, Type::getInt32Ty(*Context), /*isSigned*/true,
350 "chari");
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000351 CallInst *CI = B.CreateCall2(F, Char, File, "fputc");
352
353 if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
354 CI->setCallingConv(Fn->getCallingConv());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000355}
356
357/// EmitFPutS - Emit a call to the puts function. Str is required to be a
358/// pointer and File is a pointer to FILE.
Eric Christopher7a61d702008-08-08 19:39:37 +0000359void LibCallOptimization::EmitFPutS(Value *Str, Value *File, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000360 Module *M = Caller->getParent();
Nick Lewycky225f7472009-02-15 22:47:25 +0000361 AttributeWithIndex AWI[3];
362 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
363 AWI[1] = AttributeWithIndex::get(2, Attribute::NoCapture);
364 AWI[2] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000365 Constant *F;
366 if (isa<PointerType>(File->getType()))
Eric Christopher37c8b862009-10-07 21:14:25 +0000367 F = M->getOrInsertFunction("fputs", AttrListPtr::get(AWI, 3),
368 Type::getInt32Ty(*Context),
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000369 Type::getInt8PtrTy(*Context),
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000370 File->getType(), NULL);
371 else
Owen Anderson1d0be152009-08-13 21:58:54 +0000372 F = M->getOrInsertFunction("fputs", Type::getInt32Ty(*Context),
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000373 Type::getInt8PtrTy(*Context),
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000374 File->getType(), NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000375 CallInst *CI = B.CreateCall2(F, CastToCStr(Str, B), File, "fputs");
376
377 if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
378 CI->setCallingConv(Fn->getCallingConv());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000379}
380
381/// EmitFWrite - Emit a call to the fwrite function. This assumes that Ptr is
382/// a pointer, Size is an 'intptr_t', and File is a pointer to FILE.
383void LibCallOptimization::EmitFWrite(Value *Ptr, Value *Size, Value *File,
Eric Christopher7a61d702008-08-08 19:39:37 +0000384 IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000385 Module *M = Caller->getParent();
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000386 AttributeWithIndex AWI[3];
387 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
388 AWI[1] = AttributeWithIndex::get(4, Attribute::NoCapture);
389 AWI[2] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
390 Constant *F;
391 if (isa<PointerType>(File->getType()))
392 F = M->getOrInsertFunction("fwrite", AttrListPtr::get(AWI, 3),
Owen Anderson1d0be152009-08-13 21:58:54 +0000393 TD->getIntPtrType(*Context),
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000394 Type::getInt8PtrTy(*Context),
Eric Christopher37c8b862009-10-07 21:14:25 +0000395 TD->getIntPtrType(*Context),
396 TD->getIntPtrType(*Context),
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000397 File->getType(), NULL);
398 else
Owen Anderson1d0be152009-08-13 21:58:54 +0000399 F = M->getOrInsertFunction("fwrite", TD->getIntPtrType(*Context),
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000400 Type::getInt8PtrTy(*Context),
Eric Christopher37c8b862009-10-07 21:14:25 +0000401 TD->getIntPtrType(*Context),
402 TD->getIntPtrType(*Context),
Nick Lewycky6cd0c042009-01-05 00:07:50 +0000403 File->getType(), NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000404 CallInst *CI = B.CreateCall4(F, CastToCStr(Ptr, B), Size,
Owen Anderson1d0be152009-08-13 21:58:54 +0000405 ConstantInt::get(TD->getIntPtrType(*Context), 1), File);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +0000406
407 if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
408 CI->setCallingConv(Fn->getCallingConv());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000409}
410
411//===----------------------------------------------------------------------===//
412// Helper Functions
413//===----------------------------------------------------------------------===//
414
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000415/// GetStringLengthH - If we can compute the length of the string pointed to by
416/// the specified pointer, return 'len+1'. If we can't, return 0.
417static uint64_t GetStringLengthH(Value *V, SmallPtrSet<PHINode*, 32> &PHIs) {
418 // Look through noop bitcast instructions.
419 if (BitCastInst *BCI = dyn_cast<BitCastInst>(V))
420 return GetStringLengthH(BCI->getOperand(0), PHIs);
Eric Christopher37c8b862009-10-07 21:14:25 +0000421
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000422 // If this is a PHI node, there are two cases: either we have already seen it
423 // or we haven't.
424 if (PHINode *PN = dyn_cast<PHINode>(V)) {
425 if (!PHIs.insert(PN))
426 return ~0ULL; // already in the set.
Eric Christopher37c8b862009-10-07 21:14:25 +0000427
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000428 // If it was new, see if all the input strings are the same length.
429 uint64_t LenSoFar = ~0ULL;
430 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
431 uint64_t Len = GetStringLengthH(PN->getIncomingValue(i), PHIs);
432 if (Len == 0) return 0; // Unknown length -> unknown.
Eric Christopher37c8b862009-10-07 21:14:25 +0000433
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000434 if (Len == ~0ULL) continue;
Eric Christopher37c8b862009-10-07 21:14:25 +0000435
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000436 if (Len != LenSoFar && LenSoFar != ~0ULL)
437 return 0; // Disagree -> unknown.
438 LenSoFar = Len;
439 }
Eric Christopher37c8b862009-10-07 21:14:25 +0000440
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000441 // Success, all agree.
442 return LenSoFar;
443 }
Eric Christopher37c8b862009-10-07 21:14:25 +0000444
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000445 // strlen(select(c,x,y)) -> strlen(x) ^ strlen(y)
446 if (SelectInst *SI = dyn_cast<SelectInst>(V)) {
447 uint64_t Len1 = GetStringLengthH(SI->getTrueValue(), PHIs);
448 if (Len1 == 0) return 0;
449 uint64_t Len2 = GetStringLengthH(SI->getFalseValue(), PHIs);
450 if (Len2 == 0) return 0;
451 if (Len1 == ~0ULL) return Len2;
452 if (Len2 == ~0ULL) return Len1;
453 if (Len1 != Len2) return 0;
454 return Len1;
455 }
Eric Christopher37c8b862009-10-07 21:14:25 +0000456
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000457 // If the value is not a GEP instruction nor a constant expression with a
458 // GEP instruction, then return unknown.
459 User *GEP = 0;
460 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(V)) {
461 GEP = GEPI;
462 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
463 if (CE->getOpcode() != Instruction::GetElementPtr)
464 return 0;
465 GEP = CE;
466 } else {
467 return 0;
468 }
Eric Christopher37c8b862009-10-07 21:14:25 +0000469
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000470 // Make sure the GEP has exactly three arguments.
471 if (GEP->getNumOperands() != 3)
472 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000473
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000474 // Check to make sure that the first operand of the GEP is an integer and
475 // has value 0 so that we are sure we're indexing into the initializer.
476 if (ConstantInt *Idx = dyn_cast<ConstantInt>(GEP->getOperand(1))) {
477 if (!Idx->isZero())
478 return 0;
479 } else
480 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000481
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000482 // If the second index isn't a ConstantInt, then this is a variable index
483 // into the array. If this occurs, we can't say anything meaningful about
484 // the string.
485 uint64_t StartIdx = 0;
486 if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(2)))
487 StartIdx = CI->getZExtValue();
488 else
489 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000490
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000491 // The GEP instruction, constant or instruction, must reference a global
492 // variable that is a constant and is initialized. The referenced constant
493 // initializer is the array that we'll use for optimization.
494 GlobalVariable* GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
Dan Gohman107f41f2009-08-19 00:11:12 +0000495 if (!GV || !GV->isConstant() || !GV->hasInitializer() ||
496 GV->mayBeOverridden())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000497 return 0;
498 Constant *GlobalInit = GV->getInitializer();
Eric Christopher37c8b862009-10-07 21:14:25 +0000499
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000500 // Handle the ConstantAggregateZero case, which is a degenerate case. The
501 // initializer is constant zero so the length of the string must be zero.
502 if (isa<ConstantAggregateZero>(GlobalInit))
503 return 1; // Len = 0 offset by 1.
Eric Christopher37c8b862009-10-07 21:14:25 +0000504
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000505 // Must be a Constant Array
506 ConstantArray *Array = dyn_cast<ConstantArray>(GlobalInit);
Owen Anderson1d0be152009-08-13 21:58:54 +0000507 if (!Array ||
508 Array->getType()->getElementType() != Type::getInt8Ty(V->getContext()))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000509 return false;
Eric Christopher37c8b862009-10-07 21:14:25 +0000510
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000511 // Get the number of elements in the array
512 uint64_t NumElts = Array->getType()->getNumElements();
Eric Christopher37c8b862009-10-07 21:14:25 +0000513
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000514 // Traverse the constant array from StartIdx (derived above) which is
515 // the place the GEP refers to in the array.
516 for (unsigned i = StartIdx; i != NumElts; ++i) {
517 Constant *Elt = Array->getOperand(i);
518 ConstantInt *CI = dyn_cast<ConstantInt>(Elt);
519 if (!CI) // This array isn't suitable, non-int initializer.
520 return 0;
521 if (CI->isZero())
522 return i-StartIdx+1; // We found end of string, success!
523 }
Eric Christopher37c8b862009-10-07 21:14:25 +0000524
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000525 return 0; // The array isn't null terminated, conservatively return 'unknown'.
526}
527
528/// GetStringLength - If we can compute the length of the string pointed to by
529/// the specified pointer, return 'len+1'. If we can't, return 0.
530static uint64_t GetStringLength(Value *V) {
531 if (!isa<PointerType>(V->getType())) return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000532
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000533 SmallPtrSet<PHINode*, 32> PHIs;
534 uint64_t Len = GetStringLengthH(V, PHIs);
535 // If Len is ~0ULL, we had an infinite phi cycle: this is dead code, so return
536 // an empty string as a length.
537 return Len == ~0ULL ? 1 : Len;
538}
539
540/// IsOnlyUsedInZeroEqualityComparison - Return true if it only matters that the
Eric Christopher37c8b862009-10-07 21:14:25 +0000541/// value is equal or not-equal to zero.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000542static bool IsOnlyUsedInZeroEqualityComparison(Value *V) {
543 for (Value::use_iterator UI = V->use_begin(), E = V->use_end();
544 UI != E; ++UI) {
545 if (ICmpInst *IC = dyn_cast<ICmpInst>(*UI))
546 if (IC->isEquality())
547 if (Constant *C = dyn_cast<Constant>(IC->getOperand(1)))
548 if (C->isNullValue())
549 continue;
550 // Unknown instruction.
551 return false;
552 }
553 return true;
554}
555
556//===----------------------------------------------------------------------===//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000557// String and Memory LibCall Optimizations
558//===----------------------------------------------------------------------===//
559
560//===---------------------------------------===//
561// 'strcat' Optimizations
Chris Lattnere9f9a7e2009-09-03 05:19:59 +0000562namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +0000563struct StrCatOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000564 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000565 // Verify the "strcat" function prototype.
566 const FunctionType *FT = Callee->getFunctionType();
567 if (FT->getNumParams() != 2 ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000568 FT->getReturnType() != Type::getInt8PtrTy(*Context) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000569 FT->getParamType(0) != FT->getReturnType() ||
570 FT->getParamType(1) != FT->getReturnType())
571 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000572
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000573 // Extract some information from the instruction
574 Value *Dst = CI->getOperand(1);
575 Value *Src = CI->getOperand(2);
Eric Christopher37c8b862009-10-07 21:14:25 +0000576
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000577 // See if we can get the length of the input string.
578 uint64_t Len = GetStringLength(Src);
Chris Lattner56b4f2b2008-05-01 06:39:12 +0000579 if (Len == 0) return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000580 --Len; // Unbias length.
Eric Christopher37c8b862009-10-07 21:14:25 +0000581
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000582 // Handle the simple, do-nothing case: strcat(x, "") -> x
583 if (Len == 0)
584 return Dst;
Dan Gohmanf14d9192009-08-18 00:48:13 +0000585
586 // These optimizations require TargetData.
587 if (!TD) return 0;
588
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000589 EmitStrLenMemCpy(Src, Dst, Len, B);
590 return Dst;
591 }
592
593 void EmitStrLenMemCpy(Value *Src, Value *Dst, uint64_t Len, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000594 // We need to find the end of the destination string. That's where the
595 // memory is to be moved to. We just generate a call to strlen.
596 Value *DstLen = EmitStrLen(Dst, B);
Eric Christopher37c8b862009-10-07 21:14:25 +0000597
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000598 // Now that we have the destination's length, we must index into the
599 // destination's pointer to get the actual memcpy destination (end of
600 // the string .. we're concatenating).
Ed Schoutenb5e0a962009-04-06 13:06:48 +0000601 Value *CpyDst = B.CreateGEP(Dst, DstLen, "endptr");
Eric Christopher37c8b862009-10-07 21:14:25 +0000602
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000603 // We have enough information to now generate the memcpy call to do the
604 // concatenation for us. Make a memcpy to copy the nul byte with align = 1.
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000605 EmitMemCpy(CpyDst, Src,
Owen Anderson1d0be152009-08-13 21:58:54 +0000606 ConstantInt::get(TD->getIntPtrType(*Context), Len+1), 1, B);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000607 }
608};
609
610//===---------------------------------------===//
611// 'strncat' Optimizations
612
Chris Lattner3e8b6632009-09-02 06:11:42 +0000613struct StrNCatOpt : public StrCatOpt {
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000614 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
615 // Verify the "strncat" function prototype.
616 const FunctionType *FT = Callee->getFunctionType();
617 if (FT->getNumParams() != 3 ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000618 FT->getReturnType() != Type::getInt8PtrTy(*Context) ||
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000619 FT->getParamType(0) != FT->getReturnType() ||
620 FT->getParamType(1) != FT->getReturnType() ||
621 !isa<IntegerType>(FT->getParamType(2)))
622 return 0;
623
624 // Extract some information from the instruction
625 Value *Dst = CI->getOperand(1);
626 Value *Src = CI->getOperand(2);
627 uint64_t Len;
628
629 // We don't do anything if length is not constant
630 if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(CI->getOperand(3)))
631 Len = LengthArg->getZExtValue();
632 else
633 return 0;
634
635 // See if we can get the length of the input string.
636 uint64_t SrcLen = GetStringLength(Src);
637 if (SrcLen == 0) return 0;
638 --SrcLen; // Unbias length.
639
640 // Handle the simple, do-nothing cases:
641 // strncat(x, "", c) -> x
642 // strncat(x, c, 0) -> x
643 if (SrcLen == 0 || Len == 0) return Dst;
644
Dan Gohmanf14d9192009-08-18 00:48:13 +0000645 // These optimizations require TargetData.
646 if (!TD) return 0;
647
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000648 // We don't optimize this case
649 if (Len < SrcLen) return 0;
650
651 // strncat(x, s, c) -> strcat(x, s)
652 // s is constant so the strcat can be optimized further
Chris Lattner5db4cdf2009-04-12 18:22:33 +0000653 EmitStrLenMemCpy(Src, Dst, SrcLen, B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000654 return Dst;
655 }
656};
657
658//===---------------------------------------===//
659// 'strchr' Optimizations
660
Chris Lattner3e8b6632009-09-02 06:11:42 +0000661struct StrChrOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000662 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000663 // Verify the "strchr" function prototype.
664 const FunctionType *FT = Callee->getFunctionType();
665 if (FT->getNumParams() != 2 ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000666 FT->getReturnType() != Type::getInt8PtrTy(*Context) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000667 FT->getParamType(0) != FT->getReturnType())
668 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000669
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000670 Value *SrcStr = CI->getOperand(1);
Eric Christopher37c8b862009-10-07 21:14:25 +0000671
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000672 // If the second operand is non-constant, see if we can compute the length
673 // of the input string and turn this into memchr.
674 ConstantInt *CharC = dyn_cast<ConstantInt>(CI->getOperand(2));
675 if (CharC == 0) {
Dan Gohmanf14d9192009-08-18 00:48:13 +0000676 // These optimizations require TargetData.
677 if (!TD) return 0;
678
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000679 uint64_t Len = GetStringLength(SrcStr);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000680 if (Len == 0 ||
681 FT->getParamType(1) != Type::getInt32Ty(*Context)) // memchr needs i32.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000682 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000683
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000684 return EmitMemChr(SrcStr, CI->getOperand(2), // include nul.
Owen Anderson1d0be152009-08-13 21:58:54 +0000685 ConstantInt::get(TD->getIntPtrType(*Context), Len), B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000686 }
687
688 // Otherwise, the character is a constant, see if the first argument is
689 // a string literal. If so, we can constant fold.
Bill Wendling0582ae92009-03-13 04:39:26 +0000690 std::string Str;
691 if (!GetConstantStringInfo(SrcStr, Str))
Chris Lattner56b4f2b2008-05-01 06:39:12 +0000692 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000693
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000694 // strchr can find the nul character.
695 Str += '\0';
696 char CharValue = CharC->getSExtValue();
Eric Christopher37c8b862009-10-07 21:14:25 +0000697
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000698 // Compute the offset.
699 uint64_t i = 0;
700 while (1) {
701 if (i == Str.size()) // Didn't find the char. strchr returns null.
Owen Andersona7235ea2009-07-31 20:28:14 +0000702 return Constant::getNullValue(CI->getType());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000703 // Did we find our match?
704 if (Str[i] == CharValue)
705 break;
706 ++i;
707 }
Eric Christopher37c8b862009-10-07 21:14:25 +0000708
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000709 // strchr(s+n,c) -> gep(s+n+i,c)
Owen Anderson1d0be152009-08-13 21:58:54 +0000710 Value *Idx = ConstantInt::get(Type::getInt64Ty(*Context), i);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000711 return B.CreateGEP(SrcStr, Idx, "strchr");
712 }
713};
714
715//===---------------------------------------===//
716// 'strcmp' Optimizations
717
Chris Lattner3e8b6632009-09-02 06:11:42 +0000718struct StrCmpOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000719 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000720 // Verify the "strcmp" function prototype.
721 const FunctionType *FT = Callee->getFunctionType();
Eric Christopher37c8b862009-10-07 21:14:25 +0000722 if (FT->getNumParams() != 2 ||
723 FT->getReturnType() != Type::getInt32Ty(*Context) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000724 FT->getParamType(0) != FT->getParamType(1) ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000725 FT->getParamType(0) != Type::getInt8PtrTy(*Context))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000726 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000727
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000728 Value *Str1P = CI->getOperand(1), *Str2P = CI->getOperand(2);
729 if (Str1P == Str2P) // strcmp(x,x) -> 0
Owen Andersoneed707b2009-07-24 23:12:02 +0000730 return ConstantInt::get(CI->getType(), 0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000731
Bill Wendling0582ae92009-03-13 04:39:26 +0000732 std::string Str1, Str2;
733 bool HasStr1 = GetConstantStringInfo(Str1P, Str1);
734 bool HasStr2 = GetConstantStringInfo(Str2P, Str2);
Eric Christopher37c8b862009-10-07 21:14:25 +0000735
Bill Wendling0582ae92009-03-13 04:39:26 +0000736 if (HasStr1 && Str1.empty()) // strcmp("", x) -> *x
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000737 return B.CreateZExt(B.CreateLoad(Str2P, "strcmpload"), CI->getType());
Eric Christopher37c8b862009-10-07 21:14:25 +0000738
Bill Wendling0582ae92009-03-13 04:39:26 +0000739 if (HasStr2 && Str2.empty()) // strcmp(x,"") -> *x
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000740 return B.CreateZExt(B.CreateLoad(Str1P, "strcmpload"), CI->getType());
Eric Christopher37c8b862009-10-07 21:14:25 +0000741
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000742 // strcmp(x, y) -> cnst (if both x and y are constant strings)
Bill Wendling0582ae92009-03-13 04:39:26 +0000743 if (HasStr1 && HasStr2)
Eric Christopher37c8b862009-10-07 21:14:25 +0000744 return ConstantInt::get(CI->getType(),
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000745 strcmp(Str1.c_str(),Str2.c_str()));
Nick Lewycky13a09e22008-12-21 00:19:21 +0000746
747 // strcmp(P, "x") -> memcmp(P, "x", 2)
748 uint64_t Len1 = GetStringLength(Str1P);
749 uint64_t Len2 = GetStringLength(Str2P);
Chris Lattner849832c2009-06-19 04:17:36 +0000750 if (Len1 && Len2) {
Dan Gohmanf14d9192009-08-18 00:48:13 +0000751 // These optimizations require TargetData.
752 if (!TD) return 0;
753
Nick Lewycky13a09e22008-12-21 00:19:21 +0000754 return EmitMemCmp(Str1P, Str2P,
Owen Anderson1d0be152009-08-13 21:58:54 +0000755 ConstantInt::get(TD->getIntPtrType(*Context),
Chris Lattner849832c2009-06-19 04:17:36 +0000756 std::min(Len1, Len2)), B);
Nick Lewycky13a09e22008-12-21 00:19:21 +0000757 }
758
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000759 return 0;
760 }
761};
762
763//===---------------------------------------===//
764// 'strncmp' Optimizations
765
Chris Lattner3e8b6632009-09-02 06:11:42 +0000766struct StrNCmpOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000767 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000768 // Verify the "strncmp" function prototype.
769 const FunctionType *FT = Callee->getFunctionType();
Eric Christopher37c8b862009-10-07 21:14:25 +0000770 if (FT->getNumParams() != 3 ||
771 FT->getReturnType() != Type::getInt32Ty(*Context) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000772 FT->getParamType(0) != FT->getParamType(1) ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000773 FT->getParamType(0) != Type::getInt8PtrTy(*Context) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000774 !isa<IntegerType>(FT->getParamType(2)))
775 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000776
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000777 Value *Str1P = CI->getOperand(1), *Str2P = CI->getOperand(2);
778 if (Str1P == Str2P) // strncmp(x,x,n) -> 0
Owen Andersoneed707b2009-07-24 23:12:02 +0000779 return ConstantInt::get(CI->getType(), 0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000780
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000781 // Get the length argument if it is constant.
782 uint64_t Length;
783 if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(CI->getOperand(3)))
784 Length = LengthArg->getZExtValue();
785 else
786 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000787
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000788 if (Length == 0) // strncmp(x,y,0) -> 0
Owen Andersoneed707b2009-07-24 23:12:02 +0000789 return ConstantInt::get(CI->getType(), 0);
Eric Christopher37c8b862009-10-07 21:14:25 +0000790
Bill Wendling0582ae92009-03-13 04:39:26 +0000791 std::string Str1, Str2;
792 bool HasStr1 = GetConstantStringInfo(Str1P, Str1);
793 bool HasStr2 = GetConstantStringInfo(Str2P, Str2);
Eric Christopher37c8b862009-10-07 21:14:25 +0000794
Bill Wendling0582ae92009-03-13 04:39:26 +0000795 if (HasStr1 && Str1.empty()) // strncmp("", x, n) -> *x
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000796 return B.CreateZExt(B.CreateLoad(Str2P, "strcmpload"), CI->getType());
Eric Christopher37c8b862009-10-07 21:14:25 +0000797
Bill Wendling0582ae92009-03-13 04:39:26 +0000798 if (HasStr2 && Str2.empty()) // strncmp(x, "", n) -> *x
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000799 return B.CreateZExt(B.CreateLoad(Str1P, "strcmpload"), CI->getType());
Eric Christopher37c8b862009-10-07 21:14:25 +0000800
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000801 // strncmp(x, y) -> cnst (if both x and y are constant strings)
Bill Wendling0582ae92009-03-13 04:39:26 +0000802 if (HasStr1 && HasStr2)
Owen Andersoneed707b2009-07-24 23:12:02 +0000803 return ConstantInt::get(CI->getType(),
Bill Wendling0582ae92009-03-13 04:39:26 +0000804 strncmp(Str1.c_str(), Str2.c_str(), Length));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000805 return 0;
806 }
807};
808
809
810//===---------------------------------------===//
811// 'strcpy' Optimizations
812
Chris Lattner3e8b6632009-09-02 06:11:42 +0000813struct StrCpyOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000814 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000815 // Verify the "strcpy" function prototype.
816 const FunctionType *FT = Callee->getFunctionType();
817 if (FT->getNumParams() != 2 || FT->getReturnType() != FT->getParamType(0) ||
818 FT->getParamType(0) != FT->getParamType(1) ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000819 FT->getParamType(0) != Type::getInt8PtrTy(*Context))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000820 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000821
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000822 Value *Dst = CI->getOperand(1), *Src = CI->getOperand(2);
823 if (Dst == Src) // strcpy(x,x) -> x
824 return Src;
Eric Christopher37c8b862009-10-07 21:14:25 +0000825
Dan Gohmanf14d9192009-08-18 00:48:13 +0000826 // These optimizations require TargetData.
827 if (!TD) return 0;
828
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000829 // See if we can get the length of the input string.
830 uint64_t Len = GetStringLength(Src);
Chris Lattner56b4f2b2008-05-01 06:39:12 +0000831 if (Len == 0) return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000832
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000833 // We have enough information to now generate the memcpy call to do the
834 // concatenation for us. Make a memcpy to copy the nul byte with align = 1.
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000835 EmitMemCpy(Dst, Src,
Owen Anderson1d0be152009-08-13 21:58:54 +0000836 ConstantInt::get(TD->getIntPtrType(*Context), Len), 1, B);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000837 return Dst;
838 }
839};
840
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000841//===---------------------------------------===//
842// 'strncpy' Optimizations
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000843
Chris Lattner3e8b6632009-09-02 06:11:42 +0000844struct StrNCpyOpt : public LibCallOptimization {
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000845 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
846 const FunctionType *FT = Callee->getFunctionType();
847 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
848 FT->getParamType(0) != FT->getParamType(1) ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000849 FT->getParamType(0) != Type::getInt8PtrTy(*Context) ||
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000850 !isa<IntegerType>(FT->getParamType(2)))
851 return 0;
852
853 Value *Dst = CI->getOperand(1);
854 Value *Src = CI->getOperand(2);
855 Value *LenOp = CI->getOperand(3);
856
857 // See if we can get the length of the input string.
858 uint64_t SrcLen = GetStringLength(Src);
859 if (SrcLen == 0) return 0;
860 --SrcLen;
861
862 if (SrcLen == 0) {
863 // strncpy(x, "", y) -> memset(x, '\0', y, 1)
Eric Christopher37c8b862009-10-07 21:14:25 +0000864 EmitMemSet(Dst, ConstantInt::get(Type::getInt8Ty(*Context), '\0'), LenOp,
865 B);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000866 return Dst;
867 }
868
869 uint64_t Len;
870 if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(LenOp))
871 Len = LengthArg->getZExtValue();
872 else
873 return 0;
874
875 if (Len == 0) return Dst; // strncpy(x, y, 0) -> x
876
Dan Gohmanf14d9192009-08-18 00:48:13 +0000877 // These optimizations require TargetData.
878 if (!TD) return 0;
879
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000880 // Let strncpy handle the zero padding
881 if (Len > SrcLen+1) return 0;
882
883 // strncpy(x, s, c) -> memcpy(x, s, c, 1) [s and c are constant]
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000884 EmitMemCpy(Dst, Src,
Owen Anderson1d0be152009-08-13 21:58:54 +0000885 ConstantInt::get(TD->getIntPtrType(*Context), Len), 1, B);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +0000886
887 return Dst;
888 }
889};
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000890
891//===---------------------------------------===//
892// 'strlen' Optimizations
893
Chris Lattner3e8b6632009-09-02 06:11:42 +0000894struct StrLenOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000895 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000896 const FunctionType *FT = Callee->getFunctionType();
897 if (FT->getNumParams() != 1 ||
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000898 FT->getParamType(0) != Type::getInt8PtrTy(*Context) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000899 !isa<IntegerType>(FT->getReturnType()))
900 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +0000901
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000902 Value *Src = CI->getOperand(1);
903
904 // Constant folding: strlen("xyz") -> 3
905 if (uint64_t Len = GetStringLength(Src))
Owen Andersoneed707b2009-07-24 23:12:02 +0000906 return ConstantInt::get(CI->getType(), Len-1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000907
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000908 // strlen(x) != 0 --> *x != 0
909 // strlen(x) == 0 --> *x == 0
Chris Lattner98d67d72009-12-23 23:24:51 +0000910 if (IsOnlyUsedInZeroEqualityComparison(CI))
911 return B.CreateZExt(B.CreateLoad(Src, "strlenfirst"), CI->getType());
912 return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000913 }
914};
915
916//===---------------------------------------===//
Chris Lattner24604112009-12-16 09:32:05 +0000917// 'strto*' Optimizations. This handles strtol, strtod, strtof, strtoul, etc.
Nick Lewycky4c498412009-02-13 15:31:46 +0000918
Chris Lattner3e8b6632009-09-02 06:11:42 +0000919struct StrToOpt : public LibCallOptimization {
Nick Lewycky4c498412009-02-13 15:31:46 +0000920 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
921 const FunctionType *FT = Callee->getFunctionType();
922 if ((FT->getNumParams() != 2 && FT->getNumParams() != 3) ||
923 !isa<PointerType>(FT->getParamType(0)) ||
924 !isa<PointerType>(FT->getParamType(1)))
925 return 0;
926
927 Value *EndPtr = CI->getOperand(2);
Nick Lewycky02b6a6a2009-02-13 17:08:33 +0000928 if (isa<ConstantPointerNull>(EndPtr)) {
929 CI->setOnlyReadsMemory();
Nick Lewycky4c498412009-02-13 15:31:46 +0000930 CI->addAttribute(1, Attribute::NoCapture);
Nick Lewycky02b6a6a2009-02-13 17:08:33 +0000931 }
Nick Lewycky4c498412009-02-13 15:31:46 +0000932
933 return 0;
934 }
935};
936
Chris Lattner24604112009-12-16 09:32:05 +0000937//===---------------------------------------===//
938// 'strstr' Optimizations
939
940struct StrStrOpt : public LibCallOptimization {
941 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
942 const FunctionType *FT = Callee->getFunctionType();
943 if (FT->getNumParams() != 2 ||
944 !isa<PointerType>(FT->getParamType(0)) ||
945 !isa<PointerType>(FT->getParamType(1)) ||
946 !isa<PointerType>(FT->getReturnType()))
947 return 0;
948
949 // fold strstr(x, x) -> x.
950 if (CI->getOperand(1) == CI->getOperand(2))
951 return B.CreateBitCast(CI->getOperand(1), CI->getType());
952
953 // See if either input string is a constant string.
954 std::string SearchStr, ToFindStr;
955 bool HasStr1 = GetConstantStringInfo(CI->getOperand(1), SearchStr);
956 bool HasStr2 = GetConstantStringInfo(CI->getOperand(2), ToFindStr);
957
958 // fold strstr(x, "") -> x.
959 if (HasStr2 && ToFindStr.empty())
960 return B.CreateBitCast(CI->getOperand(1), CI->getType());
961
962 // If both strings are known, constant fold it.
963 if (HasStr1 && HasStr2) {
964 std::string::size_type Offset = SearchStr.find(ToFindStr);
965
966 if (Offset == std::string::npos) // strstr("foo", "bar") -> null
967 return Constant::getNullValue(CI->getType());
968
969 // strstr("abcd", "bc") -> gep((char*)"abcd", 1)
970 Value *Result = CastToCStr(CI->getOperand(1), B);
971 Result = B.CreateConstInBoundsGEP1_64(Result, Offset, "strstr");
972 return B.CreateBitCast(Result, CI->getType());
973 }
974
975 // fold strstr(x, "y") -> strchr(x, 'y').
976 if (HasStr2 && ToFindStr.size() == 1)
977 return B.CreateBitCast(EmitStrChr(CI->getOperand(1), ToFindStr[0], B),
978 CI->getType());
979 return 0;
980 }
981};
982
Nick Lewycky4c498412009-02-13 15:31:46 +0000983
984//===---------------------------------------===//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000985// 'memcmp' Optimizations
986
Chris Lattner3e8b6632009-09-02 06:11:42 +0000987struct MemCmpOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +0000988 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000989 const FunctionType *FT = Callee->getFunctionType();
990 if (FT->getNumParams() != 3 || !isa<PointerType>(FT->getParamType(0)) ||
991 !isa<PointerType>(FT->getParamType(1)) ||
Owen Anderson1d0be152009-08-13 21:58:54 +0000992 FT->getReturnType() != Type::getInt32Ty(*Context))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000993 return 0;
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000994
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000995 Value *LHS = CI->getOperand(1), *RHS = CI->getOperand(2);
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000996
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +0000997 if (LHS == RHS) // memcmp(s,s,x) -> 0
Owen Andersona7235ea2009-07-31 20:28:14 +0000998 return Constant::getNullValue(CI->getType());
Duncan Sandsec00fcb2008-05-19 09:27:24 +0000999
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001000 // Make sure we have a constant length.
1001 ConstantInt *LenC = dyn_cast<ConstantInt>(CI->getOperand(3));
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001002 if (!LenC) return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001003 uint64_t Len = LenC->getZExtValue();
Duncan Sandsec00fcb2008-05-19 09:27:24 +00001004
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001005 if (Len == 0) // memcmp(s1,s2,0) -> 0
Owen Andersona7235ea2009-07-31 20:28:14 +00001006 return Constant::getNullValue(CI->getType());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001007
1008 if (Len == 1) { // memcmp(S1,S2,1) -> *LHS - *RHS
1009 Value *LHSV = B.CreateLoad(CastToCStr(LHS, B), "lhsv");
1010 Value *RHSV = B.CreateLoad(CastToCStr(RHS, B), "rhsv");
Chris Lattner0e98e4d2009-05-30 18:43:04 +00001011 return B.CreateSExt(B.CreateSub(LHSV, RHSV, "chardiff"), CI->getType());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001012 }
Duncan Sandsec00fcb2008-05-19 09:27:24 +00001013
Benjamin Kramer992a6372009-11-05 17:44:22 +00001014 // Constant folding: memcmp(x, y, l) -> cnst (all arguments are constant)
1015 std::string LHSStr, RHSStr;
1016 if (GetConstantStringInfo(LHS, LHSStr) &&
1017 GetConstantStringInfo(RHS, RHSStr)) {
1018 // Make sure we're not reading out-of-bounds memory.
1019 if (Len > LHSStr.length() || Len > RHSStr.length())
1020 return 0;
1021 uint64_t Ret = memcmp(LHSStr.data(), RHSStr.data(), Len);
1022 return ConstantInt::get(CI->getType(), Ret);
1023 }
1024
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001025 return 0;
1026 }
1027};
1028
1029//===---------------------------------------===//
1030// 'memcpy' Optimizations
1031
Chris Lattner3e8b6632009-09-02 06:11:42 +00001032struct MemCpyOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001033 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Dan Gohmanf14d9192009-08-18 00:48:13 +00001034 // These optimizations require TargetData.
1035 if (!TD) return 0;
1036
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001037 const FunctionType *FT = Callee->getFunctionType();
1038 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
1039 !isa<PointerType>(FT->getParamType(0)) ||
1040 !isa<PointerType>(FT->getParamType(1)) ||
Owen Anderson1d0be152009-08-13 21:58:54 +00001041 FT->getParamType(2) != TD->getIntPtrType(*Context))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001042 return 0;
1043
1044 // memcpy(x, y, n) -> llvm.memcpy(x, y, n, 1)
1045 EmitMemCpy(CI->getOperand(1), CI->getOperand(2), CI->getOperand(3), 1, B);
1046 return CI->getOperand(1);
1047 }
1048};
1049
Eli Friedmand83ae7d2008-11-30 08:32:11 +00001050//===---------------------------------------===//
1051// 'memmove' Optimizations
1052
Chris Lattner3e8b6632009-09-02 06:11:42 +00001053struct MemMoveOpt : public LibCallOptimization {
Eli Friedmand83ae7d2008-11-30 08:32:11 +00001054 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Dan Gohmanf14d9192009-08-18 00:48:13 +00001055 // These optimizations require TargetData.
1056 if (!TD) return 0;
1057
Eli Friedmand83ae7d2008-11-30 08:32:11 +00001058 const FunctionType *FT = Callee->getFunctionType();
1059 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
1060 !isa<PointerType>(FT->getParamType(0)) ||
1061 !isa<PointerType>(FT->getParamType(1)) ||
Owen Anderson1d0be152009-08-13 21:58:54 +00001062 FT->getParamType(2) != TD->getIntPtrType(*Context))
Eli Friedmand83ae7d2008-11-30 08:32:11 +00001063 return 0;
1064
1065 // memmove(x, y, n) -> llvm.memmove(x, y, n, 1)
Eric Christopher80bf1d52009-11-21 01:01:30 +00001066 EmitMemMove(CI->getOperand(1), CI->getOperand(2), CI->getOperand(3), 1, B);
Eli Friedmand83ae7d2008-11-30 08:32:11 +00001067 return CI->getOperand(1);
1068 }
1069};
1070
1071//===---------------------------------------===//
1072// 'memset' Optimizations
1073
Chris Lattner3e8b6632009-09-02 06:11:42 +00001074struct MemSetOpt : public LibCallOptimization {
Eli Friedmand83ae7d2008-11-30 08:32:11 +00001075 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Dan Gohmanf14d9192009-08-18 00:48:13 +00001076 // These optimizations require TargetData.
1077 if (!TD) return 0;
1078
Eli Friedmand83ae7d2008-11-30 08:32:11 +00001079 const FunctionType *FT = Callee->getFunctionType();
1080 if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
1081 !isa<PointerType>(FT->getParamType(0)) ||
Eli Friedman62bb4132009-07-18 08:34:51 +00001082 !isa<IntegerType>(FT->getParamType(1)) ||
Owen Anderson1d0be152009-08-13 21:58:54 +00001083 FT->getParamType(2) != TD->getIntPtrType(*Context))
Eli Friedmand83ae7d2008-11-30 08:32:11 +00001084 return 0;
1085
1086 // memset(p, v, n) -> llvm.memset(p, v, n, 1)
Eric Christopher37c8b862009-10-07 21:14:25 +00001087 Value *Val = B.CreateIntCast(CI->getOperand(2), Type::getInt8Ty(*Context),
1088 false);
Chris Lattnerf5b6bc72009-04-12 05:06:39 +00001089 EmitMemSet(CI->getOperand(1), Val, CI->getOperand(3), B);
Eli Friedmand83ae7d2008-11-30 08:32:11 +00001090 return CI->getOperand(1);
1091 }
1092};
1093
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001094//===----------------------------------------------------------------------===//
Eric Christopher80bf1d52009-11-21 01:01:30 +00001095// Object Size Checking Optimizations
1096//===----------------------------------------------------------------------===//
1097
1098//===---------------------------------------===//
1099// 'object size'
1100namespace {
1101struct SizeOpt : public LibCallOptimization {
1102 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
1103 // TODO: We can do more with this, but delaying to here should be no change
1104 // in behavior.
1105 ConstantInt *Const = dyn_cast<ConstantInt>(CI->getOperand(2));
1106
1107 if (!Const) return 0;
1108
1109 const Type *Ty = Callee->getFunctionType()->getReturnType();
1110
Eric Christopherd060b252009-12-23 02:51:48 +00001111 if (Const->getZExtValue() == 0)
Eric Christopher80bf1d52009-11-21 01:01:30 +00001112 return Constant::getAllOnesValue(Ty);
1113 else
1114 return ConstantInt::get(Ty, 0);
1115 }
1116};
1117}
1118
1119//===---------------------------------------===//
1120// 'memcpy_chk' Optimizations
1121
1122struct MemCpyChkOpt : public LibCallOptimization {
1123 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
1124 // These optimizations require TargetData.
1125 if (!TD) return 0;
1126
1127 const FunctionType *FT = Callee->getFunctionType();
1128 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
1129 !isa<PointerType>(FT->getParamType(0)) ||
1130 !isa<PointerType>(FT->getParamType(1)) ||
Eric Christopherf734be22009-12-22 01:23:51 +00001131 !isa<IntegerType>(FT->getParamType(3)) ||
1132 FT->getParamType(2) != TD->getIntPtrType(*Context))
Eric Christopher80bf1d52009-11-21 01:01:30 +00001133 return 0;
1134
1135 ConstantInt *SizeCI = dyn_cast<ConstantInt>(CI->getOperand(4));
1136 if (!SizeCI)
1137 return 0;
1138 if (SizeCI->isAllOnesValue()) {
1139 EmitMemCpy(CI->getOperand(1), CI->getOperand(2), CI->getOperand(3), 1, B);
1140 return CI->getOperand(1);
1141 }
1142
1143 return 0;
1144 }
1145};
1146
1147//===---------------------------------------===//
1148// 'memset_chk' Optimizations
1149
1150struct MemSetChkOpt : public LibCallOptimization {
1151 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
1152 // These optimizations require TargetData.
1153 if (!TD) return 0;
1154
1155 const FunctionType *FT = Callee->getFunctionType();
1156 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
1157 !isa<PointerType>(FT->getParamType(0)) ||
1158 !isa<IntegerType>(FT->getParamType(1)) ||
Eric Christopherf734be22009-12-22 01:23:51 +00001159 !isa<IntegerType>(FT->getParamType(3)) ||
Eric Christopher80bf1d52009-11-21 01:01:30 +00001160 FT->getParamType(2) != TD->getIntPtrType(*Context))
1161 return 0;
1162
1163 ConstantInt *SizeCI = dyn_cast<ConstantInt>(CI->getOperand(4));
1164 if (!SizeCI)
1165 return 0;
1166 if (SizeCI->isAllOnesValue()) {
1167 Value *Val = B.CreateIntCast(CI->getOperand(2), Type::getInt8Ty(*Context),
1168 false);
1169 EmitMemSet(CI->getOperand(1), Val, CI->getOperand(3), B);
1170 return CI->getOperand(1);
1171 }
1172
1173 return 0;
1174 }
1175};
1176
1177//===---------------------------------------===//
1178// 'memmove_chk' Optimizations
1179
1180struct MemMoveChkOpt : public LibCallOptimization {
1181 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
1182 // These optimizations require TargetData.
1183 if (!TD) return 0;
1184
1185 const FunctionType *FT = Callee->getFunctionType();
1186 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
1187 !isa<PointerType>(FT->getParamType(0)) ||
1188 !isa<PointerType>(FT->getParamType(1)) ||
Eric Christopherf734be22009-12-22 01:23:51 +00001189 !isa<IntegerType>(FT->getParamType(3)) ||
Eric Christopher80bf1d52009-11-21 01:01:30 +00001190 FT->getParamType(2) != TD->getIntPtrType(*Context))
1191 return 0;
1192
1193 ConstantInt *SizeCI = dyn_cast<ConstantInt>(CI->getOperand(4));
1194 if (!SizeCI)
1195 return 0;
1196 if (SizeCI->isAllOnesValue()) {
1197 EmitMemMove(CI->getOperand(1), CI->getOperand(2), CI->getOperand(3),
1198 1, B);
1199 return CI->getOperand(1);
1200 }
1201
1202 return 0;
1203 }
1204};
1205
1206//===----------------------------------------------------------------------===//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001207// Math Library Optimizations
1208//===----------------------------------------------------------------------===//
1209
1210//===---------------------------------------===//
1211// 'pow*' Optimizations
1212
Chris Lattner3e8b6632009-09-02 06:11:42 +00001213struct PowOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001214 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001215 const FunctionType *FT = Callee->getFunctionType();
1216 // Just make sure this has 2 arguments of the same FP type, which match the
1217 // result type.
1218 if (FT->getNumParams() != 2 || FT->getReturnType() != FT->getParamType(0) ||
1219 FT->getParamType(0) != FT->getParamType(1) ||
1220 !FT->getParamType(0)->isFloatingPoint())
1221 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001222
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001223 Value *Op1 = CI->getOperand(1), *Op2 = CI->getOperand(2);
1224 if (ConstantFP *Op1C = dyn_cast<ConstantFP>(Op1)) {
1225 if (Op1C->isExactlyValue(1.0)) // pow(1.0, x) -> 1.0
1226 return Op1C;
1227 if (Op1C->isExactlyValue(2.0)) // pow(2.0, x) -> exp2(x)
Dan Gohman76926b62009-09-26 18:10:13 +00001228 return EmitUnaryFloatFnCall(Op2, "exp2", B, Callee->getAttributes());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001229 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001230
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001231 ConstantFP *Op2C = dyn_cast<ConstantFP>(Op2);
1232 if (Op2C == 0) return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001233
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001234 if (Op2C->getValueAPF().isZero()) // pow(x, 0.0) -> 1.0
Owen Anderson6f83c9c2009-07-27 20:59:43 +00001235 return ConstantFP::get(CI->getType(), 1.0);
Eric Christopher37c8b862009-10-07 21:14:25 +00001236
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001237 if (Op2C->isExactlyValue(0.5)) {
Dan Gohman79cb8402009-09-25 23:10:17 +00001238 // Expand pow(x, 0.5) to (x == -infinity ? +infinity : fabs(sqrt(x))).
1239 // This is faster than calling pow, and still handles negative zero
1240 // and negative infinite correctly.
1241 // TODO: In fast-math mode, this could be just sqrt(x).
1242 // TODO: In finite-only mode, this could be just fabs(sqrt(x)).
Dan Gohmana23643d2009-09-25 23:40:21 +00001243 Value *Inf = ConstantFP::getInfinity(CI->getType());
1244 Value *NegInf = ConstantFP::getInfinity(CI->getType(), true);
Dan Gohman76926b62009-09-26 18:10:13 +00001245 Value *Sqrt = EmitUnaryFloatFnCall(Op1, "sqrt", B,
1246 Callee->getAttributes());
1247 Value *FAbs = EmitUnaryFloatFnCall(Sqrt, "fabs", B,
1248 Callee->getAttributes());
Dan Gohman79cb8402009-09-25 23:10:17 +00001249 Value *FCmp = B.CreateFCmpOEQ(Op1, NegInf, "tmp");
1250 Value *Sel = B.CreateSelect(FCmp, Inf, FAbs, "tmp");
1251 return Sel;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001252 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001253
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001254 if (Op2C->isExactlyValue(1.0)) // pow(x, 1.0) -> x
1255 return Op1;
1256 if (Op2C->isExactlyValue(2.0)) // pow(x, 2.0) -> x*x
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001257 return B.CreateFMul(Op1, Op1, "pow2");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001258 if (Op2C->isExactlyValue(-1.0)) // pow(x, -1.0) -> 1.0/x
Owen Anderson6f83c9c2009-07-27 20:59:43 +00001259 return B.CreateFDiv(ConstantFP::get(CI->getType(), 1.0),
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001260 Op1, "powrecip");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001261 return 0;
1262 }
1263};
1264
1265//===---------------------------------------===//
Chris Lattnere818f772008-05-02 18:43:35 +00001266// 'exp2' Optimizations
1267
Chris Lattner3e8b6632009-09-02 06:11:42 +00001268struct Exp2Opt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001269 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnere818f772008-05-02 18:43:35 +00001270 const FunctionType *FT = Callee->getFunctionType();
1271 // Just make sure this has 1 argument of FP type, which matches the
1272 // result type.
1273 if (FT->getNumParams() != 1 || FT->getReturnType() != FT->getParamType(0) ||
1274 !FT->getParamType(0)->isFloatingPoint())
1275 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001276
Chris Lattnere818f772008-05-02 18:43:35 +00001277 Value *Op = CI->getOperand(1);
1278 // Turn exp2(sitofp(x)) -> ldexp(1.0, sext(x)) if sizeof(x) <= 32
1279 // Turn exp2(uitofp(x)) -> ldexp(1.0, zext(x)) if sizeof(x) < 32
1280 Value *LdExpArg = 0;
1281 if (SIToFPInst *OpC = dyn_cast<SIToFPInst>(Op)) {
1282 if (OpC->getOperand(0)->getType()->getPrimitiveSizeInBits() <= 32)
Eric Christopher37c8b862009-10-07 21:14:25 +00001283 LdExpArg = B.CreateSExt(OpC->getOperand(0),
1284 Type::getInt32Ty(*Context), "tmp");
Chris Lattnere818f772008-05-02 18:43:35 +00001285 } else if (UIToFPInst *OpC = dyn_cast<UIToFPInst>(Op)) {
1286 if (OpC->getOperand(0)->getType()->getPrimitiveSizeInBits() < 32)
Eric Christopher37c8b862009-10-07 21:14:25 +00001287 LdExpArg = B.CreateZExt(OpC->getOperand(0),
1288 Type::getInt32Ty(*Context), "tmp");
Chris Lattnere818f772008-05-02 18:43:35 +00001289 }
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +00001290
Chris Lattnere818f772008-05-02 18:43:35 +00001291 if (LdExpArg) {
1292 const char *Name;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001293 if (Op->getType()->isFloatTy())
Chris Lattnere818f772008-05-02 18:43:35 +00001294 Name = "ldexpf";
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001295 else if (Op->getType()->isDoubleTy())
Chris Lattnere818f772008-05-02 18:43:35 +00001296 Name = "ldexp";
1297 else
1298 Name = "ldexpl";
1299
Owen Anderson6f83c9c2009-07-27 20:59:43 +00001300 Constant *One = ConstantFP::get(*Context, APFloat(1.0f));
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001301 if (!Op->getType()->isFloatTy())
Owen Andersonbaf3c402009-07-29 18:55:55 +00001302 One = ConstantExpr::getFPExtend(One, Op->getType());
Chris Lattnere818f772008-05-02 18:43:35 +00001303
1304 Module *M = Caller->getParent();
1305 Value *Callee = M->getOrInsertFunction(Name, Op->getType(),
Eric Christopher37c8b862009-10-07 21:14:25 +00001306 Op->getType(),
1307 Type::getInt32Ty(*Context),NULL);
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +00001308 CallInst *CI = B.CreateCall2(Callee, One, LdExpArg);
1309 if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
1310 CI->setCallingConv(F->getCallingConv());
1311
1312 return CI;
Chris Lattnere818f772008-05-02 18:43:35 +00001313 }
1314 return 0;
1315 }
1316};
Chris Lattnere818f772008-05-02 18:43:35 +00001317
1318//===---------------------------------------===//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001319// Double -> Float Shrinking Optimizations for Unary Functions like 'floor'
1320
Chris Lattner3e8b6632009-09-02 06:11:42 +00001321struct UnaryDoubleFPOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001322 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001323 const FunctionType *FT = Callee->getFunctionType();
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001324 if (FT->getNumParams() != 1 || !FT->getReturnType()->isDoubleTy() ||
1325 !FT->getParamType(0)->isDoubleTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001326 return 0;
Anton Korobeynikov9547cdf2009-06-18 20:05:31 +00001327
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001328 // If this is something like 'floor((double)floatval)', convert to floorf.
1329 FPExtInst *Cast = dyn_cast<FPExtInst>(CI->getOperand(1));
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001330 if (Cast == 0 || !Cast->getOperand(0)->getType()->isFloatTy())
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001331 return 0;
1332
1333 // floor((double)floatval) -> (double)floorf(floatval)
1334 Value *V = Cast->getOperand(0);
Dan Gohman76926b62009-09-26 18:10:13 +00001335 V = EmitUnaryFloatFnCall(V, Callee->getName().data(), B,
1336 Callee->getAttributes());
Owen Anderson1d0be152009-08-13 21:58:54 +00001337 return B.CreateFPExt(V, Type::getDoubleTy(*Context));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001338 }
1339};
1340
1341//===----------------------------------------------------------------------===//
1342// Integer Optimizations
1343//===----------------------------------------------------------------------===//
1344
1345//===---------------------------------------===//
1346// 'ffs*' Optimizations
1347
Chris Lattner3e8b6632009-09-02 06:11:42 +00001348struct FFSOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001349 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001350 const FunctionType *FT = Callee->getFunctionType();
1351 // Just make sure this has 2 arguments of the same FP type, which match the
1352 // result type.
Eric Christopher37c8b862009-10-07 21:14:25 +00001353 if (FT->getNumParams() != 1 ||
1354 FT->getReturnType() != Type::getInt32Ty(*Context) ||
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001355 !isa<IntegerType>(FT->getParamType(0)))
1356 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001357
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001358 Value *Op = CI->getOperand(1);
Eric Christopher37c8b862009-10-07 21:14:25 +00001359
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001360 // Constant fold.
1361 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
1362 if (CI->getValue() == 0) // ffs(0) -> 0.
Owen Andersona7235ea2009-07-31 20:28:14 +00001363 return Constant::getNullValue(CI->getType());
Owen Anderson1d0be152009-08-13 21:58:54 +00001364 return ConstantInt::get(Type::getInt32Ty(*Context), // ffs(c) -> cttz(c)+1
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001365 CI->getValue().countTrailingZeros()+1);
1366 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001367
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001368 // ffs(x) -> x != 0 ? (i32)llvm.cttz(x)+1 : 0
1369 const Type *ArgType = Op->getType();
1370 Value *F = Intrinsic::getDeclaration(Callee->getParent(),
1371 Intrinsic::cttz, &ArgType, 1);
1372 Value *V = B.CreateCall(F, Op, "cttz");
Owen Andersoneed707b2009-07-24 23:12:02 +00001373 V = B.CreateAdd(V, ConstantInt::get(V->getType(), 1), "tmp");
Owen Anderson1d0be152009-08-13 21:58:54 +00001374 V = B.CreateIntCast(V, Type::getInt32Ty(*Context), false, "tmp");
Eric Christopher37c8b862009-10-07 21:14:25 +00001375
Owen Andersona7235ea2009-07-31 20:28:14 +00001376 Value *Cond = B.CreateICmpNE(Op, Constant::getNullValue(ArgType), "tmp");
Eric Christopher37c8b862009-10-07 21:14:25 +00001377 return B.CreateSelect(Cond, V,
1378 ConstantInt::get(Type::getInt32Ty(*Context), 0));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001379 }
1380};
1381
1382//===---------------------------------------===//
1383// 'isdigit' Optimizations
1384
Chris Lattner3e8b6632009-09-02 06:11:42 +00001385struct IsDigitOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001386 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001387 const FunctionType *FT = Callee->getFunctionType();
1388 // We require integer(i32)
1389 if (FT->getNumParams() != 1 || !isa<IntegerType>(FT->getReturnType()) ||
Owen Anderson1d0be152009-08-13 21:58:54 +00001390 FT->getParamType(0) != Type::getInt32Ty(*Context))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001391 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001392
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001393 // isdigit(c) -> (c-'0') <u 10
1394 Value *Op = CI->getOperand(1);
Eric Christopher37c8b862009-10-07 21:14:25 +00001395 Op = B.CreateSub(Op, ConstantInt::get(Type::getInt32Ty(*Context), '0'),
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001396 "isdigittmp");
Eric Christopher37c8b862009-10-07 21:14:25 +00001397 Op = B.CreateICmpULT(Op, ConstantInt::get(Type::getInt32Ty(*Context), 10),
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001398 "isdigit");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001399 return B.CreateZExt(Op, CI->getType());
1400 }
1401};
1402
1403//===---------------------------------------===//
1404// 'isascii' Optimizations
1405
Chris Lattner3e8b6632009-09-02 06:11:42 +00001406struct IsAsciiOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001407 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001408 const FunctionType *FT = Callee->getFunctionType();
1409 // We require integer(i32)
1410 if (FT->getNumParams() != 1 || !isa<IntegerType>(FT->getReturnType()) ||
Owen Anderson1d0be152009-08-13 21:58:54 +00001411 FT->getParamType(0) != Type::getInt32Ty(*Context))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001412 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001413
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001414 // isascii(c) -> c <u 128
1415 Value *Op = CI->getOperand(1);
Owen Anderson1d0be152009-08-13 21:58:54 +00001416 Op = B.CreateICmpULT(Op, ConstantInt::get(Type::getInt32Ty(*Context), 128),
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001417 "isascii");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001418 return B.CreateZExt(Op, CI->getType());
1419 }
1420};
Eric Christopher37c8b862009-10-07 21:14:25 +00001421
Chris Lattner313f0e62008-06-09 08:26:51 +00001422//===---------------------------------------===//
1423// 'abs', 'labs', 'llabs' Optimizations
1424
Chris Lattner3e8b6632009-09-02 06:11:42 +00001425struct AbsOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001426 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattner313f0e62008-06-09 08:26:51 +00001427 const FunctionType *FT = Callee->getFunctionType();
1428 // We require integer(integer) where the types agree.
1429 if (FT->getNumParams() != 1 || !isa<IntegerType>(FT->getReturnType()) ||
1430 FT->getParamType(0) != FT->getReturnType())
1431 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001432
Chris Lattner313f0e62008-06-09 08:26:51 +00001433 // abs(x) -> x >s -1 ? x : -x
1434 Value *Op = CI->getOperand(1);
Eric Christopher37c8b862009-10-07 21:14:25 +00001435 Value *Pos = B.CreateICmpSGT(Op,
Owen Andersona7235ea2009-07-31 20:28:14 +00001436 Constant::getAllOnesValue(Op->getType()),
Chris Lattner313f0e62008-06-09 08:26:51 +00001437 "ispos");
1438 Value *Neg = B.CreateNeg(Op, "neg");
1439 return B.CreateSelect(Pos, Op, Neg);
1440 }
1441};
Eric Christopher37c8b862009-10-07 21:14:25 +00001442
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001443
1444//===---------------------------------------===//
1445// 'toascii' Optimizations
1446
Chris Lattner3e8b6632009-09-02 06:11:42 +00001447struct ToAsciiOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001448 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001449 const FunctionType *FT = Callee->getFunctionType();
1450 // We require i32(i32)
1451 if (FT->getNumParams() != 1 || FT->getReturnType() != FT->getParamType(0) ||
Owen Anderson1d0be152009-08-13 21:58:54 +00001452 FT->getParamType(0) != Type::getInt32Ty(*Context))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001453 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001454
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001455 // isascii(c) -> c & 0x7f
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001456 return B.CreateAnd(CI->getOperand(1),
Owen Andersoneed707b2009-07-24 23:12:02 +00001457 ConstantInt::get(CI->getType(),0x7F));
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001458 }
1459};
1460
1461//===----------------------------------------------------------------------===//
1462// Formatting and IO Optimizations
1463//===----------------------------------------------------------------------===//
1464
1465//===---------------------------------------===//
1466// 'printf' Optimizations
1467
Chris Lattner3e8b6632009-09-02 06:11:42 +00001468struct PrintFOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001469 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001470 // Require one fixed pointer argument and an integer/void result.
1471 const FunctionType *FT = Callee->getFunctionType();
1472 if (FT->getNumParams() < 1 || !isa<PointerType>(FT->getParamType(0)) ||
1473 !(isa<IntegerType>(FT->getReturnType()) ||
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001474 FT->getReturnType()->isVoidTy()))
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001475 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001476
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001477 // Check for a fixed format string.
Bill Wendling0582ae92009-03-13 04:39:26 +00001478 std::string FormatStr;
1479 if (!GetConstantStringInfo(CI->getOperand(1), FormatStr))
1480 return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001481
1482 // Empty format string -> noop.
1483 if (FormatStr.empty()) // Tolerate printf's declared void.
Eric Christopher37c8b862009-10-07 21:14:25 +00001484 return CI->use_empty() ? (Value*)CI :
Owen Andersoneed707b2009-07-24 23:12:02 +00001485 ConstantInt::get(CI->getType(), 0);
Eric Christopher37c8b862009-10-07 21:14:25 +00001486
Chris Lattner74965f22009-11-09 04:57:04 +00001487 // printf("x") -> putchar('x'), even for '%'. Return the result of putchar
1488 // in case there is an error writing to stdout.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001489 if (FormatStr.size() == 1) {
Chris Lattner74965f22009-11-09 04:57:04 +00001490 Value *Res = EmitPutChar(ConstantInt::get(Type::getInt32Ty(*Context),
1491 FormatStr[0]), B);
1492 if (CI->use_empty()) return CI;
1493 return B.CreateIntCast(Res, CI->getType(), true);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001494 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001495
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001496 // printf("foo\n") --> puts("foo")
1497 if (FormatStr[FormatStr.size()-1] == '\n' &&
1498 FormatStr.find('%') == std::string::npos) { // no format characters.
1499 // Create a string literal with no \n on it. We expect the constant merge
1500 // pass to be run after this pass, to merge duplicate strings.
1501 FormatStr.erase(FormatStr.end()-1);
Owen Anderson1d0be152009-08-13 21:58:54 +00001502 Constant *C = ConstantArray::get(*Context, FormatStr, true);
Owen Andersone9b11b42009-07-08 19:03:57 +00001503 C = new GlobalVariable(*Callee->getParent(), C->getType(), true,
1504 GlobalVariable::InternalLinkage, C, "str");
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001505 EmitPutS(C, B);
Eric Christopher37c8b862009-10-07 21:14:25 +00001506 return CI->use_empty() ? (Value*)CI :
Owen Andersoneed707b2009-07-24 23:12:02 +00001507 ConstantInt::get(CI->getType(), FormatStr.size()+1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001508 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001509
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001510 // Optimize specific format strings.
1511 // printf("%c", chr) --> putchar(*(i8*)dst)
1512 if (FormatStr == "%c" && CI->getNumOperands() > 2 &&
1513 isa<IntegerType>(CI->getOperand(2)->getType())) {
Chris Lattner74965f22009-11-09 04:57:04 +00001514 Value *Res = EmitPutChar(CI->getOperand(2), B);
Eric Christopher80bf1d52009-11-21 01:01:30 +00001515
Chris Lattner74965f22009-11-09 04:57:04 +00001516 if (CI->use_empty()) return CI;
1517 return B.CreateIntCast(Res, CI->getType(), true);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001518 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001519
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001520 // printf("%s\n", str) --> puts(str)
1521 if (FormatStr == "%s\n" && CI->getNumOperands() > 2 &&
1522 isa<PointerType>(CI->getOperand(2)->getType()) &&
1523 CI->use_empty()) {
1524 EmitPutS(CI->getOperand(2), B);
1525 return CI;
1526 }
1527 return 0;
1528 }
1529};
1530
1531//===---------------------------------------===//
1532// 'sprintf' Optimizations
1533
Chris Lattner3e8b6632009-09-02 06:11:42 +00001534struct SPrintFOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001535 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001536 // Require two fixed pointer arguments and an integer result.
1537 const FunctionType *FT = Callee->getFunctionType();
1538 if (FT->getNumParams() != 2 || !isa<PointerType>(FT->getParamType(0)) ||
1539 !isa<PointerType>(FT->getParamType(1)) ||
1540 !isa<IntegerType>(FT->getReturnType()))
1541 return 0;
1542
1543 // Check for a fixed format string.
Bill Wendling0582ae92009-03-13 04:39:26 +00001544 std::string FormatStr;
1545 if (!GetConstantStringInfo(CI->getOperand(2), FormatStr))
1546 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001547
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001548 // If we just have a format string (nothing else crazy) transform it.
1549 if (CI->getNumOperands() == 3) {
1550 // Make sure there's no % in the constant array. We could try to handle
1551 // %% -> % in the future if we cared.
1552 for (unsigned i = 0, e = FormatStr.size(); i != e; ++i)
1553 if (FormatStr[i] == '%')
1554 return 0; // we found a format specifier, bail out.
Dan Gohmanf14d9192009-08-18 00:48:13 +00001555
1556 // These optimizations require TargetData.
1557 if (!TD) return 0;
1558
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001559 // sprintf(str, fmt) -> llvm.memcpy(str, fmt, strlen(fmt)+1, 1)
1560 EmitMemCpy(CI->getOperand(1), CI->getOperand(2), // Copy the nul byte.
Owen Anderson1d0be152009-08-13 21:58:54 +00001561 ConstantInt::get(TD->getIntPtrType(*Context), FormatStr.size()+1),1,B);
Owen Andersoneed707b2009-07-24 23:12:02 +00001562 return ConstantInt::get(CI->getType(), FormatStr.size());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001563 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001564
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001565 // The remaining optimizations require the format string to be "%s" or "%c"
1566 // and have an extra operand.
1567 if (FormatStr.size() != 2 || FormatStr[0] != '%' || CI->getNumOperands() <4)
1568 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001569
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001570 // Decode the second character of the format string.
1571 if (FormatStr[1] == 'c') {
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001572 // sprintf(dst, "%c", chr) --> *(i8*)dst = chr; *((i8*)dst+1) = 0
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001573 if (!isa<IntegerType>(CI->getOperand(3)->getType())) return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001574 Value *V = B.CreateTrunc(CI->getOperand(3),
1575 Type::getInt8Ty(*Context), "char");
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001576 Value *Ptr = CastToCStr(CI->getOperand(1), B);
1577 B.CreateStore(V, Ptr);
Eric Christopher37c8b862009-10-07 21:14:25 +00001578 Ptr = B.CreateGEP(Ptr, ConstantInt::get(Type::getInt32Ty(*Context), 1),
1579 "nul");
Owen Anderson1d0be152009-08-13 21:58:54 +00001580 B.CreateStore(Constant::getNullValue(Type::getInt8Ty(*Context)), Ptr);
Eric Christopher37c8b862009-10-07 21:14:25 +00001581
Owen Andersoneed707b2009-07-24 23:12:02 +00001582 return ConstantInt::get(CI->getType(), 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001583 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001584
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001585 if (FormatStr[1] == 's') {
Dan Gohmanf14d9192009-08-18 00:48:13 +00001586 // These optimizations require TargetData.
1587 if (!TD) return 0;
1588
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001589 // sprintf(dest, "%s", str) -> llvm.memcpy(dest, str, strlen(str)+1, 1)
1590 if (!isa<PointerType>(CI->getOperand(3)->getType())) return 0;
1591
1592 Value *Len = EmitStrLen(CI->getOperand(3), B);
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001593 Value *IncLen = B.CreateAdd(Len,
Owen Andersoneed707b2009-07-24 23:12:02 +00001594 ConstantInt::get(Len->getType(), 1),
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001595 "leninc");
1596 EmitMemCpy(CI->getOperand(1), CI->getOperand(3), IncLen, 1, B);
Eric Christopher37c8b862009-10-07 21:14:25 +00001597
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001598 // The sprintf result is the unincremented number of bytes in the string.
1599 return B.CreateIntCast(Len, CI->getType(), false);
1600 }
1601 return 0;
1602 }
1603};
1604
1605//===---------------------------------------===//
1606// 'fwrite' Optimizations
1607
Chris Lattner3e8b6632009-09-02 06:11:42 +00001608struct FWriteOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001609 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001610 // Require a pointer, an integer, an integer, a pointer, returning integer.
1611 const FunctionType *FT = Callee->getFunctionType();
1612 if (FT->getNumParams() != 4 || !isa<PointerType>(FT->getParamType(0)) ||
1613 !isa<IntegerType>(FT->getParamType(1)) ||
1614 !isa<IntegerType>(FT->getParamType(2)) ||
1615 !isa<PointerType>(FT->getParamType(3)) ||
1616 !isa<IntegerType>(FT->getReturnType()))
1617 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001618
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001619 // Get the element size and count.
1620 ConstantInt *SizeC = dyn_cast<ConstantInt>(CI->getOperand(2));
1621 ConstantInt *CountC = dyn_cast<ConstantInt>(CI->getOperand(3));
1622 if (!SizeC || !CountC) return 0;
1623 uint64_t Bytes = SizeC->getZExtValue()*CountC->getZExtValue();
Eric Christopher37c8b862009-10-07 21:14:25 +00001624
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001625 // If this is writing zero records, remove the call (it's a noop).
1626 if (Bytes == 0)
Owen Andersoneed707b2009-07-24 23:12:02 +00001627 return ConstantInt::get(CI->getType(), 0);
Eric Christopher37c8b862009-10-07 21:14:25 +00001628
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001629 // If this is writing one byte, turn it into fputc.
1630 if (Bytes == 1) { // fwrite(S,1,1,F) -> fputc(S[0],F)
1631 Value *Char = B.CreateLoad(CastToCStr(CI->getOperand(1), B), "char");
1632 EmitFPutC(Char, CI->getOperand(4), B);
Owen Andersoneed707b2009-07-24 23:12:02 +00001633 return ConstantInt::get(CI->getType(), 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001634 }
1635
1636 return 0;
1637 }
1638};
1639
1640//===---------------------------------------===//
1641// 'fputs' Optimizations
1642
Chris Lattner3e8b6632009-09-02 06:11:42 +00001643struct FPutsOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001644 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Dan Gohmanf14d9192009-08-18 00:48:13 +00001645 // These optimizations require TargetData.
1646 if (!TD) return 0;
1647
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001648 // Require two pointers. Also, we can't optimize if return value is used.
1649 const FunctionType *FT = Callee->getFunctionType();
1650 if (FT->getNumParams() != 2 || !isa<PointerType>(FT->getParamType(0)) ||
1651 !isa<PointerType>(FT->getParamType(1)) ||
1652 !CI->use_empty())
1653 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001654
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001655 // fputs(s,F) --> fwrite(s,1,strlen(s),F)
1656 uint64_t Len = GetStringLength(CI->getOperand(1));
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001657 if (!Len) return 0;
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001658 EmitFWrite(CI->getOperand(1),
Owen Anderson1d0be152009-08-13 21:58:54 +00001659 ConstantInt::get(TD->getIntPtrType(*Context), Len-1),
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001660 CI->getOperand(2), B);
1661 return CI; // Known to have no uses (see above).
1662 }
1663};
1664
1665//===---------------------------------------===//
1666// 'fprintf' Optimizations
1667
Chris Lattner3e8b6632009-09-02 06:11:42 +00001668struct FPrintFOpt : public LibCallOptimization {
Eric Christopher7a61d702008-08-08 19:39:37 +00001669 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001670 // Require two fixed paramters as pointers and integer result.
1671 const FunctionType *FT = Callee->getFunctionType();
1672 if (FT->getNumParams() != 2 || !isa<PointerType>(FT->getParamType(0)) ||
1673 !isa<PointerType>(FT->getParamType(1)) ||
1674 !isa<IntegerType>(FT->getReturnType()))
1675 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001676
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001677 // All the optimizations depend on the format string.
Bill Wendling0582ae92009-03-13 04:39:26 +00001678 std::string FormatStr;
1679 if (!GetConstantStringInfo(CI->getOperand(2), FormatStr))
1680 return 0;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001681
1682 // fprintf(F, "foo") --> fwrite("foo", 3, 1, F)
1683 if (CI->getNumOperands() == 3) {
1684 for (unsigned i = 0, e = FormatStr.size(); i != e; ++i)
1685 if (FormatStr[i] == '%') // Could handle %% -> % if we cared.
Chris Lattner56b4f2b2008-05-01 06:39:12 +00001686 return 0; // We found a format specifier.
Dan Gohmanf14d9192009-08-18 00:48:13 +00001687
1688 // These optimizations require TargetData.
1689 if (!TD) return 0;
1690
Owen Anderson1d0be152009-08-13 21:58:54 +00001691 EmitFWrite(CI->getOperand(2), ConstantInt::get(TD->getIntPtrType(*Context),
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001692 FormatStr.size()),
1693 CI->getOperand(1), B);
Owen Andersoneed707b2009-07-24 23:12:02 +00001694 return ConstantInt::get(CI->getType(), FormatStr.size());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001695 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001696
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001697 // The remaining optimizations require the format string to be "%s" or "%c"
1698 // and have an extra operand.
1699 if (FormatStr.size() != 2 || FormatStr[0] != '%' || CI->getNumOperands() <4)
1700 return 0;
Eric Christopher37c8b862009-10-07 21:14:25 +00001701
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001702 // Decode the second character of the format string.
1703 if (FormatStr[1] == 'c') {
1704 // fprintf(F, "%c", chr) --> *(i8*)dst = chr
1705 if (!isa<IntegerType>(CI->getOperand(3)->getType())) return 0;
1706 EmitFPutC(CI->getOperand(3), CI->getOperand(1), B);
Owen Andersoneed707b2009-07-24 23:12:02 +00001707 return ConstantInt::get(CI->getType(), 1);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001708 }
Eric Christopher37c8b862009-10-07 21:14:25 +00001709
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001710 if (FormatStr[1] == 's') {
1711 // fprintf(F, "%s", str) -> fputs(str, F)
1712 if (!isa<PointerType>(CI->getOperand(3)->getType()) || !CI->use_empty())
1713 return 0;
1714 EmitFPutS(CI->getOperand(3), CI->getOperand(1), B);
1715 return CI;
1716 }
1717 return 0;
1718 }
1719};
1720
Bill Wendlingac178222008-05-05 21:37:59 +00001721} // end anonymous namespace.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001722
1723//===----------------------------------------------------------------------===//
1724// SimplifyLibCalls Pass Implementation
1725//===----------------------------------------------------------------------===//
1726
1727namespace {
1728 /// This pass optimizes well known library functions from libc and libm.
1729 ///
Chris Lattner3e8b6632009-09-02 06:11:42 +00001730 class SimplifyLibCalls : public FunctionPass {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001731 StringMap<LibCallOptimization*> Optimizations;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001732 // String and Memory LibCall Optimizations
Chris Lattnerf5b6bc72009-04-12 05:06:39 +00001733 StrCatOpt StrCat; StrNCatOpt StrNCat; StrChrOpt StrChr; StrCmpOpt StrCmp;
1734 StrNCmpOpt StrNCmp; StrCpyOpt StrCpy; StrNCpyOpt StrNCpy; StrLenOpt StrLen;
Chris Lattner24604112009-12-16 09:32:05 +00001735 StrToOpt StrTo; StrStrOpt StrStr;
1736 MemCmpOpt MemCmp; MemCpyOpt MemCpy; MemMoveOpt MemMove; MemSetOpt MemSet;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001737 // Math Library Optimizations
Chris Lattnere818f772008-05-02 18:43:35 +00001738 PowOpt Pow; Exp2Opt Exp2; UnaryDoubleFPOpt UnaryDoubleFP;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001739 // Integer Optimizations
Chris Lattner313f0e62008-06-09 08:26:51 +00001740 FFSOpt FFS; AbsOpt Abs; IsDigitOpt IsDigit; IsAsciiOpt IsAscii;
1741 ToAsciiOpt ToAscii;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001742 // Formatting and IO Optimizations
1743 SPrintFOpt SPrintF; PrintFOpt PrintF;
1744 FWriteOpt FWrite; FPutsOpt FPuts; FPrintFOpt FPrintF;
Eric Christopher80bf1d52009-11-21 01:01:30 +00001745
1746 // Object Size Checking
Eric Christopher7b5e6172009-10-27 00:52:25 +00001747 SizeOpt ObjectSize;
Eric Christopher80bf1d52009-11-21 01:01:30 +00001748 MemCpyChkOpt MemCpyChk; MemSetChkOpt MemSetChk; MemMoveChkOpt MemMoveChk;
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001749
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001750 bool Modified; // This is only used by doInitialization.
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001751 public:
1752 static char ID; // Pass identification
Dan Gohmanae73dc12008-09-04 17:05:41 +00001753 SimplifyLibCalls() : FunctionPass(&ID) {}
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001754
1755 void InitOptimizations();
1756 bool runOnFunction(Function &F);
1757
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001758 void setDoesNotAccessMemory(Function &F);
1759 void setOnlyReadsMemory(Function &F);
1760 void setDoesNotThrow(Function &F);
1761 void setDoesNotCapture(Function &F, unsigned n);
1762 void setDoesNotAlias(Function &F, unsigned n);
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001763 bool doInitialization(Module &M);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001764
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001765 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001766 }
1767 };
1768 char SimplifyLibCalls::ID = 0;
1769} // end anonymous namespace.
1770
1771static RegisterPass<SimplifyLibCalls>
1772X("simplify-libcalls", "Simplify well-known library calls");
1773
1774// Public interface to the Simplify LibCalls pass.
1775FunctionPass *llvm::createSimplifyLibCallsPass() {
Eric Christopher37c8b862009-10-07 21:14:25 +00001776 return new SimplifyLibCalls();
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001777}
1778
1779/// Optimizations - Populate the Optimizations map with all the optimizations
1780/// we know.
1781void SimplifyLibCalls::InitOptimizations() {
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001782 // String and Memory LibCall Optimizations
1783 Optimizations["strcat"] = &StrCat;
Chris Lattnerf5b6bc72009-04-12 05:06:39 +00001784 Optimizations["strncat"] = &StrNCat;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001785 Optimizations["strchr"] = &StrChr;
1786 Optimizations["strcmp"] = &StrCmp;
1787 Optimizations["strncmp"] = &StrNCmp;
1788 Optimizations["strcpy"] = &StrCpy;
Chris Lattnerf5b6bc72009-04-12 05:06:39 +00001789 Optimizations["strncpy"] = &StrNCpy;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001790 Optimizations["strlen"] = &StrLen;
Nick Lewycky4c498412009-02-13 15:31:46 +00001791 Optimizations["strtol"] = &StrTo;
1792 Optimizations["strtod"] = &StrTo;
1793 Optimizations["strtof"] = &StrTo;
1794 Optimizations["strtoul"] = &StrTo;
1795 Optimizations["strtoll"] = &StrTo;
1796 Optimizations["strtold"] = &StrTo;
1797 Optimizations["strtoull"] = &StrTo;
Chris Lattner24604112009-12-16 09:32:05 +00001798 Optimizations["strstr"] = &StrStr;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001799 Optimizations["memcmp"] = &MemCmp;
1800 Optimizations["memcpy"] = &MemCpy;
Eli Friedmand83ae7d2008-11-30 08:32:11 +00001801 Optimizations["memmove"] = &MemMove;
1802 Optimizations["memset"] = &MemSet;
Eric Christopher37c8b862009-10-07 21:14:25 +00001803
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001804 // Math Library Optimizations
1805 Optimizations["powf"] = &Pow;
1806 Optimizations["pow"] = &Pow;
1807 Optimizations["powl"] = &Pow;
Dale Johannesen53bfbbc2008-09-04 18:30:46 +00001808 Optimizations["llvm.pow.f32"] = &Pow;
1809 Optimizations["llvm.pow.f64"] = &Pow;
1810 Optimizations["llvm.pow.f80"] = &Pow;
1811 Optimizations["llvm.pow.f128"] = &Pow;
1812 Optimizations["llvm.pow.ppcf128"] = &Pow;
Chris Lattnere818f772008-05-02 18:43:35 +00001813 Optimizations["exp2l"] = &Exp2;
1814 Optimizations["exp2"] = &Exp2;
1815 Optimizations["exp2f"] = &Exp2;
Dale Johannesen53bfbbc2008-09-04 18:30:46 +00001816 Optimizations["llvm.exp2.ppcf128"] = &Exp2;
1817 Optimizations["llvm.exp2.f128"] = &Exp2;
1818 Optimizations["llvm.exp2.f80"] = &Exp2;
1819 Optimizations["llvm.exp2.f64"] = &Exp2;
1820 Optimizations["llvm.exp2.f32"] = &Exp2;
Eric Christopher37c8b862009-10-07 21:14:25 +00001821
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001822#ifdef HAVE_FLOORF
1823 Optimizations["floor"] = &UnaryDoubleFP;
1824#endif
1825#ifdef HAVE_CEILF
1826 Optimizations["ceil"] = &UnaryDoubleFP;
1827#endif
1828#ifdef HAVE_ROUNDF
1829 Optimizations["round"] = &UnaryDoubleFP;
1830#endif
1831#ifdef HAVE_RINTF
1832 Optimizations["rint"] = &UnaryDoubleFP;
1833#endif
1834#ifdef HAVE_NEARBYINTF
1835 Optimizations["nearbyint"] = &UnaryDoubleFP;
1836#endif
Eric Christopher37c8b862009-10-07 21:14:25 +00001837
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001838 // Integer Optimizations
1839 Optimizations["ffs"] = &FFS;
1840 Optimizations["ffsl"] = &FFS;
1841 Optimizations["ffsll"] = &FFS;
Chris Lattner313f0e62008-06-09 08:26:51 +00001842 Optimizations["abs"] = &Abs;
1843 Optimizations["labs"] = &Abs;
1844 Optimizations["llabs"] = &Abs;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001845 Optimizations["isdigit"] = &IsDigit;
1846 Optimizations["isascii"] = &IsAscii;
1847 Optimizations["toascii"] = &ToAscii;
Eric Christopher37c8b862009-10-07 21:14:25 +00001848
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001849 // Formatting and IO Optimizations
1850 Optimizations["sprintf"] = &SPrintF;
1851 Optimizations["printf"] = &PrintF;
1852 Optimizations["fwrite"] = &FWrite;
1853 Optimizations["fputs"] = &FPuts;
1854 Optimizations["fprintf"] = &FPrintF;
Eric Christopher80bf1d52009-11-21 01:01:30 +00001855
1856 // Object Size Checking
1857 Optimizations["llvm.objectsize.i32"] = &ObjectSize;
1858 Optimizations["llvm.objectsize.i64"] = &ObjectSize;
1859 Optimizations["__memcpy_chk"] = &MemCpyChk;
1860 Optimizations["__memset_chk"] = &MemSetChk;
1861 Optimizations["__memmove_chk"] = &MemMoveChk;
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001862}
1863
1864
1865/// runOnFunction - Top level algorithm.
1866///
1867bool SimplifyLibCalls::runOnFunction(Function &F) {
1868 if (Optimizations.empty())
1869 InitOptimizations();
Eric Christopher37c8b862009-10-07 21:14:25 +00001870
Dan Gohmanf14d9192009-08-18 00:48:13 +00001871 const TargetData *TD = getAnalysisIfAvailable<TargetData>();
Eric Christopher37c8b862009-10-07 21:14:25 +00001872
Owen Andersone922c022009-07-22 00:24:57 +00001873 IRBuilder<> Builder(F.getContext());
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001874
1875 bool Changed = false;
1876 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
1877 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ) {
1878 // Ignore non-calls.
1879 CallInst *CI = dyn_cast<CallInst>(I++);
1880 if (!CI) continue;
Eric Christopher37c8b862009-10-07 21:14:25 +00001881
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001882 // Ignore indirect calls and calls to non-external functions.
1883 Function *Callee = CI->getCalledFunction();
1884 if (Callee == 0 || !Callee->isDeclaration() ||
1885 !(Callee->hasExternalLinkage() || Callee->hasDLLImportLinkage()))
1886 continue;
Eric Christopher37c8b862009-10-07 21:14:25 +00001887
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001888 // Ignore unknown calls.
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001889 LibCallOptimization *LCO = Optimizations.lookup(Callee->getName());
1890 if (!LCO) continue;
Eric Christopher37c8b862009-10-07 21:14:25 +00001891
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001892 // Set the builder to the instruction after the call.
1893 Builder.SetInsertPoint(BB, I);
Eric Christopher37c8b862009-10-07 21:14:25 +00001894
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001895 // Try to optimize this call.
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001896 Value *Result = LCO->OptimizeCall(CI, TD, Builder);
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001897 if (Result == 0) continue;
1898
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001899 DEBUG(errs() << "SimplifyLibCalls simplified: " << *CI;
1900 errs() << " into: " << *Result << "\n");
Eric Christopher37c8b862009-10-07 21:14:25 +00001901
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001902 // Something changed!
1903 Changed = true;
1904 ++NumSimplified;
Eric Christopher37c8b862009-10-07 21:14:25 +00001905
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001906 // Inspect the instruction after the call (which was potentially just
1907 // added) next.
1908 I = CI; ++I;
Eric Christopher37c8b862009-10-07 21:14:25 +00001909
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00001910 if (CI != Result && !CI->use_empty()) {
1911 CI->replaceAllUsesWith(Result);
1912 if (!Result->hasName())
1913 Result->takeName(CI);
1914 }
1915 CI->eraseFromParent();
1916 }
1917 }
1918 return Changed;
1919}
1920
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001921// Utility methods for doInitialization.
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001922
1923void SimplifyLibCalls::setDoesNotAccessMemory(Function &F) {
1924 if (!F.doesNotAccessMemory()) {
1925 F.setDoesNotAccessMemory();
1926 ++NumAnnotated;
1927 Modified = true;
1928 }
1929}
1930void SimplifyLibCalls::setOnlyReadsMemory(Function &F) {
1931 if (!F.onlyReadsMemory()) {
1932 F.setOnlyReadsMemory();
1933 ++NumAnnotated;
1934 Modified = true;
1935 }
1936}
1937void SimplifyLibCalls::setDoesNotThrow(Function &F) {
1938 if (!F.doesNotThrow()) {
1939 F.setDoesNotThrow();
1940 ++NumAnnotated;
1941 Modified = true;
1942 }
1943}
1944void SimplifyLibCalls::setDoesNotCapture(Function &F, unsigned n) {
1945 if (!F.doesNotCapture(n)) {
1946 F.setDoesNotCapture(n);
1947 ++NumAnnotated;
1948 Modified = true;
1949 }
1950}
1951void SimplifyLibCalls::setDoesNotAlias(Function &F, unsigned n) {
1952 if (!F.doesNotAlias(n)) {
1953 F.setDoesNotAlias(n);
1954 ++NumAnnotated;
1955 Modified = true;
1956 }
1957}
1958
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001959/// doInitialization - Add attributes to well-known functions.
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001960///
Nick Lewycky6cd0c042009-01-05 00:07:50 +00001961bool SimplifyLibCalls::doInitialization(Module &M) {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001962 Modified = false;
1963 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
1964 Function &F = *I;
1965 if (!F.isDeclaration())
1966 continue;
1967
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001968 if (!F.hasName())
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001969 continue;
1970
1971 const FunctionType *FTy = F.getFunctionType();
1972
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001973 StringRef Name = F.getName();
1974 switch (Name[0]) {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001975 case 's':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001976 if (Name == "strlen") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001977 if (FTy->getNumParams() != 1 ||
1978 !isa<PointerType>(FTy->getParamType(0)))
1979 continue;
1980 setOnlyReadsMemory(F);
1981 setDoesNotThrow(F);
1982 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001983 } else if (Name == "strcpy" ||
1984 Name == "stpcpy" ||
1985 Name == "strcat" ||
1986 Name == "strtol" ||
1987 Name == "strtod" ||
1988 Name == "strtof" ||
1989 Name == "strtoul" ||
1990 Name == "strtoll" ||
1991 Name == "strtold" ||
1992 Name == "strncat" ||
1993 Name == "strncpy" ||
1994 Name == "strtoull") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00001995 if (FTy->getNumParams() < 2 ||
1996 !isa<PointerType>(FTy->getParamType(1)))
1997 continue;
1998 setDoesNotThrow(F);
1999 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002000 } else if (Name == "strxfrm") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002001 if (FTy->getNumParams() != 3 ||
2002 !isa<PointerType>(FTy->getParamType(0)) ||
2003 !isa<PointerType>(FTy->getParamType(1)))
2004 continue;
2005 setDoesNotThrow(F);
2006 setDoesNotCapture(F, 1);
2007 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002008 } else if (Name == "strcmp" ||
2009 Name == "strspn" ||
2010 Name == "strncmp" ||
2011 Name ==" strcspn" ||
2012 Name == "strcoll" ||
2013 Name == "strcasecmp" ||
2014 Name == "strncasecmp") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002015 if (FTy->getNumParams() < 2 ||
2016 !isa<PointerType>(FTy->getParamType(0)) ||
2017 !isa<PointerType>(FTy->getParamType(1)))
2018 continue;
2019 setOnlyReadsMemory(F);
2020 setDoesNotThrow(F);
2021 setDoesNotCapture(F, 1);
2022 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002023 } else if (Name == "strstr" ||
2024 Name == "strpbrk") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002025 if (FTy->getNumParams() != 2 ||
2026 !isa<PointerType>(FTy->getParamType(1)))
2027 continue;
2028 setOnlyReadsMemory(F);
2029 setDoesNotThrow(F);
2030 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002031 } else if (Name == "strtok" ||
2032 Name == "strtok_r") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002033 if (FTy->getNumParams() < 2 ||
2034 !isa<PointerType>(FTy->getParamType(1)))
2035 continue;
2036 setDoesNotThrow(F);
2037 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002038 } else if (Name == "scanf" ||
2039 Name == "setbuf" ||
2040 Name == "setvbuf") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002041 if (FTy->getNumParams() < 1 ||
2042 !isa<PointerType>(FTy->getParamType(0)))
2043 continue;
2044 setDoesNotThrow(F);
2045 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002046 } else if (Name == "strdup" ||
2047 Name == "strndup") {
Nick Lewycky6cd0c042009-01-05 00:07:50 +00002048 if (FTy->getNumParams() < 1 ||
2049 !isa<PointerType>(FTy->getReturnType()) ||
2050 !isa<PointerType>(FTy->getParamType(0)))
2051 continue;
2052 setDoesNotThrow(F);
2053 setDoesNotAlias(F, 0);
2054 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002055 } else if (Name == "stat" ||
2056 Name == "sscanf" ||
2057 Name == "sprintf" ||
2058 Name == "statvfs") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002059 if (FTy->getNumParams() < 2 ||
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002060 !isa<PointerType>(FTy->getParamType(0)) ||
2061 !isa<PointerType>(FTy->getParamType(1)))
2062 continue;
2063 setDoesNotThrow(F);
2064 setDoesNotCapture(F, 1);
2065 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002066 } else if (Name == "snprintf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002067 if (FTy->getNumParams() != 3 ||
2068 !isa<PointerType>(FTy->getParamType(0)) ||
2069 !isa<PointerType>(FTy->getParamType(2)))
2070 continue;
2071 setDoesNotThrow(F);
2072 setDoesNotCapture(F, 1);
2073 setDoesNotCapture(F, 3);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002074 } else if (Name == "setitimer") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002075 if (FTy->getNumParams() != 3 ||
2076 !isa<PointerType>(FTy->getParamType(1)) ||
2077 !isa<PointerType>(FTy->getParamType(2)))
2078 continue;
2079 setDoesNotThrow(F);
2080 setDoesNotCapture(F, 2);
2081 setDoesNotCapture(F, 3);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002082 } else if (Name == "system") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002083 if (FTy->getNumParams() != 1 ||
2084 !isa<PointerType>(FTy->getParamType(0)))
2085 continue;
2086 // May throw; "system" is a valid pthread cancellation point.
2087 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002088 }
2089 break;
2090 case 'm':
Victor Hernandez83d63912009-09-18 22:35:49 +00002091 if (Name == "malloc") {
2092 if (FTy->getNumParams() != 1 ||
2093 !isa<PointerType>(FTy->getReturnType()))
2094 continue;
2095 setDoesNotThrow(F);
2096 setDoesNotAlias(F, 0);
2097 } else if (Name == "memcmp") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002098 if (FTy->getNumParams() != 3 ||
2099 !isa<PointerType>(FTy->getParamType(0)) ||
2100 !isa<PointerType>(FTy->getParamType(1)))
2101 continue;
2102 setOnlyReadsMemory(F);
2103 setDoesNotThrow(F);
2104 setDoesNotCapture(F, 1);
2105 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002106 } else if (Name == "memchr" ||
2107 Name == "memrchr") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002108 if (FTy->getNumParams() != 3)
2109 continue;
2110 setOnlyReadsMemory(F);
2111 setDoesNotThrow(F);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002112 } else if (Name == "modf" ||
2113 Name == "modff" ||
2114 Name == "modfl" ||
2115 Name == "memcpy" ||
2116 Name == "memccpy" ||
2117 Name == "memmove") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002118 if (FTy->getNumParams() < 2 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002119 !isa<PointerType>(FTy->getParamType(1)))
2120 continue;
2121 setDoesNotThrow(F);
2122 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002123 } else if (Name == "memalign") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002124 if (!isa<PointerType>(FTy->getReturnType()))
2125 continue;
2126 setDoesNotAlias(F, 0);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002127 } else if (Name == "mkdir" ||
2128 Name == "mktime") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002129 if (FTy->getNumParams() == 0 ||
2130 !isa<PointerType>(FTy->getParamType(0)))
2131 continue;
2132 setDoesNotThrow(F);
2133 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002134 }
2135 break;
2136 case 'r':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002137 if (Name == "realloc") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002138 if (FTy->getNumParams() != 2 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002139 !isa<PointerType>(FTy->getParamType(0)) ||
2140 !isa<PointerType>(FTy->getReturnType()))
2141 continue;
2142 setDoesNotThrow(F);
2143 setDoesNotAlias(F, 0);
2144 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002145 } else if (Name == "read") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002146 if (FTy->getNumParams() != 3 ||
2147 !isa<PointerType>(FTy->getParamType(1)))
2148 continue;
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002149 // May throw; "read" is a valid pthread cancellation point.
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002150 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002151 } else if (Name == "rmdir" ||
2152 Name == "rewind" ||
2153 Name == "remove" ||
2154 Name == "realpath") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002155 if (FTy->getNumParams() < 1 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002156 !isa<PointerType>(FTy->getParamType(0)))
2157 continue;
2158 setDoesNotThrow(F);
2159 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002160 } else if (Name == "rename" ||
2161 Name == "readlink") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002162 if (FTy->getNumParams() < 2 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002163 !isa<PointerType>(FTy->getParamType(0)) ||
2164 !isa<PointerType>(FTy->getParamType(1)))
2165 continue;
2166 setDoesNotThrow(F);
2167 setDoesNotCapture(F, 1);
2168 setDoesNotCapture(F, 2);
2169 }
2170 break;
2171 case 'w':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002172 if (Name == "write") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002173 if (FTy->getNumParams() != 3 ||
2174 !isa<PointerType>(FTy->getParamType(1)))
2175 continue;
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002176 // May throw; "write" is a valid pthread cancellation point.
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002177 setDoesNotCapture(F, 2);
2178 }
2179 break;
2180 case 'b':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002181 if (Name == "bcopy") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002182 if (FTy->getNumParams() != 3 ||
2183 !isa<PointerType>(FTy->getParamType(0)) ||
2184 !isa<PointerType>(FTy->getParamType(1)))
2185 continue;
2186 setDoesNotThrow(F);
2187 setDoesNotCapture(F, 1);
2188 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002189 } else if (Name == "bcmp") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002190 if (FTy->getNumParams() != 3 ||
2191 !isa<PointerType>(FTy->getParamType(0)) ||
2192 !isa<PointerType>(FTy->getParamType(1)))
2193 continue;
2194 setDoesNotThrow(F);
2195 setOnlyReadsMemory(F);
2196 setDoesNotCapture(F, 1);
2197 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002198 } else if (Name == "bzero") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002199 if (FTy->getNumParams() != 2 ||
2200 !isa<PointerType>(FTy->getParamType(0)))
2201 continue;
2202 setDoesNotThrow(F);
2203 setDoesNotCapture(F, 1);
2204 }
2205 break;
2206 case 'c':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002207 if (Name == "calloc") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002208 if (FTy->getNumParams() != 2 ||
2209 !isa<PointerType>(FTy->getReturnType()))
2210 continue;
2211 setDoesNotThrow(F);
2212 setDoesNotAlias(F, 0);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002213 } else if (Name == "chmod" ||
2214 Name == "chown" ||
2215 Name == "ctermid" ||
2216 Name == "clearerr" ||
2217 Name == "closedir") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002218 if (FTy->getNumParams() == 0 ||
2219 !isa<PointerType>(FTy->getParamType(0)))
2220 continue;
2221 setDoesNotThrow(F);
2222 setDoesNotCapture(F, 1);
2223 }
2224 break;
2225 case 'a':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002226 if (Name == "atoi" ||
2227 Name == "atol" ||
2228 Name == "atof" ||
2229 Name == "atoll") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002230 if (FTy->getNumParams() != 1 ||
2231 !isa<PointerType>(FTy->getParamType(0)))
2232 continue;
2233 setDoesNotThrow(F);
2234 setOnlyReadsMemory(F);
2235 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002236 } else if (Name == "access") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002237 if (FTy->getNumParams() != 2 ||
2238 !isa<PointerType>(FTy->getParamType(0)))
2239 continue;
2240 setDoesNotThrow(F);
2241 setDoesNotCapture(F, 1);
2242 }
2243 break;
2244 case 'f':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002245 if (Name == "fopen") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002246 if (FTy->getNumParams() != 2 ||
2247 !isa<PointerType>(FTy->getReturnType()) ||
2248 !isa<PointerType>(FTy->getParamType(0)) ||
2249 !isa<PointerType>(FTy->getParamType(1)))
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002250 continue;
2251 setDoesNotThrow(F);
2252 setDoesNotAlias(F, 0);
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002253 setDoesNotCapture(F, 1);
2254 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002255 } else if (Name == "fdopen") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002256 if (FTy->getNumParams() != 2 ||
2257 !isa<PointerType>(FTy->getReturnType()) ||
2258 !isa<PointerType>(FTy->getParamType(1)))
2259 continue;
2260 setDoesNotThrow(F);
2261 setDoesNotAlias(F, 0);
2262 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002263 } else if (Name == "feof" ||
2264 Name == "free" ||
2265 Name == "fseek" ||
2266 Name == "ftell" ||
2267 Name == "fgetc" ||
2268 Name == "fseeko" ||
2269 Name == "ftello" ||
2270 Name == "fileno" ||
2271 Name == "fflush" ||
2272 Name == "fclose" ||
2273 Name == "fsetpos" ||
2274 Name == "flockfile" ||
2275 Name == "funlockfile" ||
2276 Name == "ftrylockfile") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002277 if (FTy->getNumParams() == 0 ||
2278 !isa<PointerType>(FTy->getParamType(0)))
2279 continue;
2280 setDoesNotThrow(F);
2281 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002282 } else if (Name == "ferror") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002283 if (FTy->getNumParams() != 1 ||
2284 !isa<PointerType>(FTy->getParamType(0)))
2285 continue;
2286 setDoesNotThrow(F);
2287 setDoesNotCapture(F, 1);
2288 setOnlyReadsMemory(F);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002289 } else if (Name == "fputc" ||
2290 Name == "fstat" ||
2291 Name == "frexp" ||
2292 Name == "frexpf" ||
2293 Name == "frexpl" ||
2294 Name == "fstatvfs") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002295 if (FTy->getNumParams() != 2 ||
2296 !isa<PointerType>(FTy->getParamType(1)))
2297 continue;
2298 setDoesNotThrow(F);
2299 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002300 } else if (Name == "fgets") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002301 if (FTy->getNumParams() != 3 ||
2302 !isa<PointerType>(FTy->getParamType(0)) ||
2303 !isa<PointerType>(FTy->getParamType(2)))
2304 continue;
2305 setDoesNotThrow(F);
2306 setDoesNotCapture(F, 3);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002307 } else if (Name == "fread" ||
2308 Name == "fwrite") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002309 if (FTy->getNumParams() != 4 ||
2310 !isa<PointerType>(FTy->getParamType(0)) ||
2311 !isa<PointerType>(FTy->getParamType(3)))
2312 continue;
2313 setDoesNotThrow(F);
2314 setDoesNotCapture(F, 1);
2315 setDoesNotCapture(F, 4);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002316 } else if (Name == "fputs" ||
2317 Name == "fscanf" ||
2318 Name == "fprintf" ||
2319 Name == "fgetpos") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002320 if (FTy->getNumParams() < 2 ||
2321 !isa<PointerType>(FTy->getParamType(0)) ||
2322 !isa<PointerType>(FTy->getParamType(1)))
2323 continue;
2324 setDoesNotThrow(F);
2325 setDoesNotCapture(F, 1);
2326 setDoesNotCapture(F, 2);
2327 }
2328 break;
2329 case 'g':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002330 if (Name == "getc" ||
2331 Name == "getlogin_r" ||
2332 Name == "getc_unlocked") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002333 if (FTy->getNumParams() == 0 ||
2334 !isa<PointerType>(FTy->getParamType(0)))
2335 continue;
2336 setDoesNotThrow(F);
2337 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002338 } else if (Name == "getenv") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002339 if (FTy->getNumParams() != 1 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002340 !isa<PointerType>(FTy->getParamType(0)))
2341 continue;
2342 setDoesNotThrow(F);
2343 setOnlyReadsMemory(F);
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002344 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002345 } else if (Name == "gets" ||
2346 Name == "getchar") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002347 setDoesNotThrow(F);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002348 } else if (Name == "getitimer") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002349 if (FTy->getNumParams() != 2 ||
2350 !isa<PointerType>(FTy->getParamType(1)))
2351 continue;
2352 setDoesNotThrow(F);
2353 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002354 } else if (Name == "getpwnam") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002355 if (FTy->getNumParams() != 1 ||
2356 !isa<PointerType>(FTy->getParamType(0)))
2357 continue;
2358 setDoesNotThrow(F);
2359 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002360 }
2361 break;
2362 case 'u':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002363 if (Name == "ungetc") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002364 if (FTy->getNumParams() != 2 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002365 !isa<PointerType>(FTy->getParamType(1)))
2366 continue;
2367 setDoesNotThrow(F);
2368 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002369 } else if (Name == "uname" ||
2370 Name == "unlink" ||
2371 Name == "unsetenv") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002372 if (FTy->getNumParams() != 1 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002373 !isa<PointerType>(FTy->getParamType(0)))
2374 continue;
2375 setDoesNotThrow(F);
2376 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002377 } else if (Name == "utime" ||
2378 Name == "utimes") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002379 if (FTy->getNumParams() != 2 ||
2380 !isa<PointerType>(FTy->getParamType(0)) ||
2381 !isa<PointerType>(FTy->getParamType(1)))
2382 continue;
2383 setDoesNotThrow(F);
2384 setDoesNotCapture(F, 1);
2385 setDoesNotCapture(F, 2);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002386 }
2387 break;
2388 case 'p':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002389 if (Name == "putc") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002390 if (FTy->getNumParams() != 2 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002391 !isa<PointerType>(FTy->getParamType(1)))
2392 continue;
2393 setDoesNotThrow(F);
2394 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002395 } else if (Name == "puts" ||
2396 Name == "printf" ||
2397 Name == "perror") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002398 if (FTy->getNumParams() != 1 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002399 !isa<PointerType>(FTy->getParamType(0)))
2400 continue;
2401 setDoesNotThrow(F);
2402 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002403 } else if (Name == "pread" ||
2404 Name == "pwrite") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002405 if (FTy->getNumParams() != 4 ||
2406 !isa<PointerType>(FTy->getParamType(1)))
2407 continue;
2408 // May throw; these are valid pthread cancellation points.
2409 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002410 } else if (Name == "putchar") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002411 setDoesNotThrow(F);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002412 } else if (Name == "popen") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002413 if (FTy->getNumParams() != 2 ||
2414 !isa<PointerType>(FTy->getReturnType()) ||
2415 !isa<PointerType>(FTy->getParamType(0)) ||
2416 !isa<PointerType>(FTy->getParamType(1)))
2417 continue;
2418 setDoesNotThrow(F);
2419 setDoesNotAlias(F, 0);
2420 setDoesNotCapture(F, 1);
2421 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002422 } else if (Name == "pclose") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002423 if (FTy->getNumParams() != 1 ||
2424 !isa<PointerType>(FTy->getParamType(0)))
2425 continue;
2426 setDoesNotThrow(F);
2427 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002428 }
2429 break;
2430 case 'v':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002431 if (Name == "vscanf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002432 if (FTy->getNumParams() != 2 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002433 !isa<PointerType>(FTy->getParamType(1)))
2434 continue;
2435 setDoesNotThrow(F);
2436 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002437 } else if (Name == "vsscanf" ||
2438 Name == "vfscanf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002439 if (FTy->getNumParams() != 3 ||
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002440 !isa<PointerType>(FTy->getParamType(1)) ||
2441 !isa<PointerType>(FTy->getParamType(2)))
2442 continue;
2443 setDoesNotThrow(F);
2444 setDoesNotCapture(F, 1);
2445 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002446 } else if (Name == "valloc") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002447 if (!isa<PointerType>(FTy->getReturnType()))
2448 continue;
2449 setDoesNotThrow(F);
2450 setDoesNotAlias(F, 0);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002451 } else if (Name == "vprintf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002452 if (FTy->getNumParams() != 2 ||
2453 !isa<PointerType>(FTy->getParamType(0)))
2454 continue;
2455 setDoesNotThrow(F);
2456 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002457 } else if (Name == "vfprintf" ||
2458 Name == "vsprintf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002459 if (FTy->getNumParams() != 3 ||
2460 !isa<PointerType>(FTy->getParamType(0)) ||
2461 !isa<PointerType>(FTy->getParamType(1)))
2462 continue;
2463 setDoesNotThrow(F);
2464 setDoesNotCapture(F, 1);
2465 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002466 } else if (Name == "vsnprintf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002467 if (FTy->getNumParams() != 4 ||
2468 !isa<PointerType>(FTy->getParamType(0)) ||
2469 !isa<PointerType>(FTy->getParamType(2)))
2470 continue;
2471 setDoesNotThrow(F);
2472 setDoesNotCapture(F, 1);
2473 setDoesNotCapture(F, 3);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002474 }
2475 break;
2476 case 'o':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002477 if (Name == "open") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002478 if (FTy->getNumParams() < 2 ||
2479 !isa<PointerType>(FTy->getParamType(0)))
2480 continue;
2481 // May throw; "open" is a valid pthread cancellation point.
2482 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002483 } else if (Name == "opendir") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002484 if (FTy->getNumParams() != 1 ||
2485 !isa<PointerType>(FTy->getReturnType()) ||
2486 !isa<PointerType>(FTy->getParamType(0)))
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002487 continue;
2488 setDoesNotThrow(F);
2489 setDoesNotAlias(F, 0);
Nick Lewycky225f7472009-02-15 22:47:25 +00002490 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002491 }
2492 break;
2493 case 't':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002494 if (Name == "tmpfile") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002495 if (!isa<PointerType>(FTy->getReturnType()))
2496 continue;
2497 setDoesNotThrow(F);
2498 setDoesNotAlias(F, 0);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002499 } else if (Name == "times") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002500 if (FTy->getNumParams() != 1 ||
2501 !isa<PointerType>(FTy->getParamType(0)))
2502 continue;
2503 setDoesNotThrow(F);
2504 setDoesNotCapture(F, 1);
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002505 }
Nick Lewycky225f7472009-02-15 22:47:25 +00002506 break;
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002507 case 'h':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002508 if (Name == "htonl" ||
2509 Name == "htons") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002510 setDoesNotThrow(F);
2511 setDoesNotAccessMemory(F);
2512 }
2513 break;
2514 case 'n':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002515 if (Name == "ntohl" ||
2516 Name == "ntohs") {
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002517 setDoesNotThrow(F);
2518 setDoesNotAccessMemory(F);
2519 }
Nick Lewycky225f7472009-02-15 22:47:25 +00002520 break;
2521 case 'l':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002522 if (Name == "lstat") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002523 if (FTy->getNumParams() != 2 ||
2524 !isa<PointerType>(FTy->getParamType(0)) ||
2525 !isa<PointerType>(FTy->getParamType(1)))
2526 continue;
2527 setDoesNotThrow(F);
2528 setDoesNotCapture(F, 1);
2529 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002530 } else if (Name == "lchown") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002531 if (FTy->getNumParams() != 3 ||
2532 !isa<PointerType>(FTy->getParamType(0)))
2533 continue;
2534 setDoesNotThrow(F);
2535 setDoesNotCapture(F, 1);
2536 }
2537 break;
2538 case 'q':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002539 if (Name == "qsort") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002540 if (FTy->getNumParams() != 4 ||
2541 !isa<PointerType>(FTy->getParamType(3)))
2542 continue;
2543 // May throw; places call through function pointer.
2544 setDoesNotCapture(F, 4);
2545 }
2546 break;
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002547 case '_':
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002548 if (Name == "__strdup" ||
2549 Name == "__strndup") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002550 if (FTy->getNumParams() < 1 ||
2551 !isa<PointerType>(FTy->getReturnType()) ||
2552 !isa<PointerType>(FTy->getParamType(0)))
2553 continue;
2554 setDoesNotThrow(F);
2555 setDoesNotAlias(F, 0);
2556 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002557 } else if (Name == "__strtok_r") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002558 if (FTy->getNumParams() != 3 ||
2559 !isa<PointerType>(FTy->getParamType(1)))
2560 continue;
2561 setDoesNotThrow(F);
2562 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002563 } else if (Name == "_IO_getc") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002564 if (FTy->getNumParams() != 1 ||
2565 !isa<PointerType>(FTy->getParamType(0)))
2566 continue;
2567 setDoesNotThrow(F);
2568 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002569 } else if (Name == "_IO_putc") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002570 if (FTy->getNumParams() != 2 ||
2571 !isa<PointerType>(FTy->getParamType(1)))
2572 continue;
2573 setDoesNotThrow(F);
2574 setDoesNotCapture(F, 2);
2575 }
Nick Lewycky225f7472009-02-15 22:47:25 +00002576 break;
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002577 case 1:
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002578 if (Name == "\1__isoc99_scanf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002579 if (FTy->getNumParams() < 1 ||
2580 !isa<PointerType>(FTy->getParamType(0)))
2581 continue;
2582 setDoesNotThrow(F);
2583 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002584 } else if (Name == "\1stat64" ||
2585 Name == "\1lstat64" ||
2586 Name == "\1statvfs64" ||
2587 Name == "\1__isoc99_sscanf") {
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002588 if (FTy->getNumParams() < 1 ||
Nick Lewycky225f7472009-02-15 22:47:25 +00002589 !isa<PointerType>(FTy->getParamType(0)) ||
2590 !isa<PointerType>(FTy->getParamType(1)))
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002591 continue;
2592 setDoesNotThrow(F);
2593 setDoesNotCapture(F, 1);
2594 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002595 } else if (Name == "\1fopen64") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002596 if (FTy->getNumParams() != 2 ||
2597 !isa<PointerType>(FTy->getReturnType()) ||
2598 !isa<PointerType>(FTy->getParamType(0)) ||
2599 !isa<PointerType>(FTy->getParamType(1)))
2600 continue;
2601 setDoesNotThrow(F);
2602 setDoesNotAlias(F, 0);
2603 setDoesNotCapture(F, 1);
2604 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002605 } else if (Name == "\1fseeko64" ||
2606 Name == "\1ftello64") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002607 if (FTy->getNumParams() == 0 ||
2608 !isa<PointerType>(FTy->getParamType(0)))
2609 continue;
2610 setDoesNotThrow(F);
2611 setDoesNotCapture(F, 1);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002612 } else if (Name == "\1tmpfile64") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002613 if (!isa<PointerType>(FTy->getReturnType()))
2614 continue;
2615 setDoesNotThrow(F);
2616 setDoesNotAlias(F, 0);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002617 } else if (Name == "\1fstat64" ||
2618 Name == "\1fstatvfs64") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002619 if (FTy->getNumParams() != 2 ||
2620 !isa<PointerType>(FTy->getParamType(1)))
2621 continue;
2622 setDoesNotThrow(F);
2623 setDoesNotCapture(F, 2);
Daniel Dunbar93b67e42009-07-26 07:49:05 +00002624 } else if (Name == "\1open64") {
Nick Lewycky225f7472009-02-15 22:47:25 +00002625 if (FTy->getNumParams() < 2 ||
2626 !isa<PointerType>(FTy->getParamType(0)))
2627 continue;
2628 // May throw; "open" is a valid pthread cancellation point.
2629 setDoesNotCapture(F, 1);
Nick Lewycky0b6679d2009-01-18 04:34:36 +00002630 }
Nick Lewycky0f8df9a2009-01-04 20:27:34 +00002631 break;
2632 }
2633 }
2634 return Modified;
2635}
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002636
2637// TODO:
2638// Additional cases that we need to add to this file:
2639//
2640// cbrt:
2641// * cbrt(expN(X)) -> expN(x/3)
2642// * cbrt(sqrt(x)) -> pow(x,1/6)
2643// * cbrt(sqrt(x)) -> pow(x,1/9)
2644//
2645// cos, cosf, cosl:
2646// * cos(-x) -> cos(x)
2647//
2648// exp, expf, expl:
2649// * exp(log(x)) -> x
2650//
2651// log, logf, logl:
2652// * log(exp(x)) -> x
2653// * log(x**y) -> y*log(x)
2654// * log(exp(y)) -> y*log(e)
2655// * log(exp2(y)) -> y*log(2)
2656// * log(exp10(y)) -> y*log(10)
2657// * log(sqrt(x)) -> 0.5*log(x)
2658// * log(pow(x,y)) -> y*log(x)
2659//
2660// lround, lroundf, lroundl:
2661// * lround(cnst) -> cnst'
2662//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002663// pow, powf, powl:
2664// * pow(exp(x),y) -> exp(x*y)
2665// * pow(sqrt(x),y) -> pow(x,y*0.5)
2666// * pow(pow(x,y),z)-> pow(x,y*z)
2667//
2668// puts:
2669// * puts("") -> putchar("\n")
2670//
2671// round, roundf, roundl:
2672// * round(cnst) -> cnst'
2673//
2674// signbit:
2675// * signbit(cnst) -> cnst'
2676// * signbit(nncst) -> 0 (if pstv is a non-negative constant)
2677//
2678// sqrt, sqrtf, sqrtl:
2679// * sqrt(expN(x)) -> expN(x*0.5)
2680// * sqrt(Nroot(x)) -> pow(x,1/(2*N))
2681// * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
2682//
2683// stpcpy:
2684// * stpcpy(str, "literal") ->
2685// llvm.memcpy(str,"literal",strlen("literal")+1,1)
2686// strrchr:
2687// * strrchr(s,c) -> reverse_offset_of_in(c,s)
2688// (if c is a constant integer and s is a constant string)
2689// * strrchr(s1,0) -> strchr(s1,0)
2690//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002691// strpbrk:
2692// * strpbrk(s,a) -> offset_in_for(s,a)
2693// (if s and a are both constant strings)
2694// * strpbrk(s,"") -> 0
2695// * strpbrk(s,a) -> strchr(s,a[0]) (if a is constant string of length 1)
2696//
2697// strspn, strcspn:
2698// * strspn(s,a) -> const_int (if both args are constant)
2699// * strspn("",a) -> 0
2700// * strspn(s,"") -> 0
2701// * strcspn(s,a) -> const_int (if both args are constant)
2702// * strcspn("",a) -> 0
2703// * strcspn(s,"") -> strlen(a)
2704//
Chris Lattnerfd1cbbe2008-05-01 06:25:24 +00002705// tan, tanf, tanl:
2706// * tan(atan(x)) -> x
2707//
2708// trunc, truncf, truncl:
2709// * trunc(cnst) -> cnst'
2710//
2711//