annotate libffi/testsuite/libffi.call/cls_24byte.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Area: ffi_call, closure_call
kono
parents:
diff changeset
2 Purpose: Check structure passing with different structure size.
kono
parents:
diff changeset
3 Depending on the ABI. Check overlapping.
kono
parents:
diff changeset
4 Limitations: none.
kono
parents:
diff changeset
5 PR: none.
kono
parents:
diff changeset
6 Originator: <andreast@gcc.gnu.org> 20030828 */
kono
parents:
diff changeset
7
kono
parents:
diff changeset
8 /* { dg-do run } */
kono
parents:
diff changeset
9 #include "ffitest.h"
kono
parents:
diff changeset
10
kono
parents:
diff changeset
11 typedef struct cls_struct_24byte {
kono
parents:
diff changeset
12 double a;
kono
parents:
diff changeset
13 double b;
kono
parents:
diff changeset
14 int c;
kono
parents:
diff changeset
15 float d;
kono
parents:
diff changeset
16 } cls_struct_24byte;
kono
parents:
diff changeset
17
kono
parents:
diff changeset
18 cls_struct_24byte cls_struct_24byte_fn(struct cls_struct_24byte b0,
kono
parents:
diff changeset
19 struct cls_struct_24byte b1,
kono
parents:
diff changeset
20 struct cls_struct_24byte b2,
kono
parents:
diff changeset
21 struct cls_struct_24byte b3)
kono
parents:
diff changeset
22 {
kono
parents:
diff changeset
23 struct cls_struct_24byte result;
kono
parents:
diff changeset
24
kono
parents:
diff changeset
25 result.a = b0.a + b1.a + b2.a + b3.a;
kono
parents:
diff changeset
26 result.b = b0.b + b1.b + b2.b + b3.b;
kono
parents:
diff changeset
27 result.c = b0.c + b1.c + b2.c + b3.c;
kono
parents:
diff changeset
28 result.d = b0.d + b1.d + b2.d + b3.d;
kono
parents:
diff changeset
29
kono
parents:
diff changeset
30 printf("%g %g %d %g %g %g %d %g %g %g %d %g %g %g %d %g: %g %g %d %g\n",
kono
parents:
diff changeset
31 b0.a, b0.b, b0.c, b0.d,
kono
parents:
diff changeset
32 b1.a, b1.b, b1.c, b1.d,
kono
parents:
diff changeset
33 b2.a, b2.b, b2.c, b2.d,
kono
parents:
diff changeset
34 b3.a, b3.b, b3.c, b2.d,
kono
parents:
diff changeset
35 result.a, result.b, result.c, result.d);
kono
parents:
diff changeset
36
kono
parents:
diff changeset
37 return result;
kono
parents:
diff changeset
38 }
kono
parents:
diff changeset
39
kono
parents:
diff changeset
40 static void
kono
parents:
diff changeset
41 cls_struct_24byte_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
kono
parents:
diff changeset
42 void* userdata __UNUSED__)
kono
parents:
diff changeset
43 {
kono
parents:
diff changeset
44 struct cls_struct_24byte b0, b1, b2, b3;
kono
parents:
diff changeset
45
kono
parents:
diff changeset
46 b0 = *(struct cls_struct_24byte*)(args[0]);
kono
parents:
diff changeset
47 b1 = *(struct cls_struct_24byte*)(args[1]);
kono
parents:
diff changeset
48 b2 = *(struct cls_struct_24byte*)(args[2]);
kono
parents:
diff changeset
49 b3 = *(struct cls_struct_24byte*)(args[3]);
kono
parents:
diff changeset
50
kono
parents:
diff changeset
51 *(cls_struct_24byte*)resp = cls_struct_24byte_fn(b0, b1, b2, b3);
kono
parents:
diff changeset
52 }
kono
parents:
diff changeset
53
kono
parents:
diff changeset
54 int main (void)
kono
parents:
diff changeset
55 {
kono
parents:
diff changeset
56 ffi_cif cif;
kono
parents:
diff changeset
57 void *code;
kono
parents:
diff changeset
58 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
kono
parents:
diff changeset
59 void* args_dbl[5];
kono
parents:
diff changeset
60 ffi_type* cls_struct_fields[5];
kono
parents:
diff changeset
61 ffi_type cls_struct_type;
kono
parents:
diff changeset
62 ffi_type* dbl_arg_types[5];
kono
parents:
diff changeset
63
kono
parents:
diff changeset
64 struct cls_struct_24byte e_dbl = { 9.0, 2.0, 6, 5.0 };
kono
parents:
diff changeset
65 struct cls_struct_24byte f_dbl = { 1.0, 2.0, 3, 7.0 };
kono
parents:
diff changeset
66 struct cls_struct_24byte g_dbl = { 4.0, 5.0, 7, 9.0 };
kono
parents:
diff changeset
67 struct cls_struct_24byte h_dbl = { 8.0, 6.0, 1, 4.0 };
kono
parents:
diff changeset
68 struct cls_struct_24byte res_dbl;
kono
parents:
diff changeset
69
kono
parents:
diff changeset
70 cls_struct_type.size = 0;
kono
parents:
diff changeset
71 cls_struct_type.alignment = 0;
kono
parents:
diff changeset
72 cls_struct_type.type = FFI_TYPE_STRUCT;
kono
parents:
diff changeset
73 cls_struct_type.elements = cls_struct_fields;
kono
parents:
diff changeset
74
kono
parents:
diff changeset
75 cls_struct_fields[0] = &ffi_type_double;
kono
parents:
diff changeset
76 cls_struct_fields[1] = &ffi_type_double;
kono
parents:
diff changeset
77 cls_struct_fields[2] = &ffi_type_sint;
kono
parents:
diff changeset
78 cls_struct_fields[3] = &ffi_type_float;
kono
parents:
diff changeset
79 cls_struct_fields[4] = NULL;
kono
parents:
diff changeset
80
kono
parents:
diff changeset
81 dbl_arg_types[0] = &cls_struct_type;
kono
parents:
diff changeset
82 dbl_arg_types[1] = &cls_struct_type;
kono
parents:
diff changeset
83 dbl_arg_types[2] = &cls_struct_type;
kono
parents:
diff changeset
84 dbl_arg_types[3] = &cls_struct_type;
kono
parents:
diff changeset
85 dbl_arg_types[4] = NULL;
kono
parents:
diff changeset
86
kono
parents:
diff changeset
87 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 4, &cls_struct_type,
kono
parents:
diff changeset
88 dbl_arg_types) == FFI_OK);
kono
parents:
diff changeset
89
kono
parents:
diff changeset
90 args_dbl[0] = &e_dbl;
kono
parents:
diff changeset
91 args_dbl[1] = &f_dbl;
kono
parents:
diff changeset
92 args_dbl[2] = &g_dbl;
kono
parents:
diff changeset
93 args_dbl[3] = &h_dbl;
kono
parents:
diff changeset
94 args_dbl[4] = NULL;
kono
parents:
diff changeset
95
kono
parents:
diff changeset
96 ffi_call(&cif, FFI_FN(cls_struct_24byte_fn), &res_dbl, args_dbl);
kono
parents:
diff changeset
97 /* { dg-output "9 2 6 5 1 2 3 7 4 5 7 9 8 6 1 9: 22 15 17 25" } */
kono
parents:
diff changeset
98 printf("res: %g %g %d %g\n", res_dbl.a, res_dbl.b, res_dbl.c, res_dbl.d);
kono
parents:
diff changeset
99 /* { dg-output "\nres: 22 15 17 25" } */
kono
parents:
diff changeset
100
kono
parents:
diff changeset
101 CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_24byte_gn, NULL, code) == FFI_OK);
kono
parents:
diff changeset
102
kono
parents:
diff changeset
103 res_dbl = ((cls_struct_24byte(*)(cls_struct_24byte,
kono
parents:
diff changeset
104 cls_struct_24byte,
kono
parents:
diff changeset
105 cls_struct_24byte,
kono
parents:
diff changeset
106 cls_struct_24byte))
kono
parents:
diff changeset
107 (code))(e_dbl, f_dbl, g_dbl, h_dbl);
kono
parents:
diff changeset
108 /* { dg-output "\n9 2 6 5 1 2 3 7 4 5 7 9 8 6 1 9: 22 15 17 25" } */
kono
parents:
diff changeset
109 printf("res: %g %g %d %g\n", res_dbl.a, res_dbl.b, res_dbl.c, res_dbl.d);
kono
parents:
diff changeset
110 /* { dg-output "\nres: 22 15 17 25" } */
kono
parents:
diff changeset
111
kono
parents:
diff changeset
112 exit(0);
kono
parents:
diff changeset
113 }