ffi 1.11.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (542) hide show
  1. checksums.yaml +7 -0
  2. data/.appveyor.yml +27 -0
  3. data/.gitignore +25 -0
  4. data/.gitmodules +4 -0
  5. data/.travis.yml +42 -0
  6. data/.yardopts +5 -0
  7. data/CHANGELOG.md +147 -0
  8. data/COPYING +49 -0
  9. data/Gemfile +15 -0
  10. data/LICENSE +24 -0
  11. data/LICENSE.SPECS +22 -0
  12. data/README.md +115 -0
  13. data/Rakefile +196 -0
  14. data/ext/ffi_c/AbstractMemory.c +1109 -0
  15. data/ext/ffi_c/AbstractMemory.h +175 -0
  16. data/ext/ffi_c/ArrayType.c +162 -0
  17. data/ext/ffi_c/ArrayType.h +59 -0
  18. data/ext/ffi_c/Buffer.c +365 -0
  19. data/ext/ffi_c/Call.c +503 -0
  20. data/ext/ffi_c/Call.h +107 -0
  21. data/ext/ffi_c/ClosurePool.c +283 -0
  22. data/ext/ffi_c/ClosurePool.h +57 -0
  23. data/ext/ffi_c/DynamicLibrary.c +339 -0
  24. data/ext/ffi_c/DynamicLibrary.h +98 -0
  25. data/ext/ffi_c/Function.c +917 -0
  26. data/ext/ffi_c/Function.h +87 -0
  27. data/ext/ffi_c/FunctionInfo.c +271 -0
  28. data/ext/ffi_c/LastError.c +229 -0
  29. data/ext/ffi_c/LastError.h +47 -0
  30. data/ext/ffi_c/LongDouble.c +63 -0
  31. data/ext/ffi_c/LongDouble.h +51 -0
  32. data/ext/ffi_c/MappedType.c +168 -0
  33. data/ext/ffi_c/MappedType.h +59 -0
  34. data/ext/ffi_c/MemoryPointer.c +197 -0
  35. data/ext/ffi_c/MemoryPointer.h +53 -0
  36. data/ext/ffi_c/MethodHandle.c +358 -0
  37. data/ext/ffi_c/MethodHandle.h +55 -0
  38. data/ext/ffi_c/Platform.c +82 -0
  39. data/ext/ffi_c/Platform.h +45 -0
  40. data/ext/ffi_c/Pointer.c +508 -0
  41. data/ext/ffi_c/Pointer.h +63 -0
  42. data/ext/ffi_c/Struct.c +829 -0
  43. data/ext/ffi_c/Struct.h +106 -0
  44. data/ext/ffi_c/StructByValue.c +150 -0
  45. data/ext/ffi_c/StructByValue.h +55 -0
  46. data/ext/ffi_c/StructLayout.c +698 -0
  47. data/ext/ffi_c/Thread.c +137 -0
  48. data/ext/ffi_c/Thread.h +84 -0
  49. data/ext/ffi_c/Type.c +379 -0
  50. data/ext/ffi_c/Type.h +61 -0
  51. data/ext/ffi_c/Types.c +139 -0
  52. data/ext/ffi_c/Types.h +89 -0
  53. data/ext/ffi_c/Variadic.c +298 -0
  54. data/ext/ffi_c/compat.h +78 -0
  55. data/ext/ffi_c/extconf.rb +86 -0
  56. data/ext/ffi_c/ffi.c +93 -0
  57. data/ext/ffi_c/libffi.bsd.mk +40 -0
  58. data/ext/ffi_c/libffi.darwin.mk +105 -0
  59. data/ext/ffi_c/libffi.gnu.mk +32 -0
  60. data/ext/ffi_c/libffi.mk +18 -0
  61. data/ext/ffi_c/libffi.vc.mk +26 -0
  62. data/ext/ffi_c/libffi.vc64.mk +26 -0
  63. data/ext/ffi_c/libffi/.appveyor.yml +66 -0
  64. data/ext/ffi_c/libffi/.gitattributes +4 -0
  65. data/ext/ffi_c/libffi/.github/issue_template.md +10 -0
  66. data/ext/ffi_c/libffi/.gitignore +38 -0
  67. data/ext/ffi_c/libffi/.travis.yml +63 -0
  68. data/ext/ffi_c/libffi/.travis/ar-lib +270 -0
  69. data/ext/ffi_c/libffi/.travis/build-in-container.sh +22 -0
  70. data/ext/ffi_c/libffi/.travis/build.sh +110 -0
  71. data/ext/ffi_c/libffi/.travis/compile +351 -0
  72. data/ext/ffi_c/libffi/.travis/install.sh +43 -0
  73. data/ext/ffi_c/libffi/.travis/moxie-sim.exp +60 -0
  74. data/ext/ffi_c/libffi/.travis/site.exp +18 -0
  75. data/ext/ffi_c/libffi/ChangeLog.libffi +584 -0
  76. data/ext/ffi_c/libffi/ChangeLog.libffi-3.1 +6000 -0
  77. data/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
  78. data/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
  79. data/ext/ffi_c/libffi/LICENSE +21 -0
  80. data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +353 -0
  81. data/ext/ffi_c/libffi/Makefile.am +158 -0
  82. data/ext/ffi_c/libffi/README.md +470 -0
  83. data/ext/ffi_c/libffi/acinclude.m4 +479 -0
  84. data/ext/ffi_c/libffi/autogen.sh +2 -0
  85. data/ext/ffi_c/libffi/config.guess +1466 -0
  86. data/ext/ffi_c/libffi/config.sub +1836 -0
  87. data/ext/ffi_c/libffi/configure.ac +394 -0
  88. data/ext/ffi_c/libffi/configure.host +303 -0
  89. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +203 -0
  90. data/ext/ffi_c/libffi/include/Makefile.am +9 -0
  91. data/ext/ffi_c/libffi/include/ffi.h.in +515 -0
  92. data/ext/ffi_c/libffi/include/ffi_cfi.h +55 -0
  93. data/ext/ffi_c/libffi/include/ffi_common.h +153 -0
  94. data/ext/ffi_c/libffi/libffi.map.in +80 -0
  95. data/ext/ffi_c/libffi/libffi.pc.in +11 -0
  96. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +1043 -0
  97. data/ext/ffi_c/libffi/libtool-version +29 -0
  98. data/ext/ffi_c/libffi/m4/asmcfi.m4 +13 -0
  99. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +71 -0
  100. data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +194 -0
  101. data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +122 -0
  102. data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +74 -0
  103. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +87 -0
  104. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +70 -0
  105. data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +302 -0
  106. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +263 -0
  107. data/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +89 -0
  108. data/ext/ffi_c/libffi/m4/ax_require_defined.m4 +37 -0
  109. data/ext/ffi_c/libffi/make_sunver.pl +333 -0
  110. data/ext/ffi_c/libffi/man/Makefile.am +8 -0
  111. data/ext/ffi_c/libffi/man/ffi.3 +41 -0
  112. data/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
  113. data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +68 -0
  114. data/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +73 -0
  115. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
  116. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
  117. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
  118. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
  119. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
  120. data/ext/ffi_c/libffi/msvcc.sh +353 -0
  121. data/ext/ffi_c/libffi/src/aarch64/ffi.c +1009 -0
  122. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +92 -0
  123. data/ext/ffi_c/libffi/src/aarch64/internal.h +67 -0
  124. data/ext/ffi_c/libffi/src/aarch64/sysv.S +440 -0
  125. data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
  126. data/ext/ffi_c/libffi/src/alpha/ffi.c +521 -0
  127. data/ext/ffi_c/libffi/src/alpha/ffitarget.h +57 -0
  128. data/ext/ffi_c/libffi/src/alpha/internal.h +23 -0
  129. data/ext/ffi_c/libffi/src/alpha/osf.S +282 -0
  130. data/ext/ffi_c/libffi/src/arc/arcompact.S +135 -0
  131. data/ext/ffi_c/libffi/src/arc/ffi.c +266 -0
  132. data/ext/ffi_c/libffi/src/arc/ffitarget.h +53 -0
  133. data/ext/ffi_c/libffi/src/arm/ffi.c +854 -0
  134. data/ext/ffi_c/libffi/src/arm/ffitarget.h +89 -0
  135. data/ext/ffi_c/libffi/src/arm/internal.h +7 -0
  136. data/ext/ffi_c/libffi/src/arm/sysv.S +385 -0
  137. data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
  138. data/ext/ffi_c/libffi/src/avr32/ffi.c +423 -0
  139. data/ext/ffi_c/libffi/src/avr32/ffitarget.h +55 -0
  140. data/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
  141. data/ext/ffi_c/libffi/src/bfin/ffi.c +196 -0
  142. data/ext/ffi_c/libffi/src/bfin/ffitarget.h +43 -0
  143. data/ext/ffi_c/libffi/src/bfin/sysv.S +179 -0
  144. data/ext/ffi_c/libffi/src/closures.c +990 -0
  145. data/ext/ffi_c/libffi/src/cris/ffi.c +386 -0
  146. data/ext/ffi_c/libffi/src/cris/ffitarget.h +56 -0
  147. data/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
  148. data/ext/ffi_c/libffi/src/debug.c +64 -0
  149. data/ext/ffi_c/libffi/src/dlmalloc.c +5166 -0
  150. data/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
  151. data/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
  152. data/ext/ffi_c/libffi/src/frv/ffitarget.h +62 -0
  153. data/ext/ffi_c/libffi/src/ia64/ffi.c +604 -0
  154. data/ext/ffi_c/libffi/src/ia64/ffitarget.h +56 -0
  155. data/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
  156. data/ext/ffi_c/libffi/src/ia64/unix.S +567 -0
  157. data/ext/ffi_c/libffi/src/java_raw_api.c +374 -0
  158. data/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
  159. data/ext/ffi_c/libffi/src/m32r/ffitarget.h +53 -0
  160. data/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
  161. data/ext/ffi_c/libffi/src/m68k/ffi.c +362 -0
  162. data/ext/ffi_c/libffi/src/m68k/ffitarget.h +54 -0
  163. data/ext/ffi_c/libffi/src/m68k/sysv.S +357 -0
  164. data/ext/ffi_c/libffi/src/m88k/ffi.c +400 -0
  165. data/ext/ffi_c/libffi/src/m88k/ffitarget.h +49 -0
  166. data/ext/ffi_c/libffi/src/m88k/obsd.S +209 -0
  167. data/ext/ffi_c/libffi/src/metag/ffi.c +330 -0
  168. data/ext/ffi_c/libffi/src/metag/ffitarget.h +53 -0
  169. data/ext/ffi_c/libffi/src/metag/sysv.S +311 -0
  170. data/ext/ffi_c/libffi/src/microblaze/ffi.c +321 -0
  171. data/ext/ffi_c/libffi/src/microblaze/ffitarget.h +53 -0
  172. data/ext/ffi_c/libffi/src/microblaze/sysv.S +302 -0
  173. data/ext/ffi_c/libffi/src/mips/ffi.c +1130 -0
  174. data/ext/ffi_c/libffi/src/mips/ffitarget.h +244 -0
  175. data/ext/ffi_c/libffi/src/mips/n32.S +663 -0
  176. data/ext/ffi_c/libffi/src/mips/o32.S +502 -0
  177. data/ext/ffi_c/libffi/src/moxie/eabi.S +101 -0
  178. data/ext/ffi_c/libffi/src/moxie/ffi.c +285 -0
  179. data/ext/ffi_c/libffi/src/moxie/ffitarget.h +52 -0
  180. data/ext/ffi_c/libffi/src/nios2/ffi.c +304 -0
  181. data/ext/ffi_c/libffi/src/nios2/ffitarget.h +52 -0
  182. data/ext/ffi_c/libffi/src/nios2/sysv.S +136 -0
  183. data/ext/ffi_c/libffi/src/or1k/ffi.c +328 -0
  184. data/ext/ffi_c/libffi/src/or1k/ffitarget.h +58 -0
  185. data/ext/ffi_c/libffi/src/or1k/sysv.S +107 -0
  186. data/ext/ffi_c/libffi/src/pa/ffi.c +719 -0
  187. data/ext/ffi_c/libffi/src/pa/ffitarget.h +85 -0
  188. data/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
  189. data/ext/ffi_c/libffi/src/pa/linux.S +378 -0
  190. data/ext/ffi_c/libffi/src/powerpc/aix.S +566 -0
  191. data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +694 -0
  192. data/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
  193. data/ext/ffi_c/libffi/src/powerpc/darwin.S +378 -0
  194. data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +571 -0
  195. data/ext/ffi_c/libffi/src/powerpc/ffi.c +174 -0
  196. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1440 -0
  197. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1007 -0
  198. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +94 -0
  199. data/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +923 -0
  200. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +198 -0
  201. data/ext/ffi_c/libffi/src/powerpc/linux64.S +228 -0
  202. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +488 -0
  203. data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +397 -0
  204. data/ext/ffi_c/libffi/src/powerpc/sysv.S +175 -0
  205. data/ext/ffi_c/libffi/src/prep_cif.c +263 -0
  206. data/ext/ffi_c/libffi/src/raw_api.c +267 -0
  207. data/ext/ffi_c/libffi/src/riscv/ffi.c +481 -0
  208. data/ext/ffi_c/libffi/src/riscv/ffitarget.h +69 -0
  209. data/ext/ffi_c/libffi/src/riscv/sysv.S +293 -0
  210. data/ext/ffi_c/libffi/src/s390/ffi.c +756 -0
  211. data/ext/ffi_c/libffi/src/s390/ffitarget.h +70 -0
  212. data/ext/ffi_c/libffi/src/s390/internal.h +11 -0
  213. data/ext/ffi_c/libffi/src/s390/sysv.S +325 -0
  214. data/ext/ffi_c/libffi/src/sh/ffi.c +717 -0
  215. data/ext/ffi_c/libffi/src/sh/ffitarget.h +54 -0
  216. data/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
  217. data/ext/ffi_c/libffi/src/sh64/ffi.c +469 -0
  218. data/ext/ffi_c/libffi/src/sh64/ffitarget.h +58 -0
  219. data/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
  220. data/ext/ffi_c/libffi/src/sparc/ffi.c +468 -0
  221. data/ext/ffi_c/libffi/src/sparc/ffi64.c +608 -0
  222. data/ext/ffi_c/libffi/src/sparc/ffitarget.h +81 -0
  223. data/ext/ffi_c/libffi/src/sparc/internal.h +26 -0
  224. data/ext/ffi_c/libffi/src/sparc/v8.S +443 -0
  225. data/ext/ffi_c/libffi/src/sparc/v9.S +440 -0
  226. data/ext/ffi_c/libffi/src/tile/ffi.c +355 -0
  227. data/ext/ffi_c/libffi/src/tile/ffitarget.h +65 -0
  228. data/ext/ffi_c/libffi/src/tile/tile.S +360 -0
  229. data/ext/ffi_c/libffi/src/types.c +108 -0
  230. data/ext/ffi_c/libffi/src/vax/elfbsd.S +195 -0
  231. data/ext/ffi_c/libffi/src/vax/ffi.c +276 -0
  232. data/ext/ffi_c/libffi/src/vax/ffitarget.h +49 -0
  233. data/ext/ffi_c/libffi/src/x86/asmnames.h +30 -0
  234. data/ext/ffi_c/libffi/src/x86/ffi.c +761 -0
  235. data/ext/ffi_c/libffi/src/x86/ffi64.c +886 -0
  236. data/ext/ffi_c/libffi/src/x86/ffitarget.h +147 -0
  237. data/ext/ffi_c/libffi/src/x86/ffiw64.c +311 -0
  238. data/ext/ffi_c/libffi/src/x86/internal.h +29 -0
  239. data/ext/ffi_c/libffi/src/x86/internal64.h +22 -0
  240. data/ext/ffi_c/libffi/src/x86/sysv.S +1129 -0
  241. data/ext/ffi_c/libffi/src/x86/sysv_intel.S +995 -0
  242. data/ext/ffi_c/libffi/src/x86/unix64.S +566 -0
  243. data/ext/ffi_c/libffi/src/x86/win64.S +237 -0
  244. data/ext/ffi_c/libffi/src/x86/win64_intel.S +237 -0
  245. data/ext/ffi_c/libffi/src/xtensa/ffi.c +298 -0
  246. data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +53 -0
  247. data/ext/ffi_c/libffi/src/xtensa/sysv.S +258 -0
  248. data/ext/ffi_c/libffi/stamp-h.in +1 -0
  249. data/ext/ffi_c/libffi/testsuite/Makefile.am +119 -0
  250. data/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
  251. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +657 -0
  252. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +283 -0
  253. data/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
  254. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +28 -0
  255. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +78 -0
  256. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +50 -0
  257. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +58 -0
  258. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1745 -0
  259. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2885 -0
  260. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +743 -0
  261. data/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +46 -0
  262. data/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +46 -0
  263. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +43 -0
  264. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +89 -0
  265. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +81 -0
  266. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +81 -0
  267. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +82 -0
  268. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +89 -0
  269. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +92 -0
  270. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +90 -0
  271. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +95 -0
  272. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_simple.c +55 -0
  273. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +94 -0
  274. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +95 -0
  275. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +96 -0
  276. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +102 -0
  277. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +89 -0
  278. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +91 -0
  279. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +93 -0
  280. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +113 -0
  281. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +90 -0
  282. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +95 -0
  283. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +90 -0
  284. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +90 -0
  285. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3float.c +95 -0
  286. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +98 -0
  287. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +90 -0
  288. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +109 -0
  289. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +98 -0
  290. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +124 -0
  291. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +113 -0
  292. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +99 -0
  293. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +117 -0
  294. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +97 -0
  295. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +88 -0
  296. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +90 -0
  297. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +91 -0
  298. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +93 -0
  299. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +91 -0
  300. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +92 -0
  301. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +132 -0
  302. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +115 -0
  303. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +95 -0
  304. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +91 -0
  305. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +91 -0
  306. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +92 -0
  307. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +91 -0
  308. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +91 -0
  309. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +93 -0
  310. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +66 -0
  311. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +43 -0
  312. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +61 -0
  313. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +42 -0
  314. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +105 -0
  315. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +61 -0
  316. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_args.c +70 -0
  317. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c +55 -0
  318. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +74 -0
  319. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +74 -0
  320. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +86 -0
  321. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +91 -0
  322. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +74 -0
  323. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +86 -0
  324. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +74 -0
  325. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +142 -0
  326. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +44 -0
  327. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +42 -0
  328. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +42 -0
  329. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_struct_va1.c +114 -0
  330. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +42 -0
  331. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +44 -0
  332. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +43 -0
  333. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint_va.c +45 -0
  334. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulong_va.c +45 -0
  335. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +47 -0
  336. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +43 -0
  337. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +44 -0
  338. data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +36 -0
  339. data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +26 -0
  340. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +138 -0
  341. data/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
  342. data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +60 -0
  343. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +61 -0
  344. data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +74 -0
  345. data/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
  346. data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +107 -0
  347. data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +341 -0
  348. data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +59 -0
  349. data/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +57 -0
  350. data/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +70 -0
  351. data/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +78 -0
  352. data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +52 -0
  353. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +152 -0
  354. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +161 -0
  355. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +134 -0
  356. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct11.c +121 -0
  357. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +110 -0
  358. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +111 -0
  359. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +111 -0
  360. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +112 -0
  361. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +131 -0
  362. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +111 -0
  363. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +131 -0
  364. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +131 -0
  365. data/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +46 -0
  366. data/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +127 -0
  367. data/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +90 -0
  368. data/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
  369. data/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
  370. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +36 -0
  371. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
  372. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
  373. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
  374. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
  375. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
  376. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
  377. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
  378. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
  379. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +43 -0
  380. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
  381. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
  382. data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
  383. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
  384. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +145 -0
  385. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +148 -0
  386. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +124 -0
  387. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +125 -0
  388. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
  389. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
  390. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
  391. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
  392. data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +67 -0
  393. data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +57 -0
  394. data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
  395. data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +60 -0
  396. data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +64 -0
  397. data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +66 -0
  398. data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
  399. data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
  400. data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +81 -0
  401. data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +68 -0
  402. data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +70 -0
  403. data/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +61 -0
  404. data/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest.cc +117 -0
  405. data/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest_ffi_call.cc +54 -0
  406. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +196 -0
  407. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +121 -0
  408. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +123 -0
  409. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +125 -0
  410. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +91 -0
  411. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +10 -0
  412. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +10 -0
  413. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +10 -0
  414. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +42 -0
  415. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +10 -0
  416. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +10 -0
  417. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +10 -0
  418. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +71 -0
  419. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +10 -0
  420. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +10 -0
  421. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +10 -0
  422. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +80 -0
  423. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +10 -0
  424. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +16 -0
  425. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +10 -0
  426. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +36 -0
  427. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +51 -0
  428. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +7 -0
  429. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +7 -0
  430. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +7 -0
  431. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +10 -0
  432. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +10 -0
  433. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +86 -0
  434. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +10 -0
  435. data/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +1 -0
  436. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +78 -0
  437. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +10 -0
  438. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +10 -0
  439. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +10 -0
  440. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +37 -0
  441. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +41 -0
  442. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +10 -0
  443. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +10 -0
  444. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +10 -0
  445. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +44 -0
  446. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +10 -0
  447. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +10 -0
  448. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +10 -0
  449. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +10 -0
  450. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +10 -0
  451. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +10 -0
  452. data/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +34 -0
  453. data/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +28 -0
  454. data/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
  455. data/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +36 -0
  456. data/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +19 -0
  457. data/ext/ffi_c/rbffi.h +55 -0
  458. data/ext/ffi_c/rbffi_endian.h +59 -0
  459. data/ext/ffi_c/win32/stdbool.h +8 -0
  460. data/ext/ffi_c/win32/stdint.h +201 -0
  461. data/ffi.gemspec +43 -0
  462. data/lib/ffi.rb +20 -0
  463. data/lib/ffi/autopointer.rb +203 -0
  464. data/lib/ffi/buffer.rb +4 -0
  465. data/lib/ffi/callback.rb +4 -0
  466. data/lib/ffi/data_converter.rb +67 -0
  467. data/lib/ffi/enum.rb +296 -0
  468. data/lib/ffi/errno.rb +43 -0
  469. data/lib/ffi/ffi.rb +45 -0
  470. data/lib/ffi/io.rb +62 -0
  471. data/lib/ffi/library.rb +588 -0
  472. data/lib/ffi/managedstruct.rb +84 -0
  473. data/lib/ffi/memorypointer.rb +1 -0
  474. data/lib/ffi/platform.rb +175 -0
  475. data/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
  476. data/lib/ffi/platform/aarch64-freebsd12/types.conf +128 -0
  477. data/lib/ffi/platform/aarch64-linux/types.conf +104 -0
  478. data/lib/ffi/platform/arm-freebsd/types.conf +152 -0
  479. data/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
  480. data/lib/ffi/platform/arm-linux/types.conf +104 -0
  481. data/lib/ffi/platform/i386-cygwin/types.conf +3 -0
  482. data/lib/ffi/platform/i386-darwin/types.conf +100 -0
  483. data/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  484. data/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
  485. data/lib/ffi/platform/i386-gnu/types.conf +107 -0
  486. data/lib/ffi/platform/i386-linux/types.conf +103 -0
  487. data/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  488. data/lib/ffi/platform/i386-openbsd/types.conf +128 -0
  489. data/lib/ffi/platform/i386-solaris/types.conf +122 -0
  490. data/lib/ffi/platform/i386-windows/types.conf +105 -0
  491. data/lib/ffi/platform/ia64-linux/types.conf +104 -0
  492. data/lib/ffi/platform/mips-linux/types.conf +102 -0
  493. data/lib/ffi/platform/mips64-linux/types.conf +104 -0
  494. data/lib/ffi/platform/mips64el-linux/types.conf +104 -0
  495. data/lib/ffi/platform/mipsel-linux/types.conf +102 -0
  496. data/lib/ffi/platform/mipsisa32r6-linux/types.conf +102 -0
  497. data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +102 -0
  498. data/lib/ffi/platform/mipsisa64r6-linux/types.conf +104 -0
  499. data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +104 -0
  500. data/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  501. data/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  502. data/lib/ffi/platform/powerpc-linux/types.conf +100 -0
  503. data/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
  504. data/lib/ffi/platform/s390-linux/types.conf +102 -0
  505. data/lib/ffi/platform/s390x-linux/types.conf +102 -0
  506. data/lib/ffi/platform/sparc-linux/types.conf +102 -0
  507. data/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  508. data/lib/ffi/platform/sparc64-linux/types.conf +102 -0
  509. data/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  510. data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
  511. data/lib/ffi/platform/x86_64-darwin/types.conf +126 -0
  512. data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +148 -0
  513. data/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
  514. data/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
  515. data/lib/ffi/platform/x86_64-linux/types.conf +111 -0
  516. data/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
  517. data/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
  518. data/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  519. data/lib/ffi/platform/x86_64-windows/types.conf +120 -0
  520. data/lib/ffi/pointer.rb +160 -0
  521. data/lib/ffi/struct.rb +311 -0
  522. data/lib/ffi/struct_by_reference.rb +72 -0
  523. data/lib/ffi/struct_layout.rb +96 -0
  524. data/lib/ffi/struct_layout_builder.rb +227 -0
  525. data/lib/ffi/tools/const_generator.rb +230 -0
  526. data/lib/ffi/tools/generator.rb +105 -0
  527. data/lib/ffi/tools/generator_task.rb +32 -0
  528. data/lib/ffi/tools/struct_generator.rb +194 -0
  529. data/lib/ffi/tools/types_generator.rb +135 -0
  530. data/lib/ffi/types.rb +194 -0
  531. data/lib/ffi/union.rb +43 -0
  532. data/lib/ffi/variadic.rb +78 -0
  533. data/lib/ffi/version.rb +3 -0
  534. data/samples/getlogin.rb +8 -0
  535. data/samples/getpid.rb +8 -0
  536. data/samples/gettimeofday.rb +18 -0
  537. data/samples/hello.rb +7 -0
  538. data/samples/inotify.rb +60 -0
  539. data/samples/pty.rb +76 -0
  540. data/samples/qsort.rb +21 -0
  541. data/samples/sample_helper.rb +6 -0
  542. metadata +677 -0
@@ -0,0 +1,263 @@
1
+ # ===========================================================================
2
+ # https://www.gnu.org/software/autoconf-archive/ax_gcc_archflag.html
3
+ # ===========================================================================
4
+ #
5
+ # SYNOPSIS
6
+ #
7
+ # AX_GCC_ARCHFLAG([PORTABLE?], [ACTION-SUCCESS], [ACTION-FAILURE])
8
+ #
9
+ # DESCRIPTION
10
+ #
11
+ # This macro tries to guess the "native" arch corresponding to the target
12
+ # architecture for use with gcc's -march=arch or -mtune=arch flags. If
13
+ # found, the cache variable $ax_cv_gcc_archflag is set to this flag and
14
+ # ACTION-SUCCESS is executed; otherwise $ax_cv_gcc_archflag is set to
15
+ # "unknown" and ACTION-FAILURE is executed. The default ACTION-SUCCESS is
16
+ # to add $ax_cv_gcc_archflag to the end of $CFLAGS.
17
+ #
18
+ # PORTABLE? should be either [yes] (default) or [no]. In the former case,
19
+ # the flag is set to -mtune (or equivalent) so that the architecture is
20
+ # only used for tuning, but the instruction set used is still portable. In
21
+ # the latter case, the flag is set to -march (or equivalent) so that
22
+ # architecture-specific instructions are enabled.
23
+ #
24
+ # The user can specify --with-gcc-arch=<arch> in order to override the
25
+ # macro's choice of architecture, or --without-gcc-arch to disable this.
26
+ #
27
+ # When cross-compiling, or if $CC is not gcc, then ACTION-FAILURE is
28
+ # called unless the user specified --with-gcc-arch manually.
29
+ #
30
+ # Requires macros: AX_CHECK_COMPILE_FLAG, AX_GCC_X86_CPUID
31
+ #
32
+ # (The main emphasis here is on recent CPUs, on the principle that doing
33
+ # high-performance computing on old hardware is uncommon.)
34
+ #
35
+ # LICENSE
36
+ #
37
+ # Copyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>
38
+ # Copyright (c) 2008 Matteo Frigo
39
+ # Copyright (c) 2014 Tsukasa Oi
40
+ # Copyright (c) 2017 Alexey Kopytov
41
+ #
42
+ # This program is free software: you can redistribute it and/or modify it
43
+ # under the terms of the GNU General Public License as published by the
44
+ # Free Software Foundation, either version 3 of the License, or (at your
45
+ # option) any later version.
46
+ #
47
+ # This program is distributed in the hope that it will be useful, but
48
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
49
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
50
+ # Public License for more details.
51
+ #
52
+ # You should have received a copy of the GNU General Public License along
53
+ # with this program. If not, see <https://www.gnu.org/licenses/>.
54
+ #
55
+ # As a special exception, the respective Autoconf Macro's copyright owner
56
+ # gives unlimited permission to copy, distribute and modify the configure
57
+ # scripts that are the output of Autoconf when processing the Macro. You
58
+ # need not follow the terms of the GNU General Public License when using
59
+ # or distributing such scripts, even though portions of the text of the
60
+ # Macro appear in them. The GNU General Public License (GPL) does govern
61
+ # all other use of the material that constitutes the Autoconf Macro.
62
+ #
63
+ # This special exception to the GPL applies to versions of the Autoconf
64
+ # Macro released by the Autoconf Archive. When you make and distribute a
65
+ # modified version of the Autoconf Macro, you may extend this special
66
+ # exception to the GPL to apply to your modified version as well.
67
+
68
+ #serial 20
69
+
70
+ AC_DEFUN([AX_GCC_ARCHFLAG],
71
+ [AC_REQUIRE([AC_PROG_CC])
72
+ AC_REQUIRE([AC_CANONICAL_HOST])
73
+ AC_REQUIRE([AC_PROG_SED])
74
+ AC_REQUIRE([AX_COMPILER_VENDOR])
75
+
76
+ AC_ARG_WITH(gcc-arch, [AS_HELP_STRING([--with-gcc-arch=<arch>], [use architecture <arch> for gcc -march/-mtune, instead of guessing])],
77
+ ax_gcc_arch=$withval, ax_gcc_arch=yes)
78
+
79
+ AC_MSG_CHECKING([for gcc architecture flag])
80
+ AC_MSG_RESULT([])
81
+ AC_CACHE_VAL(ax_cv_gcc_archflag,
82
+ [
83
+ ax_cv_gcc_archflag="unknown"
84
+
85
+ if test "$GCC" = yes; then
86
+
87
+ if test "x$ax_gcc_arch" = xyes; then
88
+ ax_gcc_arch=""
89
+ if test "$cross_compiling" = no; then
90
+ case $host_cpu in
91
+ i[[3456]]86*|x86_64*|amd64*) # use cpuid codes
92
+ AX_GCC_X86_CPUID(0)
93
+ AX_GCC_X86_CPUID(1)
94
+ case $ax_cv_gcc_x86_cpuid_0 in
95
+ *:756e6547:6c65746e:49656e69) # Intel
96
+ case $ax_cv_gcc_x86_cpuid_1 in
97
+ *5[[4578]]?:*:*:*) ax_gcc_arch="pentium-mmx pentium" ;;
98
+ *5[[123]]?:*:*:*) ax_gcc_arch=pentium ;;
99
+ *0?61?:*:*:*|?61?:*:*:*|61?:*:*:*) ax_gcc_arch=pentiumpro ;;
100
+ *0?6[[356]]?:*:*:*|?6[[356]]?:*:*:*|6[[356]]?:*:*:*) ax_gcc_arch="pentium2 pentiumpro" ;;
101
+ *0?6[[78ab]]?:*:*:*|?6[[78ab]]?:*:*:*|6[[78ab]]?:*:*:*) ax_gcc_arch="pentium3 pentiumpro" ;;
102
+ *0?6[[9d]]?:*:*:*|?6[[9d]]?:*:*:*|6[[9d]]?:*:*:*|*1?65?:*:*:*) ax_gcc_arch="pentium-m pentium3 pentiumpro" ;;
103
+ *0?6e?:*:*:*|?6e?:*:*:*|6e?:*:*:*) ax_gcc_arch="yonah pentium-m pentium3 pentiumpro" ;;
104
+ *0?6f?:*:*:*|?6f?:*:*:*|6f?:*:*:*|*1?66?:*:*:*) ax_gcc_arch="core2 pentium-m pentium3 pentiumpro" ;;
105
+ *1?6[[7d]]?:*:*:*) ax_gcc_arch="penryn core2 pentium-m pentium3 pentiumpro" ;;
106
+ *1?6[[aef]]?:*:*:*|*2?6e?:*:*:*) ax_gcc_arch="nehalem corei7 core2 pentium-m pentium3 pentiumpro" ;;
107
+ *2?6[[5cf]]?:*:*:*) ax_gcc_arch="westmere corei7 core2 pentium-m pentium3 pentiumpro" ;;
108
+ *2?6[[ad]]?:*:*:*) ax_gcc_arch="sandybridge corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
109
+ *3?6[[ae]]?:*:*:*) ax_gcc_arch="ivybridge core-avx-i corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
110
+ *3?6[[cf]]?:*:*:*|*4?6[[56]]?:*:*:*) ax_gcc_arch="haswell core-avx2 core-avx-i corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
111
+ *3?6d?:*:*:*) ax_gcc_arch="broadwell core-avx2 core-avx-i corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
112
+ *1?6c?:*:*:*|*2?6[[67]]?:*:*:*|*3?6[[56]]?:*:*:*) ax_gcc_arch="bonnell atom core2 pentium-m pentium3 pentiumpro" ;;
113
+ *3?67?:*:*:*|*[[45]]?6[[ad]]?:*:*:*) ax_gcc_arch="silvermont atom core2 pentium-m pentium3 pentiumpro" ;;
114
+ *000?f[[012]]?:*:*:*|?f[[012]]?:*:*:*|f[[012]]?:*:*:*) ax_gcc_arch="pentium4 pentiumpro" ;;
115
+ *000?f[[346]]?:*:*:*|?f[[346]]?:*:*:*|f[[346]]?:*:*:*) ax_gcc_arch="nocona prescott pentium4 pentiumpro" ;;
116
+ # fallback
117
+ *5??:*:*:*) ax_gcc_arch=pentium ;;
118
+ *??6??:*:*:*) ax_gcc_arch="core2 pentiumpro" ;;
119
+ *6??:*:*:*) ax_gcc_arch=pentiumpro ;;
120
+ *00??f??:*:*:*|??f??:*:*:*|?f??:*:*:*|f??:*:*:*) ax_gcc_arch="pentium4 pentiumpro" ;;
121
+ esac ;;
122
+ *:68747541:444d4163:69746e65) # AMD
123
+ case $ax_cv_gcc_x86_cpuid_1 in
124
+ *5[[67]]?:*:*:*) ax_gcc_arch=k6 ;;
125
+ *5[[8]]?:*:*:*) ax_gcc_arch="k6-2 k6" ;;
126
+ *5[[9d]]?:*:*:*) ax_gcc_arch="k6-3 k6" ;;
127
+ *6[[12]]?:*:*:*) ax_gcc_arch="athlon k7" ;;
128
+ *6[[34]]?:*:*:*) ax_gcc_arch="athlon-tbird k7" ;;
129
+ *6[[678a]]?:*:*:*) ax_gcc_arch="athlon-xp athlon-4 athlon k7" ;;
130
+ *000?f[[4578bcef]]?:*:*:*|?f[[4578bcef]]?:*:*:*|f[[4578bcef]]?:*:*:*|*001?f[[4578bcf]]?:*:*:*|1?f[[4578bcf]]?:*:*:*) ax_gcc_arch="athlon64 k8" ;;
131
+ *002?f[[13457bcf]]?:*:*:*|2?f[[13457bcf]]?:*:*:*|*004?f[[138bcf]]?:*:*:*|4?f[[138bcf]]?:*:*:*|*005?f[[df]]?:*:*:*|5?f[[df]]?:*:*:*|*006?f[[8bcf]]?:*:*:*|6?f[[8bcf]]?:*:*:*|*007?f[[cf]]?:*:*:*|7?f[[cf]]?:*:*:*|*00c?f1?:*:*:*|c?f1?:*:*:*|*020?f3?:*:*:*|20?f3?:*:*:*) ax_gcc_arch="athlon64-sse3 k8-sse3 athlon64 k8" ;;
132
+ *010?f[[245689a]]?:*:*:*|10?f[[245689a]]?:*:*:*|*030?f1?:*:*:*|30?f1?:*:*:*) ax_gcc_arch="barcelona amdfam10 k8" ;;
133
+ *050?f[[12]]?:*:*:*|50?f[[12]]?:*:*:*) ax_gcc_arch="btver1 amdfam10 k8" ;;
134
+ *060?f1?:*:*:*|60?f1?:*:*:*) ax_gcc_arch="bdver1 amdfam10 k8" ;;
135
+ *060?f2?:*:*:*|60?f2?:*:*:*|*061?f[[03]]?:*:*:*|61?f[[03]]?:*:*:*) ax_gcc_arch="bdver2 bdver1 amdfam10 k8" ;;
136
+ *063?f0?:*:*:*|63?f0?:*:*:*) ax_gcc_arch="bdver3 bdver2 bdver1 amdfam10 k8" ;;
137
+ *07[[03]]?f0?:*:*:*|7[[03]]?f0?:*:*:*) ax_gcc_arch="btver2 btver1 amdfam10 k8" ;;
138
+ # fallback
139
+ *0[[13]]??f??:*:*:*|[[13]]??f??:*:*:*) ax_gcc_arch="barcelona amdfam10 k8" ;;
140
+ *020?f??:*:*:*|20?f??:*:*:*) ax_gcc_arch="athlon64-sse3 k8-sse3 athlon64 k8" ;;
141
+ *05??f??:*:*:*|5??f??:*:*:*) ax_gcc_arch="btver1 amdfam10 k8" ;;
142
+ *060?f??:*:*:*|60?f??:*:*:*) ax_gcc_arch="bdver1 amdfam10 k8" ;;
143
+ *061?f??:*:*:*|61?f??:*:*:*) ax_gcc_arch="bdver2 bdver1 amdfam10 k8" ;;
144
+ *06??f??:*:*:*|6??f??:*:*:*) ax_gcc_arch="bdver3 bdver2 bdver1 amdfam10 k8" ;;
145
+ *070?f??:*:*:*|70?f??:*:*:*) ax_gcc_arch="btver2 btver1 amdfam10 k8" ;;
146
+ *???f??:*:*:*) ax_gcc_arch="amdfam10 k8" ;;
147
+ esac ;;
148
+ *:746e6543:736c7561:48727561) # IDT / VIA (Centaur)
149
+ case $ax_cv_gcc_x86_cpuid_1 in
150
+ *54?:*:*:*) ax_gcc_arch=winchip-c6 ;;
151
+ *5[[89]]?:*:*:*) ax_gcc_arch=winchip2 ;;
152
+ *66?:*:*:*) ax_gcc_arch=winchip2 ;;
153
+ *6[[78]]?:*:*:*) ax_gcc_arch=c3 ;;
154
+ *6[[9adf]]?:*:*:*) ax_gcc_arch="c3-2 c3" ;;
155
+ esac ;;
156
+ esac
157
+ if test x"$ax_gcc_arch" = x; then # fallback
158
+ case $host_cpu in
159
+ i586*) ax_gcc_arch=pentium ;;
160
+ i686*) ax_gcc_arch=pentiumpro ;;
161
+ esac
162
+ fi
163
+ ;;
164
+
165
+ sparc*)
166
+ AC_PATH_PROG([PRTDIAG], [prtdiag], [prtdiag], [$PATH:/usr/platform/`uname -i`/sbin/:/usr/platform/`uname -m`/sbin/])
167
+ cputype=`(((grep cpu /proc/cpuinfo | cut -d: -f2) ; ($PRTDIAG -v |grep -i sparc) ; grep -i cpu /var/run/dmesg.boot ) | head -n 1) 2> /dev/null`
168
+ cputype=`echo "$cputype" | tr -d ' -' | $SED 's/SPARCIIi/SPARCII/' |tr $as_cr_LETTERS $as_cr_letters`
169
+ case $cputype in
170
+ *ultrasparciv*) ax_gcc_arch="ultrasparc4 ultrasparc3 ultrasparc v9" ;;
171
+ *ultrasparciii*) ax_gcc_arch="ultrasparc3 ultrasparc v9" ;;
172
+ *ultrasparc*) ax_gcc_arch="ultrasparc v9" ;;
173
+ *supersparc*|*tms390z5[[05]]*) ax_gcc_arch="supersparc v8" ;;
174
+ *hypersparc*|*rt62[[056]]*) ax_gcc_arch="hypersparc v8" ;;
175
+ *cypress*) ax_gcc_arch=cypress ;;
176
+ esac ;;
177
+
178
+ alphaev5) ax_gcc_arch=ev5 ;;
179
+ alphaev56) ax_gcc_arch=ev56 ;;
180
+ alphapca56) ax_gcc_arch="pca56 ev56" ;;
181
+ alphapca57) ax_gcc_arch="pca57 pca56 ev56" ;;
182
+ alphaev6) ax_gcc_arch=ev6 ;;
183
+ alphaev67) ax_gcc_arch=ev67 ;;
184
+ alphaev68) ax_gcc_arch="ev68 ev67" ;;
185
+ alphaev69) ax_gcc_arch="ev69 ev68 ev67" ;;
186
+ alphaev7) ax_gcc_arch="ev7 ev69 ev68 ev67" ;;
187
+ alphaev79) ax_gcc_arch="ev79 ev7 ev69 ev68 ev67" ;;
188
+
189
+ powerpc*)
190
+ cputype=`((grep cpu /proc/cpuinfo | head -n 1 | cut -d: -f2 | cut -d, -f1 | $SED 's/ //g') ; /usr/bin/machine ; /bin/machine; grep CPU /var/run/dmesg.boot | head -n 1 | cut -d" " -f2) 2> /dev/null`
191
+ cputype=`echo $cputype | $SED -e 's/ppc//g;s/ *//g'`
192
+ case $cputype in
193
+ *750*) ax_gcc_arch="750 G3" ;;
194
+ *740[[0-9]]*) ax_gcc_arch="$cputype 7400 G4" ;;
195
+ *74[[4-5]][[0-9]]*) ax_gcc_arch="$cputype 7450 G4" ;;
196
+ *74[[0-9]][[0-9]]*) ax_gcc_arch="$cputype G4" ;;
197
+ *970*) ax_gcc_arch="970 G5 power4";;
198
+ *POWER4*|*power4*|*gq*) ax_gcc_arch="power4 970";;
199
+ *POWER5*|*power5*|*gr*|*gs*) ax_gcc_arch="power5 power4 970";;
200
+ 603ev|8240) ax_gcc_arch="$cputype 603e 603";;
201
+ *) ax_gcc_arch=$cputype ;;
202
+ esac
203
+ ax_gcc_arch="$ax_gcc_arch powerpc"
204
+ ;;
205
+ aarch64)
206
+ cpuimpl=`grep 'CPU implementer' /proc/cpuinfo 2> /dev/null | cut -d: -f2 | tr -d " " | head -n 1`
207
+ cpuarch=`grep 'CPU architecture' /proc/cpuinfo 2> /dev/null | cut -d: -f2 | tr -d " " | head -n 1`
208
+ cpuvar=`grep 'CPU variant' /proc/cpuinfo 2> /dev/null | cut -d: -f2 | tr -d " " | head -n 1`
209
+ case $cpuimpl in
210
+ 0x42) case $cpuarch in
211
+ 8) case $cpuvar in
212
+ 0x0) ax_gcc_arch="thunderx2t99 vulcan armv8.1-a armv8-a+lse armv8-a native" ;;
213
+ esac
214
+ ;;
215
+ esac
216
+ ;;
217
+ 0x43) case $cpuarch in
218
+ 8) case $cpuvar in
219
+ 0x0) ax_gcc_arch="thunderx armv8-a native" ;;
220
+ 0x1) ax_gcc_arch="thunderx+lse armv8.1-a armv8-a+lse armv8-a native" ;;
221
+ esac
222
+ ;;
223
+ esac
224
+ ;;
225
+ esac
226
+ ;;
227
+ esac
228
+ fi # not cross-compiling
229
+ fi # guess arch
230
+
231
+ if test "x$ax_gcc_arch" != x -a "x$ax_gcc_arch" != xno; then
232
+ if test "x[]m4_default([$1],yes)" = xyes; then # if we require portable code
233
+ flag_prefixes="-mtune="
234
+ if test "x$ax_cv_[]_AC_LANG_ABBREV[]_compiler_vendor" = xclang; then flag_prefixes="-march="; fi
235
+ # -mcpu=$arch and m$arch generate nonportable code on every arch except
236
+ # x86. And some other arches (e.g. Alpha) don't accept -mtune. Grrr.
237
+ case $host_cpu in i*86|x86_64*|amd64*) flag_prefixes="$flag_prefixes -mcpu= -m";; esac
238
+ else
239
+ flag_prefixes="-march= -mcpu= -m"
240
+ fi
241
+ for flag_prefix in $flag_prefixes; do
242
+ for arch in $ax_gcc_arch; do
243
+ flag="$flag_prefix$arch"
244
+ AX_CHECK_COMPILE_FLAG($flag, [if test "x$ax_cv_[]_AC_LANG_ABBREV[]_compiler_vendor" = xclang; then
245
+ if test "x[]m4_default([$1],yes)" = xyes; then
246
+ if test "x$flag" = "x-march=$arch"; then flag=-mtune=$arch; fi
247
+ fi
248
+ fi; ax_cv_gcc_archflag=$flag; break])
249
+ done
250
+ test "x$ax_cv_gcc_archflag" = xunknown || break
251
+ done
252
+ fi
253
+
254
+ fi # $GCC=yes
255
+ ])
256
+ AC_MSG_CHECKING([for gcc architecture flag])
257
+ AC_MSG_RESULT($ax_cv_gcc_archflag)
258
+ if test "x$ax_cv_gcc_archflag" = xunknown; then
259
+ m4_default([$3],:)
260
+ else
261
+ m4_default([$2], [CFLAGS="$CFLAGS $ax_cv_gcc_archflag"])
262
+ fi
263
+ ])
@@ -0,0 +1,89 @@
1
+ # ===========================================================================
2
+ # https://www.gnu.org/software/autoconf-archive/ax_gcc_x86_cpuid.html
3
+ # ===========================================================================
4
+ #
5
+ # SYNOPSIS
6
+ #
7
+ # AX_GCC_X86_CPUID(OP)
8
+ # AX_GCC_X86_CPUID_COUNT(OP, COUNT)
9
+ #
10
+ # DESCRIPTION
11
+ #
12
+ # On Pentium and later x86 processors, with gcc or a compiler that has a
13
+ # compatible syntax for inline assembly instructions, run a small program
14
+ # that executes the cpuid instruction with input OP. This can be used to
15
+ # detect the CPU type. AX_GCC_X86_CPUID_COUNT takes an additional COUNT
16
+ # parameter that gets passed into register ECX before calling cpuid.
17
+ #
18
+ # On output, the values of the eax, ebx, ecx, and edx registers are stored
19
+ # as hexadecimal strings as "eax:ebx:ecx:edx" in the cache variable
20
+ # ax_cv_gcc_x86_cpuid_OP.
21
+ #
22
+ # If the cpuid instruction fails (because you are running a
23
+ # cross-compiler, or because you are not using gcc, or because you are on
24
+ # a processor that doesn't have this instruction), ax_cv_gcc_x86_cpuid_OP
25
+ # is set to the string "unknown".
26
+ #
27
+ # This macro mainly exists to be used in AX_GCC_ARCHFLAG.
28
+ #
29
+ # LICENSE
30
+ #
31
+ # Copyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>
32
+ # Copyright (c) 2008 Matteo Frigo
33
+ # Copyright (c) 2015 Michael Petch <mpetch@capp-sysware.com>
34
+ #
35
+ # This program is free software: you can redistribute it and/or modify it
36
+ # under the terms of the GNU General Public License as published by the
37
+ # Free Software Foundation, either version 3 of the License, or (at your
38
+ # option) any later version.
39
+ #
40
+ # This program is distributed in the hope that it will be useful, but
41
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
42
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
43
+ # Public License for more details.
44
+ #
45
+ # You should have received a copy of the GNU General Public License along
46
+ # with this program. If not, see <https://www.gnu.org/licenses/>.
47
+ #
48
+ # As a special exception, the respective Autoconf Macro's copyright owner
49
+ # gives unlimited permission to copy, distribute and modify the configure
50
+ # scripts that are the output of Autoconf when processing the Macro. You
51
+ # need not follow the terms of the GNU General Public License when using
52
+ # or distributing such scripts, even though portions of the text of the
53
+ # Macro appear in them. The GNU General Public License (GPL) does govern
54
+ # all other use of the material that constitutes the Autoconf Macro.
55
+ #
56
+ # This special exception to the GPL applies to versions of the Autoconf
57
+ # Macro released by the Autoconf Archive. When you make and distribute a
58
+ # modified version of the Autoconf Macro, you may extend this special
59
+ # exception to the GPL to apply to your modified version as well.
60
+
61
+ #serial 10
62
+
63
+ AC_DEFUN([AX_GCC_X86_CPUID],
64
+ [AX_GCC_X86_CPUID_COUNT($1, 0)
65
+ ])
66
+
67
+ AC_DEFUN([AX_GCC_X86_CPUID_COUNT],
68
+ [AC_REQUIRE([AC_PROG_CC])
69
+ AC_LANG_PUSH([C])
70
+ AC_CACHE_CHECK(for x86 cpuid $1 output, ax_cv_gcc_x86_cpuid_$1,
71
+ [AC_RUN_IFELSE([AC_LANG_PROGRAM([#include <stdio.h>], [
72
+ int op = $1, level = $2, eax, ebx, ecx, edx;
73
+ FILE *f;
74
+ __asm__ __volatile__ ("xchg %%ebx, %1\n"
75
+ "cpuid\n"
76
+ "xchg %%ebx, %1\n"
77
+ : "=a" (eax), "=r" (ebx), "=c" (ecx), "=d" (edx)
78
+ : "a" (op), "2" (level));
79
+
80
+ f = fopen("conftest_cpuid", "w"); if (!f) return 1;
81
+ fprintf(f, "%x:%x:%x:%x\n", eax, ebx, ecx, edx);
82
+ fclose(f);
83
+ return 0;
84
+ ])],
85
+ [ax_cv_gcc_x86_cpuid_$1=`cat conftest_cpuid`; rm -f conftest_cpuid],
86
+ [ax_cv_gcc_x86_cpuid_$1=unknown; rm -f conftest_cpuid],
87
+ [ax_cv_gcc_x86_cpuid_$1=unknown])])
88
+ AC_LANG_POP([C])
89
+ ])
@@ -0,0 +1,37 @@
1
+ # ===========================================================================
2
+ # https://www.gnu.org/software/autoconf-archive/ax_require_defined.html
3
+ # ===========================================================================
4
+ #
5
+ # SYNOPSIS
6
+ #
7
+ # AX_REQUIRE_DEFINED(MACRO)
8
+ #
9
+ # DESCRIPTION
10
+ #
11
+ # AX_REQUIRE_DEFINED is a simple helper for making sure other macros have
12
+ # been defined and thus are available for use. This avoids random issues
13
+ # where a macro isn't expanded. Instead the configure script emits a
14
+ # non-fatal:
15
+ #
16
+ # ./configure: line 1673: AX_CFLAGS_WARN_ALL: command not found
17
+ #
18
+ # It's like AC_REQUIRE except it doesn't expand the required macro.
19
+ #
20
+ # Here's an example:
21
+ #
22
+ # AX_REQUIRE_DEFINED([AX_CHECK_LINK_FLAG])
23
+ #
24
+ # LICENSE
25
+ #
26
+ # Copyright (c) 2014 Mike Frysinger <vapier@gentoo.org>
27
+ #
28
+ # Copying and distribution of this file, with or without modification, are
29
+ # permitted in any medium without royalty provided the copyright notice
30
+ # and this notice are preserved. This file is offered as-is, without any
31
+ # warranty.
32
+
33
+ #serial 2
34
+
35
+ AC_DEFUN([AX_REQUIRE_DEFINED], [dnl
36
+ m4_ifndef([$1], [m4_fatal([macro ]$1[ is not defined; is a m4 file missing?])])
37
+ ])dnl AX_REQUIRE_DEFINED
@@ -0,0 +1,333 @@
1
+ #!/usr/bin/perl -w
2
+
3
+ # make_sunver.pl
4
+ #
5
+ # This script takes at least two arguments, a GNU style version script and
6
+ # a list of object and archive files, and generates a corresponding Sun
7
+ # style version script as follows:
8
+ #
9
+ # Each glob pattern, C++ mangled pattern or literal in the input script is
10
+ # matched against all global symbols in the input objects, emitting those
11
+ # that matched (or nothing if no match was found).
12
+ # A comment with the original pattern and its type is left in the output
13
+ # file to make it easy to understand the matches.
14
+ #
15
+ # It uses elfdump when present (native), GNU readelf otherwise.
16
+ # It depends on the GNU version of c++filt, since it must understand the
17
+ # GNU mangling style.
18
+
19
+ use FileHandle;
20
+ use IPC::Open2;
21
+
22
+ # Enforce C locale.
23
+ $ENV{'LC_ALL'} = "C";
24
+ $ENV{'LANG'} = "C";
25
+
26
+ # Input version script, GNU style.
27
+ my $symvers = shift;
28
+
29
+ ##########
30
+ # Get all the symbols from the library, match them, and add them to a hash.
31
+
32
+ my %sym_hash = ();
33
+
34
+ # List of objects and archives to process.
35
+ my @OBJECTS = ();
36
+
37
+ # List of shared objects to omit from processing.
38
+ my @SHAREDOBJS = ();
39
+
40
+ # Filter out those input archives that have corresponding shared objects to
41
+ # avoid adding all symbols matched in the archive to the output map.
42
+ foreach $file (@ARGV) {
43
+ if (($so = $file) =~ s/\.a$/.so/ && -e $so) {
44
+ printf STDERR "omitted $file -> $so\n";
45
+ push (@SHAREDOBJS, $so);
46
+ } else {
47
+ push (@OBJECTS, $file);
48
+ }
49
+ }
50
+
51
+ # We need to detect and ignore hidden symbols. Solaris nm can only detect
52
+ # this in the harder to parse default output format, and GNU nm not at all,
53
+ # so use elfdump -s in the native case and GNU readelf -s otherwise.
54
+ # GNU objdump -t cannot be used since it produces a variable number of
55
+ # columns.
56
+
57
+ # The path to elfdump.
58
+ my $elfdump = "/usr/ccs/bin/elfdump";
59
+
60
+ if (-f $elfdump) {
61
+ open ELFDUMP,$elfdump.' -s '.(join ' ',@OBJECTS).'|' or die $!;
62
+ my $skip_arsym = 0;
63
+
64
+ while (<ELFDUMP>) {
65
+ chomp;
66
+
67
+ # Ignore empty lines.
68
+ if (/^$/) {
69
+ # End of archive symbol table, stop skipping.
70
+ $skip_arsym = 0 if $skip_arsym;
71
+ next;
72
+ }
73
+
74
+ # Keep skipping until end of archive symbol table.
75
+ next if ($skip_arsym);
76
+
77
+ # Ignore object name header for individual objects and archives.
78
+ next if (/:$/);
79
+
80
+ # Ignore table header lines.
81
+ next if (/^Symbol Table Section:/);
82
+ next if (/index.*value.*size/);
83
+
84
+ # Start of archive symbol table: start skipping.
85
+ if (/^Symbol Table: \(archive/) {
86
+ $skip_arsym = 1;
87
+ next;
88
+ }
89
+
90
+ # Split table.
91
+ (undef, undef, undef, undef, $bind, $oth, undef, $shndx, $name) = split;
92
+
93
+ # Error out for unknown input.
94
+ die "unknown input line:\n$_" unless defined($bind);
95
+
96
+ # Ignore local symbols.
97
+ next if ($bind eq "LOCL");
98
+ # Ignore hidden symbols.
99
+ next if ($oth eq "H");
100
+ # Ignore undefined symbols.
101
+ next if ($shndx eq "UNDEF");
102
+ # Error out for unhandled cases.
103
+ if ($bind !~ /^(GLOB|WEAK)/ or $oth ne "D") {
104
+ die "unhandled symbol:\n$_";
105
+ }
106
+
107
+ # Remember symbol.
108
+ $sym_hash{$name}++;
109
+ }
110
+ close ELFDUMP or die "$elfdump error";
111
+ } else {
112
+ open READELF, 'readelf -s -W '.(join ' ',@OBJECTS).'|' or die $!;
113
+ # Process each symbol.
114
+ while (<READELF>) {
115
+ chomp;
116
+
117
+ # Ignore empty lines.
118
+ next if (/^$/);
119
+
120
+ # Ignore object name header.
121
+ next if (/^File: .*$/);
122
+
123
+ # Ignore table header lines.
124
+ next if (/^Symbol table.*contains.*:/);
125
+ next if (/Num:.*Value.*Size/);
126
+
127
+ # Split table.
128
+ (undef, undef, undef, undef, $bind, $vis, $ndx, $name) = split;
129
+
130
+ # Error out for unknown input.
131
+ die "unknown input line:\n$_" unless defined($bind);
132
+
133
+ # Ignore local symbols.
134
+ next if ($bind eq "LOCAL");
135
+ # Ignore hidden symbols.
136
+ next if ($vis eq "HIDDEN");
137
+ # Ignore undefined symbols.
138
+ next if ($ndx eq "UND");
139
+ # Error out for unhandled cases.
140
+ if ($bind !~ /^(GLOBAL|WEAK)/ or $vis ne "DEFAULT") {
141
+ die "unhandled symbol:\n$_";
142
+ }
143
+
144
+ # Remember symbol.
145
+ $sym_hash{$name}++;
146
+ }
147
+ close READELF or die "readelf error";
148
+ }
149
+
150
+ ##########
151
+ # The various types of glob patterns.
152
+ #
153
+ # A glob pattern that is to be applied to the demangled name: 'cxx'.
154
+ # A glob patterns that applies directly to the name in the .o files: 'glob'.
155
+ # This pattern is ignored; used for local variables (usually just '*'): 'ign'.
156
+
157
+ # The type of the current pattern.
158
+ my $glob = 'glob';
159
+
160
+ # We're currently inside `extern "C++"', which Sun ld doesn't understand.
161
+ my $in_extern = 0;
162
+
163
+ # The c++filt command to use. This *must* be GNU c++filt; the Sun Studio
164
+ # c++filt doesn't handle the GNU mangling style.
165
+ my $cxxfilt = $ENV{'CXXFILT'} || "c++filt";
166
+
167
+ # The current version name.
168
+ my $current_version = "";
169
+
170
+ # Was there any attempt to match a symbol to this version?
171
+ my $matches_attempted;
172
+
173
+ # The number of versions which matched this symbol.
174
+ my $matched_symbols;
175
+
176
+ open F,$symvers or die $!;
177
+
178
+ # Print information about generating this file
179
+ print "# This file was generated by make_sunver.pl. DO NOT EDIT!\n";
180
+ print "# It was generated by:\n";
181
+ printf "# %s %s %s\n", $0, $symvers, (join ' ',@ARGV);
182
+ printf "# Omitted archives with corresponding shared libraries: %s\n",
183
+ (join ' ', @SHAREDOBJS) if $#SHAREDOBJS >= 0;
184
+ print "#\n\n";
185
+
186
+ while (<F>) {
187
+ # Lines of the form '};'
188
+ if (/^([ \t]*)(\}[ \t]*;[ \t]*)$/) {
189
+ $glob = 'glob';
190
+ if ($in_extern) {
191
+ $in_extern--;
192
+ print "$1##$2\n";
193
+ } else {
194
+ print;
195
+ }
196
+ next;
197
+ }
198
+
199
+ # Lines of the form '} SOME_VERSION_NAME_1.0;'
200
+ if (/^[ \t]*\}[ \tA-Z0-9_.a-z]+;[ \t]*$/) {
201
+ $glob = 'glob';
202
+ # We tried to match symbols agains this version, but none matched.
203
+ # Emit dummy hidden symbol to avoid marking this version WEAK.
204
+ if ($matches_attempted && $matched_symbols == 0) {
205
+ print " hidden:\n";
206
+ print " .force_WEAK_off_$current_version = DATA S0x0 V0x0;\n";
207
+ }
208
+ print; next;
209
+ }
210
+
211
+ # Comment and blank lines
212
+ if (/^[ \t]*\#/) { print; next; }
213
+ if (/^[ \t]*$/) { print; next; }
214
+
215
+ # Lines of the form '{'
216
+ if (/^([ \t]*){$/) {
217
+ if ($in_extern) {
218
+ print "$1##{\n";
219
+ } else {
220
+ print;
221
+ }
222
+ next;
223
+ }
224
+
225
+ # Lines of the form 'SOME_VERSION_NAME_1.1 {'
226
+ if (/^([A-Z0-9_.]+)[ \t]+{$/) {
227
+ # Record version name.
228
+ $current_version = $1;
229
+ # Reset match attempts, #matched symbols for this version.
230
+ $matches_attempted = 0;
231
+ $matched_symbols = 0;
232
+ print;
233
+ next;
234
+ }
235
+
236
+ # Ignore 'global:'
237
+ if (/^[ \t]*global:$/) { print; next; }
238
+
239
+ # After 'local:', globs should be ignored, they won't be exported.
240
+ if (/^[ \t]*local:$/) {
241
+ $glob = 'ign';
242
+ print;
243
+ next;
244
+ }
245
+
246
+ # After 'extern "C++"', globs are C++ patterns
247
+ if (/^([ \t]*)(extern \"C\+\+\"[ \t]*)$/) {
248
+ $in_extern++;
249
+ $glob = 'cxx';
250
+ # Need to comment, Sun ld cannot handle this.
251
+ print "$1##$2\n"; next;
252
+ }
253
+
254
+ # Chomp newline now we're done with passing through the input file.
255
+ chomp;
256
+
257
+ # Catch globs. Note that '{}' is not allowed in globs by this script,
258
+ # so only '*' and '[]' are available.
259
+ if (/^([ \t]*)([^ \t;{}#]+);?[ \t]*$/) {
260
+ my $ws = $1;
261
+ my $ptn = $2;
262
+ # Turn the glob into a regex by replacing '*' with '.*', '?' with '.'.
263
+ # Keep $ptn so we can still print the original form.
264
+ ($pattern = $ptn) =~ s/\*/\.\*/g;
265
+ $pattern =~ s/\?/\./g;
266
+
267
+ if ($glob eq 'ign') {
268
+ # We're in a local: * section; just continue.
269
+ print "$_\n";
270
+ next;
271
+ }
272
+
273
+ # Print the glob commented for human readers.
274
+ print "$ws##$ptn ($glob)\n";
275
+ # We tried to match a symbol to this version.
276
+ $matches_attempted++;
277
+
278
+ if ($glob eq 'glob') {
279
+ my %ptn_syms = ();
280
+
281
+ # Match ptn against symbols in %sym_hash.
282
+ foreach my $sym (keys %sym_hash) {
283
+ # Maybe it matches one of the patterns based on the symbol in
284
+ # the .o file.
285
+ $ptn_syms{$sym}++ if ($sym =~ /^$pattern$/);
286
+ }
287
+
288
+ foreach my $sym (sort keys(%ptn_syms)) {
289
+ $matched_symbols++;
290
+ print "$ws$sym;\n";
291
+ }
292
+ } elsif ($glob eq 'cxx') {
293
+ my %dem_syms = ();
294
+
295
+ # Verify that we're actually using GNU c++filt. Other versions
296
+ # most likely cannot handle GNU style symbol mangling.
297
+ my $cxxout = `$cxxfilt --version 2>&1`;
298
+ $cxxout =~ m/GNU/ or die "$0 requires GNU c++filt to function";
299
+
300
+ # Talk to c++filt through a pair of file descriptors.
301
+ # Need to start a fresh instance per pattern, otherwise the
302
+ # process grows to 500+ MB.
303
+ my $pid = open2(*FILTIN, *FILTOUT, $cxxfilt) or die $!;
304
+
305
+ # Match ptn against symbols in %sym_hash.
306
+ foreach my $sym (keys %sym_hash) {
307
+ # No? Well, maybe its demangled form matches one of those
308
+ # patterns.
309
+ printf FILTOUT "%s\n",$sym;
310
+ my $dem = <FILTIN>;
311
+ chomp $dem;
312
+ $dem_syms{$sym}++ if ($dem =~ /^$pattern$/);
313
+ }
314
+
315
+ close FILTOUT or die "c++filt error";
316
+ close FILTIN or die "c++filt error";
317
+ # Need to wait for the c++filt process to avoid lots of zombies.
318
+ waitpid $pid, 0;
319
+
320
+ foreach my $sym (sort keys(%dem_syms)) {
321
+ $matched_symbols++;
322
+ print "$ws$sym;\n";
323
+ }
324
+ } else {
325
+ # No? Well, then ignore it.
326
+ }
327
+ next;
328
+ }
329
+ # Important sanity check. This script can't handle lots of formats
330
+ # that GNU ld can, so be sure to error out if one is seen!
331
+ die "strange line `$_'";
332
+ }
333
+ close F;