blob: fa2faa2dad8c2085a7674b8b2dcd067043b0cd05 [file] [log] [blame]
Eric Christopherb6174e32010-03-05 22:25:30 +00001//===- BuildLibCalls.cpp - Utility builder for libcalls -------------------===//
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 some functions that will create standard C libcalls.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Transforms/Utils/BuildLibCalls.h"
Eric Christopherb6174e32010-03-05 22:25:30 +000015#include "llvm/Constants.h"
16#include "llvm/Function.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000017#include "llvm/IRBuilder.h"
Benjamin Kramerb5ccb252011-11-15 19:12:09 +000018#include "llvm/Intrinsics.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000019#include "llvm/Intrinsics.h"
20#include "llvm/LLVMContext.h"
Benjamin Kramerb5ccb252011-11-15 19:12:09 +000021#include "llvm/LLVMContext.h"
Eric Christopherb6174e32010-03-05 22:25:30 +000022#include "llvm/Module.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000023#include "llvm/Type.h"
24#include "llvm/ADT/SmallString.h"
Micah Villmow3574eca2012-10-08 16:38:25 +000025#include "llvm/DataLayout.h"
Eli Friedman9d434db2011-11-17 01:27:36 +000026#include "llvm/Target/TargetLibraryInfo.h"
Eric Christopherb6174e32010-03-05 22:25:30 +000027
28using namespace llvm;
29
30/// CastToCStr - Return V if it is an i8*, otherwise cast it to i8*.
31Value *llvm::CastToCStr(Value *V, IRBuilder<> &B) {
32 return B.CreateBitCast(V, B.getInt8PtrTy(), "cstr");
33}
34
35/// EmitStrLen - Emit a call to the strlen function to the builder, for the
36/// specified pointer. This always returns an integer value of size intptr_t.
Micah Villmow3574eca2012-10-08 16:38:25 +000037Value *llvm::EmitStrLen(Value *Ptr, IRBuilder<> &B, const DataLayout *TD,
Nuno Lopes51004df2012-07-25 16:46:31 +000038 const TargetLibraryInfo *TLI) {
39 if (!TLI->has(LibFunc::strlen))
40 return 0;
41
Eric Christopherb6174e32010-03-05 22:25:30 +000042 Module *M = B.GetInsertBlock()->getParent()->getParent();
43 AttributeWithIndex AWI[2];
Bill Wendlingcb3de0b2012-10-15 04:46:55 +000044 AWI[0] = AttributeWithIndex::get(M->getContext(), 1, Attributes::NoCapture);
Bill Wendling11d00422012-10-10 06:13:42 +000045 Attributes::AttrVal AVs[2] = { Attributes::ReadOnly, Attributes::NoUnwind };
Bill Wendling07aae2e2012-10-15 07:29:08 +000046 AWI[1] = AttributeWithIndex::get(M->getContext(), AttrListPtr::FunctionIndex,
Bill Wendlingcb3de0b2012-10-15 04:46:55 +000047 ArrayRef<Attributes::AttrVal>(AVs, 2));
Eric Christopherb6174e32010-03-05 22:25:30 +000048
Chandler Carruthece6c6b2012-11-01 08:07:29 +000049 LLVMContext &Context = B.GetInsertBlock()->getContext();
Chris Lattnerd509d0b2012-05-28 01:47:44 +000050 Constant *StrLen = M->getOrInsertFunction("strlen", AttrListPtr::get(AWI),
Chandler Carruthece6c6b2012-11-01 08:07:29 +000051 TD->getIntPtrType(Context),
Eric Christopherb6174e32010-03-05 22:25:30 +000052 B.getInt8PtrTy(),
53 NULL);
54 CallInst *CI = B.CreateCall(StrLen, CastToCStr(Ptr, B), "strlen");
55 if (const Function *F = dyn_cast<Function>(StrLen->stripPointerCasts()))
56 CI->setCallingConv(F->getCallingConv());
57
58 return CI;
59}
60
Nuno Lopesa5368352012-07-25 17:18:59 +000061/// EmitStrNLen - Emit a call to the strnlen function to the builder, for the
62/// specified pointer. Ptr is required to be some pointer type, MaxLen must
63/// be of size_t type, and the return value has 'intptr_t' type.
64Value *llvm::EmitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B,
Micah Villmow3574eca2012-10-08 16:38:25 +000065 const DataLayout *TD, const TargetLibraryInfo *TLI) {
Nuno Lopesa5368352012-07-25 17:18:59 +000066 if (!TLI->has(LibFunc::strnlen))
67 return 0;
68
69 Module *M = B.GetInsertBlock()->getParent()->getParent();
70 AttributeWithIndex AWI[2];
Bill Wendlingcb3de0b2012-10-15 04:46:55 +000071 AWI[0] = AttributeWithIndex::get(M->getContext(), 1, Attributes::NoCapture);
Bill Wendling11d00422012-10-10 06:13:42 +000072 Attributes::AttrVal AVs[2] = { Attributes::ReadOnly, Attributes::NoUnwind };
Bill Wendling07aae2e2012-10-15 07:29:08 +000073 AWI[1] = AttributeWithIndex::get(M->getContext(), AttrListPtr::FunctionIndex,
Bill Wendlingcb3de0b2012-10-15 04:46:55 +000074 ArrayRef<Attributes::AttrVal>(AVs, 2));
Nuno Lopesa5368352012-07-25 17:18:59 +000075
Chandler Carruthece6c6b2012-11-01 08:07:29 +000076 LLVMContext &Context = B.GetInsertBlock()->getContext();
Nuno Lopesa5368352012-07-25 17:18:59 +000077 Constant *StrNLen = M->getOrInsertFunction("strnlen", AttrListPtr::get(AWI),
Chandler Carruthece6c6b2012-11-01 08:07:29 +000078 TD->getIntPtrType(Context),
Nuno Lopesa5368352012-07-25 17:18:59 +000079 B.getInt8PtrTy(),
Chandler Carruthece6c6b2012-11-01 08:07:29 +000080 TD->getIntPtrType(Context),
Nuno Lopesa5368352012-07-25 17:18:59 +000081 NULL);
82 CallInst *CI = B.CreateCall2(StrNLen, CastToCStr(Ptr, B), MaxLen, "strnlen");
83 if (const Function *F = dyn_cast<Function>(StrNLen->stripPointerCasts()))
84 CI->setCallingConv(F->getCallingConv());
85
86 return CI;
87}
88
Eric Christopherb6174e32010-03-05 22:25:30 +000089/// EmitStrChr - Emit a call to the strchr function to the builder, for the
90/// specified pointer and character. Ptr is required to be some pointer type,
91/// and the return value has 'i8*' type.
92Value *llvm::EmitStrChr(Value *Ptr, char C, IRBuilder<> &B,
Micah Villmow3574eca2012-10-08 16:38:25 +000093 const DataLayout *TD, const TargetLibraryInfo *TLI) {
Nuno Lopes51004df2012-07-25 16:46:31 +000094 if (!TLI->has(LibFunc::strchr))
95 return 0;
96
Eric Christopherb6174e32010-03-05 22:25:30 +000097 Module *M = B.GetInsertBlock()->getParent()->getParent();
Bill Wendling11d00422012-10-10 06:13:42 +000098 Attributes::AttrVal AVs[2] = { Attributes::ReadOnly, Attributes::NoUnwind };
Eric Christopherb6174e32010-03-05 22:25:30 +000099 AttributeWithIndex AWI =
Bill Wendling07aae2e2012-10-15 07:29:08 +0000100 AttributeWithIndex::get(M->getContext(), AttrListPtr::FunctionIndex,
Bill Wendlingcb3de0b2012-10-15 04:46:55 +0000101 ArrayRef<Attributes::AttrVal>(AVs, 2));
Eric Christopherb6174e32010-03-05 22:25:30 +0000102
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000103 Type *I8Ptr = B.getInt8PtrTy();
104 Type *I32Ty = B.getInt32Ty();
Chris Lattnerd509d0b2012-05-28 01:47:44 +0000105 Constant *StrChr = M->getOrInsertFunction("strchr", AttrListPtr::get(AWI),
Eric Christopherb6174e32010-03-05 22:25:30 +0000106 I8Ptr, I8Ptr, I32Ty, NULL);
107 CallInst *CI = B.CreateCall2(StrChr, CastToCStr(Ptr, B),
108 ConstantInt::get(I32Ty, C), "strchr");
109 if (const Function *F = dyn_cast<Function>(StrChr->stripPointerCasts()))
110 CI->setCallingConv(F->getCallingConv());
111 return CI;
112}
113
Benjamin Kramer386e9182010-06-15 21:34:25 +0000114/// EmitStrNCmp - Emit a call to the strncmp function to the builder.
115Value *llvm::EmitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len,
Micah Villmow3574eca2012-10-08 16:38:25 +0000116 IRBuilder<> &B, const DataLayout *TD,
Nuno Lopes51004df2012-07-25 16:46:31 +0000117 const TargetLibraryInfo *TLI) {
118 if (!TLI->has(LibFunc::strncmp))
119 return 0;
120
Benjamin Kramer386e9182010-06-15 21:34:25 +0000121 Module *M = B.GetInsertBlock()->getParent()->getParent();
122 AttributeWithIndex AWI[3];
Bill Wendlingcb3de0b2012-10-15 04:46:55 +0000123 AWI[0] = AttributeWithIndex::get(M->getContext(), 1, Attributes::NoCapture);
124 AWI[1] = AttributeWithIndex::get(M->getContext(), 2, Attributes::NoCapture);
Bill Wendling11d00422012-10-10 06:13:42 +0000125 Attributes::AttrVal AVs[2] = { Attributes::ReadOnly, Attributes::NoUnwind };
Bill Wendling07aae2e2012-10-15 07:29:08 +0000126 AWI[2] = AttributeWithIndex::get(M->getContext(), AttrListPtr::FunctionIndex,
Bill Wendlingcb3de0b2012-10-15 04:46:55 +0000127 ArrayRef<Attributes::AttrVal>(AVs, 2));
Benjamin Kramer386e9182010-06-15 21:34:25 +0000128
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000129 LLVMContext &Context = B.GetInsertBlock()->getContext();
Chris Lattnerd509d0b2012-05-28 01:47:44 +0000130 Value *StrNCmp = M->getOrInsertFunction("strncmp", AttrListPtr::get(AWI),
Benjamin Kramer386e9182010-06-15 21:34:25 +0000131 B.getInt32Ty(),
132 B.getInt8PtrTy(),
133 B.getInt8PtrTy(),
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000134 TD->getIntPtrType(Context), NULL);
Benjamin Kramer386e9182010-06-15 21:34:25 +0000135 CallInst *CI = B.CreateCall3(StrNCmp, CastToCStr(Ptr1, B),
136 CastToCStr(Ptr2, B), Len, "strncmp");
137
138 if (const Function *F = dyn_cast<Function>(StrNCmp->stripPointerCasts()))
139 CI->setCallingConv(F->getCallingConv());
140
141 return CI;
142}
143
Eric Christopherb6174e32010-03-05 22:25:30 +0000144/// EmitStrCpy - Emit a call to the strcpy function to the builder, for the
145/// specified pointer arguments.
146Value *llvm::EmitStrCpy(Value *Dst, Value *Src, IRBuilder<> &B,
Micah Villmow3574eca2012-10-08 16:38:25 +0000147 const DataLayout *TD, const TargetLibraryInfo *TLI,
Nuno Lopes51004df2012-07-25 16:46:31 +0000148 StringRef Name) {
149 if (!TLI->has(LibFunc::strcpy))
150 return 0;
151
Eric Christopherb6174e32010-03-05 22:25:30 +0000152 Module *M = B.GetInsertBlock()->getParent()->getParent();
153 AttributeWithIndex AWI[2];
Bill Wendlingcb3de0b2012-10-15 04:46:55 +0000154 AWI[0] = AttributeWithIndex::get(M->getContext(), 2, Attributes::NoCapture);
Bill Wendling07aae2e2012-10-15 07:29:08 +0000155 AWI[1] = AttributeWithIndex::get(M->getContext(), AttrListPtr::FunctionIndex,
156 Attributes::NoUnwind);
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000157 Type *I8Ptr = B.getInt8PtrTy();
Chris Lattnerd509d0b2012-05-28 01:47:44 +0000158 Value *StrCpy = M->getOrInsertFunction(Name, AttrListPtr::get(AWI),
Eric Christopherb6174e32010-03-05 22:25:30 +0000159 I8Ptr, I8Ptr, I8Ptr, NULL);
160 CallInst *CI = B.CreateCall2(StrCpy, CastToCStr(Dst, B), CastToCStr(Src, B),
Benjamin Kramer7fa30b82010-03-11 20:45:13 +0000161 Name);
Eric Christopherb6174e32010-03-05 22:25:30 +0000162 if (const Function *F = dyn_cast<Function>(StrCpy->stripPointerCasts()))
163 CI->setCallingConv(F->getCallingConv());
164 return CI;
165}
166
Eric Christopherb0722af2010-03-11 17:45:38 +0000167/// EmitStrNCpy - Emit a call to the strncpy function to the builder, for the
Eric Christopherbd973762010-03-11 01:25:07 +0000168/// specified pointer arguments.
169Value *llvm::EmitStrNCpy(Value *Dst, Value *Src, Value *Len,
Micah Villmow3574eca2012-10-08 16:38:25 +0000170 IRBuilder<> &B, const DataLayout *TD,
Nuno Lopes51004df2012-07-25 16:46:31 +0000171 const TargetLibraryInfo *TLI, StringRef Name) {
172 if (!TLI->has(LibFunc::strncpy))
173 return 0;
174
Eric Christopherbd973762010-03-11 01:25:07 +0000175 Module *M = B.GetInsertBlock()->getParent()->getParent();
176 AttributeWithIndex AWI[2];
Bill Wendlingcb3de0b2012-10-15 04:46:55 +0000177 AWI[0] = AttributeWithIndex::get(M->getContext(), 2, Attributes::NoCapture);
Bill Wendling07aae2e2012-10-15 07:29:08 +0000178 AWI[1] = AttributeWithIndex::get(M->getContext(), AttrListPtr::FunctionIndex,
179 Attributes::NoUnwind);
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000180 Type *I8Ptr = B.getInt8PtrTy();
Chris Lattnerd509d0b2012-05-28 01:47:44 +0000181 Value *StrNCpy = M->getOrInsertFunction(Name, AttrListPtr::get(AWI),
Eric Christopher71988f12010-04-07 23:00:07 +0000182 I8Ptr, I8Ptr, I8Ptr,
183 Len->getType(), NULL);
Eric Christopherbd973762010-03-11 01:25:07 +0000184 CallInst *CI = B.CreateCall3(StrNCpy, CastToCStr(Dst, B), CastToCStr(Src, B),
185 Len, "strncpy");
186 if (const Function *F = dyn_cast<Function>(StrNCpy->stripPointerCasts()))
187 CI->setCallingConv(F->getCallingConv());
188 return CI;
189}
190
Evan Cheng0289b412010-03-23 15:48:04 +0000191/// EmitMemCpyChk - Emit a call to the __memcpy_chk function to the builder.
192/// This expects that the Len and ObjSize have type 'intptr_t' and Dst/Src
193/// are pointers.
194Value *llvm::EmitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
Micah Villmow3574eca2012-10-08 16:38:25 +0000195 IRBuilder<> &B, const DataLayout *TD,
Nuno Lopes51004df2012-07-25 16:46:31 +0000196 const TargetLibraryInfo *TLI) {
197 if (!TLI->has(LibFunc::memcpy_chk))
198 return 0;
199
Evan Cheng0289b412010-03-23 15:48:04 +0000200 Module *M = B.GetInsertBlock()->getParent()->getParent();
201 AttributeWithIndex AWI;
Bill Wendling07aae2e2012-10-15 07:29:08 +0000202 AWI = AttributeWithIndex::get(M->getContext(), AttrListPtr::FunctionIndex,
203 Attributes::NoUnwind);
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000204 LLVMContext &Context = B.GetInsertBlock()->getContext();
Evan Cheng0289b412010-03-23 15:48:04 +0000205 Value *MemCpy = M->getOrInsertFunction("__memcpy_chk",
Chris Lattnerd509d0b2012-05-28 01:47:44 +0000206 AttrListPtr::get(AWI),
Evan Cheng0289b412010-03-23 15:48:04 +0000207 B.getInt8PtrTy(),
208 B.getInt8PtrTy(),
209 B.getInt8PtrTy(),
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000210 TD->getIntPtrType(Context),
211 TD->getIntPtrType(Context), NULL);
Evan Cheng0289b412010-03-23 15:48:04 +0000212 Dst = CastToCStr(Dst, B);
213 Src = CastToCStr(Src, B);
214 CallInst *CI = B.CreateCall4(MemCpy, Dst, Src, Len, ObjSize);
215 if (const Function *F = dyn_cast<Function>(MemCpy->stripPointerCasts()))
216 CI->setCallingConv(F->getCallingConv());
217 return CI;
218}
219
Eric Christopherb6174e32010-03-05 22:25:30 +0000220/// EmitMemChr - Emit a call to the memchr function. This assumes that Ptr is
221/// a pointer, Val is an i32 value, and Len is an 'intptr_t' value.
222Value *llvm::EmitMemChr(Value *Ptr, Value *Val,
Micah Villmow3574eca2012-10-08 16:38:25 +0000223 Value *Len, IRBuilder<> &B, const DataLayout *TD,
Nuno Lopes51004df2012-07-25 16:46:31 +0000224 const TargetLibraryInfo *TLI) {
225 if (!TLI->has(LibFunc::memchr))
226 return 0;
227
Eric Christopherb6174e32010-03-05 22:25:30 +0000228 Module *M = B.GetInsertBlock()->getParent()->getParent();
229 AttributeWithIndex AWI;
Bill Wendling11d00422012-10-10 06:13:42 +0000230 Attributes::AttrVal AVs[2] = { Attributes::ReadOnly, Attributes::NoUnwind };
Bill Wendling07aae2e2012-10-15 07:29:08 +0000231 AWI = AttributeWithIndex::get(M->getContext(), AttrListPtr::FunctionIndex,
Bill Wendlingcb3de0b2012-10-15 04:46:55 +0000232 ArrayRef<Attributes::AttrVal>(AVs, 2));
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000233 LLVMContext &Context = B.GetInsertBlock()->getContext();
Chris Lattnerd509d0b2012-05-28 01:47:44 +0000234 Value *MemChr = M->getOrInsertFunction("memchr", AttrListPtr::get(AWI),
Eric Christopherb6174e32010-03-05 22:25:30 +0000235 B.getInt8PtrTy(),
236 B.getInt8PtrTy(),
237 B.getInt32Ty(),
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000238 TD->getIntPtrType(Context),
Eric Christopherb6174e32010-03-05 22:25:30 +0000239 NULL);
240 CallInst *CI = B.CreateCall3(MemChr, CastToCStr(Ptr, B), Val, Len, "memchr");
241
242 if (const Function *F = dyn_cast<Function>(MemChr->stripPointerCasts()))
243 CI->setCallingConv(F->getCallingConv());
244
245 return CI;
246}
247
248/// EmitMemCmp - Emit a call to the memcmp function.
249Value *llvm::EmitMemCmp(Value *Ptr1, Value *Ptr2,
Micah Villmow3574eca2012-10-08 16:38:25 +0000250 Value *Len, IRBuilder<> &B, const DataLayout *TD,
Nuno Lopes51004df2012-07-25 16:46:31 +0000251 const TargetLibraryInfo *TLI) {
252 if (!TLI->has(LibFunc::memcmp))
253 return 0;
254
Eric Christopherb6174e32010-03-05 22:25:30 +0000255 Module *M = B.GetInsertBlock()->getParent()->getParent();
256 AttributeWithIndex AWI[3];
Bill Wendlingcb3de0b2012-10-15 04:46:55 +0000257 AWI[0] = AttributeWithIndex::get(M->getContext(), 1, Attributes::NoCapture);
258 AWI[1] = AttributeWithIndex::get(M->getContext(), 2, Attributes::NoCapture);
Bill Wendling11d00422012-10-10 06:13:42 +0000259 Attributes::AttrVal AVs[2] = { Attributes::ReadOnly, Attributes::NoUnwind };
Bill Wendling07aae2e2012-10-15 07:29:08 +0000260 AWI[2] = AttributeWithIndex::get(M->getContext(), AttrListPtr::FunctionIndex,
Bill Wendlingcb3de0b2012-10-15 04:46:55 +0000261 ArrayRef<Attributes::AttrVal>(AVs, 2));
Eric Christopherb6174e32010-03-05 22:25:30 +0000262
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000263 LLVMContext &Context = B.GetInsertBlock()->getContext();
Chris Lattnerd509d0b2012-05-28 01:47:44 +0000264 Value *MemCmp = M->getOrInsertFunction("memcmp", AttrListPtr::get(AWI),
Eric Christopherb6174e32010-03-05 22:25:30 +0000265 B.getInt32Ty(),
266 B.getInt8PtrTy(),
267 B.getInt8PtrTy(),
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000268 TD->getIntPtrType(Context), NULL);
Eric Christopherb6174e32010-03-05 22:25:30 +0000269 CallInst *CI = B.CreateCall3(MemCmp, CastToCStr(Ptr1, B), CastToCStr(Ptr2, B),
270 Len, "memcmp");
271
272 if (const Function *F = dyn_cast<Function>(MemCmp->stripPointerCasts()))
273 CI->setCallingConv(F->getCallingConv());
274
275 return CI;
276}
277
Eric Christopherb6174e32010-03-05 22:25:30 +0000278/// EmitUnaryFloatFnCall - Emit a call to the unary function named 'Name' (e.g.
279/// 'floor'). This function is known to take a single of type matching 'Op' and
280/// returns one value with the same type. If 'Op' is a long double, 'l' is
281/// added as the suffix of name, if 'Op' is a float, we add a 'f' suffix.
Benjamin Kramerb5ccb252011-11-15 19:12:09 +0000282Value *llvm::EmitUnaryFloatFnCall(Value *Op, StringRef Name, IRBuilder<> &B,
283 const AttrListPtr &Attrs) {
284 SmallString<20> NameBuffer;
Eric Christopherb6174e32010-03-05 22:25:30 +0000285 if (!Op->getType()->isDoubleTy()) {
286 // If we need to add a suffix, copy into NameBuffer.
Benjamin Kramerb5ccb252011-11-15 19:12:09 +0000287 NameBuffer += Name;
Eric Christopherb6174e32010-03-05 22:25:30 +0000288 if (Op->getType()->isFloatTy())
Benjamin Kramerb5ccb252011-11-15 19:12:09 +0000289 NameBuffer += 'f'; // floorf
Eric Christopherb6174e32010-03-05 22:25:30 +0000290 else
Benjamin Kramerb5ccb252011-11-15 19:12:09 +0000291 NameBuffer += 'l'; // floorl
Eric Christopherb6174e32010-03-05 22:25:30 +0000292 Name = NameBuffer;
293 }
294
295 Module *M = B.GetInsertBlock()->getParent()->getParent();
296 Value *Callee = M->getOrInsertFunction(Name, Op->getType(),
297 Op->getType(), NULL);
298 CallInst *CI = B.CreateCall(Callee, Op, Name);
299 CI->setAttributes(Attrs);
300 if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
301 CI->setCallingConv(F->getCallingConv());
302
303 return CI;
304}
305
306/// EmitPutChar - Emit a call to the putchar function. This assumes that Char
307/// is an integer.
Micah Villmow3574eca2012-10-08 16:38:25 +0000308Value *llvm::EmitPutChar(Value *Char, IRBuilder<> &B, const DataLayout *TD,
Nuno Lopes51004df2012-07-25 16:46:31 +0000309 const TargetLibraryInfo *TLI) {
310 if (!TLI->has(LibFunc::putchar))
311 return 0;
312
Eric Christopherb6174e32010-03-05 22:25:30 +0000313 Module *M = B.GetInsertBlock()->getParent()->getParent();
314 Value *PutChar = M->getOrInsertFunction("putchar", B.getInt32Ty(),
315 B.getInt32Ty(), NULL);
316 CallInst *CI = B.CreateCall(PutChar,
317 B.CreateIntCast(Char,
318 B.getInt32Ty(),
319 /*isSigned*/true,
320 "chari"),
321 "putchar");
322
323 if (const Function *F = dyn_cast<Function>(PutChar->stripPointerCasts()))
324 CI->setCallingConv(F->getCallingConv());
325 return CI;
326}
327
328/// EmitPutS - Emit a call to the puts function. This assumes that Str is
329/// some pointer.
Micah Villmow3574eca2012-10-08 16:38:25 +0000330Value *llvm::EmitPutS(Value *Str, IRBuilder<> &B, const DataLayout *TD,
Nuno Lopes51004df2012-07-25 16:46:31 +0000331 const TargetLibraryInfo *TLI) {
332 if (!TLI->has(LibFunc::puts))
333 return 0;
334
Eric Christopherb6174e32010-03-05 22:25:30 +0000335 Module *M = B.GetInsertBlock()->getParent()->getParent();
336 AttributeWithIndex AWI[2];
Bill Wendlingcb3de0b2012-10-15 04:46:55 +0000337 AWI[0] = AttributeWithIndex::get(M->getContext(), 1, Attributes::NoCapture);
Bill Wendling07aae2e2012-10-15 07:29:08 +0000338 AWI[1] = AttributeWithIndex::get(M->getContext(), AttrListPtr::FunctionIndex,
339 Attributes::NoUnwind);
Eric Christopherb6174e32010-03-05 22:25:30 +0000340
Chris Lattnerd509d0b2012-05-28 01:47:44 +0000341 Value *PutS = M->getOrInsertFunction("puts", AttrListPtr::get(AWI),
Eric Christopherb6174e32010-03-05 22:25:30 +0000342 B.getInt32Ty(),
343 B.getInt8PtrTy(),
344 NULL);
345 CallInst *CI = B.CreateCall(PutS, CastToCStr(Str, B), "puts");
346 if (const Function *F = dyn_cast<Function>(PutS->stripPointerCasts()))
347 CI->setCallingConv(F->getCallingConv());
Nuno Lopes51004df2012-07-25 16:46:31 +0000348 return CI;
Eric Christopherb6174e32010-03-05 22:25:30 +0000349}
350
351/// EmitFPutC - Emit a call to the fputc function. This assumes that Char is
352/// an integer and File is a pointer to FILE.
Nuno Lopes51004df2012-07-25 16:46:31 +0000353Value *llvm::EmitFPutC(Value *Char, Value *File, IRBuilder<> &B,
Micah Villmow3574eca2012-10-08 16:38:25 +0000354 const DataLayout *TD, const TargetLibraryInfo *TLI) {
Nuno Lopes51004df2012-07-25 16:46:31 +0000355 if (!TLI->has(LibFunc::fputc))
356 return 0;
357
Eric Christopherb6174e32010-03-05 22:25:30 +0000358 Module *M = B.GetInsertBlock()->getParent()->getParent();
359 AttributeWithIndex AWI[2];
Bill Wendlingcb3de0b2012-10-15 04:46:55 +0000360 AWI[0] = AttributeWithIndex::get(M->getContext(), 2, Attributes::NoCapture);
Bill Wendling07aae2e2012-10-15 07:29:08 +0000361 AWI[1] = AttributeWithIndex::get(M->getContext(), AttrListPtr::FunctionIndex,
362 Attributes::NoUnwind);
Eric Christopherb6174e32010-03-05 22:25:30 +0000363 Constant *F;
364 if (File->getType()->isPointerTy())
Chris Lattnerd509d0b2012-05-28 01:47:44 +0000365 F = M->getOrInsertFunction("fputc", AttrListPtr::get(AWI),
Eric Christopherb6174e32010-03-05 22:25:30 +0000366 B.getInt32Ty(),
367 B.getInt32Ty(), File->getType(),
368 NULL);
369 else
370 F = M->getOrInsertFunction("fputc",
371 B.getInt32Ty(),
372 B.getInt32Ty(),
373 File->getType(), NULL);
374 Char = B.CreateIntCast(Char, B.getInt32Ty(), /*isSigned*/true,
375 "chari");
376 CallInst *CI = B.CreateCall2(F, Char, File, "fputc");
377
378 if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
379 CI->setCallingConv(Fn->getCallingConv());
Nuno Lopes51004df2012-07-25 16:46:31 +0000380 return CI;
Eric Christopherb6174e32010-03-05 22:25:30 +0000381}
382
383/// EmitFPutS - Emit a call to the puts function. Str is required to be a
384/// pointer and File is a pointer to FILE.
Nuno Lopes51004df2012-07-25 16:46:31 +0000385Value *llvm::EmitFPutS(Value *Str, Value *File, IRBuilder<> &B,
Micah Villmow3574eca2012-10-08 16:38:25 +0000386 const DataLayout *TD, const TargetLibraryInfo *TLI) {
Nuno Lopes51004df2012-07-25 16:46:31 +0000387 if (!TLI->has(LibFunc::fputs))
388 return 0;
389
Eric Christopherb6174e32010-03-05 22:25:30 +0000390 Module *M = B.GetInsertBlock()->getParent()->getParent();
391 AttributeWithIndex AWI[3];
Bill Wendlingcb3de0b2012-10-15 04:46:55 +0000392 AWI[0] = AttributeWithIndex::get(M->getContext(), 1, Attributes::NoCapture);
393 AWI[1] = AttributeWithIndex::get(M->getContext(), 2, Attributes::NoCapture);
Bill Wendling07aae2e2012-10-15 07:29:08 +0000394 AWI[2] = AttributeWithIndex::get(M->getContext(), AttrListPtr::FunctionIndex,
395 Attributes::NoUnwind);
Eli Friedman9d434db2011-11-17 01:27:36 +0000396 StringRef FPutsName = TLI->getName(LibFunc::fputs);
Eric Christopherb6174e32010-03-05 22:25:30 +0000397 Constant *F;
398 if (File->getType()->isPointerTy())
Chris Lattnerd509d0b2012-05-28 01:47:44 +0000399 F = M->getOrInsertFunction(FPutsName, AttrListPtr::get(AWI),
Eric Christopherb6174e32010-03-05 22:25:30 +0000400 B.getInt32Ty(),
401 B.getInt8PtrTy(),
402 File->getType(), NULL);
403 else
Eli Friedman9d434db2011-11-17 01:27:36 +0000404 F = M->getOrInsertFunction(FPutsName, B.getInt32Ty(),
Eric Christopherb6174e32010-03-05 22:25:30 +0000405 B.getInt8PtrTy(),
406 File->getType(), NULL);
407 CallInst *CI = B.CreateCall2(F, CastToCStr(Str, B), File, "fputs");
408
409 if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
410 CI->setCallingConv(Fn->getCallingConv());
Nuno Lopes51004df2012-07-25 16:46:31 +0000411 return CI;
Eric Christopherb6174e32010-03-05 22:25:30 +0000412}
413
414/// EmitFWrite - Emit a call to the fwrite function. This assumes that Ptr is
415/// a pointer, Size is an 'intptr_t', and File is a pointer to FILE.
Nuno Lopes51004df2012-07-25 16:46:31 +0000416Value *llvm::EmitFWrite(Value *Ptr, Value *Size, Value *File,
Micah Villmow3574eca2012-10-08 16:38:25 +0000417 IRBuilder<> &B, const DataLayout *TD,
Nuno Lopes51004df2012-07-25 16:46:31 +0000418 const TargetLibraryInfo *TLI) {
419 if (!TLI->has(LibFunc::fwrite))
420 return 0;
421
Eric Christopherb6174e32010-03-05 22:25:30 +0000422 Module *M = B.GetInsertBlock()->getParent()->getParent();
423 AttributeWithIndex AWI[3];
Bill Wendlingcb3de0b2012-10-15 04:46:55 +0000424 AWI[0] = AttributeWithIndex::get(M->getContext(), 1, Attributes::NoCapture);
425 AWI[1] = AttributeWithIndex::get(M->getContext(), 4, Attributes::NoCapture);
Bill Wendling07aae2e2012-10-15 07:29:08 +0000426 AWI[2] = AttributeWithIndex::get(M->getContext(), AttrListPtr::FunctionIndex,
427 Attributes::NoUnwind);
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000428 LLVMContext &Context = B.GetInsertBlock()->getContext();
Eli Friedman9d434db2011-11-17 01:27:36 +0000429 StringRef FWriteName = TLI->getName(LibFunc::fwrite);
Eric Christopherb6174e32010-03-05 22:25:30 +0000430 Constant *F;
431 if (File->getType()->isPointerTy())
Chris Lattnerd509d0b2012-05-28 01:47:44 +0000432 F = M->getOrInsertFunction(FWriteName, AttrListPtr::get(AWI),
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000433 TD->getIntPtrType(Context),
Eric Christopherb6174e32010-03-05 22:25:30 +0000434 B.getInt8PtrTy(),
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000435 TD->getIntPtrType(Context),
436 TD->getIntPtrType(Context),
Eric Christopherb6174e32010-03-05 22:25:30 +0000437 File->getType(), NULL);
438 else
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000439 F = M->getOrInsertFunction(FWriteName, TD->getIntPtrType(Context),
Eric Christopherb6174e32010-03-05 22:25:30 +0000440 B.getInt8PtrTy(),
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000441 TD->getIntPtrType(Context),
442 TD->getIntPtrType(Context),
Eric Christopherb6174e32010-03-05 22:25:30 +0000443 File->getType(), NULL);
444 CallInst *CI = B.CreateCall4(F, CastToCStr(Ptr, B), Size,
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000445 ConstantInt::get(TD->getIntPtrType(Context), 1), File);
Eric Christopherb6174e32010-03-05 22:25:30 +0000446
447 if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
448 CI->setCallingConv(Fn->getCallingConv());
Nuno Lopes51004df2012-07-25 16:46:31 +0000449 return CI;
Eric Christopherb6174e32010-03-05 22:25:30 +0000450}
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000451
Benjamin Kramera30b1812010-03-12 20:41:29 +0000452SimplifyFortifiedLibCalls::~SimplifyFortifiedLibCalls() { }
453
Micah Villmow3574eca2012-10-08 16:38:25 +0000454bool SimplifyFortifiedLibCalls::fold(CallInst *CI, const DataLayout *TD,
Nuno Lopes51004df2012-07-25 16:46:31 +0000455 const TargetLibraryInfo *TLI) {
Micah Villmow3574eca2012-10-08 16:38:25 +0000456 // We really need DataLayout for later.
Eric Christopher67a71b52010-04-12 04:48:00 +0000457 if (!TD) return false;
458
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000459 this->CI = CI;
Eric Christopher67a71b52010-04-12 04:48:00 +0000460 Function *Callee = CI->getCalledFunction();
461 StringRef Name = Callee->getName();
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000462 FunctionType *FT = Callee->getFunctionType();
Eric Christopher67a71b52010-04-12 04:48:00 +0000463 LLVMContext &Context = CI->getParent()->getContext();
Eli Friedman1a24bf02011-05-27 01:00:36 +0000464 IRBuilder<> B(CI);
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000465
466 if (Name == "__memcpy_chk") {
Eric Christopher67a71b52010-04-12 04:48:00 +0000467 // Check if this has the right signature.
468 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
469 !FT->getParamType(0)->isPointerTy() ||
470 !FT->getParamType(1)->isPointerTy() ||
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000471 FT->getParamType(2) != TD->getIntPtrType(Context) ||
472 FT->getParamType(3) != TD->getIntPtrType(Context))
Eric Christopher67a71b52010-04-12 04:48:00 +0000473 return false;
Gabor Greiff148cb62010-06-28 12:29:20 +0000474
Gabor Greifa6aac4c2010-07-16 09:38:02 +0000475 if (isFoldable(3, 2, false)) {
Benjamin Kramerdef548f2010-12-27 00:25:32 +0000476 B.CreateMemCpy(CI->getArgOperand(0), CI->getArgOperand(1),
477 CI->getArgOperand(2), 1);
Gabor Greiff148cb62010-06-28 12:29:20 +0000478 replaceCall(CI->getArgOperand(0));
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000479 return true;
480 }
481 return false;
482 }
483
484 // Should be similar to memcpy.
485 if (Name == "__mempcpy_chk") {
486 return false;
487 }
488
489 if (Name == "__memmove_chk") {
Eric Christopher67a71b52010-04-12 04:48:00 +0000490 // Check if this has the right signature.
491 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
492 !FT->getParamType(0)->isPointerTy() ||
493 !FT->getParamType(1)->isPointerTy() ||
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000494 FT->getParamType(2) != TD->getIntPtrType(Context) ||
495 FT->getParamType(3) != TD->getIntPtrType(Context))
Eric Christopher67a71b52010-04-12 04:48:00 +0000496 return false;
Gabor Greiff148cb62010-06-28 12:29:20 +0000497
Gabor Greifa6aac4c2010-07-16 09:38:02 +0000498 if (isFoldable(3, 2, false)) {
Benjamin Kramerdef548f2010-12-27 00:25:32 +0000499 B.CreateMemMove(CI->getArgOperand(0), CI->getArgOperand(1),
500 CI->getArgOperand(2), 1);
Gabor Greiff148cb62010-06-28 12:29:20 +0000501 replaceCall(CI->getArgOperand(0));
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000502 return true;
503 }
504 return false;
505 }
506
507 if (Name == "__memset_chk") {
Eric Christopher67a71b52010-04-12 04:48:00 +0000508 // Check if this has the right signature.
509 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
510 !FT->getParamType(0)->isPointerTy() ||
511 !FT->getParamType(1)->isIntegerTy() ||
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000512 FT->getParamType(2) != TD->getIntPtrType(Context) ||
513 FT->getParamType(3) != TD->getIntPtrType(Context))
Eric Christopher67a71b52010-04-12 04:48:00 +0000514 return false;
Gabor Greiff148cb62010-06-28 12:29:20 +0000515
Gabor Greifa6aac4c2010-07-16 09:38:02 +0000516 if (isFoldable(3, 2, false)) {
Gabor Greiff148cb62010-06-28 12:29:20 +0000517 Value *Val = B.CreateIntCast(CI->getArgOperand(1), B.getInt8Ty(),
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000518 false);
Benjamin Kramerdef548f2010-12-27 00:25:32 +0000519 B.CreateMemSet(CI->getArgOperand(0), Val, CI->getArgOperand(2), 1);
Gabor Greiff1ba6512010-06-25 07:58:41 +0000520 replaceCall(CI->getArgOperand(0));
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000521 return true;
522 }
523 return false;
524 }
525
526 if (Name == "__strcpy_chk" || Name == "__stpcpy_chk") {
Eric Christopher67a71b52010-04-12 04:48:00 +0000527 // Check if this has the right signature.
528 if (FT->getNumParams() != 3 ||
529 FT->getReturnType() != FT->getParamType(0) ||
530 FT->getParamType(0) != FT->getParamType(1) ||
531 FT->getParamType(0) != Type::getInt8PtrTy(Context) ||
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000532 FT->getParamType(2) != TD->getIntPtrType(Context))
Eric Christopher67a71b52010-04-12 04:48:00 +0000533 return 0;
534
535
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000536 // If a) we don't have any length information, or b) we know this will
537 // fit then just lower to a plain st[rp]cpy. Otherwise we'll keep our
538 // st[rp]cpy_chk call which may fail at runtime if the size is too long.
539 // TODO: It might be nice to get a maximum length out of the possible
540 // string lengths for varying.
Gabor Greifa6aac4c2010-07-16 09:38:02 +0000541 if (isFoldable(2, 1, true)) {
Gabor Greiff148cb62010-06-28 12:29:20 +0000542 Value *Ret = EmitStrCpy(CI->getArgOperand(0), CI->getArgOperand(1), B, TD,
Nuno Lopes51004df2012-07-25 16:46:31 +0000543 TLI, Name.substr(2, 6));
Nuno Lopes28ad8632012-08-01 16:58:51 +0000544 if (!Ret)
Nuno Lopes918067d2012-08-01 17:13:28 +0000545 return false;
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000546 replaceCall(Ret);
547 return true;
548 }
549 return false;
550 }
551
Eric Christopher71988f12010-04-07 23:00:07 +0000552 if (Name == "__strncpy_chk" || Name == "__stpncpy_chk") {
Eric Christopher67a71b52010-04-12 04:48:00 +0000553 // Check if this has the right signature.
554 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
555 FT->getParamType(0) != FT->getParamType(1) ||
556 FT->getParamType(0) != Type::getInt8PtrTy(Context) ||
557 !FT->getParamType(2)->isIntegerTy() ||
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000558 FT->getParamType(3) != TD->getIntPtrType(Context))
Eric Christopher2a7cb9d2010-04-13 16:41:29 +0000559 return false;
Gabor Greiff148cb62010-06-28 12:29:20 +0000560
Gabor Greifa6aac4c2010-07-16 09:38:02 +0000561 if (isFoldable(3, 2, false)) {
Gabor Greiff148cb62010-06-28 12:29:20 +0000562 Value *Ret = EmitStrNCpy(CI->getArgOperand(0), CI->getArgOperand(1),
Nuno Lopes51004df2012-07-25 16:46:31 +0000563 CI->getArgOperand(2), B, TD, TLI,
564 Name.substr(2, 7));
Nuno Lopes28ad8632012-08-01 16:58:51 +0000565 if (!Ret)
Nuno Lopes918067d2012-08-01 17:13:28 +0000566 return false;
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000567 replaceCall(Ret);
568 return true;
569 }
570 return false;
571 }
572
573 if (Name == "__strcat_chk") {
574 return false;
575 }
576
577 if (Name == "__strncat_chk") {
578 return false;
579 }
580
581 return false;
582}