OSDN Git Service

2003-11-08 Andreas Tobler <a.tobler@schweiz.ch>
[pf3gnuchains/gcc-fork.git] / libffi / testsuite / libffi.call / cls_20byte1.c
1 /* Area:        ffi_call, closure_call
2    Purpose:     Check structure passing with different structure size.
3                 Depending on the ABI. Check overlapping.
4    Limitations: none.
5    PR:          none.
6    Originator:  <andreast@gcc.gnu.org> 20030828  */
7
8 /* { dg-do run { xfail mips*-*-* arm*-*-* strongarm*-*-* xscale*-*-* } } */
9 #include "ffitest.h"
10
11 typedef struct cls_struct_20byte {
12   int a;
13   double b;
14   double c;
15 } cls_struct_20byte;
16
17 cls_struct_20byte cls_struct_20byte_fn(struct cls_struct_20byte a1,
18                             struct cls_struct_20byte a2)
19 {
20   struct cls_struct_20byte result;
21
22   result.a = a1.a + a2.a;
23   result.b = a1.b + a2.b;
24   result.c = a1.c + a2.c;
25
26   printf("%d %g %g %d %g %g: %d %g %g\n", a1.a, a1.b, a1.c, a2.a, a2.b, a2.c,
27          result.a, result.b, result.c);
28   return result;
29 }
30
31 static void
32 cls_struct_20byte_gn(ffi_cif* cif, void* resp, void** args, void* userdata)
33 {
34   struct cls_struct_20byte a1, a2;
35
36   a1 = *(struct cls_struct_20byte*)(args[0]);
37   a2 = *(struct cls_struct_20byte*)(args[1]);
38
39   *(cls_struct_20byte*)resp = cls_struct_20byte_fn(a1, a2);
40 }
41
42 int main (void)
43 {
44   ffi_cif cif;
45   static ffi_closure cl;
46   ffi_closure *pcl = &cl;
47   void* args_dbl[3];
48   ffi_type* cls_struct_fields[4];
49   ffi_type cls_struct_type;
50   ffi_type* dbl_arg_types[3];
51
52   cls_struct_type.size = 0;
53   cls_struct_type.alignment = 0;
54   cls_struct_type.type = FFI_TYPE_STRUCT;
55   cls_struct_type.elements = cls_struct_fields;
56
57   struct cls_struct_20byte g_dbl = { 1, 2.0, 3.0 };
58   struct cls_struct_20byte f_dbl = { 4, 5.0, 7.0 };
59   struct cls_struct_20byte res_dbl;
60
61   cls_struct_fields[0] = &ffi_type_uint32;
62   cls_struct_fields[1] = &ffi_type_double;
63   cls_struct_fields[2] = &ffi_type_double;
64   cls_struct_fields[3] = NULL;
65
66   dbl_arg_types[0] = &cls_struct_type;
67   dbl_arg_types[1] = &cls_struct_type;
68   dbl_arg_types[2] = NULL;
69
70   CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type,
71                      dbl_arg_types) == FFI_OK);
72
73   args_dbl[0] = &g_dbl;
74   args_dbl[1] = &f_dbl;
75   args_dbl[2] = NULL;
76
77   ffi_call(&cif, FFI_FN(cls_struct_20byte_fn), &res_dbl, args_dbl);
78   /* { dg-output "1 2 3 4 5 7: 5 7 10" } */
79   CHECK( res_dbl.a == (g_dbl.a + f_dbl.a));
80   CHECK( res_dbl.b == (g_dbl.b + f_dbl.b));
81   CHECK( res_dbl.c == (g_dbl.c + f_dbl.c));
82
83   CHECK(ffi_prep_closure(pcl, &cif, cls_struct_20byte_gn, NULL) == FFI_OK);
84
85   res_dbl = ((cls_struct_20byte(*)(cls_struct_20byte, cls_struct_20byte))(pcl))(g_dbl, f_dbl);
86   /* { dg-output "\n1 2 3 4 5 7: 5 7 10" } */
87   CHECK( res_dbl.a == (g_dbl.a + f_dbl.a));
88   CHECK( res_dbl.b == (g_dbl.b + f_dbl.b));
89   CHECK( res_dbl.c == (g_dbl.c + f_dbl.c));
90
91   exit(0);
92 }