Spaces:
Sleeping
Sleeping
/* -----------------------------------------------------------------*-C-*- | |
libffi 3.4.2 | |
- Copyright (c) 2011, 2014, 2019, 2021 Anthony Green | |
- Copyright (c) 1996-2003, 2007, 2008 Red Hat, Inc. | |
Permission is hereby granted, free of charge, to any person | |
obtaining a copy of this software and associated documentation | |
files (the ``Software''), to deal in the Software without | |
restriction, including without limitation the rights to use, copy, | |
modify, merge, publish, distribute, sublicense, and/or sell copies | |
of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be | |
included in all copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, | |
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | |
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT | |
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | |
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | |
DEALINGS IN THE SOFTWARE. | |
----------------------------------------------------------------------- */ | |
/* ------------------------------------------------------------------- | |
Most of the API is documented in doc/libffi.texi. | |
The raw API is designed to bypass some of the argument packing and | |
unpacking on architectures for which it can be avoided. Routines | |
are provided to emulate the raw API if the underlying platform | |
doesn't allow faster implementation. | |
More details on the raw API can be found in: | |
http://gcc.gnu.org/ml/java/1999-q3/msg00138.html | |
and | |
http://gcc.gnu.org/ml/java/1999-q3/msg00174.html | |
-------------------------------------------------------------------- */ | |
extern "C" { | |
/* Specify which architecture libffi is configured for. */ | |
/* ---- System configuration information --------------------------------- */ | |
/* LONG_LONG_MAX is not always defined (not if STRICT_ANSI, for example). | |
But we can find it either under the correct ANSI name, or under GNU | |
C's internal name. */ | |
/* The closure code assumes that this works on pointers, i.e. a size_t | |
can hold a pointer. */ | |
typedef struct _ffi_type | |
{ | |
size_t size; | |
unsigned short alignment; | |
unsigned short type; | |
struct _ffi_type **elements; | |
} ffi_type; | |
/* Need minimal decorations for DLLs to work on Windows. GCC has | |
autoimport and autoexport. Always mark externally visible symbols | |
as dllimport for MSVC clients, even if it means an extra indirection | |
when using the static version of the library. | |
Besides, as a workaround, they can define FFI_BUILDING if they | |
*know* they are going to link with the static library. */ | |
/* The externally visible type declarations also need the MSVC DLL | |
decorations, or they will not be exported from the object file. */ | |
/* These are defined in types.c. */ | |
FFI_EXTERN ffi_type ffi_type_void; | |
FFI_EXTERN ffi_type ffi_type_uint8; | |
FFI_EXTERN ffi_type ffi_type_sint8; | |
FFI_EXTERN ffi_type ffi_type_uint16; | |
FFI_EXTERN ffi_type ffi_type_sint16; | |
FFI_EXTERN ffi_type ffi_type_uint32; | |
FFI_EXTERN ffi_type ffi_type_sint32; | |
FFI_EXTERN ffi_type ffi_type_uint64; | |
FFI_EXTERN ffi_type ffi_type_sint64; | |
FFI_EXTERN ffi_type ffi_type_float; | |
FFI_EXTERN ffi_type ffi_type_double; | |
FFI_EXTERN ffi_type ffi_type_pointer; | |
FFI_EXTERN ffi_type ffi_type_longdouble; | |
FFI_EXTERN ffi_type ffi_type_complex_float; | |
FFI_EXTERN ffi_type ffi_type_complex_double; | |
FFI_EXTERN ffi_type ffi_type_complex_longdouble; | |
typedef enum { | |
FFI_OK = 0, | |
FFI_BAD_TYPEDEF, | |
FFI_BAD_ABI, | |
FFI_BAD_ARGTYPE | |
} ffi_status; | |
typedef struct { | |
ffi_abi abi; | |
unsigned nargs; | |
ffi_type **arg_types; | |
ffi_type *rtype; | |
unsigned bytes; | |
unsigned flags; | |
FFI_EXTRA_CIF_FIELDS; | |
} ffi_cif; | |
/* ---- Definitions for the raw API -------------------------------------- */ | |
typedef union { | |
ffi_sarg sint; | |
ffi_arg uint; | |
float flt; | |
char data[FFI_SIZEOF_ARG]; | |
void* ptr; | |
} ffi_raw; | |
/* This is a special case for mips64/n32 ABI (and perhaps others) where | |
sizeof(void *) is 4 and FFI_SIZEOF_ARG is 8. */ | |
typedef union { | |
signed int sint; | |
unsigned int uint; | |
float flt; | |
char data[FFI_SIZEOF_JAVA_RAW]; | |
void* ptr; | |
} ffi_java_raw; | |
typedef ffi_raw ffi_java_raw; | |
FFI_API | |
void ffi_raw_call (ffi_cif *cif, | |
void (*fn)(void), | |
void *rvalue, | |
ffi_raw *avalue); | |
FFI_API void ffi_ptrarray_to_raw (ffi_cif *cif, void **args, ffi_raw *raw); | |
FFI_API void ffi_raw_to_ptrarray (ffi_cif *cif, ffi_raw *raw, void **args); | |
FFI_API size_t ffi_raw_size (ffi_cif *cif); | |
/* This is analogous to the raw API, except it uses Java parameter | |
packing, even on 64-bit machines. I.e. on 64-bit machines longs | |
and doubles are followed by an empty 64-bit word. */ | |
FFI_API | |
void ffi_java_raw_call (ffi_cif *cif, | |
void (*fn)(void), | |
void *rvalue, | |
ffi_java_raw *avalue) __attribute__((deprecated)); | |
FFI_API | |
void ffi_java_ptrarray_to_raw (ffi_cif *cif, void **args, ffi_java_raw *raw) __attribute__((deprecated)); | |
FFI_API | |
void ffi_java_raw_to_ptrarray (ffi_cif *cif, ffi_java_raw *raw, void **args) __attribute__((deprecated)); | |
FFI_API | |
size_t ffi_java_raw_size (ffi_cif *cif) __attribute__((deprecated)); | |
/* ---- Definitions for closures ----------------------------------------- */ | |
__declspec(align(8)) | |
typedef struct { | |
void *trampoline_table; | |
void *trampoline_table_entry; | |
union { | |
char tramp[FFI_TRAMPOLINE_SIZE]; | |
void *ftramp; | |
}; | |
ffi_cif *cif; | |
void (*fun)(ffi_cif*,void*,void**,void*); | |
void *user_data; | |
} ffi_closure | |
__attribute__((aligned (8))) | |
; | |
FFI_API void *ffi_closure_alloc (size_t size, void **code); | |
FFI_API void ffi_closure_free (void *); | |
FFI_API ffi_status | |
ffi_prep_closure (ffi_closure*, | |
ffi_cif *, | |
void (*fun)(ffi_cif*,void*,void**,void*), | |
void *user_data) | |
__attribute__((deprecated ("use ffi_prep_closure_loc instead"))) | |
__attribute__((deprecated)) | |
; | |
FFI_API ffi_status | |
ffi_prep_closure_loc (ffi_closure*, | |
ffi_cif *, | |
void (*fun)(ffi_cif*,void*,void**,void*), | |
void *user_data, | |
void*codeloc); | |
typedef struct { | |
void *trampoline_table; | |
void *trampoline_table_entry; | |
char tramp[FFI_TRAMPOLINE_SIZE]; | |
ffi_cif *cif; | |
/* If this is enabled, then a raw closure has the same layout | |
as a regular closure. We use this to install an intermediate | |
handler to do the transaltion, void** -> ffi_raw*. */ | |
void (*translate_args)(ffi_cif*,void*,void**,void*); | |
void *this_closure; | |
void (*fun)(ffi_cif*,void*,ffi_raw*,void*); | |
void *user_data; | |
} ffi_raw_closure; | |
typedef struct { | |
void *trampoline_table; | |
void *trampoline_table_entry; | |
char tramp[FFI_TRAMPOLINE_SIZE]; | |
ffi_cif *cif; | |
/* If this is enabled, then a raw closure has the same layout | |
as a regular closure. We use this to install an intermediate | |
handler to do the translation, void** -> ffi_raw*. */ | |
void (*translate_args)(ffi_cif*,void*,void**,void*); | |
void *this_closure; | |
void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*); | |
void *user_data; | |
} ffi_java_raw_closure; | |
FFI_API ffi_status | |
ffi_prep_raw_closure (ffi_raw_closure*, | |
ffi_cif *cif, | |
void (*fun)(ffi_cif*,void*,ffi_raw*,void*), | |
void *user_data); | |
FFI_API ffi_status | |
ffi_prep_raw_closure_loc (ffi_raw_closure*, | |
ffi_cif *cif, | |
void (*fun)(ffi_cif*,void*,ffi_raw*,void*), | |
void *user_data, | |
void *codeloc); | |
FFI_API ffi_status | |
ffi_prep_java_raw_closure (ffi_java_raw_closure*, | |
ffi_cif *cif, | |
void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*), | |
void *user_data) __attribute__((deprecated)); | |
FFI_API ffi_status | |
ffi_prep_java_raw_closure_loc (ffi_java_raw_closure*, | |
ffi_cif *cif, | |
void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*), | |
void *user_data, | |
void *codeloc) __attribute__((deprecated)); | |
typedef struct { | |
void *tramp; | |
ffi_cif *cif; | |
void (*fun)(ffi_cif*,void*,void**,void*); | |
} ffi_go_closure; | |
FFI_API ffi_status ffi_prep_go_closure (ffi_go_closure*, ffi_cif *, | |
void (*fun)(ffi_cif*,void*,void**,void*)); | |
FFI_API void ffi_call_go (ffi_cif *cif, void (*fn)(void), void *rvalue, | |
void **avalue, void *closure); | |
/* ---- Public interface definition -------------------------------------- */ | |
FFI_API | |
ffi_status ffi_prep_cif(ffi_cif *cif, | |
ffi_abi abi, | |
unsigned int nargs, | |
ffi_type *rtype, | |
ffi_type **atypes); | |
FFI_API | |
ffi_status ffi_prep_cif_var(ffi_cif *cif, | |
ffi_abi abi, | |
unsigned int nfixedargs, | |
unsigned int ntotalargs, | |
ffi_type *rtype, | |
ffi_type **atypes); | |
FFI_API | |
void ffi_call(ffi_cif *cif, | |
void (*fn)(void), | |
void *rvalue, | |
void **avalue); | |
FFI_API | |
ffi_status ffi_get_struct_offsets (ffi_abi abi, ffi_type *struct_type, | |
size_t *offsets); | |
/* Useful for eliminating compiler warnings. */ | |
/* ---- Definitions shared with assembly code ---------------------------- */ | |
/* If these change, update src/mips/ffitarget.h. */ | |
/* This should always refer to the last type code (for sanity checks). */ | |
} | |