9e3bfa9b75
2003-09-19 Andreas Tobler <a.tobler@schweiz.ch> * testsuite/libffi.call/closure_fn0.c: Xfail mips, arm, strongarm, xscale. Cleanup whitespaces. * testsuite/libffi.call/closure_fn1.c: Likewise. * testsuite/libffi.call/closure_fn2.c: Likewise. * testsuite/libffi.call/closure_fn3.c: Likewise. * testsuite/libffi.call/cls_12byte.c: Likewise. * testsuite/libffi.call/cls_16byte.c: Likewise. * testsuite/libffi.call/cls_1_1byte.c: Likewise. * testsuite/libffi.call/cls_20byte.c: Likewise. * testsuite/libffi.call/cls_24byte.c: Likewise. * testsuite/libffi.call/cls_2byte.c: Likewise. * testsuite/libffi.call/cls_3_1byte.c: Likewise. * testsuite/libffi.call/cls_3byte1.c: Likewise. * testsuite/libffi.call/cls_3byte2.c: Likewise. * testsuite/libffi.call/cls_4_1byte.c: Likewise. * testsuite/libffi.call/cls_4byte.c: Likewise. * testsuite/libffi.call/cls_5byte.c: Likewise. * testsuite/libffi.call/cls_6byte.c: Likewise. * testsuite/libffi.call/cls_7byte.c: Likewise. * testsuite/libffi.call/cls_8byte.c: Likewise. * testsuite/libffi.call/cls_double.c: Likewise. * testsuite/libffi.call/cls_float.c: Likewise. * testsuite/libffi.call/cls_uchar.c: Likewise. * testsuite/libffi.call/cls_uint.c: Likewise. * testsuite/libffi.call/cls_ulonglong.c: Likewise. * testsuite/libffi.call/cls_ushort.c: Likewise. * testsuite/libffi.call/nested_struct.c: Likewise. * testsuite/libffi.call/nested_struct1.c: Likewise. * testsuite/libffi.call/problem1.c: Likewise. * testsuite/libffi.special/unwindtest.cc: Likewise. * testsuite/libffi.call/pyobjc-tc.c: Cleanup whitespaces. From-SVN: r71584
92 lines
2.5 KiB
C
92 lines
2.5 KiB
C
/* Area: ffi_call, closure_call
|
|
Purpose: Check structure passing with different structure size.
|
|
Limitations: none.
|
|
PR: none.
|
|
Originator: <andreast@gcc.gnu.org> 20030828 */
|
|
|
|
/* { dg-do run { xfail mips*-*-* arm*-*-* strongarm*-*-* xscale*-*-* } } */
|
|
#include "ffitest.h"
|
|
|
|
typedef struct cls_struct_12byte {
|
|
int a;
|
|
int b;
|
|
int c;
|
|
} cls_struct_12byte;
|
|
|
|
cls_struct_12byte cls_struct_12byte_fn(struct cls_struct_12byte b1,
|
|
struct cls_struct_12byte b2)
|
|
{
|
|
struct cls_struct_12byte result;
|
|
|
|
result.a = b1.a + b2.a;
|
|
result.b = b1.b + b2.b;
|
|
result.c = b1.c + b2.c;
|
|
|
|
printf("%d %d %d %d %d %d: %d %d %d\n", b1.a, b1.b, b1.c, b2.a, b2.b, b2.c,
|
|
result.a, result.b, result.c);
|
|
|
|
return result;
|
|
}
|
|
|
|
static void cls_struct_12byte_gn(ffi_cif* cif, void* resp, void** args, void* userdata)
|
|
{
|
|
struct cls_struct_12byte b1, b2;
|
|
|
|
b1 = *(struct cls_struct_12byte*)(args[0]);
|
|
b2 = *(struct cls_struct_12byte*)(args[1]);
|
|
|
|
*(cls_struct_12byte*)resp = cls_struct_12byte_fn(b1, b2);
|
|
}
|
|
|
|
int main (void)
|
|
{
|
|
ffi_cif cif;
|
|
static ffi_closure cl;
|
|
ffi_closure *pcl = &cl;
|
|
void* args_dbl[5];
|
|
ffi_type* cls_struct_fields[4];
|
|
ffi_type cls_struct_type;
|
|
ffi_type* dbl_arg_types[5];
|
|
|
|
cls_struct_type.size = 0;
|
|
cls_struct_type.alignment = 0;
|
|
cls_struct_type.type = FFI_TYPE_STRUCT;
|
|
cls_struct_type.elements = cls_struct_fields;
|
|
|
|
struct cls_struct_12byte h_dbl = { 7, 4, 9 };
|
|
struct cls_struct_12byte j_dbl = { 1, 5, 3 };
|
|
struct cls_struct_12byte res_dbl;
|
|
|
|
cls_struct_fields[0] = &ffi_type_uint32;
|
|
cls_struct_fields[1] = &ffi_type_uint32;
|
|
cls_struct_fields[2] = &ffi_type_uint32;
|
|
cls_struct_fields[3] = NULL;
|
|
|
|
dbl_arg_types[0] = &cls_struct_type;
|
|
dbl_arg_types[1] = &cls_struct_type;
|
|
dbl_arg_types[2] = NULL;
|
|
|
|
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type,
|
|
dbl_arg_types) == FFI_OK);
|
|
|
|
args_dbl[0] = &h_dbl;
|
|
args_dbl[1] = &j_dbl;
|
|
args_dbl[2] = NULL;
|
|
|
|
ffi_call(&cif, FFI_FN(cls_struct_12byte_fn), &res_dbl, args_dbl);
|
|
/* { dg-output "7 4 9 1 5 3: 8 9 12" } */
|
|
CHECK( res_dbl.a == (h_dbl.a + j_dbl.a));
|
|
CHECK( res_dbl.b == (h_dbl.b + j_dbl.b));
|
|
CHECK( res_dbl.c == (h_dbl.c + j_dbl.c));
|
|
|
|
CHECK(ffi_prep_closure(pcl, &cif, cls_struct_12byte_gn, NULL) == FFI_OK);
|
|
|
|
res_dbl = ((cls_struct_12byte(*)(cls_struct_12byte, cls_struct_12byte))(pcl))(h_dbl, j_dbl);
|
|
/* { dg-output "\n7 4 9 1 5 3: 8 9 12" } */
|
|
CHECK( res_dbl.a == (h_dbl.a + j_dbl.a));
|
|
CHECK( res_dbl.b == (h_dbl.b + j_dbl.b));
|
|
CHECK( res_dbl.c == (h_dbl.c + j_dbl.c));
|
|
|
|
exit(0);
|
|
}
|