~ubuntu-branches/ubuntu/trusty/python3.4/trusty-proposed

« back to all changes in this revision

Viewing changes to Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_sshort.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-11-25 09:44:27 UTC
  • Revision ID: package-import@ubuntu.com-20131125094427-lzxj8ap5w01lmo7f
Tags: upstream-3.4~b1
ImportĀ upstreamĀ versionĀ 3.4~b1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Area:        ffi_call, closure_call
 
2
   Purpose:     Check passing of multiple signed short values.
 
3
   Limitations: none.
 
4
   PR:          PR13221.
 
5
   Originator:  <andreast@gcc.gnu.org> 20031129  */
 
6
 
 
7
/* { dg-do run } */
 
8
#include "ffitest.h"
 
9
 
 
10
signed short test_func_fn(signed short a1, signed short a2)
 
11
{
 
12
  signed short result;
 
13
 
 
14
  result = a1 + a2;
 
15
 
 
16
  printf("%d %d: %d\n", a1, a2, result);
 
17
 
 
18
  return result;
 
19
 
 
20
}
 
21
 
 
22
static void test_func_gn(ffi_cif *cif __UNUSED__, void *rval, void **avals,
 
23
                         void *data __UNUSED__)
 
24
{
 
25
  signed short a1, a2;
 
26
 
 
27
  a1 = *(signed short *)avals[0];
 
28
  a2 = *(signed short *)avals[1];
 
29
 
 
30
  *(ffi_arg *)rval = test_func_fn(a1, a2);
 
31
 
 
32
}
 
33
 
 
34
typedef signed short (*test_type)(signed short, signed short);
 
35
 
 
36
int main (void)
 
37
{
 
38
  ffi_cif cif;
 
39
  void *code;
 
40
  ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
 
41
  void * args_dbl[3];
 
42
  ffi_type * cl_arg_types[3];
 
43
  ffi_arg res_call;
 
44
  unsigned short a, b, res_closure;
 
45
 
 
46
  a = 2;
 
47
  b = 32765;
 
48
 
 
49
  args_dbl[0] = &a;
 
50
  args_dbl[1] = &b;
 
51
  args_dbl[2] = NULL;
 
52
 
 
53
  cl_arg_types[0] = &ffi_type_sshort;
 
54
  cl_arg_types[1] = &ffi_type_sshort;
 
55
  cl_arg_types[2] = NULL;
 
56
 
 
57
  /* Initialize the cif */
 
58
  CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2,
 
59
                     &ffi_type_sshort, cl_arg_types) == FFI_OK);
 
60
 
 
61
  ffi_call(&cif, FFI_FN(test_func_fn), &res_call, args_dbl);
 
62
  /* { dg-output "2 32765: 32767" } */
 
63
  printf("res: %d\n", (unsigned short)res_call);
 
64
  /* { dg-output "\nres: 32767" } */
 
65
 
 
66
  CHECK(ffi_prep_closure_loc(pcl, &cif, test_func_gn, NULL, code)  == FFI_OK);
 
67
 
 
68
  res_closure = (*((test_type)code))(2, 32765);
 
69
  /* { dg-output "\n2 32765: 32767" } */
 
70
  printf("res: %d\n", res_closure);
 
71
  /* { dg-output "\nres: 32767" } */
 
72
 
 
73
  exit(0);
 
74
}