ffi 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +22 -0
- data/.gitmodules +3 -0
- data/.travis.yml +43 -0
- data/.yardopts +5 -0
- data/CHANGELOG.md +98 -0
- data/COPYING +49 -0
- data/Gemfile +15 -0
- data/LICENSE +24 -0
- data/LICENSE.SPECS +22 -0
- data/README.md +112 -0
- data/Rakefile +268 -0
- data/appveyor.yml +22 -0
- data/ext/ffi_c/AbstractMemory.c +1109 -0
- data/ext/ffi_c/AbstractMemory.h +175 -0
- data/ext/ffi_c/ArrayType.c +162 -0
- data/ext/ffi_c/ArrayType.h +59 -0
- data/ext/ffi_c/Buffer.c +365 -0
- data/ext/ffi_c/Call.c +520 -0
- data/ext/ffi_c/Call.h +110 -0
- data/ext/ffi_c/ClosurePool.c +283 -0
- data/ext/ffi_c/ClosurePool.h +57 -0
- data/ext/ffi_c/DataConverter.c +91 -0
- data/ext/ffi_c/DynamicLibrary.c +339 -0
- data/ext/ffi_c/DynamicLibrary.h +98 -0
- data/ext/ffi_c/Function.c +1001 -0
- data/ext/ffi_c/Function.h +87 -0
- data/ext/ffi_c/FunctionInfo.c +271 -0
- data/ext/ffi_c/LastError.c +229 -0
- data/ext/ffi_c/LastError.h +47 -0
- data/ext/ffi_c/LongDouble.c +63 -0
- data/ext/ffi_c/LongDouble.h +51 -0
- data/ext/ffi_c/MappedType.c +168 -0
- data/ext/ffi_c/MappedType.h +59 -0
- data/ext/ffi_c/MemoryPointer.c +197 -0
- data/ext/ffi_c/MemoryPointer.h +53 -0
- data/ext/ffi_c/MethodHandle.c +358 -0
- data/ext/ffi_c/MethodHandle.h +55 -0
- data/ext/ffi_c/Platform.c +129 -0
- data/ext/ffi_c/Platform.h +45 -0
- data/ext/ffi_c/Pointer.c +508 -0
- data/ext/ffi_c/Pointer.h +63 -0
- data/ext/ffi_c/Struct.c +829 -0
- data/ext/ffi_c/Struct.h +106 -0
- data/ext/ffi_c/StructByReference.c +190 -0
- data/ext/ffi_c/StructByReference.h +50 -0
- data/ext/ffi_c/StructByValue.c +150 -0
- data/ext/ffi_c/StructByValue.h +55 -0
- data/ext/ffi_c/StructLayout.c +698 -0
- data/ext/ffi_c/Thread.c +353 -0
- data/ext/ffi_c/Thread.h +95 -0
- data/ext/ffi_c/Type.c +397 -0
- data/ext/ffi_c/Type.h +62 -0
- data/ext/ffi_c/Types.c +139 -0
- data/ext/ffi_c/Types.h +89 -0
- data/ext/ffi_c/Variadic.c +304 -0
- data/ext/ffi_c/compat.h +78 -0
- data/ext/ffi_c/extconf.rb +72 -0
- data/ext/ffi_c/ffi.c +98 -0
- data/ext/ffi_c/libffi.bsd.mk +40 -0
- data/ext/ffi_c/libffi.darwin.mk +105 -0
- data/ext/ffi_c/libffi.gnu.mk +32 -0
- data/ext/ffi_c/libffi.mk +18 -0
- data/ext/ffi_c/libffi.vc.mk +26 -0
- data/ext/ffi_c/libffi.vc64.mk +26 -0
- data/ext/ffi_c/libffi/.appveyor.yml +50 -0
- data/ext/ffi_c/libffi/.github/issue_template.md +10 -0
- data/ext/ffi_c/libffi/.gitignore +38 -0
- data/ext/ffi_c/libffi/.travis.yml +34 -0
- data/ext/ffi_c/libffi/.travis/ar-lib +270 -0
- data/ext/ffi_c/libffi/.travis/build.sh +34 -0
- data/ext/ffi_c/libffi/.travis/compile +351 -0
- data/ext/ffi_c/libffi/.travis/install.sh +22 -0
- data/ext/ffi_c/libffi/.travis/moxie-sim.exp +60 -0
- data/ext/ffi_c/libffi/.travis/site.exp +18 -0
- data/ext/ffi_c/libffi/ChangeLog.libffi +584 -0
- data/ext/ffi_c/libffi/ChangeLog.libffi-3.1 +6000 -0
- data/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
- data/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
- data/ext/ffi_c/libffi/LICENSE +21 -0
- data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +352 -0
- data/ext/ffi_c/libffi/Makefile.am +166 -0
- data/ext/ffi_c/libffi/README.md +461 -0
- data/ext/ffi_c/libffi/acinclude.m4 +479 -0
- data/ext/ffi_c/libffi/autogen.sh +2 -0
- data/ext/ffi_c/libffi/config.guess +1466 -0
- data/ext/ffi_c/libffi/config.sub +1836 -0
- data/ext/ffi_c/libffi/configure.ac +390 -0
- data/ext/ffi_c/libffi/configure.host +289 -0
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +203 -0
- data/ext/ffi_c/libffi/include/Makefile.am +9 -0
- data/ext/ffi_c/libffi/include/ffi.h.in +511 -0
- data/ext/ffi_c/libffi/include/ffi_cfi.h +55 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +149 -0
- data/ext/ffi_c/libffi/libffi.map.in +80 -0
- data/ext/ffi_c/libffi/libffi.pc.in +11 -0
- data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +1043 -0
- data/ext/ffi_c/libffi/libtool-version +29 -0
- data/ext/ffi_c/libffi/m4/asmcfi.m4 +13 -0
- data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +71 -0
- data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +194 -0
- data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +122 -0
- data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +74 -0
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +87 -0
- data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +70 -0
- data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +302 -0
- data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +263 -0
- data/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +89 -0
- data/ext/ffi_c/libffi/m4/ax_require_defined.m4 +37 -0
- data/ext/ffi_c/libffi/man/Makefile.am +8 -0
- data/ext/ffi_c/libffi/man/ffi.3 +41 -0
- data/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
- data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +68 -0
- data/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +73 -0
- data/ext/ffi_c/libffi/msvcc.sh +328 -0
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +941 -0
- data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +81 -0
- data/ext/ffi_c/libffi/src/aarch64/internal.h +67 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +438 -0
- data/ext/ffi_c/libffi/src/alpha/ffi.c +521 -0
- data/ext/ffi_c/libffi/src/alpha/ffitarget.h +57 -0
- data/ext/ffi_c/libffi/src/alpha/internal.h +23 -0
- data/ext/ffi_c/libffi/src/alpha/osf.S +282 -0
- data/ext/ffi_c/libffi/src/arc/arcompact.S +135 -0
- data/ext/ffi_c/libffi/src/arc/ffi.c +266 -0
- data/ext/ffi_c/libffi/src/arc/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +819 -0
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +82 -0
- data/ext/ffi_c/libffi/src/arm/internal.h +7 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +383 -0
- data/ext/ffi_c/libffi/src/avr32/ffi.c +423 -0
- data/ext/ffi_c/libffi/src/avr32/ffitarget.h +55 -0
- data/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
- data/ext/ffi_c/libffi/src/bfin/ffi.c +196 -0
- data/ext/ffi_c/libffi/src/bfin/ffitarget.h +43 -0
- data/ext/ffi_c/libffi/src/bfin/sysv.S +179 -0
- data/ext/ffi_c/libffi/src/closures.c +966 -0
- data/ext/ffi_c/libffi/src/cris/ffi.c +386 -0
- data/ext/ffi_c/libffi/src/cris/ffitarget.h +56 -0
- data/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
- data/ext/ffi_c/libffi/src/debug.c +64 -0
- data/ext/ffi_c/libffi/src/dlmalloc.c +5166 -0
- data/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
- data/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
- data/ext/ffi_c/libffi/src/frv/ffitarget.h +62 -0
- data/ext/ffi_c/libffi/src/ia64/ffi.c +604 -0
- data/ext/ffi_c/libffi/src/ia64/ffitarget.h +56 -0
- data/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
- data/ext/ffi_c/libffi/src/ia64/unix.S +567 -0
- data/ext/ffi_c/libffi/src/java_raw_api.c +374 -0
- data/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
- data/ext/ffi_c/libffi/src/m32r/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
- data/ext/ffi_c/libffi/src/m68k/ffi.c +362 -0
- data/ext/ffi_c/libffi/src/m68k/ffitarget.h +54 -0
- data/ext/ffi_c/libffi/src/m68k/sysv.S +357 -0
- data/ext/ffi_c/libffi/src/m88k/ffi.c +400 -0
- data/ext/ffi_c/libffi/src/m88k/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/m88k/obsd.S +209 -0
- data/ext/ffi_c/libffi/src/metag/ffi.c +330 -0
- data/ext/ffi_c/libffi/src/metag/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/metag/sysv.S +311 -0
- data/ext/ffi_c/libffi/src/microblaze/ffi.c +321 -0
- data/ext/ffi_c/libffi/src/microblaze/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/microblaze/sysv.S +302 -0
- data/ext/ffi_c/libffi/src/mips/ffi.c +1130 -0
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +244 -0
- data/ext/ffi_c/libffi/src/mips/n32.S +663 -0
- data/ext/ffi_c/libffi/src/mips/o32.S +502 -0
- data/ext/ffi_c/libffi/src/moxie/eabi.S +101 -0
- data/ext/ffi_c/libffi/src/moxie/ffi.c +285 -0
- data/ext/ffi_c/libffi/src/moxie/ffitarget.h +52 -0
- data/ext/ffi_c/libffi/src/nios2/ffi.c +304 -0
- data/ext/ffi_c/libffi/src/nios2/ffitarget.h +52 -0
- data/ext/ffi_c/libffi/src/nios2/sysv.S +136 -0
- data/ext/ffi_c/libffi/src/or1k/ffi.c +328 -0
- data/ext/ffi_c/libffi/src/or1k/ffitarget.h +58 -0
- data/ext/ffi_c/libffi/src/or1k/sysv.S +107 -0
- data/ext/ffi_c/libffi/src/pa/ffi.c +719 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +85 -0
- data/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
- data/ext/ffi_c/libffi/src/pa/linux.S +357 -0
- data/ext/ffi_c/libffi/src/powerpc/aix.S +566 -0
- data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +694 -0
- data/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
- data/ext/ffi_c/libffi/src/powerpc/darwin.S +378 -0
- data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +571 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +173 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1440 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +974 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +94 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +923 -0
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +198 -0
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +228 -0
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +488 -0
- data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +397 -0
- data/ext/ffi_c/libffi/src/powerpc/sysv.S +175 -0
- data/ext/ffi_c/libffi/src/prep_cif.c +261 -0
- data/ext/ffi_c/libffi/src/raw_api.c +267 -0
- data/ext/ffi_c/libffi/src/riscv/ffi.c +445 -0
- data/ext/ffi_c/libffi/src/riscv/ffitarget.h +68 -0
- data/ext/ffi_c/libffi/src/riscv/sysv.S +214 -0
- data/ext/ffi_c/libffi/src/s390/ffi.c +756 -0
- data/ext/ffi_c/libffi/src/s390/ffitarget.h +70 -0
- data/ext/ffi_c/libffi/src/s390/internal.h +11 -0
- data/ext/ffi_c/libffi/src/s390/sysv.S +325 -0
- data/ext/ffi_c/libffi/src/sh/ffi.c +717 -0
- data/ext/ffi_c/libffi/src/sh/ffitarget.h +54 -0
- data/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
- data/ext/ffi_c/libffi/src/sh64/ffi.c +469 -0
- data/ext/ffi_c/libffi/src/sh64/ffitarget.h +58 -0
- data/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
- data/ext/ffi_c/libffi/src/sparc/ffi.c +468 -0
- data/ext/ffi_c/libffi/src/sparc/ffi64.c +608 -0
- data/ext/ffi_c/libffi/src/sparc/ffitarget.h +81 -0
- data/ext/ffi_c/libffi/src/sparc/internal.h +26 -0
- data/ext/ffi_c/libffi/src/sparc/v8.S +443 -0
- data/ext/ffi_c/libffi/src/sparc/v9.S +440 -0
- data/ext/ffi_c/libffi/src/tile/ffi.c +355 -0
- data/ext/ffi_c/libffi/src/tile/ffitarget.h +65 -0
- data/ext/ffi_c/libffi/src/tile/tile.S +360 -0
- data/ext/ffi_c/libffi/src/types.c +108 -0
- data/ext/ffi_c/libffi/src/vax/elfbsd.S +195 -0
- data/ext/ffi_c/libffi/src/vax/ffi.c +276 -0
- data/ext/ffi_c/libffi/src/vax/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/x86/asmnames.h +30 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +753 -0
- data/ext/ffi_c/libffi/src/x86/ffi64.c +884 -0
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +147 -0
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +308 -0
- data/ext/ffi_c/libffi/src/x86/internal.h +29 -0
- data/ext/ffi_c/libffi/src/x86/internal64.h +22 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +1043 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +525 -0
- data/ext/ffi_c/libffi/src/x86/win64.S +232 -0
- data/ext/ffi_c/libffi/src/x86/win64_intel.S +237 -0
- data/ext/ffi_c/libffi/src/xtensa/ffi.c +298 -0
- data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/xtensa/sysv.S +258 -0
- data/ext/ffi_c/libffi/stamp-h.in +1 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.am +117 -0
- data/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +636 -0
- data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +283 -0
- data/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +28 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +50 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +58 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1745 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2885 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +743 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +81 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +81 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +82 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +92 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_simple.c +55 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +94 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +96 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +102 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +113 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3float.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +109 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +124 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +113 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +117 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +97 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +88 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +92 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +132 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +115 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +92 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +66 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +61 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +105 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +61 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_args.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c +55 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +142 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_struct_va1.c +114 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint_va.c +45 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulong_va.c +45 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +47 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +26 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +138 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +107 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +341 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +59 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +57 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +52 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +152 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +161 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +134 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct11.c +121 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +110 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +111 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +111 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +112 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +131 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +111 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +131 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +131 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +127 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +145 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +148 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +124 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +125 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +57 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +64 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +66 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +81 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +68 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +61 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest.cc +117 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest_ffi_call.cc +54 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +196 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +121 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +123 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +125 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +71 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +80 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +16 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +51 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +37 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +34 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +28 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +19 -0
- data/ext/ffi_c/rbffi.h +57 -0
- data/ext/ffi_c/rbffi_endian.h +59 -0
- data/ext/ffi_c/win32/stdbool.h +8 -0
- data/ext/ffi_c/win32/stdint.h +201 -0
- data/ffi.gemspec +36 -0
- data/lib/ffi.rb +20 -0
- data/lib/ffi/autopointer.rb +203 -0
- data/lib/ffi/buffer.rb +4 -0
- data/lib/ffi/callback.rb +4 -0
- data/lib/ffi/enum.rb +296 -0
- data/lib/ffi/errno.rb +43 -0
- data/lib/ffi/ffi.rb +44 -0
- data/lib/ffi/io.rb +62 -0
- data/lib/ffi/library.rb +588 -0
- data/lib/ffi/managedstruct.rb +84 -0
- data/lib/ffi/memorypointer.rb +1 -0
- data/lib/ffi/platform.rb +170 -0
- data/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
- data/lib/ffi/platform/aarch64-freebsd12/types.conf +128 -0
- data/lib/ffi/platform/aarch64-linux/types.conf +104 -0
- data/lib/ffi/platform/arm-freebsd/types.conf +152 -0
- data/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
- data/lib/ffi/platform/arm-linux/types.conf +104 -0
- data/lib/ffi/platform/i386-cygwin/types.conf +3 -0
- data/lib/ffi/platform/i386-darwin/types.conf +100 -0
- data/lib/ffi/platform/i386-freebsd/types.conf +152 -0
- data/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
- data/lib/ffi/platform/i386-gnu/types.conf +107 -0
- data/lib/ffi/platform/i386-linux/types.conf +103 -0
- data/lib/ffi/platform/i386-netbsd/types.conf +126 -0
- data/lib/ffi/platform/i386-openbsd/types.conf +128 -0
- data/lib/ffi/platform/i386-solaris/types.conf +122 -0
- data/lib/ffi/platform/i386-windows/types.conf +105 -0
- data/lib/ffi/platform/ia64-linux/types.conf +104 -0
- data/lib/ffi/platform/mips-linux/types.conf +102 -0
- data/lib/ffi/platform/mips64-linux/types.conf +104 -0
- data/lib/ffi/platform/mips64el-linux/types.conf +104 -0
- data/lib/ffi/platform/mipsel-linux/types.conf +102 -0
- data/lib/ffi/platform/mipsisa32r6-linux/types.conf +102 -0
- data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +102 -0
- data/lib/ffi/platform/mipsisa64r6-linux/types.conf +104 -0
- data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +104 -0
- data/lib/ffi/platform/powerpc-aix/types.conf +180 -0
- data/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
- data/lib/ffi/platform/powerpc-linux/types.conf +100 -0
- data/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
- data/lib/ffi/platform/s390-linux/types.conf +102 -0
- data/lib/ffi/platform/s390x-linux/types.conf +102 -0
- data/lib/ffi/platform/sparc-linux/types.conf +102 -0
- data/lib/ffi/platform/sparc-solaris/types.conf +128 -0
- data/lib/ffi/platform/sparc64-linux/types.conf +102 -0
- data/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
- data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
- data/lib/ffi/platform/x86_64-darwin/types.conf +126 -0
- data/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
- data/lib/ffi/platform/x86_64-freebsd12/types.conf +128 -0
- data/lib/ffi/platform/x86_64-linux/types.conf +102 -0
- data/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
- data/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
- data/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
- data/lib/ffi/platform/x86_64-windows/types.conf +120 -0
- data/lib/ffi/pointer.rb +160 -0
- data/lib/ffi/struct.rb +371 -0
- data/lib/ffi/struct_layout_builder.rb +227 -0
- data/lib/ffi/tools/const_generator.rb +229 -0
- data/lib/ffi/tools/generator.rb +60 -0
- data/lib/ffi/tools/generator_task.rb +36 -0
- data/lib/ffi/tools/struct_generator.rb +194 -0
- data/lib/ffi/tools/types_generator.rb +134 -0
- data/lib/ffi/types.rb +194 -0
- data/lib/ffi/union.rb +43 -0
- data/lib/ffi/variadic.rb +78 -0
- data/lib/ffi/version.rb +3 -0
- data/samples/getlogin.rb +8 -0
- data/samples/getpid.rb +8 -0
- data/samples/gettimeofday.rb +18 -0
- data/samples/hello.rb +7 -0
- data/samples/inotify.rb +60 -0
- data/samples/pty.rb +76 -0
- data/samples/qsort.rb +21 -0
- data/samples/sample_helper.rb +6 -0
- metadata +658 -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,41 @@
|
|
|
1
|
+
.Dd February 15, 2008
|
|
2
|
+
.Dt FFI 3
|
|
3
|
+
.Sh NAME
|
|
4
|
+
.Nm FFI
|
|
5
|
+
.Nd Foreign Function Interface
|
|
6
|
+
.Sh LIBRARY
|
|
7
|
+
libffi, -lffi
|
|
8
|
+
.Sh SYNOPSIS
|
|
9
|
+
.In ffi.h
|
|
10
|
+
.Ft ffi_status
|
|
11
|
+
.Fo ffi_prep_cif
|
|
12
|
+
.Fa "ffi_cif *cif"
|
|
13
|
+
.Fa "ffi_abi abi"
|
|
14
|
+
.Fa "unsigned int nargs"
|
|
15
|
+
.Fa "ffi_type *rtype"
|
|
16
|
+
.Fa "ffi_type **atypes"
|
|
17
|
+
.Fc
|
|
18
|
+
.Ft void
|
|
19
|
+
.Fo ffi_prep_cif_var
|
|
20
|
+
.Fa "ffi_cif *cif"
|
|
21
|
+
.Fa "ffi_abi abi"
|
|
22
|
+
.Fa "unsigned int nfixedargs"
|
|
23
|
+
.Fa "unsigned int ntotalargs"
|
|
24
|
+
.Fa "ffi_type *rtype"
|
|
25
|
+
.Fa "ffi_type **atypes"
|
|
26
|
+
.Fc
|
|
27
|
+
.Ft void
|
|
28
|
+
.Fo ffi_call
|
|
29
|
+
.Fa "ffi_cif *cif"
|
|
30
|
+
.Fa "void (*fn)(void)"
|
|
31
|
+
.Fa "void *rvalue"
|
|
32
|
+
.Fa "void **avalue"
|
|
33
|
+
.Fc
|
|
34
|
+
.Sh DESCRIPTION
|
|
35
|
+
The foreign function interface provides a mechanism by which a function can
|
|
36
|
+
generate a call to another function at runtime without requiring knowledge of
|
|
37
|
+
the called function's interface at compile time.
|
|
38
|
+
.Sh SEE ALSO
|
|
39
|
+
.Xr ffi_prep_cif 3 ,
|
|
40
|
+
.Xr ffi_prep_cif_var 3 ,
|
|
41
|
+
.Xr ffi_call 3
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
.Dd February 15, 2008
|
|
2
|
+
.Dt ffi_call 3
|
|
3
|
+
.Sh NAME
|
|
4
|
+
.Nm ffi_call
|
|
5
|
+
.Nd Invoke a foreign function.
|
|
6
|
+
.Sh SYNOPSIS
|
|
7
|
+
.In ffi.h
|
|
8
|
+
.Ft void
|
|
9
|
+
.Fo ffi_call
|
|
10
|
+
.Fa "ffi_cif *cif"
|
|
11
|
+
.Fa "void (*fn)(void)"
|
|
12
|
+
.Fa "void *rvalue"
|
|
13
|
+
.Fa "void **avalue"
|
|
14
|
+
.Fc
|
|
15
|
+
.Sh DESCRIPTION
|
|
16
|
+
The
|
|
17
|
+
.Nm ffi_call
|
|
18
|
+
function provides a simple mechanism for invoking a function without
|
|
19
|
+
requiring knowledge of the function's interface at compile time.
|
|
20
|
+
.Fa fn
|
|
21
|
+
is called with the values retrieved from the pointers in the
|
|
22
|
+
.Fa avalue
|
|
23
|
+
array. The return value from
|
|
24
|
+
.Fa fn
|
|
25
|
+
is placed in storage pointed to by
|
|
26
|
+
.Fa rvalue .
|
|
27
|
+
.Fa cif
|
|
28
|
+
contains information describing the data types, sizes and alignments of the
|
|
29
|
+
arguments to and return value from
|
|
30
|
+
.Fa fn ,
|
|
31
|
+
and must be initialized with
|
|
32
|
+
.Nm ffi_prep_cif
|
|
33
|
+
before it is used with
|
|
34
|
+
.Nm ffi_call .
|
|
35
|
+
.Pp
|
|
36
|
+
.Fa rvalue
|
|
37
|
+
must point to storage that is sizeof(ffi_arg) or larger for non-floating point
|
|
38
|
+
types. For smaller-sized return value types, the
|
|
39
|
+
.Nm ffi_arg
|
|
40
|
+
or
|
|
41
|
+
.Nm ffi_sarg
|
|
42
|
+
integral type must be used to hold
|
|
43
|
+
the return value.
|
|
44
|
+
.Sh EXAMPLES
|
|
45
|
+
.Bd -literal
|
|
46
|
+
#include <ffi.h>
|
|
47
|
+
#include <stdio.h>
|
|
48
|
+
|
|
49
|
+
unsigned char
|
|
50
|
+
foo(unsigned int, float);
|
|
51
|
+
|
|
52
|
+
int
|
|
53
|
+
main(int argc, const char **argv)
|
|
54
|
+
{
|
|
55
|
+
ffi_cif cif;
|
|
56
|
+
ffi_type *arg_types[2];
|
|
57
|
+
void *arg_values[2];
|
|
58
|
+
ffi_status status;
|
|
59
|
+
|
|
60
|
+
// Because the return value from foo() is smaller than sizeof(long), it
|
|
61
|
+
// must be passed as ffi_arg or ffi_sarg.
|
|
62
|
+
ffi_arg result;
|
|
63
|
+
|
|
64
|
+
// Specify the data type of each argument. Available types are defined
|
|
65
|
+
// in <ffi/ffi.h>.
|
|
66
|
+
arg_types[0] = &ffi_type_uint;
|
|
67
|
+
arg_types[1] = &ffi_type_float;
|
|
68
|
+
|
|
69
|
+
// Prepare the ffi_cif structure.
|
|
70
|
+
if ((status = ffi_prep_cif(&cif, FFI_DEFAULT_ABI,
|
|
71
|
+
2, &ffi_type_uint8, arg_types)) != FFI_OK)
|
|
72
|
+
{
|
|
73
|
+
// Handle the ffi_status error.
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
// Specify the values of each argument.
|
|
77
|
+
unsigned int arg1 = 42;
|
|
78
|
+
float arg2 = 5.1;
|
|
79
|
+
|
|
80
|
+
arg_values[0] = &arg1;
|
|
81
|
+
arg_values[1] = &arg2;
|
|
82
|
+
|
|
83
|
+
// Invoke the function.
|
|
84
|
+
ffi_call(&cif, FFI_FN(foo), &result, arg_values);
|
|
85
|
+
|
|
86
|
+
// The ffi_arg 'result' now contains the unsigned char returned from foo(),
|
|
87
|
+
// which can be accessed by a typecast.
|
|
88
|
+
printf("result is %hhu", (unsigned char)result);
|
|
89
|
+
|
|
90
|
+
return 0;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// The target function.
|
|
94
|
+
unsigned char
|
|
95
|
+
foo(unsigned int x, float y)
|
|
96
|
+
{
|
|
97
|
+
unsigned char result = x - y;
|
|
98
|
+
return result;
|
|
99
|
+
}
|
|
100
|
+
.Ed
|
|
101
|
+
.Sh SEE ALSO
|
|
102
|
+
.Xr ffi 3 ,
|
|
103
|
+
.Xr ffi_prep_cif 3
|