1 /* -----------------------------------------------------------------------
2 ffi.c - Copyright (c) 1998, 2001, 2007 Red Hat, Inc.
4 Alpha Foreign Function Interface
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:
14 The above copyright notice and this permission notice shall be included
15 in all copies or substantial portions of the Software.
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 ----------------------------------------------------------------------- */
28 #include <ffi_common.h>
31 /* Force FFI_TYPE_LONGDOUBLE to be different than FFI_TYPE_DOUBLE;
32 all further uses in this file will refer to the 128-bit type. */
33 #if defined(__LONG_DOUBLE_128__)
34 # if FFI_TYPE_LONGDOUBLE != 4
35 # error FFI_TYPE_LONGDOUBLE out of date
38 # undef FFI_TYPE_LONGDOUBLE
39 # define FFI_TYPE_LONGDOUBLE 4
42 extern void ffi_call_osf(void *, unsigned long, unsigned, void *, void (*)())
44 extern void ffi_closure_osf(void) FFI_HIDDEN
;
48 ffi_prep_cif_machdep(ffi_cif
*cif
)
50 /* Adjust cif->bytes to represent a minimum 6 words for the temporary
51 register argument loading area. */
52 if (cif
->bytes
< 6*FFI_SIZEOF_ARG
)
53 cif
->bytes
= 6*FFI_SIZEOF_ARG
;
55 /* Set the return type flag */
56 switch (cif
->rtype
->type
)
61 cif
->flags
= cif
->rtype
->type
;
64 case FFI_TYPE_LONGDOUBLE
:
65 /* 128-bit long double is returned in memory, like a struct. */
66 cif
->flags
= FFI_TYPE_STRUCT
;
70 cif
->flags
= FFI_TYPE_INT
;
79 ffi_call(ffi_cif
*cif
, void (*fn
)(), void *rvalue
, void **avalue
)
81 unsigned long *stack
, *argp
;
85 /* If the return value is a struct and we don't have a return
86 value address then we need to make one. */
87 if (rvalue
== NULL
&& cif
->flags
== FFI_TYPE_STRUCT
)
88 rvalue
= alloca(cif
->rtype
->size
);
90 /* Allocate the space for the arguments, plus 4 words of temp
91 space for ffi_call_osf. */
92 argp
= stack
= alloca(cif
->bytes
+ 4*FFI_SIZEOF_ARG
);
94 if (cif
->flags
== FFI_TYPE_STRUCT
)
95 *(void **) argp
++ = rvalue
;
99 arg_types
= cif
->arg_types
;
103 size_t size
= (*arg_types
)->size
;
105 switch ((*arg_types
)->type
)
108 *(SINT64
*) argp
= *(SINT8
*)(* avalue
);
112 *(SINT64
*) argp
= *(UINT8
*)(* avalue
);
115 case FFI_TYPE_SINT16
:
116 *(SINT64
*) argp
= *(SINT16
*)(* avalue
);
119 case FFI_TYPE_UINT16
:
120 *(SINT64
*) argp
= *(UINT16
*)(* avalue
);
123 case FFI_TYPE_SINT32
:
124 case FFI_TYPE_UINT32
:
125 /* Note that unsigned 32-bit quantities are sign extended. */
126 *(SINT64
*) argp
= *(SINT32
*)(* avalue
);
129 case FFI_TYPE_SINT64
:
130 case FFI_TYPE_UINT64
:
131 case FFI_TYPE_POINTER
:
132 *(UINT64
*) argp
= *(UINT64
*)(* avalue
);
136 if (argp
- stack
< 6)
138 /* Note the conversion -- all the fp regs are loaded as
139 doubles. The in-register format is the same. */
140 *(double *) argp
= *(float *)(* avalue
);
143 *(float *) argp
= *(float *)(* avalue
);
146 case FFI_TYPE_DOUBLE
:
147 *(double *) argp
= *(double *)(* avalue
);
150 case FFI_TYPE_LONGDOUBLE
:
151 /* 128-bit long double is passed by reference. */
152 *(long double **) argp
= (long double *)(* avalue
);
153 size
= sizeof (long double *);
156 case FFI_TYPE_STRUCT
:
157 memcpy(argp
, *avalue
, (*arg_types
)->size
);
164 argp
+= ALIGN(size
, FFI_SIZEOF_ARG
) / FFI_SIZEOF_ARG
;
165 i
++, arg_types
++, avalue
++;
168 ffi_call_osf(stack
, cif
->bytes
, cif
->flags
, rvalue
, fn
);
173 ffi_prep_closure_loc (ffi_closure
* closure
,
175 void (*fun
)(ffi_cif
*, void*, void**, void*),
181 tramp
= (unsigned int *) &closure
->tramp
[0];
182 tramp
[0] = 0x47fb0401; /* mov $27,$1 */
183 tramp
[1] = 0xa77b0010; /* ldq $27,16($27) */
184 tramp
[2] = 0x6bfb0000; /* jmp $31,($27),0 */
185 tramp
[3] = 0x47ff041f; /* nop */
186 *(void **) &tramp
[4] = ffi_closure_osf
;
190 closure
->user_data
= user_data
;
194 Tru64 UNIX as doesn't understand the imb mnemonic, so use call_pal
195 instead, since both Compaq as and gas can handle it.
197 0x86 is PAL_imb in Tru64 UNIX <alpha/pal.h>. */
198 asm volatile ("call_pal 0x86" : : : "memory");
205 ffi_closure_osf_inner(ffi_closure
*closure
, void *rvalue
, unsigned long *argp
)
209 ffi_type
**arg_types
;
213 avalue
= alloca(cif
->nargs
* sizeof(void *));
217 /* Copy the caller's structure return address to that the closure
218 returns the data directly to the caller. */
219 if (cif
->flags
== FFI_TYPE_STRUCT
)
221 rvalue
= (void *) argp
[0];
227 arg_types
= cif
->arg_types
;
229 /* Grab the addresses of the arguments from the stack frame. */
232 size_t size
= arg_types
[i
]->size
;
234 switch (arg_types
[i
]->type
)
238 case FFI_TYPE_SINT16
:
239 case FFI_TYPE_UINT16
:
240 case FFI_TYPE_SINT32
:
241 case FFI_TYPE_UINT32
:
242 case FFI_TYPE_SINT64
:
243 case FFI_TYPE_UINT64
:
244 case FFI_TYPE_POINTER
:
245 case FFI_TYPE_STRUCT
:
246 avalue
[i
] = &argp
[argn
];
252 /* Floats coming from registers need conversion from double
253 back to float format. */
254 *(float *)&argp
[argn
- 6] = *(double *)&argp
[argn
- 6];
255 avalue
[i
] = &argp
[argn
- 6];
258 avalue
[i
] = &argp
[argn
];
261 case FFI_TYPE_DOUBLE
:
262 avalue
[i
] = &argp
[argn
- (argn
< 6 ? 6 : 0)];
265 case FFI_TYPE_LONGDOUBLE
:
266 /* 128-bit long double is passed by reference. */
267 avalue
[i
] = (long double *) argp
[argn
];
268 size
= sizeof (long double *);
275 argn
+= ALIGN(size
, FFI_SIZEOF_ARG
) / FFI_SIZEOF_ARG
;
279 /* Invoke the closure. */
280 closure
->fun (cif
, rvalue
, avalue
, closure
->user_data
);
282 /* Tell ffi_closure_osf how to perform return type promotions. */
283 return cif
->rtype
->type
;