annotate libffi/testsuite/libffi.call/stret_large.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 returning with different structure size.
kono
parents:
diff changeset
3 Depending on the ABI. Check bigger struct which overlaps
kono
parents:
diff changeset
4 the gp and fp register count on Darwin/AIX/ppc64.
kono
parents:
diff changeset
5 Limitations: none.
kono
parents:
diff changeset
6 PR: none.
kono
parents:
diff changeset
7 Originator: Blake Chaffin 6/21/2007 */
kono
parents:
diff changeset
8
kono
parents:
diff changeset
9 /* { dg-do run { xfail strongarm*-*-* xscale*-*-* } } */
kono
parents:
diff changeset
10 #include "ffitest.h"
kono
parents:
diff changeset
11
kono
parents:
diff changeset
12 /* 13 FPRs: 104 bytes */
kono
parents:
diff changeset
13 /* 14 FPRs: 112 bytes */
kono
parents:
diff changeset
14
kono
parents:
diff changeset
15 typedef struct struct_108byte {
kono
parents:
diff changeset
16 double a;
kono
parents:
diff changeset
17 double b;
kono
parents:
diff changeset
18 double c;
kono
parents:
diff changeset
19 double d;
kono
parents:
diff changeset
20 double e;
kono
parents:
diff changeset
21 double f;
kono
parents:
diff changeset
22 double g;
kono
parents:
diff changeset
23 double h;
kono
parents:
diff changeset
24 double i;
kono
parents:
diff changeset
25 double j;
kono
parents:
diff changeset
26 double k;
kono
parents:
diff changeset
27 double l;
kono
parents:
diff changeset
28 double m;
kono
parents:
diff changeset
29 int n;
kono
parents:
diff changeset
30 } struct_108byte;
kono
parents:
diff changeset
31
kono
parents:
diff changeset
32 struct_108byte cls_struct_108byte_fn(
kono
parents:
diff changeset
33 struct_108byte b0,
kono
parents:
diff changeset
34 struct_108byte b1,
kono
parents:
diff changeset
35 struct_108byte b2,
kono
parents:
diff changeset
36 struct_108byte b3)
kono
parents:
diff changeset
37 {
kono
parents:
diff changeset
38 struct_108byte result;
kono
parents:
diff changeset
39
kono
parents:
diff changeset
40 result.a = b0.a + b1.a + b2.a + b3.a;
kono
parents:
diff changeset
41 result.b = b0.b + b1.b + b2.b + b3.b;
kono
parents:
diff changeset
42 result.c = b0.c + b1.c + b2.c + b3.c;
kono
parents:
diff changeset
43 result.d = b0.d + b1.d + b2.d + b3.d;
kono
parents:
diff changeset
44 result.e = b0.e + b1.e + b2.e + b3.e;
kono
parents:
diff changeset
45 result.f = b0.f + b1.f + b2.f + b3.f;
kono
parents:
diff changeset
46 result.g = b0.g + b1.g + b2.g + b3.g;
kono
parents:
diff changeset
47 result.h = b0.h + b1.h + b2.h + b3.h;
kono
parents:
diff changeset
48 result.i = b0.i + b1.i + b2.i + b3.i;
kono
parents:
diff changeset
49 result.j = b0.j + b1.j + b2.j + b3.j;
kono
parents:
diff changeset
50 result.k = b0.k + b1.k + b2.k + b3.k;
kono
parents:
diff changeset
51 result.l = b0.l + b1.l + b2.l + b3.l;
kono
parents:
diff changeset
52 result.m = b0.m + b1.m + b2.m + b3.m;
kono
parents:
diff changeset
53 result.n = b0.n + b1.n + b2.n + b3.n;
kono
parents:
diff changeset
54
kono
parents:
diff changeset
55 printf("%g %g %g %g %g %g %g %g %g %g %g %g %g %d\n", result.a, result.b, result.c,
kono
parents:
diff changeset
56 result.d, result.e, result.f, result.g, result.h, result.i,
kono
parents:
diff changeset
57 result.j, result.k, result.l, result.m, result.n);
kono
parents:
diff changeset
58
kono
parents:
diff changeset
59 return result;
kono
parents:
diff changeset
60 }
kono
parents:
diff changeset
61
kono
parents:
diff changeset
62 static void
kono
parents:
diff changeset
63 cls_struct_108byte_gn(ffi_cif* cif __UNUSED__, void* resp, void** args, void* userdata __UNUSED__)
kono
parents:
diff changeset
64 {
kono
parents:
diff changeset
65 struct_108byte b0, b1, b2, b3;
kono
parents:
diff changeset
66
kono
parents:
diff changeset
67 b0 = *(struct_108byte*)(args[0]);
kono
parents:
diff changeset
68 b1 = *(struct_108byte*)(args[1]);
kono
parents:
diff changeset
69 b2 = *(struct_108byte*)(args[2]);
kono
parents:
diff changeset
70 b3 = *(struct_108byte*)(args[3]);
kono
parents:
diff changeset
71
kono
parents:
diff changeset
72 *(struct_108byte*)resp = cls_struct_108byte_fn(b0, b1, b2, b3);
kono
parents:
diff changeset
73 }
kono
parents:
diff changeset
74
kono
parents:
diff changeset
75 int main (void)
kono
parents:
diff changeset
76 {
kono
parents:
diff changeset
77 ffi_cif cif;
kono
parents:
diff changeset
78 void *code;
kono
parents:
diff changeset
79 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
kono
parents:
diff changeset
80 void* args_dbl[5];
kono
parents:
diff changeset
81 ffi_type* cls_struct_fields[15];
kono
parents:
diff changeset
82 ffi_type cls_struct_type;
kono
parents:
diff changeset
83 ffi_type* dbl_arg_types[5];
kono
parents:
diff changeset
84
kono
parents:
diff changeset
85 struct_108byte e_dbl = { 9.0, 2.0, 6.0, 5.0, 3.0, 4.0, 8.0, 1.0, 1.0, 2.0, 3.0, 7.0, 2.0, 7 };
kono
parents:
diff changeset
86 struct_108byte f_dbl = { 1.0, 2.0, 3.0, 7.0, 2.0, 5.0, 6.0, 7.0, 4.0, 5.0, 7.0, 9.0, 1.0, 4 };
kono
parents:
diff changeset
87 struct_108byte g_dbl = { 4.0, 5.0, 7.0, 9.0, 1.0, 1.0, 2.0, 9.0, 8.0, 6.0, 1.0, 4.0, 0.0, 3 };
kono
parents:
diff changeset
88 struct_108byte h_dbl = { 8.0, 6.0, 1.0, 4.0, 0.0, 3.0, 3.0, 1.0, 9.0, 2.0, 6.0, 5.0, 3.0, 2 };
kono
parents:
diff changeset
89 struct_108byte res_dbl;
kono
parents:
diff changeset
90
kono
parents:
diff changeset
91 cls_struct_type.size = 0;
kono
parents:
diff changeset
92 cls_struct_type.alignment = 0;
kono
parents:
diff changeset
93 cls_struct_type.type = FFI_TYPE_STRUCT;
kono
parents:
diff changeset
94 cls_struct_type.elements = cls_struct_fields;
kono
parents:
diff changeset
95
kono
parents:
diff changeset
96 cls_struct_fields[0] = &ffi_type_double;
kono
parents:
diff changeset
97 cls_struct_fields[1] = &ffi_type_double;
kono
parents:
diff changeset
98 cls_struct_fields[2] = &ffi_type_double;
kono
parents:
diff changeset
99 cls_struct_fields[3] = &ffi_type_double;
kono
parents:
diff changeset
100 cls_struct_fields[4] = &ffi_type_double;
kono
parents:
diff changeset
101 cls_struct_fields[5] = &ffi_type_double;
kono
parents:
diff changeset
102 cls_struct_fields[6] = &ffi_type_double;
kono
parents:
diff changeset
103 cls_struct_fields[7] = &ffi_type_double;
kono
parents:
diff changeset
104 cls_struct_fields[8] = &ffi_type_double;
kono
parents:
diff changeset
105 cls_struct_fields[9] = &ffi_type_double;
kono
parents:
diff changeset
106 cls_struct_fields[10] = &ffi_type_double;
kono
parents:
diff changeset
107 cls_struct_fields[11] = &ffi_type_double;
kono
parents:
diff changeset
108 cls_struct_fields[12] = &ffi_type_double;
kono
parents:
diff changeset
109 cls_struct_fields[13] = &ffi_type_sint32;
kono
parents:
diff changeset
110 cls_struct_fields[14] = NULL;
kono
parents:
diff changeset
111
kono
parents:
diff changeset
112 dbl_arg_types[0] = &cls_struct_type;
kono
parents:
diff changeset
113 dbl_arg_types[1] = &cls_struct_type;
kono
parents:
diff changeset
114 dbl_arg_types[2] = &cls_struct_type;
kono
parents:
diff changeset
115 dbl_arg_types[3] = &cls_struct_type;
kono
parents:
diff changeset
116 dbl_arg_types[4] = NULL;
kono
parents:
diff changeset
117
kono
parents:
diff changeset
118 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 4, &cls_struct_type,
kono
parents:
diff changeset
119 dbl_arg_types) == FFI_OK);
kono
parents:
diff changeset
120
kono
parents:
diff changeset
121 args_dbl[0] = &e_dbl;
kono
parents:
diff changeset
122 args_dbl[1] = &f_dbl;
kono
parents:
diff changeset
123 args_dbl[2] = &g_dbl;
kono
parents:
diff changeset
124 args_dbl[3] = &h_dbl;
kono
parents:
diff changeset
125 args_dbl[4] = NULL;
kono
parents:
diff changeset
126
kono
parents:
diff changeset
127 ffi_call(&cif, FFI_FN(cls_struct_108byte_fn), &res_dbl, args_dbl);
kono
parents:
diff changeset
128 /* { dg-output "22 15 17 25 6 13 19 18 22 15 17 25 6 16" } */
kono
parents:
diff changeset
129 printf("res: %g %g %g %g %g %g %g %g %g %g %g %g %g %d\n", res_dbl.a, res_dbl.b,
kono
parents:
diff changeset
130 res_dbl.c, res_dbl.d, res_dbl.e, res_dbl.f, res_dbl.g, res_dbl.h, res_dbl.i,
kono
parents:
diff changeset
131 res_dbl.j, res_dbl.k, res_dbl.l, res_dbl.m, res_dbl.n);
kono
parents:
diff changeset
132 /* { dg-output "\nres: 22 15 17 25 6 13 19 18 22 15 17 25 6 16" } */
kono
parents:
diff changeset
133
kono
parents:
diff changeset
134 CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_108byte_gn, NULL, code) == FFI_OK);
kono
parents:
diff changeset
135
kono
parents:
diff changeset
136 res_dbl = ((struct_108byte(*)(struct_108byte, struct_108byte,
kono
parents:
diff changeset
137 struct_108byte, struct_108byte))(code))(e_dbl, f_dbl, g_dbl, h_dbl);
kono
parents:
diff changeset
138 /* { dg-output "\n22 15 17 25 6 13 19 18 22 15 17 25 6 16" } */
kono
parents:
diff changeset
139 printf("res: %g %g %g %g %g %g %g %g %g %g %g %g %g %d\n", res_dbl.a, res_dbl.b,
kono
parents:
diff changeset
140 res_dbl.c, res_dbl.d, res_dbl.e, res_dbl.f, res_dbl.g, res_dbl.h, res_dbl.i,
kono
parents:
diff changeset
141 res_dbl.j, res_dbl.k, res_dbl.l, res_dbl.m, res_dbl.n);
kono
parents:
diff changeset
142 /* { dg-output "\nres: 22 15 17 25 6 13 19 18 22 15 17 25 6 16" } */
kono
parents:
diff changeset
143
kono
parents:
diff changeset
144 exit(0);
kono
parents:
diff changeset
145 }