ffi 1.11.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.appveyor.yml +27 -0
- data/.gitignore +25 -0
- data/.gitmodules +4 -0
- data/.travis.yml +42 -0
- data/.yardopts +5 -0
- data/CHANGELOG.md +147 -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 +196 -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 +66 -0
- data/ext/ffi_c/libffi/.gitattributes +4 -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 +63 -0
- data/ext/ffi_c/libffi/.travis/ar-lib +270 -0
- data/ext/ffi_c/libffi/.travis/build-in-container.sh +22 -0
- data/ext/ffi_c/libffi/.travis/build.sh +110 -0
- data/ext/ffi_c/libffi/.travis/compile +351 -0
- data/ext/ffi_c/libffi/.travis/install.sh +43 -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 +353 -0
- data/ext/ffi_c/libffi/Makefile.am +158 -0
- data/ext/ffi_c/libffi/README.md +470 -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 +303 -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 +515 -0
- data/ext/ffi_c/libffi/include/ffi_cfi.h +55 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +153 -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/make_sunver.pl +333 -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/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
- data/ext/ffi_c/libffi/msvcc.sh +353 -0
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +1009 -0
- data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +92 -0
- data/ext/ffi_c/libffi/src/aarch64/internal.h +67 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +440 -0
- data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -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 +854 -0
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +89 -0
- data/ext/ffi_c/libffi/src/arm/internal.h +7 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +385 -0
- data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -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 +990 -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 +378 -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 +174 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1440 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1007 -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 +263 -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 +761 -0
- data/ext/ffi_c/libffi/src/x86/ffi64.c +886 -0
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +147 -0
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +311 -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/sysv_intel.S +995 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +566 -0
- data/ext/ffi_c/libffi/src/x86/win64.S +237 -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 +119 -0
- data/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +657 -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 +61 -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 +175 -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-dragonflybsd/types.conf +148 -0
- data/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
- data/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
- data/lib/ffi/platform/x86_64-linux/types.conf +111 -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 +135 -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 +677 -0
@@ -0,0 +1,58 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
ffitarget.h - Copyright (c) 2014 Sebastian Macke <sebastian@macke.de>
|
3
|
+
|
4
|
+
OpenRISC Target configuration macros
|
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,
|
18
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
19
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
20
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
21
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
22
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
23
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
24
|
+
DEALINGS IN THE SOFTWARE.
|
25
|
+
----------------------------------------------------------------------- */
|
26
|
+
|
27
|
+
#ifndef LIBFFI_TARGET_H
|
28
|
+
#define LIBFFI_TARGET_H
|
29
|
+
|
30
|
+
#ifndef LIBFFI_H
|
31
|
+
#error "Please do not include ffitarget.h directly into your source. Use ffi.h instead."
|
32
|
+
#endif
|
33
|
+
|
34
|
+
/* ---- System specific configurations ----------------------------------- */
|
35
|
+
|
36
|
+
#ifndef LIBFFI_ASM
|
37
|
+
typedef unsigned long ffi_arg;
|
38
|
+
typedef signed long ffi_sarg;
|
39
|
+
|
40
|
+
typedef enum ffi_abi {
|
41
|
+
FFI_FIRST_ABI = 0,
|
42
|
+
FFI_SYSV,
|
43
|
+
FFI_LAST_ABI,
|
44
|
+
FFI_DEFAULT_ABI = FFI_SYSV
|
45
|
+
} ffi_abi;
|
46
|
+
#endif
|
47
|
+
|
48
|
+
/* ---- Definitions for closures ----------------------------------------- */
|
49
|
+
|
50
|
+
#define FFI_CLOSURES 1
|
51
|
+
#define FFI_NATIVE_RAW_API 0
|
52
|
+
#define FFI_TRAMPOLINE_SIZE (24)
|
53
|
+
|
54
|
+
#define FFI_TARGET_SPECIFIC_VARIADIC 1
|
55
|
+
#define FFI_EXTRA_CIF_FIELDS unsigned nfixedargs;
|
56
|
+
|
57
|
+
#endif
|
58
|
+
|
@@ -0,0 +1,107 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
sysv.S - Copyright (c) 2014 Sebastian Macke <sebastian@macke.de>
|
3
|
+
|
4
|
+
OpenRISC Foreign Function Interface
|
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,
|
18
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
19
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
20
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
21
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
22
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
23
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
24
|
+
DEALINGS IN THE SOFTWARE.
|
25
|
+
----------------------------------------------------------------------- */
|
26
|
+
|
27
|
+
#define LIBFFI_ASM
|
28
|
+
#include <fficonfig.h>
|
29
|
+
#include <ffi.h>
|
30
|
+
|
31
|
+
.text
|
32
|
+
.globl ffi_call_SYSV
|
33
|
+
.type ffi_call_SYSV, @function
|
34
|
+
/*
|
35
|
+
r3: size to allocate on stack
|
36
|
+
r4: extended cif structure
|
37
|
+
r5: function pointer ffi_prep_args
|
38
|
+
r6: ret address
|
39
|
+
r7: function to call
|
40
|
+
r8: flag for return type
|
41
|
+
*/
|
42
|
+
|
43
|
+
ffi_call_SYSV:
|
44
|
+
/* Store registers used on stack */
|
45
|
+
l.sw -4(r1), r9 /* return address */
|
46
|
+
l.sw -8(r1), r1 /* stack address */
|
47
|
+
l.sw -12(r1), r14 /* callee saved registers */
|
48
|
+
l.sw -16(r1), r16
|
49
|
+
l.sw -20(r1), r18
|
50
|
+
l.sw -24(r1), r20
|
51
|
+
|
52
|
+
l.ori r14, r1, 0x0 /* save stack pointer */
|
53
|
+
l.addi r1, r1, -24
|
54
|
+
|
55
|
+
l.ori r16, r7, 0x0 /* save function address */
|
56
|
+
l.ori r18, r6, 0x0 /* save ret address */
|
57
|
+
l.ori r20, r8, 0x0 /* save flag */
|
58
|
+
|
59
|
+
l.sub r1, r1, r3 /* reserve space on stack */
|
60
|
+
|
61
|
+
/* Call ffi_prep_args */
|
62
|
+
l.ori r3, r1, 0x0 /* first argument stack address, second already ecif */
|
63
|
+
l.jalr r5
|
64
|
+
l.nop
|
65
|
+
|
66
|
+
/* Load register arguments and call*/
|
67
|
+
|
68
|
+
l.lwz r3, 0(r1)
|
69
|
+
l.lwz r4, 4(r1)
|
70
|
+
l.lwz r5, 8(r1)
|
71
|
+
l.lwz r6, 12(r1)
|
72
|
+
l.lwz r7, 16(r1)
|
73
|
+
l.lwz r8, 20(r1)
|
74
|
+
l.ori r1, r11, 0x0 /* new stack pointer */
|
75
|
+
l.jalr r16
|
76
|
+
l.nop
|
77
|
+
|
78
|
+
/* handle return values */
|
79
|
+
|
80
|
+
l.sfeqi r20, FFI_TYPE_STRUCT
|
81
|
+
l.bf ret /* structs don't return an rvalue */
|
82
|
+
l.nop
|
83
|
+
|
84
|
+
/* copy ret address */
|
85
|
+
|
86
|
+
l.sfeqi r20, FFI_TYPE_UINT64
|
87
|
+
l.bnf four_byte_ret /* 8 byte value is returned */
|
88
|
+
l.nop
|
89
|
+
|
90
|
+
l.sw 4(r18), r12
|
91
|
+
|
92
|
+
four_byte_ret:
|
93
|
+
l.sw 0(r18), r11
|
94
|
+
|
95
|
+
ret:
|
96
|
+
/* return */
|
97
|
+
l.ori r1, r14, 0x0 /* reset stack pointer */
|
98
|
+
l.lwz r9, -4(r1)
|
99
|
+
l.lwz r1, -8(r1)
|
100
|
+
l.lwz r14, -12(r1)
|
101
|
+
l.lwz r16, -16(r1)
|
102
|
+
l.lwz r18, -20(r1)
|
103
|
+
l.lwz r20, -24(r1)
|
104
|
+
l.jr r9
|
105
|
+
l.nop
|
106
|
+
|
107
|
+
.size ffi_call_SYSV, .-ffi_call_SYSV
|
@@ -0,0 +1,719 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
ffi.c - (c) 2011 Anthony Green
|
3
|
+
(c) 2008 Red Hat, Inc.
|
4
|
+
(c) 2006 Free Software Foundation, Inc.
|
5
|
+
(c) 2003-2004 Randolph Chung <tausq@debian.org>
|
6
|
+
|
7
|
+
HPPA Foreign Function Interface
|
8
|
+
HP-UX PA ABI support
|
9
|
+
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
11
|
+
a copy of this software and associated documentation files (the
|
12
|
+
``Software''), to deal in the Software without restriction, including
|
13
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
14
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
15
|
+
permit persons to whom the Software is furnished to do so, subject to
|
16
|
+
the following conditions:
|
17
|
+
|
18
|
+
The above copyright notice and this permission notice shall be included
|
19
|
+
in all copies or substantial portions of the Software.
|
20
|
+
|
21
|
+
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
|
22
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
23
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
24
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
25
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
26
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
27
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
28
|
+
DEALINGS IN THE SOFTWARE.
|
29
|
+
----------------------------------------------------------------------- */
|
30
|
+
|
31
|
+
#include <ffi.h>
|
32
|
+
#include <ffi_common.h>
|
33
|
+
|
34
|
+
#include <stdlib.h>
|
35
|
+
#include <stdio.h>
|
36
|
+
|
37
|
+
#define ROUND_UP(v, a) (((size_t)(v) + (a) - 1) & ~((a) - 1))
|
38
|
+
|
39
|
+
#define MIN_STACK_SIZE 64
|
40
|
+
#define FIRST_ARG_SLOT 9
|
41
|
+
#define DEBUG_LEVEL 0
|
42
|
+
|
43
|
+
#define fldw(addr, fpreg) \
|
44
|
+
__asm__ volatile ("fldw 0(%0), %%" #fpreg "L" : : "r"(addr) : #fpreg)
|
45
|
+
#define fstw(fpreg, addr) \
|
46
|
+
__asm__ volatile ("fstw %%" #fpreg "L, 0(%0)" : : "r"(addr))
|
47
|
+
#define fldd(addr, fpreg) \
|
48
|
+
__asm__ volatile ("fldd 0(%0), %%" #fpreg : : "r"(addr) : #fpreg)
|
49
|
+
#define fstd(fpreg, addr) \
|
50
|
+
__asm__ volatile ("fstd %%" #fpreg "L, 0(%0)" : : "r"(addr))
|
51
|
+
|
52
|
+
#define debug(lvl, x...) do { if (lvl <= DEBUG_LEVEL) { printf(x); } } while (0)
|
53
|
+
|
54
|
+
static inline int ffi_struct_type(ffi_type *t)
|
55
|
+
{
|
56
|
+
size_t sz = t->size;
|
57
|
+
|
58
|
+
/* Small structure results are passed in registers,
|
59
|
+
larger ones are passed by pointer. Note that
|
60
|
+
small structures of size 2, 4 and 8 differ from
|
61
|
+
the corresponding integer types in that they have
|
62
|
+
different alignment requirements. */
|
63
|
+
|
64
|
+
if (sz <= 1)
|
65
|
+
return FFI_TYPE_UINT8;
|
66
|
+
else if (sz == 2)
|
67
|
+
return FFI_TYPE_SMALL_STRUCT2;
|
68
|
+
else if (sz == 3)
|
69
|
+
return FFI_TYPE_SMALL_STRUCT3;
|
70
|
+
else if (sz == 4)
|
71
|
+
return FFI_TYPE_SMALL_STRUCT4;
|
72
|
+
else if (sz == 5)
|
73
|
+
return FFI_TYPE_SMALL_STRUCT5;
|
74
|
+
else if (sz == 6)
|
75
|
+
return FFI_TYPE_SMALL_STRUCT6;
|
76
|
+
else if (sz == 7)
|
77
|
+
return FFI_TYPE_SMALL_STRUCT7;
|
78
|
+
else if (sz <= 8)
|
79
|
+
return FFI_TYPE_SMALL_STRUCT8;
|
80
|
+
else
|
81
|
+
return FFI_TYPE_STRUCT; /* else, we pass it by pointer. */
|
82
|
+
}
|
83
|
+
|
84
|
+
/* PA has a downward growing stack, which looks like this:
|
85
|
+
|
86
|
+
Offset
|
87
|
+
[ Variable args ]
|
88
|
+
SP = (4*(n+9)) arg word N
|
89
|
+
...
|
90
|
+
SP-52 arg word 4
|
91
|
+
[ Fixed args ]
|
92
|
+
SP-48 arg word 3
|
93
|
+
SP-44 arg word 2
|
94
|
+
SP-40 arg word 1
|
95
|
+
SP-36 arg word 0
|
96
|
+
[ Frame marker ]
|
97
|
+
...
|
98
|
+
SP-20 RP
|
99
|
+
SP-4 previous SP
|
100
|
+
|
101
|
+
The first four argument words on the stack are reserved for use by
|
102
|
+
the callee. Instead, the general and floating registers replace
|
103
|
+
the first four argument slots. Non FP arguments are passed solely
|
104
|
+
in the general registers. FP arguments are passed in both general
|
105
|
+
and floating registers when using libffi.
|
106
|
+
|
107
|
+
Non-FP 32-bit args are passed in gr26, gr25, gr24 and gr23.
|
108
|
+
Non-FP 64-bit args are passed in register pairs, starting
|
109
|
+
on an odd numbered register (i.e. r25+r26 and r23+r24).
|
110
|
+
FP 32-bit arguments are passed in fr4L, fr5L, fr6L and fr7L.
|
111
|
+
FP 64-bit arguments are passed in fr5 and fr7.
|
112
|
+
|
113
|
+
The registers are allocated in the same manner as stack slots.
|
114
|
+
This allows the callee to save its arguments on the stack if
|
115
|
+
necessary:
|
116
|
+
|
117
|
+
arg word 3 -> gr23 or fr7L
|
118
|
+
arg word 2 -> gr24 or fr6L or fr7R
|
119
|
+
arg word 1 -> gr25 or fr5L
|
120
|
+
arg word 0 -> gr26 or fr4L or fr5R
|
121
|
+
|
122
|
+
Note that fr4R and fr6R are never used for arguments (i.e.,
|
123
|
+
doubles are not passed in fr4 or fr6).
|
124
|
+
|
125
|
+
The rest of the arguments are passed on the stack starting at SP-52,
|
126
|
+
but 64-bit arguments need to be aligned to an 8-byte boundary
|
127
|
+
|
128
|
+
This means we can have holes either in the register allocation,
|
129
|
+
or in the stack. */
|
130
|
+
|
131
|
+
/* ffi_prep_args is called by the assembly routine once stack space
|
132
|
+
has been allocated for the function's arguments
|
133
|
+
|
134
|
+
The following code will put everything into the stack frame
|
135
|
+
(which was allocated by the asm routine), and on return
|
136
|
+
the asm routine will load the arguments that should be
|
137
|
+
passed by register into the appropriate registers
|
138
|
+
|
139
|
+
NOTE: We load floating point args in this function... that means we
|
140
|
+
assume gcc will not mess with fp regs in here. */
|
141
|
+
|
142
|
+
void ffi_prep_args_pa32(UINT32 *stack, extended_cif *ecif, unsigned bytes)
|
143
|
+
{
|
144
|
+
register unsigned int i;
|
145
|
+
register ffi_type **p_arg;
|
146
|
+
register void **p_argv;
|
147
|
+
unsigned int slot = FIRST_ARG_SLOT;
|
148
|
+
char *dest_cpy;
|
149
|
+
size_t len;
|
150
|
+
|
151
|
+
debug(1, "%s: stack = %p, ecif = %p, bytes = %u\n", __FUNCTION__, stack,
|
152
|
+
ecif, bytes);
|
153
|
+
|
154
|
+
p_arg = ecif->cif->arg_types;
|
155
|
+
p_argv = ecif->avalue;
|
156
|
+
|
157
|
+
for (i = 0; i < ecif->cif->nargs; i++)
|
158
|
+
{
|
159
|
+
int type = (*p_arg)->type;
|
160
|
+
|
161
|
+
switch (type)
|
162
|
+
{
|
163
|
+
case FFI_TYPE_SINT8:
|
164
|
+
*(SINT32 *)(stack - slot) = *(SINT8 *)(*p_argv);
|
165
|
+
break;
|
166
|
+
|
167
|
+
case FFI_TYPE_UINT8:
|
168
|
+
*(UINT32 *)(stack - slot) = *(UINT8 *)(*p_argv);
|
169
|
+
break;
|
170
|
+
|
171
|
+
case FFI_TYPE_SINT16:
|
172
|
+
*(SINT32 *)(stack - slot) = *(SINT16 *)(*p_argv);
|
173
|
+
break;
|
174
|
+
|
175
|
+
case FFI_TYPE_UINT16:
|
176
|
+
*(UINT32 *)(stack - slot) = *(UINT16 *)(*p_argv);
|
177
|
+
break;
|
178
|
+
|
179
|
+
case FFI_TYPE_UINT32:
|
180
|
+
case FFI_TYPE_SINT32:
|
181
|
+
case FFI_TYPE_POINTER:
|
182
|
+
debug(3, "Storing UINT32 %u in slot %u\n", *(UINT32 *)(*p_argv),
|
183
|
+
slot);
|
184
|
+
*(UINT32 *)(stack - slot) = *(UINT32 *)(*p_argv);
|
185
|
+
break;
|
186
|
+
|
187
|
+
case FFI_TYPE_UINT64:
|
188
|
+
case FFI_TYPE_SINT64:
|
189
|
+
/* Align slot for 64-bit type. */
|
190
|
+
slot += (slot & 1) ? 1 : 2;
|
191
|
+
*(UINT64 *)(stack - slot) = *(UINT64 *)(*p_argv);
|
192
|
+
break;
|
193
|
+
|
194
|
+
case FFI_TYPE_FLOAT:
|
195
|
+
/* First 4 args go in fr4L - fr7L. */
|
196
|
+
debug(3, "Storing UINT32(float) in slot %u\n", slot);
|
197
|
+
*(UINT32 *)(stack - slot) = *(UINT32 *)(*p_argv);
|
198
|
+
switch (slot - FIRST_ARG_SLOT)
|
199
|
+
{
|
200
|
+
/* First 4 args go in fr4L - fr7L. */
|
201
|
+
case 0: fldw(stack - slot, fr4); break;
|
202
|
+
case 1: fldw(stack - slot, fr5); break;
|
203
|
+
case 2: fldw(stack - slot, fr6); break;
|
204
|
+
case 3: fldw(stack - slot, fr7); break;
|
205
|
+
}
|
206
|
+
break;
|
207
|
+
|
208
|
+
case FFI_TYPE_DOUBLE:
|
209
|
+
/* Align slot for 64-bit type. */
|
210
|
+
slot += (slot & 1) ? 1 : 2;
|
211
|
+
debug(3, "Storing UINT64(double) at slot %u\n", slot);
|
212
|
+
*(UINT64 *)(stack - slot) = *(UINT64 *)(*p_argv);
|
213
|
+
switch (slot - FIRST_ARG_SLOT)
|
214
|
+
{
|
215
|
+
/* First 2 args go in fr5, fr7. */
|
216
|
+
case 1: fldd(stack - slot, fr5); break;
|
217
|
+
case 3: fldd(stack - slot, fr7); break;
|
218
|
+
}
|
219
|
+
break;
|
220
|
+
|
221
|
+
#ifdef PA_HPUX
|
222
|
+
case FFI_TYPE_LONGDOUBLE:
|
223
|
+
/* Long doubles are passed in the same manner as structures
|
224
|
+
larger than 8 bytes. */
|
225
|
+
*(UINT32 *)(stack - slot) = (UINT32)(*p_argv);
|
226
|
+
break;
|
227
|
+
#endif
|
228
|
+
|
229
|
+
case FFI_TYPE_STRUCT:
|
230
|
+
|
231
|
+
/* Structs smaller or equal than 4 bytes are passed in one
|
232
|
+
register. Structs smaller or equal 8 bytes are passed in two
|
233
|
+
registers. Larger structures are passed by pointer. */
|
234
|
+
|
235
|
+
len = (*p_arg)->size;
|
236
|
+
if (len <= 4)
|
237
|
+
{
|
238
|
+
dest_cpy = (char *)(stack - slot) + 4 - len;
|
239
|
+
memcpy(dest_cpy, (char *)*p_argv, len);
|
240
|
+
}
|
241
|
+
else if (len <= 8)
|
242
|
+
{
|
243
|
+
slot += (slot & 1) ? 1 : 2;
|
244
|
+
dest_cpy = (char *)(stack - slot) + 8 - len;
|
245
|
+
memcpy(dest_cpy, (char *)*p_argv, len);
|
246
|
+
}
|
247
|
+
else
|
248
|
+
*(UINT32 *)(stack - slot) = (UINT32)(*p_argv);
|
249
|
+
break;
|
250
|
+
|
251
|
+
default:
|
252
|
+
FFI_ASSERT(0);
|
253
|
+
}
|
254
|
+
|
255
|
+
slot++;
|
256
|
+
p_arg++;
|
257
|
+
p_argv++;
|
258
|
+
}
|
259
|
+
|
260
|
+
/* Make sure we didn't mess up and scribble on the stack. */
|
261
|
+
{
|
262
|
+
unsigned int n;
|
263
|
+
|
264
|
+
debug(5, "Stack setup:\n");
|
265
|
+
for (n = 0; n < (bytes + 3) / 4; n++)
|
266
|
+
{
|
267
|
+
if ((n%4) == 0) { debug(5, "\n%08x: ", (unsigned int)(stack - n)); }
|
268
|
+
debug(5, "%08x ", *(stack - n));
|
269
|
+
}
|
270
|
+
debug(5, "\n");
|
271
|
+
}
|
272
|
+
|
273
|
+
FFI_ASSERT(slot * 4 <= bytes);
|
274
|
+
|
275
|
+
return;
|
276
|
+
}
|
277
|
+
|
278
|
+
static void ffi_size_stack_pa32(ffi_cif *cif)
|
279
|
+
{
|
280
|
+
ffi_type **ptr;
|
281
|
+
int i;
|
282
|
+
int z = 0; /* # stack slots */
|
283
|
+
|
284
|
+
for (ptr = cif->arg_types, i = 0; i < cif->nargs; ptr++, i++)
|
285
|
+
{
|
286
|
+
int type = (*ptr)->type;
|
287
|
+
|
288
|
+
switch (type)
|
289
|
+
{
|
290
|
+
case FFI_TYPE_DOUBLE:
|
291
|
+
case FFI_TYPE_UINT64:
|
292
|
+
case FFI_TYPE_SINT64:
|
293
|
+
z += 2 + (z & 1); /* must start on even regs, so we may waste one */
|
294
|
+
break;
|
295
|
+
|
296
|
+
#ifdef PA_HPUX
|
297
|
+
case FFI_TYPE_LONGDOUBLE:
|
298
|
+
#endif
|
299
|
+
case FFI_TYPE_STRUCT:
|
300
|
+
z += 1; /* pass by ptr, callee will copy */
|
301
|
+
break;
|
302
|
+
|
303
|
+
default: /* <= 32-bit values */
|
304
|
+
z++;
|
305
|
+
}
|
306
|
+
}
|
307
|
+
|
308
|
+
/* We can fit up to 6 args in the default 64-byte stack frame,
|
309
|
+
if we need more, we need more stack. */
|
310
|
+
if (z <= 6)
|
311
|
+
cif->bytes = MIN_STACK_SIZE; /* min stack size */
|
312
|
+
else
|
313
|
+
cif->bytes = 64 + ROUND_UP((z - 6) * sizeof(UINT32), MIN_STACK_SIZE);
|
314
|
+
|
315
|
+
debug(3, "Calculated stack size is %u bytes\n", cif->bytes);
|
316
|
+
}
|
317
|
+
|
318
|
+
/* Perform machine dependent cif processing. */
|
319
|
+
ffi_status ffi_prep_cif_machdep(ffi_cif *cif)
|
320
|
+
{
|
321
|
+
/* Set the return type flag */
|
322
|
+
switch (cif->rtype->type)
|
323
|
+
{
|
324
|
+
case FFI_TYPE_VOID:
|
325
|
+
case FFI_TYPE_FLOAT:
|
326
|
+
case FFI_TYPE_DOUBLE:
|
327
|
+
cif->flags = (unsigned) cif->rtype->type;
|
328
|
+
break;
|
329
|
+
|
330
|
+
#ifdef PA_HPUX
|
331
|
+
case FFI_TYPE_LONGDOUBLE:
|
332
|
+
/* Long doubles are treated like a structure. */
|
333
|
+
cif->flags = FFI_TYPE_STRUCT;
|
334
|
+
break;
|
335
|
+
#endif
|
336
|
+
|
337
|
+
case FFI_TYPE_STRUCT:
|
338
|
+
/* For the return type we have to check the size of the structures.
|
339
|
+
If the size is smaller or equal 4 bytes, the result is given back
|
340
|
+
in one register. If the size is smaller or equal 8 bytes than we
|
341
|
+
return the result in two registers. But if the size is bigger than
|
342
|
+
8 bytes, we work with pointers. */
|
343
|
+
cif->flags = ffi_struct_type(cif->rtype);
|
344
|
+
break;
|
345
|
+
|
346
|
+
case FFI_TYPE_UINT64:
|
347
|
+
case FFI_TYPE_SINT64:
|
348
|
+
cif->flags = FFI_TYPE_UINT64;
|
349
|
+
break;
|
350
|
+
|
351
|
+
default:
|
352
|
+
cif->flags = FFI_TYPE_INT;
|
353
|
+
break;
|
354
|
+
}
|
355
|
+
|
356
|
+
/* Lucky us, because of the unique PA ABI we get to do our
|
357
|
+
own stack sizing. */
|
358
|
+
switch (cif->abi)
|
359
|
+
{
|
360
|
+
case FFI_PA32:
|
361
|
+
ffi_size_stack_pa32(cif);
|
362
|
+
break;
|
363
|
+
|
364
|
+
default:
|
365
|
+
FFI_ASSERT(0);
|
366
|
+
break;
|
367
|
+
}
|
368
|
+
|
369
|
+
return FFI_OK;
|
370
|
+
}
|
371
|
+
|
372
|
+
extern void ffi_call_pa32(void (*)(UINT32 *, extended_cif *, unsigned),
|
373
|
+
extended_cif *, unsigned, unsigned, unsigned *,
|
374
|
+
void (*fn)(void));
|
375
|
+
|
376
|
+
void ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue)
|
377
|
+
{
|
378
|
+
extended_cif ecif;
|
379
|
+
|
380
|
+
ecif.cif = cif;
|
381
|
+
ecif.avalue = avalue;
|
382
|
+
|
383
|
+
/* If the return value is a struct and we don't have a return
|
384
|
+
value address then we need to make one. */
|
385
|
+
|
386
|
+
if (rvalue == NULL
|
387
|
+
#ifdef PA_HPUX
|
388
|
+
&& (cif->rtype->type == FFI_TYPE_STRUCT
|
389
|
+
|| cif->rtype->type == FFI_TYPE_LONGDOUBLE))
|
390
|
+
#else
|
391
|
+
&& cif->rtype->type == FFI_TYPE_STRUCT)
|
392
|
+
#endif
|
393
|
+
{
|
394
|
+
ecif.rvalue = alloca(cif->rtype->size);
|
395
|
+
}
|
396
|
+
else
|
397
|
+
ecif.rvalue = rvalue;
|
398
|
+
|
399
|
+
|
400
|
+
switch (cif->abi)
|
401
|
+
{
|
402
|
+
case FFI_PA32:
|
403
|
+
debug(3, "Calling ffi_call_pa32: ecif=%p, bytes=%u, flags=%u, rvalue=%p, fn=%p\n", &ecif, cif->bytes, cif->flags, ecif.rvalue, (void *)fn);
|
404
|
+
ffi_call_pa32(ffi_prep_args_pa32, &ecif, cif->bytes,
|
405
|
+
cif->flags, ecif.rvalue, fn);
|
406
|
+
break;
|
407
|
+
|
408
|
+
default:
|
409
|
+
FFI_ASSERT(0);
|
410
|
+
break;
|
411
|
+
}
|
412
|
+
}
|
413
|
+
|
414
|
+
#if FFI_CLOSURES
|
415
|
+
/* This is more-or-less an inverse of ffi_call -- we have arguments on
|
416
|
+
the stack, and we need to fill them into a cif structure and invoke
|
417
|
+
the user function. This really ought to be in asm to make sure
|
418
|
+
the compiler doesn't do things we don't expect. */
|
419
|
+
ffi_status ffi_closure_inner_pa32(ffi_closure *closure, UINT32 *stack)
|
420
|
+
{
|
421
|
+
ffi_cif *cif;
|
422
|
+
void **avalue;
|
423
|
+
void *rvalue;
|
424
|
+
UINT32 ret[2]; /* function can return up to 64-bits in registers */
|
425
|
+
ffi_type **p_arg;
|
426
|
+
char *tmp;
|
427
|
+
int i, avn;
|
428
|
+
unsigned int slot = FIRST_ARG_SLOT;
|
429
|
+
register UINT32 r28 asm("r28");
|
430
|
+
|
431
|
+
cif = closure->cif;
|
432
|
+
|
433
|
+
/* If returning via structure, callee will write to our pointer. */
|
434
|
+
if (cif->flags == FFI_TYPE_STRUCT)
|
435
|
+
rvalue = (void *)r28;
|
436
|
+
else
|
437
|
+
rvalue = &ret[0];
|
438
|
+
|
439
|
+
avalue = (void **)alloca(cif->nargs * FFI_SIZEOF_ARG);
|
440
|
+
avn = cif->nargs;
|
441
|
+
p_arg = cif->arg_types;
|
442
|
+
|
443
|
+
for (i = 0; i < avn; i++)
|
444
|
+
{
|
445
|
+
int type = (*p_arg)->type;
|
446
|
+
|
447
|
+
switch (type)
|
448
|
+
{
|
449
|
+
case FFI_TYPE_SINT8:
|
450
|
+
case FFI_TYPE_UINT8:
|
451
|
+
case FFI_TYPE_SINT16:
|
452
|
+
case FFI_TYPE_UINT16:
|
453
|
+
case FFI_TYPE_SINT32:
|
454
|
+
case FFI_TYPE_UINT32:
|
455
|
+
case FFI_TYPE_POINTER:
|
456
|
+
avalue[i] = (char *)(stack - slot) + sizeof(UINT32) - (*p_arg)->size;
|
457
|
+
break;
|
458
|
+
|
459
|
+
case FFI_TYPE_SINT64:
|
460
|
+
case FFI_TYPE_UINT64:
|
461
|
+
slot += (slot & 1) ? 1 : 2;
|
462
|
+
avalue[i] = (void *)(stack - slot);
|
463
|
+
break;
|
464
|
+
|
465
|
+
case FFI_TYPE_FLOAT:
|
466
|
+
#ifdef PA_LINUX
|
467
|
+
/* The closure call is indirect. In Linux, floating point
|
468
|
+
arguments in indirect calls with a prototype are passed
|
469
|
+
in the floating point registers instead of the general
|
470
|
+
registers. So, we need to replace what was previously
|
471
|
+
stored in the current slot with the value in the
|
472
|
+
corresponding floating point register. */
|
473
|
+
switch (slot - FIRST_ARG_SLOT)
|
474
|
+
{
|
475
|
+
case 0: fstw(fr4, (void *)(stack - slot)); break;
|
476
|
+
case 1: fstw(fr5, (void *)(stack - slot)); break;
|
477
|
+
case 2: fstw(fr6, (void *)(stack - slot)); break;
|
478
|
+
case 3: fstw(fr7, (void *)(stack - slot)); break;
|
479
|
+
}
|
480
|
+
#endif
|
481
|
+
avalue[i] = (void *)(stack - slot);
|
482
|
+
break;
|
483
|
+
|
484
|
+
case FFI_TYPE_DOUBLE:
|
485
|
+
slot += (slot & 1) ? 1 : 2;
|
486
|
+
#ifdef PA_LINUX
|
487
|
+
/* See previous comment for FFI_TYPE_FLOAT. */
|
488
|
+
switch (slot - FIRST_ARG_SLOT)
|
489
|
+
{
|
490
|
+
case 1: fstd(fr5, (void *)(stack - slot)); break;
|
491
|
+
case 3: fstd(fr7, (void *)(stack - slot)); break;
|
492
|
+
}
|
493
|
+
#endif
|
494
|
+
avalue[i] = (void *)(stack - slot);
|
495
|
+
break;
|
496
|
+
|
497
|
+
#ifdef PA_HPUX
|
498
|
+
case FFI_TYPE_LONGDOUBLE:
|
499
|
+
/* Long doubles are treated like a big structure. */
|
500
|
+
avalue[i] = (void *) *(stack - slot);
|
501
|
+
break;
|
502
|
+
#endif
|
503
|
+
|
504
|
+
case FFI_TYPE_STRUCT:
|
505
|
+
/* Structs smaller or equal than 4 bytes are passed in one
|
506
|
+
register. Structs smaller or equal 8 bytes are passed in two
|
507
|
+
registers. Larger structures are passed by pointer. */
|
508
|
+
if((*p_arg)->size <= 4)
|
509
|
+
{
|
510
|
+
avalue[i] = (void *)(stack - slot) + sizeof(UINT32) -
|
511
|
+
(*p_arg)->size;
|
512
|
+
}
|
513
|
+
else if ((*p_arg)->size <= 8)
|
514
|
+
{
|
515
|
+
slot += (slot & 1) ? 1 : 2;
|
516
|
+
avalue[i] = (void *)(stack - slot) + sizeof(UINT64) -
|
517
|
+
(*p_arg)->size;
|
518
|
+
}
|
519
|
+
else
|
520
|
+
avalue[i] = (void *) *(stack - slot);
|
521
|
+
break;
|
522
|
+
|
523
|
+
default:
|
524
|
+
FFI_ASSERT(0);
|
525
|
+
}
|
526
|
+
|
527
|
+
slot++;
|
528
|
+
p_arg++;
|
529
|
+
}
|
530
|
+
|
531
|
+
/* Invoke the closure. */
|
532
|
+
(closure->fun) (cif, rvalue, avalue, closure->user_data);
|
533
|
+
|
534
|
+
debug(3, "after calling function, ret[0] = %08x, ret[1] = %08x\n", ret[0],
|
535
|
+
ret[1]);
|
536
|
+
|
537
|
+
/* Store the result using the lower 2 bytes of the flags. */
|
538
|
+
switch (cif->flags)
|
539
|
+
{
|
540
|
+
case FFI_TYPE_UINT8:
|
541
|
+
*(stack - FIRST_ARG_SLOT) = (UINT8)(ret[0] >> 24);
|
542
|
+
break;
|
543
|
+
case FFI_TYPE_SINT8:
|
544
|
+
*(stack - FIRST_ARG_SLOT) = (SINT8)(ret[0] >> 24);
|
545
|
+
break;
|
546
|
+
case FFI_TYPE_UINT16:
|
547
|
+
*(stack - FIRST_ARG_SLOT) = (UINT16)(ret[0] >> 16);
|
548
|
+
break;
|
549
|
+
case FFI_TYPE_SINT16:
|
550
|
+
*(stack - FIRST_ARG_SLOT) = (SINT16)(ret[0] >> 16);
|
551
|
+
break;
|
552
|
+
case FFI_TYPE_INT:
|
553
|
+
case FFI_TYPE_SINT32:
|
554
|
+
case FFI_TYPE_UINT32:
|
555
|
+
*(stack - FIRST_ARG_SLOT) = ret[0];
|
556
|
+
break;
|
557
|
+
case FFI_TYPE_SINT64:
|
558
|
+
case FFI_TYPE_UINT64:
|
559
|
+
*(stack - FIRST_ARG_SLOT) = ret[0];
|
560
|
+
*(stack - FIRST_ARG_SLOT - 1) = ret[1];
|
561
|
+
break;
|
562
|
+
|
563
|
+
case FFI_TYPE_DOUBLE:
|
564
|
+
fldd(rvalue, fr4);
|
565
|
+
break;
|
566
|
+
|
567
|
+
case FFI_TYPE_FLOAT:
|
568
|
+
fldw(rvalue, fr4);
|
569
|
+
break;
|
570
|
+
|
571
|
+
case FFI_TYPE_STRUCT:
|
572
|
+
/* Don't need a return value, done by caller. */
|
573
|
+
break;
|
574
|
+
|
575
|
+
case FFI_TYPE_SMALL_STRUCT2:
|
576
|
+
case FFI_TYPE_SMALL_STRUCT3:
|
577
|
+
case FFI_TYPE_SMALL_STRUCT4:
|
578
|
+
tmp = (void*)(stack - FIRST_ARG_SLOT);
|
579
|
+
tmp += 4 - cif->rtype->size;
|
580
|
+
memcpy((void*)tmp, &ret[0], cif->rtype->size);
|
581
|
+
break;
|
582
|
+
|
583
|
+
case FFI_TYPE_SMALL_STRUCT5:
|
584
|
+
case FFI_TYPE_SMALL_STRUCT6:
|
585
|
+
case FFI_TYPE_SMALL_STRUCT7:
|
586
|
+
case FFI_TYPE_SMALL_STRUCT8:
|
587
|
+
{
|
588
|
+
unsigned int ret2[2];
|
589
|
+
int off;
|
590
|
+
|
591
|
+
/* Right justify ret[0] and ret[1] */
|
592
|
+
switch (cif->flags)
|
593
|
+
{
|
594
|
+
case FFI_TYPE_SMALL_STRUCT5: off = 3; break;
|
595
|
+
case FFI_TYPE_SMALL_STRUCT6: off = 2; break;
|
596
|
+
case FFI_TYPE_SMALL_STRUCT7: off = 1; break;
|
597
|
+
default: off = 0; break;
|
598
|
+
}
|
599
|
+
|
600
|
+
memset (ret2, 0, sizeof (ret2));
|
601
|
+
memcpy ((char *)ret2 + off, ret, 8 - off);
|
602
|
+
|
603
|
+
*(stack - FIRST_ARG_SLOT) = ret2[0];
|
604
|
+
*(stack - FIRST_ARG_SLOT - 1) = ret2[1];
|
605
|
+
}
|
606
|
+
break;
|
607
|
+
|
608
|
+
case FFI_TYPE_POINTER:
|
609
|
+
case FFI_TYPE_VOID:
|
610
|
+
break;
|
611
|
+
|
612
|
+
default:
|
613
|
+
debug(0, "assert with cif->flags: %d\n",cif->flags);
|
614
|
+
FFI_ASSERT(0);
|
615
|
+
break;
|
616
|
+
}
|
617
|
+
return FFI_OK;
|
618
|
+
}
|
619
|
+
|
620
|
+
/* Fill in a closure to refer to the specified fun and user_data.
|
621
|
+
cif specifies the argument and result types for fun.
|
622
|
+
The cif must already be prep'ed. */
|
623
|
+
|
624
|
+
extern void ffi_closure_pa32(void);
|
625
|
+
|
626
|
+
ffi_status
|
627
|
+
ffi_prep_closure_loc (ffi_closure* closure,
|
628
|
+
ffi_cif* cif,
|
629
|
+
void (*fun)(ffi_cif*,void*,void**,void*),
|
630
|
+
void *user_data,
|
631
|
+
void *codeloc)
|
632
|
+
{
|
633
|
+
UINT32 *tramp = (UINT32 *)(closure->tramp);
|
634
|
+
#ifdef PA_HPUX
|
635
|
+
UINT32 *tmp;
|
636
|
+
#endif
|
637
|
+
|
638
|
+
if (cif->abi != FFI_PA32)
|
639
|
+
return FFI_BAD_ABI;
|
640
|
+
|
641
|
+
/* Make a small trampoline that will branch to our
|
642
|
+
handler function. Use PC-relative addressing. */
|
643
|
+
|
644
|
+
#ifdef PA_LINUX
|
645
|
+
tramp[0] = 0xeaa00000; /* b,l .+8,%r21 ; %r21 <- pc+8 */
|
646
|
+
tramp[1] = 0xd6a01c1e; /* depi 0,31,2,%r21 ; mask priv bits */
|
647
|
+
tramp[2] = 0x4aa10028; /* ldw 20(%r21),%r1 ; load plabel */
|
648
|
+
tramp[3] = 0x36b53ff1; /* ldo -8(%r21),%r21 ; get closure addr */
|
649
|
+
tramp[4] = 0x0c201096; /* ldw 0(%r1),%r22 ; address of handler */
|
650
|
+
tramp[5] = 0xeac0c000; /* bv%r0(%r22) ; branch to handler */
|
651
|
+
tramp[6] = 0x0c281093; /* ldw 4(%r1),%r19 ; GP of handler */
|
652
|
+
tramp[7] = ((UINT32)(ffi_closure_pa32) & ~2);
|
653
|
+
|
654
|
+
/* Flush d/icache -- have to flush up 2 two lines because of
|
655
|
+
alignment. */
|
656
|
+
__asm__ volatile(
|
657
|
+
"fdc 0(%0)\n\t"
|
658
|
+
"fdc %1(%0)\n\t"
|
659
|
+
"fic 0(%%sr4, %0)\n\t"
|
660
|
+
"fic %1(%%sr4, %0)\n\t"
|
661
|
+
"sync\n\t"
|
662
|
+
"nop\n\t"
|
663
|
+
"nop\n\t"
|
664
|
+
"nop\n\t"
|
665
|
+
"nop\n\t"
|
666
|
+
"nop\n\t"
|
667
|
+
"nop\n\t"
|
668
|
+
"nop\n"
|
669
|
+
:
|
670
|
+
: "r"((unsigned long)tramp & ~31),
|
671
|
+
"r"(32 /* stride */)
|
672
|
+
: "memory");
|
673
|
+
#endif
|
674
|
+
|
675
|
+
#ifdef PA_HPUX
|
676
|
+
tramp[0] = 0xeaa00000; /* b,l .+8,%r21 ; %r21 <- pc+8 */
|
677
|
+
tramp[1] = 0xd6a01c1e; /* depi 0,31,2,%r21 ; mask priv bits */
|
678
|
+
tramp[2] = 0x4aa10038; /* ldw 28(%r21),%r1 ; load plabel */
|
679
|
+
tramp[3] = 0x36b53ff1; /* ldo -8(%r21),%r21 ; get closure addr */
|
680
|
+
tramp[4] = 0x0c201096; /* ldw 0(%r1),%r22 ; address of handler */
|
681
|
+
tramp[5] = 0x02c010b4; /* ldsid (%r22),%r20 ; load space id */
|
682
|
+
tramp[6] = 0x00141820; /* mtsp %r20,%sr0 ; into %sr0 */
|
683
|
+
tramp[7] = 0xe2c00000; /* be 0(%sr0,%r22) ; branch to handler */
|
684
|
+
tramp[8] = 0x0c281093; /* ldw 4(%r1),%r19 ; GP of handler */
|
685
|
+
tramp[9] = ((UINT32)(ffi_closure_pa32) & ~2);
|
686
|
+
|
687
|
+
/* Flush d/icache -- have to flush three lines because of alignment. */
|
688
|
+
__asm__ volatile(
|
689
|
+
"copy %1,%0\n\t"
|
690
|
+
"fdc,m %2(%0)\n\t"
|
691
|
+
"fdc,m %2(%0)\n\t"
|
692
|
+
"fdc,m %2(%0)\n\t"
|
693
|
+
"ldsid (%1),%0\n\t"
|
694
|
+
"mtsp %0,%%sr0\n\t"
|
695
|
+
"copy %1,%0\n\t"
|
696
|
+
"fic,m %2(%%sr0,%0)\n\t"
|
697
|
+
"fic,m %2(%%sr0,%0)\n\t"
|
698
|
+
"fic,m %2(%%sr0,%0)\n\t"
|
699
|
+
"sync\n\t"
|
700
|
+
"nop\n\t"
|
701
|
+
"nop\n\t"
|
702
|
+
"nop\n\t"
|
703
|
+
"nop\n\t"
|
704
|
+
"nop\n\t"
|
705
|
+
"nop\n\t"
|
706
|
+
"nop\n"
|
707
|
+
: "=&r" ((unsigned long)tmp)
|
708
|
+
: "r" ((unsigned long)tramp & ~31),
|
709
|
+
"r" (32/* stride */)
|
710
|
+
: "memory");
|
711
|
+
#endif
|
712
|
+
|
713
|
+
closure->cif = cif;
|
714
|
+
closure->user_data = user_data;
|
715
|
+
closure->fun = fun;
|
716
|
+
|
717
|
+
return FFI_OK;
|
718
|
+
}
|
719
|
+
#endif
|