ffi 1.11.3 → 1.12.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (154) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +2 -0
  3. data/CHANGELOG.md +27 -0
  4. data/Gemfile +2 -2
  5. data/README.md +10 -1
  6. data/ext/ffi_c/Struct.c +47 -51
  7. data/ext/ffi_c/Struct.h +12 -6
  8. data/ext/ffi_c/StructLayout.c +13 -12
  9. data/ext/ffi_c/extconf.rb +0 -1
  10. data/ext/ffi_c/libffi/.travis.yml +28 -12
  11. data/ext/ffi_c/libffi/.travis/bfin-sim.exp +58 -0
  12. data/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +14 -0
  13. data/ext/ffi_c/libffi/.travis/build-in-container.sh +2 -12
  14. data/ext/ffi_c/libffi/.travis/build.sh +58 -30
  15. data/ext/ffi_c/libffi/.travis/install.sh +65 -37
  16. data/ext/ffi_c/libffi/.travis/m32r-sim.exp +58 -0
  17. data/ext/ffi_c/libffi/.travis/or1k-sim.exp +58 -0
  18. data/ext/ffi_c/libffi/.travis/powerpc-eabisim.exp +58 -0
  19. data/ext/ffi_c/libffi/.travis/site.exp +10 -1
  20. data/ext/ffi_c/libffi/.travis/wine-sim.exp +55 -0
  21. data/ext/ffi_c/libffi/{ChangeLog.libffi-3.1 → ChangeLog.old} +1407 -0
  22. data/ext/ffi_c/libffi/LICENSE +1 -1
  23. data/ext/ffi_c/libffi/Makefile.am +4 -3
  24. data/ext/ffi_c/libffi/README.md +12 -6
  25. data/ext/ffi_c/libffi/configure.ac +1 -1
  26. data/ext/ffi_c/libffi/configure.host +5 -2
  27. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +1 -3
  28. data/ext/ffi_c/libffi/include/ffi.h.in +7 -7
  29. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +2 -48
  30. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +5 -26
  31. data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +5 -26
  32. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +2 -1
  33. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +5 -26
  34. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +7 -3
  35. data/ext/ffi_c/libffi/src/closures.c +10 -2
  36. data/ext/ffi_c/libffi/src/mips/o32.S +2 -0
  37. data/ext/ffi_c/libffi/src/powerpc/ffi.c +3 -2
  38. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +154 -8
  39. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +18 -7
  40. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +10 -4
  41. data/ext/ffi_c/libffi/src/powerpc/linux64.S +83 -28
  42. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +67 -3
  43. data/ext/ffi_c/libffi/testsuite/Makefile.am +78 -75
  44. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +1 -18
  45. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +7 -2
  46. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1 -1
  47. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +1 -1
  48. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +12 -1
  49. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
  50. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +0 -0
  51. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +0 -0
  52. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +0 -0
  53. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +0 -0
  54. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +0 -0
  55. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +0 -0
  56. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +0 -0
  57. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +0 -0
  58. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_simple.c +0 -0
  59. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +0 -0
  60. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +0 -0
  61. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +0 -0
  62. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +0 -0
  63. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +0 -0
  64. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +0 -0
  65. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +0 -0
  66. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +0 -0
  67. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +0 -0
  68. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +0 -0
  69. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +0 -0
  70. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +0 -0
  71. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3float.c +0 -0
  72. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +0 -0
  73. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +0 -0
  74. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +0 -0
  75. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +0 -0
  76. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +0 -0
  77. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +0 -0
  78. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +0 -0
  79. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +0 -0
  80. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +0 -0
  81. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +0 -0
  82. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +0 -0
  83. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +0 -0
  84. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +0 -0
  85. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +0 -0
  86. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +0 -0
  87. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +0 -0
  88. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +0 -0
  89. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +0 -0
  90. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +0 -0
  91. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +0 -0
  92. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +0 -0
  93. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +0 -0
  94. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +0 -0
  95. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +0 -0
  96. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +0 -0
  97. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
  98. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +0 -0
  99. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +0 -0
  100. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +0 -0
  101. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +0 -0
  102. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_args.c +0 -0
  103. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_float_double.c +0 -0
  104. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +0 -0
  105. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +0 -0
  106. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +0 -0
  107. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +0 -0
  108. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +0 -0
  109. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +0 -0
  110. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +0 -0
  111. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +0 -0
  112. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +0 -0
  113. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +0 -0
  114. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +0 -0
  115. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_struct_va1.c +0 -0
  116. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +0 -0
  117. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar_va.c +0 -0
  118. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +0 -0
  119. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint_va.c +0 -0
  120. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulong_va.c +0 -0
  121. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +0 -0
  122. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +0 -0
  123. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort_va.c +0 -0
  124. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +0 -0
  125. data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +138 -0
  126. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +1 -1
  127. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +0 -0
  128. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +0 -0
  129. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +0 -0
  130. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct11.c +0 -0
  131. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +0 -0
  132. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +0 -0
  133. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +0 -0
  134. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +0 -0
  135. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +0 -0
  136. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +0 -0
  137. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +0 -0
  138. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +0 -0
  139. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
  140. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +0 -0
  141. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +0 -0
  142. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +0 -0
  143. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +0 -0
  144. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +0 -0
  145. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest.cc +0 -0
  146. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest_ffi_call.cc +0 -0
  147. data/ffi.gemspec +2 -2
  148. data/lib/ffi/ffi.rb +1 -0
  149. data/lib/ffi/struct.rb +2 -3
  150. data/lib/ffi/version.rb +1 -1
  151. metadata +112 -108
  152. data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
  153. data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
  154. data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
@@ -24,11 +24,6 @@ load_lib libgloss.exp
24
24
  load_gcc_lib target-libpath.exp
25
25
  load_gcc_lib wrapper.exp
26
26
 
27
- proc check_effective_target_gccbug { } {
28
- global has_gccbug
29
- return $has_gccbug
30
- }
31
-
32
27
  # Return 1 if the target matches the effective target 'arg', 0 otherwise.
33
28
  # This can be used with any check_* proc that takes no argument and
34
29
  # returns only 1 or 0. It could be used with check_* procs that take
@@ -482,7 +477,6 @@ proc libffi-dg-runtest { testcases default-extra-flags } {
482
477
 
483
478
  proc run-many-tests { testcases extra_flags } {
484
479
  global compiler_vendor
485
- global has_gccbug
486
480
  global env
487
481
  switch $compiler_vendor {
488
482
  "clang" {
@@ -498,7 +492,7 @@ proc run-many-tests { testcases extra_flags } {
498
492
  if [info exists env(LIBFFI_TEST_OPTIMIZATION)] {
499
493
  set optimizations [ list $env(LIBFFI_TEST_OPTIMIZATION) ]
500
494
  } else {
501
- set optimizations { "-O0" "-O2" "-O2 -fomit-frame-pointer" }
495
+ set optimizations { "-O0" "-O2" }
502
496
  }
503
497
  }
504
498
  default {
@@ -544,17 +538,6 @@ proc run-many-tests { testcases extra_flags } {
544
538
  foreach opt $optimizations {
545
539
  foreach abi $abis {
546
540
  set options [concat $common $opt $abi]
547
- set has_gccbug false;
548
- if { [string match $compiler_vendor "gnu"] \
549
- && [string match "*MSABI*" $abi] \
550
- && ( ( [string match "*DGTEST=57 *" $common] \
551
- && [string match "*call.c*" $testname] ) \
552
- || ( [string match "*DGTEST=54 *" $common] \
553
- && [string match "*callback*" $testname] ) \
554
- || [string match "*DGTEST=55 *" $common] \
555
- || [string match "*DGTEST=56 *" $common] ) } then {
556
- set has_gccbug true;
557
- }
558
541
  verbose "Testing $testname, $options" 1
559
542
  dg-test $test $options ""
560
543
  }
@@ -19,7 +19,6 @@ libffi-init
19
19
 
20
20
  global srcdir subdir
21
21
  global compiler_vendor
22
- global has_gccbug
23
22
 
24
23
  # The conversion of this testsuite into a dejagnu compatible testsuite
25
24
  # was done in a pretty lazy fashion, and requires the use of compiler
@@ -48,7 +47,13 @@ for {set i 1} {$i < 82} {incr i} {
48
47
  set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/test-callback.c]]
49
48
 
50
49
  for {set i 1} {$i < 81} {incr i} {
51
- run-many-tests $tlist [format "-DDGTEST=%d %s" $i $warning_options]
50
+ if { [libffi_feature_test "#if FFI_CLOSURES"] } {
51
+ run-many-tests $tlist [format "-DDGTEST=%d %s" $i $warning_options]
52
+ } else {
53
+ foreach test $tlist {
54
+ unsupported [format "%s -DDGTEST=%d %s" $test $i $warning_options]
55
+ }
56
+ }
52
57
  }
53
58
 
54
59
  dg-finish
@@ -16,7 +16,7 @@
16
16
  along with this program. If not, see <http://www.gnu.org/licenses/>.
17
17
  **/
18
18
 
19
- /* { dg-do run { xfail gccbug } }*/
19
+ /* { dg-do run } */
20
20
 
21
21
  #include <stdio.h>
22
22
  #include <stdlib.h>
@@ -16,7 +16,7 @@
16
16
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17
17
  */
18
18
 
19
- /* { dg-do run { xfail gccbug } }*/
19
+ /* { dg-do run } */
20
20
 
21
21
  #include <stdio.h>
22
22
  #include <stdlib.h>
@@ -32,10 +32,21 @@ if { [string match $compiler_vendor "microsoft"] } {
32
32
  set additional_options "";
33
33
  }
34
34
 
35
- set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/*.{c,cc}]]
35
+ set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/*.c]]
36
36
 
37
37
  run-many-tests $tlist $additional_options
38
38
 
39
+ set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/*.cc]]
40
+
41
+ # No C++ for or1k
42
+ if { [istarget "or1k-*-*"] } {
43
+ foreach test $tlist {
44
+ unsupported "$test"
45
+ }
46
+ } else {
47
+ run-many-tests $tlist $additional_options
48
+ }
49
+
39
50
  dg-finish
40
51
 
41
52
  # Local Variables:
@@ -0,0 +1,67 @@
1
+ # Copyright (C) 2003, 2006, 2009, 2010, 2014, 2019 Free Software Foundation, Inc.
2
+ # Copyright (C) 2019 Anthony Green
3
+
4
+ # This program is free software; you can redistribute it and/or modify
5
+ # it under the terms of the GNU General Public License as published by
6
+ # the Free Software Foundation; either version 3 of the License, or
7
+ # (at your option) any later version.
8
+ #
9
+ # This program is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ # GNU General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU General Public License
15
+ # along with this program; see the file COPYING3. If not see
16
+ # <http://www.gnu.org/licenses/>.
17
+
18
+ dg-init
19
+ libffi-init
20
+
21
+ global srcdir subdir
22
+
23
+ if { [string match $compiler_vendor "microsoft"] } {
24
+ # -wd4005 macro redefinition
25
+ # -wd4244 implicit conversion to type of smaller size
26
+ # -wd4305 truncation to smaller type
27
+ # -wd4477 printf %lu of uintptr_t
28
+ # -wd4312 implicit conversion to type of greater size
29
+ # -wd4311 pointer truncation to unsigned long
30
+ # -EHsc C++ Exception Handling (no SEH exceptions)
31
+ set additional_options "-wd4005 -wd4244 -wd4305 -wd4477 -wd4312 -wd4311 -EHsc";
32
+ } else {
33
+ set additional_options "";
34
+ }
35
+
36
+ set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/*.c]]
37
+
38
+ if { [libffi_feature_test "#if FFI_CLOSURES"] } {
39
+ run-many-tests $tlist ""
40
+ } else {
41
+ foreach test $tlist {
42
+ unsupported "$test"
43
+ }
44
+ }
45
+
46
+ set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/*.cc]]
47
+
48
+ # No C++ for or1k
49
+ if { [istarget "or1k-*-*"] } {
50
+ foreach test $tlist {
51
+ unsupported "$test"
52
+ }
53
+ } else {
54
+ if { [libffi_feature_test "#if FFI_CLOSURES"] } {
55
+ run-many-tests $tlist $additional_options
56
+ } else {
57
+ foreach test $tlist {
58
+ unsupported "$test"
59
+ }
60
+ }
61
+ }
62
+
63
+ dg-finish
64
+
65
+ # Local Variables:
66
+ # tcl-indent-level:4
67
+ # End:
@@ -0,0 +1,138 @@
1
+ #include <stdlib.h>
2
+ #include <stdio.h>
3
+ #include <string.h>
4
+ #include <fcntl.h>
5
+ #include <ffi.h>
6
+ #include "fficonfig.h"
7
+
8
+ #if defined HAVE_STDINT_H
9
+ #include <stdint.h>
10
+ #endif
11
+
12
+ #if defined HAVE_INTTYPES_H
13
+ #include <inttypes.h>
14
+ #endif
15
+
16
+ #define MAX_ARGS 256
17
+
18
+ #define CHECK(x) (void)(!(x) ? (abort(), 1) : 0)
19
+
20
+ /* Define macros so that compilers other than gcc can run the tests. */
21
+ #undef __UNUSED__
22
+ #if defined(__GNUC__)
23
+ #define __UNUSED__ __attribute__((__unused__))
24
+ #define __STDCALL__ __attribute__((stdcall))
25
+ #define __THISCALL__ __attribute__((thiscall))
26
+ #define __FASTCALL__ __attribute__((fastcall))
27
+ #define __MSABI__ __attribute__((ms_abi))
28
+ #else
29
+ #define __UNUSED__
30
+ #define __STDCALL__ __stdcall
31
+ #define __THISCALL__ __thiscall
32
+ #define __FASTCALL__ __fastcall
33
+ #endif
34
+
35
+ #ifndef ABI_NUM
36
+ #define ABI_NUM FFI_DEFAULT_ABI
37
+ #define ABI_ATTR
38
+ #endif
39
+
40
+ /* Prefer MAP_ANON(YMOUS) to /dev/zero, since we don't need to keep a
41
+ file open. */
42
+ #ifdef HAVE_MMAP_ANON
43
+ # undef HAVE_MMAP_DEV_ZERO
44
+
45
+ # include <sys/mman.h>
46
+ # ifndef MAP_FAILED
47
+ # define MAP_FAILED -1
48
+ # endif
49
+ # if !defined (MAP_ANONYMOUS) && defined (MAP_ANON)
50
+ # define MAP_ANONYMOUS MAP_ANON
51
+ # endif
52
+ # define USING_MMAP
53
+
54
+ #endif
55
+
56
+ #ifdef HAVE_MMAP_DEV_ZERO
57
+
58
+ # include <sys/mman.h>
59
+ # ifndef MAP_FAILED
60
+ # define MAP_FAILED -1
61
+ # endif
62
+ # define USING_MMAP
63
+
64
+ #endif
65
+
66
+ /* MinGW kludge. */
67
+ #if defined(_WIN64) | defined(_WIN32)
68
+ #define PRIdLL "I64d"
69
+ #define PRIuLL "I64u"
70
+ #else
71
+ #define PRIdLL "lld"
72
+ #define PRIuLL "llu"
73
+ #endif
74
+
75
+ /* Tru64 UNIX kludge. */
76
+ #if defined(__alpha__) && defined(__osf__)
77
+ /* Tru64 UNIX V4.0 doesn't support %lld/%lld, but long is 64-bit. */
78
+ #undef PRIdLL
79
+ #define PRIdLL "ld"
80
+ #undef PRIuLL
81
+ #define PRIuLL "lu"
82
+ #define PRId8 "hd"
83
+ #define PRIu8 "hu"
84
+ #define PRId64 "ld"
85
+ #define PRIu64 "lu"
86
+ #define PRIuPTR "lu"
87
+ #endif
88
+
89
+ /* PA HP-UX kludge. */
90
+ #if defined(__hppa__) && defined(__hpux__) && !defined(PRIuPTR)
91
+ #define PRIuPTR "lu"
92
+ #endif
93
+
94
+ /* IRIX kludge. */
95
+ #if defined(__sgi)
96
+ /* IRIX 6.5 <inttypes.h> provides all definitions, but only for C99
97
+ compilations. */
98
+ #define PRId8 "hhd"
99
+ #define PRIu8 "hhu"
100
+ #if (_MIPS_SZLONG == 32)
101
+ #define PRId64 "lld"
102
+ #define PRIu64 "llu"
103
+ #endif
104
+ /* This doesn't match <inttypes.h>, which always has "lld" here, but the
105
+ arguments are uint64_t, int64_t, which are unsigned long, long for
106
+ 64-bit in <sgidefs.h>. */
107
+ #if (_MIPS_SZLONG == 64)
108
+ #define PRId64 "ld"
109
+ #define PRIu64 "lu"
110
+ #endif
111
+ /* This doesn't match <inttypes.h>, which has "u" here, but the arguments
112
+ are uintptr_t, which is always unsigned long. */
113
+ #define PRIuPTR "lu"
114
+ #endif
115
+
116
+ /* Solaris < 10 kludge. */
117
+ #if defined(__sun__) && defined(__svr4__) && !defined(PRIuPTR)
118
+ #if defined(__arch64__) || defined (__x86_64__)
119
+ #define PRIuPTR "lu"
120
+ #else
121
+ #define PRIuPTR "u"
122
+ #endif
123
+ #endif
124
+
125
+ /* MSVC kludge. */
126
+ #if defined _MSC_VER
127
+ #if !defined(__cplusplus) || defined(__STDC_FORMAT_MACROS)
128
+ #define PRIuPTR "lu"
129
+ #define PRIu8 "u"
130
+ #define PRId8 "d"
131
+ #define PRIu64 "I64u"
132
+ #define PRId64 "I64d"
133
+ #endif
134
+ #endif
135
+
136
+ #ifndef PRIuPTR
137
+ #define PRIuPTR "u"
138
+ #endif