OSDN Git Service

2006-02-28 Andreas Tobler <a.tobler@schweiz.ch>
[pf3gnuchains/gcc-fork.git] / libffi / testsuite / libffi.call / closure_fn0.c
1 /* Area:        closure_call
2    Purpose:     Check multiple values passing from different type.
3                 Also, exceed the limit of gpr and fpr registers on PowerPC
4                 Darwin.
5    Limitations: none.
6    PR:          none.
7    Originator:  <andreast@gcc.gnu.org> 20030828  */
8
9 /* { dg-do run { xfail mips64*-*-* arm*-*-* strongarm*-*-* xscale*-*-* } } */
10 #include "ffitest.h"
11
12 static void
13 closure_test_fn0(ffi_cif* cif __UNUSED__, void* resp, void** args,
14                  void* userdata)
15 {
16   *(ffi_arg*)resp =
17     (int)*(unsigned long long *)args[0] + (int)(*(int *)args[1]) +
18     (int)(*(unsigned long long *)args[2]) + (int)*(int *)args[3] +
19     (int)(*(signed short *)args[4]) +
20     (int)(*(unsigned long long *)args[5]) +
21     (int)*(int *)args[6] + (int)(*(int *)args[7]) +
22     (int)(*(double *)args[8]) + (int)*(int *)args[9] +
23     (int)(*(int *)args[10]) + (int)(*(float *)args[11]) +
24     (int)*(int *)args[12] + (int)(*(int *)args[13]) +
25     (int)(*(int *)args[14]) +  *(int *)args[15] + (int)(long)userdata;
26
27   printf("%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d: %d\n",
28          (int)*(unsigned long long *)args[0], (int)(*(int *)args[1]),
29          (int)(*(unsigned long long *)args[2]),
30          (int)*(int *)args[3], (int)(*(signed short *)args[4]),
31          (int)(*(unsigned long long *)args[5]),
32          (int)*(int *)args[6], (int)(*(int *)args[7]),
33          (int)(*(double *)args[8]), (int)*(int *)args[9],
34          (int)(*(int *)args[10]), (int)(*(float *)args[11]),
35          (int)*(int *)args[12], (int)(*(int *)args[13]),
36          (int)(*(int *)args[14]),*(int *)args[15],
37          (int)(long)userdata, (int)*(ffi_arg *)resp);
38
39 }
40
41 typedef int (*closure_test_type0)(unsigned long long, int, unsigned long long,
42                                   int, signed short, unsigned long long, int,
43                                   int, double, int, int, float, int, int,
44                                   int, int);
45
46 int main (void)
47 {
48   ffi_cif cif;
49 #ifndef USING_MMAP
50   static ffi_closure cl;
51 #endif
52   ffi_closure *pcl;
53   ffi_type * cl_arg_types[17];
54   int res;
55
56 #ifdef USING_MMAP
57   pcl = allocate_mmap (sizeof(ffi_closure));
58 #else
59   pcl = &cl;
60 #endif
61
62   cl_arg_types[0] = &ffi_type_uint64;
63   cl_arg_types[1] = &ffi_type_uint;
64   cl_arg_types[2] = &ffi_type_uint64;
65   cl_arg_types[3] = &ffi_type_uint;
66   cl_arg_types[4] = &ffi_type_sshort;
67   cl_arg_types[5] = &ffi_type_uint64;
68   cl_arg_types[6] = &ffi_type_uint;
69   cl_arg_types[7] = &ffi_type_uint;
70   cl_arg_types[8] = &ffi_type_double;
71   cl_arg_types[9] = &ffi_type_uint;
72   cl_arg_types[10] = &ffi_type_uint;
73   cl_arg_types[11] = &ffi_type_float;
74   cl_arg_types[12] = &ffi_type_uint;
75   cl_arg_types[13] = &ffi_type_uint;
76   cl_arg_types[14] = &ffi_type_uint;
77   cl_arg_types[15] = &ffi_type_uint;
78   cl_arg_types[16] = NULL;
79
80   /* Initialize the cif */
81   CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 16,
82                      &ffi_type_sint, cl_arg_types) == FFI_OK);
83
84   CHECK(ffi_prep_closure(pcl, &cif, closure_test_fn0,
85                          (void *) 3 /* userdata */) == FFI_OK);
86
87   res = (*((closure_test_type0)pcl))
88     (1LL, 2, 3LL, 4, 127, 429LL, 7, 8, 9.5, 10, 11, 12, 13,
89      19, 21, 1);
90   /* { dg-output "1 2 3 4 127 429 7 8 9 10 11 12 13 19 21 1 3: 680" } */
91   printf("res: %d\n",res);
92   /* { dg-output "\nres: 680" } */
93      exit(0);
94 }