xref: /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h (revision 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583)
1 //===- BuildLibCalls.h - Utility builder for libcalls -----------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file exposes an interface to build some C language libcalls for
10 // optimization passes that need to call the various functions.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_TRANSFORMS_UTILS_BUILDLIBCALLS_H
15 #define LLVM_TRANSFORMS_UTILS_BUILDLIBCALLS_H
16 
17 #include "llvm/Analysis/TargetLibraryInfo.h"
18 
19 namespace llvm {
20   class Value;
21   class DataLayout;
22   class IRBuilderBase;
23 
24   /// Analyze the name and prototype of the given function and set any
25   /// applicable attributes. Note that this merely helps optimizations on an
26   /// already existing function but does not consider mandatory attributes.
27   ///
28   /// If the library function is unavailable, this doesn't modify it.
29   ///
30   /// Returns true if any attributes were set and false otherwise.
31   bool inferNonMandatoryLibFuncAttrs(Module *M, StringRef Name,
32                                      const TargetLibraryInfo &TLI);
33   bool inferNonMandatoryLibFuncAttrs(Function &F, const TargetLibraryInfo &TLI);
34 
35   /// Calls getOrInsertFunction() and then makes sure to add mandatory
36   /// argument attributes.
37   FunctionCallee getOrInsertLibFunc(Module *M, const TargetLibraryInfo &TLI,
38                                     LibFunc TheLibFunc, FunctionType *T,
39                                     AttributeList AttributeList);
40   FunctionCallee getOrInsertLibFunc(Module *M, const TargetLibraryInfo &TLI,
41                                     LibFunc TheLibFunc, FunctionType *T);
42   template <typename... ArgsTy>
getOrInsertLibFunc(Module * M,const TargetLibraryInfo & TLI,LibFunc TheLibFunc,AttributeList AttributeList,Type * RetTy,ArgsTy...Args)43   FunctionCallee getOrInsertLibFunc(Module *M, const TargetLibraryInfo &TLI,
44                                LibFunc TheLibFunc, AttributeList AttributeList,
45                                Type *RetTy, ArgsTy... Args) {
46     SmallVector<Type*, sizeof...(ArgsTy)> ArgTys{Args...};
47     return getOrInsertLibFunc(M, TLI, TheLibFunc,
48                               FunctionType::get(RetTy, ArgTys, false),
49                               AttributeList);
50   }
51   /// Same as above, but without the attributes.
52   template <typename... ArgsTy>
getOrInsertLibFunc(Module * M,const TargetLibraryInfo & TLI,LibFunc TheLibFunc,Type * RetTy,ArgsTy...Args)53   FunctionCallee getOrInsertLibFunc(Module *M, const TargetLibraryInfo &TLI,
54                              LibFunc TheLibFunc, Type *RetTy, ArgsTy... Args) {
55     return getOrInsertLibFunc(M, TLI, TheLibFunc, AttributeList{}, RetTy,
56                               Args...);
57   }
58   // Avoid an incorrect ordering that'd otherwise compile incorrectly.
59   template <typename... ArgsTy>
60   FunctionCallee
61   getOrInsertLibFunc(Module *M, const TargetLibraryInfo &TLI,
62                      LibFunc TheLibFunc, AttributeList AttributeList,
63                      FunctionType *Invalid, ArgsTy... Args) = delete;
64 
65   // Handle -mregparm for the given function.
66   // Note that this function is a rough approximation that only works for simple
67   // function signatures; it does not apply other relevant attributes for
68   // function signatures, including sign/zero-extension for arguments and return
69   // values.
70   void markRegisterParameterAttributes(Function *F);
71 
72   /// Check whether the library function is available on target and also that
73   /// it in the current Module is a Function with the right type.
74   bool isLibFuncEmittable(const Module *M, const TargetLibraryInfo *TLI,
75                           LibFunc TheLibFunc);
76   bool isLibFuncEmittable(const Module *M, const TargetLibraryInfo *TLI,
77                           StringRef Name);
78 
79   /// Check whether the overloaded floating point function
80   /// corresponding to \a Ty is available.
81   bool hasFloatFn(const Module *M, const TargetLibraryInfo *TLI, Type *Ty,
82                   LibFunc DoubleFn, LibFunc FloatFn, LibFunc LongDoubleFn);
83 
84   /// Get the name of the overloaded floating point function
85   /// corresponding to \a Ty. Return the LibFunc in \a TheLibFunc.
86   StringRef getFloatFn(const Module *M, const TargetLibraryInfo *TLI, Type *Ty,
87                        LibFunc DoubleFn, LibFunc FloatFn, LibFunc LongDoubleFn,
88                        LibFunc &TheLibFunc);
89 
90   /// Emit a call to the strlen function to the builder, for the specified
91   /// pointer. Ptr is required to be some pointer type, and the return value has
92   /// 'size_t' type.
93   Value *emitStrLen(Value *Ptr, IRBuilderBase &B, const DataLayout &DL,
94                     const TargetLibraryInfo *TLI);
95 
96   /// Emit a call to the strdup function to the builder, for the specified
97   /// pointer. Ptr is required to be some pointer type, and the return value has
98   /// 'i8*' type.
99   Value *emitStrDup(Value *Ptr, IRBuilderBase &B, const TargetLibraryInfo *TLI);
100 
101   /// Emit a call to the strchr function to the builder, for the specified
102   /// pointer and character. Ptr is required to be some pointer type, and the
103   /// return value has 'i8*' type.
104   Value *emitStrChr(Value *Ptr, char C, IRBuilderBase &B,
105                     const TargetLibraryInfo *TLI);
106 
107   /// Emit a call to the strncmp function to the builder.
108   Value *emitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilderBase &B,
109                      const DataLayout &DL, const TargetLibraryInfo *TLI);
110 
111   /// Emit a call to the strcpy function to the builder, for the specified
112   /// pointer arguments.
113   Value *emitStrCpy(Value *Dst, Value *Src, IRBuilderBase &B,
114                     const TargetLibraryInfo *TLI);
115 
116   /// Emit a call to the stpcpy function to the builder, for the specified
117   /// pointer arguments.
118   Value *emitStpCpy(Value *Dst, Value *Src, IRBuilderBase &B,
119                     const TargetLibraryInfo *TLI);
120 
121   /// Emit a call to the strncpy function to the builder, for the specified
122   /// pointer arguments and length.
123   Value *emitStrNCpy(Value *Dst, Value *Src, Value *Len, IRBuilderBase &B,
124                      const TargetLibraryInfo *TLI);
125 
126   /// Emit a call to the stpncpy function to the builder, for the specified
127   /// pointer arguments and length.
128   Value *emitStpNCpy(Value *Dst, Value *Src, Value *Len, IRBuilderBase &B,
129                      const TargetLibraryInfo *TLI);
130 
131   /// Emit a call to the __memcpy_chk function to the builder. This expects that
132   /// the Len and ObjSize have type 'size_t' and Dst/Src are pointers.
133   Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
134                        IRBuilderBase &B, const DataLayout &DL,
135                        const TargetLibraryInfo *TLI);
136 
137   /// Emit a call to the mempcpy function.
138   Value *emitMemPCpy(Value *Dst, Value *Src, Value *Len, IRBuilderBase &B,
139                      const DataLayout &DL, const TargetLibraryInfo *TLI);
140 
141   /// Emit a call to the memchr function. This assumes that Ptr is a pointer,
142   /// Val is an 'int' value, and Len is an 'size_t' value.
143   Value *emitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilderBase &B,
144                     const DataLayout &DL, const TargetLibraryInfo *TLI);
145 
146   /// Emit a call to the memrchr function, analogously to emitMemChr.
147   Value *emitMemRChr(Value *Ptr, Value *Val, Value *Len, IRBuilderBase &B,
148                     const DataLayout &DL, const TargetLibraryInfo *TLI);
149 
150   /// Emit a call to the memcmp function.
151   Value *emitMemCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilderBase &B,
152                     const DataLayout &DL, const TargetLibraryInfo *TLI);
153 
154   /// Emit a call to the bcmp function.
155   Value *emitBCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilderBase &B,
156                   const DataLayout &DL, const TargetLibraryInfo *TLI);
157 
158   /// Emit a call to the memccpy function.
159   Value *emitMemCCpy(Value *Ptr1, Value *Ptr2, Value *Val, Value *Len,
160                      IRBuilderBase &B, const TargetLibraryInfo *TLI);
161 
162   /// Emit a call to the snprintf function.
163   Value *emitSNPrintf(Value *Dest, Value *Size, Value *Fmt,
164                       ArrayRef<Value *> Args, IRBuilderBase &B,
165                       const TargetLibraryInfo *TLI);
166 
167   /// Emit a call to the sprintf function.
168   Value *emitSPrintf(Value *Dest, Value *Fmt, ArrayRef<Value *> VariadicArgs,
169                      IRBuilderBase &B, const TargetLibraryInfo *TLI);
170 
171   /// Emit a call to the strcat function.
172   Value *emitStrCat(Value *Dest, Value *Src, IRBuilderBase &B,
173                     const TargetLibraryInfo *TLI);
174 
175   /// Emit a call to the strlcpy function.
176   Value *emitStrLCpy(Value *Dest, Value *Src, Value *Size, IRBuilderBase &B,
177                      const TargetLibraryInfo *TLI);
178 
179   /// Emit a call to the strlcat function.
180   Value *emitStrLCat(Value *Dest, Value *Src, Value *Size, IRBuilderBase &B,
181                      const TargetLibraryInfo *TLI);
182 
183   /// Emit a call to the strncat function.
184   Value *emitStrNCat(Value *Dest, Value *Src, Value *Size, IRBuilderBase &B,
185                      const TargetLibraryInfo *TLI);
186 
187   /// Emit a call to the vsnprintf function.
188   Value *emitVSNPrintf(Value *Dest, Value *Size, Value *Fmt, Value *VAList,
189                        IRBuilderBase &B, const TargetLibraryInfo *TLI);
190 
191   /// Emit a call to the vsprintf function.
192   Value *emitVSPrintf(Value *Dest, Value *Fmt, Value *VAList, IRBuilderBase &B,
193                       const TargetLibraryInfo *TLI);
194 
195   /// Emit a call to the unary function named 'Name' (e.g.  'floor'). This
196   /// function is known to take a single of type matching 'Op' and returns one
197   /// value with the same type. If 'Op' is a long double, 'l' is added as the
198   /// suffix of name, if 'Op' is a float, we add a 'f' suffix.
199   Value *emitUnaryFloatFnCall(Value *Op, const TargetLibraryInfo *TLI,
200                               StringRef Name, IRBuilderBase &B,
201                               const AttributeList &Attrs);
202 
203   /// Emit a call to the unary function DoubleFn, FloatFn or LongDoubleFn,
204   /// depending of the type of Op.
205   Value *emitUnaryFloatFnCall(Value *Op, const TargetLibraryInfo *TLI,
206                               LibFunc DoubleFn, LibFunc FloatFn,
207                               LibFunc LongDoubleFn, IRBuilderBase &B,
208                               const AttributeList &Attrs);
209 
210   /// Emit a call to the binary function named 'Name' (e.g. 'fmin'). This
211   /// function is known to take type matching 'Op1' and 'Op2' and return one
212   /// value with the same type. If 'Op1/Op2' are long double, 'l' is added as
213   /// the suffix of name, if 'Op1/Op2' are float, we add a 'f' suffix.
214   Value *emitBinaryFloatFnCall(Value *Op1, Value *Op2,
215                                const TargetLibraryInfo *TLI,
216                                StringRef Name, IRBuilderBase &B,
217                                const AttributeList &Attrs);
218 
219   /// Emit a call to the binary function DoubleFn, FloatFn or LongDoubleFn,
220   /// depending of the type of Op1.
221   Value *emitBinaryFloatFnCall(Value *Op1, Value *Op2,
222                                const TargetLibraryInfo *TLI, LibFunc DoubleFn,
223                                LibFunc FloatFn, LibFunc LongDoubleFn,
224                                IRBuilderBase &B, const AttributeList &Attrs);
225 
226   /// Emit a call to the putchar function. This assumes that Char is an 'int'.
227   Value *emitPutChar(Value *Char, IRBuilderBase &B,
228                      const TargetLibraryInfo *TLI);
229 
230   /// Emit a call to the puts function. This assumes that Str is some pointer.
231   Value *emitPutS(Value *Str, IRBuilderBase &B, const TargetLibraryInfo *TLI);
232 
233   /// Emit a call to the fputc function. This assumes that Char is an 'int', and
234   /// File is a pointer to FILE.
235   Value *emitFPutC(Value *Char, Value *File, IRBuilderBase &B,
236                    const TargetLibraryInfo *TLI);
237 
238   /// Emit a call to the fputs function. Str is required to be a pointer and
239   /// File is a pointer to FILE.
240   Value *emitFPutS(Value *Str, Value *File, IRBuilderBase &B,
241                    const TargetLibraryInfo *TLI);
242 
243   /// Emit a call to the fwrite function. This assumes that Ptr is a pointer,
244   /// Size is an 'size_t', and File is a pointer to FILE.
245   Value *emitFWrite(Value *Ptr, Value *Size, Value *File, IRBuilderBase &B,
246                     const DataLayout &DL, const TargetLibraryInfo *TLI);
247 
248   /// Emit a call to the malloc function.
249   Value *emitMalloc(Value *Num, IRBuilderBase &B, const DataLayout &DL,
250                     const TargetLibraryInfo *TLI);
251 
252   /// Emit a call to the calloc function.
253   Value *emitCalloc(Value *Num, Value *Size, IRBuilderBase &B,
254                     const TargetLibraryInfo &TLI);
255 
256   /// Emit a call to the hot/cold operator new function.
257   Value *emitHotColdNew(Value *Num, IRBuilderBase &B,
258                         const TargetLibraryInfo *TLI, LibFunc NewFunc,
259                         uint8_t HotCold);
260   Value *emitHotColdNewNoThrow(Value *Num, Value *NoThrow, IRBuilderBase &B,
261                                const TargetLibraryInfo *TLI, LibFunc NewFunc,
262                                uint8_t HotCold);
263   Value *emitHotColdNewAligned(Value *Num, Value *Align, IRBuilderBase &B,
264                                const TargetLibraryInfo *TLI, LibFunc NewFunc,
265                                uint8_t HotCold);
266   Value *emitHotColdNewAlignedNoThrow(Value *Num, Value *Align, Value *NoThrow,
267                                       IRBuilderBase &B,
268                                       const TargetLibraryInfo *TLI,
269                                       LibFunc NewFunc, uint8_t HotCold);
270 }
271 
272 #endif
273