ffi 1.11.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +25 -0
- data/.gitmodules +4 -0
- data/.travis.yml +42 -0
- data/.yardopts +5 -0
- data/CHANGELOG.md +131 -0
- data/COPYING +49 -0
- data/Gemfile +15 -0
- data/LICENSE +24 -0
- data/LICENSE.SPECS +22 -0
- data/README.md +115 -0
- data/Rakefile +195 -0
- data/appveyor.yml +27 -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 +503 -0
- data/ext/ffi_c/Call.h +107 -0
- data/ext/ffi_c/ClosurePool.c +283 -0
- data/ext/ffi_c/ClosurePool.h +57 -0
- data/ext/ffi_c/DynamicLibrary.c +339 -0
- data/ext/ffi_c/DynamicLibrary.h +98 -0
- data/ext/ffi_c/Function.c +917 -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 +82 -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/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 +137 -0
- data/ext/ffi_c/Thread.h +84 -0
- data/ext/ffi_c/Type.c +379 -0
- data/ext/ffi_c/Type.h +61 -0
- data/ext/ffi_c/Types.c +139 -0
- data/ext/ffi_c/Types.h +89 -0
- data/ext/ffi_c/Variadic.c +298 -0
- data/ext/ffi_c/compat.h +78 -0
- data/ext/ffi_c/extconf.rb +86 -0
- data/ext/ffi_c/ffi.c +93 -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 +394 -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 +481 -0
- data/ext/ffi_c/libffi/src/riscv/ffitarget.h +69 -0
- data/ext/ffi_c/libffi/src/riscv/sysv.S +293 -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 +754 -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 +1129 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +566 -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 +55 -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 +43 -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/data_converter.rb +67 -0
- data/lib/ffi/enum.rb +296 -0
- data/lib/ffi/errno.rb +43 -0
- data/lib/ffi/ffi.rb +45 -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 +172 -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 +311 -0
- data/lib/ffi/struct_by_reference.rb +72 -0
- data/lib/ffi/struct_layout.rb +96 -0
- data/lib/ffi/struct_layout_builder.rb +227 -0
- data/lib/ffi/tools/const_generator.rb +230 -0
- data/lib/ffi/tools/generator.rb +105 -0
- data/lib/ffi/tools/generator_task.rb +32 -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 +663 -0
@@ -0,0 +1,125 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
asm.h - Copyright (c) 1998 Geoffrey Keating
|
3
|
+
|
4
|
+
PowerPC Assembly glue.
|
5
|
+
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
7
|
+
a copy of this software and associated documentation files (the
|
8
|
+
``Software''), to deal in the Software without restriction, including
|
9
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
10
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
11
|
+
permit persons to whom the Software is furnished to do so, subject to
|
12
|
+
the following conditions:
|
13
|
+
|
14
|
+
The above copyright notice and this permission notice shall be included
|
15
|
+
in all copies or substantial portions of the Software.
|
16
|
+
|
17
|
+
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
18
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
19
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
20
|
+
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
21
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
22
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
23
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
24
|
+
----------------------------------------------------------------------- */
|
25
|
+
|
26
|
+
#define ASM_GLOBAL_DIRECTIVE .globl
|
27
|
+
|
28
|
+
|
29
|
+
#define C_SYMBOL_NAME(name) name
|
30
|
+
/* Macro for a label. */
|
31
|
+
#ifdef __STDC__
|
32
|
+
#define C_LABEL(name) name##:
|
33
|
+
#else
|
34
|
+
#define C_LABEL(name) name/**/:
|
35
|
+
#endif
|
36
|
+
|
37
|
+
/* This seems to always be the case on PPC. */
|
38
|
+
#define ALIGNARG(log2) log2
|
39
|
+
/* For ELF we need the `.type' directive to make shared libs work right. */
|
40
|
+
#define ASM_TYPE_DIRECTIVE(name,typearg) .type name,typearg;
|
41
|
+
#define ASM_SIZE_DIRECTIVE(name) .size name,.-name
|
42
|
+
|
43
|
+
/* If compiled for profiling, call `_mcount' at the start of each function. */
|
44
|
+
#ifdef PROF
|
45
|
+
/* The mcount code relies on the return address being on the stack
|
46
|
+
to locate our caller and so it can restore it; so store one just
|
47
|
+
for its benefit. */
|
48
|
+
#ifdef PIC
|
49
|
+
#define CALL_MCOUNT \
|
50
|
+
.pushsection; \
|
51
|
+
.section ".data"; \
|
52
|
+
.align ALIGNARG(2); \
|
53
|
+
0:.long 0; \
|
54
|
+
.previous; \
|
55
|
+
mflr %r0; \
|
56
|
+
stw %r0,4(%r1); \
|
57
|
+
bl _GLOBAL_OFFSET_TABLE_@local-4; \
|
58
|
+
mflr %r11; \
|
59
|
+
lwz %r0,0b@got(%r11); \
|
60
|
+
bl JUMPTARGET(_mcount);
|
61
|
+
#else /* PIC */
|
62
|
+
#define CALL_MCOUNT \
|
63
|
+
.section ".data"; \
|
64
|
+
.align ALIGNARG(2); \
|
65
|
+
0:.long 0; \
|
66
|
+
.previous; \
|
67
|
+
mflr %r0; \
|
68
|
+
lis %r11,0b@ha; \
|
69
|
+
stw %r0,4(%r1); \
|
70
|
+
addi %r0,%r11,0b@l; \
|
71
|
+
bl JUMPTARGET(_mcount);
|
72
|
+
#endif /* PIC */
|
73
|
+
#else /* PROF */
|
74
|
+
#define CALL_MCOUNT /* Do nothing. */
|
75
|
+
#endif /* PROF */
|
76
|
+
|
77
|
+
#define ENTRY(name) \
|
78
|
+
ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(name); \
|
79
|
+
ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),@function) \
|
80
|
+
.align ALIGNARG(2); \
|
81
|
+
C_LABEL(name) \
|
82
|
+
CALL_MCOUNT
|
83
|
+
|
84
|
+
#define EALIGN_W_0 /* No words to insert. */
|
85
|
+
#define EALIGN_W_1 nop
|
86
|
+
#define EALIGN_W_2 nop;nop
|
87
|
+
#define EALIGN_W_3 nop;nop;nop
|
88
|
+
#define EALIGN_W_4 EALIGN_W_3;nop
|
89
|
+
#define EALIGN_W_5 EALIGN_W_4;nop
|
90
|
+
#define EALIGN_W_6 EALIGN_W_5;nop
|
91
|
+
#define EALIGN_W_7 EALIGN_W_6;nop
|
92
|
+
|
93
|
+
/* EALIGN is like ENTRY, but does alignment to 'words'*4 bytes
|
94
|
+
past a 2^align boundary. */
|
95
|
+
#ifdef PROF
|
96
|
+
#define EFFI_ALIGN(name, alignt, words) \
|
97
|
+
ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(name); \
|
98
|
+
ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),@function) \
|
99
|
+
.align ALIGNARG(2); \
|
100
|
+
C_LABEL(name) \
|
101
|
+
CALL_MCOUNT \
|
102
|
+
b 0f; \
|
103
|
+
.align ALIGNARG(alignt); \
|
104
|
+
EALIGN_W_##words; \
|
105
|
+
0:
|
106
|
+
#else /* PROF */
|
107
|
+
#define EFFI_ALIGN(name, alignt, words) \
|
108
|
+
ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(name); \
|
109
|
+
ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),@function) \
|
110
|
+
.align ALIGNARG(alignt); \
|
111
|
+
EALIGN_W_##words; \
|
112
|
+
C_LABEL(name)
|
113
|
+
#endif
|
114
|
+
|
115
|
+
#define END(name) \
|
116
|
+
ASM_SIZE_DIRECTIVE(name)
|
117
|
+
|
118
|
+
#ifdef PIC
|
119
|
+
#define JUMPTARGET(name) name##@plt
|
120
|
+
#else
|
121
|
+
#define JUMPTARGET(name) name
|
122
|
+
#endif
|
123
|
+
|
124
|
+
/* Local labels stripped out by the linker. */
|
125
|
+
#define L(x) .L##x
|
@@ -0,0 +1,378 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
darwin.S - Copyright (c) 2000 John Hornkvist
|
3
|
+
Copyright (c) 2004, 2010 Free Software Foundation, Inc.
|
4
|
+
|
5
|
+
PowerPC Assembly glue.
|
6
|
+
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
8
|
+
a copy of this software and associated documentation files (the
|
9
|
+
``Software''), to deal in the Software without restriction, including
|
10
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
11
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
12
|
+
permit persons to whom the Software is furnished to do so, subject to
|
13
|
+
the following conditions:
|
14
|
+
|
15
|
+
The above copyright notice and this permission notice shall be included
|
16
|
+
in all copies or substantial portions of the Software.
|
17
|
+
|
18
|
+
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
19
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
20
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
21
|
+
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
22
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
23
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
24
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
25
|
+
----------------------------------------------------------------------- */
|
26
|
+
|
27
|
+
#define LIBFFI_ASM
|
28
|
+
#if defined(__ppc64__)
|
29
|
+
#define MODE_CHOICE(x, y) y
|
30
|
+
#else
|
31
|
+
#define MODE_CHOICE(x, y) x
|
32
|
+
#endif
|
33
|
+
|
34
|
+
#define machine_choice MODE_CHOICE(ppc7400,ppc64)
|
35
|
+
|
36
|
+
; Define some pseudo-opcodes for size-independent load & store of GPRs ...
|
37
|
+
#define lgu MODE_CHOICE(lwzu, ldu)
|
38
|
+
#define lg MODE_CHOICE(lwz,ld)
|
39
|
+
#define sg MODE_CHOICE(stw,std)
|
40
|
+
#define sgu MODE_CHOICE(stwu,stdu)
|
41
|
+
#define sgux MODE_CHOICE(stwux,stdux)
|
42
|
+
|
43
|
+
; ... and the size of GPRs and their storage indicator.
|
44
|
+
#define GPR_BYTES MODE_CHOICE(4,8)
|
45
|
+
#define LOG2_GPR_BYTES MODE_CHOICE(2,3) /* log2(GPR_BYTES) */
|
46
|
+
#define g_long MODE_CHOICE(long, quad) /* usage is ".g_long" */
|
47
|
+
|
48
|
+
; From the ABI doc: "Mac OS X ABI Function Call Guide" Version 2009-02-04.
|
49
|
+
#define LINKAGE_SIZE MODE_CHOICE(24,48)
|
50
|
+
#define PARAM_AREA MODE_CHOICE(32,64)
|
51
|
+
#define SAVED_LR_OFFSET MODE_CHOICE(8,16) /* save position for lr */
|
52
|
+
|
53
|
+
/* If there is any FP stuff we make space for all of the regs. */
|
54
|
+
#define SAVED_FPR_COUNT 13
|
55
|
+
#define FPR_SIZE 8
|
56
|
+
#define RESULT_BYTES 16
|
57
|
+
|
58
|
+
/* This should be kept in step with the same value in ffi_darwin.c. */
|
59
|
+
#define ASM_NEEDS_REGISTERS 4
|
60
|
+
#define SAVE_REGS_SIZE (ASM_NEEDS_REGISTERS * GPR_BYTES)
|
61
|
+
|
62
|
+
#include <fficonfig.h>
|
63
|
+
#include <ffi.h>
|
64
|
+
|
65
|
+
#define JUMPTARGET(name) name
|
66
|
+
#define L(x) x
|
67
|
+
|
68
|
+
.text
|
69
|
+
.align 2
|
70
|
+
.globl _ffi_prep_args
|
71
|
+
|
72
|
+
.align 2
|
73
|
+
.globl _ffi_call_DARWIN
|
74
|
+
|
75
|
+
/* We arrive here with:
|
76
|
+
r3 = ptr to extended cif.
|
77
|
+
r4 = -bytes.
|
78
|
+
r5 = cif flags.
|
79
|
+
r6 = ptr to return value.
|
80
|
+
r7 = fn pointer (user func).
|
81
|
+
r8 = fn pointer (ffi_prep_args).
|
82
|
+
r9 = ffi_type* for the ret val. */
|
83
|
+
|
84
|
+
_ffi_call_DARWIN:
|
85
|
+
Lstartcode:
|
86
|
+
mr r12,r8 /* We only need r12 until the call,
|
87
|
+
so it does not have to be saved. */
|
88
|
+
LFB1:
|
89
|
+
/* Save the old stack pointer as AP. */
|
90
|
+
mr r8,r1
|
91
|
+
LCFI0:
|
92
|
+
|
93
|
+
/* Save the retval type in parents frame. */
|
94
|
+
sg r9,(LINKAGE_SIZE+6*GPR_BYTES)(r8)
|
95
|
+
|
96
|
+
/* Allocate the stack space we need. */
|
97
|
+
sgux r1,r1,r4
|
98
|
+
|
99
|
+
/* Save registers we use. */
|
100
|
+
mflr r9
|
101
|
+
sg r9,SAVED_LR_OFFSET(r8)
|
102
|
+
|
103
|
+
sg r28,-(4 * GPR_BYTES)(r8)
|
104
|
+
sg r29,-(3 * GPR_BYTES)(r8)
|
105
|
+
sg r30,-(2 * GPR_BYTES)(r8)
|
106
|
+
sg r31,-( GPR_BYTES)(r8)
|
107
|
+
|
108
|
+
#if !defined(POWERPC_DARWIN)
|
109
|
+
/* The TOC slot is reserved in the Darwin ABI and r2 is volatile. */
|
110
|
+
sg r2,(5 * GPR_BYTES)(r1)
|
111
|
+
#endif
|
112
|
+
|
113
|
+
LCFI1:
|
114
|
+
|
115
|
+
/* Save arguments over call. */
|
116
|
+
mr r31,r5 /* flags, */
|
117
|
+
mr r30,r6 /* rvalue, */
|
118
|
+
mr r29,r7 /* function address, */
|
119
|
+
mr r28,r8 /* our AP. */
|
120
|
+
LCFI2:
|
121
|
+
/* Call ffi_prep_args. r3 = extended cif, r4 = stack ptr copy. */
|
122
|
+
mr r4,r1
|
123
|
+
li r9,0
|
124
|
+
|
125
|
+
mtctr r12 /* r12 holds address of _ffi_prep_args. */
|
126
|
+
bctrl
|
127
|
+
|
128
|
+
#if !defined(POWERPC_DARWIN)
|
129
|
+
/* The TOC slot is reserved in the Darwin ABI and r2 is volatile. */
|
130
|
+
lg r2,(5 * GPR_BYTES)(r1)
|
131
|
+
#endif
|
132
|
+
/* Now do the call.
|
133
|
+
Set up cr1 with bits 4-7 of the flags. */
|
134
|
+
mtcrf 0x40,r31
|
135
|
+
/* Get the address to call into CTR. */
|
136
|
+
mtctr r29
|
137
|
+
/* Load all those argument registers.
|
138
|
+
We have set up a nice stack frame, just load it into registers. */
|
139
|
+
lg r3, (LINKAGE_SIZE )(r1)
|
140
|
+
lg r4, (LINKAGE_SIZE + GPR_BYTES)(r1)
|
141
|
+
lg r5, (LINKAGE_SIZE + 2 * GPR_BYTES)(r1)
|
142
|
+
lg r6, (LINKAGE_SIZE + 3 * GPR_BYTES)(r1)
|
143
|
+
nop
|
144
|
+
lg r7, (LINKAGE_SIZE + 4 * GPR_BYTES)(r1)
|
145
|
+
lg r8, (LINKAGE_SIZE + 5 * GPR_BYTES)(r1)
|
146
|
+
lg r9, (LINKAGE_SIZE + 6 * GPR_BYTES)(r1)
|
147
|
+
lg r10,(LINKAGE_SIZE + 7 * GPR_BYTES)(r1)
|
148
|
+
|
149
|
+
L1:
|
150
|
+
/* ... Load all the FP registers. */
|
151
|
+
bf 6,L2 /* No floats to load. */
|
152
|
+
lfd f1, -SAVE_REGS_SIZE-(13*FPR_SIZE)(r28)
|
153
|
+
lfd f2, -SAVE_REGS_SIZE-(12*FPR_SIZE)(r28)
|
154
|
+
lfd f3, -SAVE_REGS_SIZE-(11*FPR_SIZE)(r28)
|
155
|
+
lfd f4, -SAVE_REGS_SIZE-(10*FPR_SIZE)(r28)
|
156
|
+
nop
|
157
|
+
lfd f5, -SAVE_REGS_SIZE-( 9*FPR_SIZE)(r28)
|
158
|
+
lfd f6, -SAVE_REGS_SIZE-( 8*FPR_SIZE)(r28)
|
159
|
+
lfd f7, -SAVE_REGS_SIZE-( 7*FPR_SIZE)(r28)
|
160
|
+
lfd f8, -SAVE_REGS_SIZE-( 6*FPR_SIZE)(r28)
|
161
|
+
nop
|
162
|
+
lfd f9, -SAVE_REGS_SIZE-( 5*FPR_SIZE)(r28)
|
163
|
+
lfd f10,-SAVE_REGS_SIZE-( 4*FPR_SIZE)(r28)
|
164
|
+
lfd f11,-SAVE_REGS_SIZE-( 3*FPR_SIZE)(r28)
|
165
|
+
lfd f12,-SAVE_REGS_SIZE-( 2*FPR_SIZE)(r28)
|
166
|
+
nop
|
167
|
+
lfd f13,-SAVE_REGS_SIZE-( 1*FPR_SIZE)(r28)
|
168
|
+
|
169
|
+
L2:
|
170
|
+
mr r12,r29 /* Put the target address in r12 as specified. */
|
171
|
+
mtctr r12
|
172
|
+
nop
|
173
|
+
nop
|
174
|
+
|
175
|
+
/* Make the call. */
|
176
|
+
bctrl
|
177
|
+
|
178
|
+
/* Now, deal with the return value. */
|
179
|
+
|
180
|
+
/* m64 structure returns can occupy the same set of registers as
|
181
|
+
would be used to pass such a structure as arg0 - so take care
|
182
|
+
not to step on any possibly hot regs. */
|
183
|
+
|
184
|
+
/* Get the flags.. */
|
185
|
+
mtcrf 0x03,r31 ; we need c6 & cr7 now.
|
186
|
+
; FLAG_RETURNS_NOTHING also covers struct ret-by-ref.
|
187
|
+
bt 30,L(done_return_value) ; FLAG_RETURNS_NOTHING
|
188
|
+
bf 27,L(scalar_return_value) ; not FLAG_RETURNS_STRUCT
|
189
|
+
|
190
|
+
/* OK, so we have a struct. */
|
191
|
+
#if defined(__ppc64__)
|
192
|
+
bt 31,L(maybe_return_128) ; FLAG_RETURNS_128BITS, special case
|
193
|
+
|
194
|
+
/* OK, we have to map the return back to a mem struct.
|
195
|
+
We are about to trample the parents param area, so recover the
|
196
|
+
return type. r29 is free, since the call is done. */
|
197
|
+
lg r29,(LINKAGE_SIZE + 6 * GPR_BYTES)(r28)
|
198
|
+
|
199
|
+
sg r3, (LINKAGE_SIZE )(r28)
|
200
|
+
sg r4, (LINKAGE_SIZE + GPR_BYTES)(r28)
|
201
|
+
sg r5, (LINKAGE_SIZE + 2 * GPR_BYTES)(r28)
|
202
|
+
sg r6, (LINKAGE_SIZE + 3 * GPR_BYTES)(r28)
|
203
|
+
nop
|
204
|
+
sg r7, (LINKAGE_SIZE + 4 * GPR_BYTES)(r28)
|
205
|
+
sg r8, (LINKAGE_SIZE + 5 * GPR_BYTES)(r28)
|
206
|
+
sg r9, (LINKAGE_SIZE + 6 * GPR_BYTES)(r28)
|
207
|
+
sg r10,(LINKAGE_SIZE + 7 * GPR_BYTES)(r28)
|
208
|
+
/* OK, so do the block move - we trust that memcpy will not trample
|
209
|
+
the fprs... */
|
210
|
+
mr r3,r30 ; dest
|
211
|
+
addi r4,r28,LINKAGE_SIZE ; source
|
212
|
+
/* The size is a size_t, should be long. */
|
213
|
+
lg r5,0(r29)
|
214
|
+
/* Figure out small structs */
|
215
|
+
cmpi 0,r5,4
|
216
|
+
bgt L3 ; 1, 2 and 4 bytes have special rules.
|
217
|
+
cmpi 0,r5,3
|
218
|
+
beq L3 ; not 3
|
219
|
+
addi r4,r4,8
|
220
|
+
subf r4,r5,r4
|
221
|
+
L3:
|
222
|
+
bl _memcpy
|
223
|
+
|
224
|
+
/* ... do we need the FP registers? - recover the flags.. */
|
225
|
+
mtcrf 0x03,r31 ; we need c6 & cr7 now.
|
226
|
+
bf 29,L(done_return_value) /* No floats in the struct. */
|
227
|
+
stfd f1, -SAVE_REGS_SIZE-(13*FPR_SIZE)(r28)
|
228
|
+
stfd f2, -SAVE_REGS_SIZE-(12*FPR_SIZE)(r28)
|
229
|
+
stfd f3, -SAVE_REGS_SIZE-(11*FPR_SIZE)(r28)
|
230
|
+
stfd f4, -SAVE_REGS_SIZE-(10*FPR_SIZE)(r28)
|
231
|
+
nop
|
232
|
+
stfd f5, -SAVE_REGS_SIZE-( 9*FPR_SIZE)(r28)
|
233
|
+
stfd f6, -SAVE_REGS_SIZE-( 8*FPR_SIZE)(r28)
|
234
|
+
stfd f7, -SAVE_REGS_SIZE-( 7*FPR_SIZE)(r28)
|
235
|
+
stfd f8, -SAVE_REGS_SIZE-( 6*FPR_SIZE)(r28)
|
236
|
+
nop
|
237
|
+
stfd f9, -SAVE_REGS_SIZE-( 5*FPR_SIZE)(r28)
|
238
|
+
stfd f10,-SAVE_REGS_SIZE-( 4*FPR_SIZE)(r28)
|
239
|
+
stfd f11,-SAVE_REGS_SIZE-( 3*FPR_SIZE)(r28)
|
240
|
+
stfd f12,-SAVE_REGS_SIZE-( 2*FPR_SIZE)(r28)
|
241
|
+
nop
|
242
|
+
stfd f13,-SAVE_REGS_SIZE-( 1*FPR_SIZE)(r28)
|
243
|
+
|
244
|
+
mr r3,r29 ; ffi_type *
|
245
|
+
mr r4,r30 ; dest
|
246
|
+
addi r5,r28,-SAVE_REGS_SIZE-(13*FPR_SIZE) ; fprs
|
247
|
+
xor r6,r6,r6
|
248
|
+
sg r6,(LINKAGE_SIZE + 7 * GPR_BYTES)(r28)
|
249
|
+
addi r6,r28,(LINKAGE_SIZE + 7 * GPR_BYTES) ; point to a zeroed counter.
|
250
|
+
bl _darwin64_struct_floats_to_mem
|
251
|
+
|
252
|
+
b L(done_return_value)
|
253
|
+
#else
|
254
|
+
stw r3,0(r30) ; m32 the only struct return in reg is 4 bytes.
|
255
|
+
#endif
|
256
|
+
b L(done_return_value)
|
257
|
+
|
258
|
+
L(fp_return_value):
|
259
|
+
/* Do we have long double to store? */
|
260
|
+
bf 31,L(fd_return_value) ; FLAG_RETURNS_128BITS
|
261
|
+
stfd f1,0(r30)
|
262
|
+
stfd f2,FPR_SIZE(r30)
|
263
|
+
b L(done_return_value)
|
264
|
+
|
265
|
+
L(fd_return_value):
|
266
|
+
/* Do we have double to store? */
|
267
|
+
bf 28,L(float_return_value)
|
268
|
+
stfd f1,0(r30)
|
269
|
+
b L(done_return_value)
|
270
|
+
|
271
|
+
L(float_return_value):
|
272
|
+
/* We only have a float to store. */
|
273
|
+
stfs f1,0(r30)
|
274
|
+
b L(done_return_value)
|
275
|
+
|
276
|
+
L(scalar_return_value):
|
277
|
+
bt 29,L(fp_return_value) ; FLAG_RETURNS_FP
|
278
|
+
; ffi_arg is defined as unsigned long.
|
279
|
+
sg r3,0(r30) ; Save the reg.
|
280
|
+
bf 28,L(done_return_value) ; not FLAG_RETURNS_64BITS
|
281
|
+
|
282
|
+
#if defined(__ppc64__)
|
283
|
+
L(maybe_return_128):
|
284
|
+
std r3,0(r30)
|
285
|
+
bf 31,L(done_return_value) ; not FLAG_RETURNS_128BITS
|
286
|
+
std r4,8(r30)
|
287
|
+
#else
|
288
|
+
stw r4,4(r30)
|
289
|
+
#endif
|
290
|
+
|
291
|
+
/* Fall through. */
|
292
|
+
/* We want this at the end to simplify eh epilog computation. */
|
293
|
+
|
294
|
+
L(done_return_value):
|
295
|
+
/* Restore the registers we used and return. */
|
296
|
+
lg r29,SAVED_LR_OFFSET(r28)
|
297
|
+
; epilog
|
298
|
+
lg r31,-(1 * GPR_BYTES)(r28)
|
299
|
+
mtlr r29
|
300
|
+
lg r30,-(2 * GPR_BYTES)(r28)
|
301
|
+
lg r29,-(3 * GPR_BYTES)(r28)
|
302
|
+
lg r28,-(4 * GPR_BYTES)(r28)
|
303
|
+
lg r1,0(r1)
|
304
|
+
blr
|
305
|
+
LFE1:
|
306
|
+
.align 1
|
307
|
+
/* END(_ffi_call_DARWIN) */
|
308
|
+
|
309
|
+
/* Provide a null definition of _ffi_call_AIX. */
|
310
|
+
.text
|
311
|
+
.globl _ffi_call_AIX
|
312
|
+
.align 2
|
313
|
+
_ffi_call_AIX:
|
314
|
+
blr
|
315
|
+
/* END(_ffi_call_AIX) */
|
316
|
+
|
317
|
+
/* EH stuff. */
|
318
|
+
|
319
|
+
#define EH_DATA_ALIGN_FACT MODE_CHOICE(0x7c,0x78)
|
320
|
+
|
321
|
+
.section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support
|
322
|
+
EH_frame1:
|
323
|
+
.set L$set$0,LECIE1-LSCIE1
|
324
|
+
.long L$set$0 ; Length of Common Information Entry
|
325
|
+
LSCIE1:
|
326
|
+
.long 0x0 ; CIE Identifier Tag
|
327
|
+
.byte 0x1 ; CIE Version
|
328
|
+
.ascii "zR\0" ; CIE Augmentation
|
329
|
+
.byte 0x1 ; uleb128 0x1; CIE Code Alignment Factor
|
330
|
+
.byte EH_DATA_ALIGN_FACT ; sleb128 -4; CIE Data Alignment Factor
|
331
|
+
.byte 0x41 ; CIE RA Column
|
332
|
+
.byte 0x1 ; uleb128 0x1; Augmentation size
|
333
|
+
.byte 0x10 ; FDE Encoding (pcrel)
|
334
|
+
.byte 0xc ; DW_CFA_def_cfa
|
335
|
+
.byte 0x1 ; uleb128 0x1
|
336
|
+
.byte 0x0 ; uleb128 0x0
|
337
|
+
.align LOG2_GPR_BYTES
|
338
|
+
LECIE1:
|
339
|
+
|
340
|
+
.globl _ffi_call_DARWIN.eh
|
341
|
+
_ffi_call_DARWIN.eh:
|
342
|
+
LSFDE1:
|
343
|
+
.set L$set$1,LEFDE1-LASFDE1
|
344
|
+
.long L$set$1 ; FDE Length
|
345
|
+
LASFDE1:
|
346
|
+
.long LASFDE1-EH_frame1 ; FDE CIE offset
|
347
|
+
.g_long Lstartcode-. ; FDE initial location
|
348
|
+
.set L$set$3,LFE1-Lstartcode
|
349
|
+
.g_long L$set$3 ; FDE address range
|
350
|
+
.byte 0x0 ; uleb128 0x0; Augmentation size
|
351
|
+
.byte 0x4 ; DW_CFA_advance_loc4
|
352
|
+
.set L$set$4,LCFI0-Lstartcode
|
353
|
+
.long L$set$4
|
354
|
+
.byte 0xd ; DW_CFA_def_cfa_register
|
355
|
+
.byte 0x08 ; uleb128 0x08
|
356
|
+
.byte 0x4 ; DW_CFA_advance_loc4
|
357
|
+
.set L$set$5,LCFI1-LCFI0
|
358
|
+
.long L$set$5
|
359
|
+
.byte 0x11 ; DW_CFA_offset_extended_sf
|
360
|
+
.byte 0x41 ; uleb128 0x41
|
361
|
+
.byte 0x7e ; sleb128 -2
|
362
|
+
.byte 0x9f ; DW_CFA_offset, column 0x1f
|
363
|
+
.byte 0x1 ; uleb128 0x1
|
364
|
+
.byte 0x9e ; DW_CFA_offset, column 0x1e
|
365
|
+
.byte 0x2 ; uleb128 0x2
|
366
|
+
.byte 0x9d ; DW_CFA_offset, column 0x1d
|
367
|
+
.byte 0x3 ; uleb128 0x3
|
368
|
+
.byte 0x9c ; DW_CFA_offset, column 0x1c
|
369
|
+
.byte 0x4 ; uleb128 0x4
|
370
|
+
.byte 0x4 ; DW_CFA_advance_loc4
|
371
|
+
.set L$set$6,LCFI2-LCFI1
|
372
|
+
.long L$set$6
|
373
|
+
.byte 0xd ; DW_CFA_def_cfa_register
|
374
|
+
.byte 0x1c ; uleb128 0x1c
|
375
|
+
.align LOG2_GPR_BYTES
|
376
|
+
LEFDE1:
|
377
|
+
.align 1
|
378
|
+
|