1 /* -----------------------------------------------------------------------
2 java_raw_api.c - Copyright (c) 1999 Red Hat, Inc.
6 Raw_api.c author: Kresten Krab Thorup <krab@gnu.org>
7 Java_raw_api.c author: Hans-J. Boehm <hboehm@hpl.hp.com>
11 Permission is hereby granted, free of charge, to any person obtaining
12 a copy of this software and associated documentation files (the
13 ``Software''), to deal in the Software without restriction, including
14 without limitation the rights to use, copy, modify, merge, publish,
15 distribute, sublicense, and/or sell copies of the Software, and to
16 permit persons to whom the Software is furnished to do so, subject to
17 the following conditions:
19 The above copyright notice and this permission notice shall be included
20 in all copies or substantial portions of the Software.
22 THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS
23 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
25 IN NO EVENT SHALL CYGNUS SOLUTIONS BE LIABLE FOR ANY CLAIM, DAMAGES OR
26 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
27 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28 OTHER DEALINGS IN THE SOFTWARE.
29 ----------------------------------------------------------------------- */
31 /* This defines a Java- and 64-bit specific variant of the raw API. */
32 /* It assumes that "raw" argument blocks look like Java stacks on a */
33 /* 64-bit machine. Arguments that can be stored in a single stack */
34 /* stack slots (longs, doubles) occupy 128 bits, but only the first */
35 /* 64 bits are actually used. */
38 #include <ffi_common.h>
41 #if !defined(NO_JAVA_RAW_API) && !defined(FFI_NO_RAW_API)
44 ffi_java_raw_size (ffi_cif
*cif
)
49 ffi_type
**at
= cif
->arg_types
;
51 for (i
= cif
->nargs
-1; i
>= 0; i
--, at
++)
53 switch((*at
) -> type
) {
57 result
+= 2 * FFI_SIZEOF_ARG
;
60 /* No structure parameters in Java. */
63 result
+= FFI_SIZEOF_ARG
;
72 ffi_java_raw_to_ptrarray (ffi_cif
*cif
, ffi_raw
*raw
, void **args
)
75 ffi_type
**tp
= cif
->arg_types
;
79 for (i
= 0; i
< cif
->nargs
; i
++, tp
++, args
++)
85 *args
= (void*) ((char*)(raw
++) + 3);
90 *args
= (void*) ((char*)(raw
++) + 2);
93 #if FFI_SIZEOF_ARG == 8
102 case FFI_TYPE_POINTER
:
103 *args
= (void*) &(raw
++)->ptr
;
108 raw
+= ALIGN ((*tp
)->size
, FFI_SIZEOF_ARG
) / FFI_SIZEOF_ARG
;
112 #else /* WORDS_BIGENDIAN */
116 /* then assume little endian */
117 for (i
= 0; i
< cif
->nargs
; i
++, tp
++, args
++)
119 #if FFI_SIZEOF_ARG == 8
120 switch((*tp
)->type
) {
121 case FFI_TYPE_UINT64
:
122 case FFI_TYPE_SINT64
:
123 case FFI_TYPE_DOUBLE
:
128 *args
= (void*) raw
++;
130 #else /* FFI_SIZEOF_ARG != 8 */
132 raw
+= ALIGN ((*tp
)->size
, sizeof (void*)) / sizeof (void*);
133 #endif /* FFI_SIZEOF_ARG == 8 */
137 #error "pdp endian not supported"
140 #endif /* WORDS_BIGENDIAN */
144 ffi_java_ptrarray_to_raw (ffi_cif
*cif
, void **args
, ffi_raw
*raw
)
147 ffi_type
**tp
= cif
->arg_types
;
149 for (i
= 0; i
< cif
->nargs
; i
++, tp
++, args
++)
155 *(UINT32
*)(raw
++) = *(UINT8
*) (*args
);
157 (raw
++)->uint
= *(UINT8
*) (*args
);
163 *(SINT32
*)(raw
++) = *(SINT8
*) (*args
);
165 (raw
++)->sint
= *(SINT8
*) (*args
);
169 case FFI_TYPE_UINT16
:
171 *(UINT32
*)(raw
++) = *(UINT16
*) (*args
);
173 (raw
++)->uint
= *(UINT16
*) (*args
);
177 case FFI_TYPE_SINT16
:
179 *(SINT32
*)(raw
++) = *(SINT16
*) (*args
);
181 (raw
++)->sint
= *(SINT16
*) (*args
);
185 case FFI_TYPE_UINT32
:
187 *(UINT32
*)(raw
++) = *(UINT32
*) (*args
);
189 (raw
++)->uint
= *(UINT32
*) (*args
);
193 case FFI_TYPE_SINT32
:
195 *(SINT32
*)(raw
++) = *(SINT32
*) (*args
);
197 (raw
++)->sint
= *(SINT32
*) (*args
);
202 (raw
++)->flt
= *(FLOAT32
*) (*args
);
205 #if FFI_SIZEOF_ARG == 8
206 case FFI_TYPE_UINT64
:
207 case FFI_TYPE_SINT64
:
208 case FFI_TYPE_DOUBLE
:
209 raw
->uint
= *(UINT64
*) (*args
);
214 case FFI_TYPE_POINTER
:
215 (raw
++)->ptr
= **(void***) args
;
219 #if FFI_SIZEOF_ARG == 8
220 FFI_ASSERT(0); /* Should have covered all cases */
222 memcpy ((void*) raw
->data
, (void*)*args
, (*tp
)->size
);
223 raw
+= ALIGN ((*tp
)->size
, FFI_SIZEOF_ARG
) / FFI_SIZEOF_ARG
;
229 #if !FFI_NATIVE_RAW_API
232 ffi_java_rvalue_to_raw (ffi_cif
*cif
, void *rvalue
)
234 #if WORDS_BIGENDIAN && FFI_SIZEOF_ARG == 8
235 switch (cif
->rtype
->type
)
238 case FFI_TYPE_UINT16
:
239 case FFI_TYPE_UINT32
:
240 *(UINT64
*)rvalue
<<= 32;
244 case FFI_TYPE_SINT16
:
245 case FFI_TYPE_SINT32
:
247 *(SINT64
*)rvalue
<<= 32;
257 ffi_java_raw_to_rvalue (ffi_cif
*cif
, void *rvalue
)
259 #if WORDS_BIGENDIAN && FFI_SIZEOF_ARG == 8
260 switch (cif
->rtype
->type
)
263 case FFI_TYPE_UINT16
:
264 case FFI_TYPE_UINT32
:
265 *(UINT64
*)rvalue
>>= 32;
269 case FFI_TYPE_SINT16
:
270 case FFI_TYPE_SINT32
:
272 *(SINT64
*)rvalue
>>= 32;
281 /* This is a generic definition of ffi_raw_call, to be used if the
282 * native system does not provide a machine-specific implementation.
283 * Having this, allows code to be written for the raw API, without
284 * the need for system-specific code to handle input in that format;
285 * these following couple of functions will handle the translation forth
286 * and back automatically. */
288 void ffi_java_raw_call (/*@dependent@*/ ffi_cif
*cif
,
290 /*@out@*/ void *rvalue
,
291 /*@dependent@*/ ffi_raw
*raw
)
293 void **avalue
= (void**) alloca (cif
->nargs
* sizeof (void*));
294 ffi_java_raw_to_ptrarray (cif
, raw
, avalue
);
295 ffi_call (cif
, fn
, rvalue
, avalue
);
296 ffi_java_rvalue_to_raw (cif
, rvalue
);
299 #if FFI_CLOSURES /* base system provides closures */
302 ffi_java_translate_args (ffi_cif
*cif
, void *rvalue
,
303 void **avalue
, void *user_data
)
305 ffi_raw
*raw
= (ffi_raw
*)alloca (ffi_java_raw_size (cif
));
306 ffi_raw_closure
*cl
= (ffi_raw_closure
*)user_data
;
308 ffi_java_ptrarray_to_raw (cif
, avalue
, raw
);
309 (*cl
->fun
) (cif
, rvalue
, raw
, cl
->user_data
);
310 ffi_java_raw_to_rvalue (cif
, rvalue
);
313 /* Again, here is the generic version of ffi_prep_raw_closure, which
314 * will install an intermediate "hub" for translation of arguments from
315 * the pointer-array format, to the raw format */
318 ffi_prep_java_raw_closure (ffi_raw_closure
* cl
,
320 void (*fun
)(ffi_cif
*,void*,ffi_raw
*,void*),
325 status
= ffi_prep_closure ((ffi_closure
*) cl
,
327 &ffi_java_translate_args
,
329 if (status
== FFI_OK
)
332 cl
->user_data
= user_data
;
338 #endif /* FFI_CLOSURES */
339 #endif /* !FFI_NATIVE_RAW_API */
340 #endif /* !FFI_NO_RAW_API */