ffi 1.9.21-x86-mingw32 → 1.9.22-x86-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 (551) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +22 -0
  3. data/.gitmodules +3 -0
  4. data/.travis.yml +52 -0
  5. data/.yardopts +5 -0
  6. data/Gemfile +15 -0
  7. data/{spec/ffi/LICENSE.SPECS → LICENSE.SPECS} +1 -1
  8. data/README.md +1 -1
  9. data/Rakefile +28 -3
  10. data/appveyor.yml +22 -0
  11. data/ffi.gemspec +14 -1
  12. data/lib/2.0/ffi_c.so +0 -0
  13. data/lib/2.1/ffi_c.so +0 -0
  14. data/lib/2.2/ffi_c.so +0 -0
  15. data/lib/2.3/ffi_c.so +0 -0
  16. data/lib/2.4/ffi_c.so +0 -0
  17. data/lib/2.5/ffi_c.so +0 -0
  18. data/lib/ffi/library.rb +1 -1
  19. data/lib/ffi/version.rb +1 -1
  20. data/samples/getlogin.rb +8 -0
  21. data/samples/getpid.rb +8 -0
  22. data/samples/gettimeofday.rb +18 -0
  23. data/samples/hello.rb +7 -0
  24. data/samples/inotify.rb +60 -0
  25. data/samples/pty.rb +76 -0
  26. data/samples/qsort.rb +21 -0
  27. data/samples/sample_helper.rb +6 -0
  28. metadata +17 -526
  29. data/ext/ffi_c/AbstractMemory.c +0 -1109
  30. data/ext/ffi_c/AbstractMemory.h +0 -175
  31. data/ext/ffi_c/ArrayType.c +0 -162
  32. data/ext/ffi_c/ArrayType.h +0 -59
  33. data/ext/ffi_c/Buffer.c +0 -365
  34. data/ext/ffi_c/Call.c +0 -517
  35. data/ext/ffi_c/Call.h +0 -110
  36. data/ext/ffi_c/ClosurePool.c +0 -283
  37. data/ext/ffi_c/ClosurePool.h +0 -57
  38. data/ext/ffi_c/DataConverter.c +0 -91
  39. data/ext/ffi_c/DynamicLibrary.c +0 -339
  40. data/ext/ffi_c/DynamicLibrary.h +0 -98
  41. data/ext/ffi_c/Function.c +0 -998
  42. data/ext/ffi_c/Function.h +0 -87
  43. data/ext/ffi_c/FunctionInfo.c +0 -271
  44. data/ext/ffi_c/LastError.c +0 -184
  45. data/ext/ffi_c/LastError.h +0 -47
  46. data/ext/ffi_c/LongDouble.c +0 -63
  47. data/ext/ffi_c/LongDouble.h +0 -51
  48. data/ext/ffi_c/MappedType.c +0 -168
  49. data/ext/ffi_c/MappedType.h +0 -59
  50. data/ext/ffi_c/MemoryPointer.c +0 -197
  51. data/ext/ffi_c/MemoryPointer.h +0 -53
  52. data/ext/ffi_c/MethodHandle.c +0 -358
  53. data/ext/ffi_c/MethodHandle.h +0 -55
  54. data/ext/ffi_c/Platform.c +0 -129
  55. data/ext/ffi_c/Platform.h +0 -45
  56. data/ext/ffi_c/Pointer.c +0 -508
  57. data/ext/ffi_c/Pointer.h +0 -63
  58. data/ext/ffi_c/Struct.c +0 -829
  59. data/ext/ffi_c/Struct.h +0 -106
  60. data/ext/ffi_c/StructByReference.c +0 -190
  61. data/ext/ffi_c/StructByReference.h +0 -50
  62. data/ext/ffi_c/StructByValue.c +0 -150
  63. data/ext/ffi_c/StructByValue.h +0 -55
  64. data/ext/ffi_c/StructLayout.c +0 -698
  65. data/ext/ffi_c/Thread.c +0 -352
  66. data/ext/ffi_c/Thread.h +0 -95
  67. data/ext/ffi_c/Type.c +0 -397
  68. data/ext/ffi_c/Type.h +0 -62
  69. data/ext/ffi_c/Types.c +0 -139
  70. data/ext/ffi_c/Types.h +0 -89
  71. data/ext/ffi_c/Variadic.c +0 -304
  72. data/ext/ffi_c/compat.h +0 -78
  73. data/ext/ffi_c/extconf.rb +0 -71
  74. data/ext/ffi_c/ffi.c +0 -98
  75. data/ext/ffi_c/libffi.bsd.mk +0 -40
  76. data/ext/ffi_c/libffi.darwin.mk +0 -105
  77. data/ext/ffi_c/libffi.gnu.mk +0 -32
  78. data/ext/ffi_c/libffi.mk +0 -18
  79. data/ext/ffi_c/libffi.vc.mk +0 -26
  80. data/ext/ffi_c/libffi.vc64.mk +0 -26
  81. data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
  82. data/ext/ffi_c/libffi/ChangeLog.libffi-3.1 +0 -6000
  83. data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
  84. data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
  85. data/ext/ffi_c/libffi/LICENSE +0 -21
  86. data/ext/ffi_c/libffi/Makefile.am +0 -205
  87. data/ext/ffi_c/libffi/Makefile.in +0 -1805
  88. data/ext/ffi_c/libffi/README +0 -454
  89. data/ext/ffi_c/libffi/acinclude.m4 +0 -473
  90. data/ext/ffi_c/libffi/aclocal.m4 +0 -2134
  91. data/ext/ffi_c/libffi/autogen.sh +0 -2
  92. data/ext/ffi_c/libffi/autom4te.cache/output.0 +0 -21972
  93. data/ext/ffi_c/libffi/autom4te.cache/output.1 +0 -21972
  94. data/ext/ffi_c/libffi/autom4te.cache/output.2 +0 -21972
  95. data/ext/ffi_c/libffi/autom4te.cache/output.3 +0 -21972
  96. data/ext/ffi_c/libffi/autom4te.cache/requests +0 -331
  97. data/ext/ffi_c/libffi/autom4te.cache/traces.0 +0 -4010
  98. data/ext/ffi_c/libffi/autom4te.cache/traces.1 +0 -1005
  99. data/ext/ffi_c/libffi/autom4te.cache/traces.2 +0 -4010
  100. data/ext/ffi_c/libffi/autom4te.cache/traces.3 +0 -4010
  101. data/ext/ffi_c/libffi/compile +0 -347
  102. data/ext/ffi_c/libffi/config.guess +0 -1462
  103. data/ext/ffi_c/libffi/config.sub +0 -1825
  104. data/ext/ffi_c/libffi/configure +0 -21972
  105. data/ext/ffi_c/libffi/configure.ac +0 -388
  106. data/ext/ffi_c/libffi/configure.host +0 -272
  107. data/ext/ffi_c/libffi/depcomp +0 -791
  108. data/ext/ffi_c/libffi/doc/Makefile.am +0 -3
  109. data/ext/ffi_c/libffi/doc/Makefile.in +0 -811
  110. data/ext/ffi_c/libffi/doc/libffi.texi +0 -985
  111. data/ext/ffi_c/libffi/doc/mdate-sh +0 -228
  112. data/ext/ffi_c/libffi/doc/texinfo.tex +0 -10079
  113. data/ext/ffi_c/libffi/doc/version.texi +0 -4
  114. data/ext/ffi_c/libffi/fficonfig.h.in +0 -210
  115. data/ext/ffi_c/libffi/fficonfig.h.in~ +0 -210
  116. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +0 -207
  117. data/ext/ffi_c/libffi/include/Makefile.am +0 -9
  118. data/ext/ffi_c/libffi/include/Makefile.in +0 -604
  119. data/ext/ffi_c/libffi/include/ffi.h.in +0 -484
  120. data/ext/ffi_c/libffi/include/ffi_cfi.h +0 -55
  121. data/ext/ffi_c/libffi/include/ffi_common.h +0 -147
  122. data/ext/ffi_c/libffi/install-sh +0 -508
  123. data/ext/ffi_c/libffi/libffi.map.in +0 -80
  124. data/ext/ffi_c/libffi/libffi.pc.in +0 -11
  125. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +0 -637
  126. data/ext/ffi_c/libffi/libtool-ldflags +0 -106
  127. data/ext/ffi_c/libffi/libtool-version +0 -29
  128. data/ext/ffi_c/libffi/ltmain.sh +0 -11156
  129. data/ext/ffi_c/libffi/m4/asmcfi.m4 +0 -13
  130. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +0 -69
  131. data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +0 -181
  132. data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +0 -122
  133. data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +0 -72
  134. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +0 -84
  135. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +0 -70
  136. data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +0 -301
  137. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +0 -225
  138. data/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +0 -79
  139. data/ext/ffi_c/libffi/m4/libtool.m4 +0 -8387
  140. data/ext/ffi_c/libffi/m4/ltoptions.m4 +0 -437
  141. data/ext/ffi_c/libffi/m4/ltsugar.m4 +0 -124
  142. data/ext/ffi_c/libffi/m4/ltversion.m4 +0 -23
  143. data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +0 -99
  144. data/ext/ffi_c/libffi/man/Makefile.am +0 -8
  145. data/ext/ffi_c/libffi/man/Makefile.in +0 -558
  146. data/ext/ffi_c/libffi/man/ffi.3 +0 -41
  147. data/ext/ffi_c/libffi/man/ffi_call.3 +0 -103
  148. data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +0 -68
  149. data/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +0 -73
  150. data/ext/ffi_c/libffi/missing +0 -215
  151. data/ext/ffi_c/libffi/msvcc.sh +0 -260
  152. data/ext/ffi_c/libffi/src/aarch64/ffi.c +0 -941
  153. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +0 -81
  154. data/ext/ffi_c/libffi/src/aarch64/internal.h +0 -67
  155. data/ext/ffi_c/libffi/src/aarch64/sysv.S +0 -438
  156. data/ext/ffi_c/libffi/src/alpha/ffi.c +0 -521
  157. data/ext/ffi_c/libffi/src/alpha/ffitarget.h +0 -57
  158. data/ext/ffi_c/libffi/src/alpha/internal.h +0 -23
  159. data/ext/ffi_c/libffi/src/alpha/osf.S +0 -282
  160. data/ext/ffi_c/libffi/src/arc/arcompact.S +0 -135
  161. data/ext/ffi_c/libffi/src/arc/ffi.c +0 -266
  162. data/ext/ffi_c/libffi/src/arc/ffitarget.h +0 -53
  163. data/ext/ffi_c/libffi/src/arm/ffi.c +0 -808
  164. data/ext/ffi_c/libffi/src/arm/ffitarget.h +0 -82
  165. data/ext/ffi_c/libffi/src/arm/internal.h +0 -7
  166. data/ext/ffi_c/libffi/src/arm/sysv.S +0 -383
  167. data/ext/ffi_c/libffi/src/avr32/ffi.c +0 -423
  168. data/ext/ffi_c/libffi/src/avr32/ffitarget.h +0 -55
  169. data/ext/ffi_c/libffi/src/avr32/sysv.S +0 -208
  170. data/ext/ffi_c/libffi/src/bfin/ffi.c +0 -196
  171. data/ext/ffi_c/libffi/src/bfin/ffitarget.h +0 -43
  172. data/ext/ffi_c/libffi/src/bfin/sysv.S +0 -179
  173. data/ext/ffi_c/libffi/src/closures.c +0 -890
  174. data/ext/ffi_c/libffi/src/cris/ffi.c +0 -386
  175. data/ext/ffi_c/libffi/src/cris/ffitarget.h +0 -56
  176. data/ext/ffi_c/libffi/src/cris/sysv.S +0 -215
  177. data/ext/ffi_c/libffi/src/debug.c +0 -64
  178. data/ext/ffi_c/libffi/src/dlmalloc.c +0 -5166
  179. data/ext/ffi_c/libffi/src/frv/eabi.S +0 -128
  180. data/ext/ffi_c/libffi/src/frv/ffi.c +0 -292
  181. data/ext/ffi_c/libffi/src/frv/ffitarget.h +0 -62
  182. data/ext/ffi_c/libffi/src/ia64/ffi.c +0 -586
  183. data/ext/ffi_c/libffi/src/ia64/ffitarget.h +0 -55
  184. data/ext/ffi_c/libffi/src/ia64/ia64_flags.h +0 -40
  185. data/ext/ffi_c/libffi/src/ia64/unix.S +0 -560
  186. data/ext/ffi_c/libffi/src/java_raw_api.c +0 -374
  187. data/ext/ffi_c/libffi/src/m32r/ffi.c +0 -232
  188. data/ext/ffi_c/libffi/src/m32r/ffitarget.h +0 -53
  189. data/ext/ffi_c/libffi/src/m32r/sysv.S +0 -121
  190. data/ext/ffi_c/libffi/src/m68k/ffi.c +0 -362
  191. data/ext/ffi_c/libffi/src/m68k/ffitarget.h +0 -54
  192. data/ext/ffi_c/libffi/src/m68k/sysv.S +0 -357
  193. data/ext/ffi_c/libffi/src/m88k/ffi.c +0 -400
  194. data/ext/ffi_c/libffi/src/m88k/ffitarget.h +0 -49
  195. data/ext/ffi_c/libffi/src/m88k/obsd.S +0 -209
  196. data/ext/ffi_c/libffi/src/metag/ffi.c +0 -330
  197. data/ext/ffi_c/libffi/src/metag/ffitarget.h +0 -53
  198. data/ext/ffi_c/libffi/src/metag/sysv.S +0 -311
  199. data/ext/ffi_c/libffi/src/microblaze/ffi.c +0 -321
  200. data/ext/ffi_c/libffi/src/microblaze/ffitarget.h +0 -53
  201. data/ext/ffi_c/libffi/src/microblaze/sysv.S +0 -302
  202. data/ext/ffi_c/libffi/src/mips/ffi.c +0 -1105
  203. data/ext/ffi_c/libffi/src/mips/ffitarget.h +0 -249
  204. data/ext/ffi_c/libffi/src/mips/n32.S +0 -661
  205. data/ext/ffi_c/libffi/src/mips/o32.S +0 -502
  206. data/ext/ffi_c/libffi/src/moxie/eabi.S +0 -101
  207. data/ext/ffi_c/libffi/src/moxie/ffi.c +0 -272
  208. data/ext/ffi_c/libffi/src/moxie/ffitarget.h +0 -52
  209. data/ext/ffi_c/libffi/src/nios2/ffi.c +0 -304
  210. data/ext/ffi_c/libffi/src/nios2/ffitarget.h +0 -52
  211. data/ext/ffi_c/libffi/src/nios2/sysv.S +0 -136
  212. data/ext/ffi_c/libffi/src/or1k/ffi.c +0 -328
  213. data/ext/ffi_c/libffi/src/or1k/ffitarget.h +0 -58
  214. data/ext/ffi_c/libffi/src/or1k/sysv.S +0 -107
  215. data/ext/ffi_c/libffi/src/pa/ffi.c +0 -719
  216. data/ext/ffi_c/libffi/src/pa/ffitarget.h +0 -85
  217. data/ext/ffi_c/libffi/src/pa/hpux32.S +0 -368
  218. data/ext/ffi_c/libffi/src/pa/linux.S +0 -357
  219. data/ext/ffi_c/libffi/src/powerpc/aix.S +0 -328
  220. data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +0 -447
  221. data/ext/ffi_c/libffi/src/powerpc/asm.h +0 -125
  222. data/ext/ffi_c/libffi/src/powerpc/darwin.S +0 -378
  223. data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +0 -571
  224. data/ext/ffi_c/libffi/src/powerpc/ffi.c +0 -173
  225. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +0 -1359
  226. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +0 -945
  227. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +0 -94
  228. data/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +0 -923
  229. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +0 -195
  230. data/ext/ffi_c/libffi/src/powerpc/linux64.S +0 -228
  231. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +0 -488
  232. data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +0 -397
  233. data/ext/ffi_c/libffi/src/powerpc/sysv.S +0 -175
  234. data/ext/ffi_c/libffi/src/prep_cif.c +0 -261
  235. data/ext/ffi_c/libffi/src/raw_api.c +0 -267
  236. data/ext/ffi_c/libffi/src/s390/ffi.c +0 -756
  237. data/ext/ffi_c/libffi/src/s390/ffitarget.h +0 -70
  238. data/ext/ffi_c/libffi/src/s390/internal.h +0 -11
  239. data/ext/ffi_c/libffi/src/s390/sysv.S +0 -325
  240. data/ext/ffi_c/libffi/src/sh/ffi.c +0 -717
  241. data/ext/ffi_c/libffi/src/sh/ffitarget.h +0 -54
  242. data/ext/ffi_c/libffi/src/sh/sysv.S +0 -850
  243. data/ext/ffi_c/libffi/src/sh64/ffi.c +0 -469
  244. data/ext/ffi_c/libffi/src/sh64/ffitarget.h +0 -58
  245. data/ext/ffi_c/libffi/src/sh64/sysv.S +0 -539
  246. data/ext/ffi_c/libffi/src/sparc/ffi.c +0 -468
  247. data/ext/ffi_c/libffi/src/sparc/ffi64.c +0 -608
  248. data/ext/ffi_c/libffi/src/sparc/ffitarget.h +0 -81
  249. data/ext/ffi_c/libffi/src/sparc/internal.h +0 -26
  250. data/ext/ffi_c/libffi/src/sparc/v8.S +0 -443
  251. data/ext/ffi_c/libffi/src/sparc/v9.S +0 -440
  252. data/ext/ffi_c/libffi/src/tile/ffi.c +0 -355
  253. data/ext/ffi_c/libffi/src/tile/ffitarget.h +0 -65
  254. data/ext/ffi_c/libffi/src/tile/tile.S +0 -360
  255. data/ext/ffi_c/libffi/src/types.c +0 -106
  256. data/ext/ffi_c/libffi/src/vax/elfbsd.S +0 -195
  257. data/ext/ffi_c/libffi/src/vax/ffi.c +0 -276
  258. data/ext/ffi_c/libffi/src/vax/ffitarget.h +0 -49
  259. data/ext/ffi_c/libffi/src/x86/asmnames.h +0 -30
  260. data/ext/ffi_c/libffi/src/x86/ffi.c +0 -733
  261. data/ext/ffi_c/libffi/src/x86/ffi64.c +0 -857
  262. data/ext/ffi_c/libffi/src/x86/ffitarget.h +0 -141
  263. data/ext/ffi_c/libffi/src/x86/ffiw64.c +0 -287
  264. data/ext/ffi_c/libffi/src/x86/internal.h +0 -29
  265. data/ext/ffi_c/libffi/src/x86/internal64.h +0 -22
  266. data/ext/ffi_c/libffi/src/x86/sysv.S +0 -1043
  267. data/ext/ffi_c/libffi/src/x86/unix64.S +0 -525
  268. data/ext/ffi_c/libffi/src/x86/win64.S +0 -232
  269. data/ext/ffi_c/libffi/src/x86/win64_intel.S +0 -237
  270. data/ext/ffi_c/libffi/src/xtensa/ffi.c +0 -298
  271. data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +0 -53
  272. data/ext/ffi_c/libffi/src/xtensa/sysv.S +0 -253
  273. data/ext/ffi_c/libffi/stamp-h.in +0 -1
  274. data/ext/ffi_c/libffi/testsuite/Makefile.am +0 -85
  275. data/ext/ffi_c/libffi/testsuite/Makefile.in +0 -607
  276. data/ext/ffi_c/libffi/testsuite/config/default.exp +0 -1
  277. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +0 -445
  278. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +0 -283
  279. data/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +0 -45
  280. data/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +0 -46
  281. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +0 -30
  282. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +0 -89
  283. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +0 -81
  284. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +0 -81
  285. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +0 -82
  286. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +0 -89
  287. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +0 -92
  288. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +0 -90
  289. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +0 -95
  290. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_simple.c +0 -55
  291. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +0 -94
  292. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +0 -95
  293. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +0 -96
  294. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +0 -102
  295. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +0 -89
  296. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +0 -91
  297. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +0 -93
  298. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +0 -113
  299. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +0 -90
  300. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +0 -95
  301. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +0 -90
  302. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +0 -90
  303. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +0 -98
  304. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +0 -90
  305. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +0 -109
  306. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +0 -98
  307. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +0 -124
  308. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +0 -113
  309. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +0 -99
  310. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +0 -117
  311. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +0 -97
  312. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +0 -88
  313. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +0 -90
  314. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +0 -91
  315. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +0 -93
  316. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +0 -91
  317. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +0 -92
  318. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +0 -132
  319. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +0 -115
  320. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +0 -95
  321. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +0 -91
  322. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +0 -91
  323. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +0 -92
  324. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +0 -91
  325. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +0 -91
  326. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +0 -93
  327. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +0 -66
  328. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +0 -43
  329. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +0 -61
  330. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +0 -42
  331. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +0 -105
  332. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +0 -61
  333. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_args.c +0 -70
  334. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c +0 -55
  335. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +0 -74
  336. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +0 -74
  337. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +0 -86
  338. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +0 -91
  339. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +0 -74
  340. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +0 -86
  341. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +0 -74
  342. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +0 -142
  343. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +0 -44
  344. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +0 -42
  345. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +0 -42
  346. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_struct_va1.c +0 -114
  347. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +0 -42
  348. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +0 -44
  349. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +0 -43
  350. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint_va.c +0 -45
  351. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulong_va.c +0 -45
  352. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +0 -47
  353. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +0 -43
  354. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +0 -44
  355. data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +0 -36
  356. data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +0 -26
  357. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +0 -136
  358. data/ext/ffi_c/libffi/testsuite/libffi.call/float.c +0 -59
  359. data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +0 -60
  360. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +0 -60
  361. data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +0 -74
  362. data/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +0 -62
  363. data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +0 -107
  364. data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +0 -341
  365. data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +0 -59
  366. data/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +0 -57
  367. data/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +0 -70
  368. data/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +0 -78
  369. data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -52
  370. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +0 -152
  371. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +0 -161
  372. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +0 -133
  373. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct11.c +0 -121
  374. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +0 -110
  375. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +0 -111
  376. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +0 -111
  377. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +0 -112
  378. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +0 -131
  379. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +0 -111
  380. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +0 -131
  381. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +0 -131
  382. data/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +0 -46
  383. data/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +0 -127
  384. data/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +0 -90
  385. data/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +0 -59
  386. data/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +0 -114
  387. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +0 -36
  388. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +0 -43
  389. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +0 -42
  390. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +0 -35
  391. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +0 -36
  392. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +0 -49
  393. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +0 -42
  394. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +0 -34
  395. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +0 -41
  396. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +0 -43
  397. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +0 -36
  398. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +0 -38
  399. data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +0 -38
  400. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +0 -38
  401. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +0 -145
  402. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +0 -148
  403. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +0 -124
  404. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +0 -125
  405. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +0 -44
  406. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +0 -49
  407. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +0 -49
  408. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +0 -55
  409. data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +0 -67
  410. data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +0 -67
  411. data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +0 -60
  412. data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +0 -64
  413. data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +0 -66
  414. data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +0 -64
  415. data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +0 -74
  416. data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +0 -81
  417. data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +0 -68
  418. data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +0 -70
  419. data/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +0 -61
  420. data/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest.cc +0 -117
  421. data/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest_ffi_call.cc +0 -54
  422. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +0 -196
  423. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +0 -121
  424. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +0 -123
  425. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +0 -125
  426. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +0 -91
  427. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +0 -10
  428. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +0 -10
  429. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +0 -10
  430. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +0 -42
  431. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +0 -10
  432. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +0 -10
  433. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +0 -10
  434. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +0 -71
  435. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +0 -10
  436. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +0 -10
  437. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +0 -10
  438. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +0 -80
  439. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +0 -10
  440. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +0 -16
  441. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +0 -10
  442. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +0 -36
  443. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +0 -51
  444. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +0 -7
  445. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +0 -7
  446. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +0 -7
  447. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +0 -10
  448. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +0 -10
  449. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +0 -86
  450. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +0 -10
  451. data/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +0 -1
  452. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +0 -78
  453. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +0 -10
  454. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +0 -10
  455. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +0 -10
  456. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +0 -37
  457. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +0 -41
  458. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +0 -10
  459. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +0 -10
  460. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +0 -10
  461. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +0 -44
  462. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +0 -10
  463. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +0 -10
  464. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +0 -10
  465. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +0 -10
  466. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +0 -10
  467. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +0 -10
  468. data/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +0 -34
  469. data/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +0 -28
  470. data/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +0 -1
  471. data/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +0 -36
  472. data/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +0 -19
  473. data/ext/ffi_c/rbffi.h +0 -57
  474. data/ext/ffi_c/rbffi_endian.h +0 -59
  475. data/ext/ffi_c/win32/stdbool.h +0 -8
  476. data/ext/ffi_c/win32/stdint.h +0 -201
  477. data/gen/Rakefile +0 -30
  478. data/libtest/Benchmark.c +0 -52
  479. data/libtest/BoolTest.c +0 -34
  480. data/libtest/BufferTest.c +0 -31
  481. data/libtest/ClosureTest.c +0 -205
  482. data/libtest/EnumTest.c +0 -51
  483. data/libtest/FunctionTest.c +0 -70
  484. data/libtest/GNUmakefile +0 -149
  485. data/libtest/GlobalVariable.c +0 -62
  486. data/libtest/LastErrorTest.c +0 -21
  487. data/libtest/NumberTest.c +0 -132
  488. data/libtest/PointerTest.c +0 -63
  489. data/libtest/ReferenceTest.c +0 -23
  490. data/libtest/StringTest.c +0 -34
  491. data/libtest/StructTest.c +0 -243
  492. data/libtest/UnionTest.c +0 -43
  493. data/libtest/VariadicTest.c +0 -99
  494. data/spec/ffi/async_callback_spec.rb +0 -35
  495. data/spec/ffi/bitmask_spec.rb +0 -575
  496. data/spec/ffi/bool_spec.rb +0 -32
  497. data/spec/ffi/buffer_spec.rb +0 -279
  498. data/spec/ffi/callback_spec.rb +0 -773
  499. data/spec/ffi/custom_param_type.rb +0 -37
  500. data/spec/ffi/custom_type_spec.rb +0 -74
  501. data/spec/ffi/dup_spec.rb +0 -52
  502. data/spec/ffi/embed-test/ext/Makefile +0 -242
  503. data/spec/ffi/enum_spec.rb +0 -423
  504. data/spec/ffi/errno_spec.rb +0 -20
  505. data/spec/ffi/ffi_spec.rb +0 -28
  506. data/spec/ffi/fixtures/Benchmark.c +0 -52
  507. data/spec/ffi/fixtures/BitmaskTest.c +0 -51
  508. data/spec/ffi/fixtures/BoolTest.c +0 -34
  509. data/spec/ffi/fixtures/BufferTest.c +0 -31
  510. data/spec/ffi/fixtures/ClosureTest.c +0 -205
  511. data/spec/ffi/fixtures/EnumTest.c +0 -51
  512. data/spec/ffi/fixtures/FunctionTest.c +0 -142
  513. data/spec/ffi/fixtures/GNUmakefile +0 -149
  514. data/spec/ffi/fixtures/GlobalVariable.c +0 -62
  515. data/spec/ffi/fixtures/LastErrorTest.c +0 -21
  516. data/spec/ffi/fixtures/NumberTest.c +0 -132
  517. data/spec/ffi/fixtures/PipeHelper.h +0 -21
  518. data/spec/ffi/fixtures/PipeHelperPosix.c +0 -41
  519. data/spec/ffi/fixtures/PipeHelperWindows.c +0 -72
  520. data/spec/ffi/fixtures/PointerTest.c +0 -63
  521. data/spec/ffi/fixtures/ReferenceTest.c +0 -23
  522. data/spec/ffi/fixtures/StringTest.c +0 -34
  523. data/spec/ffi/fixtures/StructTest.c +0 -243
  524. data/spec/ffi/fixtures/UnionTest.c +0 -43
  525. data/spec/ffi/fixtures/VariadicTest.c +0 -99
  526. data/spec/ffi/fixtures/classes.rb +0 -438
  527. data/spec/ffi/function_spec.rb +0 -97
  528. data/spec/ffi/io_spec.rb +0 -16
  529. data/spec/ffi/library_spec.rb +0 -286
  530. data/spec/ffi/long_double.rb +0 -30
  531. data/spec/ffi/managed_struct_spec.rb +0 -68
  532. data/spec/ffi/memorypointer_spec.rb +0 -78
  533. data/spec/ffi/number_spec.rb +0 -247
  534. data/spec/ffi/platform_spec.rb +0 -114
  535. data/spec/ffi/pointer_spec.rb +0 -285
  536. data/spec/ffi/rbx/attach_function_spec.rb +0 -34
  537. data/spec/ffi/rbx/memory_pointer_spec.rb +0 -198
  538. data/spec/ffi/rbx/spec_helper.rb +0 -6
  539. data/spec/ffi/rbx/struct_spec.rb +0 -18
  540. data/spec/ffi/spec_helper.rb +0 -93
  541. data/spec/ffi/string_spec.rb +0 -118
  542. data/spec/ffi/strptr_spec.rb +0 -50
  543. data/spec/ffi/struct_by_ref_spec.rb +0 -43
  544. data/spec/ffi/struct_callback_spec.rb +0 -69
  545. data/spec/ffi/struct_initialize_spec.rb +0 -35
  546. data/spec/ffi/struct_packed_spec.rb +0 -50
  547. data/spec/ffi/struct_spec.rb +0 -882
  548. data/spec/ffi/typedef_spec.rb +0 -91
  549. data/spec/ffi/union_spec.rb +0 -67
  550. data/spec/ffi/variadic_spec.rb +0 -132
  551. data/spec/spec.opts +0 -4
@@ -1,857 +0,0 @@
1
- /* -----------------------------------------------------------------------
2
- ffi64.c - Copyright (c) 2013 The Written Word, Inc.
3
- Copyright (c) 2011 Anthony Green
4
- Copyright (c) 2008, 2010 Red Hat, Inc.
5
- Copyright (c) 2002, 2007 Bo Thorsen <bo@suse.de>
6
-
7
- x86-64 Foreign Function Interface
8
-
9
- Permission is hereby granted, free of charge, to any person obtaining
10
- a copy of this software and associated documentation files (the
11
- ``Software''), to deal in the Software without restriction, including
12
- without limitation the rights to use, copy, modify, merge, publish,
13
- distribute, sublicense, and/or sell copies of the Software, and to
14
- permit persons to whom the Software is furnished to do so, subject to
15
- the following conditions:
16
-
17
- The above copyright notice and this permission notice shall be included
18
- in all copies or substantial portions of the Software.
19
-
20
- THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
21
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
24
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
25
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27
- DEALINGS IN THE SOFTWARE.
28
- ----------------------------------------------------------------------- */
29
-
30
- #include <ffi.h>
31
- #include <ffi_common.h>
32
-
33
- #include <stdlib.h>
34
- #include <stdarg.h>
35
- #include <stdint.h>
36
- #include "internal64.h"
37
-
38
- #ifdef __x86_64__
39
-
40
- #define MAX_GPR_REGS 6
41
- #define MAX_SSE_REGS 8
42
-
43
- #if defined(__INTEL_COMPILER)
44
- #include "xmmintrin.h"
45
- #define UINT128 __m128
46
- #else
47
- #if defined(__SUNPRO_C)
48
- #include <sunmedia_types.h>
49
- #define UINT128 __m128i
50
- #else
51
- #define UINT128 __int128_t
52
- #endif
53
- #endif
54
-
55
- union big_int_union
56
- {
57
- UINT32 i32;
58
- UINT64 i64;
59
- UINT128 i128;
60
- };
61
-
62
- struct register_args
63
- {
64
- /* Registers for argument passing. */
65
- UINT64 gpr[MAX_GPR_REGS];
66
- union big_int_union sse[MAX_SSE_REGS];
67
- UINT64 rax; /* ssecount */
68
- UINT64 r10; /* static chain */
69
- };
70
-
71
- extern void ffi_call_unix64 (void *args, unsigned long bytes, unsigned flags,
72
- void *raddr, void (*fnaddr)(void)) FFI_HIDDEN;
73
-
74
- /* All reference to register classes here is identical to the code in
75
- gcc/config/i386/i386.c. Do *not* change one without the other. */
76
-
77
- /* Register class used for passing given 64bit part of the argument.
78
- These represent classes as documented by the PS ABI, with the
79
- exception of SSESF, SSEDF classes, that are basically SSE class,
80
- just gcc will use SF or DFmode move instead of DImode to avoid
81
- reformatting penalties.
82
-
83
- Similary we play games with INTEGERSI_CLASS to use cheaper SImode moves
84
- whenever possible (upper half does contain padding). */
85
- enum x86_64_reg_class
86
- {
87
- X86_64_NO_CLASS,
88
- X86_64_INTEGER_CLASS,
89
- X86_64_INTEGERSI_CLASS,
90
- X86_64_SSE_CLASS,
91
- X86_64_SSESF_CLASS,
92
- X86_64_SSEDF_CLASS,
93
- X86_64_SSEUP_CLASS,
94
- X86_64_X87_CLASS,
95
- X86_64_X87UP_CLASS,
96
- X86_64_COMPLEX_X87_CLASS,
97
- X86_64_MEMORY_CLASS
98
- };
99
-
100
- #define MAX_CLASSES 4
101
-
102
- #define SSE_CLASS_P(X) ((X) >= X86_64_SSE_CLASS && X <= X86_64_SSEUP_CLASS)
103
-
104
- /* x86-64 register passing implementation. See x86-64 ABI for details. Goal
105
- of this code is to classify each 8bytes of incoming argument by the register
106
- class and assign registers accordingly. */
107
-
108
- /* Return the union class of CLASS1 and CLASS2.
109
- See the x86-64 PS ABI for details. */
110
-
111
- static enum x86_64_reg_class
112
- merge_classes (enum x86_64_reg_class class1, enum x86_64_reg_class class2)
113
- {
114
- /* Rule #1: If both classes are equal, this is the resulting class. */
115
- if (class1 == class2)
116
- return class1;
117
-
118
- /* Rule #2: If one of the classes is NO_CLASS, the resulting class is
119
- the other class. */
120
- if (class1 == X86_64_NO_CLASS)
121
- return class2;
122
- if (class2 == X86_64_NO_CLASS)
123
- return class1;
124
-
125
- /* Rule #3: If one of the classes is MEMORY, the result is MEMORY. */
126
- if (class1 == X86_64_MEMORY_CLASS || class2 == X86_64_MEMORY_CLASS)
127
- return X86_64_MEMORY_CLASS;
128
-
129
- /* Rule #4: If one of the classes is INTEGER, the result is INTEGER. */
130
- if ((class1 == X86_64_INTEGERSI_CLASS && class2 == X86_64_SSESF_CLASS)
131
- || (class2 == X86_64_INTEGERSI_CLASS && class1 == X86_64_SSESF_CLASS))
132
- return X86_64_INTEGERSI_CLASS;
133
- if (class1 == X86_64_INTEGER_CLASS || class1 == X86_64_INTEGERSI_CLASS
134
- || class2 == X86_64_INTEGER_CLASS || class2 == X86_64_INTEGERSI_CLASS)
135
- return X86_64_INTEGER_CLASS;
136
-
137
- /* Rule #5: If one of the classes is X87, X87UP, or COMPLEX_X87 class,
138
- MEMORY is used. */
139
- if (class1 == X86_64_X87_CLASS
140
- || class1 == X86_64_X87UP_CLASS
141
- || class1 == X86_64_COMPLEX_X87_CLASS
142
- || class2 == X86_64_X87_CLASS
143
- || class2 == X86_64_X87UP_CLASS
144
- || class2 == X86_64_COMPLEX_X87_CLASS)
145
- return X86_64_MEMORY_CLASS;
146
-
147
- /* Rule #6: Otherwise class SSE is used. */
148
- return X86_64_SSE_CLASS;
149
- }
150
-
151
- /* Classify the argument of type TYPE and mode MODE.
152
- CLASSES will be filled by the register class used to pass each word
153
- of the operand. The number of words is returned. In case the parameter
154
- should be passed in memory, 0 is returned. As a special case for zero
155
- sized containers, classes[0] will be NO_CLASS and 1 is returned.
156
-
157
- See the x86-64 PS ABI for details.
158
- */
159
- static size_t
160
- classify_argument (ffi_type *type, enum x86_64_reg_class classes[],
161
- size_t byte_offset)
162
- {
163
- switch (type->type)
164
- {
165
- case FFI_TYPE_UINT8:
166
- case FFI_TYPE_SINT8:
167
- case FFI_TYPE_UINT16:
168
- case FFI_TYPE_SINT16:
169
- case FFI_TYPE_UINT32:
170
- case FFI_TYPE_SINT32:
171
- case FFI_TYPE_UINT64:
172
- case FFI_TYPE_SINT64:
173
- case FFI_TYPE_POINTER:
174
- do_integer:
175
- {
176
- size_t size = byte_offset + type->size;
177
-
178
- if (size <= 4)
179
- {
180
- classes[0] = X86_64_INTEGERSI_CLASS;
181
- return 1;
182
- }
183
- else if (size <= 8)
184
- {
185
- classes[0] = X86_64_INTEGER_CLASS;
186
- return 1;
187
- }
188
- else if (size <= 12)
189
- {
190
- classes[0] = X86_64_INTEGER_CLASS;
191
- classes[1] = X86_64_INTEGERSI_CLASS;
192
- return 2;
193
- }
194
- else if (size <= 16)
195
- {
196
- classes[0] = classes[1] = X86_64_INTEGER_CLASS;
197
- return 2;
198
- }
199
- else
200
- FFI_ASSERT (0);
201
- }
202
- case FFI_TYPE_FLOAT:
203
- if (!(byte_offset % 8))
204
- classes[0] = X86_64_SSESF_CLASS;
205
- else
206
- classes[0] = X86_64_SSE_CLASS;
207
- return 1;
208
- case FFI_TYPE_DOUBLE:
209
- classes[0] = X86_64_SSEDF_CLASS;
210
- return 1;
211
- #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
212
- case FFI_TYPE_LONGDOUBLE:
213
- classes[0] = X86_64_X87_CLASS;
214
- classes[1] = X86_64_X87UP_CLASS;
215
- return 2;
216
- #endif
217
- case FFI_TYPE_STRUCT:
218
- {
219
- const size_t UNITS_PER_WORD = 8;
220
- size_t words = (type->size + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
221
- ffi_type **ptr;
222
- unsigned int i;
223
- enum x86_64_reg_class subclasses[MAX_CLASSES];
224
-
225
- /* If the struct is larger than 32 bytes, pass it on the stack. */
226
- if (type->size > 32)
227
- return 0;
228
-
229
- for (i = 0; i < words; i++)
230
- classes[i] = X86_64_NO_CLASS;
231
-
232
- /* Zero sized arrays or structures are NO_CLASS. We return 0 to
233
- signalize memory class, so handle it as special case. */
234
- if (!words)
235
- {
236
- case FFI_TYPE_VOID:
237
- classes[0] = X86_64_NO_CLASS;
238
- return 1;
239
- }
240
-
241
- /* Merge the fields of structure. */
242
- for (ptr = type->elements; *ptr != NULL; ptr++)
243
- {
244
- size_t num;
245
-
246
- byte_offset = FFI_ALIGN (byte_offset, (*ptr)->alignment);
247
-
248
- num = classify_argument (*ptr, subclasses, byte_offset % 8);
249
- if (num == 0)
250
- return 0;
251
- for (i = 0; i < num; i++)
252
- {
253
- size_t pos = byte_offset / 8;
254
- classes[i + pos] =
255
- merge_classes (subclasses[i], classes[i + pos]);
256
- }
257
-
258
- byte_offset += (*ptr)->size;
259
- }
260
-
261
- if (words > 2)
262
- {
263
- /* When size > 16 bytes, if the first one isn't
264
- X86_64_SSE_CLASS or any other ones aren't
265
- X86_64_SSEUP_CLASS, everything should be passed in
266
- memory. */
267
- if (classes[0] != X86_64_SSE_CLASS)
268
- return 0;
269
-
270
- for (i = 1; i < words; i++)
271
- if (classes[i] != X86_64_SSEUP_CLASS)
272
- return 0;
273
- }
274
-
275
- /* Final merger cleanup. */
276
- for (i = 0; i < words; i++)
277
- {
278
- /* If one class is MEMORY, everything should be passed in
279
- memory. */
280
- if (classes[i] == X86_64_MEMORY_CLASS)
281
- return 0;
282
-
283
- /* The X86_64_SSEUP_CLASS should be always preceded by
284
- X86_64_SSE_CLASS or X86_64_SSEUP_CLASS. */
285
- if (classes[i] == X86_64_SSEUP_CLASS
286
- && classes[i - 1] != X86_64_SSE_CLASS
287
- && classes[i - 1] != X86_64_SSEUP_CLASS)
288
- {
289
- /* The first one should never be X86_64_SSEUP_CLASS. */
290
- FFI_ASSERT (i != 0);
291
- classes[i] = X86_64_SSE_CLASS;
292
- }
293
-
294
- /* If X86_64_X87UP_CLASS isn't preceded by X86_64_X87_CLASS,
295
- everything should be passed in memory. */
296
- if (classes[i] == X86_64_X87UP_CLASS
297
- && (classes[i - 1] != X86_64_X87_CLASS))
298
- {
299
- /* The first one should never be X86_64_X87UP_CLASS. */
300
- FFI_ASSERT (i != 0);
301
- return 0;
302
- }
303
- }
304
- return words;
305
- }
306
- case FFI_TYPE_COMPLEX:
307
- {
308
- ffi_type *inner = type->elements[0];
309
- switch (inner->type)
310
- {
311
- case FFI_TYPE_INT:
312
- case FFI_TYPE_UINT8:
313
- case FFI_TYPE_SINT8:
314
- case FFI_TYPE_UINT16:
315
- case FFI_TYPE_SINT16:
316
- case FFI_TYPE_UINT32:
317
- case FFI_TYPE_SINT32:
318
- case FFI_TYPE_UINT64:
319
- case FFI_TYPE_SINT64:
320
- goto do_integer;
321
-
322
- case FFI_TYPE_FLOAT:
323
- classes[0] = X86_64_SSE_CLASS;
324
- if (byte_offset % 8)
325
- {
326
- classes[1] = X86_64_SSESF_CLASS;
327
- return 2;
328
- }
329
- return 1;
330
- case FFI_TYPE_DOUBLE:
331
- classes[0] = classes[1] = X86_64_SSEDF_CLASS;
332
- return 2;
333
- #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
334
- case FFI_TYPE_LONGDOUBLE:
335
- classes[0] = X86_64_COMPLEX_X87_CLASS;
336
- return 1;
337
- #endif
338
- }
339
- }
340
- }
341
- abort();
342
- }
343
-
344
- /* Examine the argument and return set number of register required in each
345
- class. Return zero iff parameter should be passed in memory, otherwise
346
- the number of registers. */
347
-
348
- static size_t
349
- examine_argument (ffi_type *type, enum x86_64_reg_class classes[MAX_CLASSES],
350
- _Bool in_return, int *pngpr, int *pnsse)
351
- {
352
- size_t n;
353
- unsigned int i;
354
- int ngpr, nsse;
355
-
356
- n = classify_argument (type, classes, 0);
357
- if (n == 0)
358
- return 0;
359
-
360
- ngpr = nsse = 0;
361
- for (i = 0; i < n; ++i)
362
- switch (classes[i])
363
- {
364
- case X86_64_INTEGER_CLASS:
365
- case X86_64_INTEGERSI_CLASS:
366
- ngpr++;
367
- break;
368
- case X86_64_SSE_CLASS:
369
- case X86_64_SSESF_CLASS:
370
- case X86_64_SSEDF_CLASS:
371
- nsse++;
372
- break;
373
- case X86_64_NO_CLASS:
374
- case X86_64_SSEUP_CLASS:
375
- break;
376
- case X86_64_X87_CLASS:
377
- case X86_64_X87UP_CLASS:
378
- case X86_64_COMPLEX_X87_CLASS:
379
- return in_return != 0;
380
- default:
381
- abort ();
382
- }
383
-
384
- *pngpr = ngpr;
385
- *pnsse = nsse;
386
-
387
- return n;
388
- }
389
-
390
- /* Perform machine dependent cif processing. */
391
-
392
- extern ffi_status
393
- ffi_prep_cif_machdep_efi64(ffi_cif *cif);
394
-
395
- ffi_status
396
- ffi_prep_cif_machdep (ffi_cif *cif)
397
- {
398
- int gprcount, ssecount, i, avn, ngpr, nsse, flags;
399
- enum x86_64_reg_class classes[MAX_CLASSES];
400
- size_t bytes, n, rtype_size;
401
- ffi_type *rtype;
402
-
403
- if (cif->abi == FFI_EFI64)
404
- return ffi_prep_cif_machdep_efi64(cif);
405
- if (cif->abi != FFI_UNIX64)
406
- return FFI_BAD_ABI;
407
-
408
- gprcount = ssecount = 0;
409
-
410
- rtype = cif->rtype;
411
- rtype_size = rtype->size;
412
- switch (rtype->type)
413
- {
414
- case FFI_TYPE_VOID:
415
- flags = UNIX64_RET_VOID;
416
- break;
417
- case FFI_TYPE_UINT8:
418
- flags = UNIX64_RET_UINT8;
419
- break;
420
- case FFI_TYPE_SINT8:
421
- flags = UNIX64_RET_SINT8;
422
- break;
423
- case FFI_TYPE_UINT16:
424
- flags = UNIX64_RET_UINT16;
425
- break;
426
- case FFI_TYPE_SINT16:
427
- flags = UNIX64_RET_SINT16;
428
- break;
429
- case FFI_TYPE_UINT32:
430
- flags = UNIX64_RET_UINT32;
431
- break;
432
- case FFI_TYPE_INT:
433
- case FFI_TYPE_SINT32:
434
- flags = UNIX64_RET_SINT32;
435
- break;
436
- case FFI_TYPE_UINT64:
437
- case FFI_TYPE_SINT64:
438
- flags = UNIX64_RET_INT64;
439
- break;
440
- case FFI_TYPE_POINTER:
441
- flags = (sizeof(void *) == 4 ? UNIX64_RET_UINT32 : UNIX64_RET_INT64);
442
- break;
443
- case FFI_TYPE_FLOAT:
444
- flags = UNIX64_RET_XMM32;
445
- break;
446
- case FFI_TYPE_DOUBLE:
447
- flags = UNIX64_RET_XMM64;
448
- break;
449
- case FFI_TYPE_LONGDOUBLE:
450
- flags = UNIX64_RET_X87;
451
- break;
452
- case FFI_TYPE_STRUCT:
453
- n = examine_argument (cif->rtype, classes, 1, &ngpr, &nsse);
454
- if (n == 0)
455
- {
456
- /* The return value is passed in memory. A pointer to that
457
- memory is the first argument. Allocate a register for it. */
458
- gprcount++;
459
- /* We don't have to do anything in asm for the return. */
460
- flags = UNIX64_RET_VOID | UNIX64_FLAG_RET_IN_MEM;
461
- }
462
- else
463
- {
464
- _Bool sse0 = SSE_CLASS_P (classes[0]);
465
-
466
- if (rtype_size == 4 && sse0)
467
- flags = UNIX64_RET_XMM32;
468
- else if (rtype_size == 8)
469
- flags = sse0 ? UNIX64_RET_XMM64 : UNIX64_RET_INT64;
470
- else
471
- {
472
- _Bool sse1 = n == 2 && SSE_CLASS_P (classes[1]);
473
- if (sse0 && sse1)
474
- flags = UNIX64_RET_ST_XMM0_XMM1;
475
- else if (sse0)
476
- flags = UNIX64_RET_ST_XMM0_RAX;
477
- else if (sse1)
478
- flags = UNIX64_RET_ST_RAX_XMM0;
479
- else
480
- flags = UNIX64_RET_ST_RAX_RDX;
481
- flags |= rtype_size << UNIX64_SIZE_SHIFT;
482
- }
483
- }
484
- break;
485
- case FFI_TYPE_COMPLEX:
486
- switch (rtype->elements[0]->type)
487
- {
488
- case FFI_TYPE_UINT8:
489
- case FFI_TYPE_SINT8:
490
- case FFI_TYPE_UINT16:
491
- case FFI_TYPE_SINT16:
492
- case FFI_TYPE_INT:
493
- case FFI_TYPE_UINT32:
494
- case FFI_TYPE_SINT32:
495
- case FFI_TYPE_UINT64:
496
- case FFI_TYPE_SINT64:
497
- flags = UNIX64_RET_ST_RAX_RDX | (rtype_size << UNIX64_SIZE_SHIFT);
498
- break;
499
- case FFI_TYPE_FLOAT:
500
- flags = UNIX64_RET_XMM64;
501
- break;
502
- case FFI_TYPE_DOUBLE:
503
- flags = UNIX64_RET_ST_XMM0_XMM1 | (16 << UNIX64_SIZE_SHIFT);
504
- break;
505
- #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
506
- case FFI_TYPE_LONGDOUBLE:
507
- flags = UNIX64_RET_X87_2;
508
- break;
509
- #endif
510
- default:
511
- return FFI_BAD_TYPEDEF;
512
- }
513
- break;
514
- default:
515
- return FFI_BAD_TYPEDEF;
516
- }
517
-
518
- /* Go over all arguments and determine the way they should be passed.
519
- If it's in a register and there is space for it, let that be so. If
520
- not, add it's size to the stack byte count. */
521
- for (bytes = 0, i = 0, avn = cif->nargs; i < avn; i++)
522
- {
523
- if (examine_argument (cif->arg_types[i], classes, 0, &ngpr, &nsse) == 0
524
- || gprcount + ngpr > MAX_GPR_REGS
525
- || ssecount + nsse > MAX_SSE_REGS)
526
- {
527
- long align = cif->arg_types[i]->alignment;
528
-
529
- if (align < 8)
530
- align = 8;
531
-
532
- bytes = FFI_ALIGN (bytes, align);
533
- bytes += cif->arg_types[i]->size;
534
- }
535
- else
536
- {
537
- gprcount += ngpr;
538
- ssecount += nsse;
539
- }
540
- }
541
- if (ssecount)
542
- flags |= UNIX64_FLAG_XMM_ARGS;
543
-
544
- cif->flags = flags;
545
- cif->bytes = FFI_ALIGN (bytes, 8);
546
-
547
- return FFI_OK;
548
- }
549
-
550
- static void
551
- ffi_call_int (ffi_cif *cif, void (*fn)(void), void *rvalue,
552
- void **avalue, void *closure)
553
- {
554
- enum x86_64_reg_class classes[MAX_CLASSES];
555
- char *stack, *argp;
556
- ffi_type **arg_types;
557
- int gprcount, ssecount, ngpr, nsse, i, avn, flags;
558
- struct register_args *reg_args;
559
-
560
- /* Can't call 32-bit mode from 64-bit mode. */
561
- FFI_ASSERT (cif->abi == FFI_UNIX64);
562
-
563
- /* If the return value is a struct and we don't have a return value
564
- address then we need to make one. Otherwise we can ignore it. */
565
- flags = cif->flags;
566
- if (rvalue == NULL)
567
- {
568
- if (flags & UNIX64_FLAG_RET_IN_MEM)
569
- rvalue = alloca (cif->rtype->size);
570
- else
571
- flags = UNIX64_RET_VOID;
572
- }
573
-
574
- /* Allocate the space for the arguments, plus 4 words of temp space. */
575
- stack = alloca (sizeof (struct register_args) + cif->bytes + 4*8);
576
- reg_args = (struct register_args *) stack;
577
- argp = stack + sizeof (struct register_args);
578
-
579
- reg_args->r10 = (uintptr_t) closure;
580
-
581
- gprcount = ssecount = 0;
582
-
583
- /* If the return value is passed in memory, add the pointer as the
584
- first integer argument. */
585
- if (flags & UNIX64_FLAG_RET_IN_MEM)
586
- reg_args->gpr[gprcount++] = (unsigned long) rvalue;
587
-
588
- avn = cif->nargs;
589
- arg_types = cif->arg_types;
590
-
591
- for (i = 0; i < avn; ++i)
592
- {
593
- size_t n, size = arg_types[i]->size;
594
-
595
- n = examine_argument (arg_types[i], classes, 0, &ngpr, &nsse);
596
- if (n == 0
597
- || gprcount + ngpr > MAX_GPR_REGS
598
- || ssecount + nsse > MAX_SSE_REGS)
599
- {
600
- long align = arg_types[i]->alignment;
601
-
602
- /* Stack arguments are *always* at least 8 byte aligned. */
603
- if (align < 8)
604
- align = 8;
605
-
606
- /* Pass this argument in memory. */
607
- argp = (void *) FFI_ALIGN (argp, align);
608
- memcpy (argp, avalue[i], size);
609
- argp += size;
610
- }
611
- else
612
- {
613
- /* The argument is passed entirely in registers. */
614
- char *a = (char *) avalue[i];
615
- unsigned int j;
616
-
617
- for (j = 0; j < n; j++, a += 8, size -= 8)
618
- {
619
- switch (classes[j])
620
- {
621
- case X86_64_NO_CLASS:
622
- case X86_64_SSEUP_CLASS:
623
- break;
624
- case X86_64_INTEGER_CLASS:
625
- case X86_64_INTEGERSI_CLASS:
626
- /* Sign-extend integer arguments passed in general
627
- purpose registers, to cope with the fact that
628
- LLVM incorrectly assumes that this will be done
629
- (the x86-64 PS ABI does not specify this). */
630
- switch (arg_types[i]->type)
631
- {
632
- case FFI_TYPE_SINT8:
633
- reg_args->gpr[gprcount] = (SINT64) *((SINT8 *) a);
634
- break;
635
- case FFI_TYPE_SINT16:
636
- reg_args->gpr[gprcount] = (SINT64) *((SINT16 *) a);
637
- break;
638
- case FFI_TYPE_SINT32:
639
- reg_args->gpr[gprcount] = (SINT64) *((SINT32 *) a);
640
- break;
641
- default:
642
- reg_args->gpr[gprcount] = 0;
643
- memcpy (&reg_args->gpr[gprcount], a, size);
644
- }
645
- gprcount++;
646
- break;
647
- case X86_64_SSE_CLASS:
648
- case X86_64_SSEDF_CLASS:
649
- reg_args->sse[ssecount++].i64 = *(UINT64 *) a;
650
- break;
651
- case X86_64_SSESF_CLASS:
652
- reg_args->sse[ssecount++].i32 = *(UINT32 *) a;
653
- break;
654
- default:
655
- abort();
656
- }
657
- }
658
- }
659
- }
660
- reg_args->rax = ssecount;
661
-
662
- ffi_call_unix64 (stack, cif->bytes + sizeof (struct register_args),
663
- flags, rvalue, fn);
664
- }
665
-
666
- extern void
667
- ffi_call_efi64(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue);
668
-
669
- void
670
- ffi_call (ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue)
671
- {
672
- if (cif->abi == FFI_EFI64)
673
- return ffi_call_efi64(cif, fn, rvalue, avalue);
674
- ffi_call_int (cif, fn, rvalue, avalue, NULL);
675
- }
676
-
677
- extern void
678
- ffi_call_go_efi64(ffi_cif *cif, void (*fn)(void), void *rvalue,
679
- void **avalue, void *closure);
680
-
681
- void
682
- ffi_call_go (ffi_cif *cif, void (*fn)(void), void *rvalue,
683
- void **avalue, void *closure)
684
- {
685
- if (cif->abi == FFI_EFI64)
686
- ffi_call_go_efi64(cif, fn, rvalue, avalue, closure);
687
- ffi_call_int (cif, fn, rvalue, avalue, closure);
688
- }
689
-
690
-
691
- extern void ffi_closure_unix64(void) FFI_HIDDEN;
692
- extern void ffi_closure_unix64_sse(void) FFI_HIDDEN;
693
-
694
- extern ffi_status
695
- ffi_prep_closure_loc_efi64(ffi_closure* closure,
696
- ffi_cif* cif,
697
- void (*fun)(ffi_cif*, void*, void**, void*),
698
- void *user_data,
699
- void *codeloc);
700
-
701
- ffi_status
702
- ffi_prep_closure_loc (ffi_closure* closure,
703
- ffi_cif* cif,
704
- void (*fun)(ffi_cif*, void*, void**, void*),
705
- void *user_data,
706
- void *codeloc)
707
- {
708
- static const unsigned char trampoline[16] = {
709
- /* leaq -0x7(%rip),%r10 # 0x0 */
710
- 0x4c, 0x8d, 0x15, 0xf9, 0xff, 0xff, 0xff,
711
- /* jmpq *0x3(%rip) # 0x10 */
712
- 0xff, 0x25, 0x03, 0x00, 0x00, 0x00,
713
- /* nopl (%rax) */
714
- 0x0f, 0x1f, 0x00
715
- };
716
- void (*dest)(void);
717
- char *tramp = closure->tramp;
718
-
719
- if (cif->abi == FFI_EFI64)
720
- return ffi_prep_closure_loc_efi64(closure, cif, fun, user_data, codeloc);
721
- if (cif->abi != FFI_UNIX64)
722
- return FFI_BAD_ABI;
723
-
724
- if (cif->flags & UNIX64_FLAG_XMM_ARGS)
725
- dest = ffi_closure_unix64_sse;
726
- else
727
- dest = ffi_closure_unix64;
728
-
729
- memcpy (tramp, trampoline, sizeof(trampoline));
730
- *(UINT64 *)(tramp + 16) = (uintptr_t)dest;
731
-
732
- closure->cif = cif;
733
- closure->fun = fun;
734
- closure->user_data = user_data;
735
-
736
- return FFI_OK;
737
- }
738
-
739
- int FFI_HIDDEN
740
- ffi_closure_unix64_inner(ffi_cif *cif,
741
- void (*fun)(ffi_cif*, void*, void**, void*),
742
- void *user_data,
743
- void *rvalue,
744
- struct register_args *reg_args,
745
- char *argp)
746
- {
747
- void **avalue;
748
- ffi_type **arg_types;
749
- long i, avn;
750
- int gprcount, ssecount, ngpr, nsse;
751
- int flags;
752
-
753
- avn = cif->nargs;
754
- flags = cif->flags;
755
- avalue = alloca(avn * sizeof(void *));
756
- gprcount = ssecount = 0;
757
-
758
- if (flags & UNIX64_FLAG_RET_IN_MEM)
759
- {
760
- /* On return, %rax will contain the address that was passed
761
- by the caller in %rdi. */
762
- void *r = (void *)(uintptr_t)reg_args->gpr[gprcount++];
763
- *(void **)rvalue = r;
764
- rvalue = r;
765
- flags = (sizeof(void *) == 4 ? UNIX64_RET_UINT32 : UNIX64_RET_INT64);
766
- }
767
-
768
- arg_types = cif->arg_types;
769
- for (i = 0; i < avn; ++i)
770
- {
771
- enum x86_64_reg_class classes[MAX_CLASSES];
772
- size_t n;
773
-
774
- n = examine_argument (arg_types[i], classes, 0, &ngpr, &nsse);
775
- if (n == 0
776
- || gprcount + ngpr > MAX_GPR_REGS
777
- || ssecount + nsse > MAX_SSE_REGS)
778
- {
779
- long align = arg_types[i]->alignment;
780
-
781
- /* Stack arguments are *always* at least 8 byte aligned. */
782
- if (align < 8)
783
- align = 8;
784
-
785
- /* Pass this argument in memory. */
786
- argp = (void *) FFI_ALIGN (argp, align);
787
- avalue[i] = argp;
788
- argp += arg_types[i]->size;
789
- }
790
- /* If the argument is in a single register, or two consecutive
791
- integer registers, then we can use that address directly. */
792
- else if (n == 1
793
- || (n == 2 && !(SSE_CLASS_P (classes[0])
794
- || SSE_CLASS_P (classes[1]))))
795
- {
796
- /* The argument is in a single register. */
797
- if (SSE_CLASS_P (classes[0]))
798
- {
799
- avalue[i] = &reg_args->sse[ssecount];
800
- ssecount += n;
801
- }
802
- else
803
- {
804
- avalue[i] = &reg_args->gpr[gprcount];
805
- gprcount += n;
806
- }
807
- }
808
- /* Otherwise, allocate space to make them consecutive. */
809
- else
810
- {
811
- char *a = alloca (16);
812
- unsigned int j;
813
-
814
- avalue[i] = a;
815
- for (j = 0; j < n; j++, a += 8)
816
- {
817
- if (SSE_CLASS_P (classes[j]))
818
- memcpy (a, &reg_args->sse[ssecount++], 8);
819
- else
820
- memcpy (a, &reg_args->gpr[gprcount++], 8);
821
- }
822
- }
823
- }
824
-
825
- /* Invoke the closure. */
826
- fun (cif, rvalue, avalue, user_data);
827
-
828
- /* Tell assembly how to perform return type promotions. */
829
- return flags;
830
- }
831
-
832
- extern void ffi_go_closure_unix64(void) FFI_HIDDEN;
833
- extern void ffi_go_closure_unix64_sse(void) FFI_HIDDEN;
834
-
835
- extern ffi_status
836
- ffi_prep_go_closure_efi64(ffi_go_closure* closure, ffi_cif* cif,
837
- void (*fun)(ffi_cif*, void*, void**, void*));
838
-
839
- ffi_status
840
- ffi_prep_go_closure (ffi_go_closure* closure, ffi_cif* cif,
841
- void (*fun)(ffi_cif*, void*, void**, void*))
842
- {
843
- if (cif->abi == FFI_EFI64)
844
- return ffi_prep_go_closure_efi64(closure, cif, fun);
845
- if (cif->abi != FFI_UNIX64)
846
- return FFI_BAD_ABI;
847
-
848
- closure->tramp = (cif->flags & UNIX64_FLAG_XMM_ARGS
849
- ? ffi_go_closure_unix64_sse
850
- : ffi_go_closure_unix64);
851
- closure->cif = cif;
852
- closure->fun = fun;
853
-
854
- return FFI_OK;
855
- }
856
-
857
- #endif /* __x86_64__ */