1 /* -----------------------------------------------------------------*-C-*-
2 libffi @VERSION@ - Copyright (c) 1996-2003 Red Hat, Inc.
4 Permission is hereby granted, free of charge, to any person obtaining
5 a copy of this software and associated documentation files (the
6 ``Software''), to deal in the Software without restriction, including
7 without limitation the rights to use, copy, modify, merge, publish,
8 distribute, sublicense, and/or sell copies of the Software, and to
9 permit persons to whom the Software is furnished to do so, subject to
10 the following conditions:
12 The above copyright notice and this permission notice shall be included
13 in all copies or substantial portions of the Software.
15 THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS
16 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 IN NO EVENT SHALL CYGNUS SOLUTIONS BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 OTHER DEALINGS IN THE SOFTWARE.
23 ----------------------------------------------------------------------- */
25 /* -------------------------------------------------------------------
26 The basic API is described in the README file.
28 The raw API is designed to bypass some of the argument packing
29 and unpacking on architectures for which it can be avoided.
31 The closure API allows interpreted functions to be packaged up
32 inside a C function pointer, so that they can be called as C functions,
33 with no understanding on the client side that they are interpreted.
34 It can also be used in other cases in which it is necessary to package
35 up a user specified parameter and a function pointer as a single
38 The closure API must be implemented in order to get its functionality,
39 e.g. for use by gij. Routines are provided to emulate the raw API
40 if the underlying platform doesn't allow faster implementation.
42 More details on the raw and cloure API can be found in:
44 http://gcc.gnu.org/ml/java/1999-q3/msg00138.html
48 http://gcc.gnu.org/ml/java/1999-q3/msg00174.html
49 -------------------------------------------------------------------- */
58 /* Specify which architecture libffi is configured for. */
61 /* ---- System configuration information --------------------------------- */
63 #include <ffitarget.h>
70 /* LONG_LONG_MAX is not always defined (not if STRICT_ANSI, for example).
71 But we can find it either under the correct ANSI name, or under GNU
74 # define FFI_LONG_LONG_MAX LONG_LONG_MAX
77 # define FFI_LONG_LONG_MAX LLONG_MAX
80 # define FFI_LONG_LONG_MAX __LONG_LONG_MAX__
86 # define ffi_type_uchar ffi_type_uint8
87 # define ffi_type_schar ffi_type_sint8
89 #error "char size not supported"
93 # define ffi_type_ushort ffi_type_uint16
94 # define ffi_type_sshort ffi_type_sint16
95 #elif SHRT_MAX == 2147483647
96 # define ffi_type_ushort ffi_type_uint32
97 # define ffi_type_sshort ffi_type_sint32
99 #error "short size not supported"
103 # define ffi_type_uint ffi_type_uint16
104 # define ffi_type_sint ffi_type_sint16
105 #elif INT_MAX == 2147483647
106 # define ffi_type_uint ffi_type_uint32
107 # define ffi_type_sint ffi_type_sint32
108 #elif INT_MAX == 9223372036854775807
109 # define ffi_type_uint ffi_type_uint64
110 # define ffi_type_sint ffi_type_sint64
112 #error "int size not supported"
115 #define ffi_type_ulong ffi_type_uint64
116 #define ffi_type_slong ffi_type_sint64
117 #if LONG_MAX == 2147483647
118 # if FFI_LONG_LONG_MAX != 9223372036854775807
119 #error "no 64-bit data type supported"
121 #elif LONG_MAX != 9223372036854775807
122 #error "long size not supported"
125 /* The closure code assumes that this works on pointers, i.e. a size_t */
126 /* can hold a pointer. */
128 typedef struct _ffi_type
131 unsigned short alignment
;
133 /*@null@*/ struct _ffi_type
**elements
;
136 /* These are defined in types.c */
137 extern ffi_type ffi_type_void
;
138 extern ffi_type ffi_type_uint8
;
139 extern ffi_type ffi_type_sint8
;
140 extern ffi_type ffi_type_uint16
;
141 extern ffi_type ffi_type_sint16
;
142 extern ffi_type ffi_type_uint32
;
143 extern ffi_type ffi_type_sint32
;
144 extern ffi_type ffi_type_uint64
;
145 extern ffi_type ffi_type_sint64
;
146 extern ffi_type ffi_type_float
;
147 extern ffi_type ffi_type_double
;
148 extern ffi_type ffi_type_longdouble
;
149 extern ffi_type ffi_type_pointer
;
158 typedef unsigned FFI_TYPE
;
163 /*@dependent@*/ ffi_type
**arg_types
;
164 /*@dependent@*/ ffi_type
*rtype
;
167 #ifdef FFI_EXTRA_CIF_FIELDS
168 FFI_EXTRA_CIF_FIELDS
;
172 /* ---- Definitions for the raw API -------------------------------------- */
174 #ifndef FFI_SIZEOF_ARG
175 # if LONG_MAX == 2147483647
176 # define FFI_SIZEOF_ARG 4
177 # elif LONG_MAX == 9223372036854775807
178 # define FFI_SIZEOF_ARG 8
186 char data
[FFI_SIZEOF_ARG
];
190 void ffi_raw_call (/*@dependent@*/ ffi_cif
*cif
,
192 /*@out@*/ void *rvalue
,
193 /*@dependent@*/ ffi_raw
*avalue
);
195 void ffi_ptrarray_to_raw (ffi_cif
*cif
, void **args
, ffi_raw
*raw
);
196 void ffi_raw_to_ptrarray (ffi_cif
*cif
, ffi_raw
*raw
, void **args
);
197 size_t ffi_raw_size (ffi_cif
*cif
);
199 /* This is analogous to the raw API, except it uses Java parameter */
200 /* packing, even on 64-bit machines. I.e. on 64-bit machines */
201 /* longs and doubles are followed by an empty 64-bit word. */
203 void ffi_java_raw_call (/*@dependent@*/ ffi_cif
*cif
,
205 /*@out@*/ void *rvalue
,
206 /*@dependent@*/ ffi_raw
*avalue
);
208 void ffi_java_ptrarray_to_raw (ffi_cif
*cif
, void **args
, ffi_raw
*raw
);
209 void ffi_java_raw_to_ptrarray (ffi_cif
*cif
, ffi_raw
*raw
, void **args
);
210 size_t ffi_java_raw_size (ffi_cif
*cif
);
212 /* ---- Definitions for closures ----------------------------------------- */
217 char tramp
[FFI_TRAMPOLINE_SIZE
];
219 void (*fun
)(ffi_cif
*,void*,void**,void*);
221 } ffi_closure
__attribute__((aligned (8)));
224 ffi_prep_closure (ffi_closure
*,
226 void (*fun
)(ffi_cif
*,void*,void**,void*),
230 char tramp
[FFI_TRAMPOLINE_SIZE
];
234 #if !FFI_NATIVE_RAW_API
236 /* if this is enabled, then a raw closure has the same layout
237 as a regular closure. We use this to install an intermediate
238 handler to do the transaltion, void** -> ffi_raw*. */
240 void (*translate_args
)(ffi_cif
*,void*,void**,void*);
245 void (*fun
)(ffi_cif
*,void*,ffi_raw
*,void*);
251 ffi_prep_raw_closure (ffi_raw_closure
*,
253 void (*fun
)(ffi_cif
*,void*,ffi_raw
*,void*),
257 ffi_prep_java_raw_closure (ffi_raw_closure
*,
259 void (*fun
)(ffi_cif
*,void*,ffi_raw
*,void*),
262 #endif /* FFI_CLOSURES */
264 /* ---- Public interface definition -------------------------------------- */
266 ffi_status
ffi_prep_cif(/*@out@*/ /*@partial@*/ ffi_cif
*cif
,
269 /*@dependent@*/ /*@out@*/ /*@partial@*/ ffi_type
*rtype
,
270 /*@dependent@*/ ffi_type
**atypes
);
272 void ffi_call(/*@dependent@*/ ffi_cif
*cif
,
274 /*@out@*/ void *rvalue
,
275 /*@dependent@*/ void **avalue
);
277 /* Useful for eliminating compiler warnings */
278 #define FFI_FN(f) ((void (*)())f)
280 /* ---- Definitions shared with assembly code ---------------------------- */
284 /* If these change, update src/mips/ffitarget.h. */
285 #define FFI_TYPE_VOID 0
286 #define FFI_TYPE_INT 1
287 #define FFI_TYPE_FLOAT 2
288 #define FFI_TYPE_DOUBLE 3
289 #if @HAVE_LONG_DOUBLE@
290 #define FFI_TYPE_LONGDOUBLE 4
292 #define FFI_TYPE_LONGDOUBLE FFI_TYPE_DOUBLE
294 #define FFI_TYPE_UINT8 5
295 #define FFI_TYPE_SINT8 6
296 #define FFI_TYPE_UINT16 7
297 #define FFI_TYPE_SINT16 8
298 #define FFI_TYPE_UINT32 9
299 #define FFI_TYPE_SINT32 10
300 #define FFI_TYPE_UINT64 11
301 #define FFI_TYPE_SINT64 12
302 #define FFI_TYPE_STRUCT 13
303 #define FFI_TYPE_POINTER 14
305 /* This should always refer to the last type code (for sanity checks) */
306 #define FFI_TYPE_LAST FFI_TYPE_POINTER