ffi 1.15.5 → 1.16.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (311) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/CHANGELOG.md +76 -0
  4. data/Gemfile +1 -1
  5. data/README.md +3 -2
  6. data/Rakefile +10 -7
  7. data/ext/ffi_c/AbstractMemory.c +60 -36
  8. data/ext/ffi_c/AbstractMemory.h +3 -2
  9. data/ext/ffi_c/ArrayType.c +49 -13
  10. data/ext/ffi_c/ArrayType.h +1 -0
  11. data/ext/ffi_c/Buffer.c +86 -29
  12. data/ext/ffi_c/Call.c +17 -6
  13. data/ext/ffi_c/DynamicLibrary.c +89 -26
  14. data/ext/ffi_c/Function.c +244 -98
  15. data/ext/ffi_c/Function.h +1 -0
  16. data/ext/ffi_c/FunctionInfo.c +80 -24
  17. data/ext/ffi_c/LastError.c +25 -7
  18. data/ext/ffi_c/MappedType.c +66 -23
  19. data/ext/ffi_c/MappedType.h +0 -2
  20. data/ext/ffi_c/MemoryPointer.c +34 -7
  21. data/ext/ffi_c/MethodHandle.c +3 -1
  22. data/ext/ffi_c/Pointer.c +68 -29
  23. data/ext/ffi_c/Pointer.h +1 -0
  24. data/ext/ffi_c/Struct.c +155 -80
  25. data/ext/ffi_c/Struct.h +7 -4
  26. data/ext/ffi_c/StructByValue.c +48 -16
  27. data/ext/ffi_c/StructLayout.c +117 -48
  28. data/ext/ffi_c/Type.c +104 -36
  29. data/ext/ffi_c/Type.h +3 -1
  30. data/ext/ffi_c/Types.c +1 -1
  31. data/ext/ffi_c/Variadic.c +65 -23
  32. data/ext/ffi_c/compat.h +22 -22
  33. data/ext/ffi_c/extconf.rb +19 -2
  34. data/ext/ffi_c/ffi.c +4 -0
  35. data/ext/ffi_c/libffi/.appveyor/site.exp +16 -0
  36. data/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +7 -0
  37. data/ext/ffi_c/libffi/.appveyor.yml +27 -9
  38. data/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
  39. data/ext/ffi_c/libffi/{.travis → .ci}/build-in-container.sh +4 -6
  40. data/ext/ffi_c/libffi/.ci/build.sh +124 -0
  41. data/ext/ffi_c/libffi/{.travis → .ci}/install.sh +14 -7
  42. data/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
  43. data/ext/ffi_c/libffi/{.travis → .ci}/site.exp +5 -3
  44. data/ext/ffi_c/libffi/.circleci/config.yml +156 -0
  45. data/ext/ffi_c/libffi/.github/workflows/build.yml +460 -0
  46. data/ext/ffi_c/libffi/.github/workflows/emscripten.yml +171 -0
  47. data/ext/ffi_c/libffi/.gitignore +10 -2
  48. data/ext/ffi_c/libffi/LICENSE +1 -1
  49. data/ext/ffi_c/libffi/Makefile.am +12 -5
  50. data/ext/ffi_c/libffi/Makefile.in +118 -51
  51. data/ext/ffi_c/libffi/README.md +144 -104
  52. data/ext/ffi_c/libffi/acinclude.m4 +10 -112
  53. data/ext/ffi_c/libffi/compile +348 -0
  54. data/ext/ffi_c/libffi/config.guess +623 -556
  55. data/ext/ffi_c/libffi/config.sub +75 -34
  56. data/ext/ffi_c/libffi/configure +4571 -3830
  57. data/ext/ffi_c/libffi/configure.ac +64 -28
  58. data/ext/ffi_c/libffi/configure.host +25 -6
  59. data/ext/ffi_c/libffi/doc/Makefile.in +9 -6
  60. data/ext/ffi_c/libffi/doc/libffi.texi +82 -33
  61. data/ext/ffi_c/libffi/doc/version.texi +4 -4
  62. data/ext/ffi_c/libffi/fficonfig.h.in +12 -47
  63. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +163 -52
  64. data/ext/ffi_c/libffi/include/Makefile.am +1 -1
  65. data/ext/ffi_c/libffi/include/Makefile.in +10 -9
  66. data/ext/ffi_c/libffi/include/ffi.h.in +54 -50
  67. data/ext/ffi_c/libffi/include/ffi_cfi.h +21 -0
  68. data/ext/ffi_c/libffi/include/ffi_common.h +29 -0
  69. data/ext/ffi_c/libffi/include/tramp.h +45 -0
  70. data/ext/ffi_c/libffi/install-sh +92 -69
  71. data/ext/ffi_c/libffi/libtool-version +2 -2
  72. data/ext/ffi_c/libffi/ltmain.sh +512 -315
  73. data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +18 -14
  74. data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +108 -72
  75. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +76 -45
  76. data/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
  77. data/ext/ffi_c/libffi/man/Makefile.in +9 -6
  78. data/ext/ffi_c/libffi/missing +1 -1
  79. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +1 -1
  80. data/ext/ffi_c/libffi/msvcc.sh +1 -1
  81. data/ext/ffi_c/libffi/src/aarch64/ffi.c +146 -42
  82. data/ext/ffi_c/libffi/src/aarch64/internal.h +32 -0
  83. data/ext/ffi_c/libffi/src/aarch64/sysv.S +134 -42
  84. data/ext/ffi_c/libffi/src/arc/arcompact.S +169 -94
  85. data/ext/ffi_c/libffi/src/arc/ffi.c +325 -148
  86. data/ext/ffi_c/libffi/src/arc/ffitarget.h +14 -0
  87. data/ext/ffi_c/libffi/src/arm/ffi.c +62 -17
  88. data/ext/ffi_c/libffi/src/arm/ffitarget.h +3 -3
  89. data/ext/ffi_c/libffi/src/arm/internal.h +10 -0
  90. data/ext/ffi_c/libffi/src/arm/sysv.S +113 -42
  91. data/ext/ffi_c/libffi/src/closures.c +133 -47
  92. data/ext/ffi_c/libffi/src/dlmalloc.c +5 -0
  93. data/ext/ffi_c/libffi/src/ia64/ffi.c +12 -0
  94. data/ext/ffi_c/libffi/src/ia64/unix.S +20 -2
  95. data/ext/ffi_c/libffi/src/loongarch64/ffi.c +621 -0
  96. data/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +82 -0
  97. data/ext/ffi_c/libffi/src/loongarch64/sysv.S +327 -0
  98. data/ext/ffi_c/libffi/src/m32r/ffi.c +31 -14
  99. data/ext/ffi_c/libffi/src/mips/ffi.c +240 -65
  100. data/ext/ffi_c/libffi/src/mips/ffitarget.h +7 -0
  101. data/ext/ffi_c/libffi/src/mips/n32.S +137 -28
  102. data/ext/ffi_c/libffi/src/mips/o32.S +61 -4
  103. data/ext/ffi_c/libffi/src/moxie/ffi.c +47 -22
  104. data/ext/ffi_c/libffi/src/or1k/ffi.c +25 -12
  105. data/ext/ffi_c/libffi/src/pa/ffi.c +32 -33
  106. data/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
  107. data/ext/ffi_c/libffi/src/pa/ffitarget.h +22 -8
  108. data/ext/ffi_c/libffi/src/pa/hpux32.S +83 -36
  109. data/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
  110. data/ext/ffi_c/libffi/src/pa/linux.S +82 -35
  111. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1 -1
  112. data/ext/ffi_c/libffi/src/powerpc/linux64.S +2 -0
  113. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +2 -0
  114. data/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
  115. data/ext/ffi_c/libffi/src/prep_cif.c +22 -2
  116. data/ext/ffi_c/libffi/src/riscv/ffi.c +37 -4
  117. data/ext/ffi_c/libffi/src/sparc/ffi64.c +16 -0
  118. data/ext/ffi_c/libffi/src/tramp.c +716 -0
  119. data/ext/ffi_c/libffi/src/wasm32/ffi.c +934 -0
  120. data/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
  121. data/ext/ffi_c/libffi/src/x86/ffi.c +99 -37
  122. data/ext/ffi_c/libffi/src/x86/ffi64.c +67 -12
  123. data/ext/ffi_c/libffi/src/x86/ffitarget.h +9 -5
  124. data/ext/ffi_c/libffi/src/x86/ffiw64.c +43 -0
  125. data/ext/ffi_c/libffi/src/x86/internal.h +14 -0
  126. data/ext/ffi_c/libffi/src/x86/internal64.h +14 -0
  127. data/ext/ffi_c/libffi/src/x86/sysv.S +172 -38
  128. data/ext/ffi_c/libffi/src/x86/sysv_intel.S +91 -88
  129. data/ext/ffi_c/libffi/src/x86/unix64.S +96 -6
  130. data/ext/ffi_c/libffi/src/x86/win64.S +20 -7
  131. data/ext/ffi_c/libffi/src/xtensa/ffi.c +16 -8
  132. data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +4 -0
  133. data/ext/ffi_c/libffi/src/xtensa/sysv.S +26 -16
  134. data/ext/ffi_c/libffi/testsuite/Makefile.am +127 -114
  135. data/ext/ffi_c/libffi/testsuite/Makefile.in +137 -121
  136. data/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +54 -0
  137. data/ext/ffi_c/libffi/testsuite/emscripten/build.sh +63 -0
  138. data/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +80 -0
  139. data/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +48 -0
  140. data/ext/ffi_c/libffi/testsuite/emscripten/test.html +7 -0
  141. data/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +51 -0
  142. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +43 -21
  143. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +2 -2
  144. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1 -0
  145. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +5 -1
  146. data/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
  147. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +28 -3
  148. data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +3 -0
  149. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +5 -0
  150. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +4 -0
  151. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +4 -0
  152. data/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +60 -0
  153. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +8 -9
  154. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +2 -2
  155. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +2 -2
  156. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +2 -2
  157. data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +1 -1
  158. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +63 -0
  159. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +65 -0
  160. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +65 -0
  161. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +67 -0
  162. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +67 -0
  163. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +93 -0
  164. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +61 -0
  165. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +63 -0
  166. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +90 -0
  167. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -119
  168. data/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +220 -0
  169. data/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +154 -0
  170. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +13 -0
  171. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +11 -0
  172. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +15 -0
  173. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +3 -2
  174. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +2 -0
  175. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +2 -0
  176. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +21 -1
  177. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +2 -0
  178. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +2 -0
  179. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +2 -0
  180. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +7 -6
  181. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +6 -0
  182. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +18 -0
  183. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +22 -0
  184. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +24 -0
  185. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +29 -0
  186. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +4 -0
  187. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +19 -1
  188. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +21 -1
  189. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +35 -3
  190. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +13 -0
  191. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +19 -0
  192. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +13 -0
  193. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +13 -0
  194. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +18 -0
  195. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +22 -0
  196. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +13 -0
  197. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +29 -1
  198. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +19 -1
  199. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +24 -0
  200. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +28 -1
  201. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +24 -2
  202. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +39 -1
  203. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +25 -1
  204. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +14 -0
  205. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +14 -1
  206. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +14 -2
  207. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +19 -1
  208. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +19 -1
  209. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +20 -1
  210. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +40 -25
  211. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +40 -3
  212. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +19 -1
  213. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +18 -1
  214. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +18 -3
  215. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +18 -1
  216. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +18 -1
  217. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +19 -1
  218. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +19 -1
  219. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +3 -1
  220. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +9 -1
  221. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +4 -0
  222. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +11 -1
  223. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +22 -3
  224. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +5 -1
  225. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +6 -1
  226. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +9 -1
  227. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +9 -1
  228. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +6 -2
  229. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +9 -1
  230. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +5 -0
  231. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +10 -0
  232. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +3 -0
  233. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +2 -0
  234. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +3 -0
  235. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +11 -0
  236. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +3 -0
  237. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +4 -0
  238. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +4 -0
  239. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +4 -0
  240. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +2 -0
  241. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +3 -0
  242. data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +1 -138
  243. data/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +21 -21
  244. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +32 -9
  245. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +1 -1
  246. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +12 -0
  247. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +21 -5
  248. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
  249. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
  250. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +10 -1
  251. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +10 -1
  252. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +9 -0
  253. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +9 -0
  254. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +11 -0
  255. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +9 -0
  256. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +11 -0
  257. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +11 -0
  258. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
  259. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
  260. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
  261. data/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +1 -1
  262. data/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +1 -1
  263. data/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +6 -1
  264. data/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +2 -1
  265. data/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +1 -0
  266. data/ext/ffi_c/libffi.bsd.mk +2 -2
  267. data/ext/ffi_c/libffi.gnu.mk +2 -2
  268. data/ext/ffi_c/rbffi.h +1 -1
  269. data/ffi.gemspec +3 -3
  270. data/lib/ffi/autopointer.rb +7 -22
  271. data/lib/ffi/compat.rb +43 -0
  272. data/lib/ffi/data_converter.rb +2 -2
  273. data/lib/ffi/dynamic_library.rb +89 -0
  274. data/lib/ffi/enum.rb +18 -11
  275. data/lib/ffi/ffi.rb +3 -0
  276. data/lib/ffi/function.rb +71 -0
  277. data/lib/ffi/library.rb +55 -71
  278. data/lib/ffi/library_path.rb +109 -0
  279. data/lib/ffi/managedstruct.rb +1 -1
  280. data/lib/ffi/platform/aarch64-windows/types.conf +52 -0
  281. data/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
  282. data/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
  283. data/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
  284. data/lib/ffi/platform/sw_64-linux/types.conf +141 -0
  285. data/lib/ffi/platform.rb +15 -13
  286. data/lib/ffi/struct.rb +2 -1
  287. data/lib/ffi/struct_layout.rb +1 -1
  288. data/lib/ffi/struct_layout_builder.rb +1 -1
  289. data/lib/ffi/types.rb +32 -6
  290. data/lib/ffi/variadic.rb +19 -8
  291. data/lib/ffi/version.rb +1 -1
  292. data/samples/hello_ractor.rb +11 -0
  293. data/samples/qsort_ractor.rb +28 -0
  294. data.tar.gz.sig +0 -0
  295. metadata +100 -25
  296. metadata.gz.sig +0 -0
  297. data/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +0 -14
  298. data/ext/ffi_c/libffi/.travis/build.sh +0 -142
  299. data/ext/ffi_c/libffi/.travis.yml +0 -83
  300. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar_va.c +0 -44
  301. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort_va.c +0 -44
  302. /data/ext/ffi_c/libffi/{.travis → .ci}/ar-lib +0 -0
  303. /data/ext/ffi_c/libffi/{.travis → .ci}/bfin-sim.exp +0 -0
  304. /data/ext/ffi_c/libffi/{.travis → .ci}/compile +0 -0
  305. /data/ext/ffi_c/libffi/{.travis → .ci}/m32r-sim.exp +0 -0
  306. /data/ext/ffi_c/libffi/{.travis → .ci}/moxie-sim.exp +0 -0
  307. /data/ext/ffi_c/libffi/{.travis → .ci}/or1k-sim.exp +0 -0
  308. /data/ext/ffi_c/libffi/{.travis → .ci}/powerpc-eabisim.exp +0 -0
  309. /data/ext/ffi_c/libffi/{.travis → .ci}/wine-sim.exp +0 -0
  310. /data/ext/ffi_c/libffi/testsuite/libffi.call/{pyobjc-tc.c → pyobjc_tc.c} +0 -0
  311. /data/lib/ffi/platform/{sparc64-linux → sparcv9-linux}/types.conf +0 -0
@@ -51,8 +51,24 @@
51
51
 
52
52
  static VALUE fntype_allocate(VALUE klass);
53
53
  static VALUE fntype_initialize(int argc, VALUE* argv, VALUE self);
54
- static void fntype_mark(FunctionType*);
55
- static void fntype_free(FunctionType *);
54
+ static void fntype_mark(void *);
55
+ static void fntype_compact(void *);
56
+ static void fntype_free(void *);
57
+ static size_t fntype_memsize(const void *);
58
+
59
+ const rb_data_type_t rbffi_fntype_data_type = { /* extern */
60
+ .wrap_struct_name = "FFI::FunctionType",
61
+ .function = {
62
+ .dmark = fntype_mark,
63
+ .dfree = fntype_free,
64
+ .dsize = fntype_memsize,
65
+ ffi_compact_callback( fntype_compact )
66
+ },
67
+ .parent = &rbffi_type_data_type,
68
+ // IMPORTANT: WB_PROTECTED objects must only use the RB_OBJ_WRITE()
69
+ // macro to update VALUE references, as to trigger write barriers.
70
+ .flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | FFI_RUBY_TYPED_FROZEN_SHAREABLE
71
+ };
56
72
 
57
73
  VALUE rbffi_FunctionTypeClass = Qnil;
58
74
 
@@ -60,13 +76,13 @@ static VALUE
60
76
  fntype_allocate(VALUE klass)
61
77
  {
62
78
  FunctionType* fnInfo;
63
- VALUE obj = Data_Make_Struct(klass, FunctionType, fntype_mark, fntype_free, fnInfo);
79
+ VALUE obj = TypedData_Make_Struct(klass, FunctionType, &rbffi_fntype_data_type, fnInfo);
64
80
 
65
81
  fnInfo->type.ffiType = &ffi_type_pointer;
66
82
  fnInfo->type.nativeType = NATIVE_FUNCTION;
67
- fnInfo->rbReturnType = Qnil;
68
- fnInfo->rbParameterTypes = Qnil;
69
- fnInfo->rbEnums = Qnil;
83
+ RB_OBJ_WRITE(obj, &fnInfo->rbReturnType, Qnil);
84
+ RB_OBJ_WRITE(obj, &fnInfo->rbParameterTypes, Qnil);
85
+ RB_OBJ_WRITE(obj, &fnInfo->rbEnums, Qnil);
70
86
  fnInfo->invoke = rbffi_CallFunction;
71
87
  fnInfo->closurePool = NULL;
72
88
 
@@ -74,19 +90,39 @@ fntype_allocate(VALUE klass)
74
90
  }
75
91
 
76
92
  static void
77
- fntype_mark(FunctionType* fnInfo)
93
+ fntype_mark(void *data)
78
94
  {
79
- rb_gc_mark(fnInfo->rbReturnType);
80
- rb_gc_mark(fnInfo->rbParameterTypes);
81
- rb_gc_mark(fnInfo->rbEnums);
95
+ FunctionType *fnInfo = (FunctionType *)data;
96
+ rb_gc_mark_movable(fnInfo->rbReturnType);
97
+ rb_gc_mark_movable(fnInfo->rbParameterTypes);
98
+ rb_gc_mark_movable(fnInfo->rbEnums);
82
99
  if (fnInfo->callbackCount > 0 && fnInfo->callbackParameters != NULL) {
83
- rb_gc_mark_locations(&fnInfo->callbackParameters[0], &fnInfo->callbackParameters[fnInfo->callbackCount]);
100
+ size_t index;
101
+ for (index = 0; index < fnInfo->callbackCount; index++) {
102
+ rb_gc_mark_movable(fnInfo->callbackParameters[index]);
103
+ }
104
+ }
105
+ }
106
+
107
+ static void
108
+ fntype_compact(void *data)
109
+ {
110
+ FunctionType *fnInfo = (FunctionType *)data;
111
+ ffi_gc_location(fnInfo->rbReturnType);
112
+ ffi_gc_location(fnInfo->rbParameterTypes);
113
+ ffi_gc_location(fnInfo->rbEnums);
114
+ if (fnInfo->callbackCount > 0 && fnInfo->callbackParameters != NULL) {
115
+ size_t index;
116
+ for (index = 0; index < fnInfo->callbackCount; index++) {
117
+ ffi_gc_location(fnInfo->callbackParameters[index]);
118
+ }
84
119
  }
85
120
  }
86
121
 
87
122
  static void
88
- fntype_free(FunctionType* fnInfo)
123
+ fntype_free(void *data)
89
124
  {
125
+ FunctionType *fnInfo = (FunctionType *)data;
90
126
  xfree(fnInfo->parameterTypes);
91
127
  xfree(fnInfo->ffiParameterTypes);
92
128
  xfree(fnInfo->nativeParameterTypes);
@@ -97,6 +133,23 @@ fntype_free(FunctionType* fnInfo)
97
133
  xfree(fnInfo);
98
134
  }
99
135
 
136
+ static size_t
137
+ fntype_memsize(const void *data)
138
+ {
139
+ const FunctionType *fnInfo = (const FunctionType *)data;
140
+
141
+ size_t memsize = sizeof(FunctionType);
142
+ memsize += fnInfo->callbackCount * sizeof(VALUE);
143
+
144
+ memsize += fnInfo->parameterCount * (
145
+ sizeof(*fnInfo->parameterTypes)
146
+ + sizeof(ffi_type *)
147
+ + sizeof(*fnInfo->nativeParameterTypes)
148
+ );
149
+
150
+ return memsize;
151
+ }
152
+
100
153
  /*
101
154
  * call-seq: initialize(return_type, param_types, options={})
102
155
  * @param [Type, Symbol] return_type return type for the function
@@ -129,13 +182,13 @@ fntype_initialize(int argc, VALUE* argv, VALUE self)
129
182
 
130
183
  Check_Type(rbParamTypes, T_ARRAY);
131
184
 
132
- Data_Get_Struct(self, FunctionType, fnInfo);
185
+ TypedData_Get_Struct(self, FunctionType, &rbffi_fntype_data_type, fnInfo);
133
186
  fnInfo->parameterCount = (int) RARRAY_LEN(rbParamTypes);
134
187
  fnInfo->parameterTypes = xcalloc(fnInfo->parameterCount, sizeof(*fnInfo->parameterTypes));
135
188
  fnInfo->ffiParameterTypes = xcalloc(fnInfo->parameterCount, sizeof(ffi_type *));
136
189
  fnInfo->nativeParameterTypes = xcalloc(fnInfo->parameterCount, sizeof(*fnInfo->nativeParameterTypes));
137
- fnInfo->rbParameterTypes = rb_ary_new2(fnInfo->parameterCount);
138
- fnInfo->rbEnums = rbEnums;
190
+ RB_OBJ_WRITE(self, &fnInfo->rbParameterTypes, rb_ary_new2(fnInfo->parameterCount));
191
+ RB_OBJ_WRITE(self, &fnInfo->rbEnums, rbEnums);
139
192
  fnInfo->blocking = RTEST(rbBlocking);
140
193
  fnInfo->hasStruct = false;
141
194
 
@@ -150,7 +203,8 @@ fntype_initialize(int argc, VALUE* argv, VALUE self)
150
203
 
151
204
  if (rb_obj_is_kind_of(type, rbffi_FunctionTypeClass)) {
152
205
  REALLOC_N(fnInfo->callbackParameters, VALUE, fnInfo->callbackCount + 1);
153
- fnInfo->callbackParameters[fnInfo->callbackCount++] = type;
206
+ RB_OBJ_WRITE(self, &fnInfo->callbackParameters[fnInfo->callbackCount], type);
207
+ fnInfo->callbackCount++;
154
208
  }
155
209
 
156
210
  if (rb_obj_is_kind_of(type, rbffi_StructByValueClass)) {
@@ -158,12 +212,12 @@ fntype_initialize(int argc, VALUE* argv, VALUE self)
158
212
  }
159
213
 
160
214
  rb_ary_push(fnInfo->rbParameterTypes, type);
161
- Data_Get_Struct(type, Type, fnInfo->parameterTypes[i]);
215
+ TypedData_Get_Struct(type, Type, &rbffi_type_data_type, fnInfo->parameterTypes[i]);
162
216
  fnInfo->ffiParameterTypes[i] = fnInfo->parameterTypes[i]->ffiType;
163
217
  fnInfo->nativeParameterTypes[i] = fnInfo->parameterTypes[i]->nativeType;
164
218
  }
165
219
 
166
- fnInfo->rbReturnType = rbffi_Type_Lookup(rbReturnType);
220
+ RB_OBJ_WRITE(self, &fnInfo->rbReturnType, rbffi_Type_Lookup(rbReturnType));
167
221
  if (!RTEST(fnInfo->rbReturnType)) {
168
222
  VALUE typeName = rb_funcall2(rbReturnType, rb_intern("inspect"), 0, NULL);
169
223
  rb_raise(rb_eTypeError, "Invalid return type (%s)", RSTRING_PTR(typeName));
@@ -173,7 +227,7 @@ fntype_initialize(int argc, VALUE* argv, VALUE self)
173
227
  fnInfo->hasStruct = true;
174
228
  }
175
229
 
176
- Data_Get_Struct(fnInfo->rbReturnType, Type, fnInfo->returnType);
230
+ TypedData_Get_Struct(fnInfo->rbReturnType, Type, &rbffi_type_data_type, fnInfo->returnType);
177
231
  fnInfo->ffiReturnType = fnInfo->returnType->ffiType;
178
232
 
179
233
  #if defined(X86_WIN32)
@@ -199,20 +253,22 @@ fntype_initialize(int argc, VALUE* argv, VALUE self)
199
253
 
200
254
  fnInfo->invoke = rbffi_GetInvoker(fnInfo);
201
255
 
256
+ rb_obj_freeze(fnInfo->rbParameterTypes);
257
+ rb_obj_freeze(self);
202
258
  return self;
203
259
  }
204
260
 
205
261
  /*
206
- * call-seq: result_type
262
+ * call-seq: return_type
207
263
  * @return [Type]
208
264
  * Get the return type of the function type
209
265
  */
210
266
  static VALUE
211
- fntype_result_type(VALUE self)
267
+ fntype_return_type(VALUE self)
212
268
  {
213
269
  FunctionType* ft;
214
270
 
215
- Data_Get_Struct(self, FunctionType, ft);
271
+ TypedData_Get_Struct(self, FunctionType, &rbffi_fntype_data_type, ft);
216
272
 
217
273
  return ft->rbReturnType;
218
274
  }
@@ -227,7 +283,7 @@ fntype_param_types(VALUE self)
227
283
  {
228
284
  FunctionType* ft;
229
285
 
230
- Data_Get_Struct(self, FunctionType, ft);
286
+ TypedData_Get_Struct(self, FunctionType, &rbffi_fntype_data_type, ft);
231
287
 
232
288
  return rb_ary_dup(ft->rbParameterTypes);
233
289
  }
@@ -259,7 +315,7 @@ rbffi_FunctionInfo_Init(VALUE moduleFFI)
259
315
 
260
316
  rb_define_alloc_func(rbffi_FunctionTypeClass, fntype_allocate);
261
317
  rb_define_method(rbffi_FunctionTypeClass, "initialize", fntype_initialize, -1);
262
- rb_define_method(rbffi_FunctionTypeClass, "result_type", fntype_result_type, 0);
318
+ rb_define_method(rbffi_FunctionTypeClass, "return_type", fntype_return_type, 0);
263
319
  rb_define_method(rbffi_FunctionTypeClass, "param_types", fntype_param_types, 0);
264
320
 
265
321
  }
@@ -91,30 +91,49 @@ thread_data_free(void *ptr)
91
91
  }
92
92
 
93
93
  #else
94
+ static size_t
95
+ thread_data_memsize(const void *data) {
96
+ return sizeof(ThreadData);
97
+ }
98
+
99
+ static const rb_data_type_t thread_data_data_type = {
100
+ .wrap_struct_name = "FFI::ThreadData",
101
+ .function = {
102
+ .dmark = NULL,
103
+ .dfree = RUBY_TYPED_DEFAULT_FREE,
104
+ .dsize = thread_data_memsize,
105
+ },
106
+ // IMPORTANT: WB_PROTECTED objects must only use the RB_OBJ_WRITE()
107
+ // macro to update VALUE references, as to trigger write barriers.
108
+ .flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED
109
+ };
110
+
94
111
  static ID id_thread_data;
95
112
 
96
113
  static ThreadData*
97
114
  thread_data_init(void)
98
115
  {
99
- ThreadData* td;
116
+ ThreadData *td;
100
117
  VALUE obj;
101
118
 
102
- obj = Data_Make_Struct(rb_cObject, ThreadData, NULL, -1, td);
119
+ obj = TypedData_Make_Struct(rb_cObject, ThreadData, &thread_data_data_type, td);
103
120
  rb_thread_local_aset(rb_thread_current(), id_thread_data, obj);
104
121
 
105
122
  return td;
106
123
  }
107
124
 
108
125
  static inline ThreadData*
109
- thread_data_get()
126
+ thread_data_get(void)
110
127
  {
111
128
  VALUE obj = rb_thread_local_aref(rb_thread_current(), id_thread_data);
112
129
 
113
- if (obj != Qnil && TYPE(obj) == T_DATA) {
114
- return (ThreadData *) DATA_PTR(obj);
130
+ if (NIL_P(obj)) {
131
+ return thread_data_init();
115
132
  }
116
133
 
117
- return thread_data_init();
134
+ ThreadData *td;
135
+ TypedData_Get_Struct(obj, ThreadData, &thread_data_data_type, td);
136
+ return td;
118
137
  }
119
138
 
120
139
  #endif
@@ -154,7 +173,6 @@ get_last_winapi_error(VALUE self)
154
173
  static VALUE
155
174
  set_last_error(VALUE self, VALUE error)
156
175
  {
157
-
158
176
  #ifdef _WIN32
159
177
  SetLastError(NUM2INT(error));
160
178
  #else
@@ -31,6 +31,7 @@
31
31
 
32
32
  #include <ffi.h>
33
33
  #include "rbffi.h"
34
+ #include "compat.h"
34
35
 
35
36
  #include "Type.h"
36
37
  #include "MappedType.h"
@@ -38,24 +39,41 @@
38
39
 
39
40
  static VALUE mapped_allocate(VALUE);
40
41
  static VALUE mapped_initialize(VALUE, VALUE);
41
- static void mapped_mark(MappedType *);
42
+ static void mapped_mark(void *);
43
+ static void mapped_compact(void *);
44
+ static size_t mapped_memsize(const void *);
42
45
  static ID id_native_type, id_to_native, id_from_native;
43
46
 
44
47
  VALUE rbffi_MappedTypeClass = Qnil;
45
48
 
49
+ static const rb_data_type_t mapped_type_data_type = {
50
+ .wrap_struct_name = "FFI::Type::Mapped",
51
+ .function = {
52
+ .dmark = mapped_mark,
53
+ .dfree = RUBY_TYPED_DEFAULT_FREE,
54
+ .dsize = mapped_memsize,
55
+ ffi_compact_callback( mapped_compact )
56
+ },
57
+ .parent = &rbffi_type_data_type,
58
+ // IMPORTANT: WB_PROTECTED objects must only use the RB_OBJ_WRITE()
59
+ // macro to update VALUE references, as to trigger write barriers.
60
+ .flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | FFI_RUBY_TYPED_FROZEN_SHAREABLE
61
+ };
62
+
63
+
46
64
  static VALUE
47
65
  mapped_allocate(VALUE klass)
48
66
  {
49
67
  MappedType* m;
50
68
 
51
- VALUE obj = Data_Make_Struct(klass, MappedType, mapped_mark, -1, m);
69
+ VALUE obj = TypedData_Make_Struct(klass, MappedType, &mapped_type_data_type, m);
52
70
 
53
- m->rbConverter = Qnil;
54
- m->rbType = Qnil;
71
+ RB_OBJ_WRITE(obj, &m->rbConverter, Qnil);
72
+ RB_OBJ_WRITE(obj, &m->rbType, Qnil);
55
73
  m->type = NULL;
56
74
  m->base.nativeType = NATIVE_MAPPED;
57
75
  m->base.ffiType = &ffi_type_void;
58
-
76
+
59
77
  return obj;
60
78
  }
61
79
 
@@ -69,7 +87,7 @@ static VALUE
69
87
  mapped_initialize(VALUE self, VALUE rbConverter)
70
88
  {
71
89
  MappedType* m = NULL;
72
-
90
+
73
91
  if (!rb_respond_to(rbConverter, id_native_type)) {
74
92
  rb_raise(rb_eNoMethodError, "native_type method not implemented");
75
93
  }
@@ -81,25 +99,42 @@ mapped_initialize(VALUE self, VALUE rbConverter)
81
99
  if (!rb_respond_to(rbConverter, id_from_native)) {
82
100
  rb_raise(rb_eNoMethodError, "from_native method not implemented");
83
101
  }
84
-
85
- Data_Get_Struct(self, MappedType, m);
86
- m->rbType = rb_funcall2(rbConverter, id_native_type, 0, NULL);
102
+
103
+ TypedData_Get_Struct(self, MappedType, &mapped_type_data_type, m);
104
+ RB_OBJ_WRITE(self, &m->rbType, rb_funcall2(rbConverter, id_native_type, 0, NULL));
87
105
  if (!(rb_obj_is_kind_of(m->rbType, rbffi_TypeClass))) {
88
106
  rb_raise(rb_eTypeError, "native_type did not return instance of FFI::Type");
89
107
  }
90
108
 
91
- m->rbConverter = rbConverter;
92
- Data_Get_Struct(m->rbType, Type, m->type);
109
+ RB_OBJ_WRITE(self, &m->rbConverter, rbConverter);
110
+ TypedData_Get_Struct(m->rbType, Type, &rbffi_type_data_type, m->type);
93
111
  m->base.ffiType = m->type->ffiType;
94
-
112
+
113
+ rb_obj_freeze(self);
114
+
95
115
  return self;
96
116
  }
97
117
 
98
118
  static void
99
- mapped_mark(MappedType* m)
119
+ mapped_mark(void* data)
120
+ {
121
+ MappedType* m = (MappedType*)data;
122
+ rb_gc_mark_movable(m->rbType);
123
+ rb_gc_mark_movable(m->rbConverter);
124
+ }
125
+
126
+ static void
127
+ mapped_compact(void* data)
100
128
  {
101
- rb_gc_mark(m->rbType);
102
- rb_gc_mark(m->rbConverter);
129
+ MappedType* m = (MappedType*)data;
130
+ ffi_gc_location(m->rbType);
131
+ ffi_gc_location(m->rbConverter);
132
+ }
133
+
134
+ static size_t
135
+ mapped_memsize(const void *data)
136
+ {
137
+ return sizeof(MappedType);
103
138
  }
104
139
 
105
140
  /*
@@ -111,7 +146,7 @@ static VALUE
111
146
  mapped_native_type(VALUE self)
112
147
  {
113
148
  MappedType*m = NULL;
114
- Data_Get_Struct(self, MappedType, m);
149
+ TypedData_Get_Struct(self, MappedType, &mapped_type_data_type, m);
115
150
 
116
151
  return m->rbType;
117
152
  }
@@ -124,9 +159,8 @@ static VALUE
124
159
  mapped_to_native(int argc, VALUE* argv, VALUE self)
125
160
  {
126
161
  MappedType*m = NULL;
127
-
128
- Data_Get_Struct(self, MappedType, m);
129
-
162
+ TypedData_Get_Struct(self, MappedType, &mapped_type_data_type, m);
163
+
130
164
  return rb_funcall2(m->rbConverter, id_to_native, argc, argv);
131
165
  }
132
166
 
@@ -138,20 +172,28 @@ static VALUE
138
172
  mapped_from_native(int argc, VALUE* argv, VALUE self)
139
173
  {
140
174
  MappedType*m = NULL;
141
-
142
- Data_Get_Struct(self, MappedType, m);
175
+ TypedData_Get_Struct(self, MappedType, &mapped_type_data_type, m);
143
176
 
144
177
  return rb_funcall2(m->rbConverter, id_from_native, argc, argv);
145
178
  }
146
179
 
180
+ static VALUE
181
+ mapped_converter(VALUE self)
182
+ {
183
+ MappedType*m = NULL;
184
+ TypedData_Get_Struct(self, MappedType, &mapped_type_data_type, m);
185
+
186
+ return m->rbConverter;
187
+ }
188
+
147
189
  void
148
190
  rbffi_MappedType_Init(VALUE moduleFFI)
149
191
  {
150
- /*
192
+ /*
151
193
  * Document-class: FFI::Type::Mapped < FFI::Type
152
194
  */
153
195
  rbffi_MappedTypeClass = rb_define_class_under(rbffi_TypeClass, "Mapped", rbffi_TypeClass);
154
-
196
+
155
197
  rb_global_variable(&rbffi_MappedTypeClass);
156
198
 
157
199
  id_native_type = rb_intern("native_type");
@@ -164,5 +206,6 @@ rbffi_MappedType_Init(VALUE moduleFFI)
164
206
  rb_define_method(rbffi_MappedTypeClass, "native_type", mapped_native_type, 0);
165
207
  rb_define_method(rbffi_MappedTypeClass, "to_native", mapped_to_native, -1);
166
208
  rb_define_method(rbffi_MappedTypeClass, "from_native", mapped_from_native, -1);
209
+ rb_define_method(rbffi_MappedTypeClass, "converter", mapped_converter, 0);
167
210
  }
168
211
 
@@ -43,14 +43,12 @@ typedef struct MappedType_ {
43
43
  Type* type;
44
44
  VALUE rbConverter;
45
45
  VALUE rbType;
46
-
47
46
  } MappedType;
48
47
 
49
48
  void rbffi_MappedType_Init(VALUE moduleFFI);
50
49
 
51
50
  extern VALUE rbffi_MappedTypeClass;
52
51
 
53
-
54
52
  #ifdef __cplusplus
55
53
  }
56
54
  #endif
@@ -39,13 +39,14 @@
39
39
 
40
40
 
41
41
  static VALUE memptr_allocate(VALUE klass);
42
- static void memptr_release(Pointer* ptr);
42
+ static void memptr_release(void *data);
43
+ static size_t memptr_memsize(const void *data);
43
44
  static VALUE memptr_malloc(VALUE self, long size, long count, bool clear);
44
45
  static VALUE memptr_free(VALUE self);
45
46
 
46
47
  VALUE rbffi_MemoryPointerClass;
47
48
 
48
- #define MEMPTR(obj) ((MemoryPointer *) rbffi_AbstractMemory_Cast(obj, rbffi_MemoryPointerClass))
49
+ #define MEMPTR(obj) ((MemoryPointer *) rbffi_AbstractMemory_Cast(obj, &memory_pointer_data_type))
49
50
 
50
51
  VALUE
51
52
  rbffi_MemoryPointer_NewInstance(long size, long count, bool clear)
@@ -53,12 +54,25 @@ rbffi_MemoryPointer_NewInstance(long size, long count, bool clear)
53
54
  return memptr_malloc(memptr_allocate(rbffi_MemoryPointerClass), size, count, clear);
54
55
  }
55
56
 
57
+ static const rb_data_type_t memory_pointer_data_type = {
58
+ .wrap_struct_name = "FFI::MemoryPointer",
59
+ .function = {
60
+ .dmark = NULL,
61
+ .dfree = memptr_release,
62
+ .dsize = memptr_memsize,
63
+ },
64
+ .parent = &rbffi_pointer_data_type,
65
+ // IMPORTANT: WB_PROTECTED objects must only use the RB_OBJ_WRITE()
66
+ // macro to update VALUE references, as to trigger write barriers.
67
+ .flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | FFI_RUBY_TYPED_FROZEN_SHAREABLE
68
+ };
69
+
56
70
  static VALUE
57
71
  memptr_allocate(VALUE klass)
58
72
  {
59
73
  Pointer* p;
60
- VALUE obj = Data_Make_Struct(klass, Pointer, NULL, memptr_release, p);
61
- p->rbParent = Qnil;
74
+ VALUE obj = TypedData_Make_Struct(klass, Pointer, &memory_pointer_data_type, p);
75
+ RB_OBJ_WRITE(obj, &p->rbParent, Qnil);
62
76
  p->memory.flags = MEM_RD | MEM_WR;
63
77
 
64
78
  return obj;
@@ -94,7 +108,7 @@ memptr_malloc(VALUE self, long size, long count, bool clear)
94
108
  Pointer* p;
95
109
  unsigned long msize;
96
110
 
97
- Data_Get_Struct(self, Pointer, p);
111
+ TypedData_Get_Struct(self, Pointer, &memory_pointer_data_type, p);
98
112
 
99
113
  msize = size * count;
100
114
 
@@ -122,7 +136,8 @@ memptr_free(VALUE self)
122
136
  {
123
137
  Pointer* ptr;
124
138
 
125
- Data_Get_Struct(self, Pointer, ptr);
139
+ rb_check_frozen(self);
140
+ TypedData_Get_Struct(self, Pointer, &memory_pointer_data_type, ptr);
126
141
 
127
142
  if (ptr->allocated) {
128
143
  if (ptr->storage != NULL) {
@@ -136,8 +151,9 @@ memptr_free(VALUE self)
136
151
  }
137
152
 
138
153
  static void
139
- memptr_release(Pointer* ptr)
154
+ memptr_release(void *data)
140
155
  {
156
+ Pointer *ptr = (Pointer *)data;
141
157
  if (ptr->autorelease && ptr->allocated && ptr->storage != NULL) {
142
158
  xfree(ptr->storage);
143
159
  ptr->storage = NULL;
@@ -145,6 +161,17 @@ memptr_release(Pointer* ptr)
145
161
  xfree(ptr);
146
162
  }
147
163
 
164
+ static size_t
165
+ memptr_memsize(const void *data)
166
+ {
167
+ const Pointer *ptr = (const Pointer *)data;
168
+ size_t memsize = sizeof(Pointer);
169
+ if (ptr->allocated) {
170
+ memsize += ptr->memory.size;
171
+ }
172
+ return memsize;
173
+ }
174
+
148
175
  /*
149
176
  * call-seq: from_string(s)
150
177
  * @param [String] s string
@@ -77,7 +77,9 @@
77
77
  static bool prep_trampoline(void* ctx, void* code, Closure* closure, char* errmsg, size_t errmsgsize);
78
78
  static long trampoline_size(void);
79
79
 
80
- #if defined(__x86_64__) && (defined(__linux__) || defined(__APPLE__))
80
+ #if defined(__x86_64__) && \
81
+ (defined(__linux__) || defined(__APPLE__)) && \
82
+ !USE_FFI_ALLOC
81
83
  # define CUSTOM_TRAMPOLINE 1
82
84
  #endif
83
85