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,327 @@
1
+ /* -----------------------------------------------------------------------
2
+ sysv.h - Copyright (c) 2003 Jakub Jelinek <jakub@redhat.com>
3
+ Copyright (c) 2008 Red Hat, 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,
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
+ #define LIBFFI_ASM
28
+ #include <fficonfig.h>
29
+ #include <ffi.h>
30
+ #include <powerpc/asm.h>
31
+
32
+ .file "ppc_closure.S"
33
+
34
+ #ifndef __powerpc64__
35
+
36
+ ENTRY(ffi_closure_SYSV)
37
+ .LFB1:
38
+ stwu %r1,-144(%r1)
39
+ .LCFI0:
40
+ mflr %r0
41
+ .LCFI1:
42
+ stw %r0,148(%r1)
43
+
44
+ # we want to build up an areas for the parameters passed
45
+ # in registers (both floating point and integer)
46
+
47
+ # so first save gpr 3 to gpr 10 (aligned to 4)
48
+ stw %r3, 16(%r1)
49
+ stw %r4, 20(%r1)
50
+ stw %r5, 24(%r1)
51
+ stw %r6, 28(%r1)
52
+ stw %r7, 32(%r1)
53
+ stw %r8, 36(%r1)
54
+ stw %r9, 40(%r1)
55
+ stw %r10,44(%r1)
56
+
57
+ #ifndef __NO_FPRS__
58
+ # next save fpr 1 to fpr 8 (aligned to 8)
59
+ stfd %f1, 48(%r1)
60
+ stfd %f2, 56(%r1)
61
+ stfd %f3, 64(%r1)
62
+ stfd %f4, 72(%r1)
63
+ stfd %f5, 80(%r1)
64
+ stfd %f6, 88(%r1)
65
+ stfd %f7, 96(%r1)
66
+ stfd %f8, 104(%r1)
67
+ #endif
68
+
69
+ # set up registers for the routine that actually does the work
70
+ # get the context pointer from the trampoline
71
+ mr %r3,%r11
72
+
73
+ # now load up the pointer to the result storage
74
+ addi %r4,%r1,112
75
+
76
+ # now load up the pointer to the saved gpr registers
77
+ addi %r5,%r1,16
78
+
79
+ # now load up the pointer to the saved fpr registers */
80
+ addi %r6,%r1,48
81
+
82
+ # now load up the pointer to the outgoing parameter
83
+ # stack in the previous frame
84
+ # i.e. the previous frame pointer + 8
85
+ addi %r7,%r1,152
86
+
87
+ # make the call
88
+ bl ffi_closure_helper_SYSV@local
89
+ .Lret:
90
+ # now r3 contains the return type
91
+ # so use it to look up in a table
92
+ # so we know how to deal with each type
93
+
94
+ # look up the proper starting point in table
95
+ # by using return type as offset
96
+
97
+ mflr %r4 # move address of .Lret to r4
98
+ slwi %r3,%r3,4 # now multiply return type by 16
99
+ addi %r4, %r4, .Lret_type0 - .Lret
100
+ lwz %r0,148(%r1)
101
+ add %r3,%r3,%r4 # add contents of table to table address
102
+ mtctr %r3
103
+ bctr # jump to it
104
+ .LFE1:
105
+
106
+ # Each of the ret_typeX code fragments has to be exactly 16 bytes long
107
+ # (4 instructions). For cache effectiveness we align to a 16 byte boundary
108
+ # first.
109
+ .align 4
110
+ # case FFI_TYPE_VOID
111
+ .Lret_type0:
112
+ mtlr %r0
113
+ addi %r1,%r1,144
114
+ blr
115
+ nop
116
+
117
+ # case FFI_TYPE_INT
118
+ lwz %r3,112+0(%r1)
119
+ mtlr %r0
120
+ .Lfinish:
121
+ addi %r1,%r1,144
122
+ blr
123
+
124
+ # case FFI_TYPE_FLOAT
125
+ lfs %f1,112+0(%r1)
126
+ mtlr %r0
127
+ addi %r1,%r1,144
128
+ blr
129
+
130
+ # case FFI_TYPE_DOUBLE
131
+ lfd %f1,112+0(%r1)
132
+ mtlr %r0
133
+ addi %r1,%r1,144
134
+ blr
135
+
136
+ # case FFI_TYPE_LONGDOUBLE
137
+ lfd %f1,112+0(%r1)
138
+ lfd %f2,112+8(%r1)
139
+ mtlr %r0
140
+ b .Lfinish
141
+
142
+ # case FFI_TYPE_UINT8
143
+ lbz %r3,112+3(%r1)
144
+ mtlr %r0
145
+ addi %r1,%r1,144
146
+ blr
147
+
148
+ # case FFI_TYPE_SINT8
149
+ lbz %r3,112+3(%r1)
150
+ extsb %r3,%r3
151
+ mtlr %r0
152
+ b .Lfinish
153
+
154
+ # case FFI_TYPE_UINT16
155
+ lhz %r3,112+2(%r1)
156
+ mtlr %r0
157
+ addi %r1,%r1,144
158
+ blr
159
+
160
+ # case FFI_TYPE_SINT16
161
+ lha %r3,112+2(%r1)
162
+ mtlr %r0
163
+ addi %r1,%r1,144
164
+ blr
165
+
166
+ # case FFI_TYPE_UINT32
167
+ lwz %r3,112+0(%r1)
168
+ mtlr %r0
169
+ addi %r1,%r1,144
170
+ blr
171
+
172
+ # case FFI_TYPE_SINT32
173
+ lwz %r3,112+0(%r1)
174
+ mtlr %r0
175
+ addi %r1,%r1,144
176
+ blr
177
+
178
+ # case FFI_TYPE_UINT64
179
+ lwz %r3,112+0(%r1)
180
+ lwz %r4,112+4(%r1)
181
+ mtlr %r0
182
+ b .Lfinish
183
+
184
+ # case FFI_TYPE_SINT64
185
+ lwz %r3,112+0(%r1)
186
+ lwz %r4,112+4(%r1)
187
+ mtlr %r0
188
+ b .Lfinish
189
+
190
+ # case FFI_TYPE_STRUCT
191
+ mtlr %r0
192
+ addi %r1,%r1,144
193
+ blr
194
+ nop
195
+
196
+ # case FFI_TYPE_POINTER
197
+ lwz %r3,112+0(%r1)
198
+ mtlr %r0
199
+ addi %r1,%r1,144
200
+ blr
201
+
202
+ # case FFI_TYPE_UINT128
203
+ lwz %r3,112+0(%r1)
204
+ lwz %r4,112+4(%r1)
205
+ lwz %r5,112+8(%r1)
206
+ bl .Luint128
207
+
208
+ # The return types below are only used when the ABI type is FFI_SYSV.
209
+ # case FFI_SYSV_TYPE_SMALL_STRUCT + 1. One byte struct.
210
+ lbz %r3,112+0(%r1)
211
+ mtlr %r0
212
+ addi %r1,%r1,144
213
+ blr
214
+
215
+ # case FFI_SYSV_TYPE_SMALL_STRUCT + 2. Two byte struct.
216
+ lhz %r3,112+0(%r1)
217
+ mtlr %r0
218
+ addi %r1,%r1,144
219
+ blr
220
+
221
+ # case FFI_SYSV_TYPE_SMALL_STRUCT + 3. Three byte struct.
222
+ lwz %r3,112+0(%r1)
223
+ srwi %r3,%r3,8
224
+ mtlr %r0
225
+ b .Lfinish
226
+
227
+ # case FFI_SYSV_TYPE_SMALL_STRUCT + 4. Four byte struct.
228
+ lwz %r3,112+0(%r1)
229
+ mtlr %r0
230
+ addi %r1,%r1,144
231
+ blr
232
+
233
+ # case FFI_SYSV_TYPE_SMALL_STRUCT + 5. Five byte struct.
234
+ lwz %r3,112+0(%r1)
235
+ lwz %r4,112+4(%r1)
236
+ li %r5,24
237
+ b .Lstruct567
238
+
239
+ # case FFI_SYSV_TYPE_SMALL_STRUCT + 6. Six byte struct.
240
+ lwz %r3,112+0(%r1)
241
+ lwz %r4,112+4(%r1)
242
+ li %r5,16
243
+ b .Lstruct567
244
+
245
+ # case FFI_SYSV_TYPE_SMALL_STRUCT + 7. Seven byte struct.
246
+ lwz %r3,112+0(%r1)
247
+ lwz %r4,112+4(%r1)
248
+ li %r5,8
249
+ b .Lstruct567
250
+
251
+ # case FFI_SYSV_TYPE_SMALL_STRUCT + 8. Eight byte struct.
252
+ lwz %r3,112+0(%r1)
253
+ lwz %r4,112+4(%r1)
254
+ mtlr %r0
255
+ b .Lfinish
256
+
257
+ .Lstruct567:
258
+ subfic %r6,%r5,32
259
+ srw %r4,%r4,%r5
260
+ slw %r6,%r3,%r6
261
+ srw %r3,%r3,%r5
262
+ or %r4,%r6,%r4
263
+ mtlr %r0
264
+ addi %r1,%r1,144
265
+ blr
266
+
267
+ .Luint128:
268
+ lwz %r6,112+12(%r1)
269
+ mtlr %r0
270
+ addi %r1,%r1,144
271
+ blr
272
+
273
+ END(ffi_closure_SYSV)
274
+
275
+ .section ".eh_frame",EH_FRAME_FLAGS,@progbits
276
+ .Lframe1:
277
+ .4byte .LECIE1-.LSCIE1 # Length of Common Information Entry
278
+ .LSCIE1:
279
+ .4byte 0x0 # CIE Identifier Tag
280
+ .byte 0x1 # CIE Version
281
+ #if defined _RELOCATABLE || defined __PIC__
282
+ .ascii "zR\0" # CIE Augmentation
283
+ #else
284
+ .ascii "\0" # CIE Augmentation
285
+ #endif
286
+ .uleb128 0x1 # CIE Code Alignment Factor
287
+ .sleb128 -4 # CIE Data Alignment Factor
288
+ .byte 0x41 # CIE RA Column
289
+ #if defined _RELOCATABLE || defined __PIC__
290
+ .uleb128 0x1 # Augmentation size
291
+ .byte 0x1b # FDE Encoding (pcrel sdata4)
292
+ #endif
293
+ .byte 0xc # DW_CFA_def_cfa
294
+ .uleb128 0x1
295
+ .uleb128 0x0
296
+ .align 2
297
+ .LECIE1:
298
+ .LSFDE1:
299
+ .4byte .LEFDE1-.LASFDE1 # FDE Length
300
+ .LASFDE1:
301
+ .4byte .LASFDE1-.Lframe1 # FDE CIE offset
302
+ #if defined _RELOCATABLE || defined __PIC__
303
+ .4byte .LFB1-. # FDE initial location
304
+ #else
305
+ .4byte .LFB1 # FDE initial location
306
+ #endif
307
+ .4byte .LFE1-.LFB1 # FDE address range
308
+ #if defined _RELOCATABLE || defined __PIC__
309
+ .uleb128 0x0 # Augmentation size
310
+ #endif
311
+ .byte 0x4 # DW_CFA_advance_loc4
312
+ .4byte .LCFI0-.LFB1
313
+ .byte 0xe # DW_CFA_def_cfa_offset
314
+ .uleb128 144
315
+ .byte 0x4 # DW_CFA_advance_loc4
316
+ .4byte .LCFI1-.LCFI0
317
+ .byte 0x11 # DW_CFA_offset_extended_sf
318
+ .uleb128 0x41
319
+ .sleb128 -1
320
+ .align 2
321
+ .LEFDE1:
322
+
323
+ #endif
324
+
325
+ #if defined __ELF__ && defined __linux__
326
+ .section .note.GNU-stack,"",@progbits
327
+ #endif
@@ -0,0 +1,230 @@
1
+ /* -----------------------------------------------------------------------
2
+ sysv.S - Copyright (c) 1998 Geoffrey Keating
3
+ Copyright (C) 2007 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,
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
+ #include <powerpc/asm.h>
32
+
33
+ #ifndef __powerpc64__
34
+ .globl ffi_prep_args_SYSV
35
+ ENTRY(ffi_call_SYSV)
36
+ .LFB1:
37
+ /* Save the old stack pointer as AP. */
38
+ mr %r8,%r1
39
+
40
+ .LCFI0:
41
+ /* Allocate the stack space we need. */
42
+ stwux %r1,%r1,%r4
43
+ /* Save registers we use. */
44
+ mflr %r9
45
+ stw %r28,-16(%r8)
46
+ .LCFI1:
47
+ stw %r29,-12(%r8)
48
+ .LCFI2:
49
+ stw %r30, -8(%r8)
50
+ .LCFI3:
51
+ stw %r31, -4(%r8)
52
+ .LCFI4:
53
+ stw %r9, 4(%r8)
54
+ .LCFI5:
55
+
56
+ /* Save arguments over call... */
57
+ mr %r31,%r5 /* flags, */
58
+ mr %r30,%r6 /* rvalue, */
59
+ mr %r29,%r7 /* function address, */
60
+ mr %r28,%r8 /* our AP. */
61
+ .LCFI6:
62
+
63
+ /* Call ffi_prep_args_SYSV. */
64
+ mr %r4,%r1
65
+ bl ffi_prep_args_SYSV@local
66
+
67
+ /* Now do the call. */
68
+ /* Set up cr1 with bits 4-7 of the flags. */
69
+ mtcrf 0x40,%r31
70
+ /* Get the address to call into CTR. */
71
+ mtctr %r29
72
+ /* Load all those argument registers. */
73
+ lwz %r3,-16-(8*4)(%r28)
74
+ lwz %r4,-16-(7*4)(%r28)
75
+ lwz %r5,-16-(6*4)(%r28)
76
+ lwz %r6,-16-(5*4)(%r28)
77
+ bf- 5,1f
78
+ nop
79
+ lwz %r7,-16-(4*4)(%r28)
80
+ lwz %r8,-16-(3*4)(%r28)
81
+ lwz %r9,-16-(2*4)(%r28)
82
+ lwz %r10,-16-(1*4)(%r28)
83
+ nop
84
+ 1:
85
+
86
+ /* Load all the FP registers. */
87
+ bf- 6,2f
88
+ lfd %f1,-16-(8*4)-(8*8)(%r28)
89
+ lfd %f2,-16-(8*4)-(7*8)(%r28)
90
+ lfd %f3,-16-(8*4)-(6*8)(%r28)
91
+ lfd %f4,-16-(8*4)-(5*8)(%r28)
92
+ nop
93
+ lfd %f5,-16-(8*4)-(4*8)(%r28)
94
+ lfd %f6,-16-(8*4)-(3*8)(%r28)
95
+ lfd %f7,-16-(8*4)-(2*8)(%r28)
96
+ lfd %f8,-16-(8*4)-(1*8)(%r28)
97
+ 2:
98
+
99
+ /* Make the call. */
100
+ bctrl
101
+
102
+ /* Now, deal with the return value. */
103
+ mtcrf 0x01,%r31 /* cr7 */
104
+ bt- 31,L(small_struct_return_value)
105
+ bt- 30,L(done_return_value)
106
+ bt- 29,L(fp_return_value)
107
+ stw %r3,0(%r30)
108
+ bf+ 28,L(done_return_value)
109
+ stw %r4,4(%r30)
110
+ mtcrf 0x02,%r31 /* cr6 */
111
+ bf 27,L(done_return_value)
112
+ stw %r5,8(%r30)
113
+ stw %r6,12(%r30)
114
+ /* Fall through... */
115
+
116
+ L(done_return_value):
117
+ /* Restore the registers we used and return. */
118
+ lwz %r9, 4(%r28)
119
+ lwz %r31, -4(%r28)
120
+ mtlr %r9
121
+ lwz %r30, -8(%r28)
122
+ lwz %r29,-12(%r28)
123
+ lwz %r28,-16(%r28)
124
+ lwz %r1,0(%r1)
125
+ blr
126
+
127
+ L(fp_return_value):
128
+ bf 28,L(float_return_value)
129
+ stfd %f1,0(%r30)
130
+ mtcrf 0x02,%r31 /* cr6 */
131
+ bf 27,L(done_return_value)
132
+ stfd %f2,8(%r30)
133
+ b L(done_return_value)
134
+ L(float_return_value):
135
+ stfs %f1,0(%r30)
136
+ b L(done_return_value)
137
+
138
+ L(small_struct_return_value):
139
+ mtcrf 0x10,%r31 /* cr3 */
140
+ bt- 15,L(smst_one_register)
141
+ mtcrf 0x08,%r31 /* cr4 */
142
+ bt- 16,L(smst_two_register)
143
+ b L(done_return_value)
144
+
145
+ L(smst_one_register):
146
+ rlwinm %r5,%r31,5+23,32-5,31 /* Extract the value to shift. */
147
+ slw %r3,%r3,%r5
148
+ stw %r3,0(%r30)
149
+ b L(done_return_value)
150
+ L(smst_two_register):
151
+ rlwinm %r5,%r31,5+23,32-5,31 /* Extract the value to shift. */
152
+ cmpwi %r5,0
153
+ subfic %r9,%r5,32
154
+ slw %r29,%r3,%r5
155
+ srw %r9,%r4,%r9
156
+ beq- L(smst_8byte)
157
+ or %r3,%r9,%r29
158
+ slw %r4,%r4,%r5
159
+ L(smst_8byte):
160
+ stw %r3,0(%r30)
161
+ stw %r4,4(%r30)
162
+ b L(done_return_value)
163
+
164
+ .LFE1:
165
+ END(ffi_call_SYSV)
166
+
167
+ .section ".eh_frame",EH_FRAME_FLAGS,@progbits
168
+ .Lframe1:
169
+ .4byte .LECIE1-.LSCIE1 /* Length of Common Information Entry */
170
+ .LSCIE1:
171
+ .4byte 0x0 /* CIE Identifier Tag */
172
+ .byte 0x1 /* CIE Version */
173
+ #if defined _RELOCATABLE || defined __PIC__
174
+ .ascii "zR\0" /* CIE Augmentation */
175
+ #else
176
+ .ascii "\0" /* CIE Augmentation */
177
+ #endif
178
+ .uleb128 0x1 /* CIE Code Alignment Factor */
179
+ .sleb128 -4 /* CIE Data Alignment Factor */
180
+ .byte 0x41 /* CIE RA Column */
181
+ #if defined _RELOCATABLE || defined __PIC__
182
+ .uleb128 0x1 /* Augmentation size */
183
+ .byte 0x1b /* FDE Encoding (pcrel sdata4) */
184
+ #endif
185
+ .byte 0xc /* DW_CFA_def_cfa */
186
+ .uleb128 0x1
187
+ .uleb128 0x0
188
+ .align 2
189
+ .LECIE1:
190
+ .LSFDE1:
191
+ .4byte .LEFDE1-.LASFDE1 /* FDE Length */
192
+ .LASFDE1:
193
+ .4byte .LASFDE1-.Lframe1 /* FDE CIE offset */
194
+ #if defined _RELOCATABLE || defined __PIC__
195
+ .4byte .LFB1-. /* FDE initial location */
196
+ #else
197
+ .4byte .LFB1 /* FDE initial location */
198
+ #endif
199
+ .4byte .LFE1-.LFB1 /* FDE address range */
200
+ #if defined _RELOCATABLE || defined __PIC__
201
+ .uleb128 0x0 /* Augmentation size */
202
+ #endif
203
+ .byte 0x4 /* DW_CFA_advance_loc4 */
204
+ .4byte .LCFI0-.LFB1
205
+ .byte 0xd /* DW_CFA_def_cfa_register */
206
+ .uleb128 0x08
207
+ .byte 0x4 /* DW_CFA_advance_loc4 */
208
+ .4byte .LCFI5-.LCFI0
209
+ .byte 0x11 /* DW_CFA_offset_extended_sf */
210
+ .uleb128 0x41
211
+ .sleb128 -1
212
+ .byte 0x9f /* DW_CFA_offset, column 0x1f */
213
+ .uleb128 0x1
214
+ .byte 0x9e /* DW_CFA_offset, column 0x1e */
215
+ .uleb128 0x2
216
+ .byte 0x9d /* DW_CFA_offset, column 0x1d */
217
+ .uleb128 0x3
218
+ .byte 0x9c /* DW_CFA_offset, column 0x1c */
219
+ .uleb128 0x4
220
+ .byte 0x4 /* DW_CFA_advance_loc4 */
221
+ .4byte .LCFI6-.LCFI5
222
+ .byte 0xd /* DW_CFA_def_cfa_register */
223
+ .uleb128 0x1c
224
+ .align 2
225
+ .LEFDE1:
226
+ #endif
227
+
228
+ #if defined __ELF__ && defined __linux__
229
+ .section .note.GNU-stack,"",@progbits
230
+ #endif