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,635 @@
1
+ /* -----------------------------------------------------------------------
2
+ ffi64.c - Copyright (c) 20011 Anthony Green
3
+ Copyright (c) 2008, 2010 Red Hat, Inc.
4
+ Copyright (c) 2002, 2007 Bo Thorsen <bo@suse.de>
5
+
6
+ x86-64 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
+ #include <ffi.h>
30
+ #include <ffi_common.h>
31
+
32
+ #include <stdlib.h>
33
+ #include <stdarg.h>
34
+
35
+ #ifdef __x86_64__
36
+
37
+ #define MAX_GPR_REGS 6
38
+ #define MAX_SSE_REGS 8
39
+
40
+ struct register_args
41
+ {
42
+ /* Registers for argument passing. */
43
+ UINT64 gpr[MAX_GPR_REGS];
44
+ __int128_t sse[MAX_SSE_REGS];
45
+ };
46
+
47
+ extern void ffi_call_unix64 (void *args, unsigned long bytes, unsigned flags,
48
+ void *raddr, void (*fnaddr)(void), unsigned ssecount);
49
+
50
+ /* All reference to register classes here is identical to the code in
51
+ gcc/config/i386/i386.c. Do *not* change one without the other. */
52
+
53
+ /* Register class used for passing given 64bit part of the argument.
54
+ These represent classes as documented by the PS ABI, with the
55
+ exception of SSESF, SSEDF classes, that are basically SSE class,
56
+ just gcc will use SF or DFmode move instead of DImode to avoid
57
+ reformatting penalties.
58
+
59
+ Similary we play games with INTEGERSI_CLASS to use cheaper SImode moves
60
+ whenever possible (upper half does contain padding). */
61
+ enum x86_64_reg_class
62
+ {
63
+ X86_64_NO_CLASS,
64
+ X86_64_INTEGER_CLASS,
65
+ X86_64_INTEGERSI_CLASS,
66
+ X86_64_SSE_CLASS,
67
+ X86_64_SSESF_CLASS,
68
+ X86_64_SSEDF_CLASS,
69
+ X86_64_SSEUP_CLASS,
70
+ X86_64_X87_CLASS,
71
+ X86_64_X87UP_CLASS,
72
+ X86_64_COMPLEX_X87_CLASS,
73
+ X86_64_MEMORY_CLASS
74
+ };
75
+
76
+ #define MAX_CLASSES 4
77
+
78
+ #define SSE_CLASS_P(X) ((X) >= X86_64_SSE_CLASS && X <= X86_64_SSEUP_CLASS)
79
+
80
+ /* x86-64 register passing implementation. See x86-64 ABI for details. Goal
81
+ of this code is to classify each 8bytes of incoming argument by the register
82
+ class and assign registers accordingly. */
83
+
84
+ /* Return the union class of CLASS1 and CLASS2.
85
+ See the x86-64 PS ABI for details. */
86
+
87
+ static enum x86_64_reg_class
88
+ merge_classes (enum x86_64_reg_class class1, enum x86_64_reg_class class2)
89
+ {
90
+ /* Rule #1: If both classes are equal, this is the resulting class. */
91
+ if (class1 == class2)
92
+ return class1;
93
+
94
+ /* Rule #2: If one of the classes is NO_CLASS, the resulting class is
95
+ the other class. */
96
+ if (class1 == X86_64_NO_CLASS)
97
+ return class2;
98
+ if (class2 == X86_64_NO_CLASS)
99
+ return class1;
100
+
101
+ /* Rule #3: If one of the classes is MEMORY, the result is MEMORY. */
102
+ if (class1 == X86_64_MEMORY_CLASS || class2 == X86_64_MEMORY_CLASS)
103
+ return X86_64_MEMORY_CLASS;
104
+
105
+ /* Rule #4: If one of the classes is INTEGER, the result is INTEGER. */
106
+ if ((class1 == X86_64_INTEGERSI_CLASS && class2 == X86_64_SSESF_CLASS)
107
+ || (class2 == X86_64_INTEGERSI_CLASS && class1 == X86_64_SSESF_CLASS))
108
+ return X86_64_INTEGERSI_CLASS;
109
+ if (class1 == X86_64_INTEGER_CLASS || class1 == X86_64_INTEGERSI_CLASS
110
+ || class2 == X86_64_INTEGER_CLASS || class2 == X86_64_INTEGERSI_CLASS)
111
+ return X86_64_INTEGER_CLASS;
112
+
113
+ /* Rule #5: If one of the classes is X87, X87UP, or COMPLEX_X87 class,
114
+ MEMORY is used. */
115
+ if (class1 == X86_64_X87_CLASS
116
+ || class1 == X86_64_X87UP_CLASS
117
+ || class1 == X86_64_COMPLEX_X87_CLASS
118
+ || class2 == X86_64_X87_CLASS
119
+ || class2 == X86_64_X87UP_CLASS
120
+ || class2 == X86_64_COMPLEX_X87_CLASS)
121
+ return X86_64_MEMORY_CLASS;
122
+
123
+ /* Rule #6: Otherwise class SSE is used. */
124
+ return X86_64_SSE_CLASS;
125
+ }
126
+
127
+ /* Classify the argument of type TYPE and mode MODE.
128
+ CLASSES will be filled by the register class used to pass each word
129
+ of the operand. The number of words is returned. In case the parameter
130
+ should be passed in memory, 0 is returned. As a special case for zero
131
+ sized containers, classes[0] will be NO_CLASS and 1 is returned.
132
+
133
+ See the x86-64 PS ABI for details.
134
+ */
135
+ static int
136
+ classify_argument (ffi_type *type, enum x86_64_reg_class classes[],
137
+ size_t byte_offset)
138
+ {
139
+ switch (type->type)
140
+ {
141
+ case FFI_TYPE_UINT8:
142
+ case FFI_TYPE_SINT8:
143
+ case FFI_TYPE_UINT16:
144
+ case FFI_TYPE_SINT16:
145
+ case FFI_TYPE_UINT32:
146
+ case FFI_TYPE_SINT32:
147
+ case FFI_TYPE_UINT64:
148
+ case FFI_TYPE_SINT64:
149
+ case FFI_TYPE_POINTER:
150
+ {
151
+ int size = byte_offset + type->size;
152
+
153
+ if (size <= 4)
154
+ {
155
+ classes[0] = X86_64_INTEGERSI_CLASS;
156
+ return 1;
157
+ }
158
+ else if (size <= 8)
159
+ {
160
+ classes[0] = X86_64_INTEGER_CLASS;
161
+ return 1;
162
+ }
163
+ else if (size <= 12)
164
+ {
165
+ classes[0] = X86_64_INTEGER_CLASS;
166
+ classes[1] = X86_64_INTEGERSI_CLASS;
167
+ return 2;
168
+ }
169
+ else if (size <= 16)
170
+ {
171
+ classes[0] = classes[1] = X86_64_INTEGERSI_CLASS;
172
+ return 2;
173
+ }
174
+ else
175
+ FFI_ASSERT (0);
176
+ }
177
+ case FFI_TYPE_FLOAT:
178
+ if (!(byte_offset % 8))
179
+ classes[0] = X86_64_SSESF_CLASS;
180
+ else
181
+ classes[0] = X86_64_SSE_CLASS;
182
+ return 1;
183
+ case FFI_TYPE_DOUBLE:
184
+ classes[0] = X86_64_SSEDF_CLASS;
185
+ return 1;
186
+ case FFI_TYPE_LONGDOUBLE:
187
+ classes[0] = X86_64_X87_CLASS;
188
+ classes[1] = X86_64_X87UP_CLASS;
189
+ return 2;
190
+ case FFI_TYPE_STRUCT:
191
+ {
192
+ const int UNITS_PER_WORD = 8;
193
+ int words = (type->size + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
194
+ ffi_type **ptr;
195
+ int i;
196
+ enum x86_64_reg_class subclasses[MAX_CLASSES];
197
+
198
+ /* If the struct is larger than 32 bytes, pass it on the stack. */
199
+ if (type->size > 32)
200
+ return 0;
201
+
202
+ for (i = 0; i < words; i++)
203
+ classes[i] = X86_64_NO_CLASS;
204
+
205
+ /* Zero sized arrays or structures are NO_CLASS. We return 0 to
206
+ signalize memory class, so handle it as special case. */
207
+ if (!words)
208
+ {
209
+ classes[0] = X86_64_NO_CLASS;
210
+ return 1;
211
+ }
212
+
213
+ /* Merge the fields of structure. */
214
+ for (ptr = type->elements; *ptr != NULL; ptr++)
215
+ {
216
+ int num;
217
+
218
+ byte_offset = ALIGN (byte_offset, (*ptr)->alignment);
219
+
220
+ num = classify_argument (*ptr, subclasses, byte_offset % 8);
221
+ if (num == 0)
222
+ return 0;
223
+ for (i = 0; i < num; i++)
224
+ {
225
+ int pos = byte_offset / 8;
226
+ classes[i + pos] =
227
+ merge_classes (subclasses[i], classes[i + pos]);
228
+ }
229
+
230
+ byte_offset += (*ptr)->size;
231
+ }
232
+
233
+ if (words > 2)
234
+ {
235
+ /* When size > 16 bytes, if the first one isn't
236
+ X86_64_SSE_CLASS or any other ones aren't
237
+ X86_64_SSEUP_CLASS, everything should be passed in
238
+ memory. */
239
+ if (classes[0] != X86_64_SSE_CLASS)
240
+ return 0;
241
+
242
+ for (i = 1; i < words; i++)
243
+ if (classes[i] != X86_64_SSEUP_CLASS)
244
+ return 0;
245
+ }
246
+
247
+ /* Final merger cleanup. */
248
+ for (i = 0; i < words; i++)
249
+ {
250
+ /* If one class is MEMORY, everything should be passed in
251
+ memory. */
252
+ if (classes[i] == X86_64_MEMORY_CLASS)
253
+ return 0;
254
+
255
+ /* The X86_64_SSEUP_CLASS should be always preceded by
256
+ X86_64_SSE_CLASS or X86_64_SSEUP_CLASS. */
257
+ if (classes[i] == X86_64_SSEUP_CLASS
258
+ && classes[i - 1] != X86_64_SSE_CLASS
259
+ && classes[i - 1] != X86_64_SSEUP_CLASS)
260
+ {
261
+ /* The first one should never be X86_64_SSEUP_CLASS. */
262
+ FFI_ASSERT (i != 0);
263
+ classes[i] = X86_64_SSE_CLASS;
264
+ }
265
+
266
+ /* If X86_64_X87UP_CLASS isn't preceded by X86_64_X87_CLASS,
267
+ everything should be passed in memory. */
268
+ if (classes[i] == X86_64_X87UP_CLASS
269
+ && (classes[i - 1] != X86_64_X87_CLASS))
270
+ {
271
+ /* The first one should never be X86_64_X87UP_CLASS. */
272
+ FFI_ASSERT (i != 0);
273
+ return 0;
274
+ }
275
+ }
276
+ return words;
277
+ }
278
+
279
+ default:
280
+ FFI_ASSERT(0);
281
+ }
282
+ return 0; /* Never reached. */
283
+ }
284
+
285
+ /* Examine the argument and return set number of register required in each
286
+ class. Return zero iff parameter should be passed in memory, otherwise
287
+ the number of registers. */
288
+
289
+ static int
290
+ examine_argument (ffi_type *type, enum x86_64_reg_class classes[MAX_CLASSES],
291
+ _Bool in_return, int *pngpr, int *pnsse)
292
+ {
293
+ int i, n, ngpr, nsse;
294
+
295
+ n = classify_argument (type, classes, 0);
296
+ if (n == 0)
297
+ return 0;
298
+
299
+ ngpr = nsse = 0;
300
+ for (i = 0; i < n; ++i)
301
+ switch (classes[i])
302
+ {
303
+ case X86_64_INTEGER_CLASS:
304
+ case X86_64_INTEGERSI_CLASS:
305
+ ngpr++;
306
+ break;
307
+ case X86_64_SSE_CLASS:
308
+ case X86_64_SSESF_CLASS:
309
+ case X86_64_SSEDF_CLASS:
310
+ nsse++;
311
+ break;
312
+ case X86_64_NO_CLASS:
313
+ case X86_64_SSEUP_CLASS:
314
+ break;
315
+ case X86_64_X87_CLASS:
316
+ case X86_64_X87UP_CLASS:
317
+ case X86_64_COMPLEX_X87_CLASS:
318
+ return in_return != 0;
319
+ default:
320
+ abort ();
321
+ }
322
+
323
+ *pngpr = ngpr;
324
+ *pnsse = nsse;
325
+
326
+ return n;
327
+ }
328
+
329
+ /* Perform machine dependent cif processing. */
330
+
331
+ ffi_status
332
+ ffi_prep_cif_machdep (ffi_cif *cif)
333
+ {
334
+ int gprcount, ssecount, i, avn, n, ngpr, nsse, flags;
335
+ enum x86_64_reg_class classes[MAX_CLASSES];
336
+ size_t bytes;
337
+
338
+ gprcount = ssecount = 0;
339
+
340
+ flags = cif->rtype->type;
341
+ if (flags != FFI_TYPE_VOID)
342
+ {
343
+ n = examine_argument (cif->rtype, classes, 1, &ngpr, &nsse);
344
+ if (n == 0)
345
+ {
346
+ /* The return value is passed in memory. A pointer to that
347
+ memory is the first argument. Allocate a register for it. */
348
+ gprcount++;
349
+ /* We don't have to do anything in asm for the return. */
350
+ flags = FFI_TYPE_VOID;
351
+ }
352
+ else if (flags == FFI_TYPE_STRUCT)
353
+ {
354
+ /* Mark which registers the result appears in. */
355
+ _Bool sse0 = SSE_CLASS_P (classes[0]);
356
+ _Bool sse1 = n == 2 && SSE_CLASS_P (classes[1]);
357
+ if (sse0 && !sse1)
358
+ flags |= 1 << 8;
359
+ else if (!sse0 && sse1)
360
+ flags |= 1 << 9;
361
+ else if (sse0 && sse1)
362
+ flags |= 1 << 10;
363
+ /* Mark the true size of the structure. */
364
+ flags |= cif->rtype->size << 12;
365
+ }
366
+ }
367
+
368
+ /* Go over all arguments and determine the way they should be passed.
369
+ If it's in a register and there is space for it, let that be so. If
370
+ not, add it's size to the stack byte count. */
371
+ for (bytes = 0, i = 0, avn = cif->nargs; i < avn; i++)
372
+ {
373
+ if (examine_argument (cif->arg_types[i], classes, 0, &ngpr, &nsse) == 0
374
+ || gprcount + ngpr > MAX_GPR_REGS
375
+ || ssecount + nsse > MAX_SSE_REGS)
376
+ {
377
+ long align = cif->arg_types[i]->alignment;
378
+
379
+ if (align < 8)
380
+ align = 8;
381
+
382
+ bytes = ALIGN (bytes, align);
383
+ bytes += cif->arg_types[i]->size;
384
+ }
385
+ else
386
+ {
387
+ gprcount += ngpr;
388
+ ssecount += nsse;
389
+ }
390
+ }
391
+ if (ssecount)
392
+ flags |= 1 << 11;
393
+ cif->flags = flags;
394
+ cif->bytes = ALIGN (bytes, 8);
395
+
396
+ return FFI_OK;
397
+ }
398
+
399
+ void
400
+ ffi_call (ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue)
401
+ {
402
+ enum x86_64_reg_class classes[MAX_CLASSES];
403
+ char *stack, *argp;
404
+ ffi_type **arg_types;
405
+ int gprcount, ssecount, ngpr, nsse, i, avn;
406
+ _Bool ret_in_memory;
407
+ struct register_args *reg_args;
408
+
409
+ /* Can't call 32-bit mode from 64-bit mode. */
410
+ FFI_ASSERT (cif->abi == FFI_UNIX64);
411
+
412
+ /* If the return value is a struct and we don't have a return value
413
+ address then we need to make one. Note the setting of flags to
414
+ VOID above in ffi_prep_cif_machdep. */
415
+ ret_in_memory = (cif->rtype->type == FFI_TYPE_STRUCT
416
+ && (cif->flags & 0xff) == FFI_TYPE_VOID);
417
+ if (rvalue == NULL && ret_in_memory)
418
+ rvalue = alloca (cif->rtype->size);
419
+
420
+ /* Allocate the space for the arguments, plus 4 words of temp space. */
421
+ stack = alloca (sizeof (struct register_args) + cif->bytes + 4*8);
422
+ reg_args = (struct register_args *) stack;
423
+ argp = stack + sizeof (struct register_args);
424
+
425
+ gprcount = ssecount = 0;
426
+
427
+ /* If the return value is passed in memory, add the pointer as the
428
+ first integer argument. */
429
+ if (ret_in_memory)
430
+ reg_args->gpr[gprcount++] = (long) rvalue;
431
+
432
+ avn = cif->nargs;
433
+ arg_types = cif->arg_types;
434
+
435
+ for (i = 0; i < avn; ++i)
436
+ {
437
+ size_t size = arg_types[i]->size;
438
+ int n;
439
+
440
+ n = examine_argument (arg_types[i], classes, 0, &ngpr, &nsse);
441
+ if (n == 0
442
+ || gprcount + ngpr > MAX_GPR_REGS
443
+ || ssecount + nsse > MAX_SSE_REGS)
444
+ {
445
+ long align = arg_types[i]->alignment;
446
+
447
+ /* Stack arguments are *always* at least 8 byte aligned. */
448
+ if (align < 8)
449
+ align = 8;
450
+
451
+ /* Pass this argument in memory. */
452
+ argp = (void *) ALIGN (argp, align);
453
+ memcpy (argp, avalue[i], size);
454
+ argp += size;
455
+ }
456
+ else
457
+ {
458
+ /* The argument is passed entirely in registers. */
459
+ char *a = (char *) avalue[i];
460
+ int j;
461
+
462
+ for (j = 0; j < n; j++, a += 8, size -= 8)
463
+ {
464
+ switch (classes[j])
465
+ {
466
+ case X86_64_INTEGER_CLASS:
467
+ case X86_64_INTEGERSI_CLASS:
468
+ reg_args->gpr[gprcount] = 0;
469
+ memcpy (&reg_args->gpr[gprcount], a, size < 8 ? size : 8);
470
+ gprcount++;
471
+ break;
472
+ case X86_64_SSE_CLASS:
473
+ case X86_64_SSEDF_CLASS:
474
+ reg_args->sse[ssecount++] = *(UINT64 *) a;
475
+ break;
476
+ case X86_64_SSESF_CLASS:
477
+ reg_args->sse[ssecount++] = *(UINT32 *) a;
478
+ break;
479
+ default:
480
+ abort();
481
+ }
482
+ }
483
+ }
484
+ }
485
+
486
+ ffi_call_unix64 (stack, cif->bytes + sizeof (struct register_args),
487
+ cif->flags, rvalue, fn, ssecount);
488
+ }
489
+
490
+
491
+ extern void ffi_closure_unix64(void);
492
+
493
+ ffi_status
494
+ ffi_prep_closure_loc (ffi_closure* closure,
495
+ ffi_cif* cif,
496
+ void (*fun)(ffi_cif*, void*, void**, void*),
497
+ void *user_data,
498
+ void *codeloc)
499
+ {
500
+ volatile unsigned short *tramp;
501
+
502
+ /* Sanity check on the cif ABI. */
503
+ {
504
+ int abi = cif->abi;
505
+ if (UNLIKELY (! (abi > FFI_FIRST_ABI && abi < FFI_LAST_ABI)))
506
+ return FFI_BAD_ABI;
507
+ }
508
+
509
+ tramp = (volatile unsigned short *) &closure->tramp[0];
510
+
511
+ tramp[0] = 0xbb49; /* mov <code>, %r11 */
512
+ *(void * volatile *) &tramp[1] = ffi_closure_unix64;
513
+ tramp[5] = 0xba49; /* mov <data>, %r10 */
514
+ *(void * volatile *) &tramp[6] = codeloc;
515
+
516
+ /* Set the carry bit iff the function uses any sse registers.
517
+ This is clc or stc, together with the first byte of the jmp. */
518
+ tramp[10] = cif->flags & (1 << 11) ? 0x49f9 : 0x49f8;
519
+
520
+ tramp[11] = 0xe3ff; /* jmp *%r11 */
521
+
522
+ closure->cif = cif;
523
+ closure->fun = fun;
524
+ closure->user_data = user_data;
525
+
526
+ return FFI_OK;
527
+ }
528
+
529
+ int
530
+ ffi_closure_unix64_inner(ffi_closure *closure, void *rvalue,
531
+ struct register_args *reg_args, char *argp)
532
+ {
533
+ ffi_cif *cif;
534
+ void **avalue;
535
+ ffi_type **arg_types;
536
+ long i, avn;
537
+ int gprcount, ssecount, ngpr, nsse;
538
+ int ret;
539
+
540
+ cif = closure->cif;
541
+ avalue = alloca(cif->nargs * sizeof(void *));
542
+ gprcount = ssecount = 0;
543
+
544
+ ret = cif->rtype->type;
545
+ if (ret != FFI_TYPE_VOID)
546
+ {
547
+ enum x86_64_reg_class classes[MAX_CLASSES];
548
+ int n = examine_argument (cif->rtype, classes, 1, &ngpr, &nsse);
549
+ if (n == 0)
550
+ {
551
+ /* The return value goes in memory. Arrange for the closure
552
+ return value to go directly back to the original caller. */
553
+ rvalue = (void *) reg_args->gpr[gprcount++];
554
+ /* We don't have to do anything in asm for the return. */
555
+ ret = FFI_TYPE_VOID;
556
+ }
557
+ else if (ret == FFI_TYPE_STRUCT && n == 2)
558
+ {
559
+ /* Mark which register the second word of the structure goes in. */
560
+ _Bool sse0 = SSE_CLASS_P (classes[0]);
561
+ _Bool sse1 = SSE_CLASS_P (classes[1]);
562
+ if (!sse0 && sse1)
563
+ ret |= 1 << 8;
564
+ else if (sse0 && !sse1)
565
+ ret |= 1 << 9;
566
+ }
567
+ }
568
+
569
+ avn = cif->nargs;
570
+ arg_types = cif->arg_types;
571
+
572
+ for (i = 0; i < avn; ++i)
573
+ {
574
+ enum x86_64_reg_class classes[MAX_CLASSES];
575
+ int n;
576
+
577
+ n = examine_argument (arg_types[i], classes, 0, &ngpr, &nsse);
578
+ if (n == 0
579
+ || gprcount + ngpr > MAX_GPR_REGS
580
+ || ssecount + nsse > MAX_SSE_REGS)
581
+ {
582
+ long align = arg_types[i]->alignment;
583
+
584
+ /* Stack arguments are *always* at least 8 byte aligned. */
585
+ if (align < 8)
586
+ align = 8;
587
+
588
+ /* Pass this argument in memory. */
589
+ argp = (void *) ALIGN (argp, align);
590
+ avalue[i] = argp;
591
+ argp += arg_types[i]->size;
592
+ }
593
+ /* If the argument is in a single register, or two consecutive
594
+ integer registers, then we can use that address directly. */
595
+ else if (n == 1
596
+ || (n == 2 && !(SSE_CLASS_P (classes[0])
597
+ || SSE_CLASS_P (classes[1]))))
598
+ {
599
+ /* The argument is in a single register. */
600
+ if (SSE_CLASS_P (classes[0]))
601
+ {
602
+ avalue[i] = &reg_args->sse[ssecount];
603
+ ssecount += n;
604
+ }
605
+ else
606
+ {
607
+ avalue[i] = &reg_args->gpr[gprcount];
608
+ gprcount += n;
609
+ }
610
+ }
611
+ /* Otherwise, allocate space to make them consecutive. */
612
+ else
613
+ {
614
+ char *a = alloca (16);
615
+ int j;
616
+
617
+ avalue[i] = a;
618
+ for (j = 0; j < n; j++, a += 8)
619
+ {
620
+ if (SSE_CLASS_P (classes[j]))
621
+ memcpy (a, &reg_args->sse[ssecount++], 8);
622
+ else
623
+ memcpy (a, &reg_args->gpr[gprcount++], 8);
624
+ }
625
+ }
626
+ }
627
+
628
+ /* Invoke the closure. */
629
+ closure->fun (cif, rvalue, avalue, closure->user_data);
630
+
631
+ /* Tell assembly how to perform return type promotions. */
632
+ return ret;
633
+ }
634
+
635
+ #endif /* __x86_64__ */