1 /* Area: ffi_call, closure_call
2 Purpose: Check structure passing with different structure size.
3 Depending on the ABI. Darwin/AIX do double-word
4 alignment of the struct if the first element is a double.
5 Check that it does not here.
8 Originator: <andreast@gcc.gnu.org> 20030914 */
13 typedef struct cls_struct_9byte
{
18 cls_struct_9byte
cls_struct_9byte_fn(struct cls_struct_9byte b1
,
19 struct cls_struct_9byte b2
)
21 struct cls_struct_9byte result
;
23 result
.a
= b1
.a
+ b2
.a
;
24 result
.b
= b1
.b
+ b2
.b
;
26 printf("%d %g %d %g: %d %g\n", b1
.a
, b1
.b
, b2
.a
, b2
.b
,
32 static void cls_struct_9byte_gn(ffi_cif
* cif __UNUSED__
, void* resp
,
33 void** args
, void* userdata __UNUSED__
)
35 struct cls_struct_9byte b1
, b2
;
37 b1
= *(struct cls_struct_9byte
*)(args
[0]);
38 b2
= *(struct cls_struct_9byte
*)(args
[1]);
40 *(cls_struct_9byte
*)resp
= cls_struct_9byte_fn(b1
, b2
);
47 ffi_closure
*pcl
= ffi_closure_alloc(sizeof(ffi_closure
), &code
);
49 ffi_type
* cls_struct_fields
[3];
50 ffi_type cls_struct_type
;
51 ffi_type
* dbl_arg_types
[3];
53 cls_struct_type
.size
= 0;
54 cls_struct_type
.alignment
= 0;
55 cls_struct_type
.type
= FFI_TYPE_STRUCT
;
56 cls_struct_type
.elements
= cls_struct_fields
;
58 struct cls_struct_9byte h_dbl
= { 7, 8.0};
59 struct cls_struct_9byte j_dbl
= { 1, 9.0};
60 struct cls_struct_9byte res_dbl
;
62 cls_struct_fields
[0] = &ffi_type_sint
;
63 cls_struct_fields
[1] = &ffi_type_double
;
64 cls_struct_fields
[2] = NULL
;
66 dbl_arg_types
[0] = &cls_struct_type
;
67 dbl_arg_types
[1] = &cls_struct_type
;
68 dbl_arg_types
[2] = NULL
;
70 CHECK(ffi_prep_cif(&cif
, FFI_DEFAULT_ABI
, 2, &cls_struct_type
,
71 dbl_arg_types
) == FFI_OK
);
77 ffi_call(&cif
, FFI_FN(cls_struct_9byte_fn
), &res_dbl
, args_dbl
);
78 /* { dg-output "7 8 1 9: 8 17" } */
79 printf("res: %d %g\n", res_dbl
.a
, res_dbl
.b
);
80 /* { dg-output "\nres: 8 17" } */
82 CHECK(ffi_prep_closure_loc(pcl
, &cif
, cls_struct_9byte_gn
, NULL
, code
) == FFI_OK
);
84 res_dbl
= ((cls_struct_9byte(*)(cls_struct_9byte
, cls_struct_9byte
))(code
))(h_dbl
, j_dbl
);
85 /* { dg-output "\n7 8 1 9: 8 17" } */
86 printf("res: %d %g\n", res_dbl
.a
, res_dbl
.b
);
87 /* { dg-output "\nres: 8 17" } */