OSDN Git Service

Merge "Only mips needs libffi (for unoptimized dalvik JNI)."
[android-x86/external-libffi.git] / testsuite / libffi.call / cls_3_1byte.c
1 /* Area:        ffi_call, closure_call
2    Purpose:     Check structure passing with different structure size.
3                 Especially with small structures which may fit in one
4                 register. Depending on the ABI.
5    Limitations: none.
6    PR:          none.
7    Originator:  <andreast@gcc.gnu.org> 20030902  */
8
9 /* { dg-do run } */
10 #include "ffitest.h"
11
12 typedef struct cls_struct_3_1byte {
13   unsigned char a;
14   unsigned char b;
15   unsigned char c;
16 } cls_struct_3_1byte;
17
18 cls_struct_3_1byte cls_struct_3_1byte_fn(struct cls_struct_3_1byte a1,
19                             struct cls_struct_3_1byte a2)
20 {
21   struct cls_struct_3_1byte result;
22
23   result.a = a1.a + a2.a;
24   result.b = a1.b + a2.b;
25   result.c = a1.c + a2.c;
26
27   printf("%d %d %d %d %d %d: %d %d %d\n", a1.a, a1.b, a1.c,
28          a2.a, a2.b, a2.c,
29          result.a, result.b, result.c);
30
31   return  result;
32 }
33
34 static void
35 cls_struct_3_1byte_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
36                       void* userdata __UNUSED__)
37 {
38
39   struct cls_struct_3_1byte a1, a2;
40
41   a1 = *(struct cls_struct_3_1byte*)(args[0]);
42   a2 = *(struct cls_struct_3_1byte*)(args[1]);
43
44   *(cls_struct_3_1byte*)resp = cls_struct_3_1byte_fn(a1, a2);
45 }
46
47 int main (void)
48 {
49   ffi_cif cif;
50 #ifndef USING_MMAP
51   static ffi_closure cl;
52 #endif
53   ffi_closure *pcl;
54   void* args_dbl[5];
55   ffi_type* cls_struct_fields[4];
56   ffi_type cls_struct_type;
57   ffi_type* dbl_arg_types[5];
58
59 #ifdef USING_MMAP
60   pcl = allocate_mmap (sizeof(ffi_closure));
61 #else
62   pcl = &cl;
63 #endif
64
65   cls_struct_type.size = 0;
66   cls_struct_type.alignment = 0;
67   cls_struct_type.type = FFI_TYPE_STRUCT;
68   cls_struct_type.elements = cls_struct_fields;
69
70   struct cls_struct_3_1byte g_dbl = { 12, 13, 14 };
71   struct cls_struct_3_1byte f_dbl = { 178, 179, 180 };
72   struct cls_struct_3_1byte res_dbl;
73
74   cls_struct_fields[0] = &ffi_type_uchar;
75   cls_struct_fields[1] = &ffi_type_uchar;
76   cls_struct_fields[2] = &ffi_type_uchar;
77   cls_struct_fields[3] = NULL;
78
79   dbl_arg_types[0] = &cls_struct_type;
80   dbl_arg_types[1] = &cls_struct_type;
81   dbl_arg_types[2] = NULL;
82
83   CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type,
84                      dbl_arg_types) == FFI_OK);
85
86   args_dbl[0] = &g_dbl;
87   args_dbl[1] = &f_dbl;
88   args_dbl[2] = NULL;
89
90   ffi_call(&cif, FFI_FN(cls_struct_3_1byte_fn), &res_dbl, args_dbl);
91   /* { dg-output "12 13 14 178 179 180: 190 192 194" } */
92   printf("res: %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
93   /* { dg-output "\nres: 190 192 194" } */
94
95   CHECK(ffi_prep_closure(pcl, &cif, cls_struct_3_1byte_gn, NULL) == FFI_OK);
96
97   res_dbl = ((cls_struct_3_1byte(*)(cls_struct_3_1byte, cls_struct_3_1byte))(pcl))(g_dbl, f_dbl);
98   /* { dg-output "\n12 13 14 178 179 180: 190 192 194" } */
99   printf("res: %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
100   /* { dg-output "\nres: 190 192 194" } */
101
102   exit(0);
103 }