Move SimplifyLibCalls's LibCall builders to a separate file so they
[oota-llvm.git] / include / llvm / Transforms / Utils / BuildLibCalls.h
1 //===- BuildLibCalls.h - Utility builder for libcalls -----------*- C++ -*-===//
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 exposes an interface to build some C language libcalls for
11 // optimization passes that need to call the various functions.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef TRANSFORMS_UTILS_BUILDLIBCALLS_H
16 #define TRANSFORMS_UTILS_BUILDLIBCALLS_H
17
18 #include "llvm/Support/IRBuilder.h"
19
20 namespace llvm {
21   class Value;
22   class TargetData;
23   
24   /// CastToCStr - Return V if it is an i8*, otherwise cast it to i8*.
25   Value *CastToCStr(Value *V, IRBuilder<> &B);
26
27   /// EmitStrLen - Emit a call to the strlen function to the builder, for the
28   /// specified pointer.  Ptr is required to be some pointer type, and the
29   /// return value has 'intptr_t' type.
30   Value *EmitStrLen(Value *Ptr, IRBuilder<> &B, const TargetData *TD);
31
32   /// EmitStrChr - Emit a call to the strchr function to the builder, for the
33   /// specified pointer and character.  Ptr is required to be some pointer type,
34   /// and the return value has 'i8*' type.
35   Value *EmitStrChr(Value *Ptr, char C, IRBuilder<> &B, const TargetData *TD);
36
37   /// EmitStrCpy - Emit a call to the strcpy function to the builder, for the
38   /// specified pointer arguments.
39   Value *EmitStrCpy(Value *Dst, Value *Src, IRBuilder<> &B,
40                     const TargetData *TD);
41   
42   /// EmitMemCpy - Emit a call to the memcpy function to the builder.  This
43   /// always expects that the size has type 'intptr_t' and Dst/Src are pointers.
44   Value *EmitMemCpy(Value *Dst, Value *Src, Value *Len,
45                     unsigned Align, IRBuilder<> &B, const TargetData *TD);
46
47   /// EmitMemMove - Emit a call to the memmove function to the builder.  This
48   /// always expects that the size has type 'intptr_t' and Dst/Src are pointers.
49   Value *EmitMemMove(Value *Dst, Value *Src, Value *Len,
50                                  unsigned Align, IRBuilder<> &B, const TargetData *TD);
51
52   /// EmitMemChr - Emit a call to the memchr function.  This assumes that Ptr is
53   /// a pointer, Val is an i32 value, and Len is an 'intptr_t' value.
54   Value *EmitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilder<> &B,
55                     const TargetData *TD);
56
57   /// EmitMemCmp - Emit a call to the memcmp function.
58   Value *EmitMemCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B,
59                     const TargetData *TD);
60
61   /// EmitMemSet - Emit a call to the memset function
62   Value *EmitMemSet(Value *Dst, Value *Val, Value *Len, IRBuilder<> &B,
63                     const TargetData *TD);
64
65   /// EmitUnaryFloatFnCall - Emit a call to the unary function named 'Name'
66   /// (e.g.  'floor').  This function is known to take a single of type matching
67   /// 'Op' and returns one value with the same type.  If 'Op' is a long double,
68   /// 'l' is added as the suffix of name, if 'Op' is a float, we add a 'f'
69   /// suffix.
70   Value *EmitUnaryFloatFnCall(Value *Op, const char *Name, IRBuilder<> &B,
71                               const AttrListPtr &Attrs);
72
73   /// EmitPutChar - Emit a call to the putchar function.  This assumes that Char
74   /// is an integer.
75   Value *EmitPutChar(Value *Char, IRBuilder<> &B, const TargetData *TD);
76
77   /// EmitPutS - Emit a call to the puts function.  This assumes that Str is
78   /// some pointer.
79   void EmitPutS(Value *Str, IRBuilder<> &B, const TargetData *TD);
80
81   /// EmitFPutC - Emit a call to the fputc function.  This assumes that Char is
82   /// an i32, and File is a pointer to FILE.
83   void EmitFPutC(Value *Char, Value *File, IRBuilder<> &B,
84                  const TargetData *TD);
85
86   /// EmitFPutS - Emit a call to the puts function.  Str is required to be a
87   /// pointer and File is a pointer to FILE.
88   void EmitFPutS(Value *Str, Value *File, IRBuilder<> &B, const TargetData *TD);
89
90   /// EmitFWrite - Emit a call to the fwrite function.  This assumes that Ptr is
91   /// a pointer, Size is an 'intptr_t', and File is a pointer to FILE.
92   void EmitFWrite(Value *Ptr, Value *Size, Value *File, IRBuilder<> &B,
93                   const TargetData *TD);
94 }
95
96 #endif