Ruby
2.7.1p83(2020-03-31revisiona0c7c23c9cec0d0ffcba012279cd652d28ad5bf3)
ext
fiddle
libffi-3.2.1
testsuite
libffi.call
cls_schar.c
Go to the documentation of this file.
1
/* Area: closure_call
2
Purpose: Check return value schar.
3
Limitations: none.
4
PR: none.
5
Originator: <andreast@gcc.gnu.org> 20031108 */
6
7
8
9
/* { dg-do run } */
10
#include "
ffitest.h
"
11
12
static
void
cls_ret_schar_fn(ffi_cif* cif
__UNUSED__
,
void
* resp,
void
** args,
13
void
* userdata
__UNUSED__
)
14
{
15
*(
ffi_arg
*)resp = *(
signed
char
*)args[0];
16
printf
(
"%d: %d\n"
,*(
signed
char
*)args[0],
17
(
int
)*(
ffi_arg
*)(resp));
18
}
19
typedef
signed
char
(*
cls_ret_schar
)(
signed
char
);
20
21
int
main
(
void
)
22
{
23
ffi_cif cif;
24
void
*code;
25
ffi_closure *pcl = ffi_closure_alloc(
sizeof
(ffi_closure), &code);
26
ffi_type * cl_arg_types[2];
27
signed
char
res;
28
29
cl_arg_types[0] = &
ffi_type_schar
;
30
cl_arg_types[1] =
NULL
;
31
32
/* Initialize the cif */
33
CHECK
(
ffi_prep_cif
(&cif,
FFI_DEFAULT_ABI
, 1,
34
&
ffi_type_schar
, cl_arg_types) == FFI_OK);
35
36
CHECK
(
ffi_prep_closure_loc
(pcl, &cif, cls_ret_schar_fn,
NULL
, code) == FFI_OK);
37
38
res = (*((
cls_ret_schar
)code))(127);
39
/* { dg-output "127: 127" } */
40
printf
(
"res: %d\n"
, res);
41
/* { dg-output "\nres: 127" } */
42
43
exit
(0);
44
}
ffi_arg
unsigned long ffi_arg
Definition:
ffitarget.h:30
ffi_type_schar
#define ffi_type_schar
Definition:
fiddle.h:56
NULL
#define NULL
Definition:
_sdbm.c:101
char
#define char
Definition:
rb_mjit_min_header-2.7.1.h:2844
ffitest.h
__UNUSED__
#define __UNUSED__
Definition:
ffitest.h:28
CHECK
#define CHECK(sub)
Definition:
compile.c:448
FFI_DEFAULT_ABI
@ FFI_DEFAULT_ABI
Definition:
ffitarget.h:38
cls_ret_schar
signed char(* cls_ret_schar)(signed char)
Definition:
cls_schar.c:19
main
int main(void)
Definition:
cls_schar.c:21
ffi_prep_cif
ffi_status ffi_prep_cif(ffi_cif *cif, ffi_abi abi, unsigned int nargs, ffi_type *rtype, ffi_type **atypes)
Definition:
prep_cif.c:226
exit
void exit(int __status) __attribute__((__noreturn__))
printf
int int int printf(const char *__restrict,...) __attribute__((__format__(__printf__
ffi_prep_closure_loc
ffi_status ffi_prep_closure_loc(ffi_closure *closure, ffi_cif *cif, void(*fun)(ffi_cif *, void *, void **, void *), void *user_data, void *codeloc)
Definition:
ffi.c:928
Generated by
1.8.17