ffi 0.5.0-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 (328) hide show
  1. data/LICENSE +51 -0
  2. data/README.rdoc +69 -0
  3. data/Rakefile +191 -0
  4. data/ext/ffi_c/AbstractMemory.c +489 -0
  5. data/ext/ffi_c/AbstractMemory.h +160 -0
  6. data/ext/ffi_c/ArrayType.c +129 -0
  7. data/ext/ffi_c/ArrayType.h +58 -0
  8. data/ext/ffi_c/AutoPointer.c +61 -0
  9. data/ext/ffi_c/AutoPointer.h +18 -0
  10. data/ext/ffi_c/Buffer.c +187 -0
  11. data/ext/ffi_c/Call.c +853 -0
  12. data/ext/ffi_c/Call.h +86 -0
  13. data/ext/ffi_c/ClosurePool.c +302 -0
  14. data/ext/ffi_c/ClosurePool.h +29 -0
  15. data/ext/ffi_c/DynamicLibrary.c +216 -0
  16. data/ext/ffi_c/DynamicLibrary.h +22 -0
  17. data/ext/ffi_c/Function.c +478 -0
  18. data/ext/ffi_c/Function.h +80 -0
  19. data/ext/ffi_c/FunctionInfo.c +221 -0
  20. data/ext/ffi_c/LastError.c +159 -0
  21. data/ext/ffi_c/LastError.h +18 -0
  22. data/ext/ffi_c/MemoryPointer.c +178 -0
  23. data/ext/ffi_c/MemoryPointer.h +20 -0
  24. data/ext/ffi_c/MethodHandle.c +346 -0
  25. data/ext/ffi_c/MethodHandle.h +53 -0
  26. data/ext/ffi_c/Platform.c +59 -0
  27. data/ext/ffi_c/Platform.h +16 -0
  28. data/ext/ffi_c/Pointer.c +224 -0
  29. data/ext/ffi_c/Pointer.h +49 -0
  30. data/ext/ffi_c/Struct.c +770 -0
  31. data/ext/ffi_c/Struct.h +80 -0
  32. data/ext/ffi_c/StructByValue.c +140 -0
  33. data/ext/ffi_c/StructByValue.h +53 -0
  34. data/ext/ffi_c/StructLayout.c +450 -0
  35. data/ext/ffi_c/Type.c +329 -0
  36. data/ext/ffi_c/Type.h +57 -0
  37. data/ext/ffi_c/Types.c +103 -0
  38. data/ext/ffi_c/Types.h +85 -0
  39. data/ext/ffi_c/Variadic.c +260 -0
  40. data/ext/ffi_c/compat.h +72 -0
  41. data/ext/ffi_c/endian.h +40 -0
  42. data/ext/ffi_c/extconf.rb +30 -0
  43. data/ext/ffi_c/ffi.c +82 -0
  44. data/ext/ffi_c/libffi.bsd.mk +34 -0
  45. data/ext/ffi_c/libffi.darwin.mk +75 -0
  46. data/ext/ffi_c/libffi.gnu.mk +29 -0
  47. data/ext/ffi_c/libffi.mk +13 -0
  48. data/ext/ffi_c/libffi/ChangeLog +3243 -0
  49. data/ext/ffi_c/libffi/ChangeLog.libffi +347 -0
  50. data/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
  51. data/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
  52. data/ext/ffi_c/libffi/LICENSE +21 -0
  53. data/ext/ffi_c/libffi/Makefile.am +177 -0
  54. data/ext/ffi_c/libffi/Makefile.in +1640 -0
  55. data/ext/ffi_c/libffi/README +328 -0
  56. data/ext/ffi_c/libffi/TODO +1 -0
  57. data/ext/ffi_c/libffi/acinclude.m4 +92 -0
  58. data/ext/ffi_c/libffi/aclocal.m4 +7516 -0
  59. data/ext/ffi_c/libffi/compile +142 -0
  60. data/ext/ffi_c/libffi/config.guess +1516 -0
  61. data/ext/ffi_c/libffi/config.sub +1626 -0
  62. data/ext/ffi_c/libffi/configure +24414 -0
  63. data/ext/ffi_c/libffi/configure.ac +365 -0
  64. data/ext/ffi_c/libffi/configure.host +11 -0
  65. data/ext/ffi_c/libffi/depcomp +584 -0
  66. data/ext/ffi_c/libffi/doc/libffi.info +533 -0
  67. data/ext/ffi_c/libffi/doc/libffi.texi +541 -0
  68. data/ext/ffi_c/libffi/doc/stamp-vti +4 -0
  69. data/ext/ffi_c/libffi/doc/version.texi +4 -0
  70. data/ext/ffi_c/libffi/fficonfig.h.in +160 -0
  71. data/ext/ffi_c/libffi/include/Makefile.am +9 -0
  72. data/ext/ffi_c/libffi/include/Makefile.in +422 -0
  73. data/ext/ffi_c/libffi/include/ffi.h.in +393 -0
  74. data/ext/ffi_c/libffi/include/ffi_common.h +98 -0
  75. data/ext/ffi_c/libffi/install-sh +323 -0
  76. data/ext/ffi_c/libffi/libffi.pc.in +10 -0
  77. data/ext/ffi_c/libffi/libtool-version +29 -0
  78. data/ext/ffi_c/libffi/ltcf-c.sh +861 -0
  79. data/ext/ffi_c/libffi/ltcf-cxx.sh +1069 -0
  80. data/ext/ffi_c/libffi/ltcf-gcj.sh +700 -0
  81. data/ext/ffi_c/libffi/ltconfig +2862 -0
  82. data/ext/ffi_c/libffi/ltmain.sh +6930 -0
  83. data/ext/ffi_c/libffi/man/Makefile.am +8 -0
  84. data/ext/ffi_c/libffi/man/Makefile.in +395 -0
  85. data/ext/ffi_c/libffi/man/ffi.3 +31 -0
  86. data/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
  87. data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +66 -0
  88. data/ext/ffi_c/libffi/mdate-sh +201 -0
  89. data/ext/ffi_c/libffi/missing +353 -0
  90. data/ext/ffi_c/libffi/mkinstalldirs +158 -0
  91. data/ext/ffi_c/libffi/src/alpha/ffi.c +284 -0
  92. data/ext/ffi_c/libffi/src/alpha/ffitarget.h +48 -0
  93. data/ext/ffi_c/libffi/src/alpha/osf.S +366 -0
  94. data/ext/ffi_c/libffi/src/arm/ffi.c +309 -0
  95. data/ext/ffi_c/libffi/src/arm/ffitarget.h +49 -0
  96. data/ext/ffi_c/libffi/src/arm/sysv.S +299 -0
  97. data/ext/ffi_c/libffi/src/closures.c +596 -0
  98. data/ext/ffi_c/libffi/src/cris/ffi.c +383 -0
  99. data/ext/ffi_c/libffi/src/cris/ffitarget.h +51 -0
  100. data/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
  101. data/ext/ffi_c/libffi/src/debug.c +59 -0
  102. data/ext/ffi_c/libffi/src/dlmalloc.c +5099 -0
  103. data/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
  104. data/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
  105. data/ext/ffi_c/libffi/src/frv/ffitarget.h +61 -0
  106. data/ext/ffi_c/libffi/src/ia64/ffi.c +580 -0
  107. data/ext/ffi_c/libffi/src/ia64/ffitarget.h +50 -0
  108. data/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
  109. data/ext/ffi_c/libffi/src/ia64/unix.S +560 -0
  110. data/ext/ffi_c/libffi/src/java_raw_api.c +359 -0
  111. data/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
  112. data/ext/ffi_c/libffi/src/m32r/ffitarget.h +48 -0
  113. data/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
  114. data/ext/ffi_c/libffi/src/m68k/ffi.c +278 -0
  115. data/ext/ffi_c/libffi/src/m68k/ffitarget.h +49 -0
  116. data/ext/ffi_c/libffi/src/m68k/sysv.S +234 -0
  117. data/ext/ffi_c/libffi/src/mips/ffi.c +926 -0
  118. data/ext/ffi_c/libffi/src/mips/ffitarget.h +202 -0
  119. data/ext/ffi_c/libffi/src/mips/n32.S +534 -0
  120. data/ext/ffi_c/libffi/src/mips/o32.S +381 -0
  121. data/ext/ffi_c/libffi/src/pa/ffi.c +709 -0
  122. data/ext/ffi_c/libffi/src/pa/ffitarget.h +77 -0
  123. data/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
  124. data/ext/ffi_c/libffi/src/pa/linux.S +357 -0
  125. data/ext/ffi_c/libffi/src/powerpc/aix.S +225 -0
  126. data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +247 -0
  127. data/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
  128. data/ext/ffi_c/libffi/src/powerpc/darwin.S +245 -0
  129. data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +317 -0
  130. data/ext/ffi_c/libffi/src/powerpc/ffi.c +1429 -0
  131. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +800 -0
  132. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +118 -0
  133. data/ext/ffi_c/libffi/src/powerpc/linux64.S +187 -0
  134. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +236 -0
  135. data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +327 -0
  136. data/ext/ffi_c/libffi/src/powerpc/sysv.S +230 -0
  137. data/ext/ffi_c/libffi/src/prep_cif.c +174 -0
  138. data/ext/ffi_c/libffi/src/raw_api.c +254 -0
  139. data/ext/ffi_c/libffi/src/s390/ffi.c +780 -0
  140. data/ext/ffi_c/libffi/src/s390/ffitarget.h +60 -0
  141. data/ext/ffi_c/libffi/src/s390/sysv.S +434 -0
  142. data/ext/ffi_c/libffi/src/sh/ffi.c +716 -0
  143. data/ext/ffi_c/libffi/src/sh/ffitarget.h +49 -0
  144. data/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
  145. data/ext/ffi_c/libffi/src/sh64/ffi.c +453 -0
  146. data/ext/ffi_c/libffi/src/sh64/ffitarget.h +53 -0
  147. data/ext/ffi_c/libffi/src/sh64/sysv.S +530 -0
  148. data/ext/ffi_c/libffi/src/sparc/ffi.c +610 -0
  149. data/ext/ffi_c/libffi/src/sparc/ffitarget.h +66 -0
  150. data/ext/ffi_c/libffi/src/sparc/v8.S +272 -0
  151. data/ext/ffi_c/libffi/src/sparc/v9.S +307 -0
  152. data/ext/ffi_c/libffi/src/types.c +77 -0
  153. data/ext/ffi_c/libffi/src/x86/darwin.S +443 -0
  154. data/ext/ffi_c/libffi/src/x86/darwin64.S +416 -0
  155. data/ext/ffi_c/libffi/src/x86/ffi.c +475 -0
  156. data/ext/ffi_c/libffi/src/x86/ffi64.c +572 -0
  157. data/ext/ffi_c/libffi/src/x86/ffitarget.h +90 -0
  158. data/ext/ffi_c/libffi/src/x86/freebsd.S +458 -0
  159. data/ext/ffi_c/libffi/src/x86/sysv.S +437 -0
  160. data/ext/ffi_c/libffi/src/x86/unix64.S +418 -0
  161. data/ext/ffi_c/libffi/src/x86/win32.S +391 -0
  162. data/ext/ffi_c/libffi/testsuite/Makefile.am +71 -0
  163. data/ext/ffi_c/libffi/testsuite/Makefile.in +447 -0
  164. data/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
  165. data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +289 -0
  166. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +263 -0
  167. data/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
  168. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +36 -0
  169. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +97 -0
  170. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +89 -0
  171. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +89 -0
  172. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +90 -0
  173. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +97 -0
  174. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +99 -0
  175. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +98 -0
  176. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_stdcall.c +72 -0
  177. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +102 -0
  178. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +103 -0
  179. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +104 -0
  180. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +110 -0
  181. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +97 -0
  182. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +99 -0
  183. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +101 -0
  184. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +121 -0
  185. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +98 -0
  186. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +103 -0
  187. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +98 -0
  188. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +98 -0
  189. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +106 -0
  190. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +98 -0
  191. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +117 -0
  192. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +106 -0
  193. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +132 -0
  194. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +121 -0
  195. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +107 -0
  196. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +125 -0
  197. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +105 -0
  198. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +96 -0
  199. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +98 -0
  200. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +99 -0
  201. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +101 -0
  202. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +99 -0
  203. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +100 -0
  204. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +101 -0
  205. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +99 -0
  206. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +99 -0
  207. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +99 -0
  208. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +99 -0
  209. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +99 -0
  210. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +100 -0
  211. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +51 -0
  212. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +51 -0
  213. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +82 -0
  214. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +82 -0
  215. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +94 -0
  216. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +99 -0
  217. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +82 -0
  218. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +94 -0
  219. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +52 -0
  220. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +50 -0
  221. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +50 -0
  222. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +50 -0
  223. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +51 -0
  224. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +54 -0
  225. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +51 -0
  226. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +86 -0
  227. data/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
  228. data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +58 -0
  229. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +57 -0
  230. data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +72 -0
  231. data/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
  232. data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +69 -0
  233. data/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +63 -0
  234. data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +53 -0
  235. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +160 -0
  236. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +169 -0
  237. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +141 -0
  238. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +118 -0
  239. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +119 -0
  240. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +119 -0
  241. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +120 -0
  242. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +139 -0
  243. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +119 -0
  244. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +139 -0
  245. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +139 -0
  246. data/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +98 -0
  247. data/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
  248. data/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
  249. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +35 -0
  250. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
  251. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
  252. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
  253. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
  254. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
  255. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
  256. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
  257. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
  258. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +42 -0
  259. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
  260. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
  261. data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
  262. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
  263. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
  264. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +44 -0
  265. data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +65 -0
  266. data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
  267. data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +59 -0
  268. data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +63 -0
  269. data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +65 -0
  270. data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
  271. data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
  272. data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +80 -0
  273. data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +67 -0
  274. data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +86 -0
  275. data/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +38 -0
  276. data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest.cc +123 -0
  277. data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc +53 -0
  278. data/ext/ffi_c/libffi/texinfo.tex +7482 -0
  279. data/ext/ffi_c/rbffi.h +26 -0
  280. data/gen/Rakefile +12 -0
  281. data/lib/1.8/ffi_c.so +0 -0
  282. data/lib/1.9/ffi_c.so +0 -0
  283. data/lib/ffi.rb +11 -0
  284. data/lib/ffi/autopointer.rb +61 -0
  285. data/lib/ffi/buffer.rb +0 -0
  286. data/lib/ffi/callback.rb +10 -0
  287. data/lib/ffi/enum.rb +78 -0
  288. data/lib/ffi/errno.rb +8 -0
  289. data/lib/ffi/ffi.rb +99 -0
  290. data/lib/ffi/io.rb +21 -0
  291. data/lib/ffi/library.rb +218 -0
  292. data/lib/ffi/managedstruct.rb +55 -0
  293. data/lib/ffi/memorypointer.rb +73 -0
  294. data/lib/ffi/platform.rb +88 -0
  295. data/lib/ffi/pointer.rb +119 -0
  296. data/lib/ffi/struct.rb +183 -0
  297. data/lib/ffi/tools/const_generator.rb +177 -0
  298. data/lib/ffi/tools/generator.rb +58 -0
  299. data/lib/ffi/tools/generator_task.rb +35 -0
  300. data/lib/ffi/tools/struct_generator.rb +194 -0
  301. data/lib/ffi/tools/types_generator.rb +123 -0
  302. data/lib/ffi/types.rb +153 -0
  303. data/lib/ffi/union.rb +12 -0
  304. data/lib/ffi/variadic.rb +25 -0
  305. data/spec/ffi/bool_spec.rb +24 -0
  306. data/spec/ffi/buffer_spec.rb +202 -0
  307. data/spec/ffi/callback_spec.rb +591 -0
  308. data/spec/ffi/enum_spec.rb +164 -0
  309. data/spec/ffi/errno_spec.rb +13 -0
  310. data/spec/ffi/function_spec.rb +73 -0
  311. data/spec/ffi/library_spec.rb +148 -0
  312. data/spec/ffi/managed_struct_spec.rb +56 -0
  313. data/spec/ffi/number_spec.rb +231 -0
  314. data/spec/ffi/pointer_spec.rb +195 -0
  315. data/spec/ffi/rbx/attach_function_spec.rb +27 -0
  316. data/spec/ffi/rbx/memory_pointer_spec.rb +102 -0
  317. data/spec/ffi/rbx/spec_helper.rb +1 -0
  318. data/spec/ffi/rbx/struct_spec.rb +13 -0
  319. data/spec/ffi/spec_helper.rb +17 -0
  320. data/spec/ffi/string_spec.rb +103 -0
  321. data/spec/ffi/struct_callback_spec.rb +64 -0
  322. data/spec/ffi/struct_initialize_spec.rb +30 -0
  323. data/spec/ffi/struct_spec.rb +529 -0
  324. data/spec/ffi/typedef_spec.rb +48 -0
  325. data/spec/ffi/union_spec.rb +60 -0
  326. data/spec/ffi/variadic_spec.rb +84 -0
  327. data/spec/spec.opts +4 -0
  328. metadata +396 -0
@@ -0,0 +1,60 @@
1
+ /* -----------------------------------------------------------------*-C-*-
2
+ ffitarget.h - Copyright (c) 1996-2003 Red Hat, Inc.
3
+ Target configuration macros for S390.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ ``Software''), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included
14
+ in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23
+ DEALINGS IN THE SOFTWARE.
24
+
25
+ ----------------------------------------------------------------------- */
26
+
27
+ #ifndef LIBFFI_TARGET_H
28
+ #define LIBFFI_TARGET_H
29
+
30
+ #if defined (__s390x__)
31
+ #define S390X
32
+ #endif
33
+
34
+ /* ---- System specific configurations ----------------------------------- */
35
+
36
+ #ifndef LIBFFI_ASM
37
+ typedef unsigned long ffi_arg;
38
+ typedef signed long ffi_sarg;
39
+
40
+ typedef enum ffi_abi {
41
+ FFI_FIRST_ABI = 0,
42
+ FFI_SYSV,
43
+ FFI_DEFAULT_ABI = FFI_SYSV,
44
+ FFI_LAST_ABI = FFI_DEFAULT_ABI + 1
45
+ } ffi_abi;
46
+ #endif
47
+
48
+
49
+ /* ---- Definitions for closures ----------------------------------------- */
50
+
51
+ #define FFI_CLOSURES 1
52
+ #ifdef S390X
53
+ #define FFI_TRAMPOLINE_SIZE 32
54
+ #else
55
+ #define FFI_TRAMPOLINE_SIZE 16
56
+ #endif
57
+ #define FFI_NATIVE_RAW_API 0
58
+
59
+ #endif
60
+
@@ -0,0 +1,434 @@
1
+ /* -----------------------------------------------------------------------
2
+ sysv.S - Copyright (c) 2000 Software AG
3
+ Copyright (c) 2008 Red Hat, Inc.
4
+
5
+ S390 Foreign Function Interface
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,
19
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25
+ DEALINGS IN THE SOFTWARE.
26
+ ----------------------------------------------------------------------- */
27
+
28
+ #define LIBFFI_ASM
29
+ #include <fficonfig.h>
30
+ #include <ffi.h>
31
+
32
+ #ifndef __s390x__
33
+
34
+ .text
35
+
36
+ # r2: cif->bytes
37
+ # r3: &ecif
38
+ # r4: ffi_prep_args
39
+ # r5: ret_type
40
+ # r6: ecif.rvalue
41
+ # ov: fn
42
+
43
+ # This assumes we are using gas.
44
+ .globl ffi_call_SYSV
45
+ .type ffi_call_SYSV,%function
46
+ ffi_call_SYSV:
47
+ .LFB1:
48
+ stm %r6,%r15,24(%r15) # Save registers
49
+ .LCFI0:
50
+ basr %r13,0 # Set up base register
51
+ .Lbase:
52
+ lr %r11,%r15 # Set up frame pointer
53
+ .LCFI1:
54
+ sr %r15,%r2
55
+ ahi %r15,-96-48 # Allocate stack
56
+ lr %r8,%r6 # Save ecif.rvalue
57
+ sr %r9,%r9
58
+ ic %r9,.Ltable-.Lbase(%r13,%r5) # Load epilog address
59
+ l %r7,96(%r11) # Load function address
60
+ st %r11,0(%r15) # Set up back chain
61
+ ahi %r11,-48 # Register save area
62
+ .LCFI2:
63
+
64
+ la %r2,96(%r15) # Save area
65
+ # r3 already holds &ecif
66
+ basr %r14,%r4 # Call ffi_prep_args
67
+
68
+ lm %r2,%r6,0(%r11) # Load arguments
69
+ ld %f0,32(%r11)
70
+ ld %f2,40(%r11)
71
+ la %r14,0(%r13,%r9) # Set return address
72
+ br %r7 # ... and call function
73
+
74
+ .LretNone: # Return void
75
+ l %r4,48+56(%r11)
76
+ lm %r6,%r15,48+24(%r11)
77
+ br %r4
78
+
79
+ .LretFloat:
80
+ l %r4,48+56(%r11)
81
+ ste %f0,0(%r8) # Return float
82
+ lm %r6,%r15,48+24(%r11)
83
+ br %r4
84
+
85
+ .LretDouble:
86
+ l %r4,48+56(%r11)
87
+ std %f0,0(%r8) # Return double
88
+ lm %r6,%r15,48+24(%r11)
89
+ br %r4
90
+
91
+ .LretInt32:
92
+ l %r4,48+56(%r11)
93
+ st %r2,0(%r8) # Return int
94
+ lm %r6,%r15,48+24(%r11)
95
+ br %r4
96
+
97
+ .LretInt64:
98
+ l %r4,48+56(%r11)
99
+ stm %r2,%r3,0(%r8) # Return long long
100
+ lm %r6,%r15,48+24(%r11)
101
+ br %r4
102
+
103
+ .Ltable:
104
+ .byte .LretNone-.Lbase # FFI390_RET_VOID
105
+ .byte .LretNone-.Lbase # FFI390_RET_STRUCT
106
+ .byte .LretFloat-.Lbase # FFI390_RET_FLOAT
107
+ .byte .LretDouble-.Lbase # FFI390_RET_DOUBLE
108
+ .byte .LretInt32-.Lbase # FFI390_RET_INT32
109
+ .byte .LretInt64-.Lbase # FFI390_RET_INT64
110
+
111
+ .LFE1:
112
+ .ffi_call_SYSV_end:
113
+ .size ffi_call_SYSV,.ffi_call_SYSV_end-ffi_call_SYSV
114
+
115
+
116
+ .globl ffi_closure_SYSV
117
+ .type ffi_closure_SYSV,%function
118
+ ffi_closure_SYSV:
119
+ .LFB2:
120
+ stm %r12,%r15,48(%r15) # Save registers
121
+ .LCFI10:
122
+ basr %r13,0 # Set up base register
123
+ .Lcbase:
124
+ stm %r2,%r6,8(%r15) # Save arguments
125
+ std %f0,64(%r15)
126
+ std %f2,72(%r15)
127
+ lr %r1,%r15 # Set up stack frame
128
+ ahi %r15,-96
129
+ .LCFI11:
130
+ l %r12,.Lchelper-.Lcbase(%r13) # Get helper function
131
+ lr %r2,%r0 # Closure
132
+ la %r3,8(%r1) # GPRs
133
+ la %r4,64(%r1) # FPRs
134
+ la %r5,96(%r1) # Overflow
135
+ st %r1,0(%r15) # Set up back chain
136
+
137
+ bas %r14,0(%r12,%r13) # Call helper
138
+
139
+ l %r4,96+56(%r15)
140
+ ld %f0,96+64(%r15) # Load return registers
141
+ lm %r2,%r3,96+8(%r15)
142
+ lm %r12,%r15,96+48(%r15)
143
+ br %r4
144
+
145
+ .align 4
146
+ .Lchelper:
147
+ .long ffi_closure_helper_SYSV-.Lcbase
148
+
149
+ .LFE2:
150
+
151
+ .ffi_closure_SYSV_end:
152
+ .size ffi_closure_SYSV,.ffi_closure_SYSV_end-ffi_closure_SYSV
153
+
154
+
155
+ .section .eh_frame,EH_FRAME_FLAGS,@progbits
156
+ .Lframe1:
157
+ .4byte .LECIE1-.LSCIE1 # Length of Common Information Entry
158
+ .LSCIE1:
159
+ .4byte 0x0 # CIE Identifier Tag
160
+ .byte 0x1 # CIE Version
161
+ .ascii "zR\0" # CIE Augmentation
162
+ .uleb128 0x1 # CIE Code Alignment Factor
163
+ .sleb128 -4 # CIE Data Alignment Factor
164
+ .byte 0xe # CIE RA Column
165
+ .uleb128 0x1 # Augmentation size
166
+ .byte 0x1b # FDE Encoding (pcrel sdata4)
167
+ .byte 0xc # DW_CFA_def_cfa
168
+ .uleb128 0xf
169
+ .uleb128 0x60
170
+ .align 4
171
+ .LECIE1:
172
+ .LSFDE1:
173
+ .4byte .LEFDE1-.LASFDE1 # FDE Length
174
+ .LASFDE1:
175
+ .4byte .LASFDE1-.Lframe1 # FDE CIE offset
176
+ .4byte .LFB1-. # FDE initial location
177
+ .4byte .LFE1-.LFB1 # FDE address range
178
+ .uleb128 0x0 # Augmentation size
179
+ .byte 0x4 # DW_CFA_advance_loc4
180
+ .4byte .LCFI0-.LFB1
181
+ .byte 0x8f # DW_CFA_offset, column 0xf
182
+ .uleb128 0x9
183
+ .byte 0x8e # DW_CFA_offset, column 0xe
184
+ .uleb128 0xa
185
+ .byte 0x8d # DW_CFA_offset, column 0xd
186
+ .uleb128 0xb
187
+ .byte 0x8c # DW_CFA_offset, column 0xc
188
+ .uleb128 0xc
189
+ .byte 0x8b # DW_CFA_offset, column 0xb
190
+ .uleb128 0xd
191
+ .byte 0x8a # DW_CFA_offset, column 0xa
192
+ .uleb128 0xe
193
+ .byte 0x89 # DW_CFA_offset, column 0x9
194
+ .uleb128 0xf
195
+ .byte 0x88 # DW_CFA_offset, column 0x8
196
+ .uleb128 0x10
197
+ .byte 0x87 # DW_CFA_offset, column 0x7
198
+ .uleb128 0x11
199
+ .byte 0x86 # DW_CFA_offset, column 0x6
200
+ .uleb128 0x12
201
+ .byte 0x4 # DW_CFA_advance_loc4
202
+ .4byte .LCFI1-.LCFI0
203
+ .byte 0xd # DW_CFA_def_cfa_register
204
+ .uleb128 0xb
205
+ .byte 0x4 # DW_CFA_advance_loc4
206
+ .4byte .LCFI2-.LCFI1
207
+ .byte 0xe # DW_CFA_def_cfa_offset
208
+ .uleb128 0x90
209
+ .align 4
210
+ .LEFDE1:
211
+ .LSFDE2:
212
+ .4byte .LEFDE2-.LASFDE2 # FDE Length
213
+ .LASFDE2:
214
+ .4byte .LASFDE2-.Lframe1 # FDE CIE offset
215
+ .4byte .LFB2-. # FDE initial location
216
+ .4byte .LFE2-.LFB2 # FDE address range
217
+ .uleb128 0x0 # Augmentation size
218
+ .byte 0x4 # DW_CFA_advance_loc4
219
+ .4byte .LCFI10-.LFB2
220
+ .byte 0x8f # DW_CFA_offset, column 0xf
221
+ .uleb128 0x9
222
+ .byte 0x8e # DW_CFA_offset, column 0xe
223
+ .uleb128 0xa
224
+ .byte 0x8d # DW_CFA_offset, column 0xd
225
+ .uleb128 0xb
226
+ .byte 0x8c # DW_CFA_offset, column 0xc
227
+ .uleb128 0xc
228
+ .byte 0x4 # DW_CFA_advance_loc4
229
+ .4byte .LCFI11-.LCFI10
230
+ .byte 0xe # DW_CFA_def_cfa_offset
231
+ .uleb128 0xc0
232
+ .align 4
233
+ .LEFDE2:
234
+
235
+ #else
236
+
237
+ .text
238
+
239
+ # r2: cif->bytes
240
+ # r3: &ecif
241
+ # r4: ffi_prep_args
242
+ # r5: ret_type
243
+ # r6: ecif.rvalue
244
+ # ov: fn
245
+
246
+ # This assumes we are using gas.
247
+ .globl ffi_call_SYSV
248
+ .type ffi_call_SYSV,%function
249
+ ffi_call_SYSV:
250
+ .LFB1:
251
+ stmg %r6,%r15,48(%r15) # Save registers
252
+ .LCFI0:
253
+ larl %r13,.Lbase # Set up base register
254
+ lgr %r11,%r15 # Set up frame pointer
255
+ .LCFI1:
256
+ sgr %r15,%r2
257
+ aghi %r15,-160-80 # Allocate stack
258
+ lgr %r8,%r6 # Save ecif.rvalue
259
+ llgc %r9,.Ltable-.Lbase(%r13,%r5) # Load epilog address
260
+ lg %r7,160(%r11) # Load function address
261
+ stg %r11,0(%r15) # Set up back chain
262
+ aghi %r11,-80 # Register save area
263
+ .LCFI2:
264
+
265
+ la %r2,160(%r15) # Save area
266
+ # r3 already holds &ecif
267
+ basr %r14,%r4 # Call ffi_prep_args
268
+
269
+ lmg %r2,%r6,0(%r11) # Load arguments
270
+ ld %f0,48(%r11)
271
+ ld %f2,56(%r11)
272
+ ld %f4,64(%r11)
273
+ ld %f6,72(%r11)
274
+ la %r14,0(%r13,%r9) # Set return address
275
+ br %r7 # ... and call function
276
+
277
+ .Lbase:
278
+ .LretNone: # Return void
279
+ lg %r4,80+112(%r11)
280
+ lmg %r6,%r15,80+48(%r11)
281
+ br %r4
282
+
283
+ .LretFloat:
284
+ lg %r4,80+112(%r11)
285
+ ste %f0,0(%r8) # Return float
286
+ lmg %r6,%r15,80+48(%r11)
287
+ br %r4
288
+
289
+ .LretDouble:
290
+ lg %r4,80+112(%r11)
291
+ std %f0,0(%r8) # Return double
292
+ lmg %r6,%r15,80+48(%r11)
293
+ br %r4
294
+
295
+ .LretInt32:
296
+ lg %r4,80+112(%r11)
297
+ st %r2,0(%r8) # Return int
298
+ lmg %r6,%r15,80+48(%r11)
299
+ br %r4
300
+
301
+ .LretInt64:
302
+ lg %r4,80+112(%r11)
303
+ stg %r2,0(%r8) # Return long
304
+ lmg %r6,%r15,80+48(%r11)
305
+ br %r4
306
+
307
+ .Ltable:
308
+ .byte .LretNone-.Lbase # FFI390_RET_VOID
309
+ .byte .LretNone-.Lbase # FFI390_RET_STRUCT
310
+ .byte .LretFloat-.Lbase # FFI390_RET_FLOAT
311
+ .byte .LretDouble-.Lbase # FFI390_RET_DOUBLE
312
+ .byte .LretInt32-.Lbase # FFI390_RET_INT32
313
+ .byte .LretInt64-.Lbase # FFI390_RET_INT64
314
+
315
+ .LFE1:
316
+ .ffi_call_SYSV_end:
317
+ .size ffi_call_SYSV,.ffi_call_SYSV_end-ffi_call_SYSV
318
+
319
+
320
+ .globl ffi_closure_SYSV
321
+ .type ffi_closure_SYSV,%function
322
+ ffi_closure_SYSV:
323
+ .LFB2:
324
+ stmg %r14,%r15,112(%r15) # Save registers
325
+ .LCFI10:
326
+ stmg %r2,%r6,16(%r15) # Save arguments
327
+ std %f0,128(%r15)
328
+ std %f2,136(%r15)
329
+ std %f4,144(%r15)
330
+ std %f6,152(%r15)
331
+ lgr %r1,%r15 # Set up stack frame
332
+ aghi %r15,-160
333
+ .LCFI11:
334
+ lgr %r2,%r0 # Closure
335
+ la %r3,16(%r1) # GPRs
336
+ la %r4,128(%r1) # FPRs
337
+ la %r5,160(%r1) # Overflow
338
+ stg %r1,0(%r15) # Set up back chain
339
+
340
+ brasl %r14,ffi_closure_helper_SYSV # Call helper
341
+
342
+ lg %r14,160+112(%r15)
343
+ ld %f0,160+128(%r15) # Load return registers
344
+ lg %r2,160+16(%r15)
345
+ la %r15,160(%r15)
346
+ br %r14
347
+ .LFE2:
348
+
349
+ .ffi_closure_SYSV_end:
350
+ .size ffi_closure_SYSV,.ffi_closure_SYSV_end-ffi_closure_SYSV
351
+
352
+
353
+
354
+ .section .eh_frame,EH_FRAME_FLAGS,@progbits
355
+ .Lframe1:
356
+ .4byte .LECIE1-.LSCIE1 # Length of Common Information Entry
357
+ .LSCIE1:
358
+ .4byte 0x0 # CIE Identifier Tag
359
+ .byte 0x1 # CIE Version
360
+ .ascii "zR\0" # CIE Augmentation
361
+ .uleb128 0x1 # CIE Code Alignment Factor
362
+ .sleb128 -8 # CIE Data Alignment Factor
363
+ .byte 0xe # CIE RA Column
364
+ .uleb128 0x1 # Augmentation size
365
+ .byte 0x1b # FDE Encoding (pcrel sdata4)
366
+ .byte 0xc # DW_CFA_def_cfa
367
+ .uleb128 0xf
368
+ .uleb128 0xa0
369
+ .align 8
370
+ .LECIE1:
371
+ .LSFDE1:
372
+ .4byte .LEFDE1-.LASFDE1 # FDE Length
373
+ .LASFDE1:
374
+ .4byte .LASFDE1-.Lframe1 # FDE CIE offset
375
+ .4byte .LFB1-. # FDE initial location
376
+ .4byte .LFE1-.LFB1 # FDE address range
377
+ .uleb128 0x0 # Augmentation size
378
+ .byte 0x4 # DW_CFA_advance_loc4
379
+ .4byte .LCFI0-.LFB1
380
+ .byte 0x8f # DW_CFA_offset, column 0xf
381
+ .uleb128 0x5
382
+ .byte 0x8e # DW_CFA_offset, column 0xe
383
+ .uleb128 0x6
384
+ .byte 0x8d # DW_CFA_offset, column 0xd
385
+ .uleb128 0x7
386
+ .byte 0x8c # DW_CFA_offset, column 0xc
387
+ .uleb128 0x8
388
+ .byte 0x8b # DW_CFA_offset, column 0xb
389
+ .uleb128 0x9
390
+ .byte 0x8a # DW_CFA_offset, column 0xa
391
+ .uleb128 0xa
392
+ .byte 0x89 # DW_CFA_offset, column 0x9
393
+ .uleb128 0xb
394
+ .byte 0x88 # DW_CFA_offset, column 0x8
395
+ .uleb128 0xc
396
+ .byte 0x87 # DW_CFA_offset, column 0x7
397
+ .uleb128 0xd
398
+ .byte 0x86 # DW_CFA_offset, column 0x6
399
+ .uleb128 0xe
400
+ .byte 0x4 # DW_CFA_advance_loc4
401
+ .4byte .LCFI1-.LCFI0
402
+ .byte 0xd # DW_CFA_def_cfa_register
403
+ .uleb128 0xb
404
+ .byte 0x4 # DW_CFA_advance_loc4
405
+ .4byte .LCFI2-.LCFI1
406
+ .byte 0xe # DW_CFA_def_cfa_offset
407
+ .uleb128 0xf0
408
+ .align 8
409
+ .LEFDE1:
410
+ .LSFDE2:
411
+ .4byte .LEFDE2-.LASFDE2 # FDE Length
412
+ .LASFDE2:
413
+ .4byte .LASFDE2-.Lframe1 # FDE CIE offset
414
+ .4byte .LFB2-. # FDE initial location
415
+ .4byte .LFE2-.LFB2 # FDE address range
416
+ .uleb128 0x0 # Augmentation size
417
+ .byte 0x4 # DW_CFA_advance_loc4
418
+ .4byte .LCFI10-.LFB2
419
+ .byte 0x8f # DW_CFA_offset, column 0xf
420
+ .uleb128 0x5
421
+ .byte 0x8e # DW_CFA_offset, column 0xe
422
+ .uleb128 0x6
423
+ .byte 0x4 # DW_CFA_advance_loc4
424
+ .4byte .LCFI11-.LCFI10
425
+ .byte 0xe # DW_CFA_def_cfa_offset
426
+ .uleb128 0x140
427
+ .align 8
428
+ .LEFDE2:
429
+
430
+ #endif
431
+
432
+ #if defined __ELF__ && defined __linux__
433
+ .section .note.GNU-stack,"",@progbits
434
+ #endif