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
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
50 http://gcc.gnu.org/ml/java/1999-q3/msg00174.html
51 -------------------------------------------------------------------- */
60 /* Specify which architecture libffi is configured for. */
65 /* ---- System configuration information --------------------------------- */
67 #include <ffitarget.h>
72 #define __attribute__(X)
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
82 #define FFI_64_BIT_MAX 9223372036854775807
85 # define FFI_LONG_LONG_MAX LONG_LONG_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 */
95 # define FFI_LONG_LONG_MAX __LONG_LONG_MAX__
97 # ifdef _AIX /* AIX 5.1 and earlier have LONGLONG_MAX */
99 # if defined (__IBMC__) || defined (__IBMCPP__)
100 # define FFI_LONG_LONG_MAX LONGLONG_MAX
102 # endif /* __PPC64__ */
103 # undef FFI_64_BIT_MAX
104 # define FFI_64_BIT_MAX 9223372036854775807LL
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
115 unsigned short alignment
;
117 struct _ffi_type
**elements
;
120 #ifndef LIBFFI_HIDE_BASIC_TYPES
122 # define ffi_type_uchar ffi_type_uint8
123 # define ffi_type_schar ffi_type_sint8
125 #error "char size not supported"
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
135 #error "short size not supported"
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
148 #error "int size not supported"
151 #if LONG_MAX == 2147483647
152 # if FFI_LONG_LONG_MAX != FFI_64_BIT_MAX
153 #error "no 64-bit data type supported"
155 #elif LONG_MAX != FFI_64_BIT_MAX
156 #error "long size not supported"
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
166 #error "long size not supported"
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
;
186 #define ffi_type_longdouble ffi_type_double
188 #endif /* LIBFFI_HIDE_BASIC_TYPES */
196 typedef unsigned FFI_TYPE
;
201 ffi_type
**arg_types
;
205 #ifdef FFI_EXTRA_CIF_FIELDS
206 FFI_EXTRA_CIF_FIELDS
;
210 /* Used internally, but overridden by some architectures */
211 ffi_status
ffi_prep_cif_core(ffi_cif
*cif
,
213 unsigned int isvariadic
,
214 unsigned int nfixedargs
,
215 unsigned int ntotalargs
,
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
229 #ifndef FFI_SIZEOF_JAVA_RAW
230 # define FFI_SIZEOF_JAVA_RAW FFI_SIZEOF_ARG
237 char data
[FFI_SIZEOF_ARG
];
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. */
248 char data
[FFI_SIZEOF_JAVA_RAW
];
252 typedef ffi_raw ffi_java_raw
;
256 void ffi_raw_call (ffi_cif
*cif
,
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
,
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 ----------------------------------------- */
286 char tramp
[FFI_TRAMPOLINE_SIZE
];
288 void (*fun
)(ffi_cif
*,void*,void**,void*);
291 } ffi_closure
__attribute__((aligned (8)));
299 void *ffi_closure_alloc (size_t size
, void **code
);
300 void ffi_closure_free (void *);
303 ffi_prep_closure (ffi_closure
*,
305 void (*fun
)(ffi_cif
*,void*,void**,void*),
309 ffi_prep_closure_loc (ffi_closure
*,
311 void (*fun
)(ffi_cif
*,void*,void**,void*),
319 char tramp
[FFI_TRAMPOLINE_SIZE
];
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*);
334 void (*fun
)(ffi_cif
*,void*,ffi_raw
*,void*);
340 char tramp
[FFI_TRAMPOLINE_SIZE
];
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*);
355 void (*fun
)(ffi_cif
*,void*,ffi_java_raw
*,void*);
358 } ffi_java_raw_closure
;
361 ffi_prep_raw_closure (ffi_raw_closure
*,
363 void (*fun
)(ffi_cif
*,void*,ffi_raw
*,void*),
367 ffi_prep_raw_closure_loc (ffi_raw_closure
*,
369 void (*fun
)(ffi_cif
*,void*,ffi_raw
*,void*),
374 ffi_prep_java_raw_closure (ffi_java_raw_closure
*,
376 void (*fun
)(ffi_cif
*,void*,ffi_java_raw
*,void*),
380 ffi_prep_java_raw_closure_loc (ffi_java_raw_closure
*,
382 void (*fun
)(ffi_cif
*,void*,ffi_java_raw
*,void*),
386 #endif /* FFI_CLOSURES */
388 /* ---- Public interface definition -------------------------------------- */
390 ffi_status
ffi_prep_cif(ffi_cif
*cif
,
396 ffi_status
ffi_prep_cif_var(ffi_cif
*cif
,
398 unsigned int nfixedargs
,
399 unsigned int ntotalargs
,
403 void ffi_call(ffi_cif
*cif
,
408 /* Useful for eliminating compiler warnings */
409 #define FFI_FN(f) ((void (*)(void))f)
411 /* ---- Definitions shared with assembly code ---------------------------- */
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
423 #define FFI_TYPE_LONGDOUBLE FFI_TYPE_DOUBLE
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