ffi 1.11.1 → 1.15.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (331) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +207 -0
  3. data/Gemfile +3 -4
  4. data/README.md +24 -3
  5. data/Rakefile +65 -69
  6. data/ext/ffi_c/AbstractMemory.c +29 -34
  7. data/ext/ffi_c/Buffer.c +4 -9
  8. data/ext/ffi_c/Call.c +6 -22
  9. data/ext/ffi_c/Call.h +2 -2
  10. data/ext/ffi_c/ClosurePool.c +75 -25
  11. data/ext/ffi_c/ClosurePool.h +3 -1
  12. data/ext/ffi_c/DynamicLibrary.c +2 -7
  13. data/ext/ffi_c/Function.c +43 -43
  14. data/ext/ffi_c/Function.h +0 -4
  15. data/ext/ffi_c/FunctionInfo.c +3 -8
  16. data/ext/ffi_c/LastError.c +2 -6
  17. data/ext/ffi_c/LongDouble.c +12 -10
  18. data/ext/ffi_c/LongDouble.h +0 -4
  19. data/ext/ffi_c/MemoryPointer.c +3 -8
  20. data/ext/ffi_c/MemoryPointer.h +0 -4
  21. data/ext/ffi_c/MethodHandle.c +21 -31
  22. data/ext/ffi_c/MethodHandle.h +3 -2
  23. data/ext/ffi_c/Platform.c +5 -9
  24. data/ext/ffi_c/Pointer.c +25 -26
  25. data/ext/ffi_c/Pointer.h +0 -4
  26. data/ext/ffi_c/Struct.c +49 -56
  27. data/ext/ffi_c/Struct.h +12 -6
  28. data/ext/ffi_c/StructByValue.c +2 -7
  29. data/ext/ffi_c/StructLayout.c +22 -20
  30. data/ext/ffi_c/Thread.c +0 -8
  31. data/ext/ffi_c/Thread.h +1 -9
  32. data/ext/ffi_c/Type.c +1 -1
  33. data/ext/ffi_c/Types.c +7 -8
  34. data/ext/ffi_c/Types.h +3 -4
  35. data/ext/ffi_c/Variadic.c +14 -9
  36. data/ext/ffi_c/compat.h +4 -0
  37. data/ext/ffi_c/extconf.rb +36 -24
  38. data/ext/ffi_c/libffi/.appveyor.yml +29 -13
  39. data/ext/ffi_c/libffi/.gitattributes +4 -0
  40. data/ext/ffi_c/libffi/.travis/bfin-sim.exp +58 -0
  41. data/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +14 -0
  42. data/ext/ffi_c/libffi/.travis/build-in-container.sh +12 -0
  43. data/ext/ffi_c/libffi/.travis/build.sh +116 -8
  44. data/ext/ffi_c/libffi/.travis/install.sh +65 -16
  45. data/ext/ffi_c/libffi/.travis/m32r-sim.exp +58 -0
  46. data/ext/ffi_c/libffi/.travis/moxie-sim.exp +1 -1
  47. data/ext/ffi_c/libffi/.travis/or1k-sim.exp +58 -0
  48. data/ext/ffi_c/libffi/.travis/powerpc-eabisim.exp +58 -0
  49. data/ext/ffi_c/libffi/.travis/site.exp +10 -1
  50. data/ext/ffi_c/libffi/.travis/wine-sim.exp +55 -0
  51. data/ext/ffi_c/libffi/.travis.yml +51 -2
  52. data/ext/ffi_c/libffi/{ChangeLog.libffi-3.1 → ChangeLog.old} +1407 -0
  53. data/ext/ffi_c/libffi/LICENSE +1 -1
  54. data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +5 -4
  55. data/ext/ffi_c/libffi/Makefile.am +56 -72
  56. data/ext/ffi_c/libffi/Makefile.in +458 -207
  57. data/ext/ffi_c/libffi/README.md +33 -8
  58. data/ext/ffi_c/libffi/config.guess +552 -331
  59. data/ext/ffi_c/libffi/config.sub +1321 -1306
  60. data/ext/ffi_c/libffi/configure +414 -342
  61. data/ext/ffi_c/libffi/configure.ac +32 -11
  62. data/ext/ffi_c/libffi/configure.host +56 -27
  63. data/ext/ffi_c/libffi/doc/Makefile.in +9 -5
  64. data/ext/ffi_c/libffi/doc/libffi.texi +26 -14
  65. data/ext/ffi_c/libffi/doc/version.texi +4 -4
  66. data/ext/ffi_c/libffi/fficonfig.h.in +13 -0
  67. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +2 -4
  68. data/ext/ffi_c/libffi/include/Makefile.in +10 -6
  69. data/ext/ffi_c/libffi/include/ffi.h.in +19 -7
  70. data/ext/ffi_c/libffi/include/ffi_common.h +4 -0
  71. data/ext/ffi_c/libffi/install-sh +23 -13
  72. data/ext/ffi_c/libffi/libffi.map.in +8 -12
  73. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +2 -48
  74. data/ext/ffi_c/libffi/libtool-version +1 -1
  75. data/ext/ffi_c/libffi/ltmain.sh +156 -61
  76. data/ext/ffi_c/libffi/m4/asmcfi.m4 +1 -1
  77. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +5 -26
  78. data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +5 -26
  79. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +2 -1
  80. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +5 -26
  81. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +7 -3
  82. data/ext/ffi_c/libffi/make_sunver.pl +333 -0
  83. data/ext/ffi_c/libffi/man/Makefile.in +9 -5
  84. data/ext/ffi_c/libffi/missing +8 -8
  85. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
  86. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
  87. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
  88. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
  89. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
  90. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +219 -0
  91. data/ext/ffi_c/libffi/msvcc.sh +38 -13
  92. data/ext/ffi_c/libffi/src/aarch64/ffi.c +151 -67
  93. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +19 -3
  94. data/ext/ffi_c/libffi/src/aarch64/internal.h +1 -0
  95. data/ext/ffi_c/libffi/src/aarch64/sysv.S +22 -9
  96. data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
  97. data/ext/ffi_c/libffi/src/arm/ffi.c +62 -5
  98. data/ext/ffi_c/libffi/src/arm/ffitarget.h +8 -1
  99. data/ext/ffi_c/libffi/src/arm/sysv.S +6 -4
  100. data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
  101. data/ext/ffi_c/libffi/src/closures.c +69 -14
  102. data/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
  103. data/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
  104. data/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
  105. data/ext/ffi_c/libffi/src/dlmalloc.c +1 -1
  106. data/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
  107. data/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
  108. data/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
  109. data/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
  110. data/ext/ffi_c/libffi/src/mips/ffi.c +5 -1
  111. data/ext/ffi_c/libffi/src/mips/ffitarget.h +1 -1
  112. data/ext/ffi_c/libffi/src/mips/o32.S +2 -0
  113. data/ext/ffi_c/libffi/src/pa/ffi.c +46 -91
  114. data/ext/ffi_c/libffi/src/pa/ffitarget.h +1 -6
  115. data/ext/ffi_c/libffi/src/pa/hpux32.S +4 -2
  116. data/ext/ffi_c/libffi/src/pa/linux.S +27 -4
  117. data/ext/ffi_c/libffi/src/powerpc/ffi.c +6 -4
  118. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +13 -1
  119. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +211 -32
  120. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +18 -7
  121. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +10 -4
  122. data/ext/ffi_c/libffi/src/powerpc/linux64.S +91 -28
  123. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +81 -5
  124. data/ext/ffi_c/libffi/src/powerpc/sysv.S +5 -7
  125. data/ext/ffi_c/libffi/src/prep_cif.c +4 -2
  126. data/ext/ffi_c/libffi/src/x86/ffi.c +28 -12
  127. data/ext/ffi_c/libffi/src/x86/ffi64.c +22 -11
  128. data/ext/ffi_c/libffi/src/x86/ffitarget.h +15 -2
  129. data/ext/ffi_c/libffi/src/x86/ffiw64.c +21 -11
  130. data/ext/ffi_c/libffi/src/x86/sysv.S +17 -8
  131. data/ext/ffi_c/libffi/src/x86/sysv_intel.S +995 -0
  132. data/ext/ffi_c/libffi/src/x86/unix64.S +59 -4
  133. data/ext/ffi_c/libffi/src/x86/win64.S +12 -3
  134. data/ext/ffi_c/libffi/src/x86/win64_intel.S +3 -2
  135. data/ext/ffi_c/libffi/testsuite/Makefile.am +114 -109
  136. data/ext/ffi_c/libffi/testsuite/Makefile.in +124 -84
  137. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +32 -8
  138. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +7 -2
  139. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +4 -4
  140. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2 -2
  141. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +12 -1
  142. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +9 -8
  143. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -1
  144. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
  145. data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +138 -0
  146. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +3 -1
  147. data/ext/ffi_c/libffi.darwin.mk +1 -1
  148. data/ffi.gemspec +5 -6
  149. data/lib/ffi/abstract_memory.rb +44 -0
  150. data/lib/ffi/autopointer.rb +1 -1
  151. data/lib/ffi/ffi.rb +2 -0
  152. data/lib/ffi/io.rb +3 -3
  153. data/lib/ffi/library.rb +13 -9
  154. data/lib/ffi/managedstruct.rb +2 -2
  155. data/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
  156. data/lib/ffi/platform/aarch64-freebsd/types.conf +89 -89
  157. data/lib/ffi/platform/aarch64-freebsd12/types.conf +162 -109
  158. data/lib/ffi/platform/aarch64-linux/types.conf +81 -81
  159. data/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
  160. data/lib/ffi/platform/arm-freebsd/types.conf +87 -87
  161. data/lib/ffi/platform/arm-freebsd12/types.conf +87 -87
  162. data/lib/ffi/platform/arm-linux/types.conf +110 -82
  163. data/lib/ffi/platform/i386-cygwin/types.conf +1 -1
  164. data/lib/ffi/platform/i386-darwin/types.conf +63 -63
  165. data/lib/ffi/platform/i386-freebsd/types.conf +87 -87
  166. data/lib/ffi/platform/i386-freebsd12/types.conf +87 -87
  167. data/lib/ffi/platform/i386-gnu/types.conf +84 -84
  168. data/lib/ffi/platform/i386-linux/types.conf +77 -77
  169. data/lib/ffi/platform/i386-netbsd/types.conf +87 -87
  170. data/lib/ffi/platform/i386-openbsd/types.conf +89 -89
  171. data/lib/ffi/platform/i386-solaris/types.conf +96 -96
  172. data/lib/ffi/platform/i386-windows/types.conf +43 -96
  173. data/lib/ffi/platform/ia64-linux/types.conf +79 -79
  174. data/lib/ffi/platform/mips-linux/types.conf +79 -79
  175. data/lib/ffi/platform/mips64-linux/types.conf +81 -81
  176. data/lib/ffi/platform/mips64el-linux/types.conf +81 -81
  177. data/lib/ffi/platform/mipsel-linux/types.conf +79 -79
  178. data/lib/ffi/platform/mipsisa32r6-linux/types.conf +79 -79
  179. data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +79 -79
  180. data/lib/ffi/platform/mipsisa64r6-linux/types.conf +81 -81
  181. data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +81 -81
  182. data/lib/ffi/platform/powerpc-aix/types.conf +155 -155
  183. data/lib/ffi/platform/powerpc-darwin/types.conf +63 -63
  184. data/lib/ffi/platform/powerpc-linux/types.conf +108 -78
  185. data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
  186. data/lib/ffi/platform/powerpc64-linux/types.conf +81 -81
  187. data/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
  188. data/lib/ffi/platform/riscv64-linux/types.conf +104 -0
  189. data/lib/ffi/platform/s390-linux/types.conf +79 -79
  190. data/lib/ffi/platform/s390x-linux/types.conf +79 -79
  191. data/lib/ffi/platform/sparc-linux/types.conf +79 -79
  192. data/lib/ffi/platform/sparc-solaris/types.conf +103 -103
  193. data/lib/ffi/platform/sparc64-linux/types.conf +79 -79
  194. data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
  195. data/lib/ffi/platform/sparcv9-solaris/types.conf +103 -103
  196. data/lib/ffi/platform/x86_64-cygwin/types.conf +1 -1
  197. data/lib/ffi/platform/x86_64-darwin/types.conf +88 -84
  198. data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
  199. data/lib/ffi/platform/x86_64-freebsd/types.conf +89 -89
  200. data/lib/ffi/platform/x86_64-freebsd12/types.conf +139 -109
  201. data/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
  202. data/lib/ffi/platform/x86_64-linux/types.conf +107 -77
  203. data/lib/ffi/platform/x86_64-msys/types.conf +119 -0
  204. data/lib/ffi/platform/x86_64-netbsd/types.conf +89 -89
  205. data/lib/ffi/platform/x86_64-openbsd/types.conf +86 -86
  206. data/lib/ffi/platform/x86_64-solaris/types.conf +96 -96
  207. data/lib/ffi/platform/x86_64-windows/types.conf +42 -110
  208. data/lib/ffi/platform.rb +22 -9
  209. data/lib/ffi/pointer.rb +21 -14
  210. data/lib/ffi/struct.rb +10 -5
  211. data/lib/ffi/tools/const_generator.rb +6 -4
  212. data/lib/ffi/tools/struct_generator.rb +2 -1
  213. data/lib/ffi/tools/types_generator.rb +7 -4
  214. data/lib/ffi/variadic.rb +1 -10
  215. data/lib/ffi/version.rb +1 -1
  216. data/lib/ffi.rb +10 -3
  217. data/rakelib/ffi_gem_helper.rb +65 -0
  218. data/samples/getlogin.rb +1 -1
  219. data/samples/getpid.rb +1 -1
  220. data/samples/gettimeofday.rb +8 -8
  221. data/samples/hello.rb +2 -1
  222. data/samples/inotify.rb +1 -1
  223. data/samples/pty.rb +1 -2
  224. data/samples/qsort.rb +0 -1
  225. metadata +147 -134
  226. data/.gitignore +0 -25
  227. data/.gitmodules +0 -4
  228. data/.travis.yml +0 -42
  229. data/.yardopts +0 -5
  230. data/appveyor.yml +0 -27
  231. data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
  232. data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
  233. data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
  234. data/ext/ffi_c/win32/stdbool.h +0 -8
  235. data/ext/ffi_c/win32/stdint.h +0 -201
  236. data/samples/sample_helper.rb +0 -6
  237. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +0 -0
  238. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +0 -0
  239. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +0 -0
  240. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +0 -0
  241. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +0 -0
  242. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +0 -0
  243. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +0 -0
  244. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +0 -0
  245. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_simple.c +0 -0
  246. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +0 -0
  247. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +0 -0
  248. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +0 -0
  249. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +0 -0
  250. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +0 -0
  251. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +0 -0
  252. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +0 -0
  253. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +0 -0
  254. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +0 -0
  255. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +0 -0
  256. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +0 -0
  257. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +0 -0
  258. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3float.c +0 -0
  259. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +0 -0
  260. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +0 -0
  261. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +0 -0
  262. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +0 -0
  263. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +0 -0
  264. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +0 -0
  265. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +0 -0
  266. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +0 -0
  267. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +0 -0
  268. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +0 -0
  269. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +0 -0
  270. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +0 -0
  271. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +0 -0
  272. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +0 -0
  273. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +0 -0
  274. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +0 -0
  275. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +0 -0
  276. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +0 -0
  277. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +0 -0
  278. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +0 -0
  279. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +0 -0
  280. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +0 -0
  281. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +0 -0
  282. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +0 -0
  283. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +0 -0
  284. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
  285. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +0 -0
  286. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +0 -0
  287. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +0 -0
  288. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +0 -0
  289. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_args.c +0 -0
  290. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_float_double.c +0 -0
  291. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +0 -0
  292. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +0 -0
  293. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +0 -0
  294. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +0 -0
  295. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +0 -0
  296. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +0 -0
  297. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +0 -0
  298. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +0 -0
  299. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +0 -0
  300. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +0 -0
  301. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +0 -0
  302. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_struct_va1.c +0 -0
  303. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +0 -0
  304. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar_va.c +0 -0
  305. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +0 -0
  306. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint_va.c +0 -0
  307. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulong_va.c +0 -0
  308. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +0 -0
  309. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +0 -0
  310. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort_va.c +0 -0
  311. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +0 -0
  312. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +0 -0
  313. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +0 -0
  314. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +0 -0
  315. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct11.c +0 -0
  316. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +0 -0
  317. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +0 -0
  318. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +0 -0
  319. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +0 -0
  320. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +0 -0
  321. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +0 -0
  322. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +0 -0
  323. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +0 -0
  324. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
  325. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +0 -0
  326. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +0 -0
  327. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +0 -0
  328. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +0 -0
  329. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +0 -0
  330. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest.cc +0 -0
  331. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest_ffi_call.cc +0 -0
@@ -1,5 +1,6 @@
1
1
  /* -----------------------------------------------------------------------
2
- closures.c - Copyright (c) 2007, 2009, 2010 Red Hat, Inc.
2
+ closures.c - Copyright (c) 2019 Anthony Green
3
+ Copyright (c) 2007, 2009, 2010 Red Hat, Inc.
3
4
  Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc
4
5
  Copyright (c) 2011 Plausible Labs Cooperative, Inc.
5
6
 
@@ -44,6 +45,9 @@
44
45
 
45
46
  #include <stddef.h>
46
47
  #include <unistd.h>
48
+ #ifdef HAVE_SYS_MEMFD_H
49
+ #include <sys/memfd.h>
50
+ #endif
47
51
 
48
52
  static const size_t overhead =
49
53
  (sizeof(max_align_t) > sizeof(void *) + sizeof(size_t)) ?
@@ -122,7 +126,7 @@ ffi_closure_free (void *ptr)
122
126
  # define FFI_MMAP_EXEC_WRIT 1
123
127
  # define HAVE_MNTENT 1
124
128
  # endif
125
- # if defined(X86_WIN32) || defined(X86_WIN64) || defined(__OS2__)
129
+ # if defined(_WIN32) || defined(__OS2__)
126
130
  /* Windows systems may have Data Execution Protection (DEP) enabled,
127
131
  which requires the use of VirtualMalloc/VirtualFree to alloc/free
128
132
  executable memory. */
@@ -147,6 +151,9 @@ ffi_closure_free (void *ptr)
147
151
 
148
152
  #include <mach/mach.h>
149
153
  #include <pthread.h>
154
+ #ifdef HAVE_PTRAUTH
155
+ #include <ptrauth.h>
156
+ #endif
150
157
  #include <stdio.h>
151
158
  #include <stdlib.h>
152
159
 
@@ -172,7 +179,7 @@ struct ffi_trampoline_table
172
179
 
173
180
  struct ffi_trampoline_table_entry
174
181
  {
175
- void *(*trampoline) ();
182
+ void *(*trampoline) (void);
176
183
  ffi_trampoline_table_entry *next;
177
184
  };
178
185
 
@@ -300,6 +307,9 @@ ffi_closure_alloc (size_t size, void **code)
300
307
 
301
308
  /* Initialize the return values */
302
309
  *code = entry->trampoline;
310
+ #ifdef HAVE_PTRAUTH
311
+ *code = ptrauth_sign_unauthenticated (*code, ptrauth_key_asia, 0);
312
+ #endif
303
313
  closure->trampoline_table = table;
304
314
  closure->trampoline_table_entry = entry;
305
315
 
@@ -385,7 +395,7 @@ ffi_closure_free (void *ptr)
385
395
  #endif
386
396
  #include <string.h>
387
397
  #include <stdio.h>
388
- #if !defined(X86_WIN32) && !defined(X86_WIN64)
398
+ #if !defined(_WIN32)
389
399
  #ifdef HAVE_MNTENT
390
400
  #include <mntent.h>
391
401
  #endif /* HAVE_MNTENT */
@@ -511,11 +521,11 @@ static int dlmalloc_trim(size_t) MAYBE_UNUSED;
511
521
  static size_t dlmalloc_usable_size(void*) MAYBE_UNUSED;
512
522
  static void dlmalloc_stats(void) MAYBE_UNUSED;
513
523
 
514
- #if !(defined(X86_WIN32) || defined(X86_WIN64) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX)
524
+ #if !(defined(_WIN32) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX)
515
525
  /* Use these for mmap and munmap within dlmalloc.c. */
516
526
  static void *dlmmap(void *, size_t, int, int, int, off_t);
517
527
  static int dlmunmap(void *, size_t);
518
- #endif /* !(defined(X86_WIN32) || defined(X86_WIN64) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX) */
528
+ #endif /* !(defined(_WIN32) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX) */
519
529
 
520
530
  #define mmap dlmmap
521
531
  #define munmap dlmunmap
@@ -525,7 +535,7 @@ static int dlmunmap(void *, size_t);
525
535
  #undef mmap
526
536
  #undef munmap
527
537
 
528
- #if !(defined(X86_WIN32) || defined(X86_WIN64) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX)
538
+ #if !(defined(_WIN32) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX)
529
539
 
530
540
  /* A mutex used to synchronize access to *exec* variables in this file. */
531
541
  static pthread_mutex_t open_temp_exec_file_mutex = PTHREAD_MUTEX_INITIALIZER;
@@ -537,6 +547,17 @@ static int execfd = -1;
537
547
  /* The amount of space already allocated from the temporary file. */
538
548
  static size_t execsize = 0;
539
549
 
550
+ #ifdef HAVE_MEMFD_CREATE
551
+ /* Open a temporary file name, and immediately unlink it. */
552
+ static int
553
+ open_temp_exec_file_memfd (const char *name)
554
+ {
555
+ int fd;
556
+ fd = memfd_create (name, MFD_CLOEXEC);
557
+ return fd;
558
+ }
559
+ #endif
560
+
540
561
  /* Open a temporary file name, and immediately unlink it. */
541
562
  static int
542
563
  open_temp_exec_file_name (char *name, int flags)
@@ -664,6 +685,9 @@ static struct
664
685
  const char *arg;
665
686
  int repeat;
666
687
  } open_temp_exec_file_opts[] = {
688
+ #ifdef HAVE_MEMFD_CREATE
689
+ { open_temp_exec_file_memfd, "libffi", 0 },
690
+ #endif
667
691
  { open_temp_exec_file_env, "TMPDIR", 0 },
668
692
  { open_temp_exec_file_dir, "/tmp", 0 },
669
693
  { open_temp_exec_file_dir, "/var/tmp", 0 },
@@ -789,7 +813,13 @@ dlmmap_locked (void *start, size_t length, int prot, int flags, off_t offset)
789
813
  close (execfd);
790
814
  goto retry_open;
791
815
  }
792
- ftruncate (execfd, offset);
816
+ if (ftruncate (execfd, offset) != 0)
817
+ {
818
+ /* Fixme : Error logs can be added here. Returning an error for
819
+ * ftruncte() will not add any advantage as it is being
820
+ * validating in the error case. */
821
+ }
822
+
793
823
  return MFAIL;
794
824
  }
795
825
  else if (!offset
@@ -801,7 +831,12 @@ dlmmap_locked (void *start, size_t length, int prot, int flags, off_t offset)
801
831
  if (start == MFAIL)
802
832
  {
803
833
  munmap (ptr, length);
804
- ftruncate (execfd, offset);
834
+ if (ftruncate (execfd, offset) != 0)
835
+ {
836
+ /* Fixme : Error logs can be added here. Returning an error for
837
+ * ftruncte() will not add any advantage as it is being
838
+ * validating in the error case. */
839
+ }
805
840
  return start;
806
841
  }
807
842
 
@@ -896,7 +931,7 @@ segment_holding_code (mstate m, char* addr)
896
931
  }
897
932
  #endif
898
933
 
899
- #endif /* !(defined(X86_WIN32) || defined(X86_WIN64) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX) */
934
+ #endif /* !(defined(_WIN32) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX) */
900
935
 
901
936
  /* Allocate a chunk of memory with the given size. Returns a pointer
902
937
  to the writable address, and sets *CODE to the executable
@@ -909,7 +944,7 @@ ffi_closure_alloc (size_t size, void **code)
909
944
  if (!code)
910
945
  return NULL;
911
946
 
912
- ptr = dlmalloc (size);
947
+ ptr = FFI_CLOSURE_PTR (dlmalloc (size));
913
948
 
914
949
  if (ptr)
915
950
  {
@@ -921,6 +956,20 @@ ffi_closure_alloc (size_t size, void **code)
921
956
  return ptr;
922
957
  }
923
958
 
959
+ void *
960
+ ffi_data_to_code_pointer (void *data)
961
+ {
962
+ msegmentptr seg = segment_holding (gm, data);
963
+ /* We expect closures to be allocated with ffi_closure_alloc(), in
964
+ which case seg will be non-NULL. However, some users take on the
965
+ burden of managing this memory themselves, in which case this
966
+ we'll just return data. */
967
+ if (seg)
968
+ return add_segment_exec_offset (data, seg);
969
+ else
970
+ return data;
971
+ }
972
+
924
973
  /* Release a chunk of memory allocated with ffi_closure_alloc. If
925
974
  FFI_CLOSURE_FREE_CODE is nonzero, the given address can be the
926
975
  writable or the executable address given. Otherwise, only the
@@ -935,7 +984,7 @@ ffi_closure_free (void *ptr)
935
984
  ptr = sub_segment_exec_offset (ptr, seg);
936
985
  #endif
937
986
 
938
- dlfree (ptr);
987
+ dlfree (FFI_RESTORE_PTR (ptr));
939
988
  }
940
989
 
941
990
  # else /* ! FFI_MMAP_EXEC_WRIT */
@@ -951,13 +1000,19 @@ ffi_closure_alloc (size_t size, void **code)
951
1000
  if (!code)
952
1001
  return NULL;
953
1002
 
954
- return *code = malloc (size);
1003
+ return *code = FFI_CLOSURE_PTR (malloc (size));
955
1004
  }
956
1005
 
957
1006
  void
958
1007
  ffi_closure_free (void *ptr)
959
1008
  {
960
- free (ptr);
1009
+ free (FFI_RESTORE_PTR (ptr));
1010
+ }
1011
+
1012
+ void *
1013
+ ffi_data_to_code_pointer (void *data)
1014
+ {
1015
+ return data;
961
1016
  }
962
1017
 
963
1018
  # endif /* ! FFI_MMAP_EXEC_WRIT */
@@ -0,0 +1,395 @@
1
+ /* -----------------------------------------------------------------------
2
+ ffi.c
3
+
4
+ CSKY Foreign Function Interface
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining
7
+ a copy of this software and associated documentation files (the
8
+ ``Software''), to deal in the Software without restriction, including
9
+ without limitation the rights to use, copy, modify, merge, publish,
10
+ distribute, sublicense, and/or sell copies of the Software, and to
11
+ permit persons to whom the Software is furnished to do so, subject to
12
+ the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included
15
+ in all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
18
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
21
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
22
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24
+ DEALINGS IN THE SOFTWARE.
25
+ ----------------------------------------------------------------------- */
26
+
27
+ #include <ffi.h>
28
+ #include <ffi_common.h>
29
+
30
+ #include <stdlib.h>
31
+
32
+ /* ffi_prep_args is called by the assembly routine once stack space
33
+ has been allocated for the function's arguments
34
+ */
35
+ void ffi_prep_args(char *stack, extended_cif *ecif)
36
+ {
37
+ register unsigned int i;
38
+ register void **p_argv;
39
+ register char *argp;
40
+ register ffi_type **p_arg;
41
+
42
+ argp = stack;
43
+
44
+ if ( ecif->cif->flags == FFI_TYPE_STRUCT ) {
45
+ *(void **) argp = ecif->rvalue;
46
+ argp += 4;
47
+ }
48
+
49
+ p_argv = ecif->avalue;
50
+
51
+ for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types;
52
+ (i != 0);
53
+ i--, p_arg++)
54
+ {
55
+ size_t z;
56
+ size_t alignment;
57
+
58
+ /* Align if necessary */
59
+ alignment = (*p_arg)->alignment;
60
+ #ifdef __CSKYABIV1__
61
+ /*
62
+ * Adapt ABIV1 bug.
63
+ * If struct's size is larger than 8 bytes, then it always alignment as 4 bytes.
64
+ */
65
+ if (((*p_arg)->type == FFI_TYPE_STRUCT) && ((*p_arg)->size > 8) && (alignment == 8)) {
66
+ alignment = 4;
67
+ }
68
+ #endif
69
+
70
+ if ((alignment - 1) & (unsigned) argp) {
71
+ argp = (char *) FFI_ALIGN(argp, alignment);
72
+ }
73
+
74
+ if ((*p_arg)->type == FFI_TYPE_STRUCT)
75
+ argp = (char *) FFI_ALIGN(argp, 4);
76
+
77
+ z = (*p_arg)->size;
78
+ if (z < sizeof(int))
79
+ {
80
+ z = sizeof(int);
81
+ switch ((*p_arg)->type)
82
+ {
83
+ case FFI_TYPE_SINT8:
84
+ *(signed int *) argp = (signed int)*(SINT8 *)(* p_argv);
85
+ break;
86
+
87
+ case FFI_TYPE_UINT8:
88
+ *(unsigned int *) argp = (unsigned int)*(UINT8 *)(* p_argv);
89
+ break;
90
+
91
+ case FFI_TYPE_SINT16:
92
+ *(signed int *) argp = (signed int)*(SINT16 *)(* p_argv);
93
+ break;
94
+
95
+ case FFI_TYPE_UINT16:
96
+ *(unsigned int *) argp = (unsigned int)*(UINT16 *)(* p_argv);
97
+ break;
98
+
99
+ case FFI_TYPE_STRUCT:
100
+ #ifdef __CSKYBE__
101
+ memcpy((argp + 4 - (*p_arg)->size), *p_argv, (*p_arg)->size);
102
+ #else
103
+ memcpy(argp, *p_argv, (*p_arg)->size);
104
+ #endif
105
+ break;
106
+
107
+ default:
108
+ FFI_ASSERT(0);
109
+ }
110
+ }
111
+ else if (z == sizeof(int))
112
+ {
113
+ *(unsigned int *) argp = (unsigned int)*(UINT32 *)(* p_argv);
114
+ }
115
+ else
116
+ {
117
+ memcpy(argp, *p_argv, z);
118
+ }
119
+ p_argv++;
120
+ argp += z;
121
+ }
122
+
123
+ return;
124
+ }
125
+
126
+ /* Perform machine dependent cif processing */
127
+ ffi_status ffi_prep_cif_machdep(ffi_cif *cif)
128
+ {
129
+ /* Round the stack up to a multiple of 8 bytes. This isn't needed
130
+ everywhere, but it is on some platforms, and it doesn't hcsky anything
131
+ when it isn't needed. */
132
+ cif->bytes = (cif->bytes + 7) & ~7;
133
+
134
+ /* Set the return type flag */
135
+ switch (cif->rtype->type)
136
+ {
137
+
138
+ case FFI_TYPE_DOUBLE:
139
+ case FFI_TYPE_SINT64:
140
+ case FFI_TYPE_UINT64:
141
+ cif->flags = (unsigned) FFI_TYPE_SINT64;
142
+ break;
143
+
144
+ case FFI_TYPE_STRUCT:
145
+ if (cif->rtype->size <= 4)
146
+ /* A Composite Type not larger than 4 bytes is returned in r0. */
147
+ cif->flags = (unsigned)FFI_TYPE_INT;
148
+ else if (cif->rtype->size <= 8)
149
+ /* A Composite Type not larger than 8 bytes is returned in r0, r1. */
150
+ cif->flags = (unsigned)FFI_TYPE_SINT64;
151
+ else
152
+ /* A Composite Type larger than 8 bytes, or whose size cannot
153
+ be determined statically ... is stored in memory at an
154
+ address passed [in r0]. */
155
+ cif->flags = (unsigned)FFI_TYPE_STRUCT;
156
+ break;
157
+
158
+ default:
159
+ cif->flags = FFI_TYPE_INT;
160
+ break;
161
+ }
162
+
163
+ return FFI_OK;
164
+ }
165
+
166
+ /* Perform machine dependent cif processing for variadic calls */
167
+ ffi_status ffi_prep_cif_machdep_var(ffi_cif *cif,
168
+ unsigned int nfixedargs,
169
+ unsigned int ntotalargs)
170
+ {
171
+ return ffi_prep_cif_machdep(cif);
172
+ }
173
+
174
+ /* Prototypes for assembly functions, in sysv.S */
175
+ extern void ffi_call_SYSV (void (*fn)(void), extended_cif *, unsigned, unsigned, unsigned *);
176
+
177
+ void ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue)
178
+ {
179
+ extended_cif ecif;
180
+
181
+ int small_struct = (cif->flags == FFI_TYPE_INT
182
+ && cif->rtype->type == FFI_TYPE_STRUCT);
183
+
184
+ ecif.cif = cif;
185
+ ecif.avalue = avalue;
186
+
187
+ unsigned int temp;
188
+
189
+ /* If the return value is a struct and we don't have a return */
190
+ /* value address then we need to make one */
191
+
192
+ if ((rvalue == NULL) &&
193
+ (cif->flags == FFI_TYPE_STRUCT))
194
+ {
195
+ ecif.rvalue = alloca(cif->rtype->size);
196
+ }
197
+ else if (small_struct)
198
+ ecif.rvalue = &temp;
199
+ else
200
+ ecif.rvalue = rvalue;
201
+
202
+ switch (cif->abi)
203
+ {
204
+ case FFI_SYSV:
205
+ ffi_call_SYSV (fn, &ecif, cif->bytes, cif->flags, ecif.rvalue);
206
+ break;
207
+
208
+ default:
209
+ FFI_ASSERT(0);
210
+ break;
211
+ }
212
+ if (small_struct)
213
+ #ifdef __CSKYBE__
214
+ memcpy (rvalue, ((unsigned char *)&temp + (4 - cif->rtype->size)), cif->rtype->size);
215
+ #else
216
+ memcpy (rvalue, &temp, cif->rtype->size);
217
+ #endif
218
+ }
219
+
220
+ /** private members **/
221
+
222
+ static void ffi_prep_incoming_args_SYSV (char *stack, void **ret,
223
+ void** args, ffi_cif* cif);
224
+
225
+ void ffi_closure_SYSV (ffi_closure *);
226
+
227
+ /* This function is jumped to by the trampoline */
228
+
229
+ unsigned int
230
+ ffi_closure_SYSV_inner (closure, respp, args)
231
+ ffi_closure *closure;
232
+ void **respp;
233
+ void *args;
234
+ {
235
+ // our various things...
236
+ ffi_cif *cif;
237
+ void **arg_area;
238
+
239
+ cif = closure->cif;
240
+ arg_area = (void**) alloca (cif->nargs * sizeof (void*));
241
+
242
+ /* this call will initialize ARG_AREA, such that each
243
+ * element in that array points to the corresponding
244
+ * value on the stack; and if the function returns
245
+ * a structure, it will re-set RESP to point to the
246
+ * structure return address. */
247
+
248
+ ffi_prep_incoming_args_SYSV(args, respp, arg_area, cif);
249
+
250
+ (closure->fun) (cif, *respp, arg_area, closure->user_data);
251
+
252
+ #ifdef __CSKYBE__
253
+ if (cif->flags == FFI_TYPE_INT && cif->rtype->type == FFI_TYPE_STRUCT) {
254
+ unsigned int tmp = 0;
255
+ tmp = *(unsigned int *)(*respp);
256
+ *(unsigned int *)(*respp) = (tmp >> ((4 - cif->rtype->size) * 8));
257
+ }
258
+ #endif
259
+
260
+ return cif->flags;
261
+ }
262
+
263
+
264
+ static void
265
+ ffi_prep_incoming_args_SYSV(char *stack, void **rvalue,
266
+ void **avalue, ffi_cif *cif)
267
+ {
268
+ register unsigned int i;
269
+ register void **p_argv;
270
+ register char *argp;
271
+ register ffi_type **p_arg;
272
+
273
+ argp = stack;
274
+
275
+ if ( cif->flags == FFI_TYPE_STRUCT ) {
276
+ *rvalue = *(void **) argp;
277
+ argp += 4;
278
+ }
279
+
280
+ p_argv = avalue;
281
+
282
+ for (i = cif->nargs, p_arg = cif->arg_types; (i != 0); i--, p_arg++)
283
+ {
284
+ size_t z;
285
+ size_t alignment;
286
+
287
+ alignment = (*p_arg)->alignment;
288
+ if (alignment < 4)
289
+ alignment = 4;
290
+
291
+ #ifdef __CSKYABIV1__
292
+ /*
293
+ * Adapt ABIV1 bug.
294
+ * If struct's size is larger than 8 bytes, then it always alignment as 4 bytes.
295
+ */
296
+ if (((*p_arg)->type == FFI_TYPE_STRUCT) && ((*p_arg)->size > 8) && (alignment == 8)) {
297
+ alignment = 4;
298
+ }
299
+ #endif
300
+
301
+ /* Align if necessary */
302
+ if ((alignment - 1) & (unsigned) argp) {
303
+ argp = (char *) FFI_ALIGN(argp, alignment);
304
+ }
305
+
306
+ z = (*p_arg)->size;
307
+
308
+ #ifdef __CSKYBE__
309
+ unsigned int tmp = 0;
310
+ if ((*p_arg)->size < 4) {
311
+ tmp = *(unsigned int *)argp;
312
+ memcpy(argp, ((unsigned char *)&tmp + (4 - (*p_arg)->size)), (*p_arg)->size);
313
+ }
314
+ #else
315
+ /* because we're little endian, this is what it turns into. */
316
+ #endif
317
+ *p_argv = (void*) argp;
318
+
319
+ p_argv++;
320
+ argp += z;
321
+ }
322
+
323
+ return;
324
+ }
325
+
326
+ /* How to make a trampoline. */
327
+
328
+ extern unsigned char ffi_csky_trampoline[TRAMPOLINE_SIZE];
329
+
330
+ /*
331
+ * Since there is no __clear_cache in libgcc in csky toolchain.
332
+ * define ffi_csky_cacheflush in sysv.S.
333
+ * void ffi_csky_cacheflush(uint32 start_addr, uint32 size, int cache)
334
+ */
335
+ #define CACHEFLUSH_IN_FFI 1
336
+ #if CACHEFLUSH_IN_FFI
337
+ extern void ffi_csky_cacheflush(unsigned char *__tramp, unsigned int k,
338
+ int i);
339
+ #define FFI_INIT_TRAMPOLINE(TRAMP,FUN,CTX) \
340
+ ({ unsigned char *__tramp = (unsigned char*)(TRAMP); \
341
+ unsigned int __fun = (unsigned int)(FUN); \
342
+ unsigned int __ctx = (unsigned int)(CTX); \
343
+ unsigned char *insns = (unsigned char *)(CTX); \
344
+ memcpy (__tramp, ffi_csky_trampoline, TRAMPOLINE_SIZE); \
345
+ *(unsigned int*) &__tramp[TRAMPOLINE_SIZE] = __ctx; \
346
+ *(unsigned int*) &__tramp[TRAMPOLINE_SIZE + 4] = __fun; \
347
+ ffi_csky_cacheflush(&__tramp[0], TRAMPOLINE_SIZE, 3); /* Clear data mapping. */ \
348
+ ffi_csky_cacheflush(insns, TRAMPOLINE_SIZE, 3); \
349
+ /* Clear instruction \
350
+ mapping. */ \
351
+ })
352
+ #else
353
+ #define FFI_INIT_TRAMPOLINE(TRAMP,FUN,CTX) \
354
+ ({ unsigned char *__tramp = (unsigned char*)(TRAMP); \
355
+ unsigned int __fun = (unsigned int)(FUN); \
356
+ unsigned int __ctx = (unsigned int)(CTX); \
357
+ unsigned char *insns = (unsigned char *)(CTX); \
358
+ memcpy (__tramp, ffi_csky_trampoline, TRAMPOLINE_SIZE); \
359
+ *(unsigned int*) &__tramp[TRAMPOLINE_SIZE] = __ctx; \
360
+ *(unsigned int*) &__tramp[TRAMPOLINE_SIZE + 4] = __fun; \
361
+ __clear_cache((&__tramp[0]), (&__tramp[TRAMPOLINE_SIZE-1])); /* Clear data mapping. */ \
362
+ __clear_cache(insns, insns + TRAMPOLINE_SIZE); \
363
+ /* Clear instruction \
364
+ mapping. */ \
365
+ })
366
+ #endif
367
+
368
+ /* the cif must already be prep'ed */
369
+
370
+ ffi_status
371
+ ffi_prep_closure_loc (ffi_closure* closure,
372
+ ffi_cif* cif,
373
+ void (*fun)(ffi_cif*,void*,void**,void*),
374
+ void *user_data,
375
+ void *codeloc)
376
+ {
377
+ void (*closure_func)(ffi_closure*) = NULL;
378
+
379
+ if (cif->abi == FFI_SYSV)
380
+ closure_func = &ffi_closure_SYSV;
381
+ else
382
+ return FFI_BAD_ABI;
383
+
384
+ FFI_INIT_TRAMPOLINE (&closure->tramp[0], \
385
+ closure_func, \
386
+ codeloc);
387
+
388
+ closure->cif = cif;
389
+ closure->user_data = user_data;
390
+ closure->fun = fun;
391
+
392
+ return FFI_OK;
393
+ }
394
+
395
+
@@ -0,0 +1,63 @@
1
+ /* -----------------------------------------------------------------*-C-*-
2
+ ffitarget.h - Copyright (c) 2012 Anthony Green
3
+ Copyright (c) 2010 CodeSourcery
4
+ Copyright (c) 1996-2003 Red Hat, Inc.
5
+
6
+ Target configuration macros for CSKY.
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining
9
+ a copy of this software and associated documentation files (the
10
+ ``Software''), to deal in the Software without restriction, including
11
+ without limitation the rights to use, copy, modify, merge, publish,
12
+ distribute, sublicense, and/or sell copies of the Software, and to
13
+ permit persons to whom the Software is furnished to do so, subject to
14
+ the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be included
17
+ in all copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
20
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
23
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
24
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26
+ DEALINGS IN THE SOFTWARE.
27
+
28
+ ----------------------------------------------------------------------- */
29
+
30
+ #ifndef LIBFFI_TARGET_H
31
+ #define LIBFFI_TARGET_H
32
+
33
+ #ifndef LIBFFI_H
34
+ #error "Please do not include ffitarget.h directly into your source. Use ffi.h instead."
35
+ #endif
36
+
37
+ #ifndef LIBFFI_ASM
38
+ typedef unsigned long ffi_arg;
39
+ typedef signed long ffi_sarg;
40
+
41
+ typedef enum ffi_abi {
42
+ FFI_FIRST_ABI = 0,
43
+ FFI_SYSV,
44
+ FFI_LAST_ABI,
45
+ FFI_DEFAULT_ABI = FFI_SYSV,
46
+ } ffi_abi;
47
+ #endif
48
+
49
+ #ifdef __CSKYABIV2__
50
+ #define FFI_ASM_ARGREG_SIZE 16
51
+ #define TRAMPOLINE_SIZE 16
52
+ #define FFI_TRAMPOLINE_SIZE 24
53
+ #else
54
+ #define FFI_ASM_ARGREG_SIZE 24
55
+ #define TRAMPOLINE_SIZE 20
56
+ #define FFI_TRAMPOLINE_SIZE 28
57
+ #endif
58
+
59
+ /* ---- Definitions for closures ----------------------------------------- */
60
+
61
+ #define FFI_CLOSURES 1
62
+ #define FFI_NATIVE_RAW_API 0
63
+ #endif