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,378 +0,0 @@
1
- /* -----------------------------------------------------------------------
2
- darwin.S - Copyright (c) 2000 John Hornkvist
3
- Copyright (c) 2004, 2010 Free Software Foundation, Inc.
4
-
5
- PowerPC Assembly glue.
6
-
7
- Permission is hereby granted, free of charge, to any person obtaining
8
- a copy of this software and associated documentation files (the
9
- ``Software''), to deal in the Software without restriction, including
10
- without limitation the rights to use, copy, modify, merge, publish,
11
- distribute, sublicense, and/or sell copies of the Software, and to
12
- permit persons to whom the Software is furnished to do so, subject to
13
- the following conditions:
14
-
15
- The above copyright notice and this permission notice shall be included
16
- in all copies or substantial portions of the Software.
17
-
18
- THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS
19
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21
- IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR
22
- OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
23
- ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24
- OTHER DEALINGS IN THE SOFTWARE.
25
- ----------------------------------------------------------------------- */
26
-
27
- #define LIBFFI_ASM
28
- #if defined(__ppc64__)
29
- #define MODE_CHOICE(x, y) y
30
- #else
31
- #define MODE_CHOICE(x, y) x
32
- #endif
33
-
34
- #define machine_choice MODE_CHOICE(ppc7400,ppc64)
35
-
36
- ; Define some pseudo-opcodes for size-independent load & store of GPRs ...
37
- #define lgu MODE_CHOICE(lwzu, ldu)
38
- #define lg MODE_CHOICE(lwz,ld)
39
- #define sg MODE_CHOICE(stw,std)
40
- #define sgu MODE_CHOICE(stwu,stdu)
41
- #define sgux MODE_CHOICE(stwux,stdux)
42
-
43
- ; ... and the size of GPRs and their storage indicator.
44
- #define GPR_BYTES MODE_CHOICE(4,8)
45
- #define LOG2_GPR_BYTES MODE_CHOICE(2,3) /* log2(GPR_BYTES) */
46
- #define g_long MODE_CHOICE(long, quad) /* usage is ".g_long" */
47
-
48
- ; From the ABI doc: "Mac OS X ABI Function Call Guide" Version 2009-02-04.
49
- #define LINKAGE_SIZE MODE_CHOICE(24,48)
50
- #define PARAM_AREA MODE_CHOICE(32,64)
51
- #define SAVED_LR_OFFSET MODE_CHOICE(8,16) /* save position for lr */
52
-
53
- /* If there is any FP stuff we make space for all of the regs. */
54
- #define SAVED_FPR_COUNT 13
55
- #define FPR_SIZE 8
56
- #define RESULT_BYTES 16
57
-
58
- /* This should be kept in step with the same value in ffi_darwin.c. */
59
- #define ASM_NEEDS_REGISTERS 4
60
- #define SAVE_REGS_SIZE (ASM_NEEDS_REGISTERS * GPR_BYTES)
61
-
62
- #include <fficonfig.h>
63
- #include <ffi.h>
64
-
65
- #define JUMPTARGET(name) name
66
- #define L(x) x
67
-
68
- .text
69
- .align 2
70
- .globl _ffi_prep_args
71
-
72
- .align 2
73
- .globl _ffi_call_DARWIN
74
-
75
- /* We arrive here with:
76
- r3 = ptr to extended cif.
77
- r4 = -bytes.
78
- r5 = cif flags.
79
- r6 = ptr to return value.
80
- r7 = fn pointer (user func).
81
- r8 = fn pointer (ffi_prep_args).
82
- r9 = ffi_type* for the ret val. */
83
-
84
- _ffi_call_DARWIN:
85
- Lstartcode:
86
- mr r12,r8 /* We only need r12 until the call,
87
- so it does not have to be saved. */
88
- LFB1:
89
- /* Save the old stack pointer as AP. */
90
- mr r8,r1
91
- LCFI0:
92
-
93
- /* Save the retval type in parents frame. */
94
- sg r9,(LINKAGE_SIZE+6*GPR_BYTES)(r8)
95
-
96
- /* Allocate the stack space we need. */
97
- sgux r1,r1,r4
98
-
99
- /* Save registers we use. */
100
- mflr r9
101
- sg r9,SAVED_LR_OFFSET(r8)
102
-
103
- sg r28,-(4 * GPR_BYTES)(r8)
104
- sg r29,-(3 * GPR_BYTES)(r8)
105
- sg r30,-(2 * GPR_BYTES)(r8)
106
- sg r31,-( GPR_BYTES)(r8)
107
-
108
- #if !defined(POWERPC_DARWIN)
109
- /* The TOC slot is reserved in the Darwin ABI and r2 is volatile. */
110
- sg r2,(5 * GPR_BYTES)(r1)
111
- #endif
112
-
113
- LCFI1:
114
-
115
- /* Save arguments over call. */
116
- mr r31,r5 /* flags, */
117
- mr r30,r6 /* rvalue, */
118
- mr r29,r7 /* function address, */
119
- mr r28,r8 /* our AP. */
120
- LCFI2:
121
- /* Call ffi_prep_args. r3 = extended cif, r4 = stack ptr copy. */
122
- mr r4,r1
123
- li r9,0
124
-
125
- mtctr r12 /* r12 holds address of _ffi_prep_args. */
126
- bctrl
127
-
128
- #if !defined(POWERPC_DARWIN)
129
- /* The TOC slot is reserved in the Darwin ABI and r2 is volatile. */
130
- lg r2,(5 * GPR_BYTES)(r1)
131
- #endif
132
- /* Now do the call.
133
- Set up cr1 with bits 4-7 of the flags. */
134
- mtcrf 0x40,r31
135
- /* Get the address to call into CTR. */
136
- mtctr r29
137
- /* Load all those argument registers.
138
- We have set up a nice stack frame, just load it into registers. */
139
- lg r3, (LINKAGE_SIZE )(r1)
140
- lg r4, (LINKAGE_SIZE + GPR_BYTES)(r1)
141
- lg r5, (LINKAGE_SIZE + 2 * GPR_BYTES)(r1)
142
- lg r6, (LINKAGE_SIZE + 3 * GPR_BYTES)(r1)
143
- nop
144
- lg r7, (LINKAGE_SIZE + 4 * GPR_BYTES)(r1)
145
- lg r8, (LINKAGE_SIZE + 5 * GPR_BYTES)(r1)
146
- lg r9, (LINKAGE_SIZE + 6 * GPR_BYTES)(r1)
147
- lg r10,(LINKAGE_SIZE + 7 * GPR_BYTES)(r1)
148
-
149
- L1:
150
- /* ... Load all the FP registers. */
151
- bf 6,L2 /* No floats to load. */
152
- lfd f1, -SAVE_REGS_SIZE-(13*FPR_SIZE)(r28)
153
- lfd f2, -SAVE_REGS_SIZE-(12*FPR_SIZE)(r28)
154
- lfd f3, -SAVE_REGS_SIZE-(11*FPR_SIZE)(r28)
155
- lfd f4, -SAVE_REGS_SIZE-(10*FPR_SIZE)(r28)
156
- nop
157
- lfd f5, -SAVE_REGS_SIZE-( 9*FPR_SIZE)(r28)
158
- lfd f6, -SAVE_REGS_SIZE-( 8*FPR_SIZE)(r28)
159
- lfd f7, -SAVE_REGS_SIZE-( 7*FPR_SIZE)(r28)
160
- lfd f8, -SAVE_REGS_SIZE-( 6*FPR_SIZE)(r28)
161
- nop
162
- lfd f9, -SAVE_REGS_SIZE-( 5*FPR_SIZE)(r28)
163
- lfd f10,-SAVE_REGS_SIZE-( 4*FPR_SIZE)(r28)
164
- lfd f11,-SAVE_REGS_SIZE-( 3*FPR_SIZE)(r28)
165
- lfd f12,-SAVE_REGS_SIZE-( 2*FPR_SIZE)(r28)
166
- nop
167
- lfd f13,-SAVE_REGS_SIZE-( 1*FPR_SIZE)(r28)
168
-
169
- L2:
170
- mr r12,r29 /* Put the target address in r12 as specified. */
171
- mtctr r12
172
- nop
173
- nop
174
-
175
- /* Make the call. */
176
- bctrl
177
-
178
- /* Now, deal with the return value. */
179
-
180
- /* m64 structure returns can occupy the same set of registers as
181
- would be used to pass such a structure as arg0 - so take care
182
- not to step on any possibly hot regs. */
183
-
184
- /* Get the flags.. */
185
- mtcrf 0x03,r31 ; we need c6 & cr7 now.
186
- ; FLAG_RETURNS_NOTHING also covers struct ret-by-ref.
187
- bt 30,L(done_return_value) ; FLAG_RETURNS_NOTHING
188
- bf 27,L(scalar_return_value) ; not FLAG_RETURNS_STRUCT
189
-
190
- /* OK, so we have a struct. */
191
- #if defined(__ppc64__)
192
- bt 31,L(maybe_return_128) ; FLAG_RETURNS_128BITS, special case
193
-
194
- /* OK, we have to map the return back to a mem struct.
195
- We are about to trample the parents param area, so recover the
196
- return type. r29 is free, since the call is done. */
197
- lg r29,(LINKAGE_SIZE + 6 * GPR_BYTES)(r28)
198
-
199
- sg r3, (LINKAGE_SIZE )(r28)
200
- sg r4, (LINKAGE_SIZE + GPR_BYTES)(r28)
201
- sg r5, (LINKAGE_SIZE + 2 * GPR_BYTES)(r28)
202
- sg r6, (LINKAGE_SIZE + 3 * GPR_BYTES)(r28)
203
- nop
204
- sg r7, (LINKAGE_SIZE + 4 * GPR_BYTES)(r28)
205
- sg r8, (LINKAGE_SIZE + 5 * GPR_BYTES)(r28)
206
- sg r9, (LINKAGE_SIZE + 6 * GPR_BYTES)(r28)
207
- sg r10,(LINKAGE_SIZE + 7 * GPR_BYTES)(r28)
208
- /* OK, so do the block move - we trust that memcpy will not trample
209
- the fprs... */
210
- mr r3,r30 ; dest
211
- addi r4,r28,LINKAGE_SIZE ; source
212
- /* The size is a size_t, should be long. */
213
- lg r5,0(r29)
214
- /* Figure out small structs */
215
- cmpi 0,r5,4
216
- bgt L3 ; 1, 2 and 4 bytes have special rules.
217
- cmpi 0,r5,3
218
- beq L3 ; not 3
219
- addi r4,r4,8
220
- subf r4,r5,r4
221
- L3:
222
- bl _memcpy
223
-
224
- /* ... do we need the FP registers? - recover the flags.. */
225
- mtcrf 0x03,r31 ; we need c6 & cr7 now.
226
- bf 29,L(done_return_value) /* No floats in the struct. */
227
- stfd f1, -SAVE_REGS_SIZE-(13*FPR_SIZE)(r28)
228
- stfd f2, -SAVE_REGS_SIZE-(12*FPR_SIZE)(r28)
229
- stfd f3, -SAVE_REGS_SIZE-(11*FPR_SIZE)(r28)
230
- stfd f4, -SAVE_REGS_SIZE-(10*FPR_SIZE)(r28)
231
- nop
232
- stfd f5, -SAVE_REGS_SIZE-( 9*FPR_SIZE)(r28)
233
- stfd f6, -SAVE_REGS_SIZE-( 8*FPR_SIZE)(r28)
234
- stfd f7, -SAVE_REGS_SIZE-( 7*FPR_SIZE)(r28)
235
- stfd f8, -SAVE_REGS_SIZE-( 6*FPR_SIZE)(r28)
236
- nop
237
- stfd f9, -SAVE_REGS_SIZE-( 5*FPR_SIZE)(r28)
238
- stfd f10,-SAVE_REGS_SIZE-( 4*FPR_SIZE)(r28)
239
- stfd f11,-SAVE_REGS_SIZE-( 3*FPR_SIZE)(r28)
240
- stfd f12,-SAVE_REGS_SIZE-( 2*FPR_SIZE)(r28)
241
- nop
242
- stfd f13,-SAVE_REGS_SIZE-( 1*FPR_SIZE)(r28)
243
-
244
- mr r3,r29 ; ffi_type *
245
- mr r4,r30 ; dest
246
- addi r5,r28,-SAVE_REGS_SIZE-(13*FPR_SIZE) ; fprs
247
- xor r6,r6,r6
248
- sg r6,(LINKAGE_SIZE + 7 * GPR_BYTES)(r28)
249
- addi r6,r28,(LINKAGE_SIZE + 7 * GPR_BYTES) ; point to a zeroed counter.
250
- bl _darwin64_struct_floats_to_mem
251
-
252
- b L(done_return_value)
253
- #else
254
- stw r3,0(r30) ; m32 the only struct return in reg is 4 bytes.
255
- #endif
256
- b L(done_return_value)
257
-
258
- L(fp_return_value):
259
- /* Do we have long double to store? */
260
- bf 31,L(fd_return_value) ; FLAG_RETURNS_128BITS
261
- stfd f1,0(r30)
262
- stfd f2,FPR_SIZE(r30)
263
- b L(done_return_value)
264
-
265
- L(fd_return_value):
266
- /* Do we have double to store? */
267
- bf 28,L(float_return_value)
268
- stfd f1,0(r30)
269
- b L(done_return_value)
270
-
271
- L(float_return_value):
272
- /* We only have a float to store. */
273
- stfs f1,0(r30)
274
- b L(done_return_value)
275
-
276
- L(scalar_return_value):
277
- bt 29,L(fp_return_value) ; FLAG_RETURNS_FP
278
- ; ffi_arg is defined as unsigned long.
279
- sg r3,0(r30) ; Save the reg.
280
- bf 28,L(done_return_value) ; not FLAG_RETURNS_64BITS
281
-
282
- #if defined(__ppc64__)
283
- L(maybe_return_128):
284
- std r3,0(r30)
285
- bf 31,L(done_return_value) ; not FLAG_RETURNS_128BITS
286
- std r4,8(r30)
287
- #else
288
- stw r4,4(r30)
289
- #endif
290
-
291
- /* Fall through. */
292
- /* We want this at the end to simplify eh epilog computation. */
293
-
294
- L(done_return_value):
295
- /* Restore the registers we used and return. */
296
- lg r29,SAVED_LR_OFFSET(r28)
297
- ; epilog
298
- lg r31,-(1 * GPR_BYTES)(r28)
299
- mtlr r29
300
- lg r30,-(2 * GPR_BYTES)(r28)
301
- lg r29,-(3 * GPR_BYTES)(r28)
302
- lg r28,-(4 * GPR_BYTES)(r28)
303
- lg r1,0(r1)
304
- blr
305
- LFE1:
306
- .align 1
307
- /* END(_ffi_call_DARWIN) */
308
-
309
- /* Provide a null definition of _ffi_call_AIX. */
310
- .text
311
- .globl _ffi_call_AIX
312
- .align 2
313
- _ffi_call_AIX:
314
- blr
315
- /* END(_ffi_call_AIX) */
316
-
317
- /* EH stuff. */
318
-
319
- #define EH_DATA_ALIGN_FACT MODE_CHOICE(0x7c,0x78)
320
-
321
- .section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support
322
- EH_frame1:
323
- .set L$set$0,LECIE1-LSCIE1
324
- .long L$set$0 ; Length of Common Information Entry
325
- LSCIE1:
326
- .long 0x0 ; CIE Identifier Tag
327
- .byte 0x1 ; CIE Version
328
- .ascii "zR\0" ; CIE Augmentation
329
- .byte 0x1 ; uleb128 0x1; CIE Code Alignment Factor
330
- .byte EH_DATA_ALIGN_FACT ; sleb128 -4; CIE Data Alignment Factor
331
- .byte 0x41 ; CIE RA Column
332
- .byte 0x1 ; uleb128 0x1; Augmentation size
333
- .byte 0x10 ; FDE Encoding (pcrel)
334
- .byte 0xc ; DW_CFA_def_cfa
335
- .byte 0x1 ; uleb128 0x1
336
- .byte 0x0 ; uleb128 0x0
337
- .align LOG2_GPR_BYTES
338
- LECIE1:
339
-
340
- .globl _ffi_call_DARWIN.eh
341
- _ffi_call_DARWIN.eh:
342
- LSFDE1:
343
- .set L$set$1,LEFDE1-LASFDE1
344
- .long L$set$1 ; FDE Length
345
- LASFDE1:
346
- .long LASFDE1-EH_frame1 ; FDE CIE offset
347
- .g_long Lstartcode-. ; FDE initial location
348
- .set L$set$3,LFE1-Lstartcode
349
- .g_long L$set$3 ; FDE address range
350
- .byte 0x0 ; uleb128 0x0; Augmentation size
351
- .byte 0x4 ; DW_CFA_advance_loc4
352
- .set L$set$4,LCFI0-Lstartcode
353
- .long L$set$4
354
- .byte 0xd ; DW_CFA_def_cfa_register
355
- .byte 0x08 ; uleb128 0x08
356
- .byte 0x4 ; DW_CFA_advance_loc4
357
- .set L$set$5,LCFI1-LCFI0
358
- .long L$set$5
359
- .byte 0x11 ; DW_CFA_offset_extended_sf
360
- .byte 0x41 ; uleb128 0x41
361
- .byte 0x7e ; sleb128 -2
362
- .byte 0x9f ; DW_CFA_offset, column 0x1f
363
- .byte 0x1 ; uleb128 0x1
364
- .byte 0x9e ; DW_CFA_offset, column 0x1e
365
- .byte 0x2 ; uleb128 0x2
366
- .byte 0x9d ; DW_CFA_offset, column 0x1d
367
- .byte 0x3 ; uleb128 0x3
368
- .byte 0x9c ; DW_CFA_offset, column 0x1c
369
- .byte 0x4 ; uleb128 0x4
370
- .byte 0x4 ; DW_CFA_advance_loc4
371
- .set L$set$6,LCFI2-LCFI1
372
- .long L$set$6
373
- .byte 0xd ; DW_CFA_def_cfa_register
374
- .byte 0x1c ; uleb128 0x1c
375
- .align LOG2_GPR_BYTES
376
- LEFDE1:
377
- .align 1
378
-
@@ -1,571 +0,0 @@
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 structure 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
- cmpwi 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
- .section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support
471
- EH_frame1:
472
- .set L$set$0,LECIE1-LSCIE1
473
- .long L$set$0 ; Length of Common Information Entry
474
- LSCIE1:
475
- .long 0x0 ; CIE Identifier Tag
476
- .byte 0x1 ; CIE Version
477
- .ascii "zR\0" ; CIE Augmentation
478
- .byte 0x1 ; uleb128 0x1; CIE Code Alignment Factor
479
- .byte EH_DATA_ALIGN_FACT ; sleb128 -4; CIE Data Alignment Factor
480
- .byte 0x41 ; CIE RA Column
481
- .byte 0x1 ; uleb128 0x1; Augmentation size
482
- .byte 0x10 ; FDE Encoding (pcrel)
483
- .byte 0xc ; DW_CFA_def_cfa
484
- .byte 0x1 ; uleb128 0x1
485
- .byte 0x0 ; uleb128 0x0
486
- .align LOG2_GPR_BYTES
487
- LECIE1:
488
- .globl _ffi_closure_ASM.eh
489
- _ffi_closure_ASM.eh:
490
- LSFDE1:
491
- .set L$set$1,LEFDE1-LASFDE1
492
- .long L$set$1 ; FDE Length
493
-
494
- LASFDE1:
495
- .long LASFDE1-EH_frame1 ; FDE CIE offset
496
- .g_long Lstartcode-. ; FDE initial location
497
- .set L$set$2,LFE1-Lstartcode
498
- .g_long L$set$2 ; FDE address range
499
- .byte 0x0 ; uleb128 0x0; Augmentation size
500
- .byte 0x4 ; DW_CFA_advance_loc4
501
- .set L$set$3,LCFI1-LCFI0
502
- .long L$set$3
503
- .byte 0xe ; DW_CFA_def_cfa_offset
504
- .byte EH_FRAME_OFFSETA,EH_FRAME_OFFSETB ; uleb128 176,1/190,3
505
- .byte 0x4 ; DW_CFA_advance_loc4
506
- .set L$set$4,LCFI0-Lstartcode
507
- .long L$set$4
508
- .byte 0x11 ; DW_CFA_offset_extended_sf
509
- .byte 0x41 ; uleb128 0x41
510
- .byte 0x7e ; sleb128 -2
511
- .align LOG2_GPR_BYTES
512
- LEFDE1:
513
- .align 1
514
-
515
- #ifdef WANT_STUB
516
- .section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32
517
- .align 5
518
- L_ffi_closure_helper_DARWIN$stub:
519
- .indirect_symbol _ffi_closure_helper_DARWIN
520
- mflr r0
521
- bcl 20,31,"L1$spb"
522
- "L1$spb":
523
- mflr r11
524
- addis r11,r11,ha16(L_ffi_closure_helper_DARWIN$lazy_ptr-"L1$spb")
525
- mtlr r0
526
- lwzu r12,lo16(L_ffi_closure_helper_DARWIN$lazy_ptr-"L1$spb")(r11)
527
- mtctr r12
528
- bctr
529
- .lazy_symbol_pointer
530
- L_ffi_closure_helper_DARWIN$lazy_ptr:
531
- .indirect_symbol _ffi_closure_helper_DARWIN
532
- .g_long dyld_stub_binding_helper
533
-
534
- #if defined(__ppc64__)
535
- .section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32
536
- .align 5
537
- L_darwin64_struct_ret_by_value_p$stub:
538
- .indirect_symbol _darwin64_struct_ret_by_value_p
539
- mflr r0
540
- bcl 20,31,"L2$spb"
541
- "L2$spb":
542
- mflr r11
543
- addis r11,r11,ha16(L_darwin64_struct_ret_by_value_p$lazy_ptr-"L2$spb")
544
- mtlr r0
545
- lwzu r12,lo16(L_darwin64_struct_ret_by_value_p$lazy_ptr-"L2$spb")(r11)
546
- mtctr r12
547
- bctr
548
- .lazy_symbol_pointer
549
- L_darwin64_struct_ret_by_value_p$lazy_ptr:
550
- .indirect_symbol _darwin64_struct_ret_by_value_p
551
- .g_long dyld_stub_binding_helper
552
-
553
- .section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32
554
- .align 5
555
- L_darwin64_pass_struct_floats$stub:
556
- .indirect_symbol _darwin64_pass_struct_floats
557
- mflr r0
558
- bcl 20,31,"L3$spb"
559
- "L3$spb":
560
- mflr r11
561
- addis r11,r11,ha16(L_darwin64_pass_struct_floats$lazy_ptr-"L3$spb")
562
- mtlr r0
563
- lwzu r12,lo16(L_darwin64_pass_struct_floats$lazy_ptr-"L3$spb")(r11)
564
- mtctr r12
565
- bctr
566
- .lazy_symbol_pointer
567
- L_darwin64_pass_struct_floats$lazy_ptr:
568
- .indirect_symbol _darwin64_pass_struct_floats
569
- .g_long dyld_stub_binding_helper
570
- # endif
571
- #endif