ffi 1.11.3 → 1.13.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (210) hide show
  1. checksums.yaml +4 -4
  2. data/.appveyor.yml +3 -0
  3. data/.github/workflows/ci.yml +64 -0
  4. data/.travis.yml +21 -5
  5. data/CHANGELOG.md +68 -0
  6. data/Gemfile +6 -4
  7. data/README.md +10 -1
  8. data/Rakefile +24 -43
  9. data/ext/ffi_c/Buffer.c +2 -2
  10. data/ext/ffi_c/Call.c +1 -7
  11. data/ext/ffi_c/ClosurePool.c +11 -14
  12. data/ext/ffi_c/Function.c +8 -23
  13. data/ext/ffi_c/FunctionInfo.c +1 -2
  14. data/ext/ffi_c/LongDouble.c +5 -3
  15. data/ext/ffi_c/LongDouble.h +0 -4
  16. data/ext/ffi_c/MemoryPointer.c +1 -1
  17. data/ext/ffi_c/MethodHandle.c +18 -24
  18. data/ext/ffi_c/MethodHandle.h +3 -2
  19. data/ext/ffi_c/Platform.c +1 -0
  20. data/ext/ffi_c/Pointer.c +1 -1
  21. data/ext/ffi_c/Struct.c +47 -51
  22. data/ext/ffi_c/Struct.h +12 -6
  23. data/ext/ffi_c/StructLayout.c +20 -14
  24. data/ext/ffi_c/Thread.c +0 -3
  25. data/ext/ffi_c/Thread.h +0 -3
  26. data/ext/ffi_c/compat.h +4 -0
  27. data/ext/ffi_c/extconf.rb +16 -20
  28. data/ext/ffi_c/libffi/.travis.yml +32 -12
  29. data/ext/ffi_c/libffi/.travis/bfin-sim.exp +58 -0
  30. data/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +14 -0
  31. data/ext/ffi_c/libffi/.travis/build-in-container.sh +2 -12
  32. data/ext/ffi_c/libffi/.travis/build.sh +62 -30
  33. data/ext/ffi_c/libffi/.travis/install.sh +65 -37
  34. data/ext/ffi_c/libffi/.travis/m32r-sim.exp +58 -0
  35. data/ext/ffi_c/libffi/.travis/or1k-sim.exp +58 -0
  36. data/ext/ffi_c/libffi/.travis/powerpc-eabisim.exp +58 -0
  37. data/ext/ffi_c/libffi/.travis/site.exp +10 -1
  38. data/ext/ffi_c/libffi/.travis/wine-sim.exp +55 -0
  39. data/ext/ffi_c/libffi/{ChangeLog.libffi-3.1 → ChangeLog.old} +1407 -0
  40. data/ext/ffi_c/libffi/LICENSE +1 -1
  41. data/ext/ffi_c/libffi/Makefile.am +6 -4
  42. data/ext/ffi_c/libffi/README.md +18 -6
  43. data/ext/ffi_c/libffi/configure.ac +26 -10
  44. data/ext/ffi_c/libffi/configure.host +5 -2
  45. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +1 -3
  46. data/ext/ffi_c/libffi/include/ffi.h.in +15 -7
  47. data/ext/ffi_c/libffi/libffi.map.in +8 -12
  48. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +2 -48
  49. data/ext/ffi_c/libffi/libtool-version +1 -1
  50. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +5 -26
  51. data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +5 -26
  52. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +2 -1
  53. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +5 -26
  54. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +7 -3
  55. data/ext/ffi_c/libffi/src/aarch64/ffi.c +6 -0
  56. data/ext/ffi_c/libffi/src/aarch64/sysv.S +13 -2
  57. data/ext/ffi_c/libffi/src/closures.c +20 -6
  58. data/ext/ffi_c/libffi/src/mips/o32.S +2 -0
  59. data/ext/ffi_c/libffi/src/pa/ffi.c +46 -91
  60. data/ext/ffi_c/libffi/src/pa/ffitarget.h +1 -6
  61. data/ext/ffi_c/libffi/src/pa/hpux32.S +4 -2
  62. data/ext/ffi_c/libffi/src/pa/linux.S +4 -2
  63. data/ext/ffi_c/libffi/src/powerpc/ffi.c +3 -2
  64. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +154 -8
  65. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +18 -7
  66. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +10 -4
  67. data/ext/ffi_c/libffi/src/powerpc/linux64.S +83 -28
  68. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +67 -3
  69. data/ext/ffi_c/libffi/src/powerpc/sysv.S +5 -7
  70. data/ext/ffi_c/libffi/src/x86/ffi.c +7 -4
  71. data/ext/ffi_c/libffi/src/x86/ffi64.c +10 -8
  72. data/ext/ffi_c/libffi/src/x86/ffitarget.h +15 -2
  73. data/ext/ffi_c/libffi/src/x86/ffiw64.c +10 -8
  74. data/ext/ffi_c/libffi/src/x86/sysv.S +13 -4
  75. data/ext/ffi_c/libffi/src/x86/unix64.S +58 -2
  76. data/ext/ffi_c/libffi/src/x86/win64.S +4 -1
  77. data/ext/ffi_c/libffi/testsuite/Makefile.am +78 -75
  78. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +1 -18
  79. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +7 -2
  80. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1 -1
  81. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +1 -1
  82. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +12 -1
  83. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
  84. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +0 -0
  85. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +0 -0
  86. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +0 -0
  87. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +0 -0
  88. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +0 -0
  89. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +0 -0
  90. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +0 -0
  91. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +0 -0
  92. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_simple.c +0 -0
  93. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +0 -0
  94. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +0 -0
  95. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +0 -0
  96. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +0 -0
  97. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +0 -0
  98. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +0 -0
  99. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +0 -0
  100. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +0 -0
  101. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +0 -0
  102. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +0 -0
  103. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +0 -0
  104. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +0 -0
  105. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3float.c +0 -0
  106. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +0 -0
  107. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +0 -0
  108. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +0 -0
  109. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +0 -0
  110. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +0 -0
  111. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +0 -0
  112. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +0 -0
  113. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +0 -0
  114. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +0 -0
  115. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +0 -0
  116. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +0 -0
  117. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +0 -0
  118. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +0 -0
  119. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +0 -0
  120. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +0 -0
  121. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +0 -0
  122. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +0 -0
  123. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +0 -0
  124. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +0 -0
  125. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +0 -0
  126. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +0 -0
  127. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +0 -0
  128. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +0 -0
  129. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +0 -0
  130. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +0 -0
  131. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
  132. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +0 -0
  133. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +0 -0
  134. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +0 -0
  135. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +0 -0
  136. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_args.c +0 -0
  137. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_float_double.c +0 -0
  138. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +0 -0
  139. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +0 -0
  140. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +0 -0
  141. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +0 -0
  142. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +0 -0
  143. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +0 -0
  144. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +0 -0
  145. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +0 -0
  146. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +0 -0
  147. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +0 -0
  148. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +0 -0
  149. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_struct_va1.c +0 -0
  150. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +0 -0
  151. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar_va.c +0 -0
  152. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +0 -0
  153. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint_va.c +0 -0
  154. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulong_va.c +0 -0
  155. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +0 -0
  156. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +0 -0
  157. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort_va.c +0 -0
  158. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +0 -0
  159. data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +138 -0
  160. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +1 -1
  161. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +0 -0
  162. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +0 -0
  163. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +0 -0
  164. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct11.c +0 -0
  165. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +0 -0
  166. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +0 -0
  167. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +0 -0
  168. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +0 -0
  169. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +0 -0
  170. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +0 -0
  171. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +0 -0
  172. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +0 -0
  173. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
  174. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +0 -0
  175. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +0 -0
  176. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +0 -0
  177. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +0 -0
  178. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +0 -0
  179. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest.cc +0 -0
  180. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest_ffi_call.cc +0 -0
  181. data/ffi.gemspec +3 -3
  182. data/lib/ffi.rb +10 -2
  183. data/lib/ffi/ffi.rb +1 -0
  184. data/lib/ffi/library.rb +5 -1
  185. data/lib/ffi/platform.rb +6 -2
  186. data/lib/ffi/platform/arm-linux/types.conf +32 -4
  187. data/lib/ffi/platform/i386-windows/types.conf +26 -79
  188. data/lib/ffi/platform/powerpc-linux/types.conf +32 -2
  189. data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
  190. data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
  191. data/lib/ffi/platform/x86_64-darwin/types.conf +4 -0
  192. data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +4 -22
  193. data/lib/ffi/platform/x86_64-linux/types.conf +21 -0
  194. data/lib/ffi/platform/x86_64-windows/types.conf +10 -78
  195. data/lib/ffi/pointer.rb +19 -12
  196. data/lib/ffi/struct.rb +10 -5
  197. data/lib/ffi/tools/types_generator.rb +2 -0
  198. data/lib/ffi/version.rb +1 -1
  199. data/samples/getlogin.rb +1 -1
  200. data/samples/getpid.rb +1 -1
  201. data/samples/gettimeofday.rb +8 -8
  202. data/samples/hello.rb +2 -1
  203. data/samples/inotify.rb +1 -1
  204. data/samples/pty.rb +1 -2
  205. data/samples/qsort.rb +0 -1
  206. metadata +116 -110
  207. data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
  208. data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
  209. data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
  210. data/samples/sample_helper.rb +0 -6
@@ -26,4 +26,4 @@
26
26
  # release, then set age to 0.
27
27
  #
28
28
  # CURRENT:REVISION:AGE
29
- 8:0:1
29
+ 9:0:1
@@ -23,33 +23,12 @@
23
23
  # Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
24
24
  # Copyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>
25
25
  #
26
- # This program is free software: you can redistribute it and/or modify it
27
- # under the terms of the GNU General Public License as published by the
28
- # Free Software Foundation, either version 3 of the License, or (at your
29
- # option) any later version.
30
- #
31
- # This program is distributed in the hope that it will be useful, but
32
- # WITHOUT ANY WARRANTY; without even the implied warranty of
33
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
34
- # Public License for more details.
35
- #
36
- # You should have received a copy of the GNU General Public License along
37
- # with this program. If not, see <https://www.gnu.org/licenses/>.
38
- #
39
- # As a special exception, the respective Autoconf Macro's copyright owner
40
- # gives unlimited permission to copy, distribute and modify the configure
41
- # scripts that are the output of Autoconf when processing the Macro. You
42
- # need not follow the terms of the GNU General Public License when using
43
- # or distributing such scripts, even though portions of the text of the
44
- # Macro appear in them. The GNU General Public License (GPL) does govern
45
- # all other use of the material that constitutes the Autoconf Macro.
46
- #
47
- # This special exception to the GPL applies to versions of the Autoconf
48
- # Macro released by the Autoconf Archive. When you make and distribute a
49
- # modified version of the Autoconf Macro, you may extend this special
50
- # exception to the GPL to apply to your modified version as well.
26
+ # Copying and distribution of this file, with or without modification, are
27
+ # permitted in any medium without royalty provided the copyright notice
28
+ # and this notice are preserved. This file is offered as-is, without any
29
+ # warranty.
51
30
 
52
- #serial 7
31
+ #serial 8
53
32
 
54
33
  AC_DEFUN([AX_APPEND_FLAG],
55
34
  [dnl
@@ -29,33 +29,12 @@
29
29
  # Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
30
30
  # Copyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>
31
31
  #
32
- # This program is free software: you can redistribute it and/or modify it
33
- # under the terms of the GNU General Public License as published by the
34
- # Free Software Foundation, either version 3 of the License, or (at your
35
- # option) any later version.
36
- #
37
- # This program is distributed in the hope that it will be useful, but
38
- # WITHOUT ANY WARRANTY; without even the implied warranty of
39
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
40
- # Public License for more details.
41
- #
42
- # You should have received a copy of the GNU General Public License along
43
- # with this program. If not, see <https://www.gnu.org/licenses/>.
44
- #
45
- # As a special exception, the respective Autoconf Macro's copyright owner
46
- # gives unlimited permission to copy, distribute and modify the configure
47
- # scripts that are the output of Autoconf when processing the Macro. You
48
- # need not follow the terms of the GNU General Public License when using
49
- # or distributing such scripts, even though portions of the text of the
50
- # Macro appear in them. The GNU General Public License (GPL) does govern
51
- # all other use of the material that constitutes the Autoconf Macro.
52
- #
53
- # This special exception to the GPL applies to versions of the Autoconf
54
- # Macro released by the Autoconf Archive. When you make and distribute a
55
- # modified version of the Autoconf Macro, you may extend this special
56
- # exception to the GPL to apply to your modified version as well.
32
+ # Copying and distribution of this file, with or without modification, are
33
+ # permitted in any medium without royalty provided the copyright notice
34
+ # and this notice are preserved. This file is offered as-is, without any
35
+ # warranty.
57
36
 
58
- #serial 5
37
+ #serial 6
59
38
 
60
39
  AC_DEFUN([AX_CHECK_COMPILE_FLAG],
61
40
  [AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_IF
@@ -44,7 +44,7 @@
44
44
  # modified version of the Autoconf Macro, you may extend this special
45
45
  # exception to the GPL to apply to your modified version as well.
46
46
 
47
- #serial 16
47
+ #serial 17
48
48
 
49
49
  AC_DEFUN([AX_COMPILER_VENDOR],
50
50
  [AC_CACHE_CHECK([for _AC_LANG compiler vendor], ax_cv_[]_AC_LANG_ABBREV[]_compiler_vendor,
@@ -56,6 +56,7 @@ AC_DEFUN([AX_COMPILER_VENDOR],
56
56
  clang: __clang__
57
57
  cray: _CRAYC
58
58
  fujitsu: __FUJITSU
59
+ sdcc: SDCC, __SDCC
59
60
  gnu: __GNUC__
60
61
  sun: __SUNPRO_C,__SUNPRO_CC
61
62
  hp: __HP_cc,__HP_aCC
@@ -31,33 +31,12 @@
31
31
  #
32
32
  # Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
33
33
  #
34
- # This program is free software; you can redistribute it and/or modify it
35
- # under the terms of the GNU General Public License as published by the
36
- # Free Software Foundation; either version 3 of the License, or (at your
37
- # option) any later version.
38
- #
39
- # This program is distributed in the hope that it will be useful, but
40
- # WITHOUT ANY WARRANTY; without even the implied warranty of
41
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
42
- # Public License for more details.
43
- #
44
- # You should have received a copy of the GNU General Public License along
45
- # with this program. If not, see <https://www.gnu.org/licenses/>.
46
- #
47
- # As a special exception, the respective Autoconf Macro's copyright owner
48
- # gives unlimited permission to copy, distribute and modify the configure
49
- # scripts that are the output of Autoconf when processing the Macro. You
50
- # need not follow the terms of the GNU General Public License when using
51
- # or distributing such scripts, even though portions of the text of the
52
- # Macro appear in them. The GNU General Public License (GPL) does govern
53
- # all other use of the material that constitutes the Autoconf Macro.
54
- #
55
- # This special exception to the GPL applies to versions of the Autoconf
56
- # Macro released by the Autoconf Archive. When you make and distribute a
57
- # modified version of the Autoconf Macro, you may extend this special
58
- # exception to the GPL to apply to your modified version as well.
34
+ # Copying and distribution of this file, with or without modification, are
35
+ # permitted in any medium without royalty provided the copyright notice
36
+ # and this notice are preserved. This file is offered as-is, without any
37
+ # warranty.
59
38
 
60
- #serial 13
39
+ #serial 14
61
40
 
62
41
  AC_DEFUN([AX_CONFIGURE_ARGS],[
63
42
  # [$]@ is unusable in 2.60+ but earlier autoconf had no ac_configure_args
@@ -37,7 +37,7 @@
37
37
  # Copyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>
38
38
  # Copyright (c) 2008 Matteo Frigo
39
39
  # Copyright (c) 2014 Tsukasa Oi
40
- # Copyright (c) 2017 Alexey Kopytov
40
+ # Copyright (c) 2017-2018 Alexey Kopytov
41
41
  #
42
42
  # This program is free software: you can redistribute it and/or modify it
43
43
  # under the terms of the GNU General Public License as published by the
@@ -65,7 +65,7 @@
65
65
  # modified version of the Autoconf Macro, you may extend this special
66
66
  # exception to the GPL to apply to your modified version as well.
67
67
 
68
- #serial 20
68
+ #serial 22
69
69
 
70
70
  AC_DEFUN([AX_GCC_ARCHFLAG],
71
71
  [AC_REQUIRE([AC_PROG_CC])
@@ -108,7 +108,7 @@ case $host_cpu in
108
108
  *2?6[[ad]]?:*:*:*) ax_gcc_arch="sandybridge corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
109
109
  *3?6[[ae]]?:*:*:*) ax_gcc_arch="ivybridge core-avx-i corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
110
110
  *3?6[[cf]]?:*:*:*|*4?6[[56]]?:*:*:*) ax_gcc_arch="haswell core-avx2 core-avx-i corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
111
- *3?6d?:*:*:*) ax_gcc_arch="broadwell core-avx2 core-avx-i corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
111
+ *3?6d?:*:*:*|*4?6[[7f]]?:*:*:*|*5?66?:*:*:*) ax_gcc_arch="broadwell core-avx2 core-avx-i corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
112
112
  *1?6c?:*:*:*|*2?6[[67]]?:*:*:*|*3?6[[56]]?:*:*:*) ax_gcc_arch="bonnell atom core2 pentium-m pentium3 pentiumpro" ;;
113
113
  *3?67?:*:*:*|*[[45]]?6[[ad]]?:*:*:*) ax_gcc_arch="silvermont atom core2 pentium-m pentium3 pentiumpro" ;;
114
114
  *000?f[[012]]?:*:*:*|?f[[012]]?:*:*:*|f[[012]]?:*:*:*) ax_gcc_arch="pentium4 pentiumpro" ;;
@@ -198,6 +198,10 @@ case $host_cpu in
198
198
  *POWER4*|*power4*|*gq*) ax_gcc_arch="power4 970";;
199
199
  *POWER5*|*power5*|*gr*|*gs*) ax_gcc_arch="power5 power4 970";;
200
200
  603ev|8240) ax_gcc_arch="$cputype 603e 603";;
201
+ *POWER7*) ax_gcc_arch="power7";;
202
+ *POWER8*) ax_gcc_arch="power8";;
203
+ *POWER9*) ax_gcc_arch="power9";;
204
+ *POWER10*) ax_gcc_arch="power10";;
201
205
  *) ax_gcc_arch=$cputype ;;
202
206
  esac
203
207
  ax_gcc_arch="$ax_gcc_arch powerpc"
@@ -62,6 +62,9 @@ struct call_context
62
62
  #if FFI_EXEC_TRAMPOLINE_TABLE
63
63
 
64
64
  #ifdef __MACH__
65
+ #ifdef HAVE_PTRAUTH
66
+ #include <ptrauth.h>
67
+ #endif
65
68
  #include <mach/vm_param.h>
66
69
  #endif
67
70
 
@@ -789,6 +792,9 @@ ffi_prep_closure_loc (ffi_closure *closure,
789
792
 
790
793
  #if FFI_EXEC_TRAMPOLINE_TABLE
791
794
  #ifdef __MACH__
795
+ #ifdef HAVE_PTRAUTH
796
+ codeloc = ptrauth_strip (codeloc, ptrauth_key_asia);
797
+ #endif
792
798
  void **config = (void **)((uint8_t *)codeloc - PAGE_MAX_SIZE);
793
799
  config[0] = closure;
794
800
  config[1] = start;
@@ -56,6 +56,14 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
56
56
  #define PTR_SIZE 4
57
57
  #else
58
58
  #define PTR_SIZE 8
59
+ #endif
60
+
61
+ #if FFI_EXEC_TRAMPOLINE_TABLE && defined(__MACH__) && defined(HAVE_PTRAUTH)
62
+ # define BR(r) braaz r
63
+ # define BLR(r) blraaz r
64
+ #else
65
+ # define BR(r) br r
66
+ # define BLR(r) blr r
59
67
  #endif
60
68
 
61
69
  .text
@@ -111,7 +119,7 @@ CNAME(ffi_call_SYSV):
111
119
  /* Deallocate the context, leaving the stacked arguments. */
112
120
  add sp, sp, #CALL_CONTEXT_SIZE
113
121
 
114
- blr x9 /* call fn */
122
+ BLR(x9) /* call fn */
115
123
 
116
124
  ldp x3, x4, [x29, #16] /* reload rvalue and flags */
117
125
 
@@ -271,6 +279,9 @@ CNAME(ffi_closure_SYSV):
271
279
  bl CNAME(ffi_closure_SYSV_inner)
272
280
 
273
281
  /* Load the return value as directed. */
282
+ #if FFI_EXEC_TRAMPOLINE_TABLE && defined(__MACH__) && defined(HAVE_PTRAUTH)
283
+ autiza x1
284
+ #endif
274
285
  adr x1, 0f
275
286
  and w0, w0, #AARCH64_RET_MASK
276
287
  add x1, x1, x0, lsl #3
@@ -365,7 +376,7 @@ CNAME(ffi_closure_trampoline_table_page):
365
376
  .rept PAGE_MAX_SIZE / FFI_TRAMPOLINE_SIZE
366
377
  adr x16, -PAGE_MAX_SIZE
367
378
  ldp x17, x16, [x16]
368
- br x16
379
+ BR(x16)
369
380
  nop /* each entry in the trampoline config page is 2*sizeof(void*) so the trampoline itself cannot be smaller that 16 bytes */
370
381
  .endr
371
382
 
@@ -1,5 +1,6 @@
1
1
  /* -----------------------------------------------------------------------
2
- closures.c - Copyright (c) 2007, 2009, 2010 Red Hat, Inc.
2
+ closures.c - Copyright (c) 2019 Anthony Green
3
+ Copyright (c) 2007, 2009, 2010 Red Hat, Inc.
3
4
  Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc
4
5
  Copyright (c) 2011 Plausible Labs Cooperative, Inc.
5
6
 
@@ -147,6 +148,9 @@ ffi_closure_free (void *ptr)
147
148
 
148
149
  #include <mach/mach.h>
149
150
  #include <pthread.h>
151
+ #ifdef HAVE_PTRAUTH
152
+ #include <ptrauth.h>
153
+ #endif
150
154
  #include <stdio.h>
151
155
  #include <stdlib.h>
152
156
 
@@ -300,6 +304,9 @@ ffi_closure_alloc (size_t size, void **code)
300
304
 
301
305
  /* Initialize the return values */
302
306
  *code = entry->trampoline;
307
+ #ifdef HAVE_PTRAUTH
308
+ *code = ptrauth_sign_unauthenticated (*code, ptrauth_key_asia, 0);
309
+ #endif
303
310
  closure->trampoline_table = table;
304
311
  closure->trampoline_table_entry = entry;
305
312
 
@@ -920,7 +927,7 @@ ffi_closure_alloc (size_t size, void **code)
920
927
  if (!code)
921
928
  return NULL;
922
929
 
923
- ptr = dlmalloc (size);
930
+ ptr = FFI_CLOSURE_PTR (dlmalloc (size));
924
931
 
925
932
  if (ptr)
926
933
  {
@@ -936,7 +943,14 @@ void *
936
943
  ffi_data_to_code_pointer (void *data)
937
944
  {
938
945
  msegmentptr seg = segment_holding (gm, data);
939
- return add_segment_exec_offset (data, seg);
946
+ /* We expect closures to be allocated with ffi_closure_alloc(), in
947
+ which case seg will be non-NULL. However, some users take on the
948
+ burden of managing this memory themselves, in which case this
949
+ we'll just return data. */
950
+ if (seg)
951
+ return add_segment_exec_offset (data, seg);
952
+ else
953
+ return data;
940
954
  }
941
955
 
942
956
  /* Release a chunk of memory allocated with ffi_closure_alloc. If
@@ -953,7 +967,7 @@ ffi_closure_free (void *ptr)
953
967
  ptr = sub_segment_exec_offset (ptr, seg);
954
968
  #endif
955
969
 
956
- dlfree (ptr);
970
+ dlfree (FFI_RESTORE_PTR (ptr));
957
971
  }
958
972
 
959
973
  # else /* ! FFI_MMAP_EXEC_WRIT */
@@ -969,13 +983,13 @@ ffi_closure_alloc (size_t size, void **code)
969
983
  if (!code)
970
984
  return NULL;
971
985
 
972
- return *code = malloc (size);
986
+ return *code = FFI_CLOSURE_PTR (malloc (size));
973
987
  }
974
988
 
975
989
  void
976
990
  ffi_closure_free (void *ptr)
977
991
  {
978
- free (ptr);
992
+ free (FFI_RESTORE_PTR (ptr));
979
993
  }
980
994
 
981
995
  void *
@@ -282,9 +282,11 @@ $LCFI12:
282
282
  li $13, 1 # FFI_O32
283
283
  bne $16, $13, 1f # Skip fp save if FFI_O32_SOFT_FLOAT
284
284
 
285
+ #ifndef __mips_soft_float
285
286
  # Store all possible float/double registers.
286
287
  s.d $f12, FA_0_0_OFF2($fp)
287
288
  s.d $f14, FA_1_0_OFF2($fp)
289
+ #endif
288
290
  1:
289
291
  # prepare arguments for ffi_closure_mips_inner_O32
290
292
  REG_L a0, 4($15) # cif
@@ -421,12 +421,15 @@ ffi_status ffi_closure_inner_pa32(ffi_closure *closure, UINT32 *stack)
421
421
  ffi_cif *cif;
422
422
  void **avalue;
423
423
  void *rvalue;
424
- UINT32 ret[2]; /* function can return up to 64-bits in registers */
424
+ /* Functions can return up to 64-bits in registers. Return address
425
+ must be double word aligned. */
426
+ union { double rd; UINT32 ret[2]; } u;
425
427
  ffi_type **p_arg;
426
428
  char *tmp;
427
429
  int i, avn;
428
430
  unsigned int slot = FIRST_ARG_SLOT;
429
431
  register UINT32 r28 asm("r28");
432
+ ffi_closure *c = (ffi_closure *)FFI_RESTORE_PTR (closure);
430
433
 
431
434
  cif = closure->cif;
432
435
 
@@ -434,7 +437,7 @@ ffi_status ffi_closure_inner_pa32(ffi_closure *closure, UINT32 *stack)
434
437
  if (cif->flags == FFI_TYPE_STRUCT)
435
438
  rvalue = (void *)r28;
436
439
  else
437
- rvalue = &ret[0];
440
+ rvalue = &u;
438
441
 
439
442
  avalue = (void **)alloca(cif->nargs * FFI_SIZEOF_ARG);
440
443
  avn = cif->nargs;
@@ -529,35 +532,35 @@ ffi_status ffi_closure_inner_pa32(ffi_closure *closure, UINT32 *stack)
529
532
  }
530
533
 
531
534
  /* Invoke the closure. */
532
- (closure->fun) (cif, rvalue, avalue, closure->user_data);
535
+ (c->fun) (cif, rvalue, avalue, c->user_data);
533
536
 
534
- debug(3, "after calling function, ret[0] = %08x, ret[1] = %08x\n", ret[0],
535
- ret[1]);
537
+ debug(3, "after calling function, ret[0] = %08x, ret[1] = %08x\n", u.ret[0],
538
+ u.ret[1]);
536
539
 
537
540
  /* Store the result using the lower 2 bytes of the flags. */
538
541
  switch (cif->flags)
539
542
  {
540
543
  case FFI_TYPE_UINT8:
541
- *(stack - FIRST_ARG_SLOT) = (UINT8)(ret[0] >> 24);
544
+ *(stack - FIRST_ARG_SLOT) = (UINT8)(u.ret[0] >> 24);
542
545
  break;
543
546
  case FFI_TYPE_SINT8:
544
- *(stack - FIRST_ARG_SLOT) = (SINT8)(ret[0] >> 24);
547
+ *(stack - FIRST_ARG_SLOT) = (SINT8)(u.ret[0] >> 24);
545
548
  break;
546
549
  case FFI_TYPE_UINT16:
547
- *(stack - FIRST_ARG_SLOT) = (UINT16)(ret[0] >> 16);
550
+ *(stack - FIRST_ARG_SLOT) = (UINT16)(u.ret[0] >> 16);
548
551
  break;
549
552
  case FFI_TYPE_SINT16:
550
- *(stack - FIRST_ARG_SLOT) = (SINT16)(ret[0] >> 16);
553
+ *(stack - FIRST_ARG_SLOT) = (SINT16)(u.ret[0] >> 16);
551
554
  break;
552
555
  case FFI_TYPE_INT:
553
556
  case FFI_TYPE_SINT32:
554
557
  case FFI_TYPE_UINT32:
555
- *(stack - FIRST_ARG_SLOT) = ret[0];
558
+ *(stack - FIRST_ARG_SLOT) = u.ret[0];
556
559
  break;
557
560
  case FFI_TYPE_SINT64:
558
561
  case FFI_TYPE_UINT64:
559
- *(stack - FIRST_ARG_SLOT) = ret[0];
560
- *(stack - FIRST_ARG_SLOT - 1) = ret[1];
562
+ *(stack - FIRST_ARG_SLOT) = u.ret[0];
563
+ *(stack - FIRST_ARG_SLOT - 1) = u.ret[1];
561
564
  break;
562
565
 
563
566
  case FFI_TYPE_DOUBLE:
@@ -577,7 +580,7 @@ ffi_status ffi_closure_inner_pa32(ffi_closure *closure, UINT32 *stack)
577
580
  case FFI_TYPE_SMALL_STRUCT4:
578
581
  tmp = (void*)(stack - FIRST_ARG_SLOT);
579
582
  tmp += 4 - cif->rtype->size;
580
- memcpy((void*)tmp, &ret[0], cif->rtype->size);
583
+ memcpy((void*)tmp, &u, cif->rtype->size);
581
584
  break;
582
585
 
583
586
  case FFI_TYPE_SMALL_STRUCT5:
@@ -598,7 +601,7 @@ ffi_status ffi_closure_inner_pa32(ffi_closure *closure, UINT32 *stack)
598
601
  }
599
602
 
600
603
  memset (ret2, 0, sizeof (ret2));
601
- memcpy ((char *)ret2 + off, ret, 8 - off);
604
+ memcpy ((char *)ret2 + off, &u, 8 - off);
602
605
 
603
606
  *(stack - FIRST_ARG_SLOT) = ret2[0];
604
607
  *(stack - FIRST_ARG_SLOT - 1) = ret2[1];
@@ -630,89 +633,41 @@ ffi_prep_closure_loc (ffi_closure* closure,
630
633
  void *user_data,
631
634
  void *codeloc)
632
635
  {
633
- UINT32 *tramp = (UINT32 *)(closure->tramp);
634
- #ifdef PA_HPUX
635
- UINT32 *tmp;
636
- #endif
636
+ ffi_closure *c = (ffi_closure *)FFI_RESTORE_PTR (closure);
637
+
638
+ /* The layout of a function descriptor. A function pointer with the PLABEL
639
+ bit set points to a function descriptor. */
640
+ struct pa32_fd
641
+ {
642
+ UINT32 code_pointer;
643
+ UINT32 gp;
644
+ };
645
+
646
+ struct ffi_pa32_trampoline_struct
647
+ {
648
+ UINT32 code_pointer; /* Pointer to ffi_closure_unix. */
649
+ UINT32 fake_gp; /* Pointer to closure, installed as gp. */
650
+ UINT32 real_gp; /* Real gp value. */
651
+ };
652
+
653
+ struct ffi_pa32_trampoline_struct *tramp;
654
+ struct pa32_fd *fd;
637
655
 
638
656
  if (cif->abi != FFI_PA32)
639
657
  return FFI_BAD_ABI;
640
658
 
641
- /* Make a small trampoline that will branch to our
642
- handler function. Use PC-relative addressing. */
643
-
644
- #ifdef PA_LINUX
645
- tramp[0] = 0xeaa00000; /* b,l .+8,%r21 ; %r21 <- pc+8 */
646
- tramp[1] = 0xd6a01c1e; /* depi 0,31,2,%r21 ; mask priv bits */
647
- tramp[2] = 0x4aa10028; /* ldw 20(%r21),%r1 ; load plabel */
648
- tramp[3] = 0x36b53ff1; /* ldo -8(%r21),%r21 ; get closure addr */
649
- tramp[4] = 0x0c201096; /* ldw 0(%r1),%r22 ; address of handler */
650
- tramp[5] = 0xeac0c000; /* bv%r0(%r22) ; branch to handler */
651
- tramp[6] = 0x0c281093; /* ldw 4(%r1),%r19 ; GP of handler */
652
- tramp[7] = ((UINT32)(ffi_closure_pa32) & ~2);
653
-
654
- /* Flush d/icache -- have to flush up 2 two lines because of
655
- alignment. */
656
- __asm__ volatile(
657
- "fdc 0(%0)\n\t"
658
- "fdc %1(%0)\n\t"
659
- "fic 0(%%sr4, %0)\n\t"
660
- "fic %1(%%sr4, %0)\n\t"
661
- "sync\n\t"
662
- "nop\n\t"
663
- "nop\n\t"
664
- "nop\n\t"
665
- "nop\n\t"
666
- "nop\n\t"
667
- "nop\n\t"
668
- "nop\n"
669
- :
670
- : "r"((unsigned long)tramp & ~31),
671
- "r"(32 /* stride */)
672
- : "memory");
673
- #endif
659
+ /* Get function descriptor address for ffi_closure_pa32. */
660
+ fd = (struct pa32_fd *)((UINT32)ffi_closure_pa32 & ~3);
674
661
 
675
- #ifdef PA_HPUX
676
- tramp[0] = 0xeaa00000; /* b,l .+8,%r21 ; %r21 <- pc+8 */
677
- tramp[1] = 0xd6a01c1e; /* depi 0,31,2,%r21 ; mask priv bits */
678
- tramp[2] = 0x4aa10038; /* ldw 28(%r21),%r1 ; load plabel */
679
- tramp[3] = 0x36b53ff1; /* ldo -8(%r21),%r21 ; get closure addr */
680
- tramp[4] = 0x0c201096; /* ldw 0(%r1),%r22 ; address of handler */
681
- tramp[5] = 0x02c010b4; /* ldsid (%r22),%r20 ; load space id */
682
- tramp[6] = 0x00141820; /* mtsp %r20,%sr0 ; into %sr0 */
683
- tramp[7] = 0xe2c00000; /* be 0(%sr0,%r22) ; branch to handler */
684
- tramp[8] = 0x0c281093; /* ldw 4(%r1),%r19 ; GP of handler */
685
- tramp[9] = ((UINT32)(ffi_closure_pa32) & ~2);
686
-
687
- /* Flush d/icache -- have to flush three lines because of alignment. */
688
- __asm__ volatile(
689
- "copy %1,%0\n\t"
690
- "fdc,m %2(%0)\n\t"
691
- "fdc,m %2(%0)\n\t"
692
- "fdc,m %2(%0)\n\t"
693
- "ldsid (%1),%0\n\t"
694
- "mtsp %0,%%sr0\n\t"
695
- "copy %1,%0\n\t"
696
- "fic,m %2(%%sr0,%0)\n\t"
697
- "fic,m %2(%%sr0,%0)\n\t"
698
- "fic,m %2(%%sr0,%0)\n\t"
699
- "sync\n\t"
700
- "nop\n\t"
701
- "nop\n\t"
702
- "nop\n\t"
703
- "nop\n\t"
704
- "nop\n\t"
705
- "nop\n\t"
706
- "nop\n"
707
- : "=&r" ((unsigned long)tmp)
708
- : "r" ((unsigned long)tramp & ~31),
709
- "r" (32/* stride */)
710
- : "memory");
711
- #endif
662
+ /* Setup trampoline. */
663
+ tramp = (struct ffi_pa32_trampoline_struct *)c->tramp;
664
+ tramp->code_pointer = fd->code_pointer;
665
+ tramp->fake_gp = (UINT32)codeloc & ~3;
666
+ tramp->real_gp = fd->gp;
712
667
 
713
- closure->cif = cif;
714
- closure->user_data = user_data;
715
- closure->fun = fun;
668
+ c->cif = cif;
669
+ c->user_data = user_data;
670
+ c->fun = fun;
716
671
 
717
672
  return FFI_OK;
718
673
  }