2003-09-04 16:49:22 +02:00
|
|
|
/* Area: closure_call
|
|
|
|
Purpose: Check return value long long.
|
|
|
|
Limitations: none.
|
|
|
|
PR: none.
|
|
|
|
Originator: <andreast@gcc.gnu.org> 20030828 */
|
|
|
|
|
2004-08-25 07:06:55 +02:00
|
|
|
/* { dg-do run { xfail mips64*-*-* arm*-*-* strongarm*-*-* xscale*-*-* } } */
|
2003-09-04 16:49:22 +02:00
|
|
|
#include "ffitest.h"
|
|
|
|
|
|
|
|
static void cls_ret_ulonglong_fn(ffi_cif* cif,void* resp,void** args,
|
|
|
|
void* userdata)
|
|
|
|
{
|
|
|
|
*(unsigned long long *)resp= *(unsigned long long *)args[0];
|
2003-09-19 21:21:53 +02:00
|
|
|
|
|
|
|
printf("%llu: %llu\n",*(unsigned long long *)args[0],
|
2003-09-04 16:49:22 +02:00
|
|
|
*(unsigned long long *)resp);
|
|
|
|
}
|
|
|
|
typedef unsigned long long (*cls_ret_ulonglong)(unsigned long long);
|
|
|
|
|
|
|
|
int main (void)
|
|
|
|
{
|
|
|
|
ffi_cif cif;
|
2003-11-21 12:24:10 +01:00
|
|
|
#ifndef USING_MMAP
|
2003-09-04 16:49:22 +02:00
|
|
|
static ffi_closure cl;
|
2003-11-21 12:24:10 +01:00
|
|
|
#endif
|
|
|
|
ffi_closure *pcl;
|
2003-09-04 16:49:22 +02:00
|
|
|
ffi_type * cl_arg_types[2];
|
2003-11-08 19:32:16 +01:00
|
|
|
unsigned long long res;
|
2003-09-19 21:21:53 +02:00
|
|
|
|
2003-11-21 12:24:10 +01:00
|
|
|
#ifdef USING_MMAP
|
|
|
|
pcl = allocate_mmap (sizeof(ffi_closure));
|
|
|
|
#else
|
|
|
|
pcl = &cl;
|
|
|
|
#endif
|
|
|
|
|
2003-09-04 16:49:22 +02:00
|
|
|
cl_arg_types[0] = &ffi_type_uint64;
|
|
|
|
cl_arg_types[1] = NULL;
|
2003-09-19 21:21:53 +02:00
|
|
|
|
2003-09-04 16:49:22 +02:00
|
|
|
/* Initialize the cif */
|
|
|
|
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
|
|
|
|
&ffi_type_uint64, cl_arg_types) == FFI_OK);
|
|
|
|
CHECK(ffi_prep_closure(pcl, &cif, cls_ret_ulonglong_fn, NULL) == FFI_OK);
|
2003-11-08 19:32:16 +01:00
|
|
|
res = (*((cls_ret_ulonglong)pcl))(214LL);
|
2003-09-04 16:49:22 +02:00
|
|
|
/* { dg-output "214: 214" } */
|
2003-11-09 18:05:10 +01:00
|
|
|
printf("res: %lld\n", res);
|
|
|
|
/* { dg-output "\nres: 214" } */
|
|
|
|
|
2003-11-08 19:32:16 +01:00
|
|
|
res = (*((cls_ret_ulonglong)pcl))(9223372035854775808LL);
|
2003-09-04 16:49:22 +02:00
|
|
|
/* { dg-output "\n9223372035854775808: 9223372035854775808" } */
|
2003-11-09 18:05:10 +01:00
|
|
|
printf("res: %lld\n", res);
|
|
|
|
/* { dg-output "\nres: 9223372035854775808" } */
|
|
|
|
|
2003-09-19 21:21:53 +02:00
|
|
|
exit(0);
|
2003-09-04 16:49:22 +02:00
|
|
|
}
|