ffi 1.9.24 → 1.16.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (457) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/CHANGELOG.md +348 -0
  4. data/Gemfile +4 -5
  5. data/README.md +44 -17
  6. data/Rakefile +74 -148
  7. data/ext/ffi_c/AbstractMemory.c +89 -70
  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 +90 -38
  12. data/ext/ffi_c/Call.c +55 -56
  13. data/ext/ffi_c/Call.h +12 -6
  14. data/ext/ffi_c/ClosurePool.c +333 -0
  15. data/ext/ffi_c/{Closure.h → ClosurePool.h} +25 -13
  16. data/ext/ffi_c/DynamicLibrary.c +91 -33
  17. data/ext/ffi_c/Function.c +306 -235
  18. data/ext/ffi_c/Function.h +3 -5
  19. data/ext/ffi_c/FunctionInfo.c +87 -32
  20. data/ext/ffi_c/LastError.c +74 -15
  21. data/ext/ffi_c/LongDouble.c +12 -10
  22. data/ext/ffi_c/LongDouble.h +0 -4
  23. data/ext/ffi_c/MappedType.c +66 -23
  24. data/ext/ffi_c/MappedType.h +0 -2
  25. data/ext/ffi_c/MemoryPointer.c +37 -15
  26. data/ext/ffi_c/MemoryPointer.h +0 -4
  27. data/ext/ffi_c/MethodHandle.c +265 -38
  28. data/ext/ffi_c/MethodHandle.h +3 -2
  29. data/ext/ffi_c/Platform.c +5 -56
  30. data/ext/ffi_c/Pointer.c +93 -55
  31. data/ext/ffi_c/Pointer.h +1 -4
  32. data/ext/ffi_c/Struct.c +202 -134
  33. data/ext/ffi_c/Struct.h +18 -9
  34. data/ext/ffi_c/StructByValue.c +50 -23
  35. data/ext/ffi_c/StructLayout.c +135 -64
  36. data/ext/ffi_c/Thread.c +4 -228
  37. data/ext/ffi_c/Thread.h +1 -20
  38. data/ext/ffi_c/Type.c +105 -55
  39. data/ext/ffi_c/Type.h +3 -2
  40. data/ext/ffi_c/Types.c +8 -9
  41. data/ext/ffi_c/Types.h +3 -4
  42. data/ext/ffi_c/Variadic.c +88 -47
  43. data/ext/ffi_c/compat.h +26 -22
  44. data/ext/ffi_c/extconf.rb +75 -32
  45. data/ext/ffi_c/ffi.c +9 -10
  46. data/ext/ffi_c/libffi/.appveyor/site.exp +16 -0
  47. data/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +7 -0
  48. data/ext/ffi_c/libffi/.appveyor.yml +53 -19
  49. data/ext/ffi_c/libffi/.ci/bfin-sim.exp +58 -0
  50. data/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
  51. data/ext/ffi_c/libffi/.ci/build-in-container.sh +10 -0
  52. data/ext/ffi_c/libffi/.ci/build.sh +124 -0
  53. data/ext/ffi_c/libffi/.ci/install.sh +78 -0
  54. data/ext/ffi_c/libffi/.ci/m32r-sim.exp +58 -0
  55. data/ext/ffi_c/libffi/{.travis → .ci}/moxie-sim.exp +1 -1
  56. data/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
  57. data/ext/ffi_c/libffi/.ci/or1k-sim.exp +58 -0
  58. data/ext/ffi_c/libffi/.ci/powerpc-eabisim.exp +58 -0
  59. data/ext/ffi_c/libffi/.ci/site.exp +29 -0
  60. data/ext/ffi_c/libffi/.ci/wine-sim.exp +55 -0
  61. data/ext/ffi_c/libffi/.circleci/config.yml +156 -0
  62. data/ext/ffi_c/libffi/.gitattributes +4 -0
  63. data/ext/ffi_c/libffi/.github/workflows/build.yml +460 -0
  64. data/ext/ffi_c/libffi/.github/workflows/emscripten.yml +171 -0
  65. data/ext/ffi_c/libffi/.gitignore +10 -2
  66. data/ext/ffi_c/libffi/{ChangeLog.libffi-3.1 → ChangeLog.old} +1407 -0
  67. data/ext/ffi_c/libffi/LICENSE +1 -1
  68. data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +5 -4
  69. data/ext/ffi_c/libffi/Makefile.am +64 -73
  70. data/ext/ffi_c/libffi/Makefile.in +553 -235
  71. data/ext/ffi_c/libffi/README.md +165 -100
  72. data/ext/ffi_c/libffi/acinclude.m4 +10 -112
  73. data/ext/ffi_c/libffi/compile +348 -0
  74. data/ext/ffi_c/libffi/config.guess +950 -662
  75. data/ext/ffi_c/libffi/config.sub +1362 -1306
  76. data/ext/ffi_c/libffi/configure +4909 -4096
  77. data/ext/ffi_c/libffi/configure.ac +93 -32
  78. data/ext/ffi_c/libffi/configure.host +76 -28
  79. data/ext/ffi_c/libffi/doc/Makefile.in +15 -8
  80. data/ext/ffi_c/libffi/doc/libffi.texi +107 -46
  81. data/ext/ffi_c/libffi/doc/version.texi +4 -4
  82. data/ext/ffi_c/libffi/fficonfig.h.in +22 -44
  83. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +165 -56
  84. data/ext/ffi_c/libffi/include/Makefile.am +1 -1
  85. data/ext/ffi_c/libffi/include/Makefile.in +17 -12
  86. data/ext/ffi_c/libffi/include/ffi.h.in +64 -48
  87. data/ext/ffi_c/libffi/include/ffi_cfi.h +21 -0
  88. data/ext/ffi_c/libffi/include/ffi_common.h +34 -1
  89. data/ext/ffi_c/libffi/include/tramp.h +45 -0
  90. data/ext/ffi_c/libffi/install-sh +107 -74
  91. data/ext/ffi_c/libffi/libffi.map.in +8 -12
  92. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +2 -48
  93. data/ext/ffi_c/libffi/libtool-version +2 -2
  94. data/ext/ffi_c/libffi/ltmain.sh +576 -284
  95. data/ext/ffi_c/libffi/m4/asmcfi.m4 +1 -1
  96. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +5 -26
  97. data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +18 -14
  98. data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +108 -72
  99. data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +5 -26
  100. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +76 -44
  101. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +5 -26
  102. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +7 -3
  103. data/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
  104. data/ext/ffi_c/libffi/make_sunver.pl +333 -0
  105. data/ext/ffi_c/libffi/man/Makefile.in +15 -8
  106. data/ext/ffi_c/libffi/missing +8 -8
  107. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
  108. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
  109. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
  110. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
  111. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
  112. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +219 -0
  113. data/ext/ffi_c/libffi/msvcc.sh +39 -14
  114. data/ext/ffi_c/libffi/src/aarch64/ffi.c +286 -98
  115. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +19 -3
  116. data/ext/ffi_c/libffi/src/aarch64/internal.h +33 -0
  117. data/ext/ffi_c/libffi/src/aarch64/sysv.S +142 -37
  118. data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
  119. data/ext/ffi_c/libffi/src/arc/arcompact.S +169 -94
  120. data/ext/ffi_c/libffi/src/arc/ffi.c +325 -148
  121. data/ext/ffi_c/libffi/src/arc/ffitarget.h +14 -0
  122. data/ext/ffi_c/libffi/src/arm/ffi.c +112 -10
  123. data/ext/ffi_c/libffi/src/arm/ffitarget.h +8 -1
  124. data/ext/ffi_c/libffi/src/arm/internal.h +10 -0
  125. data/ext/ffi_c/libffi/src/arm/sysv.S +117 -44
  126. data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
  127. data/ext/ffi_c/libffi/src/closures.c +189 -48
  128. data/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
  129. data/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
  130. data/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
  131. data/ext/ffi_c/libffi/src/dlmalloc.c +6 -1
  132. data/ext/ffi_c/libffi/src/frv/ffi.c +1 -1
  133. data/ext/ffi_c/libffi/src/ia64/ffi.c +12 -0
  134. data/ext/ffi_c/libffi/src/ia64/unix.S +20 -2
  135. data/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
  136. data/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
  137. data/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
  138. data/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
  139. data/ext/ffi_c/libffi/src/loongarch64/ffi.c +621 -0
  140. data/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +82 -0
  141. data/ext/ffi_c/libffi/src/loongarch64/sysv.S +327 -0
  142. data/ext/ffi_c/libffi/src/m32r/ffi.c +31 -14
  143. data/ext/ffi_c/libffi/src/metag/ffi.c +1 -1
  144. data/ext/ffi_c/libffi/src/mips/ffi.c +245 -66
  145. data/ext/ffi_c/libffi/src/mips/ffitarget.h +8 -1
  146. data/ext/ffi_c/libffi/src/mips/n32.S +137 -28
  147. data/ext/ffi_c/libffi/src/mips/o32.S +63 -4
  148. data/ext/ffi_c/libffi/src/moxie/ffi.c +48 -23
  149. data/ext/ffi_c/libffi/src/or1k/ffi.c +25 -12
  150. data/ext/ffi_c/libffi/src/pa/ffi.c +62 -108
  151. data/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
  152. data/ext/ffi_c/libffi/src/pa/ffitarget.h +20 -11
  153. data/ext/ffi_c/libffi/src/pa/hpux32.S +87 -38
  154. data/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
  155. data/ext/ffi_c/libffi/src/pa/linux.S +109 -39
  156. data/ext/ffi_c/libffi/src/powerpc/ffi.c +6 -4
  157. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +13 -1
  158. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +211 -32
  159. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +18 -7
  160. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +10 -4
  161. data/ext/ffi_c/libffi/src/powerpc/linux64.S +93 -28
  162. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +83 -5
  163. data/ext/ffi_c/libffi/src/powerpc/sysv.S +5 -7
  164. data/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
  165. data/ext/ffi_c/libffi/src/prep_cif.c +26 -4
  166. data/ext/ffi_c/libffi/src/riscv/ffi.c +79 -10
  167. data/ext/ffi_c/libffi/src/riscv/ffitarget.h +1 -0
  168. data/ext/ffi_c/libffi/src/riscv/sysv.S +86 -7
  169. data/ext/ffi_c/libffi/src/sparc/ffi64.c +16 -0
  170. data/ext/ffi_c/libffi/src/tramp.c +716 -0
  171. data/ext/ffi_c/libffi/src/wasm32/ffi.c +934 -0
  172. data/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
  173. data/ext/ffi_c/libffi/src/x86/ffi.c +128 -49
  174. data/ext/ffi_c/libffi/src/x86/ffi64.c +89 -23
  175. data/ext/ffi_c/libffi/src/x86/ffitarget.h +21 -4
  176. data/ext/ffi_c/libffi/src/x86/ffiw64.c +63 -10
  177. data/ext/ffi_c/libffi/src/x86/internal.h +14 -0
  178. data/ext/ffi_c/libffi/src/x86/internal64.h +14 -0
  179. data/ext/ffi_c/libffi/src/x86/sysv.S +274 -45
  180. data/ext/ffi_c/libffi/src/x86/sysv_intel.S +998 -0
  181. data/ext/ffi_c/libffi/src/x86/unix64.S +190 -4
  182. data/ext/ffi_c/libffi/src/x86/win64.S +32 -10
  183. data/ext/ffi_c/libffi/src/x86/win64_intel.S +3 -2
  184. data/ext/ffi_c/libffi/src/xtensa/ffi.c +16 -8
  185. data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +4 -0
  186. data/ext/ffi_c/libffi/src/xtensa/sysv.S +26 -16
  187. data/ext/ffi_c/libffi/testsuite/Makefile.am +127 -109
  188. data/ext/ffi_c/libffi/testsuite/Makefile.in +144 -88
  189. data/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +54 -0
  190. data/ext/ffi_c/libffi/testsuite/emscripten/build.sh +63 -0
  191. data/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +80 -0
  192. data/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +48 -0
  193. data/ext/ffi_c/libffi/testsuite/emscripten/test.html +7 -0
  194. data/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +51 -0
  195. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +71 -25
  196. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +2 -2
  197. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +7 -2
  198. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +5 -4
  199. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2 -2
  200. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +5 -1
  201. data/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
  202. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +12 -1
  203. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +28 -3
  204. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +9 -8
  205. data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +3 -0
  206. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +5 -0
  207. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +4 -0
  208. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +4 -0
  209. data/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +60 -0
  210. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +8 -9
  211. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +2 -2
  212. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +2 -2
  213. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +2 -2
  214. data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +1 -1
  215. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +63 -0
  216. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +65 -0
  217. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +65 -0
  218. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +67 -0
  219. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +67 -0
  220. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +93 -0
  221. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +61 -0
  222. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +63 -0
  223. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +90 -0
  224. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -119
  225. data/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +220 -0
  226. data/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +154 -0
  227. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +13 -0
  228. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +11 -0
  229. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +15 -0
  230. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
  231. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +3 -2
  232. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +2 -0
  233. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +2 -0
  234. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +21 -1
  235. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +2 -0
  236. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +2 -0
  237. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +2 -0
  238. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +7 -6
  239. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_simple.c +6 -0
  240. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +18 -0
  241. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +22 -0
  242. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +24 -0
  243. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +29 -0
  244. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +4 -0
  245. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +19 -1
  246. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +21 -1
  247. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +35 -3
  248. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +13 -0
  249. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +19 -0
  250. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +13 -0
  251. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +13 -0
  252. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3float.c +18 -0
  253. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +22 -0
  254. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +13 -0
  255. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +29 -1
  256. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +19 -1
  257. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +24 -0
  258. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +28 -1
  259. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +24 -2
  260. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +39 -1
  261. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +25 -1
  262. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +14 -0
  263. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +14 -1
  264. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +14 -2
  265. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +19 -1
  266. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +19 -1
  267. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +20 -1
  268. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +40 -25
  269. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +40 -3
  270. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +19 -1
  271. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +18 -1
  272. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +18 -3
  273. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +18 -1
  274. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +18 -1
  275. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +19 -1
  276. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +19 -1
  277. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +3 -1
  278. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +9 -1
  279. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +4 -0
  280. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +11 -1
  281. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +22 -3
  282. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +5 -1
  283. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +6 -1
  284. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +9 -1
  285. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +9 -1
  286. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +6 -2
  287. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +9 -1
  288. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +5 -0
  289. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +10 -0
  290. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +3 -0
  291. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +2 -0
  292. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +3 -0
  293. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_struct_va1.c +11 -0
  294. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +3 -0
  295. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +4 -0
  296. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint_va.c +4 -0
  297. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulong_va.c +4 -0
  298. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +2 -0
  299. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +3 -0
  300. data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +1 -0
  301. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +24 -22
  302. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +32 -9
  303. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +1 -1
  304. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +12 -0
  305. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct11.c +21 -5
  306. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
  307. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
  308. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +10 -1
  309. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +10 -1
  310. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +9 -0
  311. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +9 -0
  312. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +11 -0
  313. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +9 -0
  314. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +11 -0
  315. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +11 -0
  316. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
  317. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
  318. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
  319. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +1 -1
  320. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +1 -1
  321. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +6 -1
  322. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest.cc +2 -1
  323. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest_ffi_call.cc +1 -0
  324. data/ext/ffi_c/libffi.bsd.mk +2 -2
  325. data/ext/ffi_c/libffi.darwin.mk +1 -1
  326. data/ext/ffi_c/libffi.gnu.mk +2 -2
  327. data/ext/ffi_c/rbffi.h +1 -3
  328. data/ffi.gemspec +15 -9
  329. data/lib/ffi/abstract_memory.rb +44 -0
  330. data/lib/ffi/autopointer.rb +8 -23
  331. data/lib/ffi/compat.rb +43 -0
  332. data/lib/ffi/data_converter.rb +67 -0
  333. data/lib/ffi/dynamic_library.rb +89 -0
  334. data/lib/ffi/enum.rb +18 -11
  335. data/lib/ffi/ffi.rb +6 -0
  336. data/lib/ffi/function.rb +71 -0
  337. data/lib/ffi/io.rb +3 -3
  338. data/lib/ffi/library.rb +65 -77
  339. data/lib/ffi/library_path.rb +109 -0
  340. data/lib/ffi/managedstruct.rb +3 -3
  341. data/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
  342. data/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
  343. data/lib/ffi/platform/aarch64-freebsd12/types.conf +181 -0
  344. data/lib/ffi/platform/aarch64-linux/types.conf +81 -81
  345. data/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
  346. data/lib/ffi/platform/aarch64-windows/types.conf +52 -0
  347. data/lib/ffi/platform/arm-freebsd/types.conf +152 -0
  348. data/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
  349. data/lib/ffi/platform/arm-linux/types.conf +110 -82
  350. data/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
  351. data/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
  352. data/lib/ffi/platform/i386-cygwin/types.conf +1 -1
  353. data/lib/ffi/platform/i386-darwin/types.conf +63 -63
  354. data/lib/ffi/platform/i386-freebsd/types.conf +89 -89
  355. data/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
  356. data/lib/ffi/platform/i386-gnu/types.conf +84 -84
  357. data/lib/ffi/platform/i386-linux/types.conf +77 -77
  358. data/lib/ffi/platform/i386-netbsd/types.conf +87 -87
  359. data/lib/ffi/platform/i386-openbsd/types.conf +89 -89
  360. data/lib/ffi/platform/i386-solaris/types.conf +96 -96
  361. data/lib/ffi/platform/i386-windows/types.conf +43 -96
  362. data/lib/ffi/platform/ia64-linux/types.conf +79 -79
  363. data/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
  364. data/lib/ffi/platform/mips-linux/types.conf +79 -79
  365. data/lib/ffi/platform/mips64-linux/types.conf +81 -81
  366. data/lib/ffi/platform/mips64el-linux/types.conf +81 -81
  367. data/lib/ffi/platform/mipsel-linux/types.conf +79 -79
  368. data/lib/ffi/platform/mipsisa32r6-linux/types.conf +79 -79
  369. data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +79 -79
  370. data/lib/ffi/platform/mipsisa64r6-linux/types.conf +81 -81
  371. data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +81 -81
  372. data/lib/ffi/platform/powerpc-aix/types.conf +155 -155
  373. data/lib/ffi/platform/powerpc-darwin/types.conf +63 -63
  374. data/lib/ffi/platform/powerpc-linux/types.conf +108 -78
  375. data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
  376. data/lib/ffi/platform/powerpc64-linux/types.conf +81 -81
  377. data/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
  378. data/lib/ffi/platform/riscv64-linux/types.conf +104 -0
  379. data/lib/ffi/platform/s390-linux/types.conf +79 -79
  380. data/lib/ffi/platform/s390x-linux/types.conf +79 -79
  381. data/lib/ffi/platform/sparc-linux/types.conf +79 -79
  382. data/lib/ffi/platform/sparc-solaris/types.conf +103 -103
  383. data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
  384. data/lib/ffi/platform/sparcv9-solaris/types.conf +103 -103
  385. data/lib/ffi/platform/sw_64-linux/types.conf +141 -0
  386. data/lib/ffi/platform/x86_64-cygwin/types.conf +1 -1
  387. data/lib/ffi/platform/x86_64-darwin/types.conf +88 -84
  388. data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
  389. data/lib/ffi/platform/x86_64-freebsd/types.conf +90 -90
  390. data/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
  391. data/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
  392. data/lib/ffi/platform/x86_64-linux/types.conf +107 -77
  393. data/lib/ffi/platform/x86_64-msys/types.conf +119 -0
  394. data/lib/ffi/platform/x86_64-netbsd/types.conf +89 -89
  395. data/lib/ffi/platform/x86_64-openbsd/types.conf +86 -86
  396. data/lib/ffi/platform/x86_64-solaris/types.conf +96 -96
  397. data/lib/ffi/platform/x86_64-windows/types.conf +42 -110
  398. data/lib/ffi/platform.rb +43 -20
  399. data/lib/ffi/pointer.rb +26 -20
  400. data/lib/ffi/struct.rb +14 -68
  401. data/lib/ffi/struct_by_reference.rb +72 -0
  402. data/lib/ffi/struct_layout.rb +96 -0
  403. data/lib/ffi/struct_layout_builder.rb +1 -1
  404. data/lib/ffi/tools/const_generator.rb +11 -8
  405. data/lib/ffi/tools/generator.rb +47 -2
  406. data/lib/ffi/tools/generator_task.rb +13 -17
  407. data/lib/ffi/tools/struct_generator.rb +6 -5
  408. data/lib/ffi/tools/types_generator.rb +7 -4
  409. data/lib/ffi/types.rb +33 -7
  410. data/lib/ffi/variadic.rb +20 -18
  411. data/lib/ffi/version.rb +1 -1
  412. data/lib/ffi.rb +10 -3
  413. data/rakelib/ffi_gem_helper.rb +65 -0
  414. data/samples/getlogin.rb +1 -1
  415. data/samples/getpid.rb +1 -1
  416. data/samples/gettimeofday.rb +8 -8
  417. data/samples/hello.rb +2 -1
  418. data/samples/hello_ractor.rb +11 -0
  419. data/samples/inotify.rb +1 -1
  420. data/samples/pty.rb +1 -2
  421. data/samples/qsort.rb +0 -1
  422. data/samples/qsort_ractor.rb +28 -0
  423. data.tar.gz.sig +0 -0
  424. metadata +252 -153
  425. metadata.gz.sig +0 -0
  426. data/.gitignore +0 -22
  427. data/.gitmodules +0 -3
  428. data/.travis.yml +0 -52
  429. data/.yardopts +0 -5
  430. data/appveyor.yml +0 -22
  431. data/ext/ffi_c/Closure.c +0 -54
  432. data/ext/ffi_c/DataConverter.c +0 -91
  433. data/ext/ffi_c/StructByReference.c +0 -190
  434. data/ext/ffi_c/StructByReference.h +0 -50
  435. data/ext/ffi_c/libffi/.travis/build.sh +0 -34
  436. data/ext/ffi_c/libffi/.travis/install.sh +0 -22
  437. data/ext/ffi_c/libffi/.travis/site.exp +0 -18
  438. data/ext/ffi_c/libffi/.travis.yml +0 -34
  439. data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
  440. data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
  441. data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
  442. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +0 -44
  443. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +0 -44
  444. data/ext/ffi_c/win32/stdbool.h +0 -8
  445. data/ext/ffi_c/win32/stdint.h +0 -201
  446. data/samples/sample_helper.rb +0 -6
  447. data/ext/ffi_c/libffi/{.travis → .ci}/ar-lib +0 -0
  448. data/ext/ffi_c/libffi/{.travis → .ci}/compile +0 -0
  449. data/ext/ffi_c/libffi/testsuite/libffi.call/{pyobjc-tc.c → pyobjc_tc.c} +0 -0
  450. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
  451. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_args.c +0 -0
  452. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_float_double.c +0 -0
  453. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +0 -0
  454. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
  455. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +0 -0
  456. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +0 -0
  457. data/lib/ffi/platform/{sparc64-linux → sparcv9-linux}/types.conf +79 -79
@@ -0,0 +1,54 @@
1
+ #!/usr/bin/env bash
2
+ emcc_exists="$(command -v emcc)"
3
+ if [ ! "${emcc_exists}" ]; then
4
+ echo "Emscripten not on path"
5
+ exit 1
6
+ fi
7
+
8
+ set -e
9
+
10
+ cd "$1"
11
+ shift
12
+
13
+ # Parse arguments
14
+ while [ $# -gt 0 ]; do
15
+ case $1 in
16
+ --wasm-bigint) WASM_BIGINT=true ;;
17
+ *)
18
+ echo "ERROR: Unknown parameter: $1" >&2
19
+ exit 1
20
+ ;;
21
+ esac
22
+ shift
23
+ done
24
+
25
+
26
+ export CFLAGS="-fPIC -O2 -I../../target/include $EXTRA_CFLAGS"
27
+ export CXXFLAGS="$CFLAGS -sNO_DISABLE_EXCEPTION_CATCHING $EXTRA_CXXFLAGS"
28
+ export LDFLAGS=" \
29
+ -L../../target/lib/ -lffi \
30
+ -sEXPORT_ALL \
31
+ -sMODULARIZE \
32
+ -sMAIN_MODULE \
33
+ -sNO_DISABLE_EXCEPTION_CATCHING \
34
+ $EXTRA_LD_FLAGS \
35
+ "
36
+
37
+ # This needs to test false if there exists an environment variable called
38
+ # WASM_BIGINT whose contents are empty. Don't use +x.
39
+ if [ -n "${WASM_BIGINT}" ] ; then
40
+ export LDFLAGS+=" -sWASM_BIGINT"
41
+ else
42
+ export LDFLAGS+=" -sEXPORTED_RUNTIME_METHODS='getTempRet0,setTempRet0'"
43
+ fi
44
+
45
+ # Rename main functions to test__filename so we can link them together
46
+ ls *c | sed 's!\(.*\)\.c!sed -i "s/main/test__\1/g" \0!g' | bash
47
+
48
+ # Compile
49
+ ls *.c | sed 's/\(.*\)\.c/emcc $CFLAGS -c \1.c -o \1.o /g' | bash
50
+ ls *.cc | sed 's/\(.*\)\.cc/em++ $CXXFLAGS -c \1.cc -o \1.o /g' | bash
51
+
52
+ # Link
53
+ em++ $LDFLAGS *.o -o test.js
54
+ cp ../emscripten/test.html .
@@ -0,0 +1,63 @@
1
+ #!/usr/bin/env bash
2
+ command -v emcc >/dev/null 2>&1 || {
3
+ echo >&2 "emsdk could not be found. Aborting."
4
+ exit 1
5
+ }
6
+
7
+ set -e
8
+
9
+ SOURCE_DIR=$PWD
10
+
11
+ # Working directories
12
+ TARGET=$SOURCE_DIR/target
13
+ mkdir -p "$TARGET"
14
+
15
+ # Define default arguments
16
+
17
+ # JS BigInt to Wasm i64 integration, disabled by default
18
+ # This needs to test false if there exists an environment variable called
19
+ # WASM_BIGINT whose contents are empty. Don't use +x.
20
+ if [ -n "${WASM_BIGINT}" ]; then
21
+ WASM_BIGINT=true
22
+ else
23
+ WASM_BIGINT=false
24
+ fi
25
+
26
+ # Parse arguments
27
+ while [ $# -gt 0 ]; do
28
+ case $1 in
29
+ --wasm-bigint) WASM_BIGINT=true ;;
30
+ --debug) DEBUG=true ;;
31
+ *)
32
+ echo "ERROR: Unknown parameter: $1" >&2
33
+ exit 1
34
+ ;;
35
+ esac
36
+ shift
37
+ done
38
+
39
+ # Common compiler flags
40
+ export CFLAGS="-O3 -fPIC"
41
+ if [ "$WASM_BIGINT" = "true" ]; then
42
+ # We need to detect WASM_BIGINT support at compile time
43
+ export CFLAGS+=" -DWASM_BIGINT"
44
+ fi
45
+ if [ "$DEBUG" = "true" ]; then
46
+ export CFLAGS+=" -DDEBUG_F"
47
+ fi
48
+ export CXXFLAGS="$CFLAGS"
49
+
50
+ # Build paths
51
+ export CPATH="$TARGET/include"
52
+ export PKG_CONFIG_PATH="$TARGET/lib/pkgconfig"
53
+ export EM_PKG_CONFIG_PATH="$PKG_CONFIG_PATH"
54
+
55
+ # Specific variables for cross-compilation
56
+ export CHOST="wasm32-unknown-linux" # wasm32-unknown-emscripten
57
+
58
+ autoreconf -fiv
59
+ emconfigure ./configure --host=$CHOST --prefix="$TARGET" --enable-static --disable-shared --disable-dependency-tracking \
60
+ --disable-builddir --disable-multi-os-directory --disable-raw-api --disable-docs
61
+ make install
62
+ cp fficonfig.h target/include/
63
+ cp include/ffi_common.h target/include/
@@ -0,0 +1,80 @@
1
+ from pathlib import Path
2
+ from pytest import fixture
3
+ from pytest_pyodide.server import spawn_web_server
4
+ from pytest_pyodide import runner
5
+
6
+ TEST_PATH = Path(__file__).parents[1].resolve()
7
+
8
+
9
+ class BaseRunner(runner._BrowserBaseRunner):
10
+ def __init__(
11
+ self,
12
+ *args,
13
+ test_dir,
14
+ **kwargs,
15
+ ):
16
+ self.test_dir = test_dir
17
+ super().__init__(
18
+ *args,
19
+ **kwargs,
20
+ load_pyodide=False,
21
+ )
22
+
23
+ def prepare_driver(self):
24
+ self.base_url = (
25
+ f"http://{self.server_hostname}:{self.server_port}/{self.test_dir}/"
26
+ )
27
+ self.goto(f"{self.base_url}/test.html")
28
+
29
+ def javascript_setup(self):
30
+ self.run_js("globalThis.TestModule = await globalThis.Module();")
31
+
32
+
33
+ class FirefoxRunner(BaseRunner, runner.SeleniumFirefoxRunner):
34
+ pass
35
+
36
+
37
+ class ChromeRunner(BaseRunner, runner.SeleniumChromeRunner):
38
+ pass
39
+
40
+
41
+ # TODO: Figure out how to get NodeRunner to work.
42
+
43
+ RUNNER_DICT = {x.browser: x for x in [FirefoxRunner, ChromeRunner]}
44
+
45
+
46
+ @fixture(params=list(RUNNER_DICT), scope="class")
47
+ def selenium_class_scope(request, web_server_main):
48
+ server_hostname, server_port, server_log = web_server_main
49
+ assert request.param in RUNNER_DICT
50
+ cls = RUNNER_DICT[request.param]
51
+ selenium = cls(
52
+ test_dir=request.cls.TEST_BUILD_DIR,
53
+ server_port=server_port,
54
+ server_hostname=server_hostname,
55
+ server_log=server_log,
56
+ )
57
+ request.cls.call_number = 0
58
+ try:
59
+ yield selenium
60
+ finally:
61
+ print(selenium.logs)
62
+ selenium.driver.quit()
63
+
64
+
65
+ @fixture(scope="function")
66
+ def selenium(selenium_class_scope, request):
67
+ selenium = selenium_class_scope
68
+ request.cls.call_number += 1
69
+ # Refresh page every 50 calls to prevent firefox out of memory errors
70
+ if request.cls.call_number % 50 == 0:
71
+ selenium.driver.refresh()
72
+ selenium.javascript_setup()
73
+ selenium.clean_logs()
74
+ yield selenium
75
+
76
+
77
+ @fixture(scope="session")
78
+ def web_server_main(request):
79
+ with spawn_web_server(TEST_PATH) as output:
80
+ yield output
@@ -0,0 +1,48 @@
1
+ #!/bin/bash
2
+
3
+ # JS BigInt to Wasm i64 integration, disabled by default
4
+ WASM_BIGINT=false
5
+
6
+ emcc_exists="$(command -v emcc)"
7
+ if [ ! "${emcc_exists}" ]; then
8
+ echo "Emscripten not on path"
9
+ exit 1
10
+ fi
11
+
12
+ # Parse arguments
13
+ while [ $# -gt 0 ]; do
14
+ case $1 in
15
+ --wasm-bigint) WASM_BIGINT=true ;;
16
+ *)
17
+ echo "ERROR: Unknown parameter: $1" >&2
18
+ exit 1
19
+ ;;
20
+ esac
21
+ shift
22
+ done
23
+
24
+ # Common compiler flags
25
+ export CFLAGS="-fPIC $EXTRA_CFLAGS"
26
+ if [ "$WASM_BIGINT" = "true" ]; then
27
+ # We need to detect WASM_BIGINT support at compile time
28
+ export CFLAGS+=" -DWASM_BIGINT"
29
+ fi
30
+ export CXXFLAGS="$CFLAGS -sNO_DISABLE_EXCEPTION_CATCHING $EXTRA_CXXFLAGS"
31
+ export LDFLAGS="-sEXPORTED_FUNCTIONS=_main,_malloc,_free -sALLOW_TABLE_GROWTH -sASSERTIONS -sNO_DISABLE_EXCEPTION_CATCHING"
32
+ if [ "$WASM_BIGINT" = "true" ]; then
33
+ export LDFLAGS+=" -sWASM_BIGINT"
34
+ else
35
+ export LDFLAGS+=" -sEXPORTED_RUNTIME_METHODS='getTempRet0,setTempRet0'"
36
+ fi
37
+
38
+ # Specific variables for cross-compilation
39
+ export CHOST="wasm32-unknown-linux" # wasm32-unknown-emscripten
40
+
41
+ autoreconf -fiv
42
+ emconfigure ./configure --prefix="$(pwd)/target" --host=$CHOST --enable-static --disable-shared \
43
+ --disable-builddir --disable-multi-os-directory --disable-raw-api --disable-docs ||
44
+ (cat config.log && exit 1)
45
+ make
46
+
47
+ EMMAKEN_JUST_CONFIGURE=1 emmake make check \
48
+ RUNTESTFLAGS="LDFLAGS_FOR_TARGET='$LDFLAGS'" || (cat testsuite/libffi.log && exit 1)
@@ -0,0 +1,7 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <script src="test.js"></script>
5
+ </head>
6
+ <body></body>
7
+ </html>
@@ -0,0 +1,51 @@
1
+ import subprocess
2
+ import pathlib
3
+ import pytest
4
+
5
+ TEST_PATH = pathlib.Path(__file__).parents[1].resolve()
6
+
7
+ xfails = {}
8
+
9
+
10
+ def libffi_tests(self, selenium, libffi_test):
11
+ if libffi_test in xfails:
12
+ pytest.xfail(f'known failure with code "{xfails[libffi_test]}"')
13
+ res = selenium.run_js(
14
+ """
15
+ window.TestModule = await Module();
16
+ """
17
+ )
18
+ selenium.run_js(
19
+ f"""
20
+ try {{
21
+ TestModule._test__{libffi_test}();
22
+ }} catch(e){{
23
+ if(e.name !== "ExitStatus"){{
24
+ throw e;
25
+ }}
26
+ if(e.status !== 0){{
27
+ throw new Error(`Terminated with nonzero status code ${{e.status}}: ` + e.message);
28
+ }}
29
+ }}
30
+ """
31
+ )
32
+
33
+
34
+ class TestCall:
35
+ TEST_BUILD_DIR = "libffi.call.test"
36
+ test_call = libffi_tests
37
+
38
+
39
+ class TestClosures:
40
+ TEST_BUILD_DIR = "libffi.closures.test"
41
+ test_closures = libffi_tests
42
+
43
+
44
+ def pytest_generate_tests(metafunc):
45
+ test_build_dir = metafunc.cls.TEST_BUILD_DIR
46
+ test_names = [x.stem for x in (TEST_PATH / test_build_dir).glob("*.o")]
47
+ metafunc.parametrize("libffi_test", test_names)
48
+
49
+
50
+ if __name__ == "__main__":
51
+ subprocess.call(["build-tests.sh", "libffi.call"])
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2003, 2005, 2008, 2009, 2010, 2011, 2014 Free Software Foundation, Inc.
1
+ # Copyright (C) 2003, 2005, 2008, 2009, 2010, 2011, 2014, 2019, 2022 Free Software Foundation, Inc.
2
2
 
3
3
  # This program is free software; you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -45,7 +45,7 @@ proc is-effective-target { arg } {
45
45
  if { [info procs check_effective_target_${arg}] != [list] } {
46
46
  set selected [check_effective_target_${arg}]
47
47
  } else {
48
- error "unknown effective target keyword `$arg'"
48
+ error "unknown effective target keyword `$arg'"
49
49
  }
50
50
  verbose "is-effective-target: $arg $selected" 2
51
51
  return $selected
@@ -196,7 +196,7 @@ if { [info procs saved-dg-process-target] == [list] } {
196
196
  return "N"
197
197
  }
198
198
  return [dg-process-target-1 $xfail_selector]
199
-
199
+
200
200
  }
201
201
  return [dg-process-target-1 $selector]
202
202
  }
@@ -221,6 +221,13 @@ proc libffi-dg-test-1 { target_compile prog do_what extra_tool_flags } {
221
221
  set output_match [lreplace $output_match 1 1 $x]
222
222
  }
223
223
 
224
+ if { [ istarget "wasm32-*-*" ] } {
225
+ # emscripten will get confused if told to build as .exe
226
+ set exec_suffix ""
227
+ } else {
228
+ set exec_suffix ".exe"
229
+ }
230
+
224
231
  # Set up the compiler flags, based on what we're going to do.
225
232
 
226
233
  set options [list]
@@ -231,7 +238,7 @@ proc libffi-dg-test-1 { target_compile prog do_what extra_tool_flags } {
231
238
  }
232
239
  "link" {
233
240
  set compile_type "executable"
234
- set output_file "[file rootname [file tail $prog]].exe"
241
+ set output_file "[file rootname [file tail $prog]]$exec_suffix"
235
242
  # The following line is needed for targets like the i960 where
236
243
  # the default output file is b.out. Sigh.
237
244
  }
@@ -240,7 +247,7 @@ proc libffi-dg-test-1 { target_compile prog do_what extra_tool_flags } {
240
247
  # FIXME: "./" is to cope with "." not being in $PATH.
241
248
  # Should this be handled elsewhere?
242
249
  # YES.
243
- set output_file "./[file rootname [file tail $prog]].exe"
250
+ set output_file "./[file rootname [file tail $prog]]$exec_suffix"
244
251
  # This is the only place where we care if an executable was
245
252
  # created or not. If it was, dg.exp will try to run it.
246
253
  remote_file build delete $output_file;
@@ -266,6 +273,16 @@ proc libffi-dg-test { prog do_what extra_tool_flags } {
266
273
  return [libffi-dg-test-1 target_compile $prog $do_what $extra_tool_flags]
267
274
  }
268
275
 
276
+ proc libffi-dg-prune { target_triplet text } {
277
+ # We get this with some qemu emulated systems (eg. ppc64le-linux-gnu)
278
+ regsub -all "(^|\n)\[^\n\]*unable to perform all requested operations" $text "" text
279
+ # We get this from sparc64 linux systems
280
+ regsub -all "(^|\n)\[^\n\]*warning: .* has a LOAD segment with RWX permissions" $text "" text
281
+ # Ignore Emscripten INFO messages
282
+ regsub -all "(^|\n)(cache|shared):INFO:\[^\n\]*" $text "" text
283
+ return $text
284
+ }
285
+
269
286
  proc libffi-init { args } {
270
287
  global gluefile wrap_flags;
271
288
  global srcdir
@@ -286,9 +303,6 @@ proc libffi-init { args } {
286
303
  verbose "libffi $blddirffi"
287
304
 
288
305
  # Which compiler are we building with?
289
- set tmp [grep "$blddirffi/config.log" "^ax_cv_c_compiler_vendor.*$"]
290
- regexp -- {^[^=]*=(.*)$} $tmp nil compiler_vendor
291
-
292
306
  if { [string match $compiler_vendor "gnu"] } {
293
307
  set gccdir [lookfor_file $tool_root_dir gcc/libgcc.a]
294
308
  if {$gccdir != ""} {
@@ -373,7 +387,9 @@ proc libffi_target_compile { source dest type options } {
373
387
 
374
388
  if { [istarget "*-*-darwin9*"] || [istarget "*-*-darwin1*"]
375
389
  || [istarget "*-*-darwin2*"] } {
376
- lappend options "additional_flags=-Wl,-allow_stack_execute"
390
+ # lappend options "additional_flags=-Wl,-allow_stack_execute"
391
+ lappend options "additional_flags=-Wno-unused-command-line-argument"
392
+ lappend options "additional_flags=-Wl,-search_paths_first"
377
393
  }
378
394
 
379
395
  # If you're building the compiler with --prefix set to a place
@@ -391,17 +407,29 @@ proc libffi_target_compile { source dest type options } {
391
407
 
392
408
  lappend options "libs= -lffi"
393
409
 
394
- if { [string match "aarch64*-*-linux*" $target_triplet] } {
395
- lappend options "libs= -lpthread"
396
- }
410
+ if { ![string match "*android*" $target_triplet] } {
397
411
 
398
- # this may be required for g++, but just confused clang.
399
- if { [string match "*.cc" $source] } {
400
- lappend options "c++"
412
+ if { [string match "aarch64*-*-linux*" $target_triplet] } {
413
+ lappend options "libs= -lpthread"
414
+ }
415
+
416
+ # this may be required for g++, but just confused clang.
417
+ if { [string match "*.cc" $source] } {
418
+ lappend options "c++"
419
+ if { [string match "*-*-darwin*" $target_triplet] } {
420
+ lappend options "libs= -lc++"
421
+ }
422
+ }
423
+
424
+ if { [string match "arc*-*-linux*" $target_triplet] } {
425
+ lappend options "libs= -lpthread"
426
+ }
401
427
  }
402
428
 
403
- if { [string match "arc*-*-linux*" $target_triplet] } {
404
- lappend options "libs= -lpthread"
429
+ # emscripten emits this warning while building the feature test
430
+ # which causes it to be seen as unsupported.
431
+ if { [string match "wasm32-*" $target_triplet] } {
432
+ lappend options "additional_flags=-Wno-unused-command-line-argument"
405
433
  }
406
434
 
407
435
  verbose "options: $options"
@@ -477,22 +505,37 @@ proc libffi-dg-runtest { testcases default-extra-flags } {
477
505
  proc run-many-tests { testcases extra_flags } {
478
506
  global compiler_vendor
479
507
  global has_gccbug
508
+ global env
480
509
  switch $compiler_vendor {
481
510
  "clang" {
482
- set common "-W -Wall"
483
- set optimizations { "-O0" "-O2" "-Os" }
511
+ set common "-W -Wall"
512
+ if [info exists env(LIBFFI_TEST_OPTIMIZATION)] {
513
+ set optimizations [ list $env(LIBFFI_TEST_OPTIMIZATION) ]
514
+ } else {
515
+ set optimizations { "-O0" "-O2" }
516
+ }
484
517
  }
485
518
  "gnu" {
486
519
  set common "-W -Wall -Wno-psabi"
487
- set optimizations { "-O0" "-O2" "-Os" "-O2 -fomit-frame-pointer" }
520
+ if [info exists env(LIBFFI_TEST_OPTIMIZATION)] {
521
+ set optimizations [ list $env(LIBFFI_TEST_OPTIMIZATION) ]
522
+ } else {
523
+ set optimizations { "-O0" "-O2" }
524
+ }
488
525
  }
489
526
  default {
490
527
  # Assume we are using the vendor compiler.
491
528
  set common ""
492
- set optimizations { "" }
529
+ if [info exists env(LIBFFI_TEST_OPTIMIZATION)] {
530
+ set optimizations [ list $env(LIBFFI_TEST_OPTIMIZATION) ]
531
+ } else {
532
+ set optimizations { "" }
533
+ }
493
534
  }
494
535
  }
495
536
 
537
+ info exists env(LD_LIBRARY_PATH)
538
+
496
539
  set targetabis { "" }
497
540
  if [string match $compiler_vendor "gnu"] {
498
541
  if [libffi_feature_test "#ifdef __i386__"] {
@@ -532,10 +575,13 @@ proc run-many-tests { testcases extra_flags } {
532
575
  && [string match "*callback*" $testname] ) \
533
576
  || [string match "*DGTEST=55 *" $common] \
534
577
  || [string match "*DGTEST=56 *" $common] ) } then {
535
- set has_gccbug true;
578
+ if [libffi_feature_test "#if (__GNUC__ < 9) || ((__GNUC__ == 9) && (__GNUC_MINOR__ < 3))"] {
579
+ set has_gccbug true;
580
+ }
536
581
  }
537
- verbose "Testing $testname, $options" 1
538
- dg-test $test $options ""
582
+ verbose "Testing $testname, $options" 1
583
+ verbose "has_gccbug = $has_gccbug" 1
584
+ dg-test $test $options ""
539
585
  }
540
586
  }
541
587
  }
@@ -571,7 +617,7 @@ proc check-flags { args } {
571
617
  # compare them to the actual options.
572
618
  if { [string compare [lindex $args 2] "*"] == 0
573
619
  && [string compare [lindex $args 3] "" ] == 0 } {
574
- set result 1
620
+ set result 1
575
621
  } else {
576
622
  # The target list might be an effective-target keyword, so replace
577
623
  # the original list with "*-*-*", since we already know it matches.
@@ -175,7 +175,7 @@ proc set_ld_library_path_env_vars { } {
175
175
  } else {
176
176
  setenv DYLD_LIBRARY_PATH "$ld_library_path"
177
177
  }
178
- if { [istarget *-*-cygwin*] || [istarget *-*-mingw*] } {
178
+ if { [istarget *-*-cygwin*] || [ istarget *-*-msys* ] || [istarget *-*-mingw*] } {
179
179
  if { $orig_path_saved } {
180
180
  setenv PATH "$ld_library_path:$orig_path"
181
181
  } else {
@@ -271,7 +271,7 @@ proc get_shlib_extension { } {
271
271
 
272
272
  if { [ istarget *-*-darwin* ] } {
273
273
  set shlib_ext "dylib"
274
- } elseif { [ istarget *-*-cygwin* ] || [ istarget *-*-mingw* ] } {
274
+ } elseif { [ istarget *-*-cygwin* ] || [ istarget *-*-msys* ] || [ istarget *-*-mingw* ] } {
275
275
  set shlib_ext "dll"
276
276
  } elseif { [ istarget hppa*-*-hpux* ] } {
277
277
  set shlib_ext "sl"
@@ -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
@@ -4,7 +4,7 @@
4
4
 
5
5
  This program is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
7
- the Free Software Foundation; either version 2 of the License, or
7
+ the Free Software Foundation; either version 3 of the License, or
8
8
  (at your option) any later version.
9
9
 
10
10
  This program is distributed in the hope that it will be useful,
@@ -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 { xfail gccbug } } */
20
20
 
21
21
  #include <stdio.h>
22
22
  #include <stdlib.h>
@@ -50,6 +50,7 @@ int _fprintf(FILE *stream, const char *format, ...)
50
50
  case 3:
51
51
  vsprintf(&rbuf2[strlen(rbuf2)], format, args);
52
52
  printf("%s", rbuf2);
53
+ fflush (stdout);
53
54
  if (strcmp (rbuf1, rbuf2)) abort();
54
55
  break;
55
56
  }
@@ -1220,7 +1221,7 @@ void
1220
1221
  }
1221
1222
  fprintf(out,"->{%g}\n",Fr.x);
1222
1223
  fflush(out);
1223
- #endif
1224
+ #endif
1224
1225
  #if (!defined(DGTEST)) || DGTEST == 56
1225
1226
  Dr = D_fDd(f1,D2,d3);
1226
1227
  fprintf(out,"->{%g}\n",Dr.x);
@@ -1243,7 +1244,7 @@ void
1243
1244
  }
1244
1245
  fprintf(out,"->{%g}\n",Dr.x);
1245
1246
  fflush(out);
1246
- #endif
1247
+ #endif
1247
1248
  #if (!defined(DGTEST)) || DGTEST == 57
1248
1249
  Dr = D_Dfd(D1,f2,d3);
1249
1250
  fprintf(out,"->{%g}\n",Dr.x);
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * This program is free software: you can redistribute it and/or modify
6
6
  * it under the terms of the GNU General Public License as published by
7
- * the Free Software Foundation; either version 2 of the License, or
7
+ * the Free Software Foundation; either version 3 of the License, or
8
8
  * (at your option) any later version.
9
9
  *
10
10
  * This program is distributed in the hope that it will be useful,
@@ -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 { xfail gccbug } } */
20
20
 
21
21
  #include <stdio.h>
22
22
  #include <stdlib.h>
@@ -64,7 +64,11 @@ typedef struct {
64
64
  typedef struct { char c[3]; } T;
65
65
  typedef struct { char c[33],c1; } X;
66
66
 
67
- char c1='a', c2=127, c3=(char)128, c4=(char)255, c5=-1;
67
+ /* Don't use a number over 127, as some systems use signed chars and
68
+ the test case 25 doesn't account for this, resulting in undefined
69
+ behavior. See https://github.com/libffi/libffi/issues/598. */
70
+ char c1='a', c2=127, c3=(char)1;
71
+
68
72
  short s1=32767, s2=(short)32768, s3=3, s4=4, s5=5, s6=6, s7=7, s8=8, s9=9;
69
73
  int i1=1, i2=2, i3=3, i4=4, i5=5, i6=6, i7=7, i8=8, i9=9,
70
74
  i10=11, i11=12, i12=13, i13=14, i14=15, i15=16, i16=17;
@@ -0,0 +1,41 @@
1
+ /* Area: bpo-38748
2
+ Purpose: test for stdcall alignment problem
3
+ Source: github.com/python/cpython/pull/26204 */
4
+
5
+ /* { dg-do run } */
6
+
7
+ #include "ffitest.h"
8
+ #include "ffi_common.h"
9
+
10
+ static UINT32 ABI_ATTR align_arguments(UINT32 l1,
11
+ UINT64 l2)
12
+ {
13
+ return l1 + (UINT32) l2;
14
+ }
15
+
16
+ int main(void)
17
+ {
18
+ ffi_cif cif;
19
+ ffi_type *args[4] = {
20
+ &ffi_type_uint32,
21
+ &ffi_type_uint64
22
+ };
23
+ ffi_arg lr1, lr2;
24
+ UINT32 l1 = 1;
25
+ UINT64 l2 = 2;
26
+ void *values[2] = {&l1, &l2};
27
+
28
+ /* Initialize the cif */
29
+ CHECK(ffi_prep_cif(&cif, ABI_NUM, 2,
30
+ &ffi_type_uint32, args) == FFI_OK);
31
+
32
+ lr1 = align_arguments(l1, l2);
33
+
34
+ ffi_call(&cif, FFI_FN(align_arguments), &lr2, values);
35
+
36
+ if (lr1 == lr2)
37
+ printf("bpo-38748 arguments tests ok!\n");
38
+ else
39
+ CHECK(0);
40
+ exit(0);
41
+ }
@@ -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: