OSDN Git Service

2004-08-24 David Daney <daney@avtrex.com>
[pf3gnuchains/gcc-fork.git] / libffi / testsuite / libffi.call / cls_16byte.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 mips64*-*-* arm*-*-* strongarm*-*-* xscale*-*-* } } */
9 #include "ffitest.h"
10
11 typedef struct cls_struct_16byte {
12   int a;
13   double b;
14   int c;
15 } cls_struct_16byte;
16
17 cls_struct_16byte cls_struct_16byte_fn(struct cls_struct_16byte b1,
18                             struct cls_struct_16byte b2)
19 {
20   struct cls_struct_16byte result;
21
22   result.a = b1.a + b2.a;
23   result.b = b1.b + b2.b;
24   result.c = b1.c + b2.c;
25
26   printf("%d %g %d %d %g %d: %d %g %d\n", b1.a, b1.b, b1.c, b2.a, b2.b, b2.c,
27          result.a, result.b, result.c);
28
29   return result;
30 }
31
32 static void cls_struct_16byte_gn(ffi_cif* cif, void* resp, void** args, void* userdata)
33 {
34   struct cls_struct_16byte b1, b2;
35
36   b1 = *(struct cls_struct_16byte*)(args[0]);
37   b2 = *(struct cls_struct_16byte*)(args[1]);
38
39   *(cls_struct_16byte*)resp = cls_struct_16byte_fn(b1, b2);
40 }
41
42 int main (void)
43 {
44   ffi_cif cif;
45 #ifndef USING_MMAP
46   static ffi_closure cl;
47 #endif
48   ffi_closure *pcl;
49   void* args_dbl[5];
50   ffi_type* cls_struct_fields[4];
51   ffi_type cls_struct_type;
52   ffi_type* dbl_arg_types[5];
53
54 #ifdef USING_MMAP
55   pcl = allocate_mmap (sizeof(ffi_closure));
56 #else
57   pcl = &cl;
58 #endif
59
60   cls_struct_type.size = 0;
61   cls_struct_type.alignment = 0;
62   cls_struct_type.type = FFI_TYPE_STRUCT;
63   cls_struct_type.elements = cls_struct_fields;
64
65   struct cls_struct_16byte h_dbl = { 7, 8.0, 9 };
66   struct cls_struct_16byte j_dbl = { 1, 9.0, 3 };
67   struct cls_struct_16byte res_dbl;
68
69   cls_struct_fields[0] = &ffi_type_uint32;
70   cls_struct_fields[1] = &ffi_type_double;
71   cls_struct_fields[2] = &ffi_type_uint32;
72   cls_struct_fields[3] = NULL;
73
74   dbl_arg_types[0] = &cls_struct_type;
75   dbl_arg_types[1] = &cls_struct_type;
76   dbl_arg_types[2] = NULL;
77
78   CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type,
79                      dbl_arg_types) == FFI_OK);
80
81   args_dbl[0] = &h_dbl;
82   args_dbl[1] = &j_dbl;
83   args_dbl[2] = NULL;
84
85   ffi_call(&cif, FFI_FN(cls_struct_16byte_fn), &res_dbl, args_dbl);
86   /* { dg-output "7 8 9 1 9 3: 8 17 12" } */
87   printf("res: %d %g %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
88   /* { dg-output "\nres: 8 17 12" } */
89
90   res_dbl.a = 0;
91   res_dbl.b = 0.0;
92   res_dbl.c = 0;
93
94   CHECK(ffi_prep_closure(pcl, &cif, cls_struct_16byte_gn, NULL) == FFI_OK);
95
96   res_dbl = ((cls_struct_16byte(*)(cls_struct_16byte, cls_struct_16byte))(pcl))(h_dbl, j_dbl);
97   /* { dg-output "\n7 8 9 1 9 3: 8 17 12" } */
98   printf("res: %d %g %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
99   /* { dg-output "\nres: 8 17 12" } */
100
101   exit(0);
102 }