1 /* -----------------------------------------------------------------------
2 ffi_common.h - Copyright (C) 2011, 2012, 2013 Anthony Green
3 Copyright (C) 2007 Free Software Foundation, Inc
4 Copyright (c) 1996 Red Hat, Inc.
6 Common internal definitions and macros. Only necessary for building
8 ----------------------------------------------------------------------- */
17 #include <fficonfig.h>
19 /* Do not move this. Some versions of AIX are very picky about where
20 this is positioned. */
25 /* mingw64 defines this already in malloc.h. */
27 # define alloca __builtin_alloca
30 # define MAYBE_UNUSED __attribute__((__unused__))
39 # ifndef alloca /* predefined by HP cc +Olibcalls */
41 # define alloca _alloca
50 /* Check for the existence of memcpy. */
55 # define memcpy(d, s, n) bcopy ((s), (d), (n))
59 #if defined(FFI_DEBUG)
64 void ffi_assert(char *expr
, char *file
, int line
);
65 void ffi_stop_here(void);
66 void ffi_type_test(ffi_type
*a
, char *file
, int line
);
68 #define FFI_ASSERT(x) ((x) ? (void)0 : ffi_assert(#x, __FILE__,__LINE__))
69 #define FFI_ASSERT_AT(x, f, l) ((x) ? 0 : ffi_assert(#x, (f), (l)))
70 #define FFI_ASSERT_VALID_TYPE(x) ffi_type_test (x, __FILE__, __LINE__)
73 #define FFI_ASSERT_AT(x, f, l)
74 #define FFI_ASSERT_VALID_TYPE(x)
77 #define ALIGN(v, a) (((((size_t) (v))-1) | ((a)-1))+1)
78 #define ALIGN_DOWN(v, a) (((size_t) (v)) & -a)
80 /* Perform machine dependent cif processing */
81 ffi_status
ffi_prep_cif_machdep(ffi_cif
*cif
);
82 ffi_status
ffi_prep_cif_machdep_var(ffi_cif
*cif
,
83 unsigned int nfixedargs
, unsigned int ntotalargs
);
85 /* Extended cif, used in callback from assembly routine */
93 /* Terse sized type definitions. */
94 #if defined(_MSC_VER) || defined(__sgi) || defined(__SUNPRO_C)
95 typedef unsigned char UINT8
;
96 typedef signed char SINT8
;
97 typedef unsigned short UINT16
;
98 typedef signed short SINT16
;
99 typedef unsigned int UINT32
;
100 typedef signed int SINT32
;
102 typedef unsigned __int64 UINT64
;
103 typedef signed __int64 SINT64
;
105 # include <inttypes.h>
106 typedef uint64_t UINT64
;
107 typedef int64_t SINT64
;
110 typedef unsigned int UINT8
__attribute__((__mode__(__QI__
)));
111 typedef signed int SINT8
__attribute__((__mode__(__QI__
)));
112 typedef unsigned int UINT16
__attribute__((__mode__(__HI__
)));
113 typedef signed int SINT16
__attribute__((__mode__(__HI__
)));
114 typedef unsigned int UINT32
__attribute__((__mode__(__SI__
)));
115 typedef signed int SINT32
__attribute__((__mode__(__SI__
)));
116 typedef unsigned int UINT64
__attribute__((__mode__(__DI__
)));
117 typedef signed int SINT64
__attribute__((__mode__(__DI__
)));
120 typedef float FLOAT32
;
123 #define __builtin_expect(x, expected_value) (x)
125 #define LIKELY(x) __builtin_expect(!!(x),1)
126 #define UNLIKELY(x) __builtin_expect((x)!=0,0)