ffi 1.15.5 → 1.16.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (311) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/CHANGELOG.md +76 -0
  4. data/Gemfile +1 -1
  5. data/README.md +3 -2
  6. data/Rakefile +10 -7
  7. data/ext/ffi_c/AbstractMemory.c +60 -36
  8. data/ext/ffi_c/AbstractMemory.h +3 -2
  9. data/ext/ffi_c/ArrayType.c +49 -13
  10. data/ext/ffi_c/ArrayType.h +1 -0
  11. data/ext/ffi_c/Buffer.c +86 -29
  12. data/ext/ffi_c/Call.c +17 -6
  13. data/ext/ffi_c/DynamicLibrary.c +89 -26
  14. data/ext/ffi_c/Function.c +244 -98
  15. data/ext/ffi_c/Function.h +1 -0
  16. data/ext/ffi_c/FunctionInfo.c +80 -24
  17. data/ext/ffi_c/LastError.c +25 -7
  18. data/ext/ffi_c/MappedType.c +66 -23
  19. data/ext/ffi_c/MappedType.h +0 -2
  20. data/ext/ffi_c/MemoryPointer.c +34 -7
  21. data/ext/ffi_c/MethodHandle.c +3 -1
  22. data/ext/ffi_c/Pointer.c +68 -29
  23. data/ext/ffi_c/Pointer.h +1 -0
  24. data/ext/ffi_c/Struct.c +155 -80
  25. data/ext/ffi_c/Struct.h +7 -4
  26. data/ext/ffi_c/StructByValue.c +48 -16
  27. data/ext/ffi_c/StructLayout.c +117 -48
  28. data/ext/ffi_c/Type.c +104 -36
  29. data/ext/ffi_c/Type.h +3 -1
  30. data/ext/ffi_c/Types.c +1 -1
  31. data/ext/ffi_c/Variadic.c +65 -23
  32. data/ext/ffi_c/compat.h +22 -22
  33. data/ext/ffi_c/extconf.rb +19 -2
  34. data/ext/ffi_c/ffi.c +4 -0
  35. data/ext/ffi_c/libffi/.appveyor/site.exp +16 -0
  36. data/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +7 -0
  37. data/ext/ffi_c/libffi/.appveyor.yml +27 -9
  38. data/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
  39. data/ext/ffi_c/libffi/{.travis → .ci}/build-in-container.sh +4 -6
  40. data/ext/ffi_c/libffi/.ci/build.sh +124 -0
  41. data/ext/ffi_c/libffi/{.travis → .ci}/install.sh +14 -7
  42. data/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
  43. data/ext/ffi_c/libffi/{.travis → .ci}/site.exp +5 -3
  44. data/ext/ffi_c/libffi/.circleci/config.yml +156 -0
  45. data/ext/ffi_c/libffi/.github/workflows/build.yml +460 -0
  46. data/ext/ffi_c/libffi/.github/workflows/emscripten.yml +171 -0
  47. data/ext/ffi_c/libffi/.gitignore +10 -2
  48. data/ext/ffi_c/libffi/LICENSE +1 -1
  49. data/ext/ffi_c/libffi/Makefile.am +12 -5
  50. data/ext/ffi_c/libffi/Makefile.in +118 -51
  51. data/ext/ffi_c/libffi/README.md +144 -104
  52. data/ext/ffi_c/libffi/acinclude.m4 +10 -112
  53. data/ext/ffi_c/libffi/compile +348 -0
  54. data/ext/ffi_c/libffi/config.guess +623 -556
  55. data/ext/ffi_c/libffi/config.sub +75 -34
  56. data/ext/ffi_c/libffi/configure +4571 -3830
  57. data/ext/ffi_c/libffi/configure.ac +64 -28
  58. data/ext/ffi_c/libffi/configure.host +25 -6
  59. data/ext/ffi_c/libffi/doc/Makefile.in +9 -6
  60. data/ext/ffi_c/libffi/doc/libffi.texi +82 -33
  61. data/ext/ffi_c/libffi/doc/version.texi +4 -4
  62. data/ext/ffi_c/libffi/fficonfig.h.in +12 -47
  63. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +163 -52
  64. data/ext/ffi_c/libffi/include/Makefile.am +1 -1
  65. data/ext/ffi_c/libffi/include/Makefile.in +10 -9
  66. data/ext/ffi_c/libffi/include/ffi.h.in +54 -50
  67. data/ext/ffi_c/libffi/include/ffi_cfi.h +21 -0
  68. data/ext/ffi_c/libffi/include/ffi_common.h +29 -0
  69. data/ext/ffi_c/libffi/include/tramp.h +45 -0
  70. data/ext/ffi_c/libffi/install-sh +92 -69
  71. data/ext/ffi_c/libffi/libtool-version +2 -2
  72. data/ext/ffi_c/libffi/ltmain.sh +512 -315
  73. data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +18 -14
  74. data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +108 -72
  75. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +76 -45
  76. data/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
  77. data/ext/ffi_c/libffi/man/Makefile.in +9 -6
  78. data/ext/ffi_c/libffi/missing +1 -1
  79. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +1 -1
  80. data/ext/ffi_c/libffi/msvcc.sh +1 -1
  81. data/ext/ffi_c/libffi/src/aarch64/ffi.c +146 -42
  82. data/ext/ffi_c/libffi/src/aarch64/internal.h +32 -0
  83. data/ext/ffi_c/libffi/src/aarch64/sysv.S +134 -42
  84. data/ext/ffi_c/libffi/src/arc/arcompact.S +169 -94
  85. data/ext/ffi_c/libffi/src/arc/ffi.c +325 -148
  86. data/ext/ffi_c/libffi/src/arc/ffitarget.h +14 -0
  87. data/ext/ffi_c/libffi/src/arm/ffi.c +62 -17
  88. data/ext/ffi_c/libffi/src/arm/ffitarget.h +3 -3
  89. data/ext/ffi_c/libffi/src/arm/internal.h +10 -0
  90. data/ext/ffi_c/libffi/src/arm/sysv.S +113 -42
  91. data/ext/ffi_c/libffi/src/closures.c +133 -47
  92. data/ext/ffi_c/libffi/src/dlmalloc.c +5 -0
  93. data/ext/ffi_c/libffi/src/ia64/ffi.c +12 -0
  94. data/ext/ffi_c/libffi/src/ia64/unix.S +20 -2
  95. data/ext/ffi_c/libffi/src/loongarch64/ffi.c +621 -0
  96. data/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +82 -0
  97. data/ext/ffi_c/libffi/src/loongarch64/sysv.S +327 -0
  98. data/ext/ffi_c/libffi/src/m32r/ffi.c +31 -14
  99. data/ext/ffi_c/libffi/src/mips/ffi.c +240 -65
  100. data/ext/ffi_c/libffi/src/mips/ffitarget.h +7 -0
  101. data/ext/ffi_c/libffi/src/mips/n32.S +137 -28
  102. data/ext/ffi_c/libffi/src/mips/o32.S +61 -4
  103. data/ext/ffi_c/libffi/src/moxie/ffi.c +47 -22
  104. data/ext/ffi_c/libffi/src/or1k/ffi.c +25 -12
  105. data/ext/ffi_c/libffi/src/pa/ffi.c +32 -33
  106. data/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
  107. data/ext/ffi_c/libffi/src/pa/ffitarget.h +22 -8
  108. data/ext/ffi_c/libffi/src/pa/hpux32.S +83 -36
  109. data/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
  110. data/ext/ffi_c/libffi/src/pa/linux.S +82 -35
  111. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1 -1
  112. data/ext/ffi_c/libffi/src/powerpc/linux64.S +2 -0
  113. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +2 -0
  114. data/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
  115. data/ext/ffi_c/libffi/src/prep_cif.c +22 -2
  116. data/ext/ffi_c/libffi/src/riscv/ffi.c +37 -4
  117. data/ext/ffi_c/libffi/src/sparc/ffi64.c +16 -0
  118. data/ext/ffi_c/libffi/src/tramp.c +716 -0
  119. data/ext/ffi_c/libffi/src/wasm32/ffi.c +934 -0
  120. data/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
  121. data/ext/ffi_c/libffi/src/x86/ffi.c +99 -37
  122. data/ext/ffi_c/libffi/src/x86/ffi64.c +67 -12
  123. data/ext/ffi_c/libffi/src/x86/ffitarget.h +9 -5
  124. data/ext/ffi_c/libffi/src/x86/ffiw64.c +43 -0
  125. data/ext/ffi_c/libffi/src/x86/internal.h +14 -0
  126. data/ext/ffi_c/libffi/src/x86/internal64.h +14 -0
  127. data/ext/ffi_c/libffi/src/x86/sysv.S +172 -38
  128. data/ext/ffi_c/libffi/src/x86/sysv_intel.S +91 -88
  129. data/ext/ffi_c/libffi/src/x86/unix64.S +96 -6
  130. data/ext/ffi_c/libffi/src/x86/win64.S +20 -7
  131. data/ext/ffi_c/libffi/src/xtensa/ffi.c +16 -8
  132. data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +4 -0
  133. data/ext/ffi_c/libffi/src/xtensa/sysv.S +26 -16
  134. data/ext/ffi_c/libffi/testsuite/Makefile.am +127 -114
  135. data/ext/ffi_c/libffi/testsuite/Makefile.in +137 -121
  136. data/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +54 -0
  137. data/ext/ffi_c/libffi/testsuite/emscripten/build.sh +63 -0
  138. data/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +80 -0
  139. data/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +48 -0
  140. data/ext/ffi_c/libffi/testsuite/emscripten/test.html +7 -0
  141. data/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +51 -0
  142. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +43 -21
  143. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +2 -2
  144. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1 -0
  145. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +5 -1
  146. data/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
  147. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +28 -3
  148. data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +3 -0
  149. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +5 -0
  150. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +4 -0
  151. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +4 -0
  152. data/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +60 -0
  153. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +8 -9
  154. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +2 -2
  155. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +2 -2
  156. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +2 -2
  157. data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +1 -1
  158. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +63 -0
  159. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +65 -0
  160. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +65 -0
  161. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +67 -0
  162. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +67 -0
  163. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +93 -0
  164. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +61 -0
  165. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +63 -0
  166. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +90 -0
  167. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -119
  168. data/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +220 -0
  169. data/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +154 -0
  170. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +13 -0
  171. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +11 -0
  172. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +15 -0
  173. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +3 -2
  174. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +2 -0
  175. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +2 -0
  176. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +21 -1
  177. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +2 -0
  178. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +2 -0
  179. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +2 -0
  180. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +7 -6
  181. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +6 -0
  182. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +18 -0
  183. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +22 -0
  184. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +24 -0
  185. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +29 -0
  186. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +4 -0
  187. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +19 -1
  188. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +21 -1
  189. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +35 -3
  190. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +13 -0
  191. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +19 -0
  192. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +13 -0
  193. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +13 -0
  194. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +18 -0
  195. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +22 -0
  196. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +13 -0
  197. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +29 -1
  198. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +19 -1
  199. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +24 -0
  200. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +28 -1
  201. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +24 -2
  202. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +39 -1
  203. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +25 -1
  204. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +14 -0
  205. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +14 -1
  206. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +14 -2
  207. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +19 -1
  208. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +19 -1
  209. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +20 -1
  210. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +40 -25
  211. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +40 -3
  212. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +19 -1
  213. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +18 -1
  214. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +18 -3
  215. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +18 -1
  216. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +18 -1
  217. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +19 -1
  218. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +19 -1
  219. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +3 -1
  220. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +9 -1
  221. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +4 -0
  222. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +11 -1
  223. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +22 -3
  224. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +5 -1
  225. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +6 -1
  226. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +9 -1
  227. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +9 -1
  228. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +6 -2
  229. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +9 -1
  230. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +5 -0
  231. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +10 -0
  232. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +3 -0
  233. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +2 -0
  234. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +3 -0
  235. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +11 -0
  236. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +3 -0
  237. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +4 -0
  238. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +4 -0
  239. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +4 -0
  240. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +2 -0
  241. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +3 -0
  242. data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +1 -138
  243. data/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +21 -21
  244. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +32 -9
  245. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +1 -1
  246. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +12 -0
  247. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +21 -5
  248. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
  249. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
  250. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +10 -1
  251. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +10 -1
  252. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +9 -0
  253. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +9 -0
  254. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +11 -0
  255. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +9 -0
  256. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +11 -0
  257. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +11 -0
  258. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
  259. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
  260. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
  261. data/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +1 -1
  262. data/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +1 -1
  263. data/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +6 -1
  264. data/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +2 -1
  265. data/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +1 -0
  266. data/ext/ffi_c/libffi.bsd.mk +2 -2
  267. data/ext/ffi_c/libffi.gnu.mk +2 -2
  268. data/ext/ffi_c/rbffi.h +1 -1
  269. data/ffi.gemspec +3 -3
  270. data/lib/ffi/autopointer.rb +7 -22
  271. data/lib/ffi/compat.rb +43 -0
  272. data/lib/ffi/data_converter.rb +2 -2
  273. data/lib/ffi/dynamic_library.rb +89 -0
  274. data/lib/ffi/enum.rb +18 -11
  275. data/lib/ffi/ffi.rb +3 -0
  276. data/lib/ffi/function.rb +71 -0
  277. data/lib/ffi/library.rb +55 -71
  278. data/lib/ffi/library_path.rb +109 -0
  279. data/lib/ffi/managedstruct.rb +1 -1
  280. data/lib/ffi/platform/aarch64-windows/types.conf +52 -0
  281. data/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
  282. data/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
  283. data/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
  284. data/lib/ffi/platform/sw_64-linux/types.conf +141 -0
  285. data/lib/ffi/platform.rb +15 -13
  286. data/lib/ffi/struct.rb +2 -1
  287. data/lib/ffi/struct_layout.rb +1 -1
  288. data/lib/ffi/struct_layout_builder.rb +1 -1
  289. data/lib/ffi/types.rb +32 -6
  290. data/lib/ffi/variadic.rb +19 -8
  291. data/lib/ffi/version.rb +1 -1
  292. data/samples/hello_ractor.rb +11 -0
  293. data/samples/qsort_ractor.rb +28 -0
  294. data.tar.gz.sig +0 -0
  295. metadata +100 -25
  296. metadata.gz.sig +0 -0
  297. data/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +0 -14
  298. data/ext/ffi_c/libffi/.travis/build.sh +0 -142
  299. data/ext/ffi_c/libffi/.travis.yml +0 -83
  300. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar_va.c +0 -44
  301. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort_va.c +0 -44
  302. /data/ext/ffi_c/libffi/{.travis → .ci}/ar-lib +0 -0
  303. /data/ext/ffi_c/libffi/{.travis → .ci}/bfin-sim.exp +0 -0
  304. /data/ext/ffi_c/libffi/{.travis → .ci}/compile +0 -0
  305. /data/ext/ffi_c/libffi/{.travis → .ci}/m32r-sim.exp +0 -0
  306. /data/ext/ffi_c/libffi/{.travis → .ci}/moxie-sim.exp +0 -0
  307. /data/ext/ffi_c/libffi/{.travis → .ci}/or1k-sim.exp +0 -0
  308. /data/ext/ffi_c/libffi/{.travis → .ci}/powerpc-eabisim.exp +0 -0
  309. /data/ext/ffi_c/libffi/{.travis → .ci}/wine-sim.exp +0 -0
  310. /data/ext/ffi_c/libffi/testsuite/libffi.call/{pyobjc-tc.c → pyobjc_tc.c} +0 -0
  311. /data/lib/ffi/platform/{sparc64-linux → sparcv9-linux}/types.conf +0 -0
@@ -30,6 +30,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
30
30
  #ifdef _WIN32
31
31
  #include <windows.h> /* FlushInstructionCache */
32
32
  #endif
33
+ #include <tramp.h>
33
34
 
34
35
  /* Force FFI_TYPE_LONGDOUBLE to be different than FFI_TYPE_DOUBLE;
35
36
  all further uses in this file will refer to the 128-bit type. */
@@ -247,13 +248,18 @@ is_vfp_type (const ffi_type *ty)
247
248
  state.
248
249
 
249
250
  The terse state variable names match the names used in the AARCH64
250
- PCS. */
251
+ PCS.
252
+
253
+ The struct area is allocated downwards from the top of the argument
254
+ area. It is used to hold copies of structures passed by value that are
255
+ bigger than 16 bytes. */
251
256
 
252
257
  struct arg_state
253
258
  {
254
259
  unsigned ngrn; /* Next general-purpose register number. */
255
260
  unsigned nsrn; /* Next vector register number. */
256
261
  size_t nsaa; /* Next stack offset. */
262
+ size_t next_struct_area; /* Place to allocate big structs. */
257
263
 
258
264
  #if defined (__APPLE__)
259
265
  unsigned allocating_variadic;
@@ -262,11 +268,12 @@ struct arg_state
262
268
 
263
269
  /* Initialize a procedure call argument marshalling state. */
264
270
  static void
265
- arg_init (struct arg_state *state)
271
+ arg_init (struct arg_state *state, size_t size)
266
272
  {
267
273
  state->ngrn = 0;
268
274
  state->nsrn = 0;
269
275
  state->nsaa = 0;
276
+ state->next_struct_area = size;
270
277
  #if defined (__APPLE__)
271
278
  state->allocating_variadic = 0;
272
279
  #endif
@@ -288,37 +295,83 @@ allocate_to_stack (struct arg_state *state, void *stack,
288
295
  if (alignment < 8)
289
296
  alignment = 8;
290
297
  #endif
291
-
298
+
292
299
  nsaa = FFI_ALIGN (nsaa, alignment);
293
300
  state->nsaa = nsaa + size;
294
301
 
295
302
  return (char *)stack + nsaa;
296
303
  }
297
304
 
305
+ /* Allocate and copy a structure that is passed by value on the stack and
306
+ return a pointer to it. */
307
+ static void *
308
+ allocate_and_copy_struct_to_stack (struct arg_state *state, void *stack,
309
+ size_t alignment, size_t size, void *value)
310
+ {
311
+ size_t dest = state->next_struct_area - size;
312
+
313
+ /* Round down to the natural alignment of the value. */
314
+ dest = FFI_ALIGN_DOWN (dest, alignment);
315
+ state->next_struct_area = dest;
316
+
317
+ return memcpy ((char *) stack + dest, value, size);
318
+ }
319
+
298
320
  static ffi_arg
299
321
  extend_integer_type (void *source, int type)
300
322
  {
301
323
  switch (type)
302
324
  {
303
325
  case FFI_TYPE_UINT8:
304
- return *(UINT8 *) source;
326
+ {
327
+ UINT8 u8;
328
+ memcpy (&u8, source, sizeof (u8));
329
+ return u8;
330
+ }
305
331
  case FFI_TYPE_SINT8:
306
- return *(SINT8 *) source;
332
+ {
333
+ SINT8 s8;
334
+ memcpy (&s8, source, sizeof (s8));
335
+ return s8;
336
+ }
307
337
  case FFI_TYPE_UINT16:
308
- return *(UINT16 *) source;
338
+ {
339
+ UINT16 u16;
340
+ memcpy (&u16, source, sizeof (u16));
341
+ return u16;
342
+ }
309
343
  case FFI_TYPE_SINT16:
310
- return *(SINT16 *) source;
344
+ {
345
+ SINT16 s16;
346
+ memcpy (&s16, source, sizeof (s16));
347
+ return s16;
348
+ }
311
349
  case FFI_TYPE_UINT32:
312
- return *(UINT32 *) source;
350
+ {
351
+ UINT32 u32;
352
+ memcpy (&u32, source, sizeof (u32));
353
+ return u32;
354
+ }
313
355
  case FFI_TYPE_INT:
314
356
  case FFI_TYPE_SINT32:
315
- return *(SINT32 *) source;
357
+ {
358
+ SINT32 s32;
359
+ memcpy (&s32, source, sizeof (s32));
360
+ return s32;
361
+ }
316
362
  case FFI_TYPE_UINT64:
317
363
  case FFI_TYPE_SINT64:
318
- return *(UINT64 *) source;
319
- break;
364
+ {
365
+ UINT64 u64;
366
+ memcpy (&u64, source, sizeof (u64));
367
+ return u64;
368
+ }
320
369
  case FFI_TYPE_POINTER:
321
- return *(uintptr_t *) source;
370
+ {
371
+ uintptr_t uptr;
372
+ memcpy (&uptr, source, sizeof (uptr));
373
+ return uptr;
374
+ }
322
375
  default:
323
376
  abort();
324
377
  }
@@ -616,19 +669,21 @@ ffi_call_int (ffi_cif *cif, void (*fn)(void), void *orig_rvalue,
616
669
  else if (flags & AARCH64_RET_NEED_COPY)
617
670
  rsize = 16;
618
671
 
619
- /* Allocate consectutive stack for everything we'll need. */
620
- context = alloca (sizeof(struct call_context) + stack_bytes + 32 + rsize);
672
+ /* Allocate consectutive stack for everything we'll need.
673
+ The frame uses 40 bytes for: lr, fp, rvalue, flags, sp */
674
+ context = alloca (sizeof(struct call_context) + stack_bytes + 40 + rsize);
621
675
  stack = context + 1;
622
676
  frame = (void*)((uintptr_t)stack + (uintptr_t)stack_bytes);
623
- rvalue = (rsize ? (void*)((uintptr_t)frame + 32) : orig_rvalue);
677
+ rvalue = (rsize ? (void*)((uintptr_t)frame + 40) : orig_rvalue);
624
678
 
625
- arg_init (&state);
679
+ arg_init (&state, stack_bytes);
626
680
  for (i = 0, nargs = cif->nargs; i < nargs; i++)
627
681
  {
628
682
  ffi_type *ty = cif->arg_types[i];
629
683
  size_t s = ty->size;
630
684
  void *a = avalue[i];
631
685
  int h, t;
686
+ void *dest;
632
687
 
633
688
  t = ty->type;
634
689
  switch (t)
@@ -676,8 +731,6 @@ ffi_call_int (ffi_cif *cif, void (*fn)(void), void *orig_rvalue,
676
731
  case FFI_TYPE_STRUCT:
677
732
  case FFI_TYPE_COMPLEX:
678
733
  {
679
- void *dest;
680
-
681
734
  h = is_vfp_type (ty);
682
735
  if (h)
683
736
  {
@@ -710,9 +763,12 @@ ffi_call_int (ffi_cif *cif, void (*fn)(void), void *orig_rvalue,
710
763
  else if (s > 16)
711
764
  {
712
765
  /* If the argument is a composite type that is larger than 16
713
- bytes, then the argument has been copied to memory, and
766
+ bytes, then the argument is copied to memory, and
714
767
  the argument is replaced by a pointer to the copy. */
715
- a = &avalue[i];
768
+ dest = allocate_and_copy_struct_to_stack (&state, stack,
769
+ ty->alignment, s,
770
+ avalue[i]);
771
+ a = &dest;
716
772
  t = FFI_TYPE_POINTER;
717
773
  s = sizeof (void *);
718
774
  goto do_pointer;
@@ -769,6 +825,8 @@ ffi_call (ffi_cif *cif, void (*fn) (void), void *rvalue, void **avalue)
769
825
  ffi_call_int (cif, fn, rvalue, avalue, NULL);
770
826
  }
771
827
 
828
+ #if FFI_CLOSURES
829
+
772
830
  #ifdef FFI_GO_CLOSURES
773
831
  void
774
832
  ffi_call_go (ffi_cif *cif, void (*fn) (void), void *rvalue,
@@ -782,6 +840,10 @@ ffi_call_go (ffi_cif *cif, void (*fn) (void), void *rvalue,
782
840
 
783
841
  extern void ffi_closure_SYSV (void) FFI_HIDDEN;
784
842
  extern void ffi_closure_SYSV_V (void) FFI_HIDDEN;
843
+ #if defined(FFI_EXEC_STATIC_TRAMP)
844
+ extern void ffi_closure_SYSV_alt (void) FFI_HIDDEN;
845
+ extern void ffi_closure_SYSV_V_alt (void) FFI_HIDDEN;
846
+ #endif
785
847
 
786
848
  ffi_status
787
849
  ffi_prep_closure_loc (ffi_closure *closure,
@@ -790,25 +852,25 @@ ffi_prep_closure_loc (ffi_closure *closure,
790
852
  void *user_data,
791
853
  void *codeloc)
792
854
  {
793
- if (cif->abi != FFI_SYSV)
855
+ if (cif->abi != FFI_SYSV && cif->abi != FFI_WIN64)
794
856
  return FFI_BAD_ABI;
795
857
 
796
858
  void (*start)(void);
797
-
859
+
798
860
  if (cif->flags & AARCH64_FLAG_ARG_V)
799
861
  start = ffi_closure_SYSV_V;
800
862
  else
801
863
  start = ffi_closure_SYSV;
802
864
 
803
865
  #if FFI_EXEC_TRAMPOLINE_TABLE
804
- #ifdef __MACH__
805
- #ifdef HAVE_PTRAUTH
806
- codeloc = ptrauth_strip (codeloc, ptrauth_key_asia);
807
- #endif
866
+ # ifdef __MACH__
867
+ # ifdef HAVE_PTRAUTH
868
+ codeloc = ptrauth_auth_data(codeloc, ptrauth_key_function_pointer, 0);
869
+ # endif
808
870
  void **config = (void **)((uint8_t *)codeloc - PAGE_MAX_SIZE);
809
871
  config[0] = closure;
810
872
  config[1] = start;
811
- #endif
873
+ # endif
812
874
  #else
813
875
  static const unsigned char trampoline[16] = {
814
876
  0x90, 0x00, 0x00, 0x58, /* ldr x16, tramp+16 */
@@ -816,22 +878,39 @@ ffi_prep_closure_loc (ffi_closure *closure,
816
878
  0x00, 0x02, 0x1f, 0xd6 /* br x16 */
817
879
  };
818
880
  char *tramp = closure->tramp;
819
-
881
+
882
+ # if defined(FFI_EXEC_STATIC_TRAMP)
883
+ if (ffi_tramp_is_present(closure))
884
+ {
885
+ /* Initialize the static trampoline's parameters. */
886
+ if (start == ffi_closure_SYSV_V)
887
+ start = ffi_closure_SYSV_V_alt;
888
+ else
889
+ start = ffi_closure_SYSV_alt;
890
+ ffi_tramp_set_parms (closure->ftramp, start, closure);
891
+ goto out;
892
+ }
893
+ # endif
894
+
895
+ /* Initialize the dynamic trampoline. */
820
896
  memcpy (tramp, trampoline, sizeof(trampoline));
821
-
897
+
822
898
  *(UINT64 *)(tramp + 16) = (uintptr_t)start;
823
899
 
824
900
  ffi_clear_cache(tramp, tramp + FFI_TRAMPOLINE_SIZE);
825
901
 
826
902
  /* Also flush the cache for code mapping. */
827
- #ifdef _WIN32
903
+ # ifdef _WIN32
828
904
  // Not using dlmalloc.c for Windows ARM64 builds
829
905
  // so calling ffi_data_to_code_pointer() isn't necessary
830
906
  unsigned char *tramp_code = tramp;
831
- #else
907
+ # else
832
908
  unsigned char *tramp_code = ffi_data_to_code_pointer (tramp);
833
- #endif
909
+ # endif
834
910
  ffi_clear_cache (tramp_code, tramp_code + FFI_TRAMPOLINE_SIZE);
911
+ # if defined(FFI_EXEC_STATIC_TRAMP)
912
+ out:
913
+ # endif
835
914
  #endif
836
915
 
837
916
  closure->cif = cif;
@@ -851,7 +930,7 @@ ffi_prep_go_closure (ffi_go_closure *closure, ffi_cif* cif,
851
930
  {
852
931
  void (*start)(void);
853
932
 
854
- if (cif->abi != FFI_SYSV)
933
+ if (cif->abi != FFI_SYSV && cif->abi != FFI_WIN64)
855
934
  return FFI_BAD_ABI;
856
935
 
857
936
  if (cif->flags & AARCH64_FLAG_ARG_V)
@@ -891,10 +970,17 @@ ffi_closure_SYSV_inner (ffi_cif *cif,
891
970
  void *stack, void *rvalue, void *struct_rvalue)
892
971
  {
893
972
  void **avalue = (void**) alloca (cif->nargs * sizeof (void*));
894
- int i, h, nargs, flags;
973
+ int i, h, nargs, flags, isvariadic = 0;
895
974
  struct arg_state state;
896
975
 
897
- arg_init (&state);
976
+ arg_init (&state, cif->bytes);
977
+
978
+ flags = cif->flags;
979
+ if (flags & AARCH64_FLAG_VARARG)
980
+ {
981
+ isvariadic = 1;
982
+ flags &= ~AARCH64_FLAG_VARARG;
983
+ }
898
984
 
899
985
  for (i = 0, nargs = cif->nargs; i < nargs; i++)
900
986
  {
@@ -930,14 +1016,13 @@ ffi_closure_SYSV_inner (ffi_cif *cif,
930
1016
  if (h)
931
1017
  {
932
1018
  n = 4 - (h & 3);
933
- #ifdef _WIN32 /* for handling armasm calling convention */
934
- if (cif->is_variadic)
1019
+ if (cif->abi == FFI_WIN64 && isvariadic)
935
1020
  {
936
1021
  if (state.ngrn + n <= N_X_ARG_REG)
937
1022
  {
938
1023
  void *reg = &context->x[state.ngrn];
939
1024
  state.ngrn += (unsigned int)n;
940
-
1025
+
941
1026
  /* Eeek! We need a pointer to the structure, however the
942
1027
  homogeneous float elements are being passed in individual
943
1028
  registers, therefore for float and double the structure
@@ -957,7 +1042,6 @@ ffi_closure_SYSV_inner (ffi_cif *cif,
957
1042
  }
958
1043
  else
959
1044
  {
960
- #endif /* for handling armasm calling convention */
961
1045
  if (state.nsrn + n <= N_V_ARG_REG)
962
1046
  {
963
1047
  void *reg = &context->v[state.nsrn];
@@ -970,17 +1054,24 @@ ffi_closure_SYSV_inner (ffi_cif *cif,
970
1054
  avalue[i] = allocate_to_stack(&state, stack,
971
1055
  ty->alignment, s);
972
1056
  }
973
- #ifdef _WIN32 /* for handling armasm calling convention */
974
1057
  }
975
- #endif /* for handling armasm calling convention */
976
1058
  }
977
1059
  else if (s > 16)
978
1060
  {
979
1061
  /* Replace Composite type of size greater than 16 with a
980
1062
  pointer. */
1063
+ #ifdef __ILP32__
1064
+ UINT64 avalue_tmp;
1065
+ memcpy (&avalue_tmp,
1066
+ allocate_int_to_reg_or_stack (context, &state,
1067
+ stack, sizeof (void *)),
1068
+ sizeof (UINT64));
1069
+ avalue[i] = (void *)(UINT32)avalue_tmp;
1070
+ #else
981
1071
  avalue[i] = *(void **)
982
1072
  allocate_int_to_reg_or_stack (context, &state, stack,
983
1073
  sizeof (void *));
1074
+ #endif
984
1075
  }
985
1076
  else
986
1077
  {
@@ -1013,7 +1104,6 @@ ffi_closure_SYSV_inner (ffi_cif *cif,
1013
1104
  #endif
1014
1105
  }
1015
1106
 
1016
- flags = cif->flags;
1017
1107
  if (flags & AARCH64_RET_IN_MEM)
1018
1108
  rvalue = struct_rvalue;
1019
1109
 
@@ -1022,4 +1112,18 @@ ffi_closure_SYSV_inner (ffi_cif *cif,
1022
1112
  return flags;
1023
1113
  }
1024
1114
 
1115
+ #if defined(FFI_EXEC_STATIC_TRAMP)
1116
+ void *
1117
+ ffi_tramp_arch (size_t *tramp_size, size_t *map_size)
1118
+ {
1119
+ extern void *trampoline_code_table;
1120
+
1121
+ *tramp_size = AARCH64_TRAMP_SIZE;
1122
+ *map_size = AARCH64_TRAMP_MAP_SIZE;
1123
+ return &trampoline_code_table;
1124
+ }
1125
+ #endif
1126
+
1127
+ #endif /* FFI_CLOSURES */
1128
+
1025
1129
  #endif /* (__aarch64__) || defined(__arm64__)|| defined (_M_ARM64)*/
@@ -66,3 +66,35 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
66
66
  #define N_X_ARG_REG 8
67
67
  #define N_V_ARG_REG 8
68
68
  #define CALL_CONTEXT_SIZE (N_V_ARG_REG * 16 + N_X_ARG_REG * 8)
69
+
70
+ #if defined(FFI_EXEC_STATIC_TRAMP)
71
+ /*
72
+ * For the trampoline code table mapping, a mapping size of 16K is chosen to
73
+ * cover the base page sizes of 4K and 16K.
74
+ */
75
+ #define AARCH64_TRAMP_MAP_SHIFT 14
76
+ #define AARCH64_TRAMP_MAP_SIZE (1 << AARCH64_TRAMP_MAP_SHIFT)
77
+ #define AARCH64_TRAMP_SIZE 32
78
+
79
+ #endif
80
+
81
+ /* Helpers for writing assembly compatible with arm ptr auth */
82
+ #ifdef LIBFFI_ASM
83
+
84
+ #ifdef HAVE_PTRAUTH
85
+ #define SIGN_LR pacibsp
86
+ #define SIGN_LR_WITH_REG(x) pacib lr, x
87
+ #define AUTH_LR_AND_RET retab
88
+ #define AUTH_LR_WITH_REG(x) autib lr, x
89
+ #define BRANCH_AND_LINK_TO_REG blraaz
90
+ #define BRANCH_TO_REG braaz
91
+ #else
92
+ #define SIGN_LR
93
+ #define SIGN_LR_WITH_REG(x)
94
+ #define AUTH_LR_AND_RET ret
95
+ #define AUTH_LR_WITH_REG(x)
96
+ #define BRANCH_AND_LINK_TO_REG blr
97
+ #define BRANCH_TO_REG br
98
+ #endif
99
+
100
+ #endif