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,575 @@
1
+ /* -----------------------------------------------------------------------
2
+ darwin_closure.S - Copyright (c) 2002, 2003, 2004, 2010,
3
+ Free Software Foundation, Inc.
4
+ based on ppc_closure.S
5
+
6
+ PowerPC Assembly glue.
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
+ #define LIBFFI_ASM
29
+ #define L(x) x
30
+
31
+ #if defined(__ppc64__)
32
+ #define MODE_CHOICE(x, y) y
33
+ #else
34
+ #define MODE_CHOICE(x, y) x
35
+ #endif
36
+
37
+ #define machine_choice MODE_CHOICE(ppc7400,ppc64)
38
+
39
+ ; Define some pseudo-opcodes for size-independent load & store of GPRs ...
40
+ #define lgu MODE_CHOICE(lwzu, ldu)
41
+ #define lg MODE_CHOICE(lwz,ld)
42
+ #define sg MODE_CHOICE(stw,std)
43
+ #define sgu MODE_CHOICE(stwu,stdu)
44
+
45
+ ; ... and the size of GPRs and their storage indicator.
46
+ #define GPR_BYTES MODE_CHOICE(4,8)
47
+ #define LOG2_GPR_BYTES MODE_CHOICE(2,3) /* log2(GPR_BYTES) */
48
+ #define g_long MODE_CHOICE(long, quad) /* usage is ".g_long" */
49
+
50
+ ; From the ABI doc: "Mac OS X ABI Function Call Guide" Version 2009-02-04.
51
+ #define LINKAGE_SIZE MODE_CHOICE(24,48)
52
+ #define PARAM_AREA MODE_CHOICE(32,64)
53
+
54
+ #define SAVED_CR_OFFSET MODE_CHOICE(4,8) /* save position for CR */
55
+ #define SAVED_LR_OFFSET MODE_CHOICE(8,16) /* save position for lr */
56
+
57
+ /* WARNING: if ffi_type is changed... here be monsters.
58
+ Offsets of items within the result type. */
59
+ #define FFI_TYPE_TYPE MODE_CHOICE(6,10)
60
+ #define FFI_TYPE_ELEM MODE_CHOICE(8,16)
61
+
62
+ #define SAVED_FPR_COUNT 13
63
+ #define FPR_SIZE 8
64
+ /* biggest m64 struct ret is 8GPRS + 13FPRS = 168 bytes - rounded to 16bytes = 176. */
65
+ #define RESULT_BYTES MODE_CHOICE(16,176)
66
+
67
+ ; The whole stack frame **MUST** be 16byte-aligned.
68
+ #define SAVE_SIZE (((LINKAGE_SIZE+PARAM_AREA+SAVED_FPR_COUNT*FPR_SIZE+RESULT_BYTES)+15) & -16LL)
69
+ #define PAD_SIZE (SAVE_SIZE-(LINKAGE_SIZE+PARAM_AREA+SAVED_FPR_COUNT*FPR_SIZE+RESULT_BYTES))
70
+
71
+ #define PARENT_PARM_BASE (SAVE_SIZE+LINKAGE_SIZE)
72
+ #define FP_SAVE_BASE (LINKAGE_SIZE+PARAM_AREA)
73
+
74
+ #if defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 1050
75
+ ; We no longer need the pic symbol stub for Darwin >= 9.
76
+ #define BLCLS_HELP _ffi_closure_helper_DARWIN
77
+ #define STRUCT_RETVALUE_P _darwin64_struct_ret_by_value_p
78
+ #define PASS_STR_FLOATS _darwin64_pass_struct_floats
79
+ #undef WANT_STUB
80
+ #else
81
+ #define BLCLS_HELP L_ffi_closure_helper_DARWIN$stub
82
+ #define STRUCT_RETVALUE_P L_darwin64_struct_ret_by_value_p$stub
83
+ #define PASS_STR_FLOATS L_darwin64_pass_struct_floats$stub
84
+ #define WANT_STUB
85
+ #endif
86
+
87
+ /* m32/m64
88
+
89
+ The stack layout looks like this:
90
+
91
+ | Additional params... | | Higher address
92
+ ~ ~ ~
93
+ | Parameters (at least 8*4/8=32/64) | | NUM_GPR_ARG_REGISTERS
94
+ |--------------------------------------------| |
95
+ | TOC=R2 (AIX) Reserved (Darwin) 4/8 | |
96
+ |--------------------------------------------| |
97
+ | Reserved 2*4/8 | |
98
+ |--------------------------------------------| |
99
+ | Space for callee`s LR 4/8 | |
100
+ |--------------------------------------------| |
101
+ | Saved CR [low word for m64] 4/8 | |
102
+ |--------------------------------------------| |
103
+ | Current backchain pointer 4/8 |-/ Parent`s frame.
104
+ |--------------------------------------------| <+ <<< on entry to
105
+ | Result Bytes 16/176 | |
106
+ |--------------------------------------------| |
107
+ ~ padding to 16-byte alignment ~ ~
108
+ |--------------------------------------------| |
109
+ | NUM_FPR_ARG_REGISTERS slots | |
110
+ | here fp13 .. fp1 13*8 | |
111
+ |--------------------------------------------| |
112
+ | R3..R10 8*4/8=32/64 | | NUM_GPR_ARG_REGISTERS
113
+ |--------------------------------------------| |
114
+ | TOC=R2 (AIX) Reserved (Darwin) 4/8 | |
115
+ |--------------------------------------------| | stack |
116
+ | Reserved [compiler,binder] 2*4/8 | | grows |
117
+ |--------------------------------------------| | down V
118
+ | Space for callees LR 4/8 | |
119
+ |--------------------------------------------| | lower addresses
120
+ | Saved CR [low word for m64] 4/8 | |
121
+ |--------------------------------------------| | stack pointer here
122
+ | Current backchain pointer 4/8 |-/ during
123
+ |--------------------------------------------| <<< call.
124
+
125
+ */
126
+
127
+ .file "darwin_closure.S"
128
+
129
+ .machine machine_choice
130
+
131
+ .text
132
+ .globl _ffi_closure_ASM
133
+ .align LOG2_GPR_BYTES
134
+ _ffi_closure_ASM:
135
+ LFB1:
136
+ Lstartcode:
137
+ mflr r0 /* extract return address */
138
+ sg r0,SAVED_LR_OFFSET(r1) /* save the return address */
139
+ LCFI0:
140
+ sgu r1,-SAVE_SIZE(r1) /* skip over caller save area
141
+ keep stack aligned to 16. */
142
+ LCFI1:
143
+ /* We want to build up an area for the parameters passed
144
+ in registers. (both floating point and integer) */
145
+
146
+ /* Put gpr 3 to gpr 10 in the parents outgoing area...
147
+ ... the remainder of any params that overflowed the regs will
148
+ follow here. */
149
+ sg r3, (PARENT_PARM_BASE )(r1)
150
+ sg r4, (PARENT_PARM_BASE + GPR_BYTES )(r1)
151
+ sg r5, (PARENT_PARM_BASE + GPR_BYTES * 2)(r1)
152
+ sg r6, (PARENT_PARM_BASE + GPR_BYTES * 3)(r1)
153
+ sg r7, (PARENT_PARM_BASE + GPR_BYTES * 4)(r1)
154
+ sg r8, (PARENT_PARM_BASE + GPR_BYTES * 5)(r1)
155
+ sg r9, (PARENT_PARM_BASE + GPR_BYTES * 6)(r1)
156
+ sg r10,(PARENT_PARM_BASE + GPR_BYTES * 7)(r1)
157
+
158
+ /* We save fpr 1 to fpr 14 in our own save frame. */
159
+ stfd f1, (FP_SAVE_BASE )(r1)
160
+ stfd f2, (FP_SAVE_BASE + FPR_SIZE )(r1)
161
+ stfd f3, (FP_SAVE_BASE + FPR_SIZE * 2 )(r1)
162
+ stfd f4, (FP_SAVE_BASE + FPR_SIZE * 3 )(r1)
163
+ stfd f5, (FP_SAVE_BASE + FPR_SIZE * 4 )(r1)
164
+ stfd f6, (FP_SAVE_BASE + FPR_SIZE * 5 )(r1)
165
+ stfd f7, (FP_SAVE_BASE + FPR_SIZE * 6 )(r1)
166
+ stfd f8, (FP_SAVE_BASE + FPR_SIZE * 7 )(r1)
167
+ stfd f9, (FP_SAVE_BASE + FPR_SIZE * 8 )(r1)
168
+ stfd f10,(FP_SAVE_BASE + FPR_SIZE * 9 )(r1)
169
+ stfd f11,(FP_SAVE_BASE + FPR_SIZE * 10)(r1)
170
+ stfd f12,(FP_SAVE_BASE + FPR_SIZE * 11)(r1)
171
+ stfd f13,(FP_SAVE_BASE + FPR_SIZE * 12)(r1)
172
+
173
+ /* Set up registers for the routine that actually does the work
174
+ get the context pointer from the trampoline. */
175
+ mr r3,r11
176
+
177
+ /* Now load up the pointer to the result storage. */
178
+ addi r4,r1,(SAVE_SIZE-RESULT_BYTES)
179
+
180
+ /* Now load up the pointer to the saved gpr registers. */
181
+ addi r5,r1,PARENT_PARM_BASE
182
+
183
+ /* Now load up the pointer to the saved fpr registers. */
184
+ addi r6,r1,FP_SAVE_BASE
185
+
186
+ /* Make the call. */
187
+ bl BLCLS_HELP
188
+
189
+ /* r3 contains the rtype pointer... save it since we will need
190
+ it later. */
191
+ sg r3,LINKAGE_SIZE(r1) ; ffi_type * result_type
192
+ lg r0,0(r3) ; size => r0
193
+ lhz r3,FFI_TYPE_TYPE(r3) ; type => r3
194
+
195
+ /* The helper will have intercepted struture returns and inserted
196
+ the caller`s destination address for structs returned by ref. */
197
+
198
+ /* r3 contains the return type so use it to look up in a table
199
+ so we know how to deal with each type. */
200
+
201
+ addi r5,r1,(SAVE_SIZE-RESULT_BYTES) /* Otherwise, our return is here. */
202
+ bl Lget_ret_type0_addr /* Get pointer to Lret_type0 into LR. */
203
+ mflr r4 /* Move to r4. */
204
+ slwi r3,r3,4 /* Now multiply return type by 16. */
205
+ add r3,r3,r4 /* Add contents of table to table address. */
206
+ mtctr r3
207
+ bctr /* Jump to it. */
208
+ LFE1:
209
+ /* Each of the ret_typeX code fragments has to be exactly 16 bytes long
210
+ (4 instructions). For cache effectiveness we align to a 16 byte boundary
211
+ first. */
212
+
213
+ .align 4
214
+
215
+ nop
216
+ nop
217
+ nop
218
+ Lget_ret_type0_addr:
219
+ blrl
220
+
221
+ /* case FFI_TYPE_VOID */
222
+ Lret_type0:
223
+ b Lfinish
224
+ nop
225
+ nop
226
+ nop
227
+
228
+ /* case FFI_TYPE_INT */
229
+ Lret_type1:
230
+ lg r3,0(r5)
231
+ b Lfinish
232
+ nop
233
+ nop
234
+
235
+ /* case FFI_TYPE_FLOAT */
236
+ Lret_type2:
237
+ lfs f1,0(r5)
238
+ b Lfinish
239
+ nop
240
+ nop
241
+
242
+ /* case FFI_TYPE_DOUBLE */
243
+ Lret_type3:
244
+ lfd f1,0(r5)
245
+ b Lfinish
246
+ nop
247
+ nop
248
+
249
+ /* case FFI_TYPE_LONGDOUBLE */
250
+ Lret_type4:
251
+ lfd f1,0(r5)
252
+ lfd f2,8(r5)
253
+ b Lfinish
254
+ nop
255
+
256
+ /* case FFI_TYPE_UINT8 */
257
+ Lret_type5:
258
+ #if defined(__ppc64__)
259
+ lbz r3,7(r5)
260
+ #else
261
+ lbz r3,3(r5)
262
+ #endif
263
+ b Lfinish
264
+ nop
265
+ nop
266
+
267
+ /* case FFI_TYPE_SINT8 */
268
+ Lret_type6:
269
+ #if defined(__ppc64__)
270
+ lbz r3,7(r5)
271
+ #else
272
+ lbz r3,3(r5)
273
+ #endif
274
+ extsb r3,r3
275
+ b Lfinish
276
+ nop
277
+
278
+ /* case FFI_TYPE_UINT16 */
279
+ Lret_type7:
280
+ #if defined(__ppc64__)
281
+ lhz r3,6(r5)
282
+ #else
283
+ lhz r3,2(r5)
284
+ #endif
285
+ b Lfinish
286
+ nop
287
+ nop
288
+
289
+ /* case FFI_TYPE_SINT16 */
290
+ Lret_type8:
291
+ #if defined(__ppc64__)
292
+ lha r3,6(r5)
293
+ #else
294
+ lha r3,2(r5)
295
+ #endif
296
+ b Lfinish
297
+ nop
298
+ nop
299
+
300
+ /* case FFI_TYPE_UINT32 */
301
+ Lret_type9:
302
+ #if defined(__ppc64__)
303
+ lwz r3,4(r5)
304
+ #else
305
+ lwz r3,0(r5)
306
+ #endif
307
+ b Lfinish
308
+ nop
309
+ nop
310
+
311
+ /* case FFI_TYPE_SINT32 */
312
+ Lret_type10:
313
+ #if defined(__ppc64__)
314
+ lwz r3,4(r5)
315
+ #else
316
+ lwz r3,0(r5)
317
+ #endif
318
+ b Lfinish
319
+ nop
320
+ nop
321
+
322
+ /* case FFI_TYPE_UINT64 */
323
+ Lret_type11:
324
+ #if defined(__ppc64__)
325
+ lg r3,0(r5)
326
+ b Lfinish
327
+ nop
328
+ #else
329
+ lwz r3,0(r5)
330
+ lwz r4,4(r5)
331
+ b Lfinish
332
+ #endif
333
+ nop
334
+
335
+ /* case FFI_TYPE_SINT64 */
336
+ Lret_type12:
337
+ #if defined(__ppc64__)
338
+ lg r3,0(r5)
339
+ b Lfinish
340
+ nop
341
+ #else
342
+ lwz r3,0(r5)
343
+ lwz r4,4(r5)
344
+ b Lfinish
345
+ #endif
346
+ nop
347
+
348
+ /* case FFI_TYPE_STRUCT */
349
+ Lret_type13:
350
+ #if defined(__ppc64__)
351
+ lg r3,0(r5) ; we need at least this...
352
+ cmpi 0,r0,4
353
+ bgt Lstructend ; not a special small case
354
+ b Lsmallstruct ; see if we need more.
355
+ #else
356
+ cmpi 0,r0,4
357
+ bgt Lfinish ; not by value
358
+ lg r3,0(r5)
359
+ b Lfinish
360
+ #endif
361
+ /* case FFI_TYPE_POINTER */
362
+ Lret_type14:
363
+ lg r3,0(r5)
364
+ b Lfinish
365
+ nop
366
+ nop
367
+
368
+ #if defined(__ppc64__)
369
+ Lsmallstruct:
370
+ beq Lfour ; continuation of Lret13.
371
+ cmpi 0,r0,3
372
+ beq Lfinish ; don`t adjust this - can`t be any floats here...
373
+ srdi r3,r3,48
374
+ cmpi 0,r0,2
375
+ beq Lfinish ; .. or here ..
376
+ srdi r3,r3,8
377
+ b Lfinish ; .. or here.
378
+
379
+ Lfour:
380
+ lg r6,LINKAGE_SIZE(r1) ; get the result type
381
+ lg r6,FFI_TYPE_ELEM(r6) ; elements array pointer
382
+ lg r6,0(r6) ; first element
383
+ lhz r0,FFI_TYPE_TYPE(r6) ; OK go the type
384
+ cmpi 0,r0,2 ; FFI_TYPE_FLOAT
385
+ bne Lfourint
386
+ lfs f1,0(r5) ; just one float in the struct.
387
+ b Lfinish
388
+
389
+ Lfourint:
390
+ srdi r3,r3,32 ; four bytes.
391
+ b Lfinish
392
+
393
+ Lstructend:
394
+ lg r3,LINKAGE_SIZE(r1) ; get the result type
395
+ bl STRUCT_RETVALUE_P
396
+ cmpi 0,r3,0
397
+ beq Lfinish ; nope.
398
+ /* Recover a pointer to the results. */
399
+ addi r11,r1,(SAVE_SIZE-RESULT_BYTES)
400
+ lg r3,0(r11) ; we need at least this...
401
+ lg r4,8(r11)
402
+ cmpi 0,r0,16
403
+ beq Lfinish ; special case 16 bytes we don't consider floats.
404
+
405
+ /* OK, frustratingly, the process of saving the struct to mem might have
406
+ messed with the FPRs, so we have to re-load them :(.
407
+ We`ll use our FPRs space again - calling:
408
+ void darwin64_pass_struct_floats (ffi_type *s, char *src,
409
+ unsigned *nfpr, double **fprs)
410
+ We`ll temporarily pinch the first two slots of the param area for local
411
+ vars used by the routine. */
412
+ xor r6,r6,r6
413
+ addi r5,r1,PARENT_PARM_BASE ; some space
414
+ sg r6,0(r5) ; *nfpr zeroed.
415
+ addi r6,r5,8 ; **fprs
416
+ addi r3,r1,FP_SAVE_BASE ; pointer to FPRs space
417
+ sg r3,0(r6)
418
+ mr r4,r11 ; the struct is here...
419
+ lg r3,LINKAGE_SIZE(r1) ; ffi_type * result_type.
420
+ bl PASS_STR_FLOATS ; get struct floats into FPR save space.
421
+ /* See if we used any floats */
422
+ lwz r0,(SAVE_SIZE-RESULT_BYTES)(r1)
423
+ cmpi 0,r0,0
424
+ beq Lstructints ; nope.
425
+ /* OK load `em up... */
426
+ lfd f1, (FP_SAVE_BASE )(r1)
427
+ lfd f2, (FP_SAVE_BASE + FPR_SIZE )(r1)
428
+ lfd f3, (FP_SAVE_BASE + FPR_SIZE * 2 )(r1)
429
+ lfd f4, (FP_SAVE_BASE + FPR_SIZE * 3 )(r1)
430
+ lfd f5, (FP_SAVE_BASE + FPR_SIZE * 4 )(r1)
431
+ lfd f6, (FP_SAVE_BASE + FPR_SIZE * 5 )(r1)
432
+ lfd f7, (FP_SAVE_BASE + FPR_SIZE * 6 )(r1)
433
+ lfd f8, (FP_SAVE_BASE + FPR_SIZE * 7 )(r1)
434
+ lfd f9, (FP_SAVE_BASE + FPR_SIZE * 8 )(r1)
435
+ lfd f10,(FP_SAVE_BASE + FPR_SIZE * 9 )(r1)
436
+ lfd f11,(FP_SAVE_BASE + FPR_SIZE * 10)(r1)
437
+ lfd f12,(FP_SAVE_BASE + FPR_SIZE * 11)(r1)
438
+ lfd f13,(FP_SAVE_BASE + FPR_SIZE * 12)(r1)
439
+
440
+ /* point back at our saved struct. */
441
+ Lstructints:
442
+ addi r11,r1,(SAVE_SIZE-RESULT_BYTES)
443
+ lg r3,0(r11) ; we end up picking the
444
+ lg r4,8(r11) ; first two again.
445
+ lg r5,16(r11)
446
+ lg r6,24(r11)
447
+ lg r7,32(r11)
448
+ lg r8,40(r11)
449
+ lg r9,48(r11)
450
+ lg r10,56(r11)
451
+ #endif
452
+
453
+ /* case done */
454
+ Lfinish:
455
+ addi r1,r1,SAVE_SIZE /* Restore stack pointer. */
456
+ lg r0,SAVED_LR_OFFSET(r1) /* Get return address. */
457
+ mtlr r0 /* Reset link register. */
458
+ blr
459
+ Lendcode:
460
+ .align 1
461
+
462
+ /* END(ffi_closure_ASM) */
463
+
464
+ /* EH frame stuff. */
465
+ #define EH_DATA_ALIGN_FACT MODE_CHOICE(0x7c,0x78)
466
+ /* 176, 400 */
467
+ #define EH_FRAME_OFFSETA MODE_CHOICE(176,0x90)
468
+ #define EH_FRAME_OFFSETB MODE_CHOICE(1,3)
469
+
470
+ .static_data
471
+ .align LOG2_GPR_BYTES
472
+ LLFB1$non_lazy_ptr:
473
+ .g_long Lstartcode
474
+
475
+ .section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support
476
+ EH_frame1:
477
+ .set L$set$0,LECIE1-LSCIE1
478
+ .long L$set$0 ; Length of Common Information Entry
479
+ LSCIE1:
480
+ .long 0x0 ; CIE Identifier Tag
481
+ .byte 0x1 ; CIE Version
482
+ .ascii "zR\0" ; CIE Augmentation
483
+ .byte 0x1 ; uleb128 0x1; CIE Code Alignment Factor
484
+ .byte EH_DATA_ALIGN_FACT ; sleb128 -4; CIE Data Alignment Factor
485
+ .byte 0x41 ; CIE RA Column
486
+ .byte 0x1 ; uleb128 0x1; Augmentation size
487
+ .byte 0x10 ; FDE Encoding (indirect pcrel)
488
+ .byte 0xc ; DW_CFA_def_cfa
489
+ .byte 0x1 ; uleb128 0x1
490
+ .byte 0x0 ; uleb128 0x0
491
+ .align LOG2_GPR_BYTES
492
+ LECIE1:
493
+ .globl _ffi_closure_ASM.eh
494
+ _ffi_closure_ASM.eh:
495
+ LSFDE1:
496
+ .set L$set$1,LEFDE1-LASFDE1
497
+ .long L$set$1 ; FDE Length
498
+
499
+ LASFDE1:
500
+ .long LASFDE1-EH_frame1 ; FDE CIE offset
501
+ .g_long LLFB1$non_lazy_ptr-. ; FDE initial location
502
+ .set L$set$3,LFE1-Lstartcode
503
+ .g_long L$set$3 ; FDE address range
504
+ .byte 0x0 ; uleb128 0x0; Augmentation size
505
+ .byte 0x4 ; DW_CFA_advance_loc4
506
+ .set L$set$3,LCFI1-LCFI0
507
+ .long L$set$3
508
+ .byte 0xe ; DW_CFA_def_cfa_offset
509
+ .byte EH_FRAME_OFFSETA,EH_FRAME_OFFSETB ; uleb128 176,1/190,3
510
+ .byte 0x4 ; DW_CFA_advance_loc4
511
+ .set L$set$4,LCFI0-Lstartcode
512
+ .long L$set$4
513
+ .byte 0x11 ; DW_CFA_offset_extended_sf
514
+ .byte 0x41 ; uleb128 0x41
515
+ .byte 0x7e ; sleb128 -2
516
+ .align LOG2_GPR_BYTES
517
+ LEFDE1:
518
+ .align 1
519
+
520
+ #ifdef WANT_STUB
521
+ .section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32
522
+ .align 5
523
+ L_ffi_closure_helper_DARWIN$stub:
524
+ .indirect_symbol _ffi_closure_helper_DARWIN
525
+ mflr r0
526
+ bcl 20,31,"L00000000001$spb"
527
+ "L00000000001$spb":
528
+ mflr r11
529
+ addis r11,r11,ha16(L_ffi_closure_helper_DARWIN$lazy_ptr-"L00000000001$spb")
530
+ mtlr r0
531
+ lwzu r12,lo16(L_ffi_closure_helper_DARWIN$lazy_ptr-"L00000000001$spb")(r11)
532
+ mtctr r12
533
+ bctr
534
+ .lazy_symbol_pointer
535
+ L_ffi_closure_helper_DARWIN$lazy_ptr:
536
+ .indirect_symbol _ffi_closure_helper_DARWIN
537
+ .long dyld_stub_binding_helper
538
+
539
+ #if defined(__ppc64__)
540
+ .section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32
541
+ .align 5
542
+ L_darwin64_struct_ret_by_value_p$stub:
543
+ .indirect_symbol _darwin64_struct_ret_by_value_p
544
+ mflr r0
545
+ bcl 20,31,"L00000000002$spb"
546
+ "L00000000002$spb":
547
+ mflr r11
548
+ addis r11,r11,ha16(L_darwin64_struct_ret_by_value_p$lazy_ptr-"L00000000002$spb")
549
+ mtlr r0
550
+ lwzu r12,lo16(L_darwin64_struct_ret_by_value_p$lazy_ptr-"L00000000002$spb")(r11)
551
+ mtctr r12
552
+ bctr
553
+ .lazy_symbol_pointer
554
+ L_darwin64_struct_ret_by_value_p$lazy_ptr:
555
+ .indirect_symbol _darwin64_struct_ret_by_value_p
556
+ .long dyld_stub_binding_helper
557
+ .section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32
558
+ .align 5
559
+ L_darwin64_pass_struct_floats$stub:
560
+ .indirect_symbol _darwin64_pass_struct_floats
561
+ mflr r0
562
+ bcl 20,31,"L00000000003$spb"
563
+ "L00000000003$spb":
564
+ mflr r11
565
+ addis r11,r11,ha16(L_darwin64_pass_struct_floats$lazy_ptr-"L00000000003$spb")
566
+ mtlr r0
567
+ lwzu r12,lo16(L_darwin64_pass_struct_floats$lazy_ptr-"L00000000003$spb")(r11)
568
+ mtctr r12
569
+ bctr
570
+ .lazy_symbol_pointer
571
+ L_darwin64_pass_struct_floats$lazy_ptr:
572
+ .indirect_symbol _darwin64_pass_struct_floats
573
+ .long dyld_stub_binding_helper
574
+ # endif
575
+ #endif