* soft-fp/op-4.h: Update from glibc.
[official-gcc.git] / libffi / include / ffi.h.in
blob84017f1f4450d2ab3be8e3daf63ce79052c7dc72
1 /* -----------------------------------------------------------------*-C-*-
2 libffi @VERSION@ - Copyright (c) 2011 Anthony Green
3 - Copyright (c) 1996-2003, 2007, 2008 Red Hat, Inc.
5 Permission is hereby granted, free of charge, to any person
6 obtaining a copy of this software and associated documentation
7 files (the ``Software''), to deal in the Software without
8 restriction, including without limitation the rights to use, copy,
9 modify, merge, publish, distribute, sublicense, and/or sell copies
10 of the Software, and to permit persons to whom the Software is
11 furnished to do so, subject to the following conditions:
13 The above copyright notice and this permission notice shall be
14 included in all copies or substantial portions of the Software.
16 THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
17 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 DEALINGS IN THE SOFTWARE.
25 ----------------------------------------------------------------------- */
27 /* -------------------------------------------------------------------
28 The basic API is described in the README file.
30 The raw API is designed to bypass some of the argument packing
31 and unpacking on architectures for which it can be avoided.
33 The closure API allows interpreted functions to be packaged up
34 inside a C function pointer, so that they can be called as C functions,
35 with no understanding on the client side that they are interpreted.
36 It can also be used in other cases in which it is necessary to package
37 up a user specified parameter and a function pointer as a single
38 function pointer.
40 The closure API must be implemented in order to get its functionality,
41 e.g. for use by gij. Routines are provided to emulate the raw API
42 if the underlying platform doesn't allow faster implementation.
44 More details on the raw and cloure API can be found in:
46 http://gcc.gnu.org/ml/java/1999-q3/msg00138.html
48 and
50 http://gcc.gnu.org/ml/java/1999-q3/msg00174.html
51 -------------------------------------------------------------------- */
53 #ifndef LIBFFI_H
54 #define LIBFFI_H
56 #ifdef __cplusplus
57 extern "C" {
58 #endif
60 /* Specify which architecture libffi is configured for. */
61 #ifndef @TARGET@
62 #define @TARGET@
63 #endif
65 /* ---- System configuration information --------------------------------- */
67 #include <ffitarget.h>
69 #ifndef LIBFFI_ASM
71 #ifdef _MSC_VER
72 #define __attribute__(X)
73 #endif
75 #include <stddef.h>
76 #include <limits.h>
78 /* LONG_LONG_MAX is not always defined (not if STRICT_ANSI, for example).
79 But we can find it either under the correct ANSI name, or under GNU
80 C's internal name. */
82 #define FFI_64_BIT_MAX 9223372036854775807
84 #ifdef LONG_LONG_MAX
85 # define FFI_LONG_LONG_MAX LONG_LONG_MAX
86 #else
87 # ifdef LLONG_MAX
88 # define FFI_LONG_LONG_MAX LLONG_MAX
89 # ifdef _AIX52 /* or newer has C99 LLONG_MAX */
90 # undef FFI_64_BIT_MAX
91 # define FFI_64_BIT_MAX 9223372036854775807LL
92 # endif /* _AIX52 or newer */
93 # else
94 # ifdef __GNUC__
95 # define FFI_LONG_LONG_MAX __LONG_LONG_MAX__
96 # endif
97 # ifdef _AIX /* AIX 5.1 and earlier have LONGLONG_MAX */
98 # ifndef __PPC64__
99 # if defined (__IBMC__) || defined (__IBMCPP__)
100 # define FFI_LONG_LONG_MAX LONGLONG_MAX
101 # endif
102 # endif /* __PPC64__ */
103 # undef FFI_64_BIT_MAX
104 # define FFI_64_BIT_MAX 9223372036854775807LL
105 # endif
106 # endif
107 #endif
109 /* The closure code assumes that this works on pointers, i.e. a size_t */
110 /* can hold a pointer. */
112 typedef struct _ffi_type
114 size_t size;
115 unsigned short alignment;
116 unsigned short type;
117 struct _ffi_type **elements;
118 } ffi_type;
120 #ifndef LIBFFI_HIDE_BASIC_TYPES
121 #if SCHAR_MAX == 127
122 # define ffi_type_uchar ffi_type_uint8
123 # define ffi_type_schar ffi_type_sint8
124 #else
125 #error "char size not supported"
126 #endif
128 #if SHRT_MAX == 32767
129 # define ffi_type_ushort ffi_type_uint16
130 # define ffi_type_sshort ffi_type_sint16
131 #elif SHRT_MAX == 2147483647
132 # define ffi_type_ushort ffi_type_uint32
133 # define ffi_type_sshort ffi_type_sint32
134 #else
135 #error "short size not supported"
136 #endif
138 #if INT_MAX == 32767
139 # define ffi_type_uint ffi_type_uint16
140 # define ffi_type_sint ffi_type_sint16
141 #elif INT_MAX == 2147483647
142 # define ffi_type_uint ffi_type_uint32
143 # define ffi_type_sint ffi_type_sint32
144 #elif INT_MAX == 9223372036854775807
145 # define ffi_type_uint ffi_type_uint64
146 # define ffi_type_sint ffi_type_sint64
147 #else
148 #error "int size not supported"
149 #endif
151 #if LONG_MAX == 2147483647
152 # if FFI_LONG_LONG_MAX != FFI_64_BIT_MAX
153 #error "no 64-bit data type supported"
154 # endif
155 #elif LONG_MAX != FFI_64_BIT_MAX
156 #error "long size not supported"
157 #endif
159 #if LONG_MAX == 2147483647
160 # define ffi_type_ulong ffi_type_uint32
161 # define ffi_type_slong ffi_type_sint32
162 #elif LONG_MAX == FFI_64_BIT_MAX
163 # define ffi_type_ulong ffi_type_uint64
164 # define ffi_type_slong ffi_type_sint64
165 #else
166 #error "long size not supported"
167 #endif
169 /* These are defined in types.c */
170 extern ffi_type ffi_type_void;
171 extern ffi_type ffi_type_uint8;
172 extern ffi_type ffi_type_sint8;
173 extern ffi_type ffi_type_uint16;
174 extern ffi_type ffi_type_sint16;
175 extern ffi_type ffi_type_uint32;
176 extern ffi_type ffi_type_sint32;
177 extern ffi_type ffi_type_uint64;
178 extern ffi_type ffi_type_sint64;
179 extern ffi_type ffi_type_float;
180 extern ffi_type ffi_type_double;
181 extern ffi_type ffi_type_pointer;
183 #if @HAVE_LONG_DOUBLE@
184 extern ffi_type ffi_type_longdouble;
185 #else
186 #define ffi_type_longdouble ffi_type_double
187 #endif
188 #endif /* LIBFFI_HIDE_BASIC_TYPES */
190 typedef enum {
191 FFI_OK = 0,
192 FFI_BAD_TYPEDEF,
193 FFI_BAD_ABI
194 } ffi_status;
196 typedef unsigned FFI_TYPE;
198 typedef struct {
199 ffi_abi abi;
200 unsigned nargs;
201 ffi_type **arg_types;
202 ffi_type *rtype;
203 unsigned bytes;
204 unsigned flags;
205 #ifdef FFI_EXTRA_CIF_FIELDS
206 FFI_EXTRA_CIF_FIELDS;
207 #endif
208 } ffi_cif;
210 /* Used internally, but overridden by some architectures */
211 ffi_status ffi_prep_cif_core(ffi_cif *cif,
212 ffi_abi abi,
213 unsigned int isvariadic,
214 unsigned int nfixedargs,
215 unsigned int ntotalargs,
216 ffi_type *rtype,
217 ffi_type **atypes);
219 /* ---- Definitions for the raw API -------------------------------------- */
221 #ifndef FFI_SIZEOF_ARG
222 # if LONG_MAX == 2147483647
223 # define FFI_SIZEOF_ARG 4
224 # elif LONG_MAX == FFI_64_BIT_MAX
225 # define FFI_SIZEOF_ARG 8
226 # endif
227 #endif
229 #ifndef FFI_SIZEOF_JAVA_RAW
230 # define FFI_SIZEOF_JAVA_RAW FFI_SIZEOF_ARG
231 #endif
233 typedef union {
234 ffi_sarg sint;
235 ffi_arg uint;
236 float flt;
237 char data[FFI_SIZEOF_ARG];
238 void* ptr;
239 } ffi_raw;
241 #if FFI_SIZEOF_JAVA_RAW == 4 && FFI_SIZEOF_ARG == 8
242 /* This is a special case for mips64/n32 ABI (and perhaps others) where
243 sizeof(void *) is 4 and FFI_SIZEOF_ARG is 8. */
244 typedef union {
245 signed int sint;
246 unsigned int uint;
247 float flt;
248 char data[FFI_SIZEOF_JAVA_RAW];
249 void* ptr;
250 } ffi_java_raw;
251 #else
252 typedef ffi_raw ffi_java_raw;
253 #endif
256 void ffi_raw_call (ffi_cif *cif,
257 void (*fn)(void),
258 void *rvalue,
259 ffi_raw *avalue);
261 void ffi_ptrarray_to_raw (ffi_cif *cif, void **args, ffi_raw *raw);
262 void ffi_raw_to_ptrarray (ffi_cif *cif, ffi_raw *raw, void **args);
263 size_t ffi_raw_size (ffi_cif *cif);
265 /* This is analogous to the raw API, except it uses Java parameter */
266 /* packing, even on 64-bit machines. I.e. on 64-bit machines */
267 /* longs and doubles are followed by an empty 64-bit word. */
269 void ffi_java_raw_call (ffi_cif *cif,
270 void (*fn)(void),
271 void *rvalue,
272 ffi_java_raw *avalue);
274 void ffi_java_ptrarray_to_raw (ffi_cif *cif, void **args, ffi_java_raw *raw);
275 void ffi_java_raw_to_ptrarray (ffi_cif *cif, ffi_java_raw *raw, void **args);
276 size_t ffi_java_raw_size (ffi_cif *cif);
278 /* ---- Definitions for closures ----------------------------------------- */
280 #if FFI_CLOSURES
282 #ifdef _MSC_VER
283 __declspec(align(8))
284 #endif
285 typedef struct {
286 char tramp[FFI_TRAMPOLINE_SIZE];
287 ffi_cif *cif;
288 void (*fun)(ffi_cif*,void*,void**,void*);
289 void *user_data;
290 #ifdef __GNUC__
291 } ffi_closure __attribute__((aligned (8)));
292 #else
293 } ffi_closure;
294 # ifdef __sgi
295 # pragma pack 0
296 # endif
297 #endif
299 void *ffi_closure_alloc (size_t size, void **code);
300 void ffi_closure_free (void *);
302 ffi_status
303 ffi_prep_closure (ffi_closure*,
304 ffi_cif *,
305 void (*fun)(ffi_cif*,void*,void**,void*),
306 void *user_data);
308 ffi_status
309 ffi_prep_closure_loc (ffi_closure*,
310 ffi_cif *,
311 void (*fun)(ffi_cif*,void*,void**,void*),
312 void *user_data,
313 void*codeloc);
315 #ifdef __sgi
316 # pragma pack 8
317 #endif
318 typedef struct {
319 char tramp[FFI_TRAMPOLINE_SIZE];
321 ffi_cif *cif;
323 #if !FFI_NATIVE_RAW_API
325 /* if this is enabled, then a raw closure has the same layout
326 as a regular closure. We use this to install an intermediate
327 handler to do the transaltion, void** -> ffi_raw*. */
329 void (*translate_args)(ffi_cif*,void*,void**,void*);
330 void *this_closure;
332 #endif
334 void (*fun)(ffi_cif*,void*,ffi_raw*,void*);
335 void *user_data;
337 } ffi_raw_closure;
339 typedef struct {
340 char tramp[FFI_TRAMPOLINE_SIZE];
342 ffi_cif *cif;
344 #if !FFI_NATIVE_RAW_API
346 /* if this is enabled, then a raw closure has the same layout
347 as a regular closure. We use this to install an intermediate
348 handler to do the transaltion, void** -> ffi_raw*. */
350 void (*translate_args)(ffi_cif*,void*,void**,void*);
351 void *this_closure;
353 #endif
355 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*);
356 void *user_data;
358 } ffi_java_raw_closure;
360 ffi_status
361 ffi_prep_raw_closure (ffi_raw_closure*,
362 ffi_cif *cif,
363 void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
364 void *user_data);
366 ffi_status
367 ffi_prep_raw_closure_loc (ffi_raw_closure*,
368 ffi_cif *cif,
369 void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
370 void *user_data,
371 void *codeloc);
373 ffi_status
374 ffi_prep_java_raw_closure (ffi_java_raw_closure*,
375 ffi_cif *cif,
376 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),
377 void *user_data);
379 ffi_status
380 ffi_prep_java_raw_closure_loc (ffi_java_raw_closure*,
381 ffi_cif *cif,
382 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),
383 void *user_data,
384 void *codeloc);
386 #endif /* FFI_CLOSURES */
388 /* ---- Public interface definition -------------------------------------- */
390 ffi_status ffi_prep_cif(ffi_cif *cif,
391 ffi_abi abi,
392 unsigned int nargs,
393 ffi_type *rtype,
394 ffi_type **atypes);
396 ffi_status ffi_prep_cif_var(ffi_cif *cif,
397 ffi_abi abi,
398 unsigned int nfixedargs,
399 unsigned int ntotalargs,
400 ffi_type *rtype,
401 ffi_type **atypes);
403 void ffi_call(ffi_cif *cif,
404 void (*fn)(void),
405 void *rvalue,
406 void **avalue);
408 /* Useful for eliminating compiler warnings */
409 #define FFI_FN(f) ((void (*)(void))f)
411 /* ---- Definitions shared with assembly code ---------------------------- */
413 #endif
415 /* If these change, update src/mips/ffitarget.h. */
416 #define FFI_TYPE_VOID 0
417 #define FFI_TYPE_INT 1
418 #define FFI_TYPE_FLOAT 2
419 #define FFI_TYPE_DOUBLE 3
420 #if @HAVE_LONG_DOUBLE@
421 #define FFI_TYPE_LONGDOUBLE 4
422 #else
423 #define FFI_TYPE_LONGDOUBLE FFI_TYPE_DOUBLE
424 #endif
425 #define FFI_TYPE_UINT8 5
426 #define FFI_TYPE_SINT8 6
427 #define FFI_TYPE_UINT16 7
428 #define FFI_TYPE_SINT16 8
429 #define FFI_TYPE_UINT32 9
430 #define FFI_TYPE_SINT32 10
431 #define FFI_TYPE_UINT64 11
432 #define FFI_TYPE_SINT64 12
433 #define FFI_TYPE_STRUCT 13
434 #define FFI_TYPE_POINTER 14
436 /* This should always refer to the last type code (for sanity checks) */
437 #define FFI_TYPE_LAST FFI_TYPE_POINTER
439 #ifdef __cplusplus
441 #endif
443 #endif