1 /* -----------------------------------------------------------------------
2 ffi.c - Copyright (c) 2011 Anthony Green
3 Copyright (c) 2009 Bradley Smith <brad@brad-smith.co.uk>
5 AVR32 Foreign Function Interface
7 Permission is hereby granted, free of charge, to any person obtaining
8 a copy of this software and associated documentation files (the
9 ``Software''), to deal in the Software without restriction, including
10 without limitation the rights to use, copy, modify, merge, publish,
11 distribute, sublicense, and/or sell copies of the Software, and to
12 permit persons to whom the Software is furnished to do so, subject to
13 the following conditions:
15 The above copyright notice and this permission notice shall be included
16 in all copies or substantial portions of the Software.
18 THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
19 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25 DEALINGS IN THE SOFTWARE.
26 ----------------------------------------------------------------------- */
29 #include <ffi_common.h>
34 #include <asm/unistd.h>
38 extern void ffi_call_SYSV(void (*)(char *, extended_cif
*), extended_cif
*,
39 unsigned int, unsigned int, unsigned int*, unsigned int,
41 extern void ffi_closure_SYSV (ffi_closure
*);
43 unsigned int pass_struct_on_stack(ffi_type
*type
)
45 if(type
->type
!= FFI_TYPE_STRUCT
)
48 if(type
->alignment
< type
->size
&&
49 !(type
->size
== 4 || type
->size
== 8) &&
50 !(type
->size
== 8 && type
->alignment
>= 4))
53 if(type
->size
== 3 || type
->size
== 5 || type
->size
== 6 ||
60 /* ffi_prep_args is called by the assembly routine once stack space
61 * has been allocated for the function's arguments
63 * This is annoyingly complex since we need to keep track of used
67 void ffi_prep_args(char *stack
, extended_cif
*ecif
)
72 char *reg_base
= stack
;
73 char *stack_base
= stack
+ 20;
74 unsigned int stack_offset
= 0;
75 unsigned int reg_mask
= 0;
77 p_argv
= ecif
->avalue
;
79 /* If cif->flags is struct then we know it's not passed in registers */
80 if(ecif
->cif
->flags
== FFI_TYPE_STRUCT
)
82 *(void**)reg_base
= ecif
->rvalue
;
86 for(i
= 0, p_arg
= ecif
->cif
->arg_types
; i
< ecif
->cif
->nargs
;
89 size_t z
= (*p_arg
)->size
;
90 int alignment
= (*p_arg
)->alignment
;
91 int type
= (*p_arg
)->type
;
99 if(pass_struct_on_stack(*p_arg
))
101 addr
= stack_base
+ stack_offset
;
104 else if(z
== sizeof(int))
108 while((reg_mask
>> index
) & 1)
111 addr
= reg_base
+ (index
* 4);
112 reg_mask
|= (1 << index
);
114 else if(z
== 2 * sizeof(int))
116 if(!((reg_mask
>> 1) & 1))
119 reg_mask
|= (3 << 1);
121 else if(!((reg_mask
>> 3) & 1))
123 addr
= reg_base
+ 12;
124 reg_mask
|= (3 << 3);
131 addr
= stack_base
+ stack_offset
;
135 if(type
== FFI_TYPE_STRUCT
&& (*p_arg
)->elements
[1] == NULL
)
136 type
= (*p_arg
)->elements
[0]->type
;
141 *(unsigned int *)addr
= (unsigned int)*(UINT8
*)(*p_argv
);
144 *(signed int *)addr
= (signed int)*(SINT8
*)(*p_argv
);
146 case FFI_TYPE_UINT16
:
147 *(unsigned int *)addr
= (unsigned int)*(UINT16
*)(*p_argv
);
149 case FFI_TYPE_SINT16
:
150 *(signed int *)addr
= (signed int)*(SINT16
*)(*p_argv
);
153 memcpy(addr
, *p_argv
, z
);
161 for(i
= 0; i
< 5; i
++)
163 if((reg_mask
& (1 << i
)) == 0)
164 printf("r%d: (unused)\n", 12 - i
);
166 printf("r%d: 0x%08x\n", 12 - i
, ((unsigned int*)reg_base
)[i
]);
169 for(i
= 0; i
< stack_offset
/ 4; i
++)
171 printf("sp+%d: 0x%08x\n", i
*4, ((unsigned int*)stack_base
)[i
]);
176 /* Perform machine dependent cif processing */
177 ffi_status
ffi_prep_cif_machdep(ffi_cif
*cif
)
179 /* Round the stack up to a multiple of 8 bytes. This isn't needed
180 * everywhere, but it is on some platforms, and it doesn't harm
181 * anything when it isn't needed. */
182 cif
->bytes
= (cif
->bytes
+ 7) & ~7;
184 /* Flag to indicate that he return value is in fact a struct */
185 cif
->rstruct_flag
= 0;
187 /* Set the return type flag */
188 switch(cif
->rtype
->type
)
192 cif
->flags
= (unsigned)FFI_TYPE_UINT8
;
194 case FFI_TYPE_SINT16
:
195 case FFI_TYPE_UINT16
:
196 cif
->flags
= (unsigned)FFI_TYPE_UINT16
;
199 case FFI_TYPE_SINT32
:
200 case FFI_TYPE_UINT32
:
201 case FFI_TYPE_POINTER
:
202 cif
->flags
= (unsigned)FFI_TYPE_UINT32
;
204 case FFI_TYPE_DOUBLE
:
205 case FFI_TYPE_SINT64
:
206 case FFI_TYPE_UINT64
:
207 cif
->flags
= (unsigned)FFI_TYPE_UINT64
;
209 case FFI_TYPE_STRUCT
:
210 cif
->rstruct_flag
= 1;
211 if(!pass_struct_on_stack(cif
->rtype
))
213 if(cif
->rtype
->size
<= 1)
214 cif
->flags
= (unsigned)FFI_TYPE_UINT8
;
215 else if(cif
->rtype
->size
<= 2)
216 cif
->flags
= (unsigned)FFI_TYPE_UINT16
;
217 else if(cif
->rtype
->size
<= 4)
218 cif
->flags
= (unsigned)FFI_TYPE_UINT32
;
219 else if(cif
->rtype
->size
<= 8)
220 cif
->flags
= (unsigned)FFI_TYPE_UINT64
;
222 cif
->flags
= (unsigned)cif
->rtype
->type
;
225 cif
->flags
= (unsigned)cif
->rtype
->type
;
228 cif
->flags
= (unsigned)cif
->rtype
->type
;
235 void ffi_call(ffi_cif
*cif
, void (*fn
)(void), void *rvalue
, void **avalue
)
239 unsigned int size
= 0, i
= 0;
243 ecif
.avalue
= avalue
;
245 for(i
= 0, p_arg
= cif
->arg_types
; i
< cif
->nargs
; i
++, p_arg
++)
246 size
+= (*p_arg
)->size
+ (4 - (*p_arg
)->size
% 4);
248 /* If the return value is a struct and we don't have a return value
249 * address then we need to make one */
251 /* If cif->flags is struct then it's not suitable for registers */
252 if((rvalue
== NULL
) && (cif
->flags
== FFI_TYPE_STRUCT
))
253 ecif
.rvalue
= alloca(cif
->rtype
->size
);
255 ecif
.rvalue
= rvalue
;
260 ffi_call_SYSV(ffi_prep_args
, &ecif
, size
, cif
->flags
,
261 ecif
.rvalue
, cif
->rstruct_flag
, fn
);
269 static void ffi_prep_incoming_args_SYSV(char *stack
, void **rvalue
,
270 void **avalue
, ffi_cif
*cif
)
272 register unsigned int i
, reg_mask
= 0;
273 register void **p_argv
;
274 register ffi_type
**p_arg
;
275 register char *reg_base
= stack
;
276 register char *stack_base
= stack
+ 20;
277 register unsigned int stack_offset
= 0;
281 for(i
= 0; i
< cif
->nargs
+ 7; i
++)
283 printf("sp+%d: 0x%08x\n", i
*4, ((unsigned int*)stack
)[i
]);
287 /* If cif->flags is struct then we know it's not passed in registers */
288 if(cif
->flags
== FFI_TYPE_STRUCT
)
290 *rvalue
= *(void **)reg_base
;
296 for(i
= 0, p_arg
= cif
->arg_types
; i
< cif
->nargs
; i
++, p_arg
++)
298 size_t z
= (*p_arg
)->size
;
299 int alignment
= (*p_arg
)->alignment
;
308 if(pass_struct_on_stack(*p_arg
))
310 *p_argv
= (void*)stack_base
+ stack_offset
;
313 else if(z
<= sizeof(int))
317 while((reg_mask
>> index
) & 1)
320 *p_argv
= (void*)reg_base
+ (index
* 4);
321 reg_mask
|= (1 << index
);
323 else if(z
== 2 * sizeof(int))
325 if(!((reg_mask
>> 1) & 1))
327 *p_argv
= (void*)reg_base
+ 4;
328 reg_mask
|= (3 << 1);
330 else if(!((reg_mask
>> 3) & 1))
332 *p_argv
= (void*)reg_base
+ 12;
333 reg_mask
|= (3 << 3);
340 *p_argv
= (void*)stack_base
+ stack_offset
;
344 if((*p_arg
)->type
!= FFI_TYPE_STRUCT
||
345 (*p_arg
)->elements
[1] == NULL
)
348 **(unsigned int**)p_argv
<<= 24;
349 else if(alignment
== 2)
350 **(unsigned int**)p_argv
<<= 16;
358 for(i
= 0; i
< cif
->nargs
; i
++)
360 printf("sp+%d: 0x%08x\n", i
*4, *(((unsigned int**)avalue
)[i
]));
365 /* This function is jumped to by the trampoline */
367 unsigned int ffi_closure_SYSV_inner(ffi_closure
*closure
, void **respp
,
372 unsigned int i
, size
= 0;
377 for(i
= 0, p_arg
= cif
->arg_types
; i
< cif
->nargs
; i
++, p_arg
++)
378 size
+= (*p_arg
)->size
+ (4 - (*p_arg
)->size
% 4);
380 arg_area
= (void **)alloca(size
);
382 /* this call will initialize ARG_AREA, such that each element in that
383 * array points to the corresponding value on the stack; and if the
384 * function returns a structure, it will re-set RESP to point to the
385 * structure return address. */
387 ffi_prep_incoming_args_SYSV(args
, respp
, arg_area
, cif
);
389 (closure
->fun
)(cif
, *respp
, arg_area
, closure
->user_data
);
394 ffi_status
ffi_prep_closure_loc(ffi_closure
* closure
, ffi_cif
* cif
,
395 void (*fun
)(ffi_cif
*, void*, void**, void*), void *user_data
,
398 if (cif
->abi
!= FFI_SYSV
)
401 unsigned char *__tramp
= (unsigned char*)(&closure
->tramp
[0]);
402 unsigned int __fun
= (unsigned int)(&ffi_closure_SYSV
);
403 unsigned int __ctx
= (unsigned int)(codeloc
);
404 unsigned int __rstruct_flag
= (unsigned int)(cif
->rstruct_flag
);
405 unsigned int __inner
= (unsigned int)(&ffi_closure_SYSV_inner
);
406 *(unsigned int*) &__tramp
[0] = 0xebcd1f00; /* pushm r8-r12 */
407 *(unsigned int*) &__tramp
[4] = 0xfefc0010; /* ld.w r12, pc[16] */
408 *(unsigned int*) &__tramp
[8] = 0xfefb0010; /* ld.w r11, pc[16] */
409 *(unsigned int*) &__tramp
[12] = 0xfefa0010; /* ld.w r10, pc[16] */
410 *(unsigned int*) &__tramp
[16] = 0xfeff0010; /* ld.w pc, pc[16] */
411 *(unsigned int*) &__tramp
[20] = __ctx
;
412 *(unsigned int*) &__tramp
[24] = __rstruct_flag
;
413 *(unsigned int*) &__tramp
[28] = __inner
;
414 *(unsigned int*) &__tramp
[32] = __fun
;
415 syscall(__NR_cacheflush
, 0, (&__tramp
[0]), 36);
418 closure
->user_data
= user_data
;