Restore execute permissions
[platform/upstream/libffi.git] / .pc / define-generic-symbols-carefully / src / powerpc / ffitarget.h
1 /* -----------------------------------------------------------------*-C-*-
2    ffitarget.h - Copyright (c) 1996-2003  Red Hat, Inc.
3    Copyright (C) 2007, 2008 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 #define POWERPC64
35 #elif defined (POWERPC_DARWIN) && defined (__ppc64__)   /* Darwin */
36 #define POWERPC64
37 #elif defined (POWERPC_AIX) && defined (__64BIT__)      /* AIX64 */
38 #define POWERPC64
39 #endif
40
41 #ifndef LIBFFI_ASM
42 typedef unsigned long          ffi_arg;
43 typedef signed long            ffi_sarg;
44
45 typedef enum ffi_abi {
46   FFI_FIRST_ABI = 0,
47
48 #ifdef POWERPC
49   FFI_SYSV,
50   FFI_GCC_SYSV,
51   FFI_LINUX64,
52   FFI_LINUX,
53   FFI_LINUX_SOFT_FLOAT,
54 # ifdef POWERPC64
55   FFI_DEFAULT_ABI = FFI_LINUX64,
56 # else
57 #  if (!defined(__NO_FPRS__) && (__LDBL_MANT_DIG__ == 106))
58   FFI_DEFAULT_ABI = FFI_LINUX,
59 #  else
60 #   ifdef __NO_FPRS__
61   FFI_DEFAULT_ABI = FFI_LINUX_SOFT_FLOAT,
62 #   else
63   FFI_DEFAULT_ABI = FFI_GCC_SYSV,
64 #   endif
65 #  endif
66 # endif
67 #endif
68
69 #ifdef POWERPC_AIX
70   FFI_AIX,
71   FFI_DARWIN,
72   FFI_DEFAULT_ABI = FFI_AIX,
73 #endif
74
75 #ifdef POWERPC_DARWIN
76   FFI_AIX,
77   FFI_DARWIN,
78   FFI_DEFAULT_ABI = FFI_DARWIN,
79 #endif
80
81 #ifdef POWERPC_FREEBSD
82   FFI_SYSV,
83   FFI_GCC_SYSV,
84   FFI_LINUX64,
85   FFI_LINUX,
86   FFI_LINUX_SOFT_FLOAT,
87   FFI_DEFAULT_ABI = FFI_SYSV,
88 #endif
89
90   FFI_LAST_ABI
91 } ffi_abi;
92 #endif
93
94 /* ---- Definitions for closures ----------------------------------------- */
95
96 #define FFI_CLOSURES 1
97 #define FFI_NATIVE_RAW_API 0
98
99 /* For additional types like the below, take care about the order in
100    ppc_closures.S. They must follow after the FFI_TYPE_LAST.  */
101
102 /* Needed for soft-float long-double-128 support.  */
103 #define FFI_TYPE_UINT128 (FFI_TYPE_LAST + 1)
104
105 /* Needed for FFI_SYSV small structure returns.
106    We use two flag bits, (FLAG_SYSV_SMST_R3, FLAG_SYSV_SMST_R4) which are
107    defined in ffi.c, to determine the exact return type and its size.  */
108 #define FFI_SYSV_TYPE_SMALL_STRUCT (FFI_TYPE_LAST + 2)
109
110 #if defined(POWERPC64) || defined(POWERPC_AIX)
111 #define FFI_TRAMPOLINE_SIZE 24
112 #else /* POWERPC || POWERPC_AIX */
113 #define FFI_TRAMPOLINE_SIZE 40
114 #endif
115
116 #ifndef LIBFFI_ASM
117 #if defined(POWERPC_DARWIN) || defined(POWERPC_AIX)
118 struct ffi_aix_trampoline_struct {
119     void * code_pointer;        /* Pointer to ffi_closure_ASM */
120     void * toc;                 /* TOC */
121     void * static_chain;        /* Pointer to closure */
122 };
123 #endif
124 #endif
125
126 #endif