ffi 1.0.0 → 1.17.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (694) hide show
  1. checksums.yaml +7 -0
  2. checksums.yaml.gz.sig +4 -0
  3. data/CHANGELOG.md +465 -0
  4. data/COPYING +49 -0
  5. data/Gemfile +21 -0
  6. data/LICENSE +21 -11
  7. data/LICENSE.SPECS +22 -0
  8. data/README.md +137 -0
  9. data/Rakefile +165 -148
  10. data/ext/ffi_c/AbstractMemory.c +716 -97
  11. data/ext/ffi_c/AbstractMemory.h +38 -17
  12. data/ext/ffi_c/ArrayType.c +102 -33
  13. data/ext/ffi_c/ArrayType.h +20 -18
  14. data/ext/ffi_c/Buffer.c +229 -54
  15. data/ext/ffi_c/Call.c +211 -100
  16. data/ext/ffi_c/Call.h +46 -28
  17. data/ext/ffi_c/ClosurePool.c +110 -81
  18. data/ext/ffi_c/ClosurePool.h +31 -1
  19. data/ext/ffi_c/DynamicLibrary.c +216 -54
  20. data/ext/ffi_c/DynamicLibrary.h +76 -0
  21. data/ext/ffi_c/Function.c +527 -164
  22. data/ext/ffi_c/Function.h +24 -20
  23. data/ext/ffi_c/FunctionInfo.c +151 -50
  24. data/ext/ffi_c/LastError.c +112 -28
  25. data/ext/ffi_c/LastError.h +29 -0
  26. data/ext/ffi_c/LongDouble.c +65 -0
  27. data/ext/ffi_c/LongDouble.h +47 -0
  28. data/ext/ffi_c/MappedType.c +107 -42
  29. data/ext/ffi_c/MappedType.h +20 -20
  30. data/ext/ffi_c/MemoryPointer.c +108 -46
  31. data/ext/ffi_c/MemoryPointer.h +33 -4
  32. data/ext/ffi_c/MethodHandle.c +71 -67
  33. data/ext/ffi_c/MethodHandle.h +26 -23
  34. data/ext/ffi_c/Platform.c +42 -25
  35. data/ext/ffi_c/Platform.h +32 -3
  36. data/ext/ffi_c/Pointer.c +324 -51
  37. data/ext/ffi_c/Pointer.h +29 -18
  38. data/ext/ffi_c/Struct.c +434 -161
  39. data/ext/ffi_c/Struct.h +47 -27
  40. data/ext/ffi_c/StructByValue.c +74 -37
  41. data/ext/ffi_c/StructByValue.h +20 -18
  42. data/ext/ffi_c/StructLayout.c +358 -87
  43. data/ext/ffi_c/Thread.c +129 -0
  44. data/ext/ffi_c/Thread.h +76 -0
  45. data/ext/ffi_c/Type.c +241 -76
  46. data/ext/ffi_c/Type.h +27 -11
  47. data/ext/ffi_c/Types.c +54 -34
  48. data/ext/ffi_c/Types.h +24 -24
  49. data/ext/ffi_c/Variadic.c +151 -55
  50. data/ext/ffi_c/compat.h +48 -38
  51. data/ext/ffi_c/extconf.rb +106 -34
  52. data/ext/ffi_c/ffi.c +35 -26
  53. data/ext/ffi_c/libffi/.allow-ai-service +0 -0
  54. data/ext/ffi_c/libffi/.appveyor/site.exp +16 -0
  55. data/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +7 -0
  56. data/ext/ffi_c/libffi/.appveyor.yml +84 -0
  57. data/ext/ffi_c/libffi/.ci/ar-lib +270 -0
  58. data/ext/ffi_c/libffi/.ci/bfin-sim.exp +58 -0
  59. data/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
  60. data/ext/ffi_c/libffi/.ci/build-in-container.sh +10 -0
  61. data/ext/ffi_c/libffi/.ci/build.sh +124 -0
  62. data/ext/ffi_c/libffi/.ci/compile +351 -0
  63. data/ext/ffi_c/libffi/.ci/install.sh +78 -0
  64. data/ext/ffi_c/libffi/.ci/m32r-sim.exp +58 -0
  65. data/ext/ffi_c/libffi/.ci/moxie-sim.exp +60 -0
  66. data/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
  67. data/ext/ffi_c/libffi/.ci/or1k-sim.exp +58 -0
  68. data/ext/ffi_c/libffi/.ci/powerpc-eabisim.exp +58 -0
  69. data/ext/ffi_c/libffi/.ci/site.exp +29 -0
  70. data/ext/ffi_c/libffi/.ci/wine-sim.exp +55 -0
  71. data/ext/ffi_c/libffi/.circleci/config.yml +156 -0
  72. data/ext/ffi_c/libffi/.gitattributes +4 -0
  73. data/ext/ffi_c/libffi/.github/issue_template.md +10 -0
  74. data/ext/ffi_c/libffi/.github/workflows/build.yml +479 -0
  75. data/ext/ffi_c/libffi/.github/workflows/emscripten.yml +172 -0
  76. data/ext/ffi_c/libffi/.gitignore +46 -0
  77. data/ext/ffi_c/libffi/{ChangeLog → ChangeLog.old} +6528 -3180
  78. data/ext/ffi_c/libffi/LICENSE +3 -3
  79. data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +353 -0
  80. data/ext/ffi_c/libffi/Makefile.am +132 -162
  81. data/ext/ffi_c/libffi/Makefile.in +1339 -1003
  82. data/ext/ffi_c/libffi/README.md +531 -0
  83. data/ext/ffi_c/libffi/acinclude.m4 +289 -4
  84. data/ext/ffi_c/libffi/autogen.sh +2 -0
  85. data/ext/ffi_c/libffi/compile +227 -21
  86. data/ext/ffi_c/libffi/config.guess +1034 -778
  87. data/ext/ffi_c/libffi/config.sub +1394 -1204
  88. data/ext/ffi_c/libffi/configure +14327 -8503
  89. data/ext/ffi_c/libffi/configure.ac +294 -247
  90. data/ext/ffi_c/libffi/configure.host +330 -4
  91. data/ext/ffi_c/libffi/doc/Makefile.am +3 -0
  92. data/ext/ffi_c/libffi/doc/Makefile.in +818 -0
  93. data/ext/ffi_c/libffi/doc/libffi.texi +572 -67
  94. data/ext/ffi_c/libffi/doc/version.texi +4 -4
  95. data/ext/ffi_c/libffi/fficonfig.h.in +53 -46
  96. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +312 -0
  97. data/ext/ffi_c/libffi/include/Makefile.am +3 -3
  98. data/ext/ffi_c/libffi/include/Makefile.in +219 -79
  99. data/ext/ffi_c/libffi/include/ffi.h.in +230 -111
  100. data/ext/ffi_c/libffi/include/ffi_cfi.h +76 -0
  101. data/ext/ffi_c/libffi/include/ffi_common.h +78 -16
  102. data/ext/ffi_c/libffi/include/tramp.h +45 -0
  103. data/ext/ffi_c/libffi/install-sh +402 -184
  104. data/ext/ffi_c/libffi/libffi.map.in +81 -0
  105. data/ext/ffi_c/libffi/libffi.pc.in +3 -2
  106. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +997 -0
  107. data/ext/ffi_c/libffi/libtool-ldflags +106 -0
  108. data/ext/ffi_c/libffi/libtool-version +2 -2
  109. data/ext/ffi_c/libffi/ltmain.sh +5752 -2722
  110. data/ext/ffi_c/libffi/m4/asmcfi.m4 +13 -0
  111. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +50 -0
  112. data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +198 -0
  113. data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +158 -0
  114. data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +53 -0
  115. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +119 -0
  116. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +49 -0
  117. data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +302 -0
  118. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +267 -0
  119. data/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +89 -0
  120. data/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
  121. data/ext/ffi_c/libffi/m4/ax_require_defined.m4 +37 -0
  122. data/ext/ffi_c/libffi/make_sunver.pl +333 -0
  123. data/ext/ffi_c/libffi/man/Makefile.am +2 -2
  124. data/ext/ffi_c/libffi/man/Makefile.in +174 -57
  125. data/ext/ffi_c/libffi/man/ffi.3 +10 -0
  126. data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +6 -4
  127. data/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +73 -0
  128. data/ext/ffi_c/libffi/missing +155 -300
  129. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
  130. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
  131. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
  132. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
  133. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
  134. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +219 -0
  135. data/ext/ffi_c/libffi/msvcc.sh +353 -0
  136. data/ext/ffi_c/libffi/src/aarch64/ffi.c +1142 -0
  137. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +97 -0
  138. data/ext/ffi_c/libffi/src/aarch64/internal.h +100 -0
  139. data/ext/ffi_c/libffi/src/aarch64/sysv.S +695 -0
  140. data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
  141. data/ext/ffi_c/libffi/src/alpha/ffi.c +335 -98
  142. data/ext/ffi_c/libffi/src/alpha/ffitarget.h +10 -1
  143. data/ext/ffi_c/libffi/src/alpha/internal.h +23 -0
  144. data/ext/ffi_c/libffi/src/alpha/osf.S +162 -246
  145. data/ext/ffi_c/libffi/src/arc/arcompact.S +210 -0
  146. data/ext/ffi_c/libffi/src/arc/ffi.c +443 -0
  147. data/ext/ffi_c/libffi/src/arc/ffitarget.h +67 -0
  148. data/ext/ffi_c/libffi/src/arm/ffi.c +806 -194
  149. data/ext/ffi_c/libffi/src/arm/ffitarget.h +43 -3
  150. data/ext/ffi_c/libffi/src/arm/internal.h +17 -0
  151. data/ext/ffi_c/libffi/src/arm/sysv.S +381 -231
  152. data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
  153. data/ext/ffi_c/libffi/src/avr32/ffi.c +4 -2
  154. data/ext/ffi_c/libffi/src/avr32/ffitarget.h +8 -3
  155. data/ext/ffi_c/libffi/src/bfin/ffi.c +196 -0
  156. data/ext/ffi_c/libffi/src/bfin/ffitarget.h +43 -0
  157. data/ext/ffi_c/libffi/src/bfin/sysv.S +179 -0
  158. data/ext/ffi_c/libffi/src/closures.c +574 -100
  159. data/ext/ffi_c/libffi/src/cris/ffi.c +11 -8
  160. data/ext/ffi_c/libffi/src/cris/ffitarget.h +8 -3
  161. data/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
  162. data/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
  163. data/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
  164. data/ext/ffi_c/libffi/src/debug.c +8 -3
  165. data/ext/ffi_c/libffi/src/dlmalloc.c +89 -17
  166. data/ext/ffi_c/libffi/src/frv/ffi.c +2 -2
  167. data/ext/ffi_c/libffi/src/frv/ffitarget.h +8 -7
  168. data/ext/ffi_c/libffi/src/ia64/ffi.c +48 -12
  169. data/ext/ffi_c/libffi/src/ia64/ffitarget.h +10 -4
  170. data/ext/ffi_c/libffi/src/ia64/unix.S +28 -3
  171. data/ext/ffi_c/libffi/src/java_raw_api.c +24 -6
  172. data/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
  173. data/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
  174. data/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
  175. data/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
  176. data/ext/ffi_c/libffi/src/loongarch64/ffi.c +624 -0
  177. data/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +82 -0
  178. data/ext/ffi_c/libffi/src/loongarch64/sysv.S +327 -0
  179. data/ext/ffi_c/libffi/src/m32r/ffi.c +32 -15
  180. data/ext/ffi_c/libffi/src/m32r/ffitarget.h +8 -3
  181. data/ext/ffi_c/libffi/src/m68k/ffi.c +97 -13
  182. data/ext/ffi_c/libffi/src/m68k/ffitarget.h +8 -3
  183. data/ext/ffi_c/libffi/src/m68k/sysv.S +148 -25
  184. data/ext/ffi_c/libffi/src/m88k/ffi.c +400 -0
  185. data/ext/ffi_c/libffi/src/m88k/ffitarget.h +49 -0
  186. data/ext/ffi_c/libffi/src/m88k/obsd.S +209 -0
  187. data/ext/ffi_c/libffi/src/metag/ffi.c +330 -0
  188. data/ext/ffi_c/libffi/src/metag/ffitarget.h +53 -0
  189. data/ext/ffi_c/libffi/src/metag/sysv.S +311 -0
  190. data/ext/ffi_c/libffi/src/microblaze/ffi.c +321 -0
  191. data/ext/ffi_c/libffi/src/microblaze/ffitarget.h +53 -0
  192. data/ext/ffi_c/libffi/src/microblaze/sysv.S +302 -0
  193. data/ext/ffi_c/libffi/src/mips/ffi.c +392 -104
  194. data/ext/ffi_c/libffi/src/mips/ffitarget.h +40 -24
  195. data/ext/ffi_c/libffi/src/mips/n32.S +325 -93
  196. data/ext/ffi_c/libffi/src/mips/o32.S +211 -31
  197. data/ext/ffi_c/libffi/src/moxie/eabi.S +101 -0
  198. data/ext/ffi_c/libffi/src/moxie/ffi.c +310 -0
  199. data/ext/ffi_c/libffi/src/moxie/ffitarget.h +52 -0
  200. data/ext/ffi_c/libffi/src/nios2/ffi.c +304 -0
  201. data/ext/ffi_c/libffi/src/nios2/ffitarget.h +52 -0
  202. data/ext/ffi_c/libffi/src/nios2/sysv.S +136 -0
  203. data/ext/ffi_c/libffi/src/or1k/ffi.c +341 -0
  204. data/ext/ffi_c/libffi/src/or1k/ffitarget.h +58 -0
  205. data/ext/ffi_c/libffi/src/or1k/sysv.S +107 -0
  206. data/ext/ffi_c/libffi/src/pa/ffi.c +68 -111
  207. data/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
  208. data/ext/ffi_c/libffi/src/pa/ffitarget.h +34 -17
  209. data/ext/ffi_c/libffi/src/pa/hpux32.S +87 -38
  210. data/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
  211. data/ext/ffi_c/libffi/src/pa/linux.S +109 -39
  212. data/ext/ffi_c/libffi/src/powerpc/aix.S +250 -8
  213. data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +255 -4
  214. data/ext/ffi_c/libffi/src/powerpc/asm.h +3 -3
  215. data/ext/ffi_c/libffi/src/powerpc/darwin.S +211 -78
  216. data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +356 -102
  217. data/ext/ffi_c/libffi/src/powerpc/ffi.c +108 -1375
  218. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +746 -210
  219. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1153 -0
  220. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +105 -0
  221. data/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +923 -0
  222. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +126 -48
  223. data/ext/ffi_c/libffi/src/powerpc/linux64.S +191 -85
  224. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +438 -108
  225. data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +138 -68
  226. data/ext/ffi_c/libffi/src/powerpc/sysv.S +73 -119
  227. data/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
  228. data/ext/ffi_c/libffi/src/prep_cif.c +141 -32
  229. data/ext/ffi_c/libffi/src/raw_api.c +18 -5
  230. data/ext/ffi_c/libffi/src/riscv/ffi.c +514 -0
  231. data/ext/ffi_c/libffi/src/riscv/ffitarget.h +69 -0
  232. data/ext/ffi_c/libffi/src/riscv/sysv.S +293 -0
  233. data/ext/ffi_c/libffi/src/s390/ffi.c +294 -318
  234. data/ext/ffi_c/libffi/src/s390/ffitarget.h +13 -3
  235. data/ext/ffi_c/libffi/src/s390/internal.h +11 -0
  236. data/ext/ffi_c/libffi/src/s390/sysv.S +257 -366
  237. data/ext/ffi_c/libffi/src/sh/ffi.c +4 -3
  238. data/ext/ffi_c/libffi/src/sh/ffitarget.h +8 -3
  239. data/ext/ffi_c/libffi/src/sh64/ffi.c +3 -2
  240. data/ext/ffi_c/libffi/src/sh64/ffitarget.h +8 -3
  241. data/ext/ffi_c/libffi/src/sparc/ffi.c +334 -491
  242. data/ext/ffi_c/libffi/src/sparc/ffi64.c +630 -0
  243. data/ext/ffi_c/libffi/src/sparc/ffitarget.h +20 -5
  244. data/ext/ffi_c/libffi/src/sparc/internal.h +26 -0
  245. data/ext/ffi_c/libffi/src/sparc/v8.S +364 -234
  246. data/ext/ffi_c/libffi/src/sparc/v9.S +340 -207
  247. data/ext/ffi_c/libffi/src/tile/ffi.c +355 -0
  248. data/ext/ffi_c/libffi/src/tile/ffitarget.h +65 -0
  249. data/ext/ffi_c/libffi/src/tile/tile.S +360 -0
  250. data/ext/ffi_c/libffi/src/tramp.c +716 -0
  251. data/ext/ffi_c/libffi/src/types.c +48 -19
  252. data/ext/ffi_c/libffi/src/vax/elfbsd.S +195 -0
  253. data/ext/ffi_c/libffi/src/vax/ffi.c +276 -0
  254. data/ext/ffi_c/libffi/src/vax/ffitarget.h +49 -0
  255. data/ext/ffi_c/libffi/src/wasm32/ffi.c +947 -0
  256. data/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
  257. data/ext/ffi_c/libffi/src/x86/asmnames.h +30 -0
  258. data/ext/ffi_c/libffi/src/x86/ffi.c +690 -540
  259. data/ext/ffi_c/libffi/src/x86/ffi64.c +450 -126
  260. data/ext/ffi_c/libffi/src/x86/ffitarget.h +86 -42
  261. data/ext/ffi_c/libffi/src/x86/ffiw64.c +361 -0
  262. data/ext/ffi_c/libffi/src/x86/internal.h +43 -0
  263. data/ext/ffi_c/libffi/src/x86/internal64.h +36 -0
  264. data/ext/ffi_c/libffi/src/x86/sysv.S +1199 -381
  265. data/ext/ffi_c/libffi/src/x86/sysv_intel.S +998 -0
  266. data/ext/ffi_c/libffi/src/x86/unix64.S +587 -298
  267. data/ext/ffi_c/libffi/src/x86/win64.S +251 -457
  268. data/ext/ffi_c/libffi/src/x86/win64_intel.S +238 -0
  269. data/ext/ffi_c/libffi/src/xtensa/ffi.c +306 -0
  270. data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +57 -0
  271. data/ext/ffi_c/libffi/src/xtensa/sysv.S +268 -0
  272. data/ext/ffi_c/libffi/stamp-h.in +1 -0
  273. data/ext/ffi_c/libffi/testsuite/Makefile.am +80 -73
  274. data/ext/ffi_c/libffi/testsuite/Makefile.in +251 -117
  275. data/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +54 -0
  276. data/ext/ffi_c/libffi/testsuite/emscripten/build.sh +63 -0
  277. data/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +86 -0
  278. data/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +48 -0
  279. data/ext/ffi_c/libffi/testsuite/emscripten/test.html +7 -0
  280. data/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +51 -0
  281. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +682 -0
  282. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +22 -2
  283. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +28 -0
  284. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +78 -0
  285. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +50 -0
  286. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +63 -0
  287. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1746 -0
  288. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2885 -0
  289. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +747 -0
  290. data/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +46 -0
  291. data/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +46 -0
  292. data/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
  293. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +28 -10
  294. data/ext/ffi_c/libffi/testsuite/libffi.call/callback.c +99 -0
  295. data/ext/ffi_c/libffi/testsuite/libffi.call/callback2.c +108 -0
  296. data/ext/ffi_c/libffi/testsuite/libffi.call/callback3.c +114 -0
  297. data/ext/ffi_c/libffi/testsuite/libffi.call/callback4.c +119 -0
  298. data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +4 -3
  299. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +88 -42
  300. data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +3 -1
  301. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +15 -12
  302. data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +4 -2
  303. data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +110 -0
  304. data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +6 -16
  305. data/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +57 -0
  306. data/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +70 -0
  307. data/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +78 -0
  308. data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -1
  309. data/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +46 -0
  310. data/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +127 -0
  311. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +1 -0
  312. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +1 -1
  313. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +6 -0
  314. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +1 -1
  315. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +4 -0
  316. data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +1 -1
  317. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +4 -0
  318. data/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +60 -0
  319. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +9 -10
  320. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
  321. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
  322. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
  323. data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +9 -7
  324. data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +57 -0
  325. data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +7 -7
  326. data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +7 -6
  327. data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +9 -8
  328. data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +9 -8
  329. data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +9 -9
  330. data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +9 -9
  331. data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +9 -8
  332. data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +9 -8
  333. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +63 -0
  334. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +65 -0
  335. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +65 -0
  336. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +67 -0
  337. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +67 -0
  338. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +93 -0
  339. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +61 -0
  340. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +63 -0
  341. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +90 -0
  342. data/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +61 -0
  343. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +78 -0
  344. data/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +220 -0
  345. data/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +154 -0
  346. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +134 -0
  347. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +134 -0
  348. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +140 -0
  349. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
  350. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +3 -2
  351. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +2 -0
  352. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +2 -0
  353. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +21 -1
  354. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +2 -0
  355. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +2 -0
  356. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +2 -0
  357. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +7 -6
  358. data/ext/ffi_c/libffi/testsuite/{libffi.call/closure_stdcall.c → libffi.closures/closure_simple.c} +13 -16
  359. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +22 -4
  360. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +26 -4
  361. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +28 -4
  362. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +33 -4
  363. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +8 -4
  364. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +23 -5
  365. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +25 -5
  366. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +40 -8
  367. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +17 -4
  368. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +23 -4
  369. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +17 -4
  370. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +17 -4
  371. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +113 -0
  372. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +26 -4
  373. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +17 -4
  374. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +33 -5
  375. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +23 -5
  376. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +29 -5
  377. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +32 -5
  378. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +28 -6
  379. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +43 -5
  380. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +29 -5
  381. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +18 -4
  382. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +18 -5
  383. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +18 -6
  384. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +23 -5
  385. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +23 -5
  386. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +24 -5
  387. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +44 -31
  388. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +44 -9
  389. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +23 -5
  390. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +22 -5
  391. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +22 -7
  392. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +23 -5
  393. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +22 -5
  394. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +23 -5
  395. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +24 -5
  396. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +7 -5
  397. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +21 -9
  398. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +4 -0
  399. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +13 -3
  400. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +34 -11
  401. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_args.c +70 -0
  402. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_float_double.c +55 -0
  403. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +5 -1
  404. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +6 -1
  405. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +9 -1
  406. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +9 -1
  407. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +6 -2
  408. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +9 -1
  409. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +7 -2
  410. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +22 -10
  411. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +3 -0
  412. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +2 -0
  413. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +3 -0
  414. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +125 -0
  415. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +3 -0
  416. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +4 -0
  417. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +49 -0
  418. data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +49 -0
  419. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +8 -5
  420. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +3 -0
  421. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +2 -3
  422. data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +1 -0
  423. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +57 -56
  424. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +38 -15
  425. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +9 -9
  426. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +19 -6
  427. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +137 -0
  428. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
  429. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
  430. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +15 -6
  431. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +15 -6
  432. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +14 -5
  433. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +14 -5
  434. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +17 -6
  435. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +14 -5
  436. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +17 -6
  437. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +17 -6
  438. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
  439. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
  440. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
  441. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +7 -7
  442. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +7 -7
  443. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +6 -6
  444. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +7 -6
  445. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +8 -3
  446. data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.closures}/unwindtest.cc +4 -10
  447. data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.closures}/unwindtest_ffi_call.cc +4 -2
  448. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +91 -0
  449. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +10 -0
  450. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +10 -0
  451. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +10 -0
  452. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +42 -0
  453. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +10 -0
  454. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +10 -0
  455. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +10 -0
  456. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +71 -0
  457. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +10 -0
  458. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +10 -0
  459. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +10 -0
  460. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +80 -0
  461. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +10 -0
  462. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +16 -0
  463. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +10 -0
  464. data/ext/ffi_c/libffi/testsuite/{libffi.special/special.exp → libffi.complex/complex.exp} +9 -10
  465. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +51 -0
  466. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +7 -0
  467. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +7 -0
  468. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +7 -0
  469. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +10 -0
  470. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +10 -0
  471. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +86 -0
  472. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +10 -0
  473. data/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +1 -0
  474. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +78 -0
  475. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +10 -0
  476. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +10 -0
  477. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +10 -0
  478. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +37 -0
  479. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +41 -0
  480. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +10 -0
  481. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +10 -0
  482. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +10 -0
  483. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +44 -0
  484. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +10 -0
  485. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +10 -0
  486. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +10 -0
  487. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +10 -0
  488. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +10 -0
  489. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +10 -0
  490. data/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +34 -0
  491. data/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +28 -0
  492. data/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
  493. data/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +36 -0
  494. data/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +19 -0
  495. data/ext/ffi_c/libffi.bsd.mk +14 -8
  496. data/ext/ffi_c/libffi.darwin.mk +56 -26
  497. data/ext/ffi_c/libffi.gnu.mk +9 -6
  498. data/ext/ffi_c/libffi.mk +13 -8
  499. data/ext/ffi_c/libffi.vc.mk +26 -0
  500. data/ext/ffi_c/libffi.vc64.mk +26 -0
  501. data/ext/ffi_c/rbffi.h +34 -6
  502. data/ext/ffi_c/{endian.h → rbffi_endian.h} +21 -2
  503. data/ffi.gemspec +42 -0
  504. data/lib/ffi/abstract_memory.rb +44 -0
  505. data/lib/ffi/autopointer.rb +111 -52
  506. data/lib/ffi/compat.rb +43 -0
  507. data/lib/ffi/data_converter.rb +67 -0
  508. data/lib/ffi/dynamic_library.rb +118 -0
  509. data/lib/ffi/enum.rb +203 -22
  510. data/lib/ffi/errno.rb +27 -12
  511. data/lib/ffi/ffi.rb +88 -11
  512. data/lib/ffi/function.rb +71 -0
  513. data/lib/ffi/io.rb +35 -14
  514. data/lib/ffi/library.rb +382 -96
  515. data/lib/ffi/library_path.rb +109 -0
  516. data/lib/ffi/managedstruct.rb +64 -35
  517. data/lib/ffi/memorypointer.rb +1 -33
  518. data/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
  519. data/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
  520. data/lib/ffi/platform/aarch64-freebsd12/types.conf +181 -0
  521. data/lib/ffi/platform/aarch64-linux/types.conf +175 -0
  522. data/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
  523. data/lib/ffi/platform/aarch64-windows/types.conf +52 -0
  524. data/lib/ffi/platform/arm-freebsd/types.conf +152 -0
  525. data/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
  526. data/lib/ffi/platform/arm-linux/types.conf +132 -0
  527. data/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
  528. data/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
  529. data/lib/ffi/platform/i386-cygwin/types.conf +3 -0
  530. data/lib/ffi/platform/i386-darwin/types.conf +100 -0
  531. data/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  532. data/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
  533. data/lib/ffi/platform/i386-gnu/types.conf +107 -0
  534. data/lib/ffi/platform/i386-linux/types.conf +103 -0
  535. data/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  536. data/lib/ffi/platform/i386-openbsd/types.conf +128 -0
  537. data/lib/ffi/platform/i386-solaris/types.conf +122 -0
  538. data/lib/ffi/platform/i386-windows/types.conf +52 -0
  539. data/lib/ffi/platform/ia64-linux/types.conf +104 -0
  540. data/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
  541. data/lib/ffi/platform/mips-linux/types.conf +102 -0
  542. data/lib/ffi/platform/mips64-linux/types.conf +104 -0
  543. data/lib/ffi/platform/mips64el-linux/types.conf +104 -0
  544. data/lib/ffi/platform/mipsel-linux/types.conf +102 -0
  545. data/lib/ffi/platform/mipsisa32r6-linux/types.conf +102 -0
  546. data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +102 -0
  547. data/lib/ffi/platform/mipsisa64r6-linux/types.conf +104 -0
  548. data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +104 -0
  549. data/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  550. data/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  551. data/lib/ffi/platform/powerpc-linux/types.conf +130 -0
  552. data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
  553. data/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
  554. data/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
  555. data/lib/ffi/platform/riscv64-linux/types.conf +104 -0
  556. data/lib/ffi/platform/s390-linux/types.conf +102 -0
  557. data/lib/ffi/platform/s390x-linux/types.conf +102 -0
  558. data/lib/ffi/platform/sparc-linux/types.conf +102 -0
  559. data/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  560. data/lib/ffi/platform/sparcv9-linux/types.conf +102 -0
  561. data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
  562. data/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  563. data/lib/ffi/platform/sw_64-linux/types.conf +141 -0
  564. data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
  565. data/lib/ffi/platform/x86_64-darwin/types.conf +130 -0
  566. data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
  567. data/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
  568. data/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
  569. data/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
  570. data/lib/ffi/platform/x86_64-linux/types.conf +132 -0
  571. data/lib/ffi/platform/x86_64-msys/types.conf +119 -0
  572. data/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
  573. data/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
  574. data/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  575. data/lib/ffi/platform/x86_64-windows/types.conf +52 -0
  576. data/lib/ffi/platform.rb +110 -34
  577. data/lib/ffi/pointer.rb +117 -90
  578. data/lib/ffi/struct.rb +101 -70
  579. data/lib/ffi/struct_by_reference.rb +72 -0
  580. data/lib/ffi/struct_layout.rb +96 -0
  581. data/lib/ffi/struct_layout_builder.rb +90 -21
  582. data/lib/ffi/tools/const_generator.rb +86 -31
  583. data/lib/ffi/tools/generator.rb +49 -2
  584. data/lib/ffi/tools/generator_task.rb +13 -16
  585. data/lib/ffi/tools/struct_generator.rb +6 -5
  586. data/lib/ffi/tools/types_generator.rb +25 -11
  587. data/lib/ffi/types.rb +105 -36
  588. data/lib/ffi/union.rb +23 -12
  589. data/lib/ffi/variadic.rb +44 -29
  590. data/lib/ffi/version.rb +3 -0
  591. data/lib/ffi.rb +25 -9
  592. data/rakelib/ffi_gem_helper.rb +65 -0
  593. data/samples/getlogin.rb +8 -0
  594. data/samples/getpid.rb +8 -0
  595. data/samples/gettimeofday.rb +18 -0
  596. data/samples/hello.rb +8 -0
  597. data/samples/hello_ractor.rb +11 -0
  598. data/samples/inotify.rb +60 -0
  599. data/samples/pty.rb +75 -0
  600. data/samples/qsort.rb +20 -0
  601. data/samples/qsort_ractor.rb +28 -0
  602. data/sig/ffi/abstract_memory.rbs +165 -0
  603. data/sig/ffi/auto_pointer.rbs +26 -0
  604. data/sig/ffi/buffer.rbs +18 -0
  605. data/sig/ffi/data_converter.rbs +10 -0
  606. data/sig/ffi/dynamic_library.rbs +9 -0
  607. data/sig/ffi/enum.rbs +38 -0
  608. data/sig/ffi/function.rbs +39 -0
  609. data/sig/ffi/library.rbs +42 -0
  610. data/sig/ffi/native_type.rbs +86 -0
  611. data/sig/ffi/pointer.rbs +42 -0
  612. data/sig/ffi/struct.rbs +76 -0
  613. data/sig/ffi/struct_by_reference.rbs +11 -0
  614. data/sig/ffi/struct_by_value.rbs +7 -0
  615. data/sig/ffi/struct_layout.rbs +9 -0
  616. data/sig/ffi/struct_layout_builder.rbs +5 -0
  617. data/sig/ffi/type.rbs +39 -0
  618. data/sig/ffi.rbs +26 -0
  619. data.tar.gz.sig +0 -0
  620. metadata +547 -248
  621. metadata.gz.sig +0 -0
  622. data/History.txt +0 -109
  623. data/README.rdoc +0 -70
  624. data/ext/ffi_c/DataConverter.c +0 -62
  625. data/ext/ffi_c/StructByReference.c +0 -150
  626. data/ext/ffi_c/StructByReference.h +0 -50
  627. data/ext/ffi_c/libffi/ChangeLog.libffi +0 -658
  628. data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
  629. data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
  630. data/ext/ffi_c/libffi/README +0 -306
  631. data/ext/ffi_c/libffi/aclocal.m4 +0 -8998
  632. data/ext/ffi_c/libffi/depcomp +0 -584
  633. data/ext/ffi_c/libffi/doc/libffi.info +0 -533
  634. data/ext/ffi_c/libffi/doc/stamp-vti +0 -4
  635. data/ext/ffi_c/libffi/m4/libtool.m4 +0 -7360
  636. data/ext/ffi_c/libffi/m4/ltoptions.m4 +0 -368
  637. data/ext/ffi_c/libffi/m4/ltsugar.m4 +0 -123
  638. data/ext/ffi_c/libffi/m4/ltversion.m4 +0 -23
  639. data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +0 -92
  640. data/ext/ffi_c/libffi/mdate-sh +0 -201
  641. data/ext/ffi_c/libffi/src/x86/darwin.S +0 -444
  642. data/ext/ffi_c/libffi/src/x86/darwin64.S +0 -416
  643. data/ext/ffi_c/libffi/src/x86/freebsd.S +0 -458
  644. data/ext/ffi_c/libffi/src/x86/win32.S +0 -877
  645. data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +0 -300
  646. data/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +0 -63
  647. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +0 -44
  648. data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +0 -96
  649. data/ext/ffi_c/libffi/texinfo.tex +0 -7210
  650. data/gen/Rakefile +0 -14
  651. data/spec/ffi/async_callback_spec.rb +0 -23
  652. data/spec/ffi/bool_spec.rb +0 -24
  653. data/spec/ffi/buffer_spec.rb +0 -202
  654. data/spec/ffi/callback_spec.rb +0 -653
  655. data/spec/ffi/custom_param_type.rb +0 -31
  656. data/spec/ffi/custom_type_spec.rb +0 -73
  657. data/spec/ffi/enum_spec.rb +0 -183
  658. data/spec/ffi/errno_spec.rb +0 -13
  659. data/spec/ffi/ffi_spec.rb +0 -24
  660. data/spec/ffi/function_spec.rb +0 -73
  661. data/spec/ffi/library_spec.rb +0 -174
  662. data/spec/ffi/managed_struct_spec.rb +0 -56
  663. data/spec/ffi/number_spec.rb +0 -231
  664. data/spec/ffi/pointer_spec.rb +0 -210
  665. data/spec/ffi/rbx/attach_function_spec.rb +0 -28
  666. data/spec/ffi/rbx/memory_pointer_spec.rb +0 -109
  667. data/spec/ffi/rbx/spec_helper.rb +0 -1
  668. data/spec/ffi/rbx/struct_spec.rb +0 -13
  669. data/spec/ffi/spec_helper.rb +0 -21
  670. data/spec/ffi/string_spec.rb +0 -103
  671. data/spec/ffi/strptr_spec.rb +0 -36
  672. data/spec/ffi/struct_callback_spec.rb +0 -64
  673. data/spec/ffi/struct_initialize_spec.rb +0 -30
  674. data/spec/ffi/struct_packed_spec.rb +0 -46
  675. data/spec/ffi/struct_spec.rb +0 -638
  676. data/spec/ffi/typedef_spec.rb +0 -62
  677. data/spec/ffi/union_spec.rb +0 -60
  678. data/spec/ffi/variadic_spec.rb +0 -84
  679. data/spec/spec.opts +0 -4
  680. data/tasks/ann.rake +0 -80
  681. data/tasks/extension.rake +0 -25
  682. data/tasks/gem.rake +0 -200
  683. data/tasks/git.rake +0 -41
  684. data/tasks/notes.rake +0 -27
  685. data/tasks/post_load.rake +0 -34
  686. data/tasks/rdoc.rake +0 -50
  687. data/tasks/rubyforge.rake +0 -55
  688. data/tasks/setup.rb +0 -301
  689. data/tasks/spec.rake +0 -54
  690. data/tasks/svn.rake +0 -47
  691. data/tasks/test.rake +0 -40
  692. /data/ext/ffi_c/libffi/testsuite/libffi.call/{pyobjc-tc.c → pyobjc_tc.c} +0 -0
  693. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
  694. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
@@ -0,0 +1,1142 @@
1
+ /* Copyright (c) 2009, 2010, 2011, 2012 ARM Ltd.
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ ``Software''), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
21
+
22
+ #if defined(__aarch64__) || defined(__arm64__)|| defined (_M_ARM64)
23
+ #include <stdio.h>
24
+ #include <stdlib.h>
25
+ #include <stdint.h>
26
+ #include <fficonfig.h>
27
+ #include <ffi.h>
28
+ #include <ffi_common.h>
29
+ #include "internal.h"
30
+ #ifdef _WIN32
31
+ #include <windows.h> /* FlushInstructionCache */
32
+ #endif
33
+ #include <tramp.h>
34
+
35
+ /* Force FFI_TYPE_LONGDOUBLE to be different than FFI_TYPE_DOUBLE;
36
+ all further uses in this file will refer to the 128-bit type. */
37
+ #if FFI_TYPE_DOUBLE != FFI_TYPE_LONGDOUBLE
38
+ # if FFI_TYPE_LONGDOUBLE != 4
39
+ # error FFI_TYPE_LONGDOUBLE out of date
40
+ # endif
41
+ #else
42
+ # undef FFI_TYPE_LONGDOUBLE
43
+ # define FFI_TYPE_LONGDOUBLE 4
44
+ #endif
45
+
46
+ union _d
47
+ {
48
+ UINT64 d;
49
+ UINT32 s[2];
50
+ };
51
+
52
+ struct _v
53
+ {
54
+ union _d d[2] __attribute__((aligned(16)));
55
+ };
56
+
57
+ struct call_context
58
+ {
59
+ struct _v v[N_V_ARG_REG];
60
+ UINT64 x[N_X_ARG_REG];
61
+ };
62
+
63
+ #if FFI_EXEC_TRAMPOLINE_TABLE
64
+
65
+ #ifdef __MACH__
66
+ #ifdef HAVE_PTRAUTH
67
+ #include <ptrauth.h>
68
+ #endif
69
+ #include <mach/vm_param.h>
70
+ #endif
71
+
72
+ #else
73
+
74
+ #if defined (__clang__) && defined (__APPLE__)
75
+ extern void sys_icache_invalidate (void *start, size_t len);
76
+ #endif
77
+
78
+ static inline void
79
+ ffi_clear_cache (void *start, void *end)
80
+ {
81
+ #if defined (__clang__) && defined (__APPLE__)
82
+ sys_icache_invalidate (start, (char *)end - (char *)start);
83
+ #elif defined (__GNUC__)
84
+ __builtin___clear_cache (start, end);
85
+ #elif defined (_WIN32)
86
+ FlushInstructionCache(GetCurrentProcess(), start, (char*)end - (char*)start);
87
+ #else
88
+ #error "Missing builtin to flush instruction cache"
89
+ #endif
90
+ }
91
+
92
+ #endif
93
+
94
+ /* A subroutine of is_vfp_type. Given a structure type, return the type code
95
+ of the first non-structure element. Recurse for structure elements.
96
+ Return -1 if the structure is in fact empty, i.e. no nested elements. */
97
+
98
+ static int
99
+ is_hfa0 (const ffi_type *ty)
100
+ {
101
+ ffi_type **elements = ty->elements;
102
+ int i, ret = -1;
103
+
104
+ if (elements != NULL)
105
+ for (i = 0; elements[i]; ++i)
106
+ {
107
+ ret = elements[i]->type;
108
+ if (ret == FFI_TYPE_STRUCT || ret == FFI_TYPE_COMPLEX)
109
+ {
110
+ ret = is_hfa0 (elements[i]);
111
+ if (ret < 0)
112
+ continue;
113
+ }
114
+ break;
115
+ }
116
+
117
+ return ret;
118
+ }
119
+
120
+ /* A subroutine of is_vfp_type. Given a structure type, return true if all
121
+ of the non-structure elements are the same as CANDIDATE. */
122
+
123
+ static int
124
+ is_hfa1 (const ffi_type *ty, int candidate)
125
+ {
126
+ ffi_type **elements = ty->elements;
127
+ int i;
128
+
129
+ if (elements != NULL)
130
+ for (i = 0; elements[i]; ++i)
131
+ {
132
+ int t = elements[i]->type;
133
+ if (t == FFI_TYPE_STRUCT || t == FFI_TYPE_COMPLEX)
134
+ {
135
+ if (!is_hfa1 (elements[i], candidate))
136
+ return 0;
137
+ }
138
+ else if (t != candidate)
139
+ return 0;
140
+ }
141
+
142
+ return 1;
143
+ }
144
+
145
+ /* Determine if TY may be allocated to the FP registers. This is both an
146
+ fp scalar type as well as an homogenous floating point aggregate (HFA).
147
+ That is, a structure consisting of 1 to 4 members of all the same type,
148
+ where that type is an fp scalar.
149
+
150
+ Returns non-zero iff TY is an HFA. The result is the AARCH64_RET_*
151
+ constant for the type. */
152
+
153
+ static int
154
+ is_vfp_type (const ffi_type *ty)
155
+ {
156
+ ffi_type **elements;
157
+ int candidate, i;
158
+ size_t size, ele_count;
159
+
160
+ /* Quickest tests first. */
161
+ candidate = ty->type;
162
+ switch (candidate)
163
+ {
164
+ default:
165
+ return 0;
166
+ case FFI_TYPE_FLOAT:
167
+ case FFI_TYPE_DOUBLE:
168
+ case FFI_TYPE_LONGDOUBLE:
169
+ ele_count = 1;
170
+ goto done;
171
+ case FFI_TYPE_COMPLEX:
172
+ candidate = ty->elements[0]->type;
173
+ switch (candidate)
174
+ {
175
+ case FFI_TYPE_FLOAT:
176
+ case FFI_TYPE_DOUBLE:
177
+ case FFI_TYPE_LONGDOUBLE:
178
+ ele_count = 2;
179
+ goto done;
180
+ }
181
+ return 0;
182
+ case FFI_TYPE_STRUCT:
183
+ break;
184
+ }
185
+
186
+ /* No HFA types are smaller than 4 bytes, or larger than 64 bytes. */
187
+ size = ty->size;
188
+ if (size < 4 || size > 64)
189
+ return 0;
190
+
191
+ /* Find the type of the first non-structure member. */
192
+ elements = ty->elements;
193
+ candidate = elements[0]->type;
194
+ if (candidate == FFI_TYPE_STRUCT || candidate == FFI_TYPE_COMPLEX)
195
+ {
196
+ for (i = 0; ; ++i)
197
+ {
198
+ candidate = is_hfa0 (elements[i]);
199
+ if (candidate >= 0)
200
+ break;
201
+ }
202
+ }
203
+
204
+ /* If the first member is not a floating point type, it's not an HFA.
205
+ Also quickly re-check the size of the structure. */
206
+ switch (candidate)
207
+ {
208
+ case FFI_TYPE_FLOAT:
209
+ ele_count = size / sizeof(float);
210
+ if (size != ele_count * sizeof(float))
211
+ return 0;
212
+ break;
213
+ case FFI_TYPE_DOUBLE:
214
+ ele_count = size / sizeof(double);
215
+ if (size != ele_count * sizeof(double))
216
+ return 0;
217
+ break;
218
+ case FFI_TYPE_LONGDOUBLE:
219
+ ele_count = size / sizeof(long double);
220
+ if (size != ele_count * sizeof(long double))
221
+ return 0;
222
+ break;
223
+ default:
224
+ return 0;
225
+ }
226
+ if (ele_count > 4)
227
+ return 0;
228
+
229
+ /* Finally, make sure that all scalar elements are the same type. */
230
+ for (i = 0; elements[i]; ++i)
231
+ {
232
+ int t = elements[i]->type;
233
+ if (t == FFI_TYPE_STRUCT || t == FFI_TYPE_COMPLEX)
234
+ {
235
+ if (!is_hfa1 (elements[i], candidate))
236
+ return 0;
237
+ }
238
+ else if (t != candidate)
239
+ return 0;
240
+ }
241
+
242
+ /* All tests succeeded. Encode the result. */
243
+ done:
244
+ return candidate * 4 + (4 - (int)ele_count);
245
+ }
246
+
247
+ /* Representation of the procedure call argument marshalling
248
+ state.
249
+
250
+ The terse state variable names match the names used in the AARCH64
251
+ PCS.
252
+
253
+ The struct area is allocated downwards from the top of the argument
254
+ area. It is used to hold copies of structures passed by value that are
255
+ bigger than 16 bytes. */
256
+
257
+ struct arg_state
258
+ {
259
+ unsigned ngrn; /* Next general-purpose register number. */
260
+ unsigned nsrn; /* Next vector register number. */
261
+ size_t nsaa; /* Next stack offset. */
262
+ size_t next_struct_area; /* Place to allocate big structs. */
263
+
264
+ #if defined (__APPLE__)
265
+ unsigned allocating_variadic;
266
+ #endif
267
+ };
268
+
269
+ /* Initialize a procedure call argument marshalling state. */
270
+ static void
271
+ arg_init (struct arg_state *state, size_t size)
272
+ {
273
+ state->ngrn = 0;
274
+ state->nsrn = 0;
275
+ state->nsaa = 0;
276
+ state->next_struct_area = size;
277
+ #if defined (__APPLE__)
278
+ state->allocating_variadic = 0;
279
+ #endif
280
+ }
281
+
282
+ /* Allocate an aligned slot on the stack and return a pointer to it. */
283
+ static void *
284
+ allocate_to_stack (struct arg_state *state, void *stack,
285
+ size_t alignment, size_t size)
286
+ {
287
+ size_t nsaa = state->nsaa;
288
+
289
+ /* Round up the NSAA to the larger of 8 or the natural
290
+ alignment of the argument's type. */
291
+ #if defined (__APPLE__)
292
+ if (state->allocating_variadic && alignment < 8)
293
+ alignment = 8;
294
+ #else
295
+ if (alignment < 8)
296
+ alignment = 8;
297
+ #endif
298
+
299
+ nsaa = FFI_ALIGN (nsaa, alignment);
300
+ state->nsaa = nsaa + size;
301
+
302
+ return (char *)stack + nsaa;
303
+ }
304
+
305
+ /* Allocate and copy a structure that is passed by value on the stack and
306
+ return a pointer to it. */
307
+ static void *
308
+ allocate_and_copy_struct_to_stack (struct arg_state *state, void *stack,
309
+ size_t alignment, size_t size, void *value)
310
+ {
311
+ size_t dest = state->next_struct_area - size;
312
+
313
+ /* Round down to the natural alignment of the value. */
314
+ dest = FFI_ALIGN_DOWN (dest, alignment);
315
+ state->next_struct_area = dest;
316
+
317
+ return memcpy ((char *) stack + dest, value, size);
318
+ }
319
+
320
+ static ffi_arg
321
+ extend_integer_type (void *source, int type)
322
+ {
323
+ switch (type)
324
+ {
325
+ case FFI_TYPE_UINT8:
326
+ {
327
+ UINT8 u8;
328
+ memcpy (&u8, source, sizeof (u8));
329
+ return u8;
330
+ }
331
+ case FFI_TYPE_SINT8:
332
+ {
333
+ SINT8 s8;
334
+ memcpy (&s8, source, sizeof (s8));
335
+ return s8;
336
+ }
337
+ case FFI_TYPE_UINT16:
338
+ {
339
+ UINT16 u16;
340
+ memcpy (&u16, source, sizeof (u16));
341
+ return u16;
342
+ }
343
+ case FFI_TYPE_SINT16:
344
+ {
345
+ SINT16 s16;
346
+ memcpy (&s16, source, sizeof (s16));
347
+ return s16;
348
+ }
349
+ case FFI_TYPE_UINT32:
350
+ {
351
+ UINT32 u32;
352
+ memcpy (&u32, source, sizeof (u32));
353
+ return u32;
354
+ }
355
+ case FFI_TYPE_INT:
356
+ case FFI_TYPE_SINT32:
357
+ {
358
+ SINT32 s32;
359
+ memcpy (&s32, source, sizeof (s32));
360
+ return s32;
361
+ }
362
+ case FFI_TYPE_UINT64:
363
+ case FFI_TYPE_SINT64:
364
+ {
365
+ UINT64 u64;
366
+ memcpy (&u64, source, sizeof (u64));
367
+ return u64;
368
+ }
369
+ case FFI_TYPE_POINTER:
370
+ {
371
+ uintptr_t uptr;
372
+ memcpy (&uptr, source, sizeof (uptr));
373
+ return uptr;
374
+ }
375
+ default:
376
+ abort();
377
+ }
378
+ }
379
+
380
+ #if defined(_MSC_VER)
381
+ void extend_hfa_type (void *dest, void *src, int h);
382
+ #else
383
+ static void
384
+ extend_hfa_type (void *dest, void *src, int h)
385
+ {
386
+ ssize_t f = h - AARCH64_RET_S4;
387
+ void *x0;
388
+
389
+ #define BTI_J "hint #36"
390
+ asm volatile (
391
+ "adr %0, 0f\n"
392
+ " add %0, %0, %1\n"
393
+ " br %0\n"
394
+ "0: "BTI_J"\n" /* S4 */
395
+ " ldp s16, s17, [%3]\n"
396
+ " ldp s18, s19, [%3, #8]\n"
397
+ " b 4f\n"
398
+ " "BTI_J"\n" /* S3 */
399
+ " ldp s16, s17, [%3]\n"
400
+ " ldr s18, [%3, #8]\n"
401
+ " b 3f\n"
402
+ " "BTI_J"\n" /* S2 */
403
+ " ldp s16, s17, [%3]\n"
404
+ " b 2f\n"
405
+ " nop\n"
406
+ " "BTI_J"\n" /* S1 */
407
+ " ldr s16, [%3]\n"
408
+ " b 1f\n"
409
+ " nop\n"
410
+ " "BTI_J"\n" /* D4 */
411
+ " ldp d16, d17, [%3]\n"
412
+ " ldp d18, d19, [%3, #16]\n"
413
+ " b 4f\n"
414
+ " "BTI_J"\n" /* D3 */
415
+ " ldp d16, d17, [%3]\n"
416
+ " ldr d18, [%3, #16]\n"
417
+ " b 3f\n"
418
+ " "BTI_J"\n" /* D2 */
419
+ " ldp d16, d17, [%3]\n"
420
+ " b 2f\n"
421
+ " nop\n"
422
+ " "BTI_J"\n" /* D1 */
423
+ " ldr d16, [%3]\n"
424
+ " b 1f\n"
425
+ " nop\n"
426
+ " "BTI_J"\n" /* Q4 */
427
+ " ldp q16, q17, [%3]\n"
428
+ " ldp q18, q19, [%3, #32]\n"
429
+ " b 4f\n"
430
+ " "BTI_J"\n" /* Q3 */
431
+ " ldp q16, q17, [%3]\n"
432
+ " ldr q18, [%3, #32]\n"
433
+ " b 3f\n"
434
+ " "BTI_J"\n" /* Q2 */
435
+ " ldp q16, q17, [%3]\n"
436
+ " b 2f\n"
437
+ " nop\n"
438
+ " "BTI_J"\n" /* Q1 */
439
+ " ldr q16, [%3]\n"
440
+ " b 1f\n"
441
+ "4: str q19, [%2, #48]\n"
442
+ "3: str q18, [%2, #32]\n"
443
+ "2: str q17, [%2, #16]\n"
444
+ "1: str q16, [%2]"
445
+ : "=&r"(x0)
446
+ : "r"(f * 16), "r"(dest), "r"(src)
447
+ : "memory", "v16", "v17", "v18", "v19");
448
+ }
449
+ #endif
450
+
451
+ #if defined(_MSC_VER)
452
+ void* compress_hfa_type (void *dest, void *src, int h);
453
+ #else
454
+ static void *
455
+ compress_hfa_type (void *dest, void *reg, int h)
456
+ {
457
+ switch (h)
458
+ {
459
+ case AARCH64_RET_S1:
460
+ if (dest == reg)
461
+ {
462
+ #ifdef __AARCH64EB__
463
+ dest += 12;
464
+ #endif
465
+ }
466
+ else
467
+ *(float *)dest = *(float *)reg;
468
+ break;
469
+ case AARCH64_RET_S2:
470
+ asm ("ldp q16, q17, [%1]\n\t"
471
+ "st2 { v16.s, v17.s }[0], [%0]"
472
+ : : "r"(dest), "r"(reg) : "memory", "v16", "v17");
473
+ break;
474
+ case AARCH64_RET_S3:
475
+ asm ("ldp q16, q17, [%1]\n\t"
476
+ "ldr q18, [%1, #32]\n\t"
477
+ "st3 { v16.s, v17.s, v18.s }[0], [%0]"
478
+ : : "r"(dest), "r"(reg) : "memory", "v16", "v17", "v18");
479
+ break;
480
+ case AARCH64_RET_S4:
481
+ asm ("ldp q16, q17, [%1]\n\t"
482
+ "ldp q18, q19, [%1, #32]\n\t"
483
+ "st4 { v16.s, v17.s, v18.s, v19.s }[0], [%0]"
484
+ : : "r"(dest), "r"(reg) : "memory", "v16", "v17", "v18", "v19");
485
+ break;
486
+
487
+ case AARCH64_RET_D1:
488
+ if (dest == reg)
489
+ {
490
+ #ifdef __AARCH64EB__
491
+ dest += 8;
492
+ #endif
493
+ }
494
+ else
495
+ *(double *)dest = *(double *)reg;
496
+ break;
497
+ case AARCH64_RET_D2:
498
+ asm ("ldp q16, q17, [%1]\n\t"
499
+ "st2 { v16.d, v17.d }[0], [%0]"
500
+ : : "r"(dest), "r"(reg) : "memory", "v16", "v17");
501
+ break;
502
+ case AARCH64_RET_D3:
503
+ asm ("ldp q16, q17, [%1]\n\t"
504
+ "ldr q18, [%1, #32]\n\t"
505
+ "st3 { v16.d, v17.d, v18.d }[0], [%0]"
506
+ : : "r"(dest), "r"(reg) : "memory", "v16", "v17", "v18");
507
+ break;
508
+ case AARCH64_RET_D4:
509
+ asm ("ldp q16, q17, [%1]\n\t"
510
+ "ldp q18, q19, [%1, #32]\n\t"
511
+ "st4 { v16.d, v17.d, v18.d, v19.d }[0], [%0]"
512
+ : : "r"(dest), "r"(reg) : "memory", "v16", "v17", "v18", "v19");
513
+ break;
514
+
515
+ default:
516
+ if (dest != reg)
517
+ return memcpy (dest, reg, 16 * (4 - (h & 3)));
518
+ break;
519
+ }
520
+ return dest;
521
+ }
522
+ #endif
523
+
524
+ /* Either allocate an appropriate register for the argument type, or if
525
+ none are available, allocate a stack slot and return a pointer
526
+ to the allocated space. */
527
+
528
+ static void *
529
+ allocate_int_to_reg_or_stack (struct call_context *context,
530
+ struct arg_state *state,
531
+ void *stack, size_t size)
532
+ {
533
+ if (state->ngrn < N_X_ARG_REG)
534
+ return &context->x[state->ngrn++];
535
+
536
+ state->ngrn = N_X_ARG_REG;
537
+ return allocate_to_stack (state, stack, size, size);
538
+ }
539
+
540
+ ffi_status FFI_HIDDEN
541
+ ffi_prep_cif_machdep (ffi_cif *cif)
542
+ {
543
+ ffi_type *rtype = cif->rtype;
544
+ size_t bytes = cif->bytes;
545
+ int flags, i, n;
546
+
547
+ switch (rtype->type)
548
+ {
549
+ case FFI_TYPE_VOID:
550
+ flags = AARCH64_RET_VOID;
551
+ break;
552
+ case FFI_TYPE_UINT8:
553
+ flags = AARCH64_RET_UINT8;
554
+ break;
555
+ case FFI_TYPE_UINT16:
556
+ flags = AARCH64_RET_UINT16;
557
+ break;
558
+ case FFI_TYPE_UINT32:
559
+ flags = AARCH64_RET_UINT32;
560
+ break;
561
+ case FFI_TYPE_SINT8:
562
+ flags = AARCH64_RET_SINT8;
563
+ break;
564
+ case FFI_TYPE_SINT16:
565
+ flags = AARCH64_RET_SINT16;
566
+ break;
567
+ case FFI_TYPE_INT:
568
+ case FFI_TYPE_SINT32:
569
+ flags = AARCH64_RET_SINT32;
570
+ break;
571
+ case FFI_TYPE_SINT64:
572
+ case FFI_TYPE_UINT64:
573
+ flags = AARCH64_RET_INT64;
574
+ break;
575
+ case FFI_TYPE_POINTER:
576
+ flags = (sizeof(void *) == 4 ? AARCH64_RET_UINT32 : AARCH64_RET_INT64);
577
+ break;
578
+
579
+ case FFI_TYPE_FLOAT:
580
+ case FFI_TYPE_DOUBLE:
581
+ case FFI_TYPE_LONGDOUBLE:
582
+ case FFI_TYPE_STRUCT:
583
+ case FFI_TYPE_COMPLEX:
584
+ flags = is_vfp_type (rtype);
585
+ if (flags == 0)
586
+ {
587
+ size_t s = rtype->size;
588
+ if (s > 16)
589
+ {
590
+ flags = AARCH64_RET_VOID | AARCH64_RET_IN_MEM;
591
+ bytes += 8;
592
+ }
593
+ else if (s == 16)
594
+ flags = AARCH64_RET_INT128;
595
+ else if (s == 8)
596
+ flags = AARCH64_RET_INT64;
597
+ else
598
+ flags = AARCH64_RET_INT128 | AARCH64_RET_NEED_COPY;
599
+ }
600
+ break;
601
+
602
+ default:
603
+ abort();
604
+ }
605
+
606
+ for (i = 0, n = cif->nargs; i < n; i++)
607
+ if (is_vfp_type (cif->arg_types[i]))
608
+ {
609
+ flags |= AARCH64_FLAG_ARG_V;
610
+ break;
611
+ }
612
+
613
+ /* Round the stack up to a multiple of the stack alignment requirement. */
614
+ cif->bytes = (unsigned) FFI_ALIGN(bytes, 16);
615
+ cif->flags = flags;
616
+ #if defined (__APPLE__)
617
+ cif->aarch64_nfixedargs = 0;
618
+ #endif
619
+
620
+ return FFI_OK;
621
+ }
622
+
623
+ #if defined (__APPLE__)
624
+ /* Perform Apple-specific cif processing for variadic calls */
625
+ ffi_status FFI_HIDDEN
626
+ ffi_prep_cif_machdep_var(ffi_cif *cif, unsigned int nfixedargs,
627
+ unsigned int ntotalargs)
628
+ {
629
+ ffi_status status = ffi_prep_cif_machdep (cif);
630
+ cif->aarch64_nfixedargs = nfixedargs;
631
+ return status;
632
+ }
633
+ #else
634
+ ffi_status FFI_HIDDEN
635
+ ffi_prep_cif_machdep_var(ffi_cif *cif, unsigned int nfixedargs, unsigned int ntotalargs)
636
+ {
637
+ ffi_status status = ffi_prep_cif_machdep (cif);
638
+ cif->flags |= AARCH64_FLAG_VARARG;
639
+ return status;
640
+ }
641
+ #endif /* __APPLE__ */
642
+
643
+ extern void ffi_call_SYSV (struct call_context *context, void *frame,
644
+ void (*fn)(void), void *rvalue, int flags,
645
+ void *closure) FFI_HIDDEN;
646
+
647
+ /* Call a function with the provided arguments and capture the return
648
+ value. */
649
+ static void
650
+ ffi_call_int (ffi_cif *cif, void (*fn)(void), void *orig_rvalue,
651
+ void **avalue, void *closure)
652
+ {
653
+ struct call_context *context;
654
+ void *stack, *frame, *rvalue;
655
+ struct arg_state state;
656
+ size_t stack_bytes, rtype_size, rsize;
657
+ int i, nargs, flags, isvariadic = 0;
658
+ ffi_type *rtype;
659
+
660
+ flags = cif->flags;
661
+ rtype = cif->rtype;
662
+ rtype_size = rtype->size;
663
+ stack_bytes = cif->bytes;
664
+
665
+ if (flags & AARCH64_FLAG_VARARG)
666
+ {
667
+ isvariadic = 1;
668
+ flags &= ~AARCH64_FLAG_VARARG;
669
+ }
670
+
671
+ /* If the target function returns a structure via hidden pointer,
672
+ then we cannot allow a null rvalue. Otherwise, mash a null
673
+ rvalue to void return type. */
674
+ rsize = 0;
675
+ if (flags & AARCH64_RET_IN_MEM)
676
+ {
677
+ if (orig_rvalue == NULL)
678
+ rsize = rtype_size;
679
+ }
680
+ else if (orig_rvalue == NULL)
681
+ flags &= AARCH64_FLAG_ARG_V;
682
+ else if (flags & AARCH64_RET_NEED_COPY)
683
+ rsize = 16;
684
+
685
+ /* Allocate consectutive stack for everything we'll need.
686
+ The frame uses 40 bytes for: lr, fp, rvalue, flags, sp */
687
+ context = alloca (sizeof(struct call_context) + stack_bytes + 40 + rsize);
688
+ stack = context + 1;
689
+ frame = (void*)((uintptr_t)stack + (uintptr_t)stack_bytes);
690
+ rvalue = (rsize ? (void*)((uintptr_t)frame + 40) : orig_rvalue);
691
+
692
+ arg_init (&state, stack_bytes);
693
+ for (i = 0, nargs = cif->nargs; i < nargs; i++)
694
+ {
695
+ ffi_type *ty = cif->arg_types[i];
696
+ size_t s = ty->size;
697
+ void *a = avalue[i];
698
+ int h, t;
699
+ void *dest;
700
+
701
+ t = ty->type;
702
+ switch (t)
703
+ {
704
+ case FFI_TYPE_VOID:
705
+ FFI_ASSERT (0);
706
+ break;
707
+
708
+ /* If the argument is a basic type the argument is allocated to an
709
+ appropriate register, or if none are available, to the stack. */
710
+ case FFI_TYPE_INT:
711
+ case FFI_TYPE_UINT8:
712
+ case FFI_TYPE_SINT8:
713
+ case FFI_TYPE_UINT16:
714
+ case FFI_TYPE_SINT16:
715
+ case FFI_TYPE_UINT32:
716
+ case FFI_TYPE_SINT32:
717
+ case FFI_TYPE_UINT64:
718
+ case FFI_TYPE_SINT64:
719
+ case FFI_TYPE_POINTER:
720
+ do_pointer:
721
+ {
722
+ ffi_arg ext = extend_integer_type (a, t);
723
+ if (state.ngrn < N_X_ARG_REG)
724
+ context->x[state.ngrn++] = ext;
725
+ else
726
+ {
727
+ void *d = allocate_to_stack (&state, stack, ty->alignment, s);
728
+ state.ngrn = N_X_ARG_REG;
729
+ /* Note that the default abi extends each argument
730
+ to a full 64-bit slot, while the iOS abi allocates
731
+ only enough space. */
732
+ #ifdef __APPLE__
733
+ memcpy(d, a, s);
734
+ #else
735
+ *(ffi_arg *)d = ext;
736
+ #endif
737
+ }
738
+ }
739
+ break;
740
+
741
+ case FFI_TYPE_FLOAT:
742
+ case FFI_TYPE_DOUBLE:
743
+ case FFI_TYPE_LONGDOUBLE:
744
+ case FFI_TYPE_STRUCT:
745
+ case FFI_TYPE_COMPLEX:
746
+ {
747
+ h = is_vfp_type (ty);
748
+ if (h)
749
+ {
750
+ int elems = 4 - (h & 3);
751
+ if (cif->abi == FFI_WIN64 && isvariadic)
752
+ {
753
+ if (state.ngrn + elems <= N_X_ARG_REG)
754
+ {
755
+ dest = &context->x[state.ngrn];
756
+ state.ngrn += elems;
757
+ extend_hfa_type(dest, a, h);
758
+ break;
759
+ }
760
+ state.nsrn = N_X_ARG_REG;
761
+ dest = allocate_to_stack(&state, stack, ty->alignment, s);
762
+ }
763
+ else
764
+ {
765
+ if (state.nsrn + elems <= N_V_ARG_REG)
766
+ {
767
+ dest = &context->v[state.nsrn];
768
+ state.nsrn += elems;
769
+ extend_hfa_type (dest, a, h);
770
+ break;
771
+ }
772
+ state.nsrn = N_V_ARG_REG;
773
+ dest = allocate_to_stack (&state, stack, ty->alignment, s);
774
+ }
775
+ }
776
+ else if (s > 16)
777
+ {
778
+ /* If the argument is a composite type that is larger than 16
779
+ bytes, then the argument is copied to memory, and
780
+ the argument is replaced by a pointer to the copy. */
781
+ dest = allocate_and_copy_struct_to_stack (&state, stack,
782
+ ty->alignment, s,
783
+ avalue[i]);
784
+ a = &dest;
785
+ t = FFI_TYPE_POINTER;
786
+ s = sizeof (void *);
787
+ goto do_pointer;
788
+ }
789
+ else
790
+ {
791
+ size_t n = (s + 7) / 8;
792
+ if (state.ngrn + n <= N_X_ARG_REG)
793
+ {
794
+ /* If the argument is a composite type and the size in
795
+ double-words is not more than the number of available
796
+ X registers, then the argument is copied into
797
+ consecutive X registers. */
798
+ dest = &context->x[state.ngrn];
799
+ state.ngrn += (unsigned int)n;
800
+ }
801
+ else
802
+ {
803
+ /* Otherwise, there are insufficient X registers. Further
804
+ X register allocations are prevented, the NSAA is
805
+ adjusted and the argument is copied to memory at the
806
+ adjusted NSAA. */
807
+ state.ngrn = N_X_ARG_REG;
808
+ dest = allocate_to_stack (&state, stack, ty->alignment, s);
809
+ }
810
+ }
811
+ memcpy (dest, a, s);
812
+ }
813
+ break;
814
+
815
+ default:
816
+ abort();
817
+ }
818
+
819
+ #if defined (__APPLE__)
820
+ if (i + 1 == cif->aarch64_nfixedargs)
821
+ {
822
+ state.ngrn = N_X_ARG_REG;
823
+ state.nsrn = N_V_ARG_REG;
824
+ state.allocating_variadic = 1;
825
+ }
826
+ #endif
827
+ }
828
+
829
+ ffi_call_SYSV (context, frame, fn, rvalue, flags, closure);
830
+
831
+ if (flags & AARCH64_RET_NEED_COPY)
832
+ memcpy (orig_rvalue, rvalue, rtype_size);
833
+ }
834
+
835
+ void
836
+ ffi_call (ffi_cif *cif, void (*fn) (void), void *rvalue, void **avalue)
837
+ {
838
+ ffi_call_int (cif, fn, rvalue, avalue, NULL);
839
+ }
840
+
841
+ #if FFI_CLOSURES
842
+
843
+ #ifdef FFI_GO_CLOSURES
844
+ void
845
+ ffi_call_go (ffi_cif *cif, void (*fn) (void), void *rvalue,
846
+ void **avalue, void *closure)
847
+ {
848
+ ffi_call_int (cif, fn, rvalue, avalue, closure);
849
+ }
850
+ #endif /* FFI_GO_CLOSURES */
851
+
852
+ /* Build a trampoline. */
853
+
854
+ extern void ffi_closure_SYSV (void) FFI_HIDDEN;
855
+ extern void ffi_closure_SYSV_V (void) FFI_HIDDEN;
856
+ #if defined(FFI_EXEC_STATIC_TRAMP)
857
+ extern void ffi_closure_SYSV_alt (void) FFI_HIDDEN;
858
+ extern void ffi_closure_SYSV_V_alt (void) FFI_HIDDEN;
859
+ #endif
860
+
861
+ ffi_status
862
+ ffi_prep_closure_loc (ffi_closure *closure,
863
+ ffi_cif* cif,
864
+ void (*fun)(ffi_cif*,void*,void**,void*),
865
+ void *user_data,
866
+ void *codeloc)
867
+ {
868
+ if (cif->abi != FFI_SYSV && cif->abi != FFI_WIN64)
869
+ return FFI_BAD_ABI;
870
+
871
+ void (*start)(void);
872
+
873
+ if (cif->flags & AARCH64_FLAG_ARG_V)
874
+ start = ffi_closure_SYSV_V;
875
+ else
876
+ start = ffi_closure_SYSV;
877
+
878
+ #if FFI_EXEC_TRAMPOLINE_TABLE
879
+ # ifdef __MACH__
880
+ # ifdef HAVE_PTRAUTH
881
+ codeloc = ptrauth_auth_data(codeloc, ptrauth_key_function_pointer, 0);
882
+ # endif
883
+ void **config = (void **)((uint8_t *)codeloc - PAGE_MAX_SIZE);
884
+ config[0] = closure;
885
+ config[1] = start;
886
+ # endif
887
+ #else
888
+ static const unsigned char trampoline[16] = {
889
+ 0x90, 0x00, 0x00, 0x58, /* ldr x16, tramp+16 */
890
+ 0xf1, 0xff, 0xff, 0x10, /* adr x17, tramp+0 */
891
+ 0x00, 0x02, 0x1f, 0xd6 /* br x16 */
892
+ };
893
+ char *tramp = closure->tramp;
894
+
895
+ # if defined(FFI_EXEC_STATIC_TRAMP)
896
+ if (ffi_tramp_is_present(closure))
897
+ {
898
+ /* Initialize the static trampoline's parameters. */
899
+ if (start == ffi_closure_SYSV_V)
900
+ start = ffi_closure_SYSV_V_alt;
901
+ else
902
+ start = ffi_closure_SYSV_alt;
903
+ ffi_tramp_set_parms (closure->ftramp, start, closure);
904
+ goto out;
905
+ }
906
+ # endif
907
+
908
+ /* Initialize the dynamic trampoline. */
909
+ memcpy (tramp, trampoline, sizeof(trampoline));
910
+
911
+ *(UINT64 *)(tramp + 16) = (uintptr_t)start;
912
+
913
+ ffi_clear_cache(tramp, tramp + FFI_TRAMPOLINE_SIZE);
914
+
915
+ /* Also flush the cache for code mapping. */
916
+ # ifdef _WIN32
917
+ // Not using dlmalloc.c for Windows ARM64 builds
918
+ // so calling ffi_data_to_code_pointer() isn't necessary
919
+ unsigned char *tramp_code = tramp;
920
+ # else
921
+ unsigned char *tramp_code = ffi_data_to_code_pointer (tramp);
922
+ # endif
923
+ ffi_clear_cache (tramp_code, tramp_code + FFI_TRAMPOLINE_SIZE);
924
+ # if defined(FFI_EXEC_STATIC_TRAMP)
925
+ out:
926
+ # endif
927
+ #endif
928
+
929
+ closure->cif = cif;
930
+ closure->fun = fun;
931
+ closure->user_data = user_data;
932
+
933
+ return FFI_OK;
934
+ }
935
+
936
+ #ifdef FFI_GO_CLOSURES
937
+ extern void ffi_go_closure_SYSV (void) FFI_HIDDEN;
938
+ extern void ffi_go_closure_SYSV_V (void) FFI_HIDDEN;
939
+
940
+ ffi_status
941
+ ffi_prep_go_closure (ffi_go_closure *closure, ffi_cif* cif,
942
+ void (*fun)(ffi_cif*,void*,void**,void*))
943
+ {
944
+ void (*start)(void);
945
+
946
+ if (cif->abi != FFI_SYSV && cif->abi != FFI_WIN64)
947
+ return FFI_BAD_ABI;
948
+
949
+ if (cif->flags & AARCH64_FLAG_ARG_V)
950
+ start = ffi_go_closure_SYSV_V;
951
+ else
952
+ start = ffi_go_closure_SYSV;
953
+
954
+ closure->tramp = start;
955
+ closure->cif = cif;
956
+ closure->fun = fun;
957
+
958
+ return FFI_OK;
959
+ }
960
+ #endif /* FFI_GO_CLOSURES */
961
+
962
+ /* Primary handler to setup and invoke a function within a closure.
963
+
964
+ A closure when invoked enters via the assembler wrapper
965
+ ffi_closure_SYSV(). The wrapper allocates a call context on the
966
+ stack, saves the interesting registers (from the perspective of
967
+ the calling convention) into the context then passes control to
968
+ ffi_closure_SYSV_inner() passing the saved context and a pointer to
969
+ the stack at the point ffi_closure_SYSV() was invoked.
970
+
971
+ On the return path the assembler wrapper will reload call context
972
+ registers.
973
+
974
+ ffi_closure_SYSV_inner() marshalls the call context into ffi value
975
+ descriptors, invokes the wrapped function, then marshalls the return
976
+ value back into the call context. */
977
+
978
+ int FFI_HIDDEN
979
+ ffi_closure_SYSV_inner (ffi_cif *cif,
980
+ void (*fun)(ffi_cif*,void*,void**,void*),
981
+ void *user_data,
982
+ struct call_context *context,
983
+ void *stack, void *rvalue, void *struct_rvalue)
984
+ {
985
+ void **avalue = (void**) alloca (cif->nargs * sizeof (void*));
986
+ int i, h, nargs, flags, isvariadic = 0;
987
+ struct arg_state state;
988
+
989
+ arg_init (&state, cif->bytes);
990
+
991
+ flags = cif->flags;
992
+ if (flags & AARCH64_FLAG_VARARG)
993
+ {
994
+ isvariadic = 1;
995
+ flags &= ~AARCH64_FLAG_VARARG;
996
+ }
997
+
998
+ for (i = 0, nargs = cif->nargs; i < nargs; i++)
999
+ {
1000
+ ffi_type *ty = cif->arg_types[i];
1001
+ int t = ty->type;
1002
+ size_t n, s = ty->size;
1003
+
1004
+ switch (t)
1005
+ {
1006
+ case FFI_TYPE_VOID:
1007
+ FFI_ASSERT (0);
1008
+ break;
1009
+
1010
+ case FFI_TYPE_INT:
1011
+ case FFI_TYPE_UINT8:
1012
+ case FFI_TYPE_SINT8:
1013
+ case FFI_TYPE_UINT16:
1014
+ case FFI_TYPE_SINT16:
1015
+ case FFI_TYPE_UINT32:
1016
+ case FFI_TYPE_SINT32:
1017
+ case FFI_TYPE_UINT64:
1018
+ case FFI_TYPE_SINT64:
1019
+ case FFI_TYPE_POINTER:
1020
+ avalue[i] = allocate_int_to_reg_or_stack (context, &state, stack, s);
1021
+ break;
1022
+
1023
+ case FFI_TYPE_FLOAT:
1024
+ case FFI_TYPE_DOUBLE:
1025
+ case FFI_TYPE_LONGDOUBLE:
1026
+ case FFI_TYPE_STRUCT:
1027
+ case FFI_TYPE_COMPLEX:
1028
+ h = is_vfp_type (ty);
1029
+ if (h)
1030
+ {
1031
+ n = 4 - (h & 3);
1032
+ if (cif->abi == FFI_WIN64 && isvariadic)
1033
+ {
1034
+ if (state.ngrn + n <= N_X_ARG_REG)
1035
+ {
1036
+ void *reg = &context->x[state.ngrn];
1037
+ state.ngrn += (unsigned int)n;
1038
+
1039
+ /* Eeek! We need a pointer to the structure, however the
1040
+ homogeneous float elements are being passed in individual
1041
+ registers, therefore for float and double the structure
1042
+ is not represented as a contiguous sequence of bytes in
1043
+ our saved register context. We don't need the original
1044
+ contents of the register storage, so we reformat the
1045
+ structure into the same memory. */
1046
+ avalue[i] = compress_hfa_type(reg, reg, h);
1047
+ }
1048
+ else
1049
+ {
1050
+ state.ngrn = N_X_ARG_REG;
1051
+ state.nsrn = N_V_ARG_REG;
1052
+ avalue[i] = allocate_to_stack(&state, stack,
1053
+ ty->alignment, s);
1054
+ }
1055
+ }
1056
+ else
1057
+ {
1058
+ if (state.nsrn + n <= N_V_ARG_REG)
1059
+ {
1060
+ void *reg = &context->v[state.nsrn];
1061
+ state.nsrn += (unsigned int)n;
1062
+ avalue[i] = compress_hfa_type(reg, reg, h);
1063
+ }
1064
+ else
1065
+ {
1066
+ state.nsrn = N_V_ARG_REG;
1067
+ avalue[i] = allocate_to_stack(&state, stack,
1068
+ ty->alignment, s);
1069
+ }
1070
+ }
1071
+ }
1072
+ else if (s > 16)
1073
+ {
1074
+ /* Replace Composite type of size greater than 16 with a
1075
+ pointer. */
1076
+ #ifdef __ILP32__
1077
+ UINT64 avalue_tmp;
1078
+ memcpy (&avalue_tmp,
1079
+ allocate_int_to_reg_or_stack (context, &state,
1080
+ stack, sizeof (void *)),
1081
+ sizeof (UINT64));
1082
+ avalue[i] = (void *)(UINT32)avalue_tmp;
1083
+ #else
1084
+ avalue[i] = *(void **)
1085
+ allocate_int_to_reg_or_stack (context, &state, stack,
1086
+ sizeof (void *));
1087
+ #endif
1088
+ }
1089
+ else
1090
+ {
1091
+ n = (s + 7) / 8;
1092
+ if (state.ngrn + n <= N_X_ARG_REG)
1093
+ {
1094
+ avalue[i] = &context->x[state.ngrn];
1095
+ state.ngrn += (unsigned int)n;
1096
+ }
1097
+ else
1098
+ {
1099
+ state.ngrn = N_X_ARG_REG;
1100
+ avalue[i] = allocate_to_stack(&state, stack,
1101
+ ty->alignment, s);
1102
+ }
1103
+ }
1104
+ break;
1105
+
1106
+ default:
1107
+ abort();
1108
+ }
1109
+
1110
+ #if defined (__APPLE__)
1111
+ if (i + 1 == cif->aarch64_nfixedargs)
1112
+ {
1113
+ state.ngrn = N_X_ARG_REG;
1114
+ state.nsrn = N_V_ARG_REG;
1115
+ state.allocating_variadic = 1;
1116
+ }
1117
+ #endif
1118
+ }
1119
+
1120
+ if (flags & AARCH64_RET_IN_MEM)
1121
+ rvalue = struct_rvalue;
1122
+
1123
+ fun (cif, rvalue, avalue, user_data);
1124
+
1125
+ return flags;
1126
+ }
1127
+
1128
+ #if defined(FFI_EXEC_STATIC_TRAMP)
1129
+ void *
1130
+ ffi_tramp_arch (size_t *tramp_size, size_t *map_size)
1131
+ {
1132
+ extern void *trampoline_code_table;
1133
+
1134
+ *tramp_size = AARCH64_TRAMP_SIZE;
1135
+ *map_size = AARCH64_TRAMP_MAP_SIZE;
1136
+ return &trampoline_code_table;
1137
+ }
1138
+ #endif
1139
+
1140
+ #endif /* FFI_CLOSURES */
1141
+
1142
+ #endif /* (__aarch64__) || defined(__arm64__)|| defined (_M_ARM64)*/