huangcm
2025-08-25 f350412dc55c15118d0a7925d1071877498e5e24
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* Area:    ffi_call
   Purpose:    Check different structures.
   Limitations:    none.
   PR:        none.
   Originator:    Ronald Oussoren <oussoren@cistron.nl> 20030824    */
 
/* { dg-do run } */
#include "ffitest.h"
 
typedef struct Point {
   float x;
   float y;
} Point;
 
typedef struct Size {
   float h;
   float w;
} Size;
 
typedef struct Rect {
   Point o;
   Size  s;
} Rect;
 
int doit(int o, char* s, Point p, Rect r, int last)
{
   printf("CALLED WITH %d %s {%f %f} {{%f %f} {%f %f}} %d\n",
       o, s, p.x, p.y, r.o.x, r.o.y, r.s.h, r.s.w, last);
   return 42;
}
 
 
int main(void)
{
   ffi_type point_type;
   ffi_type size_type;
   ffi_type rect_type;
   ffi_cif cif;
   ffi_type* arglist[6];
   void* values[6];
   int r;
 
   /*
    *  First set up FFI types for the 3 struct types
    */
 
   point_type.size = 0; /*sizeof(Point);*/
   point_type.alignment = 0; /*__alignof__(Point);*/
   point_type.type = FFI_TYPE_STRUCT;
   point_type.elements = malloc(3 * sizeof(ffi_type*));
   point_type.elements[0] = &ffi_type_float;
   point_type.elements[1] = &ffi_type_float;
   point_type.elements[2] = NULL;
 
   size_type.size = 0;/* sizeof(Size);*/
   size_type.alignment = 0;/* __alignof__(Size);*/
   size_type.type = FFI_TYPE_STRUCT;
   size_type.elements = malloc(3 * sizeof(ffi_type*));
   size_type.elements[0] = &ffi_type_float;
   size_type.elements[1] = &ffi_type_float;
   size_type.elements[2] = NULL;
 
   rect_type.size = 0;/*sizeof(Rect);*/
   rect_type.alignment =0;/* __alignof__(Rect);*/
   rect_type.type = FFI_TYPE_STRUCT;
   rect_type.elements = malloc(3 * sizeof(ffi_type*));
   rect_type.elements[0] = &point_type;
   rect_type.elements[1] = &size_type;
   rect_type.elements[2] = NULL;
 
   /*
    * Create a CIF
    */
   arglist[0] = &ffi_type_sint;
   arglist[1] = &ffi_type_pointer;
   arglist[2] = &point_type;
   arglist[3] = &rect_type;
   arglist[4] = &ffi_type_sint;
   arglist[5] = NULL;
 
   r = ffi_prep_cif(&cif, FFI_DEFAULT_ABI,
           5, &ffi_type_sint, arglist);
   if (r != FFI_OK) {
       abort();
   }
 
 
   /* And call the function through the CIF */
 
   {
   Point p = { 1.0, 2.0 };
   Rect  r = { { 9.0, 10.0}, { -1.0, -2.0 } };
   int   o = 0;
   int   l = 42;
   char* m = "myMethod";
   ffi_arg result;
 
   values[0] = &o;
   values[1] = &m;
   values[2] = &p;
   values[3] = &r;
   values[4] = &l;
   values[5] = NULL;
 
   printf("CALLING WITH %d %s {%f %f} {{%f %f} {%f %f}} %d\n",
       o, m, p.x, p.y, r.o.x, r.o.y, r.s.h, r.s.w, l);
 
   ffi_call(&cif, FFI_FN(doit), &result, values);
 
   printf ("The result is %d\n", (int)result);
 
   }
   exit(0);
}