ffi 1.15.5 → 1.17.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (343) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/CHANGELOG.md +118 -0
  4. data/Gemfile +10 -3
  5. data/README.md +4 -3
  6. data/Rakefile +25 -10
  7. data/ext/ffi_c/AbstractMemory.c +99 -74
  8. data/ext/ffi_c/AbstractMemory.h +3 -2
  9. data/ext/ffi_c/ArrayType.c +51 -15
  10. data/ext/ffi_c/ArrayType.h +1 -0
  11. data/ext/ffi_c/Buffer.c +90 -33
  12. data/ext/ffi_c/Call.c +29 -12
  13. data/ext/ffi_c/Call.h +3 -2
  14. data/ext/ffi_c/DynamicLibrary.c +90 -27
  15. data/ext/ffi_c/Function.c +244 -98
  16. data/ext/ffi_c/Function.h +1 -0
  17. data/ext/ffi_c/FunctionInfo.c +81 -25
  18. data/ext/ffi_c/LastError.c +29 -11
  19. data/ext/ffi_c/MappedType.c +66 -23
  20. data/ext/ffi_c/MappedType.h +0 -2
  21. data/ext/ffi_c/MemoryPointer.c +36 -9
  22. data/ext/ffi_c/MethodHandle.c +3 -1
  23. data/ext/ffi_c/Pointer.c +82 -40
  24. data/ext/ffi_c/Pointer.h +1 -0
  25. data/ext/ffi_c/Struct.c +166 -84
  26. data/ext/ffi_c/Struct.h +7 -4
  27. data/ext/ffi_c/StructByValue.c +48 -16
  28. data/ext/ffi_c/StructLayout.c +130 -61
  29. data/ext/ffi_c/Type.c +120 -51
  30. data/ext/ffi_c/Type.h +3 -1
  31. data/ext/ffi_c/Types.c +8 -2
  32. data/ext/ffi_c/Types.h +0 -1
  33. data/ext/ffi_c/Variadic.c +71 -26
  34. data/ext/ffi_c/compat.h +22 -22
  35. data/ext/ffi_c/extconf.rb +19 -2
  36. data/ext/ffi_c/ffi.c +4 -0
  37. data/ext/ffi_c/libffi/.allow-ai-service +0 -0
  38. data/ext/ffi_c/libffi/.appveyor/site.exp +16 -0
  39. data/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +7 -0
  40. data/ext/ffi_c/libffi/.appveyor.yml +27 -9
  41. data/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
  42. data/ext/ffi_c/libffi/{.travis → .ci}/build-in-container.sh +4 -6
  43. data/ext/ffi_c/libffi/.ci/build.sh +124 -0
  44. data/ext/ffi_c/libffi/{.travis → .ci}/install.sh +14 -7
  45. data/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
  46. data/ext/ffi_c/libffi/{.travis → .ci}/site.exp +5 -3
  47. data/ext/ffi_c/libffi/.circleci/config.yml +156 -0
  48. data/ext/ffi_c/libffi/.github/workflows/build.yml +479 -0
  49. data/ext/ffi_c/libffi/.github/workflows/emscripten.yml +172 -0
  50. data/ext/ffi_c/libffi/.gitignore +10 -2
  51. data/ext/ffi_c/libffi/LICENSE +1 -1
  52. data/ext/ffi_c/libffi/Makefile.am +12 -5
  53. data/ext/ffi_c/libffi/Makefile.in +118 -51
  54. data/ext/ffi_c/libffi/README.md +150 -105
  55. data/ext/ffi_c/libffi/acinclude.m4 +10 -112
  56. data/ext/ffi_c/libffi/compile +348 -0
  57. data/ext/ffi_c/libffi/config.guess +623 -556
  58. data/ext/ffi_c/libffi/config.sub +75 -34
  59. data/ext/ffi_c/libffi/configure +4571 -3830
  60. data/ext/ffi_c/libffi/configure.ac +64 -28
  61. data/ext/ffi_c/libffi/configure.host +26 -7
  62. data/ext/ffi_c/libffi/doc/Makefile.in +9 -6
  63. data/ext/ffi_c/libffi/doc/libffi.texi +82 -33
  64. data/ext/ffi_c/libffi/doc/version.texi +4 -4
  65. data/ext/ffi_c/libffi/fficonfig.h.in +12 -47
  66. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +163 -52
  67. data/ext/ffi_c/libffi/include/Makefile.am +1 -1
  68. data/ext/ffi_c/libffi/include/Makefile.in +10 -9
  69. data/ext/ffi_c/libffi/include/ffi.h.in +55 -60
  70. data/ext/ffi_c/libffi/include/ffi_cfi.h +21 -0
  71. data/ext/ffi_c/libffi/include/ffi_common.h +33 -2
  72. data/ext/ffi_c/libffi/include/tramp.h +45 -0
  73. data/ext/ffi_c/libffi/install-sh +92 -69
  74. data/ext/ffi_c/libffi/libffi.map.in +5 -0
  75. data/ext/ffi_c/libffi/libtool-version +2 -2
  76. data/ext/ffi_c/libffi/ltmain.sh +518 -333
  77. data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +18 -14
  78. data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +108 -72
  79. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +76 -45
  80. data/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
  81. data/ext/ffi_c/libffi/man/Makefile.in +9 -6
  82. data/ext/ffi_c/libffi/missing +1 -1
  83. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +2 -2
  84. data/ext/ffi_c/libffi/msvcc.sh +1 -1
  85. data/ext/ffi_c/libffi/src/aarch64/ffi.c +172 -55
  86. data/ext/ffi_c/libffi/src/aarch64/internal.h +32 -0
  87. data/ext/ffi_c/libffi/src/aarch64/sysv.S +331 -87
  88. data/ext/ffi_c/libffi/src/arc/arcompact.S +169 -94
  89. data/ext/ffi_c/libffi/src/arc/ffi.c +325 -148
  90. data/ext/ffi_c/libffi/src/arc/ffitarget.h +14 -0
  91. data/ext/ffi_c/libffi/src/arm/ffi.c +62 -17
  92. data/ext/ffi_c/libffi/src/arm/ffitarget.h +3 -3
  93. data/ext/ffi_c/libffi/src/arm/internal.h +10 -0
  94. data/ext/ffi_c/libffi/src/arm/sysv.S +113 -42
  95. data/ext/ffi_c/libffi/src/closures.c +136 -50
  96. data/ext/ffi_c/libffi/src/debug.c +2 -2
  97. data/ext/ffi_c/libffi/src/dlmalloc.c +6 -1
  98. data/ext/ffi_c/libffi/src/ia64/ffi.c +12 -0
  99. data/ext/ffi_c/libffi/src/ia64/unix.S +20 -2
  100. data/ext/ffi_c/libffi/src/loongarch64/ffi.c +624 -0
  101. data/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +82 -0
  102. data/ext/ffi_c/libffi/src/loongarch64/sysv.S +327 -0
  103. data/ext/ffi_c/libffi/src/m32r/ffi.c +31 -14
  104. data/ext/ffi_c/libffi/src/mips/ffi.c +250 -67
  105. data/ext/ffi_c/libffi/src/mips/ffitarget.h +7 -0
  106. data/ext/ffi_c/libffi/src/mips/n32.S +193 -33
  107. data/ext/ffi_c/libffi/src/mips/o32.S +61 -4
  108. data/ext/ffi_c/libffi/src/moxie/ffi.c +47 -22
  109. data/ext/ffi_c/libffi/src/or1k/ffi.c +25 -12
  110. data/ext/ffi_c/libffi/src/pa/ffi.c +32 -33
  111. data/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
  112. data/ext/ffi_c/libffi/src/pa/ffitarget.h +22 -8
  113. data/ext/ffi_c/libffi/src/pa/hpux32.S +83 -36
  114. data/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
  115. data/ext/ffi_c/libffi/src/pa/linux.S +82 -35
  116. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +36 -24
  117. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1 -1
  118. data/ext/ffi_c/libffi/src/powerpc/linux64.S +2 -0
  119. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +2 -0
  120. data/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
  121. data/ext/ffi_c/libffi/src/prep_cif.c +22 -2
  122. data/ext/ffi_c/libffi/src/riscv/ffi.c +37 -4
  123. data/ext/ffi_c/libffi/src/sparc/ffi64.c +23 -1
  124. data/ext/ffi_c/libffi/src/tramp.c +716 -0
  125. data/ext/ffi_c/libffi/src/types.c +4 -6
  126. data/ext/ffi_c/libffi/src/wasm32/ffi.c +947 -0
  127. data/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
  128. data/ext/ffi_c/libffi/src/x86/ffi.c +99 -37
  129. data/ext/ffi_c/libffi/src/x86/ffi64.c +67 -12
  130. data/ext/ffi_c/libffi/src/x86/ffitarget.h +9 -5
  131. data/ext/ffi_c/libffi/src/x86/ffiw64.c +44 -1
  132. data/ext/ffi_c/libffi/src/x86/internal.h +14 -0
  133. data/ext/ffi_c/libffi/src/x86/internal64.h +14 -0
  134. data/ext/ffi_c/libffi/src/x86/sysv.S +172 -38
  135. data/ext/ffi_c/libffi/src/x86/sysv_intel.S +91 -88
  136. data/ext/ffi_c/libffi/src/x86/unix64.S +96 -6
  137. data/ext/ffi_c/libffi/src/x86/win64.S +20 -7
  138. data/ext/ffi_c/libffi/src/xtensa/ffi.c +16 -8
  139. data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +4 -0
  140. data/ext/ffi_c/libffi/src/xtensa/sysv.S +26 -16
  141. data/ext/ffi_c/libffi/testsuite/Makefile.am +79 -114
  142. data/ext/ffi_c/libffi/testsuite/Makefile.in +89 -121
  143. data/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +54 -0
  144. data/ext/ffi_c/libffi/testsuite/emscripten/build.sh +63 -0
  145. data/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +86 -0
  146. data/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +48 -0
  147. data/ext/ffi_c/libffi/testsuite/emscripten/test.html +7 -0
  148. data/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +51 -0
  149. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +43 -21
  150. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +2 -2
  151. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1 -0
  152. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +5 -1
  153. data/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
  154. data/ext/ffi_c/libffi/testsuite/libffi.call/callback.c +99 -0
  155. data/ext/ffi_c/libffi/testsuite/libffi.call/callback2.c +108 -0
  156. data/ext/ffi_c/libffi/testsuite/libffi.call/callback3.c +114 -0
  157. data/ext/ffi_c/libffi/testsuite/libffi.call/callback4.c +119 -0
  158. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +28 -3
  159. data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +3 -0
  160. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +5 -0
  161. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +4 -0
  162. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +4 -0
  163. data/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +60 -0
  164. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +8 -9
  165. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +2 -2
  166. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +2 -2
  167. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +2 -2
  168. data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +1 -1
  169. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +63 -0
  170. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +65 -0
  171. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +65 -0
  172. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +67 -0
  173. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +67 -0
  174. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +93 -0
  175. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +61 -0
  176. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +63 -0
  177. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +90 -0
  178. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -119
  179. data/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +220 -0
  180. data/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +154 -0
  181. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +13 -0
  182. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +11 -0
  183. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +15 -0
  184. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +3 -2
  185. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +2 -0
  186. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +2 -0
  187. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +21 -1
  188. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +2 -0
  189. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +2 -0
  190. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +2 -0
  191. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +7 -6
  192. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +6 -0
  193. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +18 -0
  194. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +22 -0
  195. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +24 -0
  196. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +29 -0
  197. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +4 -0
  198. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +19 -1
  199. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +21 -1
  200. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +35 -3
  201. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +13 -0
  202. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +19 -0
  203. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +13 -0
  204. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +13 -0
  205. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +18 -0
  206. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +22 -0
  207. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +13 -0
  208. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +29 -1
  209. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +19 -1
  210. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +24 -0
  211. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +28 -1
  212. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +24 -2
  213. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +39 -1
  214. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +25 -1
  215. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +14 -0
  216. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +14 -1
  217. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +14 -2
  218. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +19 -1
  219. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +19 -1
  220. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +20 -1
  221. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +40 -25
  222. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +40 -3
  223. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +19 -1
  224. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +18 -1
  225. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +18 -3
  226. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +18 -1
  227. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +18 -1
  228. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +19 -1
  229. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +19 -1
  230. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +3 -1
  231. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +9 -1
  232. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +4 -0
  233. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +11 -1
  234. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +22 -3
  235. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +5 -1
  236. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +6 -1
  237. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +9 -1
  238. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +9 -1
  239. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +6 -2
  240. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +9 -1
  241. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +5 -0
  242. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +10 -0
  243. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +3 -0
  244. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +2 -0
  245. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +3 -0
  246. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +11 -0
  247. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +3 -0
  248. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +4 -0
  249. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +4 -0
  250. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +4 -0
  251. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +2 -0
  252. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +3 -0
  253. data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +1 -138
  254. data/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +21 -21
  255. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +32 -9
  256. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +1 -1
  257. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +12 -0
  258. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +21 -5
  259. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
  260. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
  261. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +10 -1
  262. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +10 -1
  263. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +9 -0
  264. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +9 -0
  265. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +11 -0
  266. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +9 -0
  267. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +11 -0
  268. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +11 -0
  269. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
  270. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
  271. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
  272. data/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +1 -1
  273. data/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +1 -1
  274. data/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +6 -1
  275. data/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +2 -1
  276. data/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +1 -0
  277. data/ext/ffi_c/libffi.bsd.mk +2 -2
  278. data/ext/ffi_c/libffi.darwin.mk +2 -2
  279. data/ext/ffi_c/libffi.gnu.mk +2 -2
  280. data/ext/ffi_c/rbffi.h +1 -1
  281. data/ffi.gemspec +3 -3
  282. data/lib/ffi/autopointer.rb +8 -31
  283. data/lib/ffi/compat.rb +43 -0
  284. data/lib/ffi/data_converter.rb +2 -2
  285. data/lib/ffi/dynamic_library.rb +118 -0
  286. data/lib/ffi/enum.rb +18 -12
  287. data/lib/ffi/ffi.rb +3 -0
  288. data/lib/ffi/function.rb +71 -0
  289. data/lib/ffi/io.rb +2 -2
  290. data/lib/ffi/library.rb +72 -88
  291. data/lib/ffi/library_path.rb +109 -0
  292. data/lib/ffi/managedstruct.rb +1 -1
  293. data/lib/ffi/platform/aarch64-linux/types.conf +74 -3
  294. data/lib/ffi/platform/aarch64-windows/types.conf +52 -0
  295. data/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
  296. data/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
  297. data/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
  298. data/lib/ffi/platform/sw_64-linux/types.conf +141 -0
  299. data/lib/ffi/platform.rb +15 -13
  300. data/lib/ffi/pointer.rb +6 -6
  301. data/lib/ffi/struct.rb +6 -5
  302. data/lib/ffi/struct_layout.rb +3 -3
  303. data/lib/ffi/struct_layout_builder.rb +9 -9
  304. data/lib/ffi/types.rb +65 -37
  305. data/lib/ffi/variadic.rb +19 -8
  306. data/lib/ffi/version.rb +1 -1
  307. data/samples/hello_ractor.rb +11 -0
  308. data/samples/qsort_ractor.rb +28 -0
  309. data/sig/ffi/abstract_memory.rbs +165 -0
  310. data/sig/ffi/auto_pointer.rbs +27 -0
  311. data/sig/ffi/buffer.rbs +18 -0
  312. data/sig/ffi/data_converter.rbs +10 -0
  313. data/sig/ffi/dynamic_library.rbs +9 -0
  314. data/sig/ffi/enum.rbs +38 -0
  315. data/sig/ffi/function.rbs +39 -0
  316. data/sig/ffi/library.rbs +42 -0
  317. data/sig/ffi/native_type.rbs +86 -0
  318. data/sig/ffi/pointer.rbs +42 -0
  319. data/sig/ffi/struct.rbs +76 -0
  320. data/sig/ffi/struct_by_reference.rbs +11 -0
  321. data/sig/ffi/struct_by_value.rbs +7 -0
  322. data/sig/ffi/struct_layout.rbs +9 -0
  323. data/sig/ffi/struct_layout_builder.rbs +5 -0
  324. data/sig/ffi/type.rbs +39 -0
  325. data/sig/ffi.rbs +26 -0
  326. data.tar.gz.sig +0 -0
  327. metadata +122 -28
  328. metadata.gz.sig +1 -0
  329. data/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +0 -14
  330. data/ext/ffi_c/libffi/.travis/build.sh +0 -142
  331. data/ext/ffi_c/libffi/.travis.yml +0 -83
  332. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar_va.c +0 -44
  333. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort_va.c +0 -44
  334. /data/ext/ffi_c/libffi/{.travis → .ci}/ar-lib +0 -0
  335. /data/ext/ffi_c/libffi/{.travis → .ci}/bfin-sim.exp +0 -0
  336. /data/ext/ffi_c/libffi/{.travis → .ci}/compile +0 -0
  337. /data/ext/ffi_c/libffi/{.travis → .ci}/m32r-sim.exp +0 -0
  338. /data/ext/ffi_c/libffi/{.travis → .ci}/moxie-sim.exp +0 -0
  339. /data/ext/ffi_c/libffi/{.travis → .ci}/or1k-sim.exp +0 -0
  340. /data/ext/ffi_c/libffi/{.travis → .ci}/powerpc-eabisim.exp +0 -0
  341. /data/ext/ffi_c/libffi/{.travis → .ci}/wine-sim.exp +0 -0
  342. /data/ext/ffi_c/libffi/testsuite/libffi.call/{pyobjc-tc.c → pyobjc_tc.c} +0 -0
  343. /data/lib/ffi/platform/{sparc64-linux → sparcv9-linux}/types.conf +0 -0
@@ -25,7 +25,7 @@ typedef struct cls_struct_combined {
25
25
  cls_struct_16byte2 e;
26
26
  } cls_struct_combined;
27
27
 
28
- cls_struct_combined cls_struct_combined_fn(struct cls_struct_16byte1 b0,
28
+ static cls_struct_combined cls_struct_combined_fn(struct cls_struct_16byte1 b0,
29
29
  struct cls_struct_16byte2 b1,
30
30
  struct cls_struct_combined b2)
31
31
  {
@@ -46,6 +46,29 @@ cls_struct_combined cls_struct_combined_fn(struct cls_struct_16byte1 b0,
46
46
  result.d.a, result.d.b, result.d.c,
47
47
  result.e.ii, result.e.dd, result.e.ff);
48
48
 
49
+ CHECK_DOUBLE_EQ(b0.a, 9);
50
+ CHECK_FLOAT_EQ(b0.b, 2);
51
+ CHECK(b0.c == 6);
52
+
53
+ CHECK(b1.ii == 1);
54
+ CHECK_DOUBLE_EQ(b1.dd, 2);
55
+ CHECK_FLOAT_EQ(b1.ff, 3);
56
+
57
+ CHECK_DOUBLE_EQ(b2.d.a, 4);
58
+ CHECK_FLOAT_EQ(b2.d.b, 5);
59
+ CHECK(b2.d.c == 6);
60
+
61
+ CHECK(b2.e.ii == 3);
62
+ CHECK_DOUBLE_EQ(b2.e.dd, 1);
63
+ CHECK_FLOAT_EQ(b2.e.ff, 8);
64
+
65
+ CHECK_DOUBLE_EQ(result.d.a, 15);
66
+ CHECK_FLOAT_EQ(result.d.b, 10);
67
+ CHECK(result.d.c == 13);
68
+ CHECK(result.e.ii == 10);
69
+ CHECK_DOUBLE_EQ(result.e.dd, 12);
70
+ CHECK_FLOAT_EQ(result.e.ff, 13);
71
+
49
72
  return result;
50
73
  }
51
74
 
@@ -128,12 +151,12 @@ int main (void)
128
151
 
129
152
  ffi_call(&cif, FFI_FN(cls_struct_combined_fn), &res_dbl, args_dbl);
130
153
  /* { dg-output "9 2 6 1 2 3 4 5 6 3 1 8: 15 10 13 10 12 13" } */
131
- CHECK( res_dbl.d.a == (e_dbl.a + f_dbl.dd + g_dbl.d.a));
132
- CHECK( res_dbl.d.b == (e_dbl.b + f_dbl.ff + g_dbl.d.b));
154
+ CHECK_DOUBLE_EQ( res_dbl.d.a, (e_dbl.a + f_dbl.dd + g_dbl.d.a));
155
+ CHECK_FLOAT_EQ( res_dbl.d.b, (e_dbl.b + f_dbl.ff + g_dbl.d.b));
133
156
  CHECK( res_dbl.d.c == (e_dbl.c + f_dbl.ii + g_dbl.d.c));
134
157
  CHECK( res_dbl.e.ii == (e_dbl.c + f_dbl.ii + g_dbl.e.ii));
135
- CHECK( res_dbl.e.dd == (e_dbl.a + f_dbl.dd + g_dbl.e.dd));
136
- CHECK( res_dbl.e.ff == (e_dbl.b + f_dbl.ff + g_dbl.e.ff));
158
+ CHECK_DOUBLE_EQ( res_dbl.e.dd, (e_dbl.a + f_dbl.dd + g_dbl.e.dd));
159
+ CHECK_FLOAT_EQ( res_dbl.e.ff, (e_dbl.b + f_dbl.ff + g_dbl.e.ff));
137
160
 
138
161
  CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_combined_gn, NULL, code) == FFI_OK);
139
162
 
@@ -142,11 +165,11 @@ int main (void)
142
165
  cls_struct_combined))
143
166
  (code))(e_dbl, f_dbl, g_dbl);
144
167
  /* { dg-output "\n9 2 6 1 2 3 4 5 6 3 1 8: 15 10 13 10 12 13" } */
145
- CHECK( res_dbl.d.a == (e_dbl.a + f_dbl.dd + g_dbl.d.a));
146
- CHECK( res_dbl.d.b == (e_dbl.b + f_dbl.ff + g_dbl.d.b));
168
+ CHECK_DOUBLE_EQ( res_dbl.d.a, (e_dbl.a + f_dbl.dd + g_dbl.d.a));
169
+ CHECK_FLOAT_EQ( res_dbl.d.b, (e_dbl.b + f_dbl.ff + g_dbl.d.b));
147
170
  CHECK( res_dbl.d.c == (e_dbl.c + f_dbl.ii + g_dbl.d.c));
148
171
  CHECK( res_dbl.e.ii == (e_dbl.c + f_dbl.ii + g_dbl.e.ii));
149
- CHECK( res_dbl.e.dd == (e_dbl.a + f_dbl.dd + g_dbl.e.dd));
150
- CHECK( res_dbl.e.ff == (e_dbl.b + f_dbl.ff + g_dbl.e.ff));
172
+ CHECK_DOUBLE_EQ( res_dbl.e.dd, (e_dbl.a + f_dbl.dd + g_dbl.e.dd));
173
+ CHECK_FLOAT_EQ( res_dbl.e.ff, (e_dbl.b + f_dbl.ff + g_dbl.e.ff));
151
174
  exit(0);
152
175
  }
@@ -25,7 +25,7 @@ typedef struct cls_struct_combined {
25
25
  cls_struct_16byte2 e;
26
26
  } cls_struct_combined;
27
27
 
28
- cls_struct_combined cls_struct_combined_fn(struct cls_struct_16byte1 b0,
28
+ static cls_struct_combined cls_struct_combined_fn(struct cls_struct_16byte1 b0,
29
29
  struct cls_struct_16byte2 b1,
30
30
  struct cls_struct_combined b2,
31
31
  struct cls_struct_16byte1 b3)
@@ -38,6 +38,18 @@ static B B_fn(struct A b2, struct B b3, struct C b4)
38
38
  (int)b3.x.a, b3.x.b, b3.y, b3.z, (int)b4.d, b4.e,
39
39
  (int)result.x.a, result.x.b, result.y);
40
40
 
41
+ CHECK((int)b2.a == 1);
42
+ CHECK(b2.b == 7);
43
+ CHECK((int)b3.x.a == 12);
44
+ CHECK(b3.x.b == 127);
45
+ CHECK(b3.y == 99);
46
+ CHECK(b3.z == 255);
47
+ CHECK((int)b4.d == 2);
48
+ CHECK(b4.e == 9);
49
+ CHECK((int)result.x.a == 270);
50
+ CHECK(result.x.b == 242);
51
+ CHECK(result.y == 143);
52
+
41
53
  return result;
42
54
  }
43
55
 
@@ -35,6 +35,13 @@ static C C_fn (int x, int y, int z, C source, int i, int j, int k)
35
35
 
36
36
  printf ("%d, %d, %d, %d, %d, %d\n", x, y, z, i, j, k);
37
37
 
38
+ CHECK(x == 1);
39
+ CHECK(y == 1);
40
+ CHECK(z == 1);
41
+ CHECK(i == 1);
42
+ CHECK(j == 1);
43
+ CHECK(k == 1);
44
+
38
45
  printf ("%.1f, %.1f, %.1f, %.1f, "
39
46
  "%.1f, %.1f, %.1f, %.1f\n",
40
47
  source.a.a_x, source.a.a_y,
@@ -42,6 +49,15 @@ static C C_fn (int x, int y, int z, C source, int i, int j, int k)
42
49
  result.a.a_x, result.a.a_y,
43
50
  result.b.b_x, result.b.b_y);
44
51
 
52
+ CHECK_FLOAT_EQ(source.a.a_x, 1.0);
53
+ CHECK_FLOAT_EQ(source.a.a_y, 2.0);
54
+ CHECK_FLOAT_EQ(source.b.b_x, 4.0);
55
+ CHECK_FLOAT_EQ(source.b.b_y, 8.0);
56
+ CHECK_FLOAT_EQ(result.a.a_x, 1.0);
57
+ CHECK_FLOAT_EQ(result.a.a_y, 2.0);
58
+ CHECK_FLOAT_EQ(result.b.b_x, 4.0);
59
+ CHECK_FLOAT_EQ(result.b.b_y, 8.0);
60
+
45
61
  return result;
46
62
  }
47
63
 
@@ -113,9 +129,9 @@ int main (void)
113
129
  ffi_call (&cif, FFI_FN (C_fn), &result, args);
114
130
  /* { dg-output "1, 1, 1, 1, 1, 1\n" } */
115
131
  /* { dg-output "1.0, 2.0, 4.0, 8.0, 1.0, 2.0, 4.0, 8.0" } */
116
- CHECK (result.a.a_x == source.a.a_x);
117
- CHECK (result.a.a_y == source.a.a_y);
118
- CHECK (result.b.b_x == source.b.b_x);
119
- CHECK (result.b.b_y == source.b.b_y);
120
- exit (0);
132
+ CHECK_FLOAT_EQ(result.a.a_x, source.a.a_x);
133
+ CHECK_FLOAT_EQ(result.a.a_y, source.a.a_y);
134
+ CHECK_FLOAT_EQ(result.b.b_x, source.b.b_x);
135
+ CHECK_FLOAT_EQ(result.b.b_y, source.b.b_y);
136
+ exit(0);
121
137
  }
@@ -0,0 +1,86 @@
1
+ /* Area: ffi_call
2
+ Purpose: Check nested float struct.
3
+ Limitations: none.
4
+ PR: none.
5
+ Originator: Cheng Jin <jincheng@ca.ibm.com> */
6
+
7
+ /* { dg-do run } */
8
+ #include "ffitest.h"
9
+
10
+ typedef struct stru_FF stru_FF;
11
+ typedef struct stru_Nested_F stru_Nested_F;
12
+
13
+ struct stru_FF {
14
+ float elem1;
15
+ float elem2;
16
+ };
17
+
18
+ struct stru_Nested_F {
19
+ float elem1;
20
+ stru_FF elem2;
21
+ };
22
+
23
+ static float testNestedFloatStruct(float arg1, stru_Nested_F arg2)
24
+ {
25
+ float floatSum = arg1 + arg2.elem1 + arg2.elem2.elem1 + arg2.elem2.elem2;
26
+ return floatSum;
27
+ }
28
+
29
+ int main (void)
30
+ {
31
+ float ts12_result = 0;
32
+ int structElemNum = 2;
33
+ int nestedStructElemNum = 2;
34
+ int argNum = 2;
35
+
36
+ ffi_cif cif;
37
+ ffi_type **struct_float1 = (ffi_type **)malloc(sizeof(ffi_type *) * (structElemNum + 1));
38
+ ffi_type **struct_float2 = (ffi_type **)malloc(sizeof(ffi_type *) * (nestedStructElemNum + 1));
39
+ ffi_type **args = (ffi_type **)malloc(sizeof(ffi_type *) * (argNum + 1));
40
+ void **values = (void **)malloc(sizeof(void *) * (argNum + 1));
41
+ ffi_type struct_float_type1, struct_float_type2;
42
+ ffi_type *retType = &ffi_type_float;
43
+ float arg1;
44
+ float *arg2 = (float *)malloc(sizeof(stru_Nested_F));
45
+
46
+ struct_float2[0] = &ffi_type_float;
47
+ struct_float2[1] = &ffi_type_float;
48
+ struct_float2[2] = NULL;
49
+
50
+ struct_float_type2.size = 0;
51
+ struct_float_type2.alignment = 0;
52
+ struct_float_type2.type = FFI_TYPE_STRUCT;
53
+ struct_float_type2.elements = struct_float2;
54
+
55
+ struct_float1[0] = &ffi_type_float;
56
+ struct_float1[1] = &struct_float_type2;
57
+ struct_float1[2] = NULL;
58
+
59
+ struct_float_type1.size = 0;
60
+ struct_float_type1.alignment = 0;
61
+ struct_float_type1.type = FFI_TYPE_STRUCT;
62
+ struct_float_type1.elements = struct_float1;
63
+
64
+ args[0] = &ffi_type_float;
65
+ args[1] = &struct_float_type1;
66
+ args[2] = NULL;
67
+
68
+ arg1 = 37.88;
69
+ arg2[0] = 31.22;
70
+ arg2[1] = 33.44;
71
+ arg2[2] = 35.66;
72
+ values[0] = &arg1;
73
+ values[1] = arg2;
74
+ values[2] = NULL;
75
+
76
+ CHECK( ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, retType, args) == FFI_OK);
77
+ ffi_call(&cif, FFI_FN(testNestedFloatStruct), &ts12_result, values);
78
+ CHECK_FLOAT_EQ(ts12_result, 138.2f);
79
+
80
+ free(struct_float1);
81
+ free(struct_float2);
82
+ free(args);
83
+ free(values);
84
+
85
+ exit(0);
86
+ }
@@ -0,0 +1,115 @@
1
+ /* Area: ffi_call, closure_call
2
+ Purpose: Check structure passing.
3
+ Limitations: none.
4
+ PR: none.
5
+ Originator: <jincheng@ca.ibm.com> and <jakub@redhat.com> 20210609 */
6
+
7
+ /* { dg-do run } */
8
+ #include "ffitest.h"
9
+
10
+ typedef struct A {
11
+ float a, b;
12
+ } A;
13
+
14
+ typedef struct B {
15
+ float x;
16
+ struct A y;
17
+ } B;
18
+
19
+ B B_fn(float b0, struct B b1)
20
+ {
21
+ struct B result;
22
+
23
+ result.x = b0 + b1.x;
24
+ result.y.a = b0 + b1.y.a;
25
+ result.y.b = b0 + b1.y.b;
26
+
27
+ printf("%g %g %g %g: %g %g %g\n", b0, b1.x, b1.y.a, b1.y.b,
28
+ result.x, result.y.a, result.y.b);
29
+
30
+ CHECK_FLOAT_EQ(b0, 12.125);
31
+ CHECK_FLOAT_EQ(b1.x, 24.75);
32
+ CHECK_FLOAT_EQ(b1.y.a, 31.625);
33
+ CHECK_FLOAT_EQ(b1.y.b, 32.25);
34
+ CHECK_FLOAT_EQ(result.x, 36.875);
35
+ CHECK_FLOAT_EQ(result.y.a, 43.75);
36
+ CHECK_FLOAT_EQ(result.y.b, 44.375);
37
+
38
+ return result;
39
+ }
40
+
41
+ static void
42
+ B_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
43
+ void* userdata __UNUSED__)
44
+ {
45
+ float b0;
46
+ struct B b1;
47
+
48
+ b0 = *(float*)(args[0]);
49
+ b1 = *(struct B*)(args[1]);
50
+
51
+ *(B*)resp = B_fn(b0, b1);
52
+ }
53
+
54
+ int main (void)
55
+ {
56
+ ffi_cif cif;
57
+ void *code;
58
+ ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
59
+ void* args_dbl[3];
60
+ ffi_type* cls_struct_fields[3];
61
+ ffi_type* cls_struct_fields1[3];
62
+ ffi_type cls_struct_type, cls_struct_type1;
63
+ ffi_type* dbl_arg_types[3];
64
+
65
+ float e_dbl = 12.125f;
66
+ struct B f_dbl = { 24.75f, { 31.625f, 32.25f } };
67
+
68
+ struct B res_dbl;
69
+
70
+ cls_struct_type.size = 0;
71
+ cls_struct_type.alignment = 0;
72
+ cls_struct_type.type = FFI_TYPE_STRUCT;
73
+ cls_struct_type.elements = cls_struct_fields;
74
+
75
+ cls_struct_type1.size = 0;
76
+ cls_struct_type1.alignment = 0;
77
+ cls_struct_type1.type = FFI_TYPE_STRUCT;
78
+ cls_struct_type1.elements = cls_struct_fields1;
79
+
80
+ cls_struct_fields[0] = &ffi_type_float;
81
+ cls_struct_fields[1] = &ffi_type_float;
82
+ cls_struct_fields[2] = NULL;
83
+
84
+ cls_struct_fields1[0] = &ffi_type_float;
85
+ cls_struct_fields1[1] = &cls_struct_type;
86
+ cls_struct_fields1[2] = NULL;
87
+
88
+
89
+ dbl_arg_types[0] = &ffi_type_float;
90
+ dbl_arg_types[1] = &cls_struct_type1;
91
+ dbl_arg_types[2] = NULL;
92
+
93
+ CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type1,
94
+ dbl_arg_types) == FFI_OK);
95
+
96
+ args_dbl[0] = &e_dbl;
97
+ args_dbl[1] = &f_dbl;
98
+ args_dbl[2] = NULL;
99
+
100
+ ffi_call(&cif, FFI_FN(B_fn), &res_dbl, args_dbl);
101
+ /* { dg-output "12.125 24.75 31.625 32.25: 36.875 43.75 44.375" } */
102
+ CHECK_FLOAT_EQ( res_dbl.x, (e_dbl + f_dbl.x));
103
+ CHECK_FLOAT_EQ( res_dbl.y.a, (e_dbl + f_dbl.y.a));
104
+ CHECK_FLOAT_EQ( res_dbl.y.b, (e_dbl + f_dbl.y.b));
105
+
106
+ CHECK(ffi_prep_closure_loc(pcl, &cif, B_gn, NULL, code) == FFI_OK);
107
+
108
+ res_dbl = ((B(*)(float, B))(code))(e_dbl, f_dbl);
109
+ /* { dg-output "\n12.125 24.75 31.625 32.25: 36.875 43.75 44.375" } */
110
+ CHECK_FLOAT_EQ( res_dbl.x, (e_dbl + f_dbl.x));
111
+ CHECK_FLOAT_EQ( res_dbl.y.a, (e_dbl + f_dbl.y.a));
112
+ CHECK_FLOAT_EQ( res_dbl.y.b, (e_dbl + f_dbl.y.b));
113
+
114
+ exit(0);
115
+ }
@@ -19,7 +19,7 @@ typedef struct B {
19
19
  unsigned char y;
20
20
  } B;
21
21
 
22
- B B_fn(struct A b0, struct B b1)
22
+ static B B_fn(struct A b0, struct B b1)
23
23
  {
24
24
  struct B result;
25
25
 
@@ -30,6 +30,15 @@ B B_fn(struct A b0, struct B b1)
30
30
  printf("%lu %d %lu %d %d: %lu %d %d\n", b0.a, b0.b, b1.x.a, b1.x.b, b1.y,
31
31
  result.x.a, result.x.b, result.y);
32
32
 
33
+ CHECK(b0.a == 1);
34
+ CHECK(b0.b == 7);
35
+ CHECK(b1.x.a == 12);
36
+ CHECK(b1.x.b == 127);
37
+ CHECK(b1.y == 99);
38
+ CHECK(result.x.a == 13);
39
+ CHECK(result.x.b == 233);
40
+ CHECK(result.y == 134);
41
+
33
42
  return result;
34
43
  }
35
44
 
@@ -19,7 +19,7 @@ typedef struct B {
19
19
  unsigned char y;
20
20
  } B;
21
21
 
22
- B B_fn(struct A b0, struct B b1)
22
+ static B B_fn(struct A b0, struct B b1)
23
23
  {
24
24
  struct B result;
25
25
 
@@ -31,6 +31,15 @@ B B_fn(struct A b0, struct B b1)
31
31
  (int)b1.x.a, b1.x.b, b1.y,
32
32
  (int)result.x.a, result.x.b, result.y);
33
33
 
34
+ CHECK((int)b0.a == 1);
35
+ CHECK(b0.b == 7);
36
+ CHECK((int)b1.x.a == 12);
37
+ CHECK(b1.x.b == 127);
38
+ CHECK(b1.y == 99);
39
+ CHECK((int)result.x.a == 13);
40
+ CHECK(result.x.b == 233);
41
+ CHECK(result.y == 134);
42
+
34
43
  return result;
35
44
  }
36
45
 
@@ -31,6 +31,15 @@ static B B_fn(struct A b2, struct B b3)
31
31
  (int)b3.x.a, b3.x.b, b3.y,
32
32
  (int)result.x.a, result.x.b, result.y);
33
33
 
34
+ CHECK((int)b2.a == 1);
35
+ CHECK(b2.b == 7);
36
+ CHECK((int)b3.x.a == 12);
37
+ CHECK(b3.x.b == 127);
38
+ CHECK(b3.y == 99);
39
+ CHECK((int)result.x.a == 13);
40
+ CHECK(result.x.b == 233);
41
+ CHECK(result.y == 134);
42
+
34
43
  return result;
35
44
  }
36
45
 
@@ -31,6 +31,15 @@ static B B_fn(struct A b2, struct B b3)
31
31
  (int)b3.x.a, b3.x.b, b3.y,
32
32
  (int)result.x.a, result.x.b, result.y);
33
33
 
34
+ CHECK((int)b2.a == 1);
35
+ CHECK(b2.b == 7);
36
+ CHECK((int)b3.x.a == 12);
37
+ CHECK(b3.x.b == 127);
38
+ CHECK(b3.y == 99);
39
+ CHECK((int)result.x.a == 13);
40
+ CHECK(result.x.b == 233);
41
+ CHECK(result.y == 134);
42
+
34
43
  return result;
35
44
  }
36
45
 
@@ -36,6 +36,17 @@ static B B_fn(struct A b2, struct B b3, struct C b4)
36
36
  (int)b3.x.a, b3.x.b, b3.y, (int)b4.d, b4.e,
37
37
  (int)result.x.a, result.x.b, result.y);
38
38
 
39
+ CHECK((int)b2.a == 1);
40
+ CHECK(b2.b == 7);
41
+ CHECK((int)b3.x.a == 12);
42
+ CHECK(b3.x.b == 127);
43
+ CHECK(b3.y == 99);
44
+ CHECK((int)b4.d == 2);
45
+ CHECK(b4.e == 9);
46
+ CHECK((int)result.x.a == 15);
47
+ CHECK(result.x.b == 242);
48
+ CHECK(result.y == 143);
49
+
39
50
  return result;
40
51
  }
41
52
 
@@ -31,6 +31,15 @@ static B B_fn(struct A b2, struct B b3)
31
31
  (int)b3.x.a, b3.x.b, b3.y,
32
32
  (int)result.x.a, result.x.b, result.y);
33
33
 
34
+ CHECK((int)b2.a == 1);
35
+ CHECK(b2.b == 7);
36
+ CHECK((int)b3.x.a == 12);
37
+ CHECK(b3.x.b == 127);
38
+ CHECK(b3.y == 99);
39
+ CHECK((int)result.x.a == 13);
40
+ CHECK(result.x.b == 233);
41
+ CHECK(result.y == 134);
42
+
34
43
  return result;
35
44
  }
36
45
 
@@ -36,6 +36,17 @@ static B B_fn(struct A b2, struct B b3, struct C b4)
36
36
  (int)b3.x.a, b3.x.b, b3.y, (int)b4.d, b4.e,
37
37
  (int)result.x.a, result.x.b, result.y);
38
38
 
39
+ CHECK((int)b2.a == 1);
40
+ CHECK(b2.b == 7);
41
+ CHECK((int)b3.x.a == 12);
42
+ CHECK(b3.x.b == 127);
43
+ CHECK(b3.y == 99);
44
+ CHECK((int)b4.d == 2);
45
+ CHECK(b4.e == 9);
46
+ CHECK((int)result.x.a == 15);
47
+ CHECK(result.x.b == 242);
48
+ CHECK(result.y == 143);
49
+
39
50
  return result;
40
51
  }
41
52
 
@@ -36,6 +36,17 @@ static B B_fn(struct A b2, struct B b3, struct C b4)
36
36
  b3.x.a, (int)b3.x.b, b3.y, (int)b4.d, b4.e,
37
37
  result.x.a, (int)result.x.b, result.y);
38
38
 
39
+ CHECK((int)b2.a == 1);
40
+ CHECK(b2.b == 7);
41
+ CHECK((int)b3.x.a == 12);
42
+ CHECK(b3.x.b == 127);
43
+ CHECK(b3.y == 99);
44
+ CHECK((int)b4.d == 2);
45
+ CHECK(b4.e == 9);
46
+ CHECK((int)result.x.a == 15);
47
+ CHECK(result.x.b == 242);
48
+ CHECK(result.y == 143);
49
+
39
50
  return result;
40
51
  }
41
52
 
@@ -0,0 +1,86 @@
1
+ /* Area: ffi_call, closure_call
2
+ Purpose: Single argument structs have a different ABI in emscripten.
3
+ Limitations: none.
4
+ PR: none.
5
+ Originator: <hood@mit.edu> */
6
+
7
+ /* { dg-do run } */
8
+ #include "ffitest.h"
9
+
10
+ typedef struct A {
11
+ int a;
12
+ } A;
13
+
14
+ static struct A A_fn(int b0, struct A b1)
15
+ {
16
+ b1.a += b0;
17
+ return b1;
18
+ }
19
+
20
+ static void
21
+ A_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
22
+ void* userdata __UNUSED__)
23
+ {
24
+ int b0;
25
+ struct A b1;
26
+
27
+ b0 = *(int*)(args[0]);
28
+ b1 = *(struct A*)(args[1]);
29
+
30
+ *(A*)resp = A_fn(b0, b1);
31
+ }
32
+
33
+ int main (void)
34
+ {
35
+ printf("123\n");
36
+ ffi_cif cif;
37
+ void *code;
38
+ ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
39
+ void* args_dbl[3];
40
+ ffi_type* cls_struct_fields[2];
41
+ ffi_type cls_struct_type;
42
+ ffi_type* dbl_arg_types[3];
43
+
44
+ int e_dbl = 12125;
45
+ struct A f_dbl = { 31625 };
46
+
47
+ struct A res_dbl;
48
+
49
+ cls_struct_type.size = 0;
50
+ cls_struct_type.alignment = 0;
51
+ cls_struct_type.type = FFI_TYPE_STRUCT;
52
+ cls_struct_type.elements = cls_struct_fields;
53
+
54
+ cls_struct_fields[0] = &ffi_type_sint;
55
+ cls_struct_fields[1] = NULL;
56
+
57
+ dbl_arg_types[0] = &ffi_type_sint;
58
+ dbl_arg_types[1] = &cls_struct_type;
59
+ dbl_arg_types[2] = NULL;
60
+
61
+ res_dbl = A_fn(e_dbl, f_dbl);
62
+ printf("0 res: %d\n", res_dbl.a);
63
+ /* { dg-output "0 res: 43750" } */
64
+
65
+ CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type,
66
+ dbl_arg_types) == FFI_OK);
67
+
68
+ args_dbl[0] = &e_dbl;
69
+ args_dbl[1] = &f_dbl;
70
+ args_dbl[2] = NULL;
71
+
72
+
73
+ ffi_call(&cif, FFI_FN(A_fn), &res_dbl, args_dbl);
74
+ printf("1 res: %d\n", res_dbl.a);
75
+ /* { dg-output "\n1 res: 43750" } */
76
+ CHECK( res_dbl.a == (e_dbl + f_dbl.a));
77
+
78
+ CHECK(ffi_prep_closure_loc(pcl, &cif, A_gn, NULL, code) == FFI_OK);
79
+
80
+ res_dbl = ((A(*)(int, A))(code))(e_dbl, f_dbl);
81
+ printf("2 res: %d\n", res_dbl.a);
82
+ /* { dg-output "\n2 res: 43750" } */
83
+ CHECK( res_dbl.a == (e_dbl + f_dbl.a));
84
+
85
+ exit(0);
86
+ }
@@ -0,0 +1,102 @@
1
+ /* Area: ffi_call, closure_call
2
+ Purpose: Single argument structs have a different ABI in emscripten.
3
+ Limitations: none.
4
+ PR: none.
5
+ Originator: <hood@mit.edu> */
6
+
7
+ /* { dg-do run } */
8
+ #include "ffitest.h"
9
+
10
+ typedef struct A {
11
+ int a, b;
12
+ } A;
13
+
14
+ typedef struct B {
15
+ struct A y;
16
+ } B;
17
+
18
+ static struct B B_fn(int b0, struct B b1)
19
+ {
20
+ b1.y.a += b0;
21
+ b1.y.b -= b0;
22
+ return b1;
23
+ }
24
+
25
+ static void
26
+ B_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
27
+ void* userdata __UNUSED__)
28
+ {
29
+ int b0;
30
+ struct B b1;
31
+
32
+ b0 = *(int*)(args[0]);
33
+ b1 = *(struct B*)(args[1]);
34
+
35
+ *(B*)resp = B_fn(b0, b1);
36
+ }
37
+
38
+ int main (void)
39
+ {
40
+ ffi_cif cif;
41
+ void *code;
42
+ ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
43
+ void* args_dbl[3];
44
+ ffi_type* cls_struct_fields[3];
45
+ ffi_type* cls_struct_fields1[2];
46
+ ffi_type cls_struct_type, cls_struct_type1;
47
+ ffi_type* dbl_arg_types[3];
48
+
49
+ int e_dbl = 12125;
50
+ struct B f_dbl = { { 31625, 16723 } };
51
+
52
+ struct B res_dbl;
53
+
54
+ cls_struct_type.size = 0;
55
+ cls_struct_type.alignment = 0;
56
+ cls_struct_type.type = FFI_TYPE_STRUCT;
57
+ cls_struct_type.elements = cls_struct_fields;
58
+
59
+ cls_struct_type1.size = 0;
60
+ cls_struct_type1.alignment = 0;
61
+ cls_struct_type1.type = FFI_TYPE_STRUCT;
62
+ cls_struct_type1.elements = cls_struct_fields1;
63
+
64
+ cls_struct_fields[0] = &ffi_type_sint;
65
+ cls_struct_fields[1] = &ffi_type_sint;
66
+ cls_struct_fields[2] = NULL;
67
+
68
+ cls_struct_fields1[0] = &cls_struct_type;
69
+ cls_struct_fields1[1] = NULL;
70
+
71
+
72
+ dbl_arg_types[0] = &ffi_type_sint;
73
+ dbl_arg_types[1] = &cls_struct_type1;
74
+ dbl_arg_types[2] = NULL;
75
+
76
+ res_dbl = B_fn(e_dbl, f_dbl);
77
+ printf("0 res: %d %d\n", res_dbl.y.a, res_dbl.y.b);
78
+ /* { dg-output "0 res: 43750 4598" } */
79
+
80
+ CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type1,
81
+ dbl_arg_types) == FFI_OK);
82
+
83
+ args_dbl[0] = &e_dbl;
84
+ args_dbl[1] = &f_dbl;
85
+ args_dbl[2] = NULL;
86
+
87
+ ffi_call(&cif, FFI_FN(B_fn), &res_dbl, args_dbl);
88
+ printf("1 res: %d %d\n", res_dbl.y.a, res_dbl.y.b);
89
+ /* { dg-output "\n1 res: 43750 4598" } */
90
+ CHECK( res_dbl.y.a == (f_dbl.y.a + e_dbl));
91
+ CHECK( res_dbl.y.b == (f_dbl.y.b - e_dbl));
92
+
93
+ CHECK(ffi_prep_closure_loc(pcl, &cif, B_gn, NULL, code) == FFI_OK);
94
+
95
+ res_dbl = ((B(*)(int, B))(code))(e_dbl, f_dbl);
96
+ printf("2 res: %d %d\n", res_dbl.y.a, res_dbl.y.b);
97
+ /* { dg-output "\n2 res: 43750 4598" } */
98
+ CHECK( res_dbl.y.a == (f_dbl.y.a + e_dbl));
99
+ CHECK( res_dbl.y.b == (f_dbl.y.b - e_dbl));
100
+
101
+ exit(0);
102
+ }