| 1 |
732 |
jeremybenn |
/* -----------------------------------------------------------------*-C-*-
|
| 2 |
|
|
ffitarget.h - Copyright (c) 1996-2003 Red Hat, Inc.
|
| 3 |
|
|
Copyright (C) 2007, 2008, 2010 Free Software Foundation, Inc
|
| 4 |
|
|
Target configuration macros for PowerPC.
|
| 5 |
|
|
|
| 6 |
|
|
Permission is hereby granted, free of charge, to any person obtaining
|
| 7 |
|
|
a copy of this software and associated documentation files (the
|
| 8 |
|
|
``Software''), to deal in the Software without restriction, including
|
| 9 |
|
|
without limitation the rights to use, copy, modify, merge, publish,
|
| 10 |
|
|
distribute, sublicense, and/or sell copies of the Software, and to
|
| 11 |
|
|
permit persons to whom the Software is furnished to do so, subject to
|
| 12 |
|
|
the following conditions:
|
| 13 |
|
|
|
| 14 |
|
|
The above copyright notice and this permission notice shall be included
|
| 15 |
|
|
in all copies or substantial portions of the Software.
|
| 16 |
|
|
|
| 17 |
|
|
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
|
| 18 |
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
| 19 |
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
| 20 |
|
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
| 21 |
|
|
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
| 22 |
|
|
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 23 |
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
| 24 |
|
|
DEALINGS IN THE SOFTWARE.
|
| 25 |
|
|
|
| 26 |
|
|
----------------------------------------------------------------------- */
|
| 27 |
|
|
|
| 28 |
|
|
#ifndef LIBFFI_TARGET_H
|
| 29 |
|
|
#define LIBFFI_TARGET_H
|
| 30 |
|
|
|
| 31 |
|
|
/* ---- System specific configurations ----------------------------------- */
|
| 32 |
|
|
|
| 33 |
|
|
#if defined (POWERPC) && defined (__powerpc64__) /* linux64 */
|
| 34 |
|
|
#ifndef POWERPC64
|
| 35 |
|
|
#define POWERPC64
|
| 36 |
|
|
#endif
|
| 37 |
|
|
#elif defined (POWERPC_DARWIN) && defined (__ppc64__) /* Darwin64 */
|
| 38 |
|
|
#ifndef POWERPC64
|
| 39 |
|
|
#define POWERPC64
|
| 40 |
|
|
#endif
|
| 41 |
|
|
#ifndef POWERPC_DARWIN64
|
| 42 |
|
|
#define POWERPC_DARWIN64
|
| 43 |
|
|
#endif
|
| 44 |
|
|
#elif defined (POWERPC_AIX) && defined (__64BIT__) /* AIX64 */
|
| 45 |
|
|
#ifndef POWERPC64
|
| 46 |
|
|
#define POWERPC64
|
| 47 |
|
|
#endif
|
| 48 |
|
|
#endif
|
| 49 |
|
|
|
| 50 |
|
|
#ifndef LIBFFI_ASM
|
| 51 |
|
|
typedef unsigned long ffi_arg;
|
| 52 |
|
|
typedef signed long ffi_sarg;
|
| 53 |
|
|
|
| 54 |
|
|
typedef enum ffi_abi {
|
| 55 |
|
|
FFI_FIRST_ABI = 0,
|
| 56 |
|
|
|
| 57 |
|
|
#ifdef POWERPC
|
| 58 |
|
|
FFI_SYSV,
|
| 59 |
|
|
FFI_GCC_SYSV,
|
| 60 |
|
|
FFI_LINUX64,
|
| 61 |
|
|
FFI_LINUX,
|
| 62 |
|
|
FFI_LINUX_SOFT_FLOAT,
|
| 63 |
|
|
# ifdef POWERPC64
|
| 64 |
|
|
FFI_DEFAULT_ABI = FFI_LINUX64,
|
| 65 |
|
|
# else
|
| 66 |
|
|
# if (!defined(__NO_FPRS__) && (__LDBL_MANT_DIG__ == 106))
|
| 67 |
|
|
FFI_DEFAULT_ABI = FFI_LINUX,
|
| 68 |
|
|
# else
|
| 69 |
|
|
# ifdef __NO_FPRS__
|
| 70 |
|
|
FFI_DEFAULT_ABI = FFI_LINUX_SOFT_FLOAT,
|
| 71 |
|
|
# else
|
| 72 |
|
|
FFI_DEFAULT_ABI = FFI_GCC_SYSV,
|
| 73 |
|
|
# endif
|
| 74 |
|
|
# endif
|
| 75 |
|
|
# endif
|
| 76 |
|
|
#endif
|
| 77 |
|
|
|
| 78 |
|
|
#ifdef POWERPC_AIX
|
| 79 |
|
|
FFI_AIX,
|
| 80 |
|
|
FFI_DARWIN,
|
| 81 |
|
|
FFI_DEFAULT_ABI = FFI_AIX,
|
| 82 |
|
|
#endif
|
| 83 |
|
|
|
| 84 |
|
|
#ifdef POWERPC_DARWIN
|
| 85 |
|
|
FFI_AIX,
|
| 86 |
|
|
FFI_DARWIN,
|
| 87 |
|
|
FFI_DEFAULT_ABI = FFI_DARWIN,
|
| 88 |
|
|
#endif
|
| 89 |
|
|
|
| 90 |
|
|
#ifdef POWERPC_FREEBSD
|
| 91 |
|
|
FFI_SYSV,
|
| 92 |
|
|
FFI_GCC_SYSV,
|
| 93 |
|
|
FFI_LINUX64,
|
| 94 |
|
|
FFI_LINUX,
|
| 95 |
|
|
FFI_LINUX_SOFT_FLOAT,
|
| 96 |
|
|
FFI_DEFAULT_ABI = FFI_SYSV,
|
| 97 |
|
|
#endif
|
| 98 |
|
|
|
| 99 |
|
|
FFI_LAST_ABI
|
| 100 |
|
|
} ffi_abi;
|
| 101 |
|
|
#endif
|
| 102 |
|
|
|
| 103 |
|
|
/* ---- Definitions for closures ----------------------------------------- */
|
| 104 |
|
|
|
| 105 |
|
|
#define FFI_CLOSURES 1
|
| 106 |
|
|
#define FFI_NATIVE_RAW_API 0
|
| 107 |
|
|
|
| 108 |
|
|
/* For additional types like the below, take care about the order in
|
| 109 |
|
|
ppc_closures.S. They must follow after the FFI_TYPE_LAST. */
|
| 110 |
|
|
|
| 111 |
|
|
/* Needed for soft-float long-double-128 support. */
|
| 112 |
|
|
#define FFI_TYPE_UINT128 (FFI_TYPE_LAST + 1)
|
| 113 |
|
|
|
| 114 |
|
|
/* Needed for FFI_SYSV small structure returns.
|
| 115 |
|
|
We use two flag bits, (FLAG_SYSV_SMST_R3, FLAG_SYSV_SMST_R4) which are
|
| 116 |
|
|
defined in ffi.c, to determine the exact return type and its size. */
|
| 117 |
|
|
#define FFI_SYSV_TYPE_SMALL_STRUCT (FFI_TYPE_LAST + 2)
|
| 118 |
|
|
|
| 119 |
|
|
#if defined(POWERPC64) || defined(POWERPC_AIX)
|
| 120 |
|
|
# if defined(POWERPC_DARWIN64)
|
| 121 |
|
|
# define FFI_TRAMPOLINE_SIZE 48
|
| 122 |
|
|
# else
|
| 123 |
|
|
# define FFI_TRAMPOLINE_SIZE 24
|
| 124 |
|
|
# endif
|
| 125 |
|
|
#else /* POWERPC || POWERPC_AIX */
|
| 126 |
|
|
# define FFI_TRAMPOLINE_SIZE 40
|
| 127 |
|
|
#endif
|
| 128 |
|
|
|
| 129 |
|
|
#ifndef LIBFFI_ASM
|
| 130 |
|
|
#if defined(POWERPC_DARWIN) || defined(POWERPC_AIX)
|
| 131 |
|
|
struct ffi_aix_trampoline_struct {
|
| 132 |
|
|
void * code_pointer; /* Pointer to ffi_closure_ASM */
|
| 133 |
|
|
void * toc; /* TOC */
|
| 134 |
|
|
void * static_chain; /* Pointer to closure */
|
| 135 |
|
|
};
|
| 136 |
|
|
#endif
|
| 137 |
|
|
#endif
|
| 138 |
|
|
|
| 139 |
|
|
#endif
|