Add DebugLoc field and simple accessors.
[oota-llvm.git] / include / llvm / CodeGen / RuntimeLibcalls.h
1 //===-- CodeGen/RuntimeLibcall.h - Runtime Library Calls --------*- 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 defines the enum representing the list of runtime library calls
11 // the backend may emit during code generation, and also some helper functions.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_CODEGEN_RUNTIMELIBCALLS_H
16 #define LLVM_CODEGEN_RUNTIMELIBCALLS_H
17
18 #include "llvm/CodeGen/ValueTypes.h"
19
20 namespace llvm {
21 namespace RTLIB {
22   /// RTLIB::Libcall enum - This enum defines all of the runtime library calls
23   /// the backend can emit.  The various long double types cannot be merged,
24   /// because 80-bit library functions use "xf" and 128-bit use "tf".
25   /// 
26   /// When adding PPCF128 functions here, note that their names generally need
27   /// to be overridden for Darwin with the xxx$LDBL128 form.  See
28   /// PPCISelLowering.cpp.
29   ///
30   enum Libcall {
31     // Integer
32     SHL_I16,
33     SHL_I32,
34     SHL_I64,
35     SHL_I128,
36     SRL_I16,
37     SRL_I32,
38     SRL_I64,
39     SRL_I128,
40     SRA_I16,
41     SRA_I32,
42     SRA_I64,
43     SRA_I128,
44     MUL_I16,
45     MUL_I32,
46     MUL_I64,
47     MUL_I128,
48     SDIV_I32,
49     SDIV_I64,
50     SDIV_I128,
51     UDIV_I32,
52     UDIV_I64,
53     UDIV_I128,
54     SREM_I32,
55     SREM_I64,
56     SREM_I128,
57     UREM_I32,
58     UREM_I64,
59     UREM_I128,
60     NEG_I32,
61     NEG_I64,
62
63     // FLOATING POINT
64     ADD_F32,
65     ADD_F64,
66     ADD_F80,
67     ADD_PPCF128,
68     SUB_F32,
69     SUB_F64,
70     SUB_F80,
71     SUB_PPCF128,
72     MUL_F32,
73     MUL_F64,
74     MUL_F80,
75     MUL_PPCF128,
76     DIV_F32,
77     DIV_F64,
78     DIV_F80,
79     DIV_PPCF128,
80     REM_F32,
81     REM_F64,
82     REM_F80,
83     REM_PPCF128,
84     POWI_F32,
85     POWI_F64,
86     POWI_F80,
87     POWI_PPCF128,
88     SQRT_F32,
89     SQRT_F64,
90     SQRT_F80,
91     SQRT_PPCF128,
92     LOG_F32,
93     LOG_F64,
94     LOG_F80,
95     LOG_PPCF128,
96     LOG2_F32,
97     LOG2_F64,
98     LOG2_F80,
99     LOG2_PPCF128,
100     LOG10_F32,
101     LOG10_F64,
102     LOG10_F80,
103     LOG10_PPCF128,
104     EXP_F32,
105     EXP_F64,
106     EXP_F80,
107     EXP_PPCF128,
108     EXP2_F32,
109     EXP2_F64,
110     EXP2_F80,
111     EXP2_PPCF128,
112     SIN_F32,
113     SIN_F64,
114     SIN_F80,
115     SIN_PPCF128,
116     COS_F32,
117     COS_F64,
118     COS_F80,
119     COS_PPCF128,
120     POW_F32,
121     POW_F64,
122     POW_F80,
123     POW_PPCF128,
124     CEIL_F32,
125     CEIL_F64,
126     CEIL_F80,
127     CEIL_PPCF128,
128     TRUNC_F32,
129     TRUNC_F64,
130     TRUNC_F80,
131     TRUNC_PPCF128,
132     RINT_F32,
133     RINT_F64,
134     RINT_F80,
135     RINT_PPCF128,
136     NEARBYINT_F32,
137     NEARBYINT_F64,
138     NEARBYINT_F80,
139     NEARBYINT_PPCF128,
140     FLOOR_F32,
141     FLOOR_F64,
142     FLOOR_F80,
143     FLOOR_PPCF128,
144
145     // CONVERSION
146     FPEXT_F32_F64,
147     FPROUND_F64_F32,
148     FPROUND_F80_F32,
149     FPROUND_PPCF128_F32,
150     FPROUND_F80_F64,
151     FPROUND_PPCF128_F64,
152     FPTOSINT_F32_I32,
153     FPTOSINT_F32_I64,
154     FPTOSINT_F32_I128,
155     FPTOSINT_F64_I32,
156     FPTOSINT_F64_I64,
157     FPTOSINT_F64_I128,
158     FPTOSINT_F80_I32,
159     FPTOSINT_F80_I64,
160     FPTOSINT_F80_I128,
161     FPTOSINT_PPCF128_I32,
162     FPTOSINT_PPCF128_I64,
163     FPTOSINT_PPCF128_I128,
164     FPTOUINT_F32_I32,
165     FPTOUINT_F32_I64,
166     FPTOUINT_F32_I128,
167     FPTOUINT_F64_I32,
168     FPTOUINT_F64_I64,
169     FPTOUINT_F64_I128,
170     FPTOUINT_F80_I32,
171     FPTOUINT_F80_I64,
172     FPTOUINT_F80_I128,
173     FPTOUINT_PPCF128_I32,
174     FPTOUINT_PPCF128_I64,
175     FPTOUINT_PPCF128_I128,
176     SINTTOFP_I32_F32,
177     SINTTOFP_I32_F64,
178     SINTTOFP_I32_F80,
179     SINTTOFP_I32_PPCF128,
180     SINTTOFP_I64_F32,
181     SINTTOFP_I64_F64,
182     SINTTOFP_I64_F80,
183     SINTTOFP_I64_PPCF128,
184     SINTTOFP_I128_F32,
185     SINTTOFP_I128_F64,
186     SINTTOFP_I128_F80,
187     SINTTOFP_I128_PPCF128,
188     UINTTOFP_I32_F32,
189     UINTTOFP_I32_F64,
190     UINTTOFP_I32_F80,
191     UINTTOFP_I32_PPCF128,
192     UINTTOFP_I64_F32,
193     UINTTOFP_I64_F64,
194     UINTTOFP_I64_F80,
195     UINTTOFP_I64_PPCF128,
196     UINTTOFP_I128_F32,
197     UINTTOFP_I128_F64,
198     UINTTOFP_I128_F80,
199     UINTTOFP_I128_PPCF128,
200
201     // COMPARISON
202     OEQ_F32,
203     OEQ_F64,
204     UNE_F32,
205     UNE_F64,
206     OGE_F32,
207     OGE_F64,
208     OLT_F32,
209     OLT_F64,
210     OLE_F32,
211     OLE_F64,
212     OGT_F32,
213     OGT_F64,
214     UO_F32,
215     UO_F64,
216     O_F32,
217     O_F64,
218
219     UNKNOWN_LIBCALL
220   };
221
222   /// getFPEXT - Return the FPEXT_*_* value for the given types, or
223   /// UNKNOWN_LIBCALL if there is none.
224   Libcall getFPEXT(MVT OpVT, MVT RetVT);
225
226   /// getFPROUND - Return the FPROUND_*_* value for the given types, or
227   /// UNKNOWN_LIBCALL if there is none.
228   Libcall getFPROUND(MVT OpVT, MVT RetVT);
229
230   /// getFPTOSINT - Return the FPTOSINT_*_* value for the given types, or
231   /// UNKNOWN_LIBCALL if there is none.
232   Libcall getFPTOSINT(MVT OpVT, MVT RetVT);
233
234   /// getFPTOUINT - Return the FPTOUINT_*_* value for the given types, or
235   /// UNKNOWN_LIBCALL if there is none.
236   Libcall getFPTOUINT(MVT OpVT, MVT RetVT);
237
238   /// getSINTTOFP - Return the SINTTOFP_*_* value for the given types, or
239   /// UNKNOWN_LIBCALL if there is none.
240   Libcall getSINTTOFP(MVT OpVT, MVT RetVT);
241
242   /// getUINTTOFP - Return the UINTTOFP_*_* value for the given types, or
243   /// UNKNOWN_LIBCALL if there is none.
244   Libcall getUINTTOFP(MVT OpVT, MVT RetVT);
245 }
246 }
247
248 #endif