ffi 1.9.3-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of ffi might be problematic. Click here for more details.

Files changed (436) hide show
  1. data/COPYING +49 -0
  2. data/LICENSE +24 -0
  3. data/README.md +109 -0
  4. data/Rakefile +220 -0
  5. data/ext/ffi_c/AbstractMemory.c +1032 -0
  6. data/ext/ffi_c/AbstractMemory.h +175 -0
  7. data/ext/ffi_c/ArrayType.c +162 -0
  8. data/ext/ffi_c/ArrayType.h +59 -0
  9. data/ext/ffi_c/Buffer.c +365 -0
  10. data/ext/ffi_c/Call.c +465 -0
  11. data/ext/ffi_c/Call.h +93 -0
  12. data/ext/ffi_c/ClosurePool.c +283 -0
  13. data/ext/ffi_c/ClosurePool.h +57 -0
  14. data/ext/ffi_c/DataConverter.c +91 -0
  15. data/ext/ffi_c/DynamicLibrary.c +333 -0
  16. data/ext/ffi_c/DynamicLibrary.h +49 -0
  17. data/ext/ffi_c/Function.c +999 -0
  18. data/ext/ffi_c/Function.h +87 -0
  19. data/ext/ffi_c/FunctionInfo.c +271 -0
  20. data/ext/ffi_c/LastError.c +184 -0
  21. data/ext/ffi_c/LastError.h +47 -0
  22. data/ext/ffi_c/LongDouble.c +63 -0
  23. data/ext/ffi_c/LongDouble.h +51 -0
  24. data/ext/ffi_c/MappedType.c +168 -0
  25. data/ext/ffi_c/MappedType.h +59 -0
  26. data/ext/ffi_c/MemoryPointer.c +197 -0
  27. data/ext/ffi_c/MemoryPointer.h +53 -0
  28. data/ext/ffi_c/MethodHandle.c +360 -0
  29. data/ext/ffi_c/MethodHandle.h +55 -0
  30. data/ext/ffi_c/Platform.c +121 -0
  31. data/ext/ffi_c/Platform.h +45 -0
  32. data/ext/ffi_c/Pointer.c +508 -0
  33. data/ext/ffi_c/Pointer.h +63 -0
  34. data/ext/ffi_c/Struct.c +828 -0
  35. data/ext/ffi_c/Struct.h +106 -0
  36. data/ext/ffi_c/StructByReference.c +190 -0
  37. data/ext/ffi_c/StructByReference.h +50 -0
  38. data/ext/ffi_c/StructByValue.c +150 -0
  39. data/ext/ffi_c/StructByValue.h +55 -0
  40. data/ext/ffi_c/StructLayout.c +698 -0
  41. data/ext/ffi_c/Thread.c +352 -0
  42. data/ext/ffi_c/Thread.h +95 -0
  43. data/ext/ffi_c/Type.c +397 -0
  44. data/ext/ffi_c/Type.h +62 -0
  45. data/ext/ffi_c/Types.c +139 -0
  46. data/ext/ffi_c/Types.h +89 -0
  47. data/ext/ffi_c/Variadic.c +276 -0
  48. data/ext/ffi_c/compat.h +83 -0
  49. data/ext/ffi_c/extconf.rb +64 -0
  50. data/ext/ffi_c/ffi.c +98 -0
  51. data/ext/ffi_c/libffi.bsd.mk +34 -0
  52. data/ext/ffi_c/libffi.darwin.mk +95 -0
  53. data/ext/ffi_c/libffi.gnu.mk +31 -0
  54. data/ext/ffi_c/libffi.mk +13 -0
  55. data/ext/ffi_c/libffi.vc.mk +26 -0
  56. data/ext/ffi_c/libffi.vc64.mk +26 -0
  57. data/ext/ffi_c/libffi/ChangeLog +4600 -0
  58. data/ext/ffi_c/libffi/ChangeLog.libffi +584 -0
  59. data/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
  60. data/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
  61. data/ext/ffi_c/libffi/LICENSE +21 -0
  62. data/ext/ffi_c/libffi/Makefile.am +196 -0
  63. data/ext/ffi_c/libffi/Makefile.in +1820 -0
  64. data/ext/ffi_c/libffi/Makefile.vc +141 -0
  65. data/ext/ffi_c/libffi/Makefile.vc64 +141 -0
  66. data/ext/ffi_c/libffi/README +342 -0
  67. data/ext/ffi_c/libffi/acinclude.m4 +92 -0
  68. data/ext/ffi_c/libffi/aclocal.m4 +1873 -0
  69. data/ext/ffi_c/libffi/build-ios.sh +67 -0
  70. data/ext/ffi_c/libffi/compile +143 -0
  71. data/ext/ffi_c/libffi/config.guess +1501 -0
  72. data/ext/ffi_c/libffi/config.sub +1705 -0
  73. data/ext/ffi_c/libffi/configure +17191 -0
  74. data/ext/ffi_c/libffi/configure.ac +496 -0
  75. data/ext/ffi_c/libffi/configure.host +11 -0
  76. data/ext/ffi_c/libffi/depcomp +630 -0
  77. data/ext/ffi_c/libffi/doc/libffi.info +593 -0
  78. data/ext/ffi_c/libffi/doc/libffi.texi +600 -0
  79. data/ext/ffi_c/libffi/doc/stamp-vti +4 -0
  80. data/ext/ffi_c/libffi/doc/version.texi +4 -0
  81. data/ext/ffi_c/libffi/fficonfig.h.in +199 -0
  82. data/ext/ffi_c/libffi/fficonfig.hw +57 -0
  83. data/ext/ffi_c/libffi/include/Makefile.am +9 -0
  84. data/ext/ffi_c/libffi/include/Makefile.in +487 -0
  85. data/ext/ffi_c/libffi/include/ffi.h.in +427 -0
  86. data/ext/ffi_c/libffi/include/ffi.h.vc +427 -0
  87. data/ext/ffi_c/libffi/include/ffi.h.vc64 +427 -0
  88. data/ext/ffi_c/libffi/include/ffi_common.h +126 -0
  89. data/ext/ffi_c/libffi/install-sh +520 -0
  90. data/ext/ffi_c/libffi/libffi.pc.in +10 -0
  91. data/ext/ffi_c/libffi/libtool-version +29 -0
  92. data/ext/ffi_c/libffi/ltmain.sh +9636 -0
  93. data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +176 -0
  94. data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +195 -0
  95. data/ext/ffi_c/libffi/m4/ax_check_compiler_flags.m4 +76 -0
  96. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +63 -0
  97. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +70 -0
  98. data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +300 -0
  99. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +215 -0
  100. data/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +79 -0
  101. data/ext/ffi_c/libffi/m4/libtool.m4 +7831 -0
  102. data/ext/ffi_c/libffi/m4/ltoptions.m4 +369 -0
  103. data/ext/ffi_c/libffi/m4/ltsugar.m4 +123 -0
  104. data/ext/ffi_c/libffi/m4/ltversion.m4 +23 -0
  105. data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +98 -0
  106. data/ext/ffi_c/libffi/man/Makefile.am +8 -0
  107. data/ext/ffi_c/libffi/man/Makefile.in +466 -0
  108. data/ext/ffi_c/libffi/man/ffi.3 +31 -0
  109. data/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
  110. data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +66 -0
  111. data/ext/ffi_c/libffi/mdate-sh +201 -0
  112. data/ext/ffi_c/libffi/missing +376 -0
  113. data/ext/ffi_c/libffi/msvcc.sh +197 -0
  114. data/ext/ffi_c/libffi/src/alpha/ffi.c +284 -0
  115. data/ext/ffi_c/libffi/src/alpha/ffitarget.h +48 -0
  116. data/ext/ffi_c/libffi/src/alpha/osf.S +387 -0
  117. data/ext/ffi_c/libffi/src/arm/ffi.c +728 -0
  118. data/ext/ffi_c/libffi/src/arm/ffitarget.h +65 -0
  119. data/ext/ffi_c/libffi/src/arm/gentramp.sh +118 -0
  120. data/ext/ffi_c/libffi/src/arm/sysv.S +497 -0
  121. data/ext/ffi_c/libffi/src/arm/trampoline.S +4450 -0
  122. data/ext/ffi_c/libffi/src/avr32/ffi.c +423 -0
  123. data/ext/ffi_c/libffi/src/avr32/ffitarget.h +50 -0
  124. data/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
  125. data/ext/ffi_c/libffi/src/closures.c +615 -0
  126. data/ext/ffi_c/libffi/src/cris/ffi.c +383 -0
  127. data/ext/ffi_c/libffi/src/cris/ffitarget.h +51 -0
  128. data/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
  129. data/ext/ffi_c/libffi/src/debug.c +59 -0
  130. data/ext/ffi_c/libffi/src/dlmalloc.c +5161 -0
  131. data/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
  132. data/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
  133. data/ext/ffi_c/libffi/src/frv/ffitarget.h +57 -0
  134. data/ext/ffi_c/libffi/src/ia64/ffi.c +582 -0
  135. data/ext/ffi_c/libffi/src/ia64/ffitarget.h +50 -0
  136. data/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
  137. data/ext/ffi_c/libffi/src/ia64/unix.S +560 -0
  138. data/ext/ffi_c/libffi/src/java_raw_api.c +356 -0
  139. data/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
  140. data/ext/ffi_c/libffi/src/m32r/ffitarget.h +48 -0
  141. data/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
  142. data/ext/ffi_c/libffi/src/m68k/ffi.c +288 -0
  143. data/ext/ffi_c/libffi/src/m68k/ffitarget.h +49 -0
  144. data/ext/ffi_c/libffi/src/m68k/sysv.S +270 -0
  145. data/ext/ffi_c/libffi/src/mips/ffi.c +1036 -0
  146. data/ext/ffi_c/libffi/src/mips/ffitarget.h +242 -0
  147. data/ext/ffi_c/libffi/src/mips/n32.S +591 -0
  148. data/ext/ffi_c/libffi/src/mips/o32.S +381 -0
  149. data/ext/ffi_c/libffi/src/moxie/eabi.S +128 -0
  150. data/ext/ffi_c/libffi/src/moxie/ffi.c +276 -0
  151. data/ext/ffi_c/libffi/src/pa/ffi.c +719 -0
  152. data/ext/ffi_c/libffi/src/pa/ffitarget.h +78 -0
  153. data/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
  154. data/ext/ffi_c/libffi/src/pa/linux.S +357 -0
  155. data/ext/ffi_c/libffi/src/powerpc/aix.S +328 -0
  156. data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +445 -0
  157. data/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
  158. data/ext/ffi_c/libffi/src/powerpc/darwin.S +383 -0
  159. data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +575 -0
  160. data/ext/ffi_c/libffi/src/powerpc/ffi.c +1448 -0
  161. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1359 -0
  162. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +139 -0
  163. data/ext/ffi_c/libffi/src/powerpc/linux64.S +187 -0
  164. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +236 -0
  165. data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +327 -0
  166. data/ext/ffi_c/libffi/src/powerpc/sysv.S +219 -0
  167. data/ext/ffi_c/libffi/src/prep_cif.c +177 -0
  168. data/ext/ffi_c/libffi/src/raw_api.c +254 -0
  169. data/ext/ffi_c/libffi/src/s390/ffi.c +780 -0
  170. data/ext/ffi_c/libffi/src/s390/ffitarget.h +62 -0
  171. data/ext/ffi_c/libffi/src/s390/sysv.S +434 -0
  172. data/ext/ffi_c/libffi/src/sh/ffi.c +716 -0
  173. data/ext/ffi_c/libffi/src/sh/ffitarget.h +49 -0
  174. data/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
  175. data/ext/ffi_c/libffi/src/sh64/ffi.c +468 -0
  176. data/ext/ffi_c/libffi/src/sh64/ffitarget.h +53 -0
  177. data/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
  178. data/ext/ffi_c/libffi/src/sparc/ffi.c +669 -0
  179. data/ext/ffi_c/libffi/src/sparc/ffitarget.h +68 -0
  180. data/ext/ffi_c/libffi/src/sparc/v8.S +313 -0
  181. data/ext/ffi_c/libffi/src/sparc/v9.S +307 -0
  182. data/ext/ffi_c/libffi/src/types.c +77 -0
  183. data/ext/ffi_c/libffi/src/x86/darwin.S +444 -0
  184. data/ext/ffi_c/libffi/src/x86/darwin64.S +416 -0
  185. data/ext/ffi_c/libffi/src/x86/ffi.c +644 -0
  186. data/ext/ffi_c/libffi/src/x86/ffi64.c +635 -0
  187. data/ext/ffi_c/libffi/src/x86/ffitarget.h +121 -0
  188. data/ext/ffi_c/libffi/src/x86/freebsd.S +458 -0
  189. data/ext/ffi_c/libffi/src/x86/sysv.S +468 -0
  190. data/ext/ffi_c/libffi/src/x86/unix64.S +426 -0
  191. data/ext/ffi_c/libffi/src/x86/win32.S +1065 -0
  192. data/ext/ffi_c/libffi/src/x86/win64.S +468 -0
  193. data/ext/ffi_c/libffi/testsuite/Makefile.am +80 -0
  194. data/ext/ffi_c/libffi/testsuite/Makefile.in +500 -0
  195. data/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
  196. data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +300 -0
  197. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +350 -0
  198. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +263 -0
  199. data/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
  200. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +32 -0
  201. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +89 -0
  202. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +81 -0
  203. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +81 -0
  204. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +82 -0
  205. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +89 -0
  206. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +92 -0
  207. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +90 -0
  208. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +95 -0
  209. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_stdcall.c +64 -0
  210. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +94 -0
  211. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +95 -0
  212. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +96 -0
  213. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +102 -0
  214. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +89 -0
  215. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +91 -0
  216. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +93 -0
  217. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +113 -0
  218. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +90 -0
  219. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +95 -0
  220. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +90 -0
  221. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +90 -0
  222. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +98 -0
  223. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +90 -0
  224. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +109 -0
  225. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +98 -0
  226. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +124 -0
  227. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +113 -0
  228. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +99 -0
  229. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +117 -0
  230. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +97 -0
  231. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +88 -0
  232. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +90 -0
  233. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +91 -0
  234. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +93 -0
  235. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +91 -0
  236. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +92 -0
  237. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +134 -0
  238. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +117 -0
  239. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +95 -0
  240. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +91 -0
  241. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +91 -0
  242. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +92 -0
  243. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +91 -0
  244. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +91 -0
  245. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +93 -0
  246. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +66 -0
  247. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +43 -0
  248. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +60 -0
  249. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +42 -0
  250. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +105 -0
  251. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +60 -0
  252. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +74 -0
  253. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +74 -0
  254. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +86 -0
  255. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +91 -0
  256. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +74 -0
  257. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +86 -0
  258. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +74 -0
  259. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +140 -0
  260. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +44 -0
  261. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +42 -0
  262. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +42 -0
  263. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +42 -0
  264. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +43 -0
  265. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +47 -0
  266. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +43 -0
  267. data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +36 -0
  268. data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +26 -0
  269. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +153 -0
  270. data/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
  271. data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +58 -0
  272. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +58 -0
  273. data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +72 -0
  274. data/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
  275. data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +342 -0
  276. data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +69 -0
  277. data/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +63 -0
  278. data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +53 -0
  279. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +152 -0
  280. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +161 -0
  281. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +133 -0
  282. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +110 -0
  283. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +111 -0
  284. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +111 -0
  285. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +112 -0
  286. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +131 -0
  287. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +111 -0
  288. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +131 -0
  289. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +131 -0
  290. data/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +90 -0
  291. data/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
  292. data/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
  293. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +35 -0
  294. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
  295. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
  296. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
  297. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
  298. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
  299. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
  300. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
  301. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
  302. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +43 -0
  303. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
  304. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
  305. data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
  306. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
  307. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +145 -0
  308. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +148 -0
  309. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +124 -0
  310. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +125 -0
  311. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
  312. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +44 -0
  313. data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +65 -0
  314. data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
  315. data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +59 -0
  316. data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +63 -0
  317. data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +65 -0
  318. data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
  319. data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
  320. data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +80 -0
  321. data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +67 -0
  322. data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +70 -0
  323. data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +96 -0
  324. data/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +35 -0
  325. data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest.cc +124 -0
  326. data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc +53 -0
  327. data/ext/ffi_c/libffi/texinfo.tex +7210 -0
  328. data/ext/ffi_c/rbffi.h +57 -0
  329. data/ext/ffi_c/rbffi_endian.h +59 -0
  330. data/ext/ffi_c/win32/stdbool.h +8 -0
  331. data/ext/ffi_c/win32/stdint.h +201 -0
  332. data/ffi.gemspec +22 -0
  333. data/gen/Rakefile +30 -0
  334. data/lib/ffi.rb +28 -0
  335. data/lib/ffi/autopointer.rb +194 -0
  336. data/lib/ffi/buffer.rb +4 -0
  337. data/lib/ffi/callback.rb +4 -0
  338. data/lib/ffi/enum.rb +173 -0
  339. data/lib/ffi/errno.rb +43 -0
  340. data/lib/ffi/ffi.rb +44 -0
  341. data/lib/ffi/io.rb +62 -0
  342. data/lib/ffi/library.rb +499 -0
  343. data/lib/ffi/managedstruct.rb +84 -0
  344. data/lib/ffi/memorypointer.rb +1 -0
  345. data/lib/ffi/platform.rb +148 -0
  346. data/lib/ffi/platform/arm-linux/types.conf +104 -0
  347. data/lib/ffi/platform/i386-cygwin/types.conf +3 -0
  348. data/lib/ffi/platform/i386-darwin/types.conf +100 -0
  349. data/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  350. data/lib/ffi/platform/i386-gnu/types.conf +107 -0
  351. data/lib/ffi/platform/i386-linux/types.conf +103 -0
  352. data/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  353. data/lib/ffi/platform/i386-openbsd/types.conf +128 -0
  354. data/lib/ffi/platform/i386-solaris/types.conf +122 -0
  355. data/lib/ffi/platform/i386-windows/types.conf +105 -0
  356. data/lib/ffi/platform/ia64-linux/types.conf +104 -0
  357. data/lib/ffi/platform/mips-linux/types.conf +102 -0
  358. data/lib/ffi/platform/mipsel-linux/types.conf +102 -0
  359. data/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  360. data/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  361. data/lib/ffi/platform/powerpc-linux/types.conf +100 -0
  362. data/lib/ffi/platform/s390-linux/types.conf +102 -0
  363. data/lib/ffi/platform/s390x-linux/types.conf +102 -0
  364. data/lib/ffi/platform/sparc-linux/types.conf +102 -0
  365. data/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  366. data/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  367. data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
  368. data/lib/ffi/platform/x86_64-darwin/types.conf +100 -0
  369. data/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
  370. data/lib/ffi/platform/x86_64-linux/types.conf +102 -0
  371. data/lib/ffi/platform/x86_64-netbsd/types.conf +126 -0
  372. data/lib/ffi/platform/x86_64-openbsd/types.conf +128 -0
  373. data/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  374. data/lib/ffi/platform/x86_64-windows/types.conf +27 -0
  375. data/lib/ffi/pointer.rb +134 -0
  376. data/lib/ffi/struct.rb +367 -0
  377. data/lib/ffi/struct_layout_builder.rb +222 -0
  378. data/lib/ffi/tools/const_generator.rb +229 -0
  379. data/lib/ffi/tools/generator.rb +60 -0
  380. data/lib/ffi/tools/generator_task.rb +36 -0
  381. data/lib/ffi/tools/struct_generator.rb +194 -0
  382. data/lib/ffi/tools/types_generator.rb +135 -0
  383. data/lib/ffi/types.rb +190 -0
  384. data/lib/ffi/union.rb +43 -0
  385. data/lib/ffi/variadic.rb +78 -0
  386. data/lib/ffi/version.rb +4 -0
  387. data/lib/ffi_c.so +0 -0
  388. data/libtest/Benchmark.c +52 -0
  389. data/libtest/BoolTest.c +34 -0
  390. data/libtest/BufferTest.c +31 -0
  391. data/libtest/ClosureTest.c +190 -0
  392. data/libtest/EnumTest.c +34 -0
  393. data/libtest/FunctionTest.c +58 -0
  394. data/libtest/GNUmakefile +149 -0
  395. data/libtest/GlobalVariable.c +62 -0
  396. data/libtest/LastErrorTest.c +21 -0
  397. data/libtest/NumberTest.c +132 -0
  398. data/libtest/PointerTest.c +63 -0
  399. data/libtest/ReferenceTest.c +23 -0
  400. data/libtest/StringTest.c +34 -0
  401. data/libtest/StructTest.c +243 -0
  402. data/libtest/UnionTest.c +43 -0
  403. data/libtest/VariadicTest.c +62 -0
  404. data/spec/ffi/async_callback_spec.rb +35 -0
  405. data/spec/ffi/bool_spec.rb +29 -0
  406. data/spec/ffi/buffer_spec.rb +251 -0
  407. data/spec/ffi/callback_spec.rb +667 -0
  408. data/spec/ffi/custom_param_type.rb +36 -0
  409. data/spec/ffi/custom_type_spec.rb +74 -0
  410. data/spec/ffi/dup_spec.rb +54 -0
  411. data/spec/ffi/enum_spec.rb +220 -0
  412. data/spec/ffi/errno_spec.rb +18 -0
  413. data/spec/ffi/ffi_spec.rb +29 -0
  414. data/spec/ffi/function_spec.rb +76 -0
  415. data/spec/ffi/library_spec.rb +216 -0
  416. data/spec/ffi/long_double.rb +30 -0
  417. data/spec/ffi/managed_struct_spec.rb +57 -0
  418. data/spec/ffi/number_spec.rb +236 -0
  419. data/spec/ffi/pointer_spec.rb +265 -0
  420. data/spec/ffi/rbx/attach_function_spec.rb +28 -0
  421. data/spec/ffi/rbx/memory_pointer_spec.rb +123 -0
  422. data/spec/ffi/rbx/spec_helper.rb +1 -0
  423. data/spec/ffi/rbx/struct_spec.rb +13 -0
  424. data/spec/ffi/spec_helper.rb +33 -0
  425. data/spec/ffi/string_spec.rb +108 -0
  426. data/spec/ffi/strptr_spec.rb +50 -0
  427. data/spec/ffi/struct_by_ref_spec.rb +43 -0
  428. data/spec/ffi/struct_callback_spec.rb +69 -0
  429. data/spec/ffi/struct_initialize_spec.rb +35 -0
  430. data/spec/ffi/struct_packed_spec.rb +51 -0
  431. data/spec/ffi/struct_spec.rb +748 -0
  432. data/spec/ffi/typedef_spec.rb +78 -0
  433. data/spec/ffi/union_spec.rb +65 -0
  434. data/spec/ffi/variadic_spec.rb +92 -0
  435. data/spec/spec.opts +4 -0
  436. metadata +562 -0
@@ -0,0 +1,416 @@
1
+ /* -----------------------------------------------------------------------
2
+ darwin64.S - Copyright (c) 2006 Free Software Foundation, Inc.
3
+ Copyright (c) 2008 Red Hat, Inc.
4
+ derived from unix64.S
5
+
6
+ x86-64 Foreign Function Interface for Darwin.
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, EXPRESS
20
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
22
+ IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR
23
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
24
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25
+ OTHER DEALINGS IN THE SOFTWARE.
26
+ ----------------------------------------------------------------------- */
27
+
28
+ #ifdef __x86_64__
29
+ #define LIBFFI_ASM
30
+ #include <fficonfig.h>
31
+ #include <ffi.h>
32
+
33
+ .file "darwin64.S"
34
+ .text
35
+
36
+ /* ffi_call_unix64 (void *args, unsigned long bytes, unsigned flags,
37
+ void *raddr, void (*fnaddr)(void));
38
+
39
+ Bit o trickiness here -- ARGS+BYTES is the base of the stack frame
40
+ for this function. This has been allocated by ffi_call. We also
41
+ deallocate some of the stack that has been alloca'd. */
42
+
43
+ .align 3
44
+ .globl _ffi_call_unix64
45
+
46
+ _ffi_call_unix64:
47
+ LUW0:
48
+ movq (%rsp), %r10 /* Load return address. */
49
+ leaq (%rdi, %rsi), %rax /* Find local stack base. */
50
+ movq %rdx, (%rax) /* Save flags. */
51
+ movq %rcx, 8(%rax) /* Save raddr. */
52
+ movq %rbp, 16(%rax) /* Save old frame pointer. */
53
+ movq %r10, 24(%rax) /* Relocate return address. */
54
+ movq %rax, %rbp /* Finalize local stack frame. */
55
+ LUW1:
56
+ movq %rdi, %r10 /* Save a copy of the register area. */
57
+ movq %r8, %r11 /* Save a copy of the target fn. */
58
+ movl %r9d, %eax /* Set number of SSE registers. */
59
+
60
+ /* Load up all argument registers. */
61
+ movq (%r10), %rdi
62
+ movq 8(%r10), %rsi
63
+ movq 16(%r10), %rdx
64
+ movq 24(%r10), %rcx
65
+ movq 32(%r10), %r8
66
+ movq 40(%r10), %r9
67
+ testl %eax, %eax
68
+ jnz Lload_sse
69
+ Lret_from_load_sse:
70
+
71
+ /* Deallocate the reg arg area. */
72
+ leaq 176(%r10), %rsp
73
+
74
+ /* Call the user function. */
75
+ call *%r11
76
+
77
+ /* Deallocate stack arg area; local stack frame in redzone. */
78
+ leaq 24(%rbp), %rsp
79
+
80
+ movq 0(%rbp), %rcx /* Reload flags. */
81
+ movq 8(%rbp), %rdi /* Reload raddr. */
82
+ movq 16(%rbp), %rbp /* Reload old frame pointer. */
83
+ LUW2:
84
+
85
+ /* The first byte of the flags contains the FFI_TYPE. */
86
+ movzbl %cl, %r10d
87
+ leaq Lstore_table(%rip), %r11
88
+ movslq (%r11, %r10, 4), %r10
89
+ addq %r11, %r10
90
+ jmp *%r10
91
+
92
+ Lstore_table:
93
+ .long Lst_void-Lstore_table /* FFI_TYPE_VOID */
94
+ .long Lst_sint32-Lstore_table /* FFI_TYPE_INT */
95
+ .long Lst_float-Lstore_table /* FFI_TYPE_FLOAT */
96
+ .long Lst_double-Lstore_table /* FFI_TYPE_DOUBLE */
97
+ .long Lst_ldouble-Lstore_table /* FFI_TYPE_LONGDOUBLE */
98
+ .long Lst_uint8-Lstore_table /* FFI_TYPE_UINT8 */
99
+ .long Lst_sint8-Lstore_table /* FFI_TYPE_SINT8 */
100
+ .long Lst_uint16-Lstore_table /* FFI_TYPE_UINT16 */
101
+ .long Lst_sint16-Lstore_table /* FFI_TYPE_SINT16 */
102
+ .long Lst_uint32-Lstore_table /* FFI_TYPE_UINT32 */
103
+ .long Lst_sint32-Lstore_table /* FFI_TYPE_SINT32 */
104
+ .long Lst_int64-Lstore_table /* FFI_TYPE_UINT64 */
105
+ .long Lst_int64-Lstore_table /* FFI_TYPE_SINT64 */
106
+ .long Lst_struct-Lstore_table /* FFI_TYPE_STRUCT */
107
+ .long Lst_int64-Lstore_table /* FFI_TYPE_POINTER */
108
+
109
+ .text
110
+ .align 3
111
+ Lst_void:
112
+ ret
113
+ .align 3
114
+ Lst_uint8:
115
+ movzbq %al, %rax
116
+ movq %rax, (%rdi)
117
+ ret
118
+ .align 3
119
+ Lst_sint8:
120
+ movsbq %al, %rax
121
+ movq %rax, (%rdi)
122
+ ret
123
+ .align 3
124
+ Lst_uint16:
125
+ movzwq %ax, %rax
126
+ movq %rax, (%rdi)
127
+ .align 3
128
+ Lst_sint16:
129
+ movswq %ax, %rax
130
+ movq %rax, (%rdi)
131
+ ret
132
+ .align 3
133
+ Lst_uint32:
134
+ movl %eax, %eax
135
+ movq %rax, (%rdi)
136
+ .align 3
137
+ Lst_sint32:
138
+ cltq
139
+ movq %rax, (%rdi)
140
+ ret
141
+ .align 3
142
+ Lst_int64:
143
+ movq %rax, (%rdi)
144
+ ret
145
+ .align 3
146
+ Lst_float:
147
+ movss %xmm0, (%rdi)
148
+ ret
149
+ .align 3
150
+ Lst_double:
151
+ movsd %xmm0, (%rdi)
152
+ ret
153
+ Lst_ldouble:
154
+ fstpt (%rdi)
155
+ ret
156
+ .align 3
157
+ Lst_struct:
158
+ leaq -20(%rsp), %rsi /* Scratch area in redzone. */
159
+
160
+ /* We have to locate the values now, and since we don't want to
161
+ write too much data into the user's return value, we spill the
162
+ value to a 16 byte scratch area first. Bits 8, 9, and 10
163
+ control where the values are located. Only one of the three
164
+ bits will be set; see ffi_prep_cif_machdep for the pattern. */
165
+ movd %xmm0, %r10
166
+ movd %xmm1, %r11
167
+ testl $0x100, %ecx
168
+ cmovnz %rax, %rdx
169
+ cmovnz %r10, %rax
170
+ testl $0x200, %ecx
171
+ cmovnz %r10, %rdx
172
+ testl $0x400, %ecx
173
+ cmovnz %r10, %rax
174
+ cmovnz %r11, %rdx
175
+ movq %rax, (%rsi)
176
+ movq %rdx, 8(%rsi)
177
+
178
+ /* Bits 12-31 contain the true size of the structure. Copy from
179
+ the scratch area to the true destination. */
180
+ shrl $12, %ecx
181
+ rep movsb
182
+ ret
183
+
184
+ /* Many times we can avoid loading any SSE registers at all.
185
+ It's not worth an indirect jump to load the exact set of
186
+ SSE registers needed; zero or all is a good compromise. */
187
+ .align 3
188
+ LUW3:
189
+ Lload_sse:
190
+ movdqa 48(%r10), %xmm0
191
+ movdqa 64(%r10), %xmm1
192
+ movdqa 80(%r10), %xmm2
193
+ movdqa 96(%r10), %xmm3
194
+ movdqa 112(%r10), %xmm4
195
+ movdqa 128(%r10), %xmm5
196
+ movdqa 144(%r10), %xmm6
197
+ movdqa 160(%r10), %xmm7
198
+ jmp Lret_from_load_sse
199
+
200
+ LUW4:
201
+ .align 3
202
+ .globl _ffi_closure_unix64
203
+
204
+ _ffi_closure_unix64:
205
+ LUW5:
206
+ /* The carry flag is set by the trampoline iff SSE registers
207
+ are used. Don't clobber it before the branch instruction. */
208
+ leaq -200(%rsp), %rsp
209
+ LUW6:
210
+ movq %rdi, (%rsp)
211
+ movq %rsi, 8(%rsp)
212
+ movq %rdx, 16(%rsp)
213
+ movq %rcx, 24(%rsp)
214
+ movq %r8, 32(%rsp)
215
+ movq %r9, 40(%rsp)
216
+ jc Lsave_sse
217
+ Lret_from_save_sse:
218
+
219
+ movq %r10, %rdi
220
+ leaq 176(%rsp), %rsi
221
+ movq %rsp, %rdx
222
+ leaq 208(%rsp), %rcx
223
+ call _ffi_closure_unix64_inner
224
+
225
+ /* Deallocate stack frame early; return value is now in redzone. */
226
+ addq $200, %rsp
227
+ LUW7:
228
+
229
+ /* The first byte of the return value contains the FFI_TYPE. */
230
+ movzbl %al, %r10d
231
+ leaq Lload_table(%rip), %r11
232
+ movslq (%r11, %r10, 4), %r10
233
+ addq %r11, %r10
234
+ jmp *%r10
235
+
236
+ Lload_table:
237
+ .long Lld_void-Lload_table /* FFI_TYPE_VOID */
238
+ .long Lld_int32-Lload_table /* FFI_TYPE_INT */
239
+ .long Lld_float-Lload_table /* FFI_TYPE_FLOAT */
240
+ .long Lld_double-Lload_table /* FFI_TYPE_DOUBLE */
241
+ .long Lld_ldouble-Lload_table /* FFI_TYPE_LONGDOUBLE */
242
+ .long Lld_int8-Lload_table /* FFI_TYPE_UINT8 */
243
+ .long Lld_int8-Lload_table /* FFI_TYPE_SINT8 */
244
+ .long Lld_int16-Lload_table /* FFI_TYPE_UINT16 */
245
+ .long Lld_int16-Lload_table /* FFI_TYPE_SINT16 */
246
+ .long Lld_int32-Lload_table /* FFI_TYPE_UINT32 */
247
+ .long Lld_int32-Lload_table /* FFI_TYPE_SINT32 */
248
+ .long Lld_int64-Lload_table /* FFI_TYPE_UINT64 */
249
+ .long Lld_int64-Lload_table /* FFI_TYPE_SINT64 */
250
+ .long Lld_struct-Lload_table /* FFI_TYPE_STRUCT */
251
+ .long Lld_int64-Lload_table /* FFI_TYPE_POINTER */
252
+
253
+ .text
254
+ .align 3
255
+ Lld_void:
256
+ ret
257
+ .align 3
258
+ Lld_int8:
259
+ movzbl -24(%rsp), %eax
260
+ ret
261
+ .align 3
262
+ Lld_int16:
263
+ movzwl -24(%rsp), %eax
264
+ ret
265
+ .align 3
266
+ Lld_int32:
267
+ movl -24(%rsp), %eax
268
+ ret
269
+ .align 3
270
+ Lld_int64:
271
+ movq -24(%rsp), %rax
272
+ ret
273
+ .align 3
274
+ Lld_float:
275
+ movss -24(%rsp), %xmm0
276
+ ret
277
+ .align 3
278
+ Lld_double:
279
+ movsd -24(%rsp), %xmm0
280
+ ret
281
+ .align 3
282
+ Lld_ldouble:
283
+ fldt -24(%rsp)
284
+ ret
285
+ .align 3
286
+ Lld_struct:
287
+ /* There are four possibilities here, %rax/%rdx, %xmm0/%rax,
288
+ %rax/%xmm0, %xmm0/%xmm1. We collapse two by always loading
289
+ both rdx and xmm1 with the second word. For the remaining,
290
+ bit 8 set means xmm0 gets the second word, and bit 9 means
291
+ that rax gets the second word. */
292
+ movq -24(%rsp), %rcx
293
+ movq -16(%rsp), %rdx
294
+ movq -16(%rsp), %xmm1
295
+ testl $0x100, %eax
296
+ cmovnz %rdx, %rcx
297
+ movd %rcx, %xmm0
298
+ testl $0x200, %eax
299
+ movq -24(%rsp), %rax
300
+ cmovnz %rdx, %rax
301
+ ret
302
+
303
+ /* See the comment above Lload_sse; the same logic applies here. */
304
+ .align 3
305
+ LUW8:
306
+ Lsave_sse:
307
+ movdqa %xmm0, 48(%rsp)
308
+ movdqa %xmm1, 64(%rsp)
309
+ movdqa %xmm2, 80(%rsp)
310
+ movdqa %xmm3, 96(%rsp)
311
+ movdqa %xmm4, 112(%rsp)
312
+ movdqa %xmm5, 128(%rsp)
313
+ movdqa %xmm6, 144(%rsp)
314
+ movdqa %xmm7, 160(%rsp)
315
+ jmp Lret_from_save_sse
316
+
317
+ LUW9:
318
+ .section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support
319
+ EH_frame1:
320
+ .set L$set$0,LECIE1-LSCIE1 /* CIE Length */
321
+ .long L$set$0
322
+ LSCIE1:
323
+ .long 0x0 /* CIE Identifier Tag */
324
+ .byte 0x1 /* CIE Version */
325
+ .ascii "zR\0" /* CIE Augmentation */
326
+ .byte 0x1 /* uleb128 0x1; CIE Code Alignment Factor */
327
+ .byte 0x78 /* sleb128 -8; CIE Data Alignment Factor */
328
+ .byte 0x10 /* CIE RA Column */
329
+ .byte 0x1 /* uleb128 0x1; Augmentation size */
330
+ .byte 0x10 /* FDE Encoding (pcrel sdata4) */
331
+ .byte 0xc /* DW_CFA_def_cfa, %rsp offset 8 */
332
+ .byte 0x7 /* uleb128 0x7 */
333
+ .byte 0x8 /* uleb128 0x8 */
334
+ .byte 0x90 /* DW_CFA_offset, column 0x10 */
335
+ .byte 0x1
336
+ .align 3
337
+ LECIE1:
338
+ .globl _ffi_call_unix64.eh
339
+ _ffi_call_unix64.eh:
340
+ LSFDE1:
341
+ .set L$set$1,LEFDE1-LASFDE1 /* FDE Length */
342
+ .long L$set$1
343
+ LASFDE1:
344
+ .long LASFDE1-EH_frame1 /* FDE CIE offset */
345
+ .quad LUW0-. /* FDE initial location */
346
+ .set L$set$2,LUW4-LUW0 /* FDE address range */
347
+ .quad L$set$2
348
+ .byte 0x0 /* Augmentation size */
349
+ .byte 0x4 /* DW_CFA_advance_loc4 */
350
+ .set L$set$3,LUW1-LUW0
351
+ .long L$set$3
352
+
353
+ /* New stack frame based off rbp. This is a itty bit of unwind
354
+ trickery in that the CFA *has* changed. There is no easy way
355
+ to describe it correctly on entry to the function. Fortunately,
356
+ it doesn't matter too much since at all points we can correctly
357
+ unwind back to ffi_call. Note that the location to which we
358
+ moved the return address is (the new) CFA-8, so from the
359
+ perspective of the unwind info, it hasn't moved. */
360
+ .byte 0xc /* DW_CFA_def_cfa, %rbp offset 32 */
361
+ .byte 0x6
362
+ .byte 0x20
363
+ .byte 0x80+6 /* DW_CFA_offset, %rbp offset 2*-8 */
364
+ .byte 0x2
365
+ .byte 0xa /* DW_CFA_remember_state */
366
+
367
+ .byte 0x4 /* DW_CFA_advance_loc4 */
368
+ .set L$set$4,LUW2-LUW1
369
+ .long L$set$4
370
+ .byte 0xc /* DW_CFA_def_cfa, %rsp offset 8 */
371
+ .byte 0x7
372
+ .byte 0x8
373
+ .byte 0xc0+6 /* DW_CFA_restore, %rbp */
374
+
375
+ .byte 0x4 /* DW_CFA_advance_loc4 */
376
+ .set L$set$5,LUW3-LUW2
377
+ .long L$set$5
378
+ .byte 0xb /* DW_CFA_restore_state */
379
+
380
+ .align 3
381
+ LEFDE1:
382
+ .globl _ffi_closure_unix64.eh
383
+ _ffi_closure_unix64.eh:
384
+ LSFDE3:
385
+ .set L$set$6,LEFDE3-LASFDE3 /* FDE Length */
386
+ .long L$set$6
387
+ LASFDE3:
388
+ .long LASFDE3-EH_frame1 /* FDE CIE offset */
389
+ .quad LUW5-. /* FDE initial location */
390
+ .set L$set$7,LUW9-LUW5 /* FDE address range */
391
+ .quad L$set$7
392
+ .byte 0x0 /* Augmentation size */
393
+
394
+ .byte 0x4 /* DW_CFA_advance_loc4 */
395
+ .set L$set$8,LUW6-LUW5
396
+ .long L$set$8
397
+ .byte 0xe /* DW_CFA_def_cfa_offset */
398
+ .byte 208,1 /* uleb128 208 */
399
+ .byte 0xa /* DW_CFA_remember_state */
400
+
401
+ .byte 0x4 /* DW_CFA_advance_loc4 */
402
+ .set L$set$9,LUW7-LUW6
403
+ .long L$set$9
404
+ .byte 0xe /* DW_CFA_def_cfa_offset */
405
+ .byte 0x8
406
+
407
+ .byte 0x4 /* DW_CFA_advance_loc4 */
408
+ .set L$set$10,LUW8-LUW7
409
+ .long L$set$10
410
+ .byte 0xb /* DW_CFA_restore_state */
411
+
412
+ .align 3
413
+ LEFDE3:
414
+ .subsections_via_symbols
415
+
416
+ #endif /* __x86_64__ */
@@ -0,0 +1,644 @@
1
+ /* -----------------------------------------------------------------------
2
+ ffi.c - Copyright (c) 1996, 1998, 1999, 2001, 2007, 2008 Red Hat, Inc.
3
+ Copyright (c) 2002 Ranjit Mathew
4
+ Copyright (c) 2002 Bo Thorsen
5
+ Copyright (c) 2002 Roger Sayle
6
+ Copyright (C) 2008, 2010 Free Software Foundation, Inc.
7
+
8
+ x86 Foreign Function Interface
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining
11
+ a copy of this software and associated documentation files (the
12
+ ``Software''), to deal in the Software without restriction, including
13
+ without limitation the rights to use, copy, modify, merge, publish,
14
+ distribute, sublicense, and/or sell copies of the Software, and to
15
+ permit persons to whom the Software is furnished to do so, subject to
16
+ the following conditions:
17
+
18
+ The above copyright notice and this permission notice shall be included
19
+ in all copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
22
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
25
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
26
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28
+ DEALINGS IN THE SOFTWARE.
29
+ ----------------------------------------------------------------------- */
30
+
31
+ #if !defined(__x86_64__) || defined(_WIN64)
32
+
33
+ #ifdef _WIN64
34
+ #include <windows.h>
35
+ #endif
36
+
37
+ #include <ffi.h>
38
+ #include <ffi_common.h>
39
+
40
+ #include <stdlib.h>
41
+
42
+ /* ffi_prep_args is called by the assembly routine once stack space
43
+ has been allocated for the function's arguments */
44
+
45
+ void ffi_prep_args(char *stack, extended_cif *ecif)
46
+ {
47
+ register unsigned int i;
48
+ register void **p_argv;
49
+ register char *argp;
50
+ register ffi_type **p_arg;
51
+
52
+ argp = stack;
53
+
54
+ if (ecif->cif->flags == FFI_TYPE_STRUCT
55
+ #ifdef X86_WIN64
56
+ && (ecif->cif->rtype->size != 1 && ecif->cif->rtype->size != 2
57
+ && ecif->cif->rtype->size != 4 && ecif->cif->rtype->size != 8)
58
+ #endif
59
+ )
60
+ {
61
+ *(void **) argp = ecif->rvalue;
62
+ argp += sizeof(void*);
63
+ }
64
+
65
+ p_argv = ecif->avalue;
66
+
67
+ for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types;
68
+ i != 0;
69
+ i--, p_arg++)
70
+ {
71
+ size_t z;
72
+
73
+ /* Align if necessary */
74
+ if ((sizeof(void*) - 1) & (size_t) argp)
75
+ argp = (char *) ALIGN(argp, sizeof(void*));
76
+
77
+ z = (*p_arg)->size;
78
+ #ifdef X86_WIN64
79
+ if (z > sizeof(ffi_arg)
80
+ || ((*p_arg)->type == FFI_TYPE_STRUCT
81
+ && (z != 1 && z != 2 && z != 4 && z != 8))
82
+ #if FFI_TYPE_DOUBLE != FFI_TYPE_LONGDOUBLE
83
+ || ((*p_arg)->type == FFI_TYPE_LONGDOUBLE)
84
+ #endif
85
+ )
86
+ {
87
+ z = sizeof(ffi_arg);
88
+ *(void **)argp = *p_argv;
89
+ }
90
+ else if ((*p_arg)->type == FFI_TYPE_FLOAT)
91
+ {
92
+ memcpy(argp, *p_argv, z);
93
+ }
94
+ else
95
+ #endif
96
+ if (z < sizeof(ffi_arg))
97
+ {
98
+ z = sizeof(ffi_arg);
99
+ switch ((*p_arg)->type)
100
+ {
101
+ case FFI_TYPE_SINT8:
102
+ *(ffi_sarg *) argp = (ffi_sarg)*(SINT8 *)(* p_argv);
103
+ break;
104
+
105
+ case FFI_TYPE_UINT8:
106
+ *(ffi_arg *) argp = (ffi_arg)*(UINT8 *)(* p_argv);
107
+ break;
108
+
109
+ case FFI_TYPE_SINT16:
110
+ *(ffi_sarg *) argp = (ffi_sarg)*(SINT16 *)(* p_argv);
111
+ break;
112
+
113
+ case FFI_TYPE_UINT16:
114
+ *(ffi_arg *) argp = (ffi_arg)*(UINT16 *)(* p_argv);
115
+ break;
116
+
117
+ case FFI_TYPE_SINT32:
118
+ *(ffi_sarg *) argp = (ffi_sarg)*(SINT32 *)(* p_argv);
119
+ break;
120
+
121
+ case FFI_TYPE_UINT32:
122
+ *(ffi_arg *) argp = (ffi_arg)*(UINT32 *)(* p_argv);
123
+ break;
124
+
125
+ case FFI_TYPE_STRUCT:
126
+ *(ffi_arg *) argp = *(ffi_arg *)(* p_argv);
127
+ break;
128
+
129
+ default:
130
+ FFI_ASSERT(0);
131
+ }
132
+ }
133
+ else
134
+ {
135
+ memcpy(argp, *p_argv, z);
136
+ }
137
+ p_argv++;
138
+ #ifdef X86_WIN64
139
+ argp += (z + sizeof(void*) - 1) & ~(sizeof(void*) - 1);
140
+ #else
141
+ argp += z;
142
+ #endif
143
+ }
144
+
145
+ return;
146
+ }
147
+
148
+ /* Perform machine dependent cif processing */
149
+ ffi_status ffi_prep_cif_machdep(ffi_cif *cif)
150
+ {
151
+ unsigned int i;
152
+ ffi_type **ptr;
153
+
154
+ /* Set the return type flag */
155
+ switch (cif->rtype->type)
156
+ {
157
+ case FFI_TYPE_VOID:
158
+ case FFI_TYPE_UINT8:
159
+ case FFI_TYPE_UINT16:
160
+ case FFI_TYPE_SINT8:
161
+ case FFI_TYPE_SINT16:
162
+ #ifdef X86_WIN64
163
+ case FFI_TYPE_UINT32:
164
+ case FFI_TYPE_SINT32:
165
+ #endif
166
+ case FFI_TYPE_SINT64:
167
+ case FFI_TYPE_FLOAT:
168
+ case FFI_TYPE_DOUBLE:
169
+ #ifndef X86_WIN64
170
+ #if FFI_TYPE_DOUBLE != FFI_TYPE_LONGDOUBLE
171
+ case FFI_TYPE_LONGDOUBLE:
172
+ #endif
173
+ #endif
174
+ cif->flags = (unsigned) cif->rtype->type;
175
+ break;
176
+
177
+ case FFI_TYPE_UINT64:
178
+ #ifdef X86_WIN64
179
+ case FFI_TYPE_POINTER:
180
+ #endif
181
+ cif->flags = FFI_TYPE_SINT64;
182
+ break;
183
+
184
+ case FFI_TYPE_STRUCT:
185
+ #ifndef X86
186
+ if (cif->rtype->size == 1)
187
+ {
188
+ cif->flags = FFI_TYPE_SMALL_STRUCT_1B; /* same as char size */
189
+ }
190
+ else if (cif->rtype->size == 2)
191
+ {
192
+ cif->flags = FFI_TYPE_SMALL_STRUCT_2B; /* same as short size */
193
+ }
194
+ else if (cif->rtype->size == 4)
195
+ {
196
+ #ifdef X86_WIN64
197
+ cif->flags = FFI_TYPE_SMALL_STRUCT_4B;
198
+ #else
199
+ cif->flags = FFI_TYPE_INT; /* same as int type */
200
+ #endif
201
+ }
202
+ else if (cif->rtype->size == 8)
203
+ {
204
+ cif->flags = FFI_TYPE_SINT64; /* same as int64 type */
205
+ }
206
+ else
207
+ #endif
208
+ {
209
+ cif->flags = FFI_TYPE_STRUCT;
210
+ /* allocate space for return value pointer */
211
+ cif->bytes += ALIGN(sizeof(void*), FFI_SIZEOF_ARG);
212
+ }
213
+ break;
214
+
215
+ default:
216
+ #ifdef X86_WIN64
217
+ cif->flags = FFI_TYPE_SINT64;
218
+ break;
219
+ case FFI_TYPE_INT:
220
+ cif->flags = FFI_TYPE_SINT32;
221
+ #else
222
+ cif->flags = FFI_TYPE_INT;
223
+ #endif
224
+ break;
225
+ }
226
+
227
+ for (ptr = cif->arg_types, i = cif->nargs; i > 0; i--, ptr++)
228
+ {
229
+ if (((*ptr)->alignment - 1) & cif->bytes)
230
+ cif->bytes = ALIGN(cif->bytes, (*ptr)->alignment);
231
+ cif->bytes += ALIGN((*ptr)->size, FFI_SIZEOF_ARG);
232
+ }
233
+
234
+ #ifdef X86_WIN64
235
+ /* ensure space for storing four registers */
236
+ cif->bytes += 4 * sizeof(ffi_arg);
237
+ #endif
238
+
239
+ #ifdef X86_DARWIN
240
+ cif->bytes = (cif->bytes + 15) & ~0xF;
241
+ #endif
242
+
243
+ return FFI_OK;
244
+ }
245
+
246
+ #ifdef X86_WIN64
247
+ extern int
248
+ ffi_call_win64(void (*)(char *, extended_cif *), extended_cif *,
249
+ unsigned, unsigned, unsigned *, void (*fn)(void));
250
+ #elif defined(X86_WIN32)
251
+ extern void
252
+ ffi_call_win32(void (*)(char *, extended_cif *), extended_cif *,
253
+ unsigned, unsigned, unsigned *, void (*fn)(void));
254
+ #else
255
+ extern void ffi_call_SYSV(void (*)(char *, extended_cif *), extended_cif *,
256
+ unsigned, unsigned, unsigned *, void (*fn)(void));
257
+ #endif
258
+
259
+ void ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue)
260
+ {
261
+ extended_cif ecif;
262
+
263
+ ecif.cif = cif;
264
+ ecif.avalue = avalue;
265
+
266
+ /* If the return value is a struct and we don't have a return */
267
+ /* value address then we need to make one */
268
+
269
+ #ifdef X86_WIN64
270
+ if (rvalue == NULL
271
+ && cif->flags == FFI_TYPE_STRUCT
272
+ && cif->rtype->size != 1 && cif->rtype->size != 2
273
+ && cif->rtype->size != 4 && cif->rtype->size != 8)
274
+ {
275
+ ecif.rvalue = alloca((cif->rtype->size + 0xF) & ~0xF);
276
+ }
277
+ #else
278
+ if (rvalue == NULL
279
+ && cif->flags == FFI_TYPE_STRUCT)
280
+ {
281
+ ecif.rvalue = alloca(cif->rtype->size);
282
+ }
283
+ #endif
284
+ else
285
+ ecif.rvalue = rvalue;
286
+
287
+
288
+ switch (cif->abi)
289
+ {
290
+ #ifdef X86_WIN64
291
+ case FFI_WIN64:
292
+ ffi_call_win64(ffi_prep_args, &ecif, cif->bytes,
293
+ cif->flags, ecif.rvalue, fn);
294
+ break;
295
+ #elif defined(X86_WIN32)
296
+ case FFI_SYSV:
297
+ case FFI_STDCALL:
298
+ ffi_call_win32(ffi_prep_args, &ecif, cif->bytes, cif->flags,
299
+ ecif.rvalue, fn);
300
+ break;
301
+ #else
302
+ case FFI_SYSV:
303
+ ffi_call_SYSV(ffi_prep_args, &ecif, cif->bytes, cif->flags, ecif.rvalue,
304
+ fn);
305
+ break;
306
+ #endif
307
+ default:
308
+ FFI_ASSERT(0);
309
+ break;
310
+ }
311
+ }
312
+
313
+
314
+ /** private members **/
315
+
316
+ /* The following __attribute__((regparm(1))) decorations will have no effect
317
+ on MSVC - standard cdecl convention applies. */
318
+ static void ffi_prep_incoming_args_SYSV (char *stack, void **ret,
319
+ void** args, ffi_cif* cif);
320
+ void FFI_HIDDEN ffi_closure_SYSV (ffi_closure *)
321
+ __attribute__ ((regparm(1)));
322
+ unsigned int FFI_HIDDEN ffi_closure_SYSV_inner (ffi_closure *, void **, void *)
323
+ __attribute__ ((regparm(1)));
324
+ void FFI_HIDDEN ffi_closure_raw_SYSV (ffi_raw_closure *)
325
+ __attribute__ ((regparm(1)));
326
+ #ifdef X86_WIN32
327
+ void FFI_HIDDEN ffi_closure_STDCALL (ffi_closure *)
328
+ __attribute__ ((regparm(1)));
329
+ #endif
330
+ #ifdef X86_WIN64
331
+ void FFI_HIDDEN ffi_closure_win64 (ffi_closure *);
332
+ #endif
333
+
334
+ /* This function is jumped to by the trampoline */
335
+
336
+ #ifdef X86_WIN64
337
+ void * FFI_HIDDEN
338
+ ffi_closure_win64_inner (ffi_closure *closure, void *args) {
339
+ ffi_cif *cif;
340
+ void **arg_area;
341
+ void *result;
342
+ void *resp = &result;
343
+
344
+ cif = closure->cif;
345
+ arg_area = (void**) alloca (cif->nargs * sizeof (void*));
346
+
347
+ /* this call will initialize ARG_AREA, such that each
348
+ * element in that array points to the corresponding
349
+ * value on the stack; and if the function returns
350
+ * a structure, it will change RESP to point to the
351
+ * structure return address. */
352
+
353
+ ffi_prep_incoming_args_SYSV(args, &resp, arg_area, cif);
354
+
355
+ (closure->fun) (cif, resp, arg_area, closure->user_data);
356
+
357
+ /* The result is returned in rax. This does the right thing for
358
+ result types except for floats; we have to 'mov xmm0, rax' in the
359
+ caller to correct this.
360
+ TODO: structure sizes of 3 5 6 7 are returned by reference, too!!!
361
+ */
362
+ return cif->rtype->size > sizeof(void *) ? resp : *(void **)resp;
363
+ }
364
+
365
+ #else
366
+ unsigned int FFI_HIDDEN __attribute__ ((regparm(1)))
367
+ ffi_closure_SYSV_inner (ffi_closure *closure, void **respp, void *args)
368
+ {
369
+ /* our various things... */
370
+ ffi_cif *cif;
371
+ void **arg_area;
372
+
373
+ cif = closure->cif;
374
+ arg_area = (void**) alloca (cif->nargs * sizeof (void*));
375
+
376
+ /* this call will initialize ARG_AREA, such that each
377
+ * element in that array points to the corresponding
378
+ * value on the stack; and if the function returns
379
+ * a structure, it will change RESP to point to the
380
+ * structure return address. */
381
+
382
+ ffi_prep_incoming_args_SYSV(args, respp, arg_area, cif);
383
+
384
+ (closure->fun) (cif, *respp, arg_area, closure->user_data);
385
+
386
+ return cif->flags;
387
+ }
388
+ #endif /* !X86_WIN64 */
389
+
390
+ static void
391
+ ffi_prep_incoming_args_SYSV(char *stack, void **rvalue, void **avalue,
392
+ ffi_cif *cif)
393
+ {
394
+ register unsigned int i;
395
+ register void **p_argv;
396
+ register char *argp;
397
+ register ffi_type **p_arg;
398
+
399
+ argp = stack;
400
+
401
+ #ifdef X86_WIN64
402
+ if (cif->rtype->size > sizeof(ffi_arg)
403
+ || (cif->flags == FFI_TYPE_STRUCT
404
+ && (cif->rtype->size != 1 && cif->rtype->size != 2
405
+ && cif->rtype->size != 4 && cif->rtype->size != 8))) {
406
+ *rvalue = *(void **) argp;
407
+ argp += sizeof(void *);
408
+ }
409
+ #else
410
+ if ( cif->flags == FFI_TYPE_STRUCT ) {
411
+ *rvalue = *(void **) argp;
412
+ argp += sizeof(void *);
413
+ }
414
+ #endif
415
+
416
+ p_argv = avalue;
417
+
418
+ for (i = cif->nargs, p_arg = cif->arg_types; (i != 0); i--, p_arg++)
419
+ {
420
+ size_t z;
421
+
422
+ /* Align if necessary */
423
+ if ((sizeof(void*) - 1) & (size_t) argp) {
424
+ argp = (char *) ALIGN(argp, sizeof(void*));
425
+ }
426
+
427
+ #ifdef X86_WIN64
428
+ if ((*p_arg)->size > sizeof(ffi_arg)
429
+ || ((*p_arg)->type == FFI_TYPE_STRUCT
430
+ && ((*p_arg)->size != 1 && (*p_arg)->size != 2
431
+ && (*p_arg)->size != 4 && (*p_arg)->size != 8)))
432
+ {
433
+ z = sizeof(void *);
434
+ *p_argv = *(void **)argp;
435
+ }
436
+ else
437
+ #endif
438
+ {
439
+ z = (*p_arg)->size;
440
+
441
+ /* because we're little endian, this is what it turns into. */
442
+
443
+ *p_argv = (void*) argp;
444
+ }
445
+
446
+ p_argv++;
447
+ #ifdef X86_WIN64
448
+ argp += (z + sizeof(void*) - 1) & ~(sizeof(void*) - 1);
449
+ #else
450
+ argp += z;
451
+ #endif
452
+ }
453
+
454
+ return;
455
+ }
456
+
457
+ #define FFI_INIT_TRAMPOLINE_WIN64(TRAMP,FUN,CTX,MASK) \
458
+ { unsigned char *__tramp = (unsigned char*)(TRAMP); \
459
+ void* __fun = (void*)(FUN); \
460
+ void* __ctx = (void*)(CTX); \
461
+ *(unsigned char*) &__tramp[0] = 0x41; \
462
+ *(unsigned char*) &__tramp[1] = 0xbb; \
463
+ *(unsigned int*) &__tramp[2] = MASK; /* mov $mask, %r11 */ \
464
+ *(unsigned char*) &__tramp[6] = 0x48; \
465
+ *(unsigned char*) &__tramp[7] = 0xb8; \
466
+ *(void**) &__tramp[8] = __ctx; /* mov __ctx, %rax */ \
467
+ *(unsigned char *) &__tramp[16] = 0x49; \
468
+ *(unsigned char *) &__tramp[17] = 0xba; \
469
+ *(void**) &__tramp[18] = __fun; /* mov __fun, %r10 */ \
470
+ *(unsigned char *) &__tramp[26] = 0x41; \
471
+ *(unsigned char *) &__tramp[27] = 0xff; \
472
+ *(unsigned char *) &__tramp[28] = 0xe2; /* jmp %r10 */ \
473
+ }
474
+
475
+ /* How to make a trampoline. Derived from gcc/config/i386/i386.c. */
476
+
477
+ #define FFI_INIT_TRAMPOLINE(TRAMP,FUN,CTX) \
478
+ { unsigned char *__tramp = (unsigned char*)(TRAMP); \
479
+ unsigned int __fun = (unsigned int)(FUN); \
480
+ unsigned int __ctx = (unsigned int)(CTX); \
481
+ unsigned int __dis = __fun - (__ctx + 10); \
482
+ *(unsigned char*) &__tramp[0] = 0xb8; \
483
+ *(unsigned int*) &__tramp[1] = __ctx; /* movl __ctx, %eax */ \
484
+ *(unsigned char *) &__tramp[5] = 0xe9; \
485
+ *(unsigned int*) &__tramp[6] = __dis; /* jmp __fun */ \
486
+ }
487
+
488
+ #define FFI_INIT_TRAMPOLINE_STDCALL(TRAMP,FUN,CTX,SIZE) \
489
+ { unsigned char *__tramp = (unsigned char*)(TRAMP); \
490
+ unsigned int __fun = (unsigned int)(FUN); \
491
+ unsigned int __ctx = (unsigned int)(CTX); \
492
+ unsigned int __dis = __fun - (__ctx + 10); \
493
+ unsigned short __size = (unsigned short)(SIZE); \
494
+ *(unsigned char*) &__tramp[0] = 0xb8; \
495
+ *(unsigned int*) &__tramp[1] = __ctx; /* movl __ctx, %eax */ \
496
+ *(unsigned char *) &__tramp[5] = 0xe8; \
497
+ *(unsigned int*) &__tramp[6] = __dis; /* call __fun */ \
498
+ *(unsigned char *) &__tramp[10] = 0xc2; \
499
+ *(unsigned short*) &__tramp[11] = __size; /* ret __size */ \
500
+ }
501
+
502
+ /* the cif must already be prep'ed */
503
+
504
+ ffi_status
505
+ ffi_prep_closure_loc (ffi_closure* closure,
506
+ ffi_cif* cif,
507
+ void (*fun)(ffi_cif*,void*,void**,void*),
508
+ void *user_data,
509
+ void *codeloc)
510
+ {
511
+ #ifdef X86_WIN64
512
+ #define ISFLOAT(IDX) (cif->arg_types[IDX]->type == FFI_TYPE_FLOAT || cif->arg_types[IDX]->type == FFI_TYPE_DOUBLE)
513
+ #define FLAG(IDX) (cif->nargs>(IDX)&&ISFLOAT(IDX)?(1<<(IDX)):0)
514
+ if (cif->abi == FFI_WIN64)
515
+ {
516
+ int mask = FLAG(0)|FLAG(1)|FLAG(2)|FLAG(3);
517
+ FFI_INIT_TRAMPOLINE_WIN64 (&closure->tramp[0],
518
+ &ffi_closure_win64,
519
+ codeloc, mask);
520
+ /* make sure we can execute here */
521
+ }
522
+ #else
523
+ if (cif->abi == FFI_SYSV)
524
+ {
525
+ FFI_INIT_TRAMPOLINE (&closure->tramp[0],
526
+ &ffi_closure_SYSV,
527
+ (void*)codeloc);
528
+ }
529
+ #ifdef X86_WIN32
530
+ else if (cif->abi == FFI_STDCALL)
531
+ {
532
+ FFI_INIT_TRAMPOLINE_STDCALL (&closure->tramp[0],
533
+ &ffi_closure_STDCALL,
534
+ (void*)codeloc, cif->bytes);
535
+ }
536
+ #endif /* X86_WIN32 */
537
+ #endif /* !X86_WIN64 */
538
+ else
539
+ {
540
+ return FFI_BAD_ABI;
541
+ }
542
+
543
+ closure->cif = cif;
544
+ closure->user_data = user_data;
545
+ closure->fun = fun;
546
+
547
+ return FFI_OK;
548
+ }
549
+
550
+ /* ------- Native raw API support -------------------------------- */
551
+
552
+ #if !FFI_NO_RAW_API
553
+
554
+ ffi_status
555
+ ffi_prep_raw_closure_loc (ffi_raw_closure* closure,
556
+ ffi_cif* cif,
557
+ void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
558
+ void *user_data,
559
+ void *codeloc)
560
+ {
561
+ int i;
562
+
563
+ if (cif->abi != FFI_SYSV) {
564
+ return FFI_BAD_ABI;
565
+ }
566
+
567
+ /* we currently don't support certain kinds of arguments for raw
568
+ closures. This should be implemented by a separate assembly
569
+ language routine, since it would require argument processing,
570
+ something we don't do now for performance. */
571
+
572
+ for (i = cif->nargs-1; i >= 0; i--)
573
+ {
574
+ FFI_ASSERT (cif->arg_types[i]->type != FFI_TYPE_STRUCT);
575
+ FFI_ASSERT (cif->arg_types[i]->type != FFI_TYPE_LONGDOUBLE);
576
+ }
577
+
578
+
579
+ FFI_INIT_TRAMPOLINE (&closure->tramp[0], &ffi_closure_raw_SYSV,
580
+ codeloc);
581
+
582
+ closure->cif = cif;
583
+ closure->user_data = user_data;
584
+ closure->fun = fun;
585
+
586
+ return FFI_OK;
587
+ }
588
+
589
+ static void
590
+ ffi_prep_args_raw(char *stack, extended_cif *ecif)
591
+ {
592
+ memcpy (stack, ecif->avalue, ecif->cif->bytes);
593
+ }
594
+
595
+ /* we borrow this routine from libffi (it must be changed, though, to
596
+ * actually call the function passed in the first argument. as of
597
+ * libffi-1.20, this is not the case.)
598
+ */
599
+
600
+ void
601
+ ffi_raw_call(ffi_cif *cif, void (*fn)(void), void *rvalue, ffi_raw *fake_avalue)
602
+ {
603
+ extended_cif ecif;
604
+ void **avalue = (void **)fake_avalue;
605
+
606
+ ecif.cif = cif;
607
+ ecif.avalue = avalue;
608
+
609
+ /* If the return value is a struct and we don't have a return */
610
+ /* value address then we need to make one */
611
+
612
+ if ((rvalue == NULL) &&
613
+ (cif->rtype->type == FFI_TYPE_STRUCT))
614
+ {
615
+ ecif.rvalue = alloca(cif->rtype->size);
616
+ }
617
+ else
618
+ ecif.rvalue = rvalue;
619
+
620
+
621
+ switch (cif->abi)
622
+ {
623
+ #ifdef X86_WIN32
624
+ case FFI_SYSV:
625
+ case FFI_STDCALL:
626
+ ffi_call_win32(ffi_prep_args_raw, &ecif, cif->bytes, cif->flags,
627
+ ecif.rvalue, fn);
628
+ break;
629
+ #else
630
+ case FFI_SYSV:
631
+ ffi_call_SYSV(ffi_prep_args_raw, &ecif, cif->bytes, cif->flags,
632
+ ecif.rvalue, fn);
633
+ break;
634
+ #endif
635
+ default:
636
+ FFI_ASSERT(0);
637
+ break;
638
+ }
639
+ }
640
+
641
+ #endif
642
+
643
+ #endif /* !__x86_64__ || X86_WIN64 */
644
+