2007-03-01 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / libffi / src / java_raw_api.c
blob5f15a05c336151a52d2281650a469aa491944f7a
1 /* -----------------------------------------------------------------------
2 java_raw_api.c - Copyright (c) 1999 Red Hat, Inc.
4 Cloned from raw_api.c
6 Raw_api.c author: Kresten Krab Thorup <krab@gnu.org>
7 Java_raw_api.c author: Hans-J. Boehm <hboehm@hpl.hp.com>
9 $Id $
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. */
37 #include <ffi.h>
38 #include <ffi_common.h>
39 #include <stdlib.h>
41 #if !defined(NO_JAVA_RAW_API) && !defined(FFI_NO_RAW_API)
43 size_t
44 ffi_java_raw_size (ffi_cif *cif)
46 size_t result = 0;
47 int i;
49 ffi_type **at = cif->arg_types;
51 for (i = cif->nargs-1; i >= 0; i--, at++)
53 switch((*at) -> type) {
54 case FFI_TYPE_UINT64:
55 case FFI_TYPE_SINT64:
56 case FFI_TYPE_DOUBLE:
57 result += 2 * FFI_SIZEOF_ARG;
58 break;
59 case FFI_TYPE_STRUCT:
60 /* No structure parameters in Java. */
61 abort();
62 default:
63 result += FFI_SIZEOF_ARG;
67 return result;
71 void
72 ffi_java_raw_to_ptrarray (ffi_cif *cif, ffi_raw *raw, void **args)
74 unsigned i;
75 ffi_type **tp = cif->arg_types;
77 #if WORDS_BIGENDIAN
79 for (i = 0; i < cif->nargs; i++, tp++, args++)
81 switch ((*tp)->type)
83 case FFI_TYPE_UINT8:
84 case FFI_TYPE_SINT8:
85 *args = (void*) ((char*)(raw++) + 3);
86 break;
88 case FFI_TYPE_UINT16:
89 case FFI_TYPE_SINT16:
90 *args = (void*) ((char*)(raw++) + 2);
91 break;
93 #if FFI_SIZEOF_ARG == 8
94 case FFI_TYPE_UINT64:
95 case FFI_TYPE_SINT64:
96 case FFI_TYPE_DOUBLE:
97 *args = (void *)raw;
98 raw += 2;
99 break;
100 #endif
102 case FFI_TYPE_POINTER:
103 *args = (void*) &(raw++)->ptr;
104 break;
106 default:
107 *args = raw;
108 raw += ALIGN ((*tp)->size, FFI_SIZEOF_ARG) / FFI_SIZEOF_ARG;
112 #else /* WORDS_BIGENDIAN */
114 #if !PDP
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:
124 *args = (void*) raw;
125 raw += 2;
126 break;
127 default:
128 *args = (void*) raw++;
130 #else /* FFI_SIZEOF_ARG != 8 */
131 *args = (void*) raw;
132 raw += ALIGN ((*tp)->size, sizeof (void*)) / sizeof (void*);
133 #endif /* FFI_SIZEOF_ARG == 8 */
136 #else
137 #error "pdp endian not supported"
138 #endif /* ! PDP */
140 #endif /* WORDS_BIGENDIAN */
143 void
144 ffi_java_ptrarray_to_raw (ffi_cif *cif, void **args, ffi_raw *raw)
146 unsigned i;
147 ffi_type **tp = cif->arg_types;
149 for (i = 0; i < cif->nargs; i++, tp++, args++)
151 switch ((*tp)->type)
153 case FFI_TYPE_UINT8:
154 #if WORDS_BIGENDIAN
155 *(UINT32*)(raw++) = *(UINT8*) (*args);
156 #else
157 (raw++)->uint = *(UINT8*) (*args);
158 #endif
159 break;
161 case FFI_TYPE_SINT8:
162 #if WORDS_BIGENDIAN
163 *(SINT32*)(raw++) = *(SINT8*) (*args);
164 #else
165 (raw++)->sint = *(SINT8*) (*args);
166 #endif
167 break;
169 case FFI_TYPE_UINT16:
170 #if WORDS_BIGENDIAN
171 *(UINT32*)(raw++) = *(UINT16*) (*args);
172 #else
173 (raw++)->uint = *(UINT16*) (*args);
174 #endif
175 break;
177 case FFI_TYPE_SINT16:
178 #if WORDS_BIGENDIAN
179 *(SINT32*)(raw++) = *(SINT16*) (*args);
180 #else
181 (raw++)->sint = *(SINT16*) (*args);
182 #endif
183 break;
185 case FFI_TYPE_UINT32:
186 #if WORDS_BIGENDIAN
187 *(UINT32*)(raw++) = *(UINT32*) (*args);
188 #else
189 (raw++)->uint = *(UINT32*) (*args);
190 #endif
191 break;
193 case FFI_TYPE_SINT32:
194 #if WORDS_BIGENDIAN
195 *(SINT32*)(raw++) = *(SINT32*) (*args);
196 #else
197 (raw++)->sint = *(SINT32*) (*args);
198 #endif
199 break;
201 case FFI_TYPE_FLOAT:
202 (raw++)->flt = *(FLOAT32*) (*args);
203 break;
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);
210 raw += 2;
211 break;
212 #endif
214 case FFI_TYPE_POINTER:
215 (raw++)->ptr = **(void***) args;
216 break;
218 default:
219 #if FFI_SIZEOF_ARG == 8
220 FFI_ASSERT(0); /* Should have covered all cases */
221 #else
222 memcpy ((void*) raw->data, (void*)*args, (*tp)->size);
223 raw += ALIGN ((*tp)->size, FFI_SIZEOF_ARG) / FFI_SIZEOF_ARG;
224 #endif
229 #if !FFI_NATIVE_RAW_API
231 static void
232 ffi_java_rvalue_to_raw (ffi_cif *cif, void *rvalue)
234 #if WORDS_BIGENDIAN && FFI_SIZEOF_ARG == 8
235 switch (cif->rtype->type)
237 case FFI_TYPE_UINT8:
238 case FFI_TYPE_UINT16:
239 case FFI_TYPE_UINT32:
240 *(UINT64 *)rvalue <<= 32;
241 break;
243 case FFI_TYPE_SINT8:
244 case FFI_TYPE_SINT16:
245 case FFI_TYPE_SINT32:
246 case FFI_TYPE_INT:
247 *(SINT64 *)rvalue <<= 32;
248 break;
250 default:
251 break;
253 #endif
256 static void
257 ffi_java_raw_to_rvalue (ffi_cif *cif, void *rvalue)
259 #if WORDS_BIGENDIAN && FFI_SIZEOF_ARG == 8
260 switch (cif->rtype->type)
262 case FFI_TYPE_UINT8:
263 case FFI_TYPE_UINT16:
264 case FFI_TYPE_UINT32:
265 *(UINT64 *)rvalue >>= 32;
266 break;
268 case FFI_TYPE_SINT8:
269 case FFI_TYPE_SINT16:
270 case FFI_TYPE_SINT32:
271 case FFI_TYPE_INT:
272 *(SINT64 *)rvalue >>= 32;
273 break;
275 default:
276 break;
278 #endif
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 (ffi_cif *cif, void (*fn)(), void *rvalue, ffi_raw *raw)
290 void **avalue = (void**) alloca (cif->nargs * sizeof (void*));
291 ffi_java_raw_to_ptrarray (cif, raw, avalue);
292 ffi_call (cif, fn, rvalue, avalue);
293 ffi_java_rvalue_to_raw (cif, rvalue);
296 #if FFI_CLOSURES /* base system provides closures */
298 static void
299 ffi_java_translate_args (ffi_cif *cif, void *rvalue,
300 void **avalue, void *user_data)
302 ffi_raw *raw = (ffi_raw*)alloca (ffi_java_raw_size (cif));
303 ffi_raw_closure *cl = (ffi_raw_closure*)user_data;
305 ffi_java_ptrarray_to_raw (cif, avalue, raw);
306 (*cl->fun) (cif, rvalue, raw, cl->user_data);
307 ffi_java_raw_to_rvalue (cif, rvalue);
310 /* Again, here is the generic version of ffi_prep_raw_closure, which
311 * will install an intermediate "hub" for translation of arguments from
312 * the pointer-array format, to the raw format */
314 ffi_status
315 ffi_prep_java_raw_closure (ffi_raw_closure* cl,
316 ffi_cif *cif,
317 void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
318 void *user_data)
320 ffi_status status;
322 status = ffi_prep_closure ((ffi_closure*) cl,
323 cif,
324 &ffi_java_translate_args,
325 (void*)cl);
326 if (status == FFI_OK)
328 cl->fun = fun;
329 cl->user_data = user_data;
332 return status;
335 #endif /* FFI_CLOSURES */
336 #endif /* !FFI_NATIVE_RAW_API */
337 #endif /* !FFI_NO_RAW_API */