1 /* -----------------------------------------------------------------------
2 java_raw_api.c - Copyright (c) 1999, 2007, 2008 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,
23 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
26 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
27 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29 DEALINGS IN THE SOFTWARE.
30 ----------------------------------------------------------------------- */
32 /* This defines a Java- and 64-bit specific variant of the raw API. */
33 /* It assumes that "raw" argument blocks look like Java stacks on a */
34 /* 64-bit machine. Arguments that can be stored in a single stack */
35 /* stack slots (longs, doubles) occupy 128 bits, but only the first */
36 /* 64 bits are actually used. */
39 #include <ffi_common.h>
42 #if !defined(NO_JAVA_RAW_API) && !defined(FFI_NO_RAW_API)
45 ffi_java_raw_size (ffi_cif
*cif
)
50 ffi_type
**at
= cif
->arg_types
;
52 for (i
= cif
->nargs
-1; i
>= 0; i
--, at
++)
54 switch((*at
) -> type
) {
58 result
+= 2 * FFI_SIZEOF_JAVA_RAW
;
61 /* No structure parameters in Java. */
64 result
+= FFI_SIZEOF_JAVA_RAW
;
73 ffi_java_raw_to_ptrarray (ffi_cif
*cif
, ffi_java_raw
*raw
, void **args
)
76 ffi_type
**tp
= cif
->arg_types
;
80 for (i
= 0; i
< cif
->nargs
; i
++, tp
++, args
++)
86 *args
= (void*) ((char*)(raw
++) + 3);
91 *args
= (void*) ((char*)(raw
++) + 2);
94 #if FFI_SIZEOF_JAVA_RAW == 8
103 case FFI_TYPE_POINTER
:
104 *args
= (void*) &(raw
++)->ptr
;
110 ALIGN ((*tp
)->size
, sizeof(ffi_java_raw
)) / sizeof(ffi_java_raw
);
114 #else /* WORDS_BIGENDIAN */
118 /* then assume little endian */
119 for (i
= 0; i
< cif
->nargs
; i
++, tp
++, args
++)
121 #if FFI_SIZEOF_JAVA_RAW == 8
122 switch((*tp
)->type
) {
123 case FFI_TYPE_UINT64
:
124 case FFI_TYPE_SINT64
:
125 case FFI_TYPE_DOUBLE
:
130 *args
= (void*) raw
++;
132 #else /* FFI_SIZEOF_JAVA_RAW != 8 */
135 ALIGN ((*tp
)->size
, sizeof(ffi_java_raw
)) / sizeof(ffi_java_raw
);
136 #endif /* FFI_SIZEOF_JAVA_RAW == 8 */
140 #error "pdp endian not supported"
143 #endif /* WORDS_BIGENDIAN */
147 ffi_java_ptrarray_to_raw (ffi_cif
*cif
, void **args
, ffi_java_raw
*raw
)
150 ffi_type
**tp
= cif
->arg_types
;
152 for (i
= 0; i
< cif
->nargs
; i
++, tp
++, args
++)
158 *(UINT32
*)(raw
++) = *(UINT8
*) (*args
);
160 (raw
++)->uint
= *(UINT8
*) (*args
);
166 *(SINT32
*)(raw
++) = *(SINT8
*) (*args
);
168 (raw
++)->sint
= *(SINT8
*) (*args
);
172 case FFI_TYPE_UINT16
:
174 *(UINT32
*)(raw
++) = *(UINT16
*) (*args
);
176 (raw
++)->uint
= *(UINT16
*) (*args
);
180 case FFI_TYPE_SINT16
:
182 *(SINT32
*)(raw
++) = *(SINT16
*) (*args
);
184 (raw
++)->sint
= *(SINT16
*) (*args
);
188 case FFI_TYPE_UINT32
:
190 *(UINT32
*)(raw
++) = *(UINT32
*) (*args
);
192 (raw
++)->uint
= *(UINT32
*) (*args
);
196 case FFI_TYPE_SINT32
:
198 *(SINT32
*)(raw
++) = *(SINT32
*) (*args
);
200 (raw
++)->sint
= *(SINT32
*) (*args
);
205 (raw
++)->flt
= *(FLOAT32
*) (*args
);
208 #if FFI_SIZEOF_JAVA_RAW == 8
209 case FFI_TYPE_UINT64
:
210 case FFI_TYPE_SINT64
:
211 case FFI_TYPE_DOUBLE
:
212 raw
->uint
= *(UINT64
*) (*args
);
217 case FFI_TYPE_POINTER
:
218 (raw
++)->ptr
= **(void***) args
;
222 #if FFI_SIZEOF_JAVA_RAW == 8
223 FFI_ASSERT(0); /* Should have covered all cases */
225 memcpy ((void*) raw
->data
, (void*)*args
, (*tp
)->size
);
227 ALIGN ((*tp
)->size
, sizeof(ffi_java_raw
)) / sizeof(ffi_java_raw
);
233 #if !FFI_NATIVE_RAW_API
236 ffi_java_rvalue_to_raw (ffi_cif
*cif
, void *rvalue
)
238 #if WORDS_BIGENDIAN && FFI_SIZEOF_ARG == 8
239 switch (cif
->rtype
->type
)
242 case FFI_TYPE_UINT16
:
243 case FFI_TYPE_UINT32
:
244 *(UINT64
*)rvalue
<<= 32;
248 case FFI_TYPE_SINT16
:
249 case FFI_TYPE_SINT32
:
251 #if FFI_SIZEOF_JAVA_RAW == 4
252 case FFI_TYPE_POINTER
:
254 *(SINT64
*)rvalue
<<= 32;
264 ffi_java_raw_to_rvalue (ffi_cif
*cif
, void *rvalue
)
266 #if WORDS_BIGENDIAN && FFI_SIZEOF_ARG == 8
267 switch (cif
->rtype
->type
)
270 case FFI_TYPE_UINT16
:
271 case FFI_TYPE_UINT32
:
272 *(UINT64
*)rvalue
>>= 32;
276 case FFI_TYPE_SINT16
:
277 case FFI_TYPE_SINT32
:
279 *(SINT64
*)rvalue
>>= 32;
288 /* This is a generic definition of ffi_raw_call, to be used if the
289 * native system does not provide a machine-specific implementation.
290 * Having this, allows code to be written for the raw API, without
291 * the need for system-specific code to handle input in that format;
292 * these following couple of functions will handle the translation forth
293 * and back automatically. */
295 void ffi_java_raw_call (ffi_cif
*cif
, void (*fn
)(void), void *rvalue
,
298 void **avalue
= (void**) alloca (cif
->nargs
* sizeof (void*));
299 ffi_java_raw_to_ptrarray (cif
, raw
, avalue
);
300 ffi_call (cif
, fn
, rvalue
, avalue
);
301 ffi_java_rvalue_to_raw (cif
, rvalue
);
304 #if FFI_CLOSURES /* base system provides closures */
307 ffi_java_translate_args (ffi_cif
*cif
, void *rvalue
,
308 void **avalue
, void *user_data
)
310 ffi_java_raw
*raw
= (ffi_java_raw
*)alloca (ffi_java_raw_size (cif
));
311 ffi_raw_closure
*cl
= (ffi_raw_closure
*)user_data
;
313 ffi_java_ptrarray_to_raw (cif
, avalue
, raw
);
314 (*cl
->fun
) (cif
, rvalue
, raw
, cl
->user_data
);
315 ffi_java_raw_to_rvalue (cif
, rvalue
);
319 ffi_prep_java_raw_closure_loc (ffi_java_raw_closure
* cl
,
321 void (*fun
)(ffi_cif
*,void*,ffi_java_raw
*,void*),
327 status
= ffi_prep_closure_loc ((ffi_closure
*) cl
,
329 &ffi_java_translate_args
,
332 if (status
== FFI_OK
)
335 cl
->user_data
= user_data
;
341 /* Again, here is the generic version of ffi_prep_raw_closure, which
342 * will install an intermediate "hub" for translation of arguments from
343 * the pointer-array format, to the raw format */
346 ffi_prep_java_raw_closure (ffi_java_raw_closure
* cl
,
348 void (*fun
)(ffi_cif
*,void*,ffi_java_raw
*,void*),
351 return ffi_prep_java_raw_closure_loc (cl
, cif
, fun
, user_data
, cl
);
354 #endif /* FFI_CLOSURES */
355 #endif /* !FFI_NATIVE_RAW_API */
356 #endif /* !FFI_NO_RAW_API */