1 /* -----------------------------------------------------------------*-C-*-
2 libffi @VERSION@ - Copyright (c) 2011, 2014 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>
71 #if defined(_MSC_VER) && !defined(__clang__)
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 /* Need minimal decorations for DLLs to works on Windows. */
170 /* GCC has autoimport and autoexport. Rely on Libtool to */
171 /* help MSVC export from a DLL, but always declare data */
172 /* to be imported for MSVC clients. This costs an extra */
173 /* indirection for MSVC clients using the static version */
174 /* of the library, but don't worry about that. Besides, */
175 /* as a workaround, they can define FFI_BUILDING if they */
176 /* *know* they are going to link with the static library. */
177 #if defined _MSC_VER && !defined FFI_BUILDING
178 #define FFI_EXTERN extern __declspec(dllimport)
180 #define FFI_EXTERN extern
183 /* These are defined in types.c */
184 FFI_EXTERN ffi_type ffi_type_void
;
185 FFI_EXTERN ffi_type ffi_type_uint8
;
186 FFI_EXTERN ffi_type ffi_type_sint8
;
187 FFI_EXTERN ffi_type ffi_type_uint16
;
188 FFI_EXTERN ffi_type ffi_type_sint16
;
189 FFI_EXTERN ffi_type ffi_type_uint32
;
190 FFI_EXTERN ffi_type ffi_type_sint32
;
191 FFI_EXTERN ffi_type ffi_type_uint64
;
192 FFI_EXTERN ffi_type ffi_type_sint64
;
193 FFI_EXTERN ffi_type ffi_type_float
;
194 FFI_EXTERN ffi_type ffi_type_double
;
195 FFI_EXTERN ffi_type ffi_type_pointer
;
197 #if @HAVE_LONG_DOUBLE@
198 FFI_EXTERN ffi_type ffi_type_longdouble
;
200 #define ffi_type_longdouble ffi_type_double
203 #ifdef FFI_TARGET_HAS_COMPLEX_TYPE
204 FFI_EXTERN ffi_type ffi_type_complex_float
;
205 FFI_EXTERN ffi_type ffi_type_complex_double
;
206 #if @HAVE_LONG_DOUBLE@
207 FFI_EXTERN ffi_type ffi_type_complex_longdouble
;
209 #define ffi_type_complex_longdouble ffi_type_complex_double
212 #endif /* LIBFFI_HIDE_BASIC_TYPES */
220 typedef unsigned FFI_TYPE
;
225 ffi_type
**arg_types
;
229 #ifdef FFI_EXTRA_CIF_FIELDS
230 FFI_EXTRA_CIF_FIELDS
;
234 #if @HAVE_LONG_DOUBLE_VARIANT@
235 /* Used to adjust size/alignment of ffi types. */
236 void ffi_prep_types (ffi_abi abi
);
239 /* Used internally, but overridden by some architectures */
240 ffi_status
ffi_prep_cif_core(ffi_cif
*cif
,
242 unsigned int isvariadic
,
243 unsigned int nfixedargs
,
244 unsigned int ntotalargs
,
248 /* ---- Definitions for the raw API -------------------------------------- */
250 #ifndef FFI_SIZEOF_ARG
251 # if LONG_MAX == 2147483647
252 # define FFI_SIZEOF_ARG 4
253 # elif LONG_MAX == FFI_64_BIT_MAX
254 # define FFI_SIZEOF_ARG 8
258 #ifndef FFI_SIZEOF_JAVA_RAW
259 # define FFI_SIZEOF_JAVA_RAW FFI_SIZEOF_ARG
266 char data
[FFI_SIZEOF_ARG
];
270 #if FFI_SIZEOF_JAVA_RAW == 4 && FFI_SIZEOF_ARG == 8
271 /* This is a special case for mips64/n32 ABI (and perhaps others) where
272 sizeof(void *) is 4 and FFI_SIZEOF_ARG is 8. */
277 char data
[FFI_SIZEOF_JAVA_RAW
];
281 typedef ffi_raw ffi_java_raw
;
285 void ffi_raw_call (ffi_cif
*cif
,
290 void ffi_ptrarray_to_raw (ffi_cif
*cif
, void **args
, ffi_raw
*raw
);
291 void ffi_raw_to_ptrarray (ffi_cif
*cif
, ffi_raw
*raw
, void **args
);
292 size_t ffi_raw_size (ffi_cif
*cif
);
294 /* This is analogous to the raw API, except it uses Java parameter */
295 /* packing, even on 64-bit machines. I.e. on 64-bit machines */
296 /* longs and doubles are followed by an empty 64-bit word. */
298 void ffi_java_raw_call (ffi_cif
*cif
,
301 ffi_java_raw
*avalue
);
303 void ffi_java_ptrarray_to_raw (ffi_cif
*cif
, void **args
, ffi_java_raw
*raw
);
304 void ffi_java_raw_to_ptrarray (ffi_cif
*cif
, ffi_java_raw
*raw
, void **args
);
305 size_t ffi_java_raw_size (ffi_cif
*cif
);
307 /* ---- Definitions for closures ----------------------------------------- */
315 #if @FFI_EXEC_TRAMPOLINE_TABLE@
316 void *trampoline_table
;
317 void *trampoline_table_entry
;
319 char tramp
[FFI_TRAMPOLINE_SIZE
];
322 void (*fun
)(ffi_cif
*,void*,void**,void*);
325 } ffi_closure
__attribute__((aligned (8)));
333 void *ffi_closure_alloc (size_t size
, void **code
);
334 void ffi_closure_free (void *);
337 ffi_prep_closure (ffi_closure
*,
339 void (*fun
)(ffi_cif
*,void*,void**,void*),
343 ffi_prep_closure_loc (ffi_closure
*,
345 void (*fun
)(ffi_cif
*,void*,void**,void*),
353 #if @FFI_EXEC_TRAMPOLINE_TABLE@
354 void *trampoline_table
;
355 void *trampoline_table_entry
;
357 char tramp
[FFI_TRAMPOLINE_SIZE
];
361 #if !FFI_NATIVE_RAW_API
363 /* if this is enabled, then a raw closure has the same layout
364 as a regular closure. We use this to install an intermediate
365 handler to do the transaltion, void** -> ffi_raw*. */
367 void (*translate_args
)(ffi_cif
*,void*,void**,void*);
372 void (*fun
)(ffi_cif
*,void*,ffi_raw
*,void*);
378 #if @FFI_EXEC_TRAMPOLINE_TABLE@
379 void *trampoline_table
;
380 void *trampoline_table_entry
;
382 char tramp
[FFI_TRAMPOLINE_SIZE
];
387 #if !FFI_NATIVE_RAW_API
389 /* if this is enabled, then a raw closure has the same layout
390 as a regular closure. We use this to install an intermediate
391 handler to do the transaltion, void** -> ffi_raw*. */
393 void (*translate_args
)(ffi_cif
*,void*,void**,void*);
398 void (*fun
)(ffi_cif
*,void*,ffi_java_raw
*,void*);
401 } ffi_java_raw_closure
;
404 ffi_prep_raw_closure (ffi_raw_closure
*,
406 void (*fun
)(ffi_cif
*,void*,ffi_raw
*,void*),
410 ffi_prep_raw_closure_loc (ffi_raw_closure
*,
412 void (*fun
)(ffi_cif
*,void*,ffi_raw
*,void*),
417 ffi_prep_java_raw_closure (ffi_java_raw_closure
*,
419 void (*fun
)(ffi_cif
*,void*,ffi_java_raw
*,void*),
423 ffi_prep_java_raw_closure_loc (ffi_java_raw_closure
*,
425 void (*fun
)(ffi_cif
*,void*,ffi_java_raw
*,void*),
429 #endif /* FFI_CLOSURES */
436 void (*fun
)(ffi_cif
*,void*,void**,void*);
439 ffi_status
ffi_prep_go_closure (ffi_go_closure
*, ffi_cif
*,
440 void (*fun
)(ffi_cif
*,void*,void**,void*));
442 void ffi_call_go (ffi_cif
*cif
, void (*fn
)(void), void *rvalue
,
443 void **avalue
, void *closure
);
445 #endif /* FFI_GO_CLOSURES */
447 /* ---- Public interface definition -------------------------------------- */
449 ffi_status
ffi_prep_cif(ffi_cif
*cif
,
455 ffi_status
ffi_prep_cif_var(ffi_cif
*cif
,
457 unsigned int nfixedargs
,
458 unsigned int ntotalargs
,
462 void ffi_call(ffi_cif
*cif
,
467 /* Useful for eliminating compiler warnings */
468 #define FFI_FN(f) ((void (*)(void))f)
470 /* ---- Definitions shared with assembly code ---------------------------- */
474 /* If these change, update src/mips/ffitarget.h. */
475 #define FFI_TYPE_VOID 0
476 #define FFI_TYPE_INT 1
477 #define FFI_TYPE_FLOAT 2
478 #define FFI_TYPE_DOUBLE 3
479 #if @HAVE_LONG_DOUBLE@
480 #define FFI_TYPE_LONGDOUBLE 4
482 #define FFI_TYPE_LONGDOUBLE FFI_TYPE_DOUBLE
484 #define FFI_TYPE_UINT8 5
485 #define FFI_TYPE_SINT8 6
486 #define FFI_TYPE_UINT16 7
487 #define FFI_TYPE_SINT16 8
488 #define FFI_TYPE_UINT32 9
489 #define FFI_TYPE_SINT32 10
490 #define FFI_TYPE_UINT64 11
491 #define FFI_TYPE_SINT64 12
492 #define FFI_TYPE_STRUCT 13
493 #define FFI_TYPE_POINTER 14
494 #define FFI_TYPE_COMPLEX 15
496 /* This should always refer to the last type code (for sanity checks) */
497 /* ??? Ideally, anyway. There are assembly files that still depend
498 on this not including COMPLEX. */
499 #ifdef FFI_TARGET_HAS_COMPLEX_TYPE
500 # define FFI_TYPE_LAST FFI_TYPE_COMPLEX
502 # define FFI_TYPE_LAST FFI_TYPE_POINTER