ffi 1.11.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (542) hide show
  1. checksums.yaml +7 -0
  2. data/.appveyor.yml +27 -0
  3. data/.gitignore +25 -0
  4. data/.gitmodules +4 -0
  5. data/.travis.yml +42 -0
  6. data/.yardopts +5 -0
  7. data/CHANGELOG.md +147 -0
  8. data/COPYING +49 -0
  9. data/Gemfile +15 -0
  10. data/LICENSE +24 -0
  11. data/LICENSE.SPECS +22 -0
  12. data/README.md +115 -0
  13. data/Rakefile +196 -0
  14. data/ext/ffi_c/AbstractMemory.c +1109 -0
  15. data/ext/ffi_c/AbstractMemory.h +175 -0
  16. data/ext/ffi_c/ArrayType.c +162 -0
  17. data/ext/ffi_c/ArrayType.h +59 -0
  18. data/ext/ffi_c/Buffer.c +365 -0
  19. data/ext/ffi_c/Call.c +503 -0
  20. data/ext/ffi_c/Call.h +107 -0
  21. data/ext/ffi_c/ClosurePool.c +283 -0
  22. data/ext/ffi_c/ClosurePool.h +57 -0
  23. data/ext/ffi_c/DynamicLibrary.c +339 -0
  24. data/ext/ffi_c/DynamicLibrary.h +98 -0
  25. data/ext/ffi_c/Function.c +917 -0
  26. data/ext/ffi_c/Function.h +87 -0
  27. data/ext/ffi_c/FunctionInfo.c +271 -0
  28. data/ext/ffi_c/LastError.c +229 -0
  29. data/ext/ffi_c/LastError.h +47 -0
  30. data/ext/ffi_c/LongDouble.c +63 -0
  31. data/ext/ffi_c/LongDouble.h +51 -0
  32. data/ext/ffi_c/MappedType.c +168 -0
  33. data/ext/ffi_c/MappedType.h +59 -0
  34. data/ext/ffi_c/MemoryPointer.c +197 -0
  35. data/ext/ffi_c/MemoryPointer.h +53 -0
  36. data/ext/ffi_c/MethodHandle.c +358 -0
  37. data/ext/ffi_c/MethodHandle.h +55 -0
  38. data/ext/ffi_c/Platform.c +82 -0
  39. data/ext/ffi_c/Platform.h +45 -0
  40. data/ext/ffi_c/Pointer.c +508 -0
  41. data/ext/ffi_c/Pointer.h +63 -0
  42. data/ext/ffi_c/Struct.c +829 -0
  43. data/ext/ffi_c/Struct.h +106 -0
  44. data/ext/ffi_c/StructByValue.c +150 -0
  45. data/ext/ffi_c/StructByValue.h +55 -0
  46. data/ext/ffi_c/StructLayout.c +698 -0
  47. data/ext/ffi_c/Thread.c +137 -0
  48. data/ext/ffi_c/Thread.h +84 -0
  49. data/ext/ffi_c/Type.c +379 -0
  50. data/ext/ffi_c/Type.h +61 -0
  51. data/ext/ffi_c/Types.c +139 -0
  52. data/ext/ffi_c/Types.h +89 -0
  53. data/ext/ffi_c/Variadic.c +298 -0
  54. data/ext/ffi_c/compat.h +78 -0
  55. data/ext/ffi_c/extconf.rb +86 -0
  56. data/ext/ffi_c/ffi.c +93 -0
  57. data/ext/ffi_c/libffi.bsd.mk +40 -0
  58. data/ext/ffi_c/libffi.darwin.mk +105 -0
  59. data/ext/ffi_c/libffi.gnu.mk +32 -0
  60. data/ext/ffi_c/libffi.mk +18 -0
  61. data/ext/ffi_c/libffi.vc.mk +26 -0
  62. data/ext/ffi_c/libffi.vc64.mk +26 -0
  63. data/ext/ffi_c/libffi/.appveyor.yml +66 -0
  64. data/ext/ffi_c/libffi/.gitattributes +4 -0
  65. data/ext/ffi_c/libffi/.github/issue_template.md +10 -0
  66. data/ext/ffi_c/libffi/.gitignore +38 -0
  67. data/ext/ffi_c/libffi/.travis.yml +63 -0
  68. data/ext/ffi_c/libffi/.travis/ar-lib +270 -0
  69. data/ext/ffi_c/libffi/.travis/build-in-container.sh +22 -0
  70. data/ext/ffi_c/libffi/.travis/build.sh +110 -0
  71. data/ext/ffi_c/libffi/.travis/compile +351 -0
  72. data/ext/ffi_c/libffi/.travis/install.sh +43 -0
  73. data/ext/ffi_c/libffi/.travis/moxie-sim.exp +60 -0
  74. data/ext/ffi_c/libffi/.travis/site.exp +18 -0
  75. data/ext/ffi_c/libffi/ChangeLog.libffi +584 -0
  76. data/ext/ffi_c/libffi/ChangeLog.libffi-3.1 +6000 -0
  77. data/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
  78. data/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
  79. data/ext/ffi_c/libffi/LICENSE +21 -0
  80. data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +353 -0
  81. data/ext/ffi_c/libffi/Makefile.am +158 -0
  82. data/ext/ffi_c/libffi/README.md +470 -0
  83. data/ext/ffi_c/libffi/acinclude.m4 +479 -0
  84. data/ext/ffi_c/libffi/autogen.sh +2 -0
  85. data/ext/ffi_c/libffi/config.guess +1466 -0
  86. data/ext/ffi_c/libffi/config.sub +1836 -0
  87. data/ext/ffi_c/libffi/configure.ac +394 -0
  88. data/ext/ffi_c/libffi/configure.host +303 -0
  89. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +203 -0
  90. data/ext/ffi_c/libffi/include/Makefile.am +9 -0
  91. data/ext/ffi_c/libffi/include/ffi.h.in +515 -0
  92. data/ext/ffi_c/libffi/include/ffi_cfi.h +55 -0
  93. data/ext/ffi_c/libffi/include/ffi_common.h +153 -0
  94. data/ext/ffi_c/libffi/libffi.map.in +80 -0
  95. data/ext/ffi_c/libffi/libffi.pc.in +11 -0
  96. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +1043 -0
  97. data/ext/ffi_c/libffi/libtool-version +29 -0
  98. data/ext/ffi_c/libffi/m4/asmcfi.m4 +13 -0
  99. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +71 -0
  100. data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +194 -0
  101. data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +122 -0
  102. data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +74 -0
  103. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +87 -0
  104. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +70 -0
  105. data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +302 -0
  106. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +263 -0
  107. data/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +89 -0
  108. data/ext/ffi_c/libffi/m4/ax_require_defined.m4 +37 -0
  109. data/ext/ffi_c/libffi/make_sunver.pl +333 -0
  110. data/ext/ffi_c/libffi/man/Makefile.am +8 -0
  111. data/ext/ffi_c/libffi/man/ffi.3 +41 -0
  112. data/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
  113. data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +68 -0
  114. data/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +73 -0
  115. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
  116. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
  117. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
  118. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
  119. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
  120. data/ext/ffi_c/libffi/msvcc.sh +353 -0
  121. data/ext/ffi_c/libffi/src/aarch64/ffi.c +1009 -0
  122. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +92 -0
  123. data/ext/ffi_c/libffi/src/aarch64/internal.h +67 -0
  124. data/ext/ffi_c/libffi/src/aarch64/sysv.S +440 -0
  125. data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
  126. data/ext/ffi_c/libffi/src/alpha/ffi.c +521 -0
  127. data/ext/ffi_c/libffi/src/alpha/ffitarget.h +57 -0
  128. data/ext/ffi_c/libffi/src/alpha/internal.h +23 -0
  129. data/ext/ffi_c/libffi/src/alpha/osf.S +282 -0
  130. data/ext/ffi_c/libffi/src/arc/arcompact.S +135 -0
  131. data/ext/ffi_c/libffi/src/arc/ffi.c +266 -0
  132. data/ext/ffi_c/libffi/src/arc/ffitarget.h +53 -0
  133. data/ext/ffi_c/libffi/src/arm/ffi.c +854 -0
  134. data/ext/ffi_c/libffi/src/arm/ffitarget.h +89 -0
  135. data/ext/ffi_c/libffi/src/arm/internal.h +7 -0
  136. data/ext/ffi_c/libffi/src/arm/sysv.S +385 -0
  137. data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
  138. data/ext/ffi_c/libffi/src/avr32/ffi.c +423 -0
  139. data/ext/ffi_c/libffi/src/avr32/ffitarget.h +55 -0
  140. data/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
  141. data/ext/ffi_c/libffi/src/bfin/ffi.c +196 -0
  142. data/ext/ffi_c/libffi/src/bfin/ffitarget.h +43 -0
  143. data/ext/ffi_c/libffi/src/bfin/sysv.S +179 -0
  144. data/ext/ffi_c/libffi/src/closures.c +990 -0
  145. data/ext/ffi_c/libffi/src/cris/ffi.c +386 -0
  146. data/ext/ffi_c/libffi/src/cris/ffitarget.h +56 -0
  147. data/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
  148. data/ext/ffi_c/libffi/src/debug.c +64 -0
  149. data/ext/ffi_c/libffi/src/dlmalloc.c +5166 -0
  150. data/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
  151. data/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
  152. data/ext/ffi_c/libffi/src/frv/ffitarget.h +62 -0
  153. data/ext/ffi_c/libffi/src/ia64/ffi.c +604 -0
  154. data/ext/ffi_c/libffi/src/ia64/ffitarget.h +56 -0
  155. data/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
  156. data/ext/ffi_c/libffi/src/ia64/unix.S +567 -0
  157. data/ext/ffi_c/libffi/src/java_raw_api.c +374 -0
  158. data/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
  159. data/ext/ffi_c/libffi/src/m32r/ffitarget.h +53 -0
  160. data/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
  161. data/ext/ffi_c/libffi/src/m68k/ffi.c +362 -0
  162. data/ext/ffi_c/libffi/src/m68k/ffitarget.h +54 -0
  163. data/ext/ffi_c/libffi/src/m68k/sysv.S +357 -0
  164. data/ext/ffi_c/libffi/src/m88k/ffi.c +400 -0
  165. data/ext/ffi_c/libffi/src/m88k/ffitarget.h +49 -0
  166. data/ext/ffi_c/libffi/src/m88k/obsd.S +209 -0
  167. data/ext/ffi_c/libffi/src/metag/ffi.c +330 -0
  168. data/ext/ffi_c/libffi/src/metag/ffitarget.h +53 -0
  169. data/ext/ffi_c/libffi/src/metag/sysv.S +311 -0
  170. data/ext/ffi_c/libffi/src/microblaze/ffi.c +321 -0
  171. data/ext/ffi_c/libffi/src/microblaze/ffitarget.h +53 -0
  172. data/ext/ffi_c/libffi/src/microblaze/sysv.S +302 -0
  173. data/ext/ffi_c/libffi/src/mips/ffi.c +1130 -0
  174. data/ext/ffi_c/libffi/src/mips/ffitarget.h +244 -0
  175. data/ext/ffi_c/libffi/src/mips/n32.S +663 -0
  176. data/ext/ffi_c/libffi/src/mips/o32.S +502 -0
  177. data/ext/ffi_c/libffi/src/moxie/eabi.S +101 -0
  178. data/ext/ffi_c/libffi/src/moxie/ffi.c +285 -0
  179. data/ext/ffi_c/libffi/src/moxie/ffitarget.h +52 -0
  180. data/ext/ffi_c/libffi/src/nios2/ffi.c +304 -0
  181. data/ext/ffi_c/libffi/src/nios2/ffitarget.h +52 -0
  182. data/ext/ffi_c/libffi/src/nios2/sysv.S +136 -0
  183. data/ext/ffi_c/libffi/src/or1k/ffi.c +328 -0
  184. data/ext/ffi_c/libffi/src/or1k/ffitarget.h +58 -0
  185. data/ext/ffi_c/libffi/src/or1k/sysv.S +107 -0
  186. data/ext/ffi_c/libffi/src/pa/ffi.c +719 -0
  187. data/ext/ffi_c/libffi/src/pa/ffitarget.h +85 -0
  188. data/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
  189. data/ext/ffi_c/libffi/src/pa/linux.S +378 -0
  190. data/ext/ffi_c/libffi/src/powerpc/aix.S +566 -0
  191. data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +694 -0
  192. data/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
  193. data/ext/ffi_c/libffi/src/powerpc/darwin.S +378 -0
  194. data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +571 -0
  195. data/ext/ffi_c/libffi/src/powerpc/ffi.c +174 -0
  196. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1440 -0
  197. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1007 -0
  198. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +94 -0
  199. data/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +923 -0
  200. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +198 -0
  201. data/ext/ffi_c/libffi/src/powerpc/linux64.S +228 -0
  202. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +488 -0
  203. data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +397 -0
  204. data/ext/ffi_c/libffi/src/powerpc/sysv.S +175 -0
  205. data/ext/ffi_c/libffi/src/prep_cif.c +263 -0
  206. data/ext/ffi_c/libffi/src/raw_api.c +267 -0
  207. data/ext/ffi_c/libffi/src/riscv/ffi.c +481 -0
  208. data/ext/ffi_c/libffi/src/riscv/ffitarget.h +69 -0
  209. data/ext/ffi_c/libffi/src/riscv/sysv.S +293 -0
  210. data/ext/ffi_c/libffi/src/s390/ffi.c +756 -0
  211. data/ext/ffi_c/libffi/src/s390/ffitarget.h +70 -0
  212. data/ext/ffi_c/libffi/src/s390/internal.h +11 -0
  213. data/ext/ffi_c/libffi/src/s390/sysv.S +325 -0
  214. data/ext/ffi_c/libffi/src/sh/ffi.c +717 -0
  215. data/ext/ffi_c/libffi/src/sh/ffitarget.h +54 -0
  216. data/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
  217. data/ext/ffi_c/libffi/src/sh64/ffi.c +469 -0
  218. data/ext/ffi_c/libffi/src/sh64/ffitarget.h +58 -0
  219. data/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
  220. data/ext/ffi_c/libffi/src/sparc/ffi.c +468 -0
  221. data/ext/ffi_c/libffi/src/sparc/ffi64.c +608 -0
  222. data/ext/ffi_c/libffi/src/sparc/ffitarget.h +81 -0
  223. data/ext/ffi_c/libffi/src/sparc/internal.h +26 -0
  224. data/ext/ffi_c/libffi/src/sparc/v8.S +443 -0
  225. data/ext/ffi_c/libffi/src/sparc/v9.S +440 -0
  226. data/ext/ffi_c/libffi/src/tile/ffi.c +355 -0
  227. data/ext/ffi_c/libffi/src/tile/ffitarget.h +65 -0
  228. data/ext/ffi_c/libffi/src/tile/tile.S +360 -0
  229. data/ext/ffi_c/libffi/src/types.c +108 -0
  230. data/ext/ffi_c/libffi/src/vax/elfbsd.S +195 -0
  231. data/ext/ffi_c/libffi/src/vax/ffi.c +276 -0
  232. data/ext/ffi_c/libffi/src/vax/ffitarget.h +49 -0
  233. data/ext/ffi_c/libffi/src/x86/asmnames.h +30 -0
  234. data/ext/ffi_c/libffi/src/x86/ffi.c +761 -0
  235. data/ext/ffi_c/libffi/src/x86/ffi64.c +886 -0
  236. data/ext/ffi_c/libffi/src/x86/ffitarget.h +147 -0
  237. data/ext/ffi_c/libffi/src/x86/ffiw64.c +311 -0
  238. data/ext/ffi_c/libffi/src/x86/internal.h +29 -0
  239. data/ext/ffi_c/libffi/src/x86/internal64.h +22 -0
  240. data/ext/ffi_c/libffi/src/x86/sysv.S +1129 -0
  241. data/ext/ffi_c/libffi/src/x86/sysv_intel.S +995 -0
  242. data/ext/ffi_c/libffi/src/x86/unix64.S +566 -0
  243. data/ext/ffi_c/libffi/src/x86/win64.S +237 -0
  244. data/ext/ffi_c/libffi/src/x86/win64_intel.S +237 -0
  245. data/ext/ffi_c/libffi/src/xtensa/ffi.c +298 -0
  246. data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +53 -0
  247. data/ext/ffi_c/libffi/src/xtensa/sysv.S +258 -0
  248. data/ext/ffi_c/libffi/stamp-h.in +1 -0
  249. data/ext/ffi_c/libffi/testsuite/Makefile.am +119 -0
  250. data/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
  251. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +657 -0
  252. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +283 -0
  253. data/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
  254. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +28 -0
  255. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +78 -0
  256. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +50 -0
  257. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +58 -0
  258. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1745 -0
  259. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2885 -0
  260. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +743 -0
  261. data/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +46 -0
  262. data/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +46 -0
  263. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +43 -0
  264. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +89 -0
  265. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +81 -0
  266. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +81 -0
  267. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +82 -0
  268. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +89 -0
  269. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +92 -0
  270. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +90 -0
  271. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +95 -0
  272. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_simple.c +55 -0
  273. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +94 -0
  274. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +95 -0
  275. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +96 -0
  276. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +102 -0
  277. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +89 -0
  278. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +91 -0
  279. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +93 -0
  280. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +113 -0
  281. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +90 -0
  282. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +95 -0
  283. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +90 -0
  284. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +90 -0
  285. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3float.c +95 -0
  286. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +98 -0
  287. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +90 -0
  288. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +109 -0
  289. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +98 -0
  290. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +124 -0
  291. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +113 -0
  292. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +99 -0
  293. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +117 -0
  294. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +97 -0
  295. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +88 -0
  296. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +90 -0
  297. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +91 -0
  298. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +93 -0
  299. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +91 -0
  300. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +92 -0
  301. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +132 -0
  302. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +115 -0
  303. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +95 -0
  304. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +91 -0
  305. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +91 -0
  306. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +92 -0
  307. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +91 -0
  308. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +91 -0
  309. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +93 -0
  310. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +66 -0
  311. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +43 -0
  312. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +61 -0
  313. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +42 -0
  314. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +105 -0
  315. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +61 -0
  316. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_args.c +70 -0
  317. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c +55 -0
  318. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +74 -0
  319. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +74 -0
  320. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +86 -0
  321. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +91 -0
  322. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +74 -0
  323. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +86 -0
  324. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +74 -0
  325. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +142 -0
  326. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +44 -0
  327. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +42 -0
  328. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +42 -0
  329. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_struct_va1.c +114 -0
  330. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +42 -0
  331. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +44 -0
  332. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +43 -0
  333. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint_va.c +45 -0
  334. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulong_va.c +45 -0
  335. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +47 -0
  336. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +43 -0
  337. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +44 -0
  338. data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +36 -0
  339. data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +26 -0
  340. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +138 -0
  341. data/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
  342. data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +60 -0
  343. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +61 -0
  344. data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +74 -0
  345. data/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
  346. data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +107 -0
  347. data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +341 -0
  348. data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +59 -0
  349. data/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +57 -0
  350. data/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +70 -0
  351. data/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +78 -0
  352. data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +52 -0
  353. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +152 -0
  354. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +161 -0
  355. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +134 -0
  356. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct11.c +121 -0
  357. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +110 -0
  358. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +111 -0
  359. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +111 -0
  360. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +112 -0
  361. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +131 -0
  362. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +111 -0
  363. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +131 -0
  364. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +131 -0
  365. data/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +46 -0
  366. data/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +127 -0
  367. data/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +90 -0
  368. data/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
  369. data/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
  370. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +36 -0
  371. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
  372. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
  373. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
  374. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
  375. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
  376. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
  377. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
  378. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
  379. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +43 -0
  380. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
  381. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
  382. data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
  383. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
  384. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +145 -0
  385. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +148 -0
  386. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +124 -0
  387. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +125 -0
  388. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
  389. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
  390. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
  391. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
  392. data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +67 -0
  393. data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +57 -0
  394. data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
  395. data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +60 -0
  396. data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +64 -0
  397. data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +66 -0
  398. data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
  399. data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
  400. data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +81 -0
  401. data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +68 -0
  402. data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +70 -0
  403. data/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +61 -0
  404. data/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest.cc +117 -0
  405. data/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest_ffi_call.cc +54 -0
  406. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +196 -0
  407. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +121 -0
  408. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +123 -0
  409. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +125 -0
  410. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +91 -0
  411. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +10 -0
  412. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +10 -0
  413. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +10 -0
  414. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +42 -0
  415. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +10 -0
  416. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +10 -0
  417. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +10 -0
  418. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +71 -0
  419. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +10 -0
  420. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +10 -0
  421. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +10 -0
  422. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +80 -0
  423. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +10 -0
  424. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +16 -0
  425. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +10 -0
  426. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +36 -0
  427. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +51 -0
  428. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +7 -0
  429. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +7 -0
  430. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +7 -0
  431. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +10 -0
  432. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +10 -0
  433. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +86 -0
  434. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +10 -0
  435. data/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +1 -0
  436. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +78 -0
  437. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +10 -0
  438. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +10 -0
  439. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +10 -0
  440. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +37 -0
  441. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +41 -0
  442. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +10 -0
  443. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +10 -0
  444. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +10 -0
  445. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +44 -0
  446. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +10 -0
  447. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +10 -0
  448. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +10 -0
  449. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +10 -0
  450. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +10 -0
  451. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +10 -0
  452. data/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +34 -0
  453. data/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +28 -0
  454. data/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
  455. data/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +36 -0
  456. data/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +19 -0
  457. data/ext/ffi_c/rbffi.h +55 -0
  458. data/ext/ffi_c/rbffi_endian.h +59 -0
  459. data/ext/ffi_c/win32/stdbool.h +8 -0
  460. data/ext/ffi_c/win32/stdint.h +201 -0
  461. data/ffi.gemspec +43 -0
  462. data/lib/ffi.rb +20 -0
  463. data/lib/ffi/autopointer.rb +203 -0
  464. data/lib/ffi/buffer.rb +4 -0
  465. data/lib/ffi/callback.rb +4 -0
  466. data/lib/ffi/data_converter.rb +67 -0
  467. data/lib/ffi/enum.rb +296 -0
  468. data/lib/ffi/errno.rb +43 -0
  469. data/lib/ffi/ffi.rb +45 -0
  470. data/lib/ffi/io.rb +62 -0
  471. data/lib/ffi/library.rb +588 -0
  472. data/lib/ffi/managedstruct.rb +84 -0
  473. data/lib/ffi/memorypointer.rb +1 -0
  474. data/lib/ffi/platform.rb +175 -0
  475. data/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
  476. data/lib/ffi/platform/aarch64-freebsd12/types.conf +128 -0
  477. data/lib/ffi/platform/aarch64-linux/types.conf +104 -0
  478. data/lib/ffi/platform/arm-freebsd/types.conf +152 -0
  479. data/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
  480. data/lib/ffi/platform/arm-linux/types.conf +104 -0
  481. data/lib/ffi/platform/i386-cygwin/types.conf +3 -0
  482. data/lib/ffi/platform/i386-darwin/types.conf +100 -0
  483. data/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  484. data/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
  485. data/lib/ffi/platform/i386-gnu/types.conf +107 -0
  486. data/lib/ffi/platform/i386-linux/types.conf +103 -0
  487. data/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  488. data/lib/ffi/platform/i386-openbsd/types.conf +128 -0
  489. data/lib/ffi/platform/i386-solaris/types.conf +122 -0
  490. data/lib/ffi/platform/i386-windows/types.conf +105 -0
  491. data/lib/ffi/platform/ia64-linux/types.conf +104 -0
  492. data/lib/ffi/platform/mips-linux/types.conf +102 -0
  493. data/lib/ffi/platform/mips64-linux/types.conf +104 -0
  494. data/lib/ffi/platform/mips64el-linux/types.conf +104 -0
  495. data/lib/ffi/platform/mipsel-linux/types.conf +102 -0
  496. data/lib/ffi/platform/mipsisa32r6-linux/types.conf +102 -0
  497. data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +102 -0
  498. data/lib/ffi/platform/mipsisa64r6-linux/types.conf +104 -0
  499. data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +104 -0
  500. data/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  501. data/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  502. data/lib/ffi/platform/powerpc-linux/types.conf +100 -0
  503. data/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
  504. data/lib/ffi/platform/s390-linux/types.conf +102 -0
  505. data/lib/ffi/platform/s390x-linux/types.conf +102 -0
  506. data/lib/ffi/platform/sparc-linux/types.conf +102 -0
  507. data/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  508. data/lib/ffi/platform/sparc64-linux/types.conf +102 -0
  509. data/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  510. data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
  511. data/lib/ffi/platform/x86_64-darwin/types.conf +126 -0
  512. data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +148 -0
  513. data/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
  514. data/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
  515. data/lib/ffi/platform/x86_64-linux/types.conf +111 -0
  516. data/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
  517. data/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
  518. data/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  519. data/lib/ffi/platform/x86_64-windows/types.conf +120 -0
  520. data/lib/ffi/pointer.rb +160 -0
  521. data/lib/ffi/struct.rb +311 -0
  522. data/lib/ffi/struct_by_reference.rb +72 -0
  523. data/lib/ffi/struct_layout.rb +96 -0
  524. data/lib/ffi/struct_layout_builder.rb +227 -0
  525. data/lib/ffi/tools/const_generator.rb +230 -0
  526. data/lib/ffi/tools/generator.rb +105 -0
  527. data/lib/ffi/tools/generator_task.rb +32 -0
  528. data/lib/ffi/tools/struct_generator.rb +194 -0
  529. data/lib/ffi/tools/types_generator.rb +135 -0
  530. data/lib/ffi/types.rb +194 -0
  531. data/lib/ffi/union.rb +43 -0
  532. data/lib/ffi/variadic.rb +78 -0
  533. data/lib/ffi/version.rb +3 -0
  534. data/samples/getlogin.rb +8 -0
  535. data/samples/getpid.rb +8 -0
  536. data/samples/gettimeofday.rb +18 -0
  537. data/samples/hello.rb +7 -0
  538. data/samples/inotify.rb +60 -0
  539. data/samples/pty.rb +76 -0
  540. data/samples/qsort.rb +21 -0
  541. data/samples/sample_helper.rb +6 -0
  542. metadata +677 -0
@@ -0,0 +1,29 @@
1
+ #define X86_RET_FLOAT 0
2
+ #define X86_RET_DOUBLE 1
3
+ #define X86_RET_LDOUBLE 2
4
+ #define X86_RET_SINT8 3
5
+ #define X86_RET_SINT16 4
6
+ #define X86_RET_UINT8 5
7
+ #define X86_RET_UINT16 6
8
+ #define X86_RET_INT64 7
9
+ #define X86_RET_INT32 8
10
+ #define X86_RET_VOID 9
11
+ #define X86_RET_STRUCTPOP 10
12
+ #define X86_RET_STRUCTARG 11
13
+ #define X86_RET_STRUCT_1B 12
14
+ #define X86_RET_STRUCT_2B 13
15
+ #define X86_RET_UNUSED14 14
16
+ #define X86_RET_UNUSED15 15
17
+
18
+ #define X86_RET_TYPE_MASK 15
19
+ #define X86_RET_POP_SHIFT 4
20
+
21
+ #define R_EAX 0
22
+ #define R_EDX 1
23
+ #define R_ECX 2
24
+
25
+ #ifdef __PCC__
26
+ # define HAVE_FASTCALL 0
27
+ #else
28
+ # define HAVE_FASTCALL 1
29
+ #endif
@@ -0,0 +1,22 @@
1
+ #define UNIX64_RET_VOID 0
2
+ #define UNIX64_RET_UINT8 1
3
+ #define UNIX64_RET_UINT16 2
4
+ #define UNIX64_RET_UINT32 3
5
+ #define UNIX64_RET_SINT8 4
6
+ #define UNIX64_RET_SINT16 5
7
+ #define UNIX64_RET_SINT32 6
8
+ #define UNIX64_RET_INT64 7
9
+ #define UNIX64_RET_XMM32 8
10
+ #define UNIX64_RET_XMM64 9
11
+ #define UNIX64_RET_X87 10
12
+ #define UNIX64_RET_X87_2 11
13
+ #define UNIX64_RET_ST_XMM0_RAX 12
14
+ #define UNIX64_RET_ST_RAX_XMM0 13
15
+ #define UNIX64_RET_ST_XMM0_XMM1 14
16
+ #define UNIX64_RET_ST_RAX_RDX 15
17
+
18
+ #define UNIX64_RET_LAST 15
19
+
20
+ #define UNIX64_FLAG_RET_IN_MEM (1 << 10)
21
+ #define UNIX64_FLAG_XMM_ARGS (1 << 11)
22
+ #define UNIX64_SIZE_SHIFT 12
@@ -0,0 +1,1129 @@
1
+ /* -----------------------------------------------------------------------
2
+ sysv.S - Copyright (c) 2017 Anthony Green
3
+ - Copyright (c) 2013 The Written Word, Inc.
4
+ - Copyright (c) 1996,1998,2001-2003,2005,2008,2010 Red Hat, Inc.
5
+
6
+ X86 Foreign Function Interface
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining
9
+ a copy of this software and associated documentation files (the
10
+ ``Software''), to deal in the Software without restriction, including
11
+ without limitation the rights to use, copy, modify, merge, publish,
12
+ distribute, sublicense, and/or sell copies of the Software, and to
13
+ permit persons to whom the Software is furnished to do so, subject to
14
+ the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be included
17
+ in all copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
20
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
23
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
24
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26
+ DEALINGS IN THE SOFTWARE.
27
+ ----------------------------------------------------------------------- */
28
+
29
+ #ifdef __i386__
30
+ #ifndef _MSC_VER
31
+
32
+ #define LIBFFI_ASM
33
+ #include <fficonfig.h>
34
+ #include <ffi.h>
35
+ #include "internal.h"
36
+
37
+ #define C2(X, Y) X ## Y
38
+ #define C1(X, Y) C2(X, Y)
39
+ #ifdef __USER_LABEL_PREFIX__
40
+ # define C(X) C1(__USER_LABEL_PREFIX__, X)
41
+ #else
42
+ # define C(X) X
43
+ #endif
44
+
45
+ #ifdef X86_DARWIN
46
+ # define L(X) C1(L, X)
47
+ #else
48
+ # define L(X) C1(.L, X)
49
+ #endif
50
+
51
+ #ifdef __ELF__
52
+ # define ENDF(X) .type X,@function; .size X, . - X
53
+ #else
54
+ # define ENDF(X)
55
+ #endif
56
+
57
+ /* Handle win32 fastcall name mangling. */
58
+ #ifdef X86_WIN32
59
+ # define ffi_call_i386 @ffi_call_i386@8
60
+ # define ffi_closure_inner @ffi_closure_inner@8
61
+ #else
62
+ # define ffi_call_i386 C(ffi_call_i386)
63
+ # define ffi_closure_inner C(ffi_closure_inner)
64
+ #endif
65
+
66
+ /* This macro allows the safe creation of jump tables without an
67
+ actual table. The entry points into the table are all 8 bytes.
68
+ The use of ORG asserts that we're at the correct location. */
69
+ /* ??? The clang assembler doesn't handle .org with symbolic expressions. */
70
+ #if defined(__clang__) || defined(__APPLE__) || (defined (__sun__) && defined(__svr4__))
71
+ # define E(BASE, X) .balign 8
72
+ #else
73
+ # define E(BASE, X) .balign 8; .org BASE + X * 8
74
+ #endif
75
+
76
+ .text
77
+ .balign 16
78
+ .globl ffi_call_i386
79
+ FFI_HIDDEN(ffi_call_i386)
80
+
81
+ /* This is declared as
82
+
83
+ void ffi_call_i386(struct call_frame *frame, char *argp)
84
+ __attribute__((fastcall));
85
+
86
+ Thus the arguments are present in
87
+
88
+ ecx: frame
89
+ edx: argp
90
+ */
91
+
92
+ ffi_call_i386:
93
+ L(UW0):
94
+ # cfi_startproc
95
+ #if !HAVE_FASTCALL
96
+ movl 4(%esp), %ecx
97
+ movl 8(%esp), %edx
98
+ #endif
99
+ movl (%esp), %eax /* move the return address */
100
+ movl %ebp, (%ecx) /* store %ebp into local frame */
101
+ movl %eax, 4(%ecx) /* store retaddr into local frame */
102
+
103
+ /* New stack frame based off ebp. This is a itty bit of unwind
104
+ trickery in that the CFA *has* changed. There is no easy way
105
+ to describe it correctly on entry to the function. Fortunately,
106
+ it doesn't matter too much since at all points we can correctly
107
+ unwind back to ffi_call. Note that the location to which we
108
+ moved the return address is (the new) CFA-4, so from the
109
+ perspective of the unwind info, it hasn't moved. */
110
+ movl %ecx, %ebp
111
+ L(UW1):
112
+ # cfi_def_cfa(%ebp, 8)
113
+ # cfi_rel_offset(%ebp, 0)
114
+
115
+ movl %edx, %esp /* set outgoing argument stack */
116
+ movl 20+R_EAX*4(%ebp), %eax /* set register arguments */
117
+ movl 20+R_EDX*4(%ebp), %edx
118
+ movl 20+R_ECX*4(%ebp), %ecx
119
+
120
+ call *8(%ebp)
121
+
122
+ movl 12(%ebp), %ecx /* load return type code */
123
+ movl %ebx, 8(%ebp) /* preserve %ebx */
124
+ L(UW2):
125
+ # cfi_rel_offset(%ebx, 8)
126
+
127
+ andl $X86_RET_TYPE_MASK, %ecx
128
+ #ifdef __PIC__
129
+ call C(__x86.get_pc_thunk.bx)
130
+ L(pc1):
131
+ leal L(store_table)-L(pc1)(%ebx, %ecx, 8), %ebx
132
+ #else
133
+ leal L(store_table)(,%ecx, 8), %ebx
134
+ #endif
135
+ movl 16(%ebp), %ecx /* load result address */
136
+ jmp *%ebx
137
+
138
+ .balign 8
139
+ L(store_table):
140
+ E(L(store_table), X86_RET_FLOAT)
141
+ fstps (%ecx)
142
+ jmp L(e1)
143
+ E(L(store_table), X86_RET_DOUBLE)
144
+ fstpl (%ecx)
145
+ jmp L(e1)
146
+ E(L(store_table), X86_RET_LDOUBLE)
147
+ fstpt (%ecx)
148
+ jmp L(e1)
149
+ E(L(store_table), X86_RET_SINT8)
150
+ movsbl %al, %eax
151
+ mov %eax, (%ecx)
152
+ jmp L(e1)
153
+ E(L(store_table), X86_RET_SINT16)
154
+ movswl %ax, %eax
155
+ mov %eax, (%ecx)
156
+ jmp L(e1)
157
+ E(L(store_table), X86_RET_UINT8)
158
+ movzbl %al, %eax
159
+ mov %eax, (%ecx)
160
+ jmp L(e1)
161
+ E(L(store_table), X86_RET_UINT16)
162
+ movzwl %ax, %eax
163
+ mov %eax, (%ecx)
164
+ jmp L(e1)
165
+ E(L(store_table), X86_RET_INT64)
166
+ movl %edx, 4(%ecx)
167
+ /* fallthru */
168
+ E(L(store_table), X86_RET_INT32)
169
+ movl %eax, (%ecx)
170
+ /* fallthru */
171
+ E(L(store_table), X86_RET_VOID)
172
+ L(e1):
173
+ movl 8(%ebp), %ebx
174
+ movl %ebp, %esp
175
+ popl %ebp
176
+ L(UW3):
177
+ # cfi_remember_state
178
+ # cfi_def_cfa(%esp, 4)
179
+ # cfi_restore(%ebx)
180
+ # cfi_restore(%ebp)
181
+ ret
182
+ L(UW4):
183
+ # cfi_restore_state
184
+
185
+ E(L(store_table), X86_RET_STRUCTPOP)
186
+ jmp L(e1)
187
+ E(L(store_table), X86_RET_STRUCTARG)
188
+ jmp L(e1)
189
+ E(L(store_table), X86_RET_STRUCT_1B)
190
+ movb %al, (%ecx)
191
+ jmp L(e1)
192
+ E(L(store_table), X86_RET_STRUCT_2B)
193
+ movw %ax, (%ecx)
194
+ jmp L(e1)
195
+
196
+ /* Fill out the table so that bad values are predictable. */
197
+ E(L(store_table), X86_RET_UNUSED14)
198
+ ud2
199
+ E(L(store_table), X86_RET_UNUSED15)
200
+ ud2
201
+
202
+ L(UW5):
203
+ # cfi_endproc
204
+ ENDF(ffi_call_i386)
205
+
206
+ /* The inner helper is declared as
207
+
208
+ void ffi_closure_inner(struct closure_frame *frame, char *argp)
209
+ __attribute_((fastcall))
210
+
211
+ Thus the arguments are placed in
212
+
213
+ ecx: frame
214
+ edx: argp
215
+ */
216
+
217
+ /* Macros to help setting up the closure_data structure. */
218
+
219
+ #if HAVE_FASTCALL
220
+ # define closure_FS (40 + 4)
221
+ # define closure_CF 0
222
+ #else
223
+ # define closure_FS (8 + 40 + 12)
224
+ # define closure_CF 8
225
+ #endif
226
+
227
+ #define FFI_CLOSURE_SAVE_REGS \
228
+ movl %eax, closure_CF+16+R_EAX*4(%esp); \
229
+ movl %edx, closure_CF+16+R_EDX*4(%esp); \
230
+ movl %ecx, closure_CF+16+R_ECX*4(%esp)
231
+
232
+ #define FFI_CLOSURE_COPY_TRAMP_DATA \
233
+ movl FFI_TRAMPOLINE_SIZE(%eax), %edx; /* copy cif */ \
234
+ movl FFI_TRAMPOLINE_SIZE+4(%eax), %ecx; /* copy fun */ \
235
+ movl FFI_TRAMPOLINE_SIZE+8(%eax), %eax; /* copy user_data */ \
236
+ movl %edx, closure_CF+28(%esp); \
237
+ movl %ecx, closure_CF+32(%esp); \
238
+ movl %eax, closure_CF+36(%esp)
239
+
240
+ #if HAVE_FASTCALL
241
+ # define FFI_CLOSURE_PREP_CALL \
242
+ movl %esp, %ecx; /* load closure_data */ \
243
+ leal closure_FS+4(%esp), %edx; /* load incoming stack */
244
+ #else
245
+ # define FFI_CLOSURE_PREP_CALL \
246
+ leal closure_CF(%esp), %ecx; /* load closure_data */ \
247
+ leal closure_FS+4(%esp), %edx; /* load incoming stack */ \
248
+ movl %ecx, (%esp); \
249
+ movl %edx, 4(%esp)
250
+ #endif
251
+
252
+ #define FFI_CLOSURE_CALL_INNER(UWN) \
253
+ call ffi_closure_inner
254
+
255
+ #define FFI_CLOSURE_MASK_AND_JUMP(N, UW) \
256
+ andl $X86_RET_TYPE_MASK, %eax; \
257
+ leal L(C1(load_table,N))(, %eax, 8), %edx; \
258
+ movl closure_CF(%esp), %eax; /* optimiztic load */ \
259
+ jmp *%edx
260
+
261
+ #ifdef __PIC__
262
+ # if defined X86_DARWIN || defined HAVE_HIDDEN_VISIBILITY_ATTRIBUTE
263
+ # undef FFI_CLOSURE_MASK_AND_JUMP
264
+ # define FFI_CLOSURE_MASK_AND_JUMP(N, UW) \
265
+ andl $X86_RET_TYPE_MASK, %eax; \
266
+ call C(__x86.get_pc_thunk.dx); \
267
+ L(C1(pc,N)): \
268
+ leal L(C1(load_table,N))-L(C1(pc,N))(%edx, %eax, 8), %edx; \
269
+ movl closure_CF(%esp), %eax; /* optimiztic load */ \
270
+ jmp *%edx
271
+ # else
272
+ # define FFI_CLOSURE_CALL_INNER_SAVE_EBX
273
+ # undef FFI_CLOSURE_CALL_INNER
274
+ # define FFI_CLOSURE_CALL_INNER(UWN) \
275
+ movl %ebx, 40(%esp); /* save ebx */ \
276
+ L(C1(UW,UWN)): \
277
+ /* cfi_rel_offset(%ebx, 40); */ \
278
+ call C(__x86.get_pc_thunk.bx); /* load got register */ \
279
+ addl $C(_GLOBAL_OFFSET_TABLE_), %ebx; \
280
+ call ffi_closure_inner@PLT
281
+ # undef FFI_CLOSURE_MASK_AND_JUMP
282
+ # define FFI_CLOSURE_MASK_AND_JUMP(N, UWN) \
283
+ andl $X86_RET_TYPE_MASK, %eax; \
284
+ leal L(C1(load_table,N))@GOTOFF(%ebx, %eax, 8), %edx; \
285
+ movl 40(%esp), %ebx; /* restore ebx */ \
286
+ L(C1(UW,UWN)): \
287
+ /* cfi_restore(%ebx); */ \
288
+ movl closure_CF(%esp), %eax; /* optimiztic load */ \
289
+ jmp *%edx
290
+ # endif /* DARWIN || HIDDEN */
291
+ #endif /* __PIC__ */
292
+
293
+ .balign 16
294
+ .globl C(ffi_go_closure_EAX)
295
+ FFI_HIDDEN(C(ffi_go_closure_EAX))
296
+ C(ffi_go_closure_EAX):
297
+ L(UW6):
298
+ # cfi_startproc
299
+ subl $closure_FS, %esp
300
+ L(UW7):
301
+ # cfi_def_cfa_offset(closure_FS + 4)
302
+ FFI_CLOSURE_SAVE_REGS
303
+ movl 4(%eax), %edx /* copy cif */
304
+ movl 8(%eax), %ecx /* copy fun */
305
+ movl %edx, closure_CF+28(%esp)
306
+ movl %ecx, closure_CF+32(%esp)
307
+ movl %eax, closure_CF+36(%esp) /* closure is user_data */
308
+ jmp L(do_closure_i386)
309
+ L(UW8):
310
+ # cfi_endproc
311
+ ENDF(C(ffi_go_closure_EAX))
312
+
313
+ .balign 16
314
+ .globl C(ffi_go_closure_ECX)
315
+ FFI_HIDDEN(C(ffi_go_closure_ECX))
316
+ C(ffi_go_closure_ECX):
317
+ L(UW9):
318
+ # cfi_startproc
319
+ subl $closure_FS, %esp
320
+ L(UW10):
321
+ # cfi_def_cfa_offset(closure_FS + 4)
322
+ FFI_CLOSURE_SAVE_REGS
323
+ movl 4(%ecx), %edx /* copy cif */
324
+ movl 8(%ecx), %eax /* copy fun */
325
+ movl %edx, closure_CF+28(%esp)
326
+ movl %eax, closure_CF+32(%esp)
327
+ movl %ecx, closure_CF+36(%esp) /* closure is user_data */
328
+ jmp L(do_closure_i386)
329
+ L(UW11):
330
+ # cfi_endproc
331
+ ENDF(C(ffi_go_closure_ECX))
332
+
333
+ /* The closure entry points are reached from the ffi_closure trampoline.
334
+ On entry, %eax contains the address of the ffi_closure. */
335
+
336
+ .balign 16
337
+ .globl C(ffi_closure_i386)
338
+ FFI_HIDDEN(C(ffi_closure_i386))
339
+
340
+ C(ffi_closure_i386):
341
+ L(UW12):
342
+ # cfi_startproc
343
+ subl $closure_FS, %esp
344
+ L(UW13):
345
+ # cfi_def_cfa_offset(closure_FS + 4)
346
+
347
+ FFI_CLOSURE_SAVE_REGS
348
+ FFI_CLOSURE_COPY_TRAMP_DATA
349
+
350
+ /* Entry point from preceeding Go closures. */
351
+ L(do_closure_i386):
352
+
353
+ FFI_CLOSURE_PREP_CALL
354
+ FFI_CLOSURE_CALL_INNER(14)
355
+ FFI_CLOSURE_MASK_AND_JUMP(2, 15)
356
+
357
+ .balign 8
358
+ L(load_table2):
359
+ E(L(load_table2), X86_RET_FLOAT)
360
+ flds closure_CF(%esp)
361
+ jmp L(e2)
362
+ E(L(load_table2), X86_RET_DOUBLE)
363
+ fldl closure_CF(%esp)
364
+ jmp L(e2)
365
+ E(L(load_table2), X86_RET_LDOUBLE)
366
+ fldt closure_CF(%esp)
367
+ jmp L(e2)
368
+ E(L(load_table2), X86_RET_SINT8)
369
+ movsbl %al, %eax
370
+ jmp L(e2)
371
+ E(L(load_table2), X86_RET_SINT16)
372
+ movswl %ax, %eax
373
+ jmp L(e2)
374
+ E(L(load_table2), X86_RET_UINT8)
375
+ movzbl %al, %eax
376
+ jmp L(e2)
377
+ E(L(load_table2), X86_RET_UINT16)
378
+ movzwl %ax, %eax
379
+ jmp L(e2)
380
+ E(L(load_table2), X86_RET_INT64)
381
+ movl closure_CF+4(%esp), %edx
382
+ jmp L(e2)
383
+ E(L(load_table2), X86_RET_INT32)
384
+ nop
385
+ /* fallthru */
386
+ E(L(load_table2), X86_RET_VOID)
387
+ L(e2):
388
+ addl $closure_FS, %esp
389
+ L(UW16):
390
+ # cfi_adjust_cfa_offset(-closure_FS)
391
+ ret
392
+ L(UW17):
393
+ # cfi_adjust_cfa_offset(closure_FS)
394
+ E(L(load_table2), X86_RET_STRUCTPOP)
395
+ addl $closure_FS, %esp
396
+ L(UW18):
397
+ # cfi_adjust_cfa_offset(-closure_FS)
398
+ ret $4
399
+ L(UW19):
400
+ # cfi_adjust_cfa_offset(closure_FS)
401
+ E(L(load_table2), X86_RET_STRUCTARG)
402
+ jmp L(e2)
403
+ E(L(load_table2), X86_RET_STRUCT_1B)
404
+ movzbl %al, %eax
405
+ jmp L(e2)
406
+ E(L(load_table2), X86_RET_STRUCT_2B)
407
+ movzwl %ax, %eax
408
+ jmp L(e2)
409
+
410
+ /* Fill out the table so that bad values are predictable. */
411
+ E(L(load_table2), X86_RET_UNUSED14)
412
+ ud2
413
+ E(L(load_table2), X86_RET_UNUSED15)
414
+ ud2
415
+
416
+ L(UW20):
417
+ # cfi_endproc
418
+ ENDF(C(ffi_closure_i386))
419
+
420
+ .balign 16
421
+ .globl C(ffi_go_closure_STDCALL)
422
+ FFI_HIDDEN(C(ffi_go_closure_STDCALL))
423
+ C(ffi_go_closure_STDCALL):
424
+ L(UW21):
425
+ # cfi_startproc
426
+ subl $closure_FS, %esp
427
+ L(UW22):
428
+ # cfi_def_cfa_offset(closure_FS + 4)
429
+ FFI_CLOSURE_SAVE_REGS
430
+ movl 4(%ecx), %edx /* copy cif */
431
+ movl 8(%ecx), %eax /* copy fun */
432
+ movl %edx, closure_CF+28(%esp)
433
+ movl %eax, closure_CF+32(%esp)
434
+ movl %ecx, closure_CF+36(%esp) /* closure is user_data */
435
+ jmp L(do_closure_STDCALL)
436
+ L(UW23):
437
+ # cfi_endproc
438
+ ENDF(C(ffi_go_closure_STDCALL))
439
+
440
+ /* For REGISTER, we have no available parameter registers, and so we
441
+ enter here having pushed the closure onto the stack. */
442
+
443
+ .balign 16
444
+ .globl C(ffi_closure_REGISTER)
445
+ FFI_HIDDEN(C(ffi_closure_REGISTER))
446
+ C(ffi_closure_REGISTER):
447
+ L(UW24):
448
+ # cfi_startproc
449
+ # cfi_def_cfa(%esp, 8)
450
+ # cfi_offset(%eip, -8)
451
+ subl $closure_FS-4, %esp
452
+ L(UW25):
453
+ # cfi_def_cfa_offset(closure_FS + 4)
454
+ FFI_CLOSURE_SAVE_REGS
455
+ movl closure_FS-4(%esp), %ecx /* load retaddr */
456
+ movl closure_FS(%esp), %eax /* load closure */
457
+ movl %ecx, closure_FS(%esp) /* move retaddr */
458
+ jmp L(do_closure_REGISTER)
459
+ L(UW26):
460
+ # cfi_endproc
461
+ ENDF(C(ffi_closure_REGISTER))
462
+
463
+ /* For STDCALL (and others), we need to pop N bytes of arguments off
464
+ the stack following the closure. The amount needing to be popped
465
+ is returned to us from ffi_closure_inner. */
466
+
467
+ .balign 16
468
+ .globl C(ffi_closure_STDCALL)
469
+ FFI_HIDDEN(C(ffi_closure_STDCALL))
470
+ C(ffi_closure_STDCALL):
471
+ L(UW27):
472
+ # cfi_startproc
473
+ subl $closure_FS, %esp
474
+ L(UW28):
475
+ # cfi_def_cfa_offset(closure_FS + 4)
476
+
477
+ FFI_CLOSURE_SAVE_REGS
478
+
479
+ /* Entry point from ffi_closure_REGISTER. */
480
+ L(do_closure_REGISTER):
481
+
482
+ FFI_CLOSURE_COPY_TRAMP_DATA
483
+
484
+ /* Entry point from preceeding Go closure. */
485
+ L(do_closure_STDCALL):
486
+
487
+ FFI_CLOSURE_PREP_CALL
488
+ FFI_CLOSURE_CALL_INNER(29)
489
+
490
+ movl %eax, %ecx
491
+ shrl $X86_RET_POP_SHIFT, %ecx /* isolate pop count */
492
+ leal closure_FS(%esp, %ecx), %ecx /* compute popped esp */
493
+ movl closure_FS(%esp), %edx /* move return address */
494
+ movl %edx, (%ecx)
495
+
496
+ /* From this point on, the value of %esp upon return is %ecx+4,
497
+ and we've copied the return address to %ecx to make return easy.
498
+ There's no point in representing this in the unwind info, as
499
+ there is always a window between the mov and the ret which
500
+ will be wrong from one point of view or another. */
501
+
502
+ FFI_CLOSURE_MASK_AND_JUMP(3, 30)
503
+
504
+ .balign 8
505
+ L(load_table3):
506
+ E(L(load_table3), X86_RET_FLOAT)
507
+ flds closure_CF(%esp)
508
+ movl %ecx, %esp
509
+ ret
510
+ E(L(load_table3), X86_RET_DOUBLE)
511
+ fldl closure_CF(%esp)
512
+ movl %ecx, %esp
513
+ ret
514
+ E(L(load_table3), X86_RET_LDOUBLE)
515
+ fldt closure_CF(%esp)
516
+ movl %ecx, %esp
517
+ ret
518
+ E(L(load_table3), X86_RET_SINT8)
519
+ movsbl %al, %eax
520
+ movl %ecx, %esp
521
+ ret
522
+ E(L(load_table3), X86_RET_SINT16)
523
+ movswl %ax, %eax
524
+ movl %ecx, %esp
525
+ ret
526
+ E(L(load_table3), X86_RET_UINT8)
527
+ movzbl %al, %eax
528
+ movl %ecx, %esp
529
+ ret
530
+ E(L(load_table3), X86_RET_UINT16)
531
+ movzwl %ax, %eax
532
+ movl %ecx, %esp
533
+ ret
534
+ E(L(load_table3), X86_RET_INT64)
535
+ movl closure_CF+4(%esp), %edx
536
+ movl %ecx, %esp
537
+ ret
538
+ E(L(load_table3), X86_RET_INT32)
539
+ movl %ecx, %esp
540
+ ret
541
+ E(L(load_table3), X86_RET_VOID)
542
+ movl %ecx, %esp
543
+ ret
544
+ E(L(load_table3), X86_RET_STRUCTPOP)
545
+ movl %ecx, %esp
546
+ ret
547
+ E(L(load_table3), X86_RET_STRUCTARG)
548
+ movl %ecx, %esp
549
+ ret
550
+ E(L(load_table3), X86_RET_STRUCT_1B)
551
+ movzbl %al, %eax
552
+ movl %ecx, %esp
553
+ ret
554
+ E(L(load_table3), X86_RET_STRUCT_2B)
555
+ movzwl %ax, %eax
556
+ movl %ecx, %esp
557
+ ret
558
+
559
+ /* Fill out the table so that bad values are predictable. */
560
+ E(L(load_table3), X86_RET_UNUSED14)
561
+ ud2
562
+ E(L(load_table3), X86_RET_UNUSED15)
563
+ ud2
564
+
565
+ L(UW31):
566
+ # cfi_endproc
567
+ ENDF(C(ffi_closure_STDCALL))
568
+
569
+ #if !FFI_NO_RAW_API
570
+
571
+ #define raw_closure_S_FS (16+16+12)
572
+
573
+ .balign 16
574
+ .globl C(ffi_closure_raw_SYSV)
575
+ FFI_HIDDEN(C(ffi_closure_raw_SYSV))
576
+ C(ffi_closure_raw_SYSV):
577
+ L(UW32):
578
+ # cfi_startproc
579
+ subl $raw_closure_S_FS, %esp
580
+ L(UW33):
581
+ # cfi_def_cfa_offset(raw_closure_S_FS + 4)
582
+ movl %ebx, raw_closure_S_FS-4(%esp)
583
+ L(UW34):
584
+ # cfi_rel_offset(%ebx, raw_closure_S_FS-4)
585
+
586
+ movl FFI_TRAMPOLINE_SIZE+8(%eax), %edx /* load cl->user_data */
587
+ movl %edx, 12(%esp)
588
+ leal raw_closure_S_FS+4(%esp), %edx /* load raw_args */
589
+ movl %edx, 8(%esp)
590
+ leal 16(%esp), %edx /* load &res */
591
+ movl %edx, 4(%esp)
592
+ movl FFI_TRAMPOLINE_SIZE(%eax), %ebx /* load cl->cif */
593
+ movl %ebx, (%esp)
594
+ call *FFI_TRAMPOLINE_SIZE+4(%eax) /* call cl->fun */
595
+
596
+ movl 20(%ebx), %eax /* load cif->flags */
597
+ andl $X86_RET_TYPE_MASK, %eax
598
+ #ifdef __PIC__
599
+ call C(__x86.get_pc_thunk.bx)
600
+ L(pc4):
601
+ leal L(load_table4)-L(pc4)(%ebx, %eax, 8), %ecx
602
+ #else
603
+ leal L(load_table4)(,%eax, 8), %ecx
604
+ #endif
605
+ movl raw_closure_S_FS-4(%esp), %ebx
606
+ L(UW35):
607
+ # cfi_restore(%ebx)
608
+ movl 16(%esp), %eax /* Optimistic load */
609
+ jmp *%ecx
610
+
611
+ .balign 8
612
+ L(load_table4):
613
+ E(L(load_table4), X86_RET_FLOAT)
614
+ flds 16(%esp)
615
+ jmp L(e4)
616
+ E(L(load_table4), X86_RET_DOUBLE)
617
+ fldl 16(%esp)
618
+ jmp L(e4)
619
+ E(L(load_table4), X86_RET_LDOUBLE)
620
+ fldt 16(%esp)
621
+ jmp L(e4)
622
+ E(L(load_table4), X86_RET_SINT8)
623
+ movsbl %al, %eax
624
+ jmp L(e4)
625
+ E(L(load_table4), X86_RET_SINT16)
626
+ movswl %ax, %eax
627
+ jmp L(e4)
628
+ E(L(load_table4), X86_RET_UINT8)
629
+ movzbl %al, %eax
630
+ jmp L(e4)
631
+ E(L(load_table4), X86_RET_UINT16)
632
+ movzwl %ax, %eax
633
+ jmp L(e4)
634
+ E(L(load_table4), X86_RET_INT64)
635
+ movl 16+4(%esp), %edx
636
+ jmp L(e4)
637
+ E(L(load_table4), X86_RET_INT32)
638
+ nop
639
+ /* fallthru */
640
+ E(L(load_table4), X86_RET_VOID)
641
+ L(e4):
642
+ addl $raw_closure_S_FS, %esp
643
+ L(UW36):
644
+ # cfi_adjust_cfa_offset(-raw_closure_S_FS)
645
+ ret
646
+ L(UW37):
647
+ # cfi_adjust_cfa_offset(raw_closure_S_FS)
648
+ E(L(load_table4), X86_RET_STRUCTPOP)
649
+ addl $raw_closure_S_FS, %esp
650
+ L(UW38):
651
+ # cfi_adjust_cfa_offset(-raw_closure_S_FS)
652
+ ret $4
653
+ L(UW39):
654
+ # cfi_adjust_cfa_offset(raw_closure_S_FS)
655
+ E(L(load_table4), X86_RET_STRUCTARG)
656
+ jmp L(e4)
657
+ E(L(load_table4), X86_RET_STRUCT_1B)
658
+ movzbl %al, %eax
659
+ jmp L(e4)
660
+ E(L(load_table4), X86_RET_STRUCT_2B)
661
+ movzwl %ax, %eax
662
+ jmp L(e4)
663
+
664
+ /* Fill out the table so that bad values are predictable. */
665
+ E(L(load_table4), X86_RET_UNUSED14)
666
+ ud2
667
+ E(L(load_table4), X86_RET_UNUSED15)
668
+ ud2
669
+
670
+ L(UW40):
671
+ # cfi_endproc
672
+ ENDF(C(ffi_closure_raw_SYSV))
673
+
674
+ #define raw_closure_T_FS (16+16+8)
675
+
676
+ .balign 16
677
+ .globl C(ffi_closure_raw_THISCALL)
678
+ FFI_HIDDEN(C(ffi_closure_raw_THISCALL))
679
+ C(ffi_closure_raw_THISCALL):
680
+ L(UW41):
681
+ # cfi_startproc
682
+ /* Rearrange the stack such that %ecx is the first argument.
683
+ This means moving the return address. */
684
+ popl %edx
685
+ L(UW42):
686
+ # cfi_def_cfa_offset(0)
687
+ # cfi_register(%eip, %edx)
688
+ pushl %ecx
689
+ L(UW43):
690
+ # cfi_adjust_cfa_offset(4)
691
+ pushl %edx
692
+ L(UW44):
693
+ # cfi_adjust_cfa_offset(4)
694
+ # cfi_rel_offset(%eip, 0)
695
+ subl $raw_closure_T_FS, %esp
696
+ L(UW45):
697
+ # cfi_adjust_cfa_offset(raw_closure_T_FS)
698
+ movl %ebx, raw_closure_T_FS-4(%esp)
699
+ L(UW46):
700
+ # cfi_rel_offset(%ebx, raw_closure_T_FS-4)
701
+
702
+ movl FFI_TRAMPOLINE_SIZE+8(%eax), %edx /* load cl->user_data */
703
+ movl %edx, 12(%esp)
704
+ leal raw_closure_T_FS+4(%esp), %edx /* load raw_args */
705
+ movl %edx, 8(%esp)
706
+ leal 16(%esp), %edx /* load &res */
707
+ movl %edx, 4(%esp)
708
+ movl FFI_TRAMPOLINE_SIZE(%eax), %ebx /* load cl->cif */
709
+ movl %ebx, (%esp)
710
+ call *FFI_TRAMPOLINE_SIZE+4(%eax) /* call cl->fun */
711
+
712
+ movl 20(%ebx), %eax /* load cif->flags */
713
+ andl $X86_RET_TYPE_MASK, %eax
714
+ #ifdef __PIC__
715
+ call C(__x86.get_pc_thunk.bx)
716
+ L(pc5):
717
+ leal L(load_table5)-L(pc5)(%ebx, %eax, 8), %ecx
718
+ #else
719
+ leal L(load_table5)(,%eax, 8), %ecx
720
+ #endif
721
+ movl raw_closure_T_FS-4(%esp), %ebx
722
+ L(UW47):
723
+ # cfi_restore(%ebx)
724
+ movl 16(%esp), %eax /* Optimistic load */
725
+ jmp *%ecx
726
+
727
+ .balign 8
728
+ L(load_table5):
729
+ E(L(load_table5), X86_RET_FLOAT)
730
+ flds 16(%esp)
731
+ jmp L(e5)
732
+ E(L(load_table5), X86_RET_DOUBLE)
733
+ fldl 16(%esp)
734
+ jmp L(e5)
735
+ E(L(load_table5), X86_RET_LDOUBLE)
736
+ fldt 16(%esp)
737
+ jmp L(e5)
738
+ E(L(load_table5), X86_RET_SINT8)
739
+ movsbl %al, %eax
740
+ jmp L(e5)
741
+ E(L(load_table5), X86_RET_SINT16)
742
+ movswl %ax, %eax
743
+ jmp L(e5)
744
+ E(L(load_table5), X86_RET_UINT8)
745
+ movzbl %al, %eax
746
+ jmp L(e5)
747
+ E(L(load_table5), X86_RET_UINT16)
748
+ movzwl %ax, %eax
749
+ jmp L(e5)
750
+ E(L(load_table5), X86_RET_INT64)
751
+ movl 16+4(%esp), %edx
752
+ jmp L(e5)
753
+ E(L(load_table5), X86_RET_INT32)
754
+ nop
755
+ /* fallthru */
756
+ E(L(load_table5), X86_RET_VOID)
757
+ L(e5):
758
+ addl $raw_closure_T_FS, %esp
759
+ L(UW48):
760
+ # cfi_adjust_cfa_offset(-raw_closure_T_FS)
761
+ /* Remove the extra %ecx argument we pushed. */
762
+ ret $4
763
+ L(UW49):
764
+ # cfi_adjust_cfa_offset(raw_closure_T_FS)
765
+ E(L(load_table5), X86_RET_STRUCTPOP)
766
+ addl $raw_closure_T_FS, %esp
767
+ L(UW50):
768
+ # cfi_adjust_cfa_offset(-raw_closure_T_FS)
769
+ ret $8
770
+ L(UW51):
771
+ # cfi_adjust_cfa_offset(raw_closure_T_FS)
772
+ E(L(load_table5), X86_RET_STRUCTARG)
773
+ jmp L(e5)
774
+ E(L(load_table5), X86_RET_STRUCT_1B)
775
+ movzbl %al, %eax
776
+ jmp L(e5)
777
+ E(L(load_table5), X86_RET_STRUCT_2B)
778
+ movzwl %ax, %eax
779
+ jmp L(e5)
780
+
781
+ /* Fill out the table so that bad values are predictable. */
782
+ E(L(load_table5), X86_RET_UNUSED14)
783
+ ud2
784
+ E(L(load_table5), X86_RET_UNUSED15)
785
+ ud2
786
+
787
+ L(UW52):
788
+ # cfi_endproc
789
+ ENDF(C(ffi_closure_raw_THISCALL))
790
+
791
+ #endif /* !FFI_NO_RAW_API */
792
+
793
+ #ifdef X86_DARWIN
794
+ # define COMDAT(X) \
795
+ .section __TEXT,__text,coalesced,pure_instructions; \
796
+ .weak_definition X; \
797
+ FFI_HIDDEN(X)
798
+ #elif defined __ELF__ && !(defined(__sun__) && defined(__svr4__))
799
+ # define COMDAT(X) \
800
+ .section .text.X,"axG",@progbits,X,comdat; \
801
+ .globl X; \
802
+ FFI_HIDDEN(X)
803
+ #else
804
+ # define COMDAT(X)
805
+ #endif
806
+
807
+ #if defined(__PIC__)
808
+ COMDAT(C(__x86.get_pc_thunk.bx))
809
+ C(__x86.get_pc_thunk.bx):
810
+ movl (%esp), %ebx
811
+ ret
812
+ ENDF(C(__x86.get_pc_thunk.bx))
813
+ # if defined X86_DARWIN || defined HAVE_HIDDEN_VISIBILITY_ATTRIBUTE
814
+ COMDAT(C(__x86.get_pc_thunk.dx))
815
+ C(__x86.get_pc_thunk.dx):
816
+ movl (%esp), %edx
817
+ ret
818
+ ENDF(C(__x86.get_pc_thunk.dx))
819
+ #endif /* DARWIN || HIDDEN */
820
+ #endif /* __PIC__ */
821
+
822
+ /* Sadly, OSX cctools-as doesn't understand .cfi directives at all. */
823
+
824
+ #ifdef __APPLE__
825
+ .section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support
826
+ EHFrame0:
827
+ #elif defined(X86_WIN32)
828
+ .section .eh_frame,"r"
829
+ #elif defined(HAVE_AS_X86_64_UNWIND_SECTION_TYPE)
830
+ .section .eh_frame,EH_FRAME_FLAGS,@unwind
831
+ #else
832
+ .section .eh_frame,EH_FRAME_FLAGS,@progbits
833
+ #endif
834
+
835
+ #ifdef HAVE_AS_X86_PCREL
836
+ # define PCREL(X) X - .
837
+ #else
838
+ # define PCREL(X) X@rel
839
+ #endif
840
+
841
+ /* Simplify advancing between labels. Assume DW_CFA_advance_loc1 fits. */
842
+ #define ADV(N, P) .byte 2, L(N)-L(P)
843
+
844
+ .balign 4
845
+ L(CIE):
846
+ .set L(set0),L(ECIE)-L(SCIE)
847
+ .long L(set0) /* CIE Length */
848
+ L(SCIE):
849
+ .long 0 /* CIE Identifier Tag */
850
+ .byte 1 /* CIE Version */
851
+ .ascii "zR\0" /* CIE Augmentation */
852
+ .byte 1 /* CIE Code Alignment Factor */
853
+ .byte 0x7c /* CIE Data Alignment Factor */
854
+ .byte 0x8 /* CIE RA Column */
855
+ .byte 1 /* Augmentation size */
856
+ .byte 0x1b /* FDE Encoding (pcrel sdata4) */
857
+ .byte 0xc, 4, 4 /* DW_CFA_def_cfa, %esp offset 4 */
858
+ .byte 0x80+8, 1 /* DW_CFA_offset, %eip offset 1*-4 */
859
+ .balign 4
860
+ L(ECIE):
861
+
862
+ .set L(set1),L(EFDE1)-L(SFDE1)
863
+ .long L(set1) /* FDE Length */
864
+ L(SFDE1):
865
+ .long L(SFDE1)-L(CIE) /* FDE CIE offset */
866
+ .long PCREL(L(UW0)) /* Initial location */
867
+ .long L(UW5)-L(UW0) /* Address range */
868
+ .byte 0 /* Augmentation size */
869
+ ADV(UW1, UW0)
870
+ .byte 0xc, 5, 8 /* DW_CFA_def_cfa, %ebp 8 */
871
+ .byte 0x80+5, 2 /* DW_CFA_offset, %ebp 2*-4 */
872
+ ADV(UW2, UW1)
873
+ .byte 0x80+3, 0 /* DW_CFA_offset, %ebx 0*-4 */
874
+ ADV(UW3, UW2)
875
+ .byte 0xa /* DW_CFA_remember_state */
876
+ .byte 0xc, 4, 4 /* DW_CFA_def_cfa, %esp 4 */
877
+ .byte 0xc0+3 /* DW_CFA_restore, %ebx */
878
+ .byte 0xc0+5 /* DW_CFA_restore, %ebp */
879
+ ADV(UW4, UW3)
880
+ .byte 0xb /* DW_CFA_restore_state */
881
+ .balign 4
882
+ L(EFDE1):
883
+
884
+ .set L(set2),L(EFDE2)-L(SFDE2)
885
+ .long L(set2) /* FDE Length */
886
+ L(SFDE2):
887
+ .long L(SFDE2)-L(CIE) /* FDE CIE offset */
888
+ .long PCREL(L(UW6)) /* Initial location */
889
+ .long L(UW8)-L(UW6) /* Address range */
890
+ .byte 0 /* Augmentation size */
891
+ ADV(UW7, UW6)
892
+ .byte 0xe, closure_FS+4 /* DW_CFA_def_cfa_offset */
893
+ .balign 4
894
+ L(EFDE2):
895
+
896
+ .set L(set3),L(EFDE3)-L(SFDE3)
897
+ .long L(set3) /* FDE Length */
898
+ L(SFDE3):
899
+ .long L(SFDE3)-L(CIE) /* FDE CIE offset */
900
+ .long PCREL(L(UW9)) /* Initial location */
901
+ .long L(UW11)-L(UW9) /* Address range */
902
+ .byte 0 /* Augmentation size */
903
+ ADV(UW10, UW9)
904
+ .byte 0xe, closure_FS+4 /* DW_CFA_def_cfa_offset */
905
+ .balign 4
906
+ L(EFDE3):
907
+
908
+ .set L(set4),L(EFDE4)-L(SFDE4)
909
+ .long L(set4) /* FDE Length */
910
+ L(SFDE4):
911
+ .long L(SFDE4)-L(CIE) /* FDE CIE offset */
912
+ .long PCREL(L(UW12)) /* Initial location */
913
+ .long L(UW20)-L(UW12) /* Address range */
914
+ .byte 0 /* Augmentation size */
915
+ ADV(UW13, UW12)
916
+ .byte 0xe, closure_FS+4 /* DW_CFA_def_cfa_offset */
917
+ #ifdef FFI_CLOSURE_CALL_INNER_SAVE_EBX
918
+ ADV(UW14, UW13)
919
+ .byte 0x80+3, (40-(closure_FS+4))/-4 /* DW_CFA_offset %ebx */
920
+ ADV(UW15, UW14)
921
+ .byte 0xc0+3 /* DW_CFA_restore %ebx */
922
+ ADV(UW16, UW15)
923
+ #else
924
+ ADV(UW16, UW13)
925
+ #endif
926
+ .byte 0xe, 4 /* DW_CFA_def_cfa_offset */
927
+ ADV(UW17, UW16)
928
+ .byte 0xe, closure_FS+4 /* DW_CFA_def_cfa_offset */
929
+ ADV(UW18, UW17)
930
+ .byte 0xe, 4 /* DW_CFA_def_cfa_offset */
931
+ ADV(UW19, UW18)
932
+ .byte 0xe, closure_FS+4 /* DW_CFA_def_cfa_offset */
933
+ .balign 4
934
+ L(EFDE4):
935
+
936
+ .set L(set5),L(EFDE5)-L(SFDE5)
937
+ .long L(set5) /* FDE Length */
938
+ L(SFDE5):
939
+ .long L(SFDE5)-L(CIE) /* FDE CIE offset */
940
+ .long PCREL(L(UW21)) /* Initial location */
941
+ .long L(UW23)-L(UW21) /* Address range */
942
+ .byte 0 /* Augmentation size */
943
+ ADV(UW22, UW21)
944
+ .byte 0xe, closure_FS+4 /* DW_CFA_def_cfa_offset */
945
+ .balign 4
946
+ L(EFDE5):
947
+
948
+ .set L(set6),L(EFDE6)-L(SFDE6)
949
+ .long L(set6) /* FDE Length */
950
+ L(SFDE6):
951
+ .long L(SFDE6)-L(CIE) /* FDE CIE offset */
952
+ .long PCREL(L(UW24)) /* Initial location */
953
+ .long L(UW26)-L(UW24) /* Address range */
954
+ .byte 0 /* Augmentation size */
955
+ .byte 0xe, 8 /* DW_CFA_def_cfa_offset */
956
+ .byte 0x80+8, 2 /* DW_CFA_offset %eip, 2*-4 */
957
+ ADV(UW25, UW24)
958
+ .byte 0xe, closure_FS+4 /* DW_CFA_def_cfa_offset */
959
+ .balign 4
960
+ L(EFDE6):
961
+
962
+ .set L(set7),L(EFDE7)-L(SFDE7)
963
+ .long L(set7) /* FDE Length */
964
+ L(SFDE7):
965
+ .long L(SFDE7)-L(CIE) /* FDE CIE offset */
966
+ .long PCREL(L(UW27)) /* Initial location */
967
+ .long L(UW31)-L(UW27) /* Address range */
968
+ .byte 0 /* Augmentation size */
969
+ ADV(UW28, UW27)
970
+ .byte 0xe, closure_FS+4 /* DW_CFA_def_cfa_offset */
971
+ #ifdef FFI_CLOSURE_CALL_INNER_SAVE_EBX
972
+ ADV(UW29, UW28)
973
+ .byte 0x80+3, (40-(closure_FS+4))/-4 /* DW_CFA_offset %ebx */
974
+ ADV(UW30, UW29)
975
+ .byte 0xc0+3 /* DW_CFA_restore %ebx */
976
+ #endif
977
+ .balign 4
978
+ L(EFDE7):
979
+
980
+ #if !FFI_NO_RAW_API
981
+ .set L(set8),L(EFDE8)-L(SFDE8)
982
+ .long L(set8) /* FDE Length */
983
+ L(SFDE8):
984
+ .long L(SFDE8)-L(CIE) /* FDE CIE offset */
985
+ .long PCREL(L(UW32)) /* Initial location */
986
+ .long L(UW40)-L(UW32) /* Address range */
987
+ .byte 0 /* Augmentation size */
988
+ ADV(UW33, UW32)
989
+ .byte 0xe, raw_closure_S_FS+4 /* DW_CFA_def_cfa_offset */
990
+ ADV(UW34, UW33)
991
+ .byte 0x80+3, 2 /* DW_CFA_offset %ebx 2*-4 */
992
+ ADV(UW35, UW34)
993
+ .byte 0xc0+3 /* DW_CFA_restore %ebx */
994
+ ADV(UW36, UW35)
995
+ .byte 0xe, 4 /* DW_CFA_def_cfa_offset */
996
+ ADV(UW37, UW36)
997
+ .byte 0xe, raw_closure_S_FS+4 /* DW_CFA_def_cfa_offset */
998
+ ADV(UW38, UW37)
999
+ .byte 0xe, 4 /* DW_CFA_def_cfa_offset */
1000
+ ADV(UW39, UW38)
1001
+ .byte 0xe, raw_closure_S_FS+4 /* DW_CFA_def_cfa_offset */
1002
+ .balign 4
1003
+ L(EFDE8):
1004
+
1005
+ .set L(set9),L(EFDE9)-L(SFDE9)
1006
+ .long L(set9) /* FDE Length */
1007
+ L(SFDE9):
1008
+ .long L(SFDE9)-L(CIE) /* FDE CIE offset */
1009
+ .long PCREL(L(UW41)) /* Initial location */
1010
+ .long L(UW52)-L(UW41) /* Address range */
1011
+ .byte 0 /* Augmentation size */
1012
+ ADV(UW42, UW41)
1013
+ .byte 0xe, 0 /* DW_CFA_def_cfa_offset */
1014
+ .byte 0x9, 8, 2 /* DW_CFA_register %eip, %edx */
1015
+ ADV(UW43, UW42)
1016
+ .byte 0xe, 4 /* DW_CFA_def_cfa_offset */
1017
+ ADV(UW44, UW43)
1018
+ .byte 0xe, 8 /* DW_CFA_def_cfa_offset */
1019
+ .byte 0x80+8, 2 /* DW_CFA_offset %eip 2*-4 */
1020
+ ADV(UW45, UW44)
1021
+ .byte 0xe, raw_closure_T_FS+8 /* DW_CFA_def_cfa_offset */
1022
+ ADV(UW46, UW45)
1023
+ .byte 0x80+3, 3 /* DW_CFA_offset %ebx 3*-4 */
1024
+ ADV(UW47, UW46)
1025
+ .byte 0xc0+3 /* DW_CFA_restore %ebx */
1026
+ ADV(UW48, UW47)
1027
+ .byte 0xe, 8 /* DW_CFA_def_cfa_offset */
1028
+ ADV(UW49, UW48)
1029
+ .byte 0xe, raw_closure_T_FS+8 /* DW_CFA_def_cfa_offset */
1030
+ ADV(UW50, UW49)
1031
+ .byte 0xe, 8 /* DW_CFA_def_cfa_offset */
1032
+ ADV(UW51, UW50)
1033
+ .byte 0xe, raw_closure_T_FS+8 /* DW_CFA_def_cfa_offset */
1034
+ .balign 4
1035
+ L(EFDE9):
1036
+ #endif /* !FFI_NO_RAW_API */
1037
+
1038
+ #ifdef _WIN32
1039
+ .def @feat.00;
1040
+ .scl 3;
1041
+ .type 0;
1042
+ .endef
1043
+ .globl @feat.00
1044
+ @feat.00 = 1
1045
+ #endif
1046
+
1047
+ #ifdef __APPLE__
1048
+ .subsections_via_symbols
1049
+ .section __LD,__compact_unwind,regular,debug
1050
+
1051
+ /* compact unwind for ffi_call_i386 */
1052
+ .long C(ffi_call_i386)
1053
+ .set L1,L(UW5)-L(UW0)
1054
+ .long L1
1055
+ .long 0x04000000 /* use dwarf unwind info */
1056
+ .long 0
1057
+ .long 0
1058
+
1059
+ /* compact unwind for ffi_go_closure_EAX */
1060
+ .long C(ffi_go_closure_EAX)
1061
+ .set L2,L(UW8)-L(UW6)
1062
+ .long L2
1063
+ .long 0x04000000 /* use dwarf unwind info */
1064
+ .long 0
1065
+ .long 0
1066
+
1067
+ /* compact unwind for ffi_go_closure_ECX */
1068
+ .long C(ffi_go_closure_ECX)
1069
+ .set L3,L(UW11)-L(UW9)
1070
+ .long L3
1071
+ .long 0x04000000 /* use dwarf unwind info */
1072
+ .long 0
1073
+ .long 0
1074
+
1075
+ /* compact unwind for ffi_closure_i386 */
1076
+ .long C(ffi_closure_i386)
1077
+ .set L4,L(UW20)-L(UW12)
1078
+ .long L4
1079
+ .long 0x04000000 /* use dwarf unwind info */
1080
+ .long 0
1081
+ .long 0
1082
+
1083
+ /* compact unwind for ffi_go_closure_STDCALL */
1084
+ .long C(ffi_go_closure_STDCALL)
1085
+ .set L5,L(UW23)-L(UW21)
1086
+ .long L5
1087
+ .long 0x04000000 /* use dwarf unwind info */
1088
+ .long 0
1089
+ .long 0
1090
+
1091
+ /* compact unwind for ffi_closure_REGISTER */
1092
+ .long C(ffi_closure_REGISTER)
1093
+ .set L6,L(UW26)-L(UW24)
1094
+ .long L6
1095
+ .long 0x04000000 /* use dwarf unwind info */
1096
+ .long 0
1097
+ .long 0
1098
+
1099
+ /* compact unwind for ffi_closure_STDCALL */
1100
+ .long C(ffi_closure_STDCALL)
1101
+ .set L7,L(UW31)-L(UW27)
1102
+ .long L7
1103
+ .long 0x04000000 /* use dwarf unwind info */
1104
+ .long 0
1105
+ .long 0
1106
+
1107
+ /* compact unwind for ffi_closure_raw_SYSV */
1108
+ .long C(ffi_closure_raw_SYSV)
1109
+ .set L8,L(UW40)-L(UW32)
1110
+ .long L8
1111
+ .long 0x04000000 /* use dwarf unwind info */
1112
+ .long 0
1113
+ .long 0
1114
+
1115
+ /* compact unwind for ffi_closure_raw_THISCALL */
1116
+ .long C(ffi_closure_raw_THISCALL)
1117
+ .set L9,L(UW52)-L(UW41)
1118
+ .long L9
1119
+ .long 0x04000000 /* use dwarf unwind info */
1120
+ .long 0
1121
+ .long 0
1122
+ #endif /* __APPLE__ */
1123
+
1124
+ #endif /* ifndef _MSC_VER */
1125
+ #endif /* ifdef __i386__ */
1126
+
1127
+ #if defined __ELF__ && defined __linux__
1128
+ .section .note.GNU-stack,"",@progbits
1129
+ #endif