ffi 1.9.24 → 1.16.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (457) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/CHANGELOG.md +348 -0
  4. data/Gemfile +4 -5
  5. data/README.md +44 -17
  6. data/Rakefile +74 -148
  7. data/ext/ffi_c/AbstractMemory.c +89 -70
  8. data/ext/ffi_c/AbstractMemory.h +3 -2
  9. data/ext/ffi_c/ArrayType.c +49 -13
  10. data/ext/ffi_c/ArrayType.h +1 -0
  11. data/ext/ffi_c/Buffer.c +90 -38
  12. data/ext/ffi_c/Call.c +55 -56
  13. data/ext/ffi_c/Call.h +12 -6
  14. data/ext/ffi_c/ClosurePool.c +333 -0
  15. data/ext/ffi_c/{Closure.h → ClosurePool.h} +25 -13
  16. data/ext/ffi_c/DynamicLibrary.c +91 -33
  17. data/ext/ffi_c/Function.c +306 -235
  18. data/ext/ffi_c/Function.h +3 -5
  19. data/ext/ffi_c/FunctionInfo.c +87 -32
  20. data/ext/ffi_c/LastError.c +74 -15
  21. data/ext/ffi_c/LongDouble.c +12 -10
  22. data/ext/ffi_c/LongDouble.h +0 -4
  23. data/ext/ffi_c/MappedType.c +66 -23
  24. data/ext/ffi_c/MappedType.h +0 -2
  25. data/ext/ffi_c/MemoryPointer.c +37 -15
  26. data/ext/ffi_c/MemoryPointer.h +0 -4
  27. data/ext/ffi_c/MethodHandle.c +265 -38
  28. data/ext/ffi_c/MethodHandle.h +3 -2
  29. data/ext/ffi_c/Platform.c +5 -56
  30. data/ext/ffi_c/Pointer.c +93 -55
  31. data/ext/ffi_c/Pointer.h +1 -4
  32. data/ext/ffi_c/Struct.c +202 -134
  33. data/ext/ffi_c/Struct.h +18 -9
  34. data/ext/ffi_c/StructByValue.c +50 -23
  35. data/ext/ffi_c/StructLayout.c +135 -64
  36. data/ext/ffi_c/Thread.c +4 -228
  37. data/ext/ffi_c/Thread.h +1 -20
  38. data/ext/ffi_c/Type.c +105 -55
  39. data/ext/ffi_c/Type.h +3 -2
  40. data/ext/ffi_c/Types.c +8 -9
  41. data/ext/ffi_c/Types.h +3 -4
  42. data/ext/ffi_c/Variadic.c +88 -47
  43. data/ext/ffi_c/compat.h +26 -22
  44. data/ext/ffi_c/extconf.rb +75 -32
  45. data/ext/ffi_c/ffi.c +9 -10
  46. data/ext/ffi_c/libffi/.appveyor/site.exp +16 -0
  47. data/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +7 -0
  48. data/ext/ffi_c/libffi/.appveyor.yml +53 -19
  49. data/ext/ffi_c/libffi/.ci/bfin-sim.exp +58 -0
  50. data/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
  51. data/ext/ffi_c/libffi/.ci/build-in-container.sh +10 -0
  52. data/ext/ffi_c/libffi/.ci/build.sh +124 -0
  53. data/ext/ffi_c/libffi/.ci/install.sh +78 -0
  54. data/ext/ffi_c/libffi/.ci/m32r-sim.exp +58 -0
  55. data/ext/ffi_c/libffi/{.travis → .ci}/moxie-sim.exp +1 -1
  56. data/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
  57. data/ext/ffi_c/libffi/.ci/or1k-sim.exp +58 -0
  58. data/ext/ffi_c/libffi/.ci/powerpc-eabisim.exp +58 -0
  59. data/ext/ffi_c/libffi/.ci/site.exp +29 -0
  60. data/ext/ffi_c/libffi/.ci/wine-sim.exp +55 -0
  61. data/ext/ffi_c/libffi/.circleci/config.yml +156 -0
  62. data/ext/ffi_c/libffi/.gitattributes +4 -0
  63. data/ext/ffi_c/libffi/.github/workflows/build.yml +460 -0
  64. data/ext/ffi_c/libffi/.github/workflows/emscripten.yml +171 -0
  65. data/ext/ffi_c/libffi/.gitignore +10 -2
  66. data/ext/ffi_c/libffi/{ChangeLog.libffi-3.1 → ChangeLog.old} +1407 -0
  67. data/ext/ffi_c/libffi/LICENSE +1 -1
  68. data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +5 -4
  69. data/ext/ffi_c/libffi/Makefile.am +64 -73
  70. data/ext/ffi_c/libffi/Makefile.in +553 -235
  71. data/ext/ffi_c/libffi/README.md +165 -100
  72. data/ext/ffi_c/libffi/acinclude.m4 +10 -112
  73. data/ext/ffi_c/libffi/compile +348 -0
  74. data/ext/ffi_c/libffi/config.guess +950 -662
  75. data/ext/ffi_c/libffi/config.sub +1362 -1306
  76. data/ext/ffi_c/libffi/configure +4909 -4096
  77. data/ext/ffi_c/libffi/configure.ac +93 -32
  78. data/ext/ffi_c/libffi/configure.host +76 -28
  79. data/ext/ffi_c/libffi/doc/Makefile.in +15 -8
  80. data/ext/ffi_c/libffi/doc/libffi.texi +107 -46
  81. data/ext/ffi_c/libffi/doc/version.texi +4 -4
  82. data/ext/ffi_c/libffi/fficonfig.h.in +22 -44
  83. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +165 -56
  84. data/ext/ffi_c/libffi/include/Makefile.am +1 -1
  85. data/ext/ffi_c/libffi/include/Makefile.in +17 -12
  86. data/ext/ffi_c/libffi/include/ffi.h.in +64 -48
  87. data/ext/ffi_c/libffi/include/ffi_cfi.h +21 -0
  88. data/ext/ffi_c/libffi/include/ffi_common.h +34 -1
  89. data/ext/ffi_c/libffi/include/tramp.h +45 -0
  90. data/ext/ffi_c/libffi/install-sh +107 -74
  91. data/ext/ffi_c/libffi/libffi.map.in +8 -12
  92. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +2 -48
  93. data/ext/ffi_c/libffi/libtool-version +2 -2
  94. data/ext/ffi_c/libffi/ltmain.sh +576 -284
  95. data/ext/ffi_c/libffi/m4/asmcfi.m4 +1 -1
  96. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +5 -26
  97. data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +18 -14
  98. data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +108 -72
  99. data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +5 -26
  100. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +76 -44
  101. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +5 -26
  102. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +7 -3
  103. data/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
  104. data/ext/ffi_c/libffi/make_sunver.pl +333 -0
  105. data/ext/ffi_c/libffi/man/Makefile.in +15 -8
  106. data/ext/ffi_c/libffi/missing +8 -8
  107. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
  108. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
  109. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
  110. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
  111. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
  112. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +219 -0
  113. data/ext/ffi_c/libffi/msvcc.sh +39 -14
  114. data/ext/ffi_c/libffi/src/aarch64/ffi.c +286 -98
  115. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +19 -3
  116. data/ext/ffi_c/libffi/src/aarch64/internal.h +33 -0
  117. data/ext/ffi_c/libffi/src/aarch64/sysv.S +142 -37
  118. data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
  119. data/ext/ffi_c/libffi/src/arc/arcompact.S +169 -94
  120. data/ext/ffi_c/libffi/src/arc/ffi.c +325 -148
  121. data/ext/ffi_c/libffi/src/arc/ffitarget.h +14 -0
  122. data/ext/ffi_c/libffi/src/arm/ffi.c +112 -10
  123. data/ext/ffi_c/libffi/src/arm/ffitarget.h +8 -1
  124. data/ext/ffi_c/libffi/src/arm/internal.h +10 -0
  125. data/ext/ffi_c/libffi/src/arm/sysv.S +117 -44
  126. data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
  127. data/ext/ffi_c/libffi/src/closures.c +189 -48
  128. data/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
  129. data/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
  130. data/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
  131. data/ext/ffi_c/libffi/src/dlmalloc.c +6 -1
  132. data/ext/ffi_c/libffi/src/frv/ffi.c +1 -1
  133. data/ext/ffi_c/libffi/src/ia64/ffi.c +12 -0
  134. data/ext/ffi_c/libffi/src/ia64/unix.S +20 -2
  135. data/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
  136. data/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
  137. data/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
  138. data/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
  139. data/ext/ffi_c/libffi/src/loongarch64/ffi.c +621 -0
  140. data/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +82 -0
  141. data/ext/ffi_c/libffi/src/loongarch64/sysv.S +327 -0
  142. data/ext/ffi_c/libffi/src/m32r/ffi.c +31 -14
  143. data/ext/ffi_c/libffi/src/metag/ffi.c +1 -1
  144. data/ext/ffi_c/libffi/src/mips/ffi.c +245 -66
  145. data/ext/ffi_c/libffi/src/mips/ffitarget.h +8 -1
  146. data/ext/ffi_c/libffi/src/mips/n32.S +137 -28
  147. data/ext/ffi_c/libffi/src/mips/o32.S +63 -4
  148. data/ext/ffi_c/libffi/src/moxie/ffi.c +48 -23
  149. data/ext/ffi_c/libffi/src/or1k/ffi.c +25 -12
  150. data/ext/ffi_c/libffi/src/pa/ffi.c +62 -108
  151. data/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
  152. data/ext/ffi_c/libffi/src/pa/ffitarget.h +20 -11
  153. data/ext/ffi_c/libffi/src/pa/hpux32.S +87 -38
  154. data/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
  155. data/ext/ffi_c/libffi/src/pa/linux.S +109 -39
  156. data/ext/ffi_c/libffi/src/powerpc/ffi.c +6 -4
  157. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +13 -1
  158. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +211 -32
  159. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +18 -7
  160. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +10 -4
  161. data/ext/ffi_c/libffi/src/powerpc/linux64.S +93 -28
  162. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +83 -5
  163. data/ext/ffi_c/libffi/src/powerpc/sysv.S +5 -7
  164. data/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
  165. data/ext/ffi_c/libffi/src/prep_cif.c +26 -4
  166. data/ext/ffi_c/libffi/src/riscv/ffi.c +79 -10
  167. data/ext/ffi_c/libffi/src/riscv/ffitarget.h +1 -0
  168. data/ext/ffi_c/libffi/src/riscv/sysv.S +86 -7
  169. data/ext/ffi_c/libffi/src/sparc/ffi64.c +16 -0
  170. data/ext/ffi_c/libffi/src/tramp.c +716 -0
  171. data/ext/ffi_c/libffi/src/wasm32/ffi.c +934 -0
  172. data/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
  173. data/ext/ffi_c/libffi/src/x86/ffi.c +128 -49
  174. data/ext/ffi_c/libffi/src/x86/ffi64.c +89 -23
  175. data/ext/ffi_c/libffi/src/x86/ffitarget.h +21 -4
  176. data/ext/ffi_c/libffi/src/x86/ffiw64.c +63 -10
  177. data/ext/ffi_c/libffi/src/x86/internal.h +14 -0
  178. data/ext/ffi_c/libffi/src/x86/internal64.h +14 -0
  179. data/ext/ffi_c/libffi/src/x86/sysv.S +274 -45
  180. data/ext/ffi_c/libffi/src/x86/sysv_intel.S +998 -0
  181. data/ext/ffi_c/libffi/src/x86/unix64.S +190 -4
  182. data/ext/ffi_c/libffi/src/x86/win64.S +32 -10
  183. data/ext/ffi_c/libffi/src/x86/win64_intel.S +3 -2
  184. data/ext/ffi_c/libffi/src/xtensa/ffi.c +16 -8
  185. data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +4 -0
  186. data/ext/ffi_c/libffi/src/xtensa/sysv.S +26 -16
  187. data/ext/ffi_c/libffi/testsuite/Makefile.am +127 -109
  188. data/ext/ffi_c/libffi/testsuite/Makefile.in +144 -88
  189. data/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +54 -0
  190. data/ext/ffi_c/libffi/testsuite/emscripten/build.sh +63 -0
  191. data/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +80 -0
  192. data/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +48 -0
  193. data/ext/ffi_c/libffi/testsuite/emscripten/test.html +7 -0
  194. data/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +51 -0
  195. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +71 -25
  196. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +2 -2
  197. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +7 -2
  198. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +5 -4
  199. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2 -2
  200. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +5 -1
  201. data/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
  202. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +12 -1
  203. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +28 -3
  204. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +9 -8
  205. data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +3 -0
  206. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +5 -0
  207. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +4 -0
  208. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +4 -0
  209. data/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +60 -0
  210. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +8 -9
  211. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +2 -2
  212. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +2 -2
  213. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +2 -2
  214. data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +1 -1
  215. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +63 -0
  216. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +65 -0
  217. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +65 -0
  218. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +67 -0
  219. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +67 -0
  220. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +93 -0
  221. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +61 -0
  222. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +63 -0
  223. data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +90 -0
  224. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -119
  225. data/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +220 -0
  226. data/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +154 -0
  227. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +13 -0
  228. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +11 -0
  229. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +15 -0
  230. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
  231. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +3 -2
  232. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +2 -0
  233. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +2 -0
  234. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +21 -1
  235. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +2 -0
  236. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +2 -0
  237. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +2 -0
  238. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +7 -6
  239. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_simple.c +6 -0
  240. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +18 -0
  241. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +22 -0
  242. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +24 -0
  243. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +29 -0
  244. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +4 -0
  245. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +19 -1
  246. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +21 -1
  247. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +35 -3
  248. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +13 -0
  249. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +19 -0
  250. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +13 -0
  251. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +13 -0
  252. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3float.c +18 -0
  253. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +22 -0
  254. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +13 -0
  255. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +29 -1
  256. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +19 -1
  257. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +24 -0
  258. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +28 -1
  259. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +24 -2
  260. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +39 -1
  261. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +25 -1
  262. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +14 -0
  263. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +14 -1
  264. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +14 -2
  265. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +19 -1
  266. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +19 -1
  267. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +20 -1
  268. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +40 -25
  269. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +40 -3
  270. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +19 -1
  271. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +18 -1
  272. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +18 -3
  273. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +18 -1
  274. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +18 -1
  275. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +19 -1
  276. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +19 -1
  277. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +3 -1
  278. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +9 -1
  279. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +4 -0
  280. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +11 -1
  281. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +22 -3
  282. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +5 -1
  283. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +6 -1
  284. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +9 -1
  285. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +9 -1
  286. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +6 -2
  287. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +9 -1
  288. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +5 -0
  289. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +10 -0
  290. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +3 -0
  291. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +2 -0
  292. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +3 -0
  293. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_struct_va1.c +11 -0
  294. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +3 -0
  295. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +4 -0
  296. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint_va.c +4 -0
  297. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulong_va.c +4 -0
  298. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +2 -0
  299. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +3 -0
  300. data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +1 -0
  301. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +24 -22
  302. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +32 -9
  303. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +1 -1
  304. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +12 -0
  305. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct11.c +21 -5
  306. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
  307. data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
  308. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +10 -1
  309. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +10 -1
  310. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +9 -0
  311. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +9 -0
  312. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +11 -0
  313. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +9 -0
  314. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +11 -0
  315. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +11 -0
  316. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
  317. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
  318. data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
  319. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +1 -1
  320. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +1 -1
  321. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +6 -1
  322. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest.cc +2 -1
  323. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest_ffi_call.cc +1 -0
  324. data/ext/ffi_c/libffi.bsd.mk +2 -2
  325. data/ext/ffi_c/libffi.darwin.mk +1 -1
  326. data/ext/ffi_c/libffi.gnu.mk +2 -2
  327. data/ext/ffi_c/rbffi.h +1 -3
  328. data/ffi.gemspec +15 -9
  329. data/lib/ffi/abstract_memory.rb +44 -0
  330. data/lib/ffi/autopointer.rb +8 -23
  331. data/lib/ffi/compat.rb +43 -0
  332. data/lib/ffi/data_converter.rb +67 -0
  333. data/lib/ffi/dynamic_library.rb +89 -0
  334. data/lib/ffi/enum.rb +18 -11
  335. data/lib/ffi/ffi.rb +6 -0
  336. data/lib/ffi/function.rb +71 -0
  337. data/lib/ffi/io.rb +3 -3
  338. data/lib/ffi/library.rb +65 -77
  339. data/lib/ffi/library_path.rb +109 -0
  340. data/lib/ffi/managedstruct.rb +3 -3
  341. data/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
  342. data/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
  343. data/lib/ffi/platform/aarch64-freebsd12/types.conf +181 -0
  344. data/lib/ffi/platform/aarch64-linux/types.conf +81 -81
  345. data/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
  346. data/lib/ffi/platform/aarch64-windows/types.conf +52 -0
  347. data/lib/ffi/platform/arm-freebsd/types.conf +152 -0
  348. data/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
  349. data/lib/ffi/platform/arm-linux/types.conf +110 -82
  350. data/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
  351. data/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
  352. data/lib/ffi/platform/i386-cygwin/types.conf +1 -1
  353. data/lib/ffi/platform/i386-darwin/types.conf +63 -63
  354. data/lib/ffi/platform/i386-freebsd/types.conf +89 -89
  355. data/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
  356. data/lib/ffi/platform/i386-gnu/types.conf +84 -84
  357. data/lib/ffi/platform/i386-linux/types.conf +77 -77
  358. data/lib/ffi/platform/i386-netbsd/types.conf +87 -87
  359. data/lib/ffi/platform/i386-openbsd/types.conf +89 -89
  360. data/lib/ffi/platform/i386-solaris/types.conf +96 -96
  361. data/lib/ffi/platform/i386-windows/types.conf +43 -96
  362. data/lib/ffi/platform/ia64-linux/types.conf +79 -79
  363. data/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
  364. data/lib/ffi/platform/mips-linux/types.conf +79 -79
  365. data/lib/ffi/platform/mips64-linux/types.conf +81 -81
  366. data/lib/ffi/platform/mips64el-linux/types.conf +81 -81
  367. data/lib/ffi/platform/mipsel-linux/types.conf +79 -79
  368. data/lib/ffi/platform/mipsisa32r6-linux/types.conf +79 -79
  369. data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +79 -79
  370. data/lib/ffi/platform/mipsisa64r6-linux/types.conf +81 -81
  371. data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +81 -81
  372. data/lib/ffi/platform/powerpc-aix/types.conf +155 -155
  373. data/lib/ffi/platform/powerpc-darwin/types.conf +63 -63
  374. data/lib/ffi/platform/powerpc-linux/types.conf +108 -78
  375. data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
  376. data/lib/ffi/platform/powerpc64-linux/types.conf +81 -81
  377. data/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
  378. data/lib/ffi/platform/riscv64-linux/types.conf +104 -0
  379. data/lib/ffi/platform/s390-linux/types.conf +79 -79
  380. data/lib/ffi/platform/s390x-linux/types.conf +79 -79
  381. data/lib/ffi/platform/sparc-linux/types.conf +79 -79
  382. data/lib/ffi/platform/sparc-solaris/types.conf +103 -103
  383. data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
  384. data/lib/ffi/platform/sparcv9-solaris/types.conf +103 -103
  385. data/lib/ffi/platform/sw_64-linux/types.conf +141 -0
  386. data/lib/ffi/platform/x86_64-cygwin/types.conf +1 -1
  387. data/lib/ffi/platform/x86_64-darwin/types.conf +88 -84
  388. data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
  389. data/lib/ffi/platform/x86_64-freebsd/types.conf +90 -90
  390. data/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
  391. data/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
  392. data/lib/ffi/platform/x86_64-linux/types.conf +107 -77
  393. data/lib/ffi/platform/x86_64-msys/types.conf +119 -0
  394. data/lib/ffi/platform/x86_64-netbsd/types.conf +89 -89
  395. data/lib/ffi/platform/x86_64-openbsd/types.conf +86 -86
  396. data/lib/ffi/platform/x86_64-solaris/types.conf +96 -96
  397. data/lib/ffi/platform/x86_64-windows/types.conf +42 -110
  398. data/lib/ffi/platform.rb +43 -20
  399. data/lib/ffi/pointer.rb +26 -20
  400. data/lib/ffi/struct.rb +14 -68
  401. data/lib/ffi/struct_by_reference.rb +72 -0
  402. data/lib/ffi/struct_layout.rb +96 -0
  403. data/lib/ffi/struct_layout_builder.rb +1 -1
  404. data/lib/ffi/tools/const_generator.rb +11 -8
  405. data/lib/ffi/tools/generator.rb +47 -2
  406. data/lib/ffi/tools/generator_task.rb +13 -17
  407. data/lib/ffi/tools/struct_generator.rb +6 -5
  408. data/lib/ffi/tools/types_generator.rb +7 -4
  409. data/lib/ffi/types.rb +33 -7
  410. data/lib/ffi/variadic.rb +20 -18
  411. data/lib/ffi/version.rb +1 -1
  412. data/lib/ffi.rb +10 -3
  413. data/rakelib/ffi_gem_helper.rb +65 -0
  414. data/samples/getlogin.rb +1 -1
  415. data/samples/getpid.rb +1 -1
  416. data/samples/gettimeofday.rb +8 -8
  417. data/samples/hello.rb +2 -1
  418. data/samples/hello_ractor.rb +11 -0
  419. data/samples/inotify.rb +1 -1
  420. data/samples/pty.rb +1 -2
  421. data/samples/qsort.rb +0 -1
  422. data/samples/qsort_ractor.rb +28 -0
  423. data.tar.gz.sig +0 -0
  424. metadata +252 -153
  425. metadata.gz.sig +0 -0
  426. data/.gitignore +0 -22
  427. data/.gitmodules +0 -3
  428. data/.travis.yml +0 -52
  429. data/.yardopts +0 -5
  430. data/appveyor.yml +0 -22
  431. data/ext/ffi_c/Closure.c +0 -54
  432. data/ext/ffi_c/DataConverter.c +0 -91
  433. data/ext/ffi_c/StructByReference.c +0 -190
  434. data/ext/ffi_c/StructByReference.h +0 -50
  435. data/ext/ffi_c/libffi/.travis/build.sh +0 -34
  436. data/ext/ffi_c/libffi/.travis/install.sh +0 -22
  437. data/ext/ffi_c/libffi/.travis/site.exp +0 -18
  438. data/ext/ffi_c/libffi/.travis.yml +0 -34
  439. data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
  440. data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
  441. data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
  442. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +0 -44
  443. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +0 -44
  444. data/ext/ffi_c/win32/stdbool.h +0 -8
  445. data/ext/ffi_c/win32/stdint.h +0 -201
  446. data/samples/sample_helper.rb +0 -6
  447. data/ext/ffi_c/libffi/{.travis → .ci}/ar-lib +0 -0
  448. data/ext/ffi_c/libffi/{.travis → .ci}/compile +0 -0
  449. data/ext/ffi_c/libffi/testsuite/libffi.call/{pyobjc-tc.c → pyobjc_tc.c} +0 -0
  450. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
  451. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_args.c +0 -0
  452. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_float_double.c +0 -0
  453. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +0 -0
  454. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
  455. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +0 -0
  456. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +0 -0
  457. data/lib/ffi/platform/{sparc64-linux → sparcv9-linux}/types.conf +79 -79
@@ -0,0 +1,62 @@
1
+ /* -----------------------------------------------------------------*-C-*-
2
+ ffitarget.h - Copyright (c) 2018-2023 Hood Chatham, Brion Vibber, Kleis Auke Wolthuizen, and others.
3
+
4
+ Target configuration macros for wasm32.
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining
7
+ a copy of this software and associated documentation files (the
8
+ ``Software''), to deal in the Software without restriction, including
9
+ without limitation the rights to use, copy, modify, merge, publish,
10
+ distribute, sublicense, and/or sell copies of the Software, and to
11
+ permit persons to whom the Software is furnished to do so, subject to
12
+ the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included
15
+ in all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
18
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
21
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
22
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24
+ DEALINGS IN THE SOFTWARE.
25
+
26
+ ----------------------------------------------------------------------- */
27
+
28
+ #ifndef LIBFFI_TARGET_H
29
+ #define LIBFFI_TARGET_H
30
+
31
+ #ifndef LIBFFI_H
32
+ #error "Please do not include ffitarget.h directly into your source. Use ffi.h instead."
33
+ #endif
34
+
35
+ /* ---- Generic type definitions ----------------------------------------- */
36
+
37
+ typedef unsigned long ffi_arg;
38
+ typedef signed long ffi_sarg;
39
+
40
+ // TODO: https://github.com/emscripten-core/emscripten/issues/9868
41
+ typedef void (*ffi_fp)(void);
42
+
43
+ typedef enum ffi_abi {
44
+ FFI_FIRST_ABI = 0,
45
+ FFI_WASM32, // "raw", no structures, varargs, or closures (not implemented!)
46
+ FFI_WASM32_EMSCRIPTEN, // structures, varargs, and split 64-bit params
47
+ FFI_LAST_ABI,
48
+ #ifdef __EMSCRIPTEN__
49
+ FFI_DEFAULT_ABI = FFI_WASM32_EMSCRIPTEN
50
+ #else
51
+ FFI_DEFAULT_ABI = FFI_WASM32
52
+ #endif
53
+ } ffi_abi;
54
+
55
+ #define FFI_CLOSURES 1
56
+ // #define FFI_GO_CLOSURES 0
57
+ #define FFI_TRAMPOLINE_SIZE 4
58
+ // #define FFI_NATIVE_RAW_API 0
59
+ #define FFI_TARGET_SPECIFIC_VARIADIC 1
60
+ #define FFI_EXTRA_CIF_FIELDS unsigned int nfixedargs
61
+
62
+ #endif
@@ -1,5 +1,5 @@
1
1
  /* -----------------------------------------------------------------------
2
- ffi.c - Copyright (c) 2017 Anthony Green
2
+ ffi.c - Copyright (c) 2017, 2022 Anthony Green
3
3
  Copyright (c) 1996, 1998, 1999, 2001, 2007, 2008 Red Hat, Inc.
4
4
  Copyright (c) 2002 Ranjit Mathew
5
5
  Copyright (c) 2002 Bo Thorsen
@@ -29,11 +29,12 @@
29
29
  DEALINGS IN THE SOFTWARE.
30
30
  ----------------------------------------------------------------------- */
31
31
 
32
- #ifndef __x86_64__
32
+ #if defined(__i386__) || defined(_M_IX86)
33
33
  #include <ffi.h>
34
34
  #include <ffi_common.h>
35
35
  #include <stdint.h>
36
36
  #include <stdlib.h>
37
+ #include <tramp.h>
37
38
  #include "internal.h"
38
39
 
39
40
  /* Force FFI_TYPE_LONGDOUBLE to be different than FFI_TYPE_DOUBLE;
@@ -51,6 +52,13 @@
51
52
  # define __declspec(x) __attribute__((x))
52
53
  #endif
53
54
 
55
+ #if defined(_MSC_VER) && defined(_M_IX86)
56
+ /* Stack is not 16-byte aligned on Windows. */
57
+ #define STACK_ALIGN(bytes) (bytes)
58
+ #else
59
+ #define STACK_ALIGN(bytes) FFI_ALIGN (bytes, 16)
60
+ #endif
61
+
54
62
  /* Perform machine dependent cif processing. */
55
63
  ffi_status FFI_HIDDEN
56
64
  ffi_prep_cif_machdep(ffi_cif *cif)
@@ -109,35 +117,37 @@ ffi_prep_cif_machdep(ffi_cif *cif)
109
117
  flags = X86_RET_INT64;
110
118
  break;
111
119
  case FFI_TYPE_STRUCT:
112
- #ifndef X86
113
- /* ??? This should be a different ABI rather than an ifdef. */
114
- if (cif->rtype->size == 1)
115
- flags = X86_RET_STRUCT_1B;
116
- else if (cif->rtype->size == 2)
117
- flags = X86_RET_STRUCT_2B;
118
- else if (cif->rtype->size == 4)
119
- flags = X86_RET_INT32;
120
- else if (cif->rtype->size == 8)
121
- flags = X86_RET_INT64;
122
- else
120
+ {
121
+ #ifdef X86_WIN32
122
+ size_t size = cif->rtype->size;
123
+ if (size == 1)
124
+ flags = X86_RET_STRUCT_1B;
125
+ else if (size == 2)
126
+ flags = X86_RET_STRUCT_2B;
127
+ else if (size == 4)
128
+ flags = X86_RET_INT32;
129
+ else if (size == 8)
130
+ flags = X86_RET_INT64;
131
+ else
123
132
  #endif
124
- {
125
- do_struct:
126
- switch (cabi)
127
- {
128
- case FFI_THISCALL:
129
- case FFI_FASTCALL:
130
- case FFI_STDCALL:
131
- case FFI_MS_CDECL:
132
- flags = X86_RET_STRUCTARG;
133
- break;
134
- default:
135
- flags = X86_RET_STRUCTPOP;
136
- break;
137
- }
138
- /* Allocate space for return value pointer. */
139
- bytes += FFI_ALIGN (sizeof(void*), FFI_SIZEOF_ARG);
140
- }
133
+ {
134
+ do_struct:
135
+ switch (cabi)
136
+ {
137
+ case FFI_THISCALL:
138
+ case FFI_FASTCALL:
139
+ case FFI_STDCALL:
140
+ case FFI_MS_CDECL:
141
+ flags = X86_RET_STRUCTARG;
142
+ break;
143
+ default:
144
+ flags = X86_RET_STRUCTPOP;
145
+ break;
146
+ }
147
+ /* Allocate space for return value pointer. */
148
+ bytes += FFI_ALIGN (sizeof(void*), FFI_SIZEOF_ARG);
149
+ }
150
+ }
141
151
  break;
142
152
  case FFI_TYPE_COMPLEX:
143
153
  switch (cif->rtype->elements[0]->type)
@@ -174,10 +184,15 @@ ffi_prep_cif_machdep(ffi_cif *cif)
174
184
  {
175
185
  ffi_type *t = cif->arg_types[i];
176
186
 
177
- bytes = FFI_ALIGN (bytes, t->alignment);
187
+ #if defined(X86_WIN32)
188
+ if (cabi == FFI_STDCALL)
189
+ bytes = FFI_ALIGN (bytes, FFI_SIZEOF_ARG);
190
+ else
191
+ #endif
192
+ bytes = FFI_ALIGN (bytes, t->alignment);
178
193
  bytes += FFI_ALIGN (t->size, FFI_SIZEOF_ARG);
179
194
  }
180
- cif->bytes = FFI_ALIGN (bytes, 16);
195
+ cif->bytes = bytes;
181
196
 
182
197
  return FFI_OK;
183
198
  }
@@ -248,6 +263,13 @@ static const struct abi_params abi_params[FFI_LAST_ABI] = {
248
263
 
249
264
  extern void FFI_DECLARE_FASTCALL ffi_call_i386(struct call_frame *, char *) FFI_HIDDEN;
250
265
 
266
+ /* We perform some black magic here to use some of the parent's stack frame in
267
+ * ffi_call_i386() that breaks with the MSVC compiler with the /RTCs or /GZ
268
+ * flags. Disable the 'Stack frame run time error checking' for this function
269
+ * so we don't hit weird exceptions in debug builds. */
270
+ #if defined(_MSC_VER)
271
+ #pragma runtime_checks("s", off)
272
+ #endif
251
273
  static void
252
274
  ffi_call_int (ffi_cif *cif, void (*fn)(void), void *rvalue,
253
275
  void **avalue, void *closure)
@@ -285,7 +307,7 @@ ffi_call_int (ffi_cif *cif, void (*fn)(void), void *rvalue,
285
307
  }
286
308
  }
287
309
 
288
- bytes = cif->bytes;
310
+ bytes = STACK_ALIGN (cif->bytes);
289
311
  stack = alloca(bytes + sizeof(*frame) + rsize);
290
312
  argp = (dir < 0 ? stack + bytes : stack);
291
313
  frame = (struct call_frame *)(stack + bytes);
@@ -346,7 +368,7 @@ ffi_call_int (ffi_cif *cif, void (*fn)(void), void *rvalue,
346
368
  size_t align = FFI_SIZEOF_ARG;
347
369
 
348
370
  /* Issue 434: For thiscall and fastcall, if the paramter passed
349
- as 64-bit integer or struct, all following integer paramters
371
+ as 64-bit integer or struct, all following integer parameters
350
372
  will be passed on stack. */
351
373
  if ((cabi == FFI_THISCALL || cabi == FFI_FASTCALL)
352
374
  && (t == FFI_TYPE_SINT64
@@ -363,7 +385,7 @@ ffi_call_int (ffi_cif *cif, void (*fn)(void), void *rvalue,
363
385
  cases. */
364
386
  if (t == FFI_TYPE_STRUCT && ty->alignment >= 16)
365
387
  align = 16;
366
-
388
+
367
389
  if (dir < 0)
368
390
  {
369
391
  /* ??? These reverse argument ABIs are probably too old
@@ -383,6 +405,9 @@ ffi_call_int (ffi_cif *cif, void (*fn)(void), void *rvalue,
383
405
 
384
406
  ffi_call_i386 (frame, stack);
385
407
  }
408
+ #if defined(_MSC_VER)
409
+ #pragma runtime_checks("s", restore)
410
+ #endif
386
411
 
387
412
  void
388
413
  ffi_call (ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue)
@@ -390,18 +415,25 @@ ffi_call (ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue)
390
415
  ffi_call_int (cif, fn, rvalue, avalue, NULL);
391
416
  }
392
417
 
418
+ #ifdef FFI_GO_CLOSURES
393
419
  void
394
420
  ffi_call_go (ffi_cif *cif, void (*fn)(void), void *rvalue,
395
421
  void **avalue, void *closure)
396
422
  {
397
423
  ffi_call_int (cif, fn, rvalue, avalue, closure);
398
424
  }
425
+ #endif
399
426
 
400
427
  /** private members **/
401
428
 
402
429
  void FFI_HIDDEN ffi_closure_i386(void);
403
430
  void FFI_HIDDEN ffi_closure_STDCALL(void);
404
431
  void FFI_HIDDEN ffi_closure_REGISTER(void);
432
+ #if defined(FFI_EXEC_STATIC_TRAMP)
433
+ void FFI_HIDDEN ffi_closure_i386_alt(void);
434
+ void FFI_HIDDEN ffi_closure_STDCALL_alt(void);
435
+ void FFI_HIDDEN ffi_closure_REGISTER_alt(void);
436
+ #endif
405
437
 
406
438
  struct closure_frame
407
439
  {
@@ -429,7 +461,7 @@ ffi_closure_inner (struct closure_frame *frame, char *stack)
429
461
  rvalue = frame->rettemp;
430
462
  pabi = &abi_params[cabi];
431
463
  dir = pabi->dir;
432
- argp = (dir < 0 ? stack + cif->bytes : stack);
464
+ argp = (dir < 0 ? stack + STACK_ALIGN (cif->bytes) : stack);
433
465
 
434
466
  switch (flags)
435
467
  {
@@ -485,7 +517,7 @@ ffi_closure_inner (struct closure_frame *frame, char *stack)
485
517
  align = 16;
486
518
 
487
519
  /* Issue 434: For thiscall and fastcall, if the paramter passed
488
- as 64-bit integer or struct, all following integer paramters
520
+ as 64-bit integer or struct, all following integer parameters
489
521
  will be passed on stack. */
490
522
  if ((cabi == FFI_THISCALL || cabi == FFI_FASTCALL)
491
523
  && (t == FFI_TYPE_SINT64
@@ -513,10 +545,17 @@ ffi_closure_inner (struct closure_frame *frame, char *stack)
513
545
 
514
546
  frame->fun (cif, rvalue, avalue, frame->user_data);
515
547
 
516
- if (cabi == FFI_STDCALL)
517
- return flags + (cif->bytes << X86_RET_POP_SHIFT);
518
- else
519
- return flags;
548
+ switch (cabi)
549
+ {
550
+ case FFI_STDCALL:
551
+ return flags | (cif->bytes << X86_RET_POP_SHIFT);
552
+ case FFI_THISCALL:
553
+ case FFI_FASTCALL:
554
+ return flags | ((cif->bytes - (narg_reg * FFI_SIZEOF_ARG))
555
+ << X86_RET_POP_SHIFT);
556
+ default:
557
+ return flags;
558
+ }
520
559
  }
521
560
 
522
561
  ffi_status
@@ -533,30 +572,53 @@ ffi_prep_closure_loc (ffi_closure* closure,
533
572
  switch (cif->abi)
534
573
  {
535
574
  case FFI_SYSV:
536
- case FFI_THISCALL:
537
- case FFI_FASTCALL:
538
575
  case FFI_MS_CDECL:
539
576
  dest = ffi_closure_i386;
540
577
  break;
541
578
  case FFI_STDCALL:
579
+ case FFI_THISCALL:
580
+ case FFI_FASTCALL:
542
581
  case FFI_PASCAL:
543
582
  dest = ffi_closure_STDCALL;
544
583
  break;
545
584
  case FFI_REGISTER:
546
585
  dest = ffi_closure_REGISTER;
547
586
  op = 0x68; /* pushl imm */
587
+ break;
548
588
  default:
549
589
  return FFI_BAD_ABI;
550
590
  }
551
591
 
592
+ #if defined(FFI_EXEC_STATIC_TRAMP)
593
+ if (ffi_tramp_is_present(closure))
594
+ {
595
+ /* Initialize the static trampoline's parameters. */
596
+ if (dest == ffi_closure_i386)
597
+ dest = ffi_closure_i386_alt;
598
+ else if (dest == ffi_closure_STDCALL)
599
+ dest = ffi_closure_STDCALL_alt;
600
+ else
601
+ dest = ffi_closure_REGISTER_alt;
602
+ ffi_tramp_set_parms (closure->ftramp, dest, closure);
603
+ goto out;
604
+ }
605
+ #endif
606
+
607
+ /* Initialize the dynamic trampoline. */
608
+ /* endbr32. */
609
+ *(UINT32 *) tramp = 0xfb1e0ff3;
610
+
552
611
  /* movl or pushl immediate. */
553
- tramp[0] = op;
554
- *(void **)(tramp + 1) = codeloc;
612
+ tramp[4] = op;
613
+ *(void **)(tramp + 5) = codeloc;
555
614
 
556
615
  /* jmp dest */
557
- tramp[5] = 0xe9;
558
- *(unsigned *)(tramp + 6) = (unsigned)dest - ((unsigned)codeloc + 10);
616
+ tramp[9] = 0xe9;
617
+ *(unsigned *)(tramp + 10) = (unsigned)dest - ((unsigned)codeloc + 14);
559
618
 
619
+ #if defined(FFI_EXEC_STATIC_TRAMP)
620
+ out:
621
+ #endif
560
622
  closure->cif = cif;
561
623
  closure->fun = fun;
562
624
  closure->user_data = user_data;
@@ -564,6 +626,8 @@ ffi_prep_closure_loc (ffi_closure* closure,
564
626
  return FFI_OK;
565
627
  }
566
628
 
629
+ #ifdef FFI_GO_CLOSURES
630
+
567
631
  void FFI_HIDDEN ffi_go_closure_EAX(void);
568
632
  void FFI_HIDDEN ffi_go_closure_ECX(void);
569
633
  void FFI_HIDDEN ffi_go_closure_STDCALL(void);
@@ -600,6 +664,8 @@ ffi_prep_go_closure (ffi_go_closure* closure, ffi_cif* cif,
600
664
  return FFI_OK;
601
665
  }
602
666
 
667
+ #endif /* FFI_GO_CLOSURES */
668
+
603
669
  /* ------- Native raw API support -------------------------------- */
604
670
 
605
671
  #if !FFI_NO_RAW_API
@@ -692,7 +758,7 @@ ffi_raw_call(ffi_cif *cif, void (*fn)(void), void *rvalue, ffi_raw *avalue)
692
758
  }
693
759
  }
694
760
 
695
- bytes = cif->bytes;
761
+ bytes = STACK_ALIGN (cif->bytes);
696
762
  argp = stack =
697
763
  (void *)((uintptr_t)alloca(bytes + sizeof(*frame) + rsize + 15) & ~16);
698
764
  frame = (struct call_frame *)(stack + bytes);
@@ -750,4 +816,17 @@ ffi_raw_call(ffi_cif *cif, void (*fn)(void), void *rvalue, ffi_raw *avalue)
750
816
  ffi_call_i386 (frame, stack);
751
817
  }
752
818
  #endif /* !FFI_NO_RAW_API */
753
- #endif /* !__x86_64__ */
819
+
820
+ #if defined(FFI_EXEC_STATIC_TRAMP)
821
+ void *
822
+ ffi_tramp_arch (size_t *tramp_size, size_t *map_size)
823
+ {
824
+ extern void *trampoline_code_table;
825
+
826
+ *map_size = X86_TRAMP_MAP_SIZE;
827
+ *tramp_size = X86_TRAMP_SIZE;
828
+ return &trampoline_code_table;
829
+ }
830
+ #endif
831
+
832
+ #endif /* __i386__ */
@@ -1,5 +1,5 @@
1
1
  /* -----------------------------------------------------------------------
2
- ffi64.c - Copyright (c) 2011, 2018 Anthony Green
2
+ ffi64.c - Copyright (c) 2011, 2018, 2022 Anthony Green
3
3
  Copyright (c) 2013 The Written Word, Inc.
4
4
  Copyright (c) 2008, 2010 Red Hat, Inc.
5
5
  Copyright (c) 2002, 2007 Bo Thorsen <bo@suse.de>
@@ -33,6 +33,7 @@
33
33
  #include <stdlib.h>
34
34
  #include <stdarg.h>
35
35
  #include <stdint.h>
36
+ #include <tramp.h>
36
37
  #include "internal64.h"
37
38
 
38
39
  #ifdef __x86_64__
@@ -217,7 +218,8 @@ classify_argument (ffi_type *type, enum x86_64_reg_class classes[],
217
218
  case FFI_TYPE_STRUCT:
218
219
  {
219
220
  const size_t UNITS_PER_WORD = 8;
220
- size_t words = (type->size + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
221
+ size_t words = (type->size + byte_offset + UNITS_PER_WORD - 1)
222
+ / UNITS_PER_WORD;
221
223
  ffi_type **ptr;
222
224
  unsigned int i;
223
225
  enum x86_64_reg_class subclasses[MAX_CLASSES];
@@ -241,14 +243,15 @@ classify_argument (ffi_type *type, enum x86_64_reg_class classes[],
241
243
  /* Merge the fields of structure. */
242
244
  for (ptr = type->elements; *ptr != NULL; ptr++)
243
245
  {
244
- size_t num;
246
+ size_t num, pos;
245
247
 
246
248
  byte_offset = FFI_ALIGN (byte_offset, (*ptr)->alignment);
247
249
 
248
250
  num = classify_argument (*ptr, subclasses, byte_offset % 8);
249
251
  if (num == 0)
250
252
  return 0;
251
- for (i = 0; i < num; i++)
253
+ pos = byte_offset / 8;
254
+ for (i = 0; i < num && (i + pos) < words; i++)
252
255
  {
253
256
  size_t pos = byte_offset / 8;
254
257
  classes[i + pos] =
@@ -282,7 +285,7 @@ classify_argument (ffi_type *type, enum x86_64_reg_class classes[],
282
285
 
283
286
  /* The X86_64_SSEUP_CLASS should be always preceded by
284
287
  X86_64_SSE_CLASS or X86_64_SSEUP_CLASS. */
285
- if (classes[i] == X86_64_SSEUP_CLASS
288
+ if (i > 1 && classes[i] == X86_64_SSEUP_CLASS
286
289
  && classes[i - 1] != X86_64_SSE_CLASS
287
290
  && classes[i - 1] != X86_64_SSEUP_CLASS)
288
291
  {
@@ -293,7 +296,7 @@ classify_argument (ffi_type *type, enum x86_64_reg_class classes[],
293
296
 
294
297
  /* If X86_64_X87UP_CLASS isn't preceded by X86_64_X87_CLASS,
295
298
  everything should be passed in memory. */
296
- if (classes[i] == X86_64_X87UP_CLASS
299
+ if (i > 1 && classes[i] == X86_64_X87UP_CLASS
297
300
  && (classes[i - 1] != X86_64_X87_CLASS))
298
301
  {
299
302
  /* The first one should never be X86_64_X87UP_CLASS. */
@@ -394,7 +397,7 @@ extern ffi_status
394
397
  ffi_prep_cif_machdep_efi64(ffi_cif *cif);
395
398
  #endif
396
399
 
397
- ffi_status
400
+ ffi_status FFI_HIDDEN
398
401
  ffi_prep_cif_machdep (ffi_cif *cif)
399
402
  {
400
403
  int gprcount, ssecount, i, avn, ngpr, nsse;
@@ -451,9 +454,11 @@ ffi_prep_cif_machdep (ffi_cif *cif)
451
454
  case FFI_TYPE_DOUBLE:
452
455
  flags = UNIX64_RET_XMM64;
453
456
  break;
457
+ #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
454
458
  case FFI_TYPE_LONGDOUBLE:
455
459
  flags = UNIX64_RET_X87;
456
460
  break;
461
+ #endif
457
462
  case FFI_TYPE_STRUCT:
458
463
  n = examine_argument (cif->rtype, classes, 1, &ngpr, &nsse);
459
464
  if (n == 0)
@@ -576,6 +581,9 @@ ffi_call_int (ffi_cif *cif, void (*fn)(void), void *rvalue,
576
581
  flags = UNIX64_RET_VOID;
577
582
  }
578
583
 
584
+ arg_types = cif->arg_types;
585
+ avn = cif->nargs;
586
+
579
587
  /* Allocate the space for the arguments, plus 4 words of temp space. */
580
588
  stack = alloca (sizeof (struct register_args) + cif->bytes + 4*8);
581
589
  reg_args = (struct register_args *) stack;
@@ -590,9 +598,6 @@ ffi_call_int (ffi_cif *cif, void (*fn)(void), void *rvalue,
590
598
  if (flags & UNIX64_FLAG_RET_IN_MEM)
591
599
  reg_args->gpr[gprcount++] = (unsigned long) rvalue;
592
600
 
593
- avn = cif->nargs;
594
- arg_types = cif->arg_types;
595
-
596
601
  for (i = 0; i < avn; ++i)
597
602
  {
598
603
  size_t n, size = arg_types[i]->size;
@@ -608,11 +613,12 @@ ffi_call_int (ffi_cif *cif, void (*fn)(void), void *rvalue,
608
613
  if (align < 8)
609
614
  align = 8;
610
615
 
611
- /* Pass this argument in memory. */
612
- argp = (void *) FFI_ALIGN (argp, align);
613
- memcpy (argp, avalue[i], size);
614
- argp += size;
615
- }
616
+ /* Pass this argument in memory. */
617
+ argp = (void *) FFI_ALIGN (argp, align);
618
+ memcpy (argp, avalue[i], size);
619
+
620
+ argp += size;
621
+ }
616
622
  else
617
623
  {
618
624
  /* The argument is passed entirely in registers. */
@@ -676,6 +682,24 @@ ffi_call_efi64(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue);
676
682
  void
677
683
  ffi_call (ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue)
678
684
  {
685
+ ffi_type **arg_types = cif->arg_types;
686
+ int i, nargs = cif->nargs;
687
+ const int max_reg_struct_size = cif->abi == FFI_GNUW64 ? 8 : 16;
688
+
689
+ /* If we have any large structure arguments, make a copy so we are passing
690
+ by value. */
691
+ for (i = 0; i < nargs; i++)
692
+ {
693
+ ffi_type *at = arg_types[i];
694
+ int size = at->size;
695
+ if (at->type == FFI_TYPE_STRUCT && size > max_reg_struct_size)
696
+ {
697
+ char *argcopy = alloca (size);
698
+ memcpy (argcopy, avalue[i], size);
699
+ avalue[i] = argcopy;
700
+ }
701
+ }
702
+
679
703
  #ifndef __ILP32__
680
704
  if (cif->abi == FFI_EFI64 || cif->abi == FFI_GNUW64)
681
705
  {
@@ -686,6 +710,8 @@ ffi_call (ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue)
686
710
  ffi_call_int (cif, fn, rvalue, avalue, NULL);
687
711
  }
688
712
 
713
+ #ifdef FFI_GO_CLOSURES
714
+
689
715
  #ifndef __ILP32__
690
716
  extern void
691
717
  ffi_call_go_efi64(ffi_cif *cif, void (*fn)(void), void *rvalue,
@@ -706,9 +732,14 @@ ffi_call_go (ffi_cif *cif, void (*fn)(void), void *rvalue,
706
732
  ffi_call_int (cif, fn, rvalue, avalue, closure);
707
733
  }
708
734
 
735
+ #endif /* FFI_GO_CLOSURES */
709
736
 
710
737
  extern void ffi_closure_unix64(void) FFI_HIDDEN;
711
738
  extern void ffi_closure_unix64_sse(void) FFI_HIDDEN;
739
+ #if defined(FFI_EXEC_STATIC_TRAMP)
740
+ extern void ffi_closure_unix64_alt(void) FFI_HIDDEN;
741
+ extern void ffi_closure_unix64_sse_alt(void) FFI_HIDDEN;
742
+ #endif
712
743
 
713
744
  #ifndef __ILP32__
714
745
  extern ffi_status
@@ -726,13 +757,15 @@ ffi_prep_closure_loc (ffi_closure* closure,
726
757
  void *user_data,
727
758
  void *codeloc)
728
759
  {
729
- static const unsigned char trampoline[16] = {
730
- /* leaq -0x7(%rip),%r10 # 0x0 */
731
- 0x4c, 0x8d, 0x15, 0xf9, 0xff, 0xff, 0xff,
732
- /* jmpq *0x3(%rip) # 0x10 */
733
- 0xff, 0x25, 0x03, 0x00, 0x00, 0x00,
734
- /* nopl (%rax) */
735
- 0x0f, 0x1f, 0x00
760
+ static const unsigned char trampoline[24] = {
761
+ /* endbr64 */
762
+ 0xf3, 0x0f, 0x1e, 0xfa,
763
+ /* leaq -0xb(%rip),%r10 # 0x0 */
764
+ 0x4c, 0x8d, 0x15, 0xf5, 0xff, 0xff, 0xff,
765
+ /* jmpq *0x7(%rip) # 0x18 */
766
+ 0xff, 0x25, 0x07, 0x00, 0x00, 0x00,
767
+ /* nopl 0(%rax) */
768
+ 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00
736
769
  };
737
770
  void (*dest)(void);
738
771
  char *tramp = closure->tramp;
@@ -749,9 +782,26 @@ ffi_prep_closure_loc (ffi_closure* closure,
749
782
  else
750
783
  dest = ffi_closure_unix64;
751
784
 
785
+ #if defined(FFI_EXEC_STATIC_TRAMP)
786
+ if (ffi_tramp_is_present(closure))
787
+ {
788
+ /* Initialize the static trampoline's parameters. */
789
+ if (dest == ffi_closure_unix64_sse)
790
+ dest = ffi_closure_unix64_sse_alt;
791
+ else
792
+ dest = ffi_closure_unix64_alt;
793
+ ffi_tramp_set_parms (closure->ftramp, dest, closure);
794
+ goto out;
795
+ }
796
+ #endif
797
+
798
+ /* Initialize the dynamic trampoline. */
752
799
  memcpy (tramp, trampoline, sizeof(trampoline));
753
- *(UINT64 *)(tramp + 16) = (uintptr_t)dest;
800
+ *(UINT64 *)(tramp + sizeof (trampoline)) = (uintptr_t)dest;
754
801
 
802
+ #if defined(FFI_EXEC_STATIC_TRAMP)
803
+ out:
804
+ #endif
755
805
  closure->cif = cif;
756
806
  closure->fun = fun;
757
807
  closure->user_data = user_data;
@@ -852,6 +902,8 @@ ffi_closure_unix64_inner(ffi_cif *cif,
852
902
  return flags;
853
903
  }
854
904
 
905
+ #ifdef FFI_GO_CLOSURES
906
+
855
907
  extern void ffi_go_closure_unix64(void) FFI_HIDDEN;
856
908
  extern void ffi_go_closure_unix64_sse(void) FFI_HIDDEN;
857
909
 
@@ -881,4 +933,18 @@ ffi_prep_go_closure (ffi_go_closure* closure, ffi_cif* cif,
881
933
  return FFI_OK;
882
934
  }
883
935
 
936
+ #endif /* FFI_GO_CLOSURES */
937
+
938
+ #if defined(FFI_EXEC_STATIC_TRAMP)
939
+ void *
940
+ ffi_tramp_arch (size_t *tramp_size, size_t *map_size)
941
+ {
942
+ extern void *trampoline_code_table;
943
+
944
+ *map_size = UNIX64_TRAMP_MAP_SIZE;
945
+ *tramp_size = UNIX64_TRAMP_SIZE;
946
+ return &trampoline_code_table;
947
+ }
948
+ #endif
949
+
884
950
  #endif /* __x86_64__ */
@@ -41,6 +41,9 @@
41
41
 
42
42
  #if defined (X86_64) && defined (__i386__)
43
43
  #undef X86_64
44
+ #warning ******************************************************
45
+ #warning ********** X86 IS DEFINED ****************************
46
+ #warning ******************************************************
44
47
  #define X86
45
48
  #endif
46
49
 
@@ -85,9 +88,9 @@ typedef enum ffi_abi {
85
88
  FFI_LAST_ABI,
86
89
  #ifdef __GNUC__
87
90
  FFI_DEFAULT_ABI = FFI_GNUW64
88
- #else
91
+ #else
89
92
  FFI_DEFAULT_ABI = FFI_WIN64
90
- #endif
93
+ #endif
91
94
 
92
95
  #elif defined(X86_64) || (defined (__x86_64__) && defined (X86_DARWIN))
93
96
  FFI_FIRST_ABI = 1,
@@ -136,12 +139,26 @@ typedef enum ffi_abi {
136
139
 
137
140
  #if defined (X86_64) || defined(X86_WIN64) \
138
141
  || (defined (__x86_64__) && defined (X86_DARWIN))
139
- # define FFI_TRAMPOLINE_SIZE 24
142
+ /* 4 bytes of ENDBR64 + 7 bytes of LEA + 6 bytes of JMP + 7 bytes of NOP
143
+ + 8 bytes of pointer. */
144
+ # define FFI_TRAMPOLINE_SIZE 32
140
145
  # define FFI_NATIVE_RAW_API 0
141
146
  #else
142
- # define FFI_TRAMPOLINE_SIZE 12
147
+ /* 4 bytes of ENDBR32 + 5 bytes of MOV + 5 bytes of JMP + 2 unused
148
+ bytes. */
149
+ # define FFI_TRAMPOLINE_SIZE 16
143
150
  # define FFI_NATIVE_RAW_API 1 /* x86 has native raw api support */
144
151
  #endif
145
152
 
153
+ #if !defined(GENERATE_LIBFFI_MAP) && defined(__CET__)
154
+ # include <cet.h>
155
+ # if (__CET__ & 1) != 0
156
+ # define ENDBR_PRESENT
157
+ # endif
158
+ # define _CET_NOTRACK notrack
159
+ #else
160
+ # define _CET_ENDBR
161
+ # define _CET_NOTRACK
146
162
  #endif
147
163
 
164
+ #endif