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,266 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
ffi.c - Copyright (c) 2013 Synopsys, Inc. (www.synopsys.com)
|
3
|
+
|
4
|
+
ARC 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, 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 RENESAS TECHNOLOGY 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
|
+
#include <ffi.h>
|
27
|
+
#include <ffi_common.h>
|
28
|
+
|
29
|
+
#include <stdlib.h>
|
30
|
+
#include <stdint.h>
|
31
|
+
|
32
|
+
#include <sys/cachectl.h>
|
33
|
+
|
34
|
+
/* for little endian ARC, the code is in fact stored as mixed endian for
|
35
|
+
performance reasons */
|
36
|
+
#if __BIG_ENDIAN__
|
37
|
+
#define CODE_ENDIAN(x) (x)
|
38
|
+
#else
|
39
|
+
#define CODE_ENDIAN(x) ( (((uint32_t) (x)) << 16) | (((uint32_t) (x)) >> 16))
|
40
|
+
#endif
|
41
|
+
|
42
|
+
/* ffi_prep_args is called by the assembly routine once stack
|
43
|
+
space has been allocated for the function's arguments. */
|
44
|
+
|
45
|
+
void
|
46
|
+
ffi_prep_args (char *stack, extended_cif * ecif)
|
47
|
+
{
|
48
|
+
unsigned int i;
|
49
|
+
void **p_argv;
|
50
|
+
char *argp;
|
51
|
+
ffi_type **p_arg;
|
52
|
+
|
53
|
+
argp = stack;
|
54
|
+
|
55
|
+
if (ecif->cif->rtype->type == FFI_TYPE_STRUCT)
|
56
|
+
{
|
57
|
+
*(void **) argp = ecif->rvalue;
|
58
|
+
argp += 4;
|
59
|
+
}
|
60
|
+
|
61
|
+
p_argv = ecif->avalue;
|
62
|
+
|
63
|
+
for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types;
|
64
|
+
(i != 0); i--, p_arg++)
|
65
|
+
{
|
66
|
+
size_t z;
|
67
|
+
int alignment;
|
68
|
+
|
69
|
+
/* align alignment to 4 */
|
70
|
+
alignment = (((*p_arg)->alignment - 1) | 3) + 1;
|
71
|
+
|
72
|
+
/* Align if necessary. */
|
73
|
+
if ((alignment - 1) & (unsigned) argp)
|
74
|
+
argp = (char *) FFI_ALIGN (argp, alignment);
|
75
|
+
|
76
|
+
z = (*p_arg)->size;
|
77
|
+
if (z < sizeof (int))
|
78
|
+
{
|
79
|
+
z = sizeof (int);
|
80
|
+
|
81
|
+
switch ((*p_arg)->type)
|
82
|
+
{
|
83
|
+
case FFI_TYPE_SINT8:
|
84
|
+
*(signed int *) argp = (signed int) *(SINT8 *) (*p_argv);
|
85
|
+
break;
|
86
|
+
|
87
|
+
case FFI_TYPE_UINT8:
|
88
|
+
*(unsigned int *) argp = (unsigned int) *(UINT8 *) (*p_argv);
|
89
|
+
break;
|
90
|
+
|
91
|
+
case FFI_TYPE_SINT16:
|
92
|
+
*(signed int *) argp = (signed int) *(SINT16 *) (*p_argv);
|
93
|
+
break;
|
94
|
+
|
95
|
+
case FFI_TYPE_UINT16:
|
96
|
+
*(unsigned int *) argp = (unsigned int) *(UINT16 *) (*p_argv);
|
97
|
+
break;
|
98
|
+
|
99
|
+
case FFI_TYPE_STRUCT:
|
100
|
+
memcpy (argp, *p_argv, (*p_arg)->size);
|
101
|
+
break;
|
102
|
+
|
103
|
+
default:
|
104
|
+
FFI_ASSERT (0);
|
105
|
+
}
|
106
|
+
}
|
107
|
+
else if (z == sizeof (int))
|
108
|
+
{
|
109
|
+
*(unsigned int *) argp = (unsigned int) *(UINT32 *) (*p_argv);
|
110
|
+
}
|
111
|
+
else
|
112
|
+
{
|
113
|
+
if ((*p_arg)->type == FFI_TYPE_STRUCT)
|
114
|
+
{
|
115
|
+
memcpy (argp, *p_argv, z);
|
116
|
+
}
|
117
|
+
else
|
118
|
+
{
|
119
|
+
/* Double or long long 64bit. */
|
120
|
+
memcpy (argp, *p_argv, z);
|
121
|
+
}
|
122
|
+
}
|
123
|
+
p_argv++;
|
124
|
+
argp += z;
|
125
|
+
}
|
126
|
+
|
127
|
+
return;
|
128
|
+
}
|
129
|
+
|
130
|
+
/* Perform machine dependent cif processing. */
|
131
|
+
ffi_status
|
132
|
+
ffi_prep_cif_machdep (ffi_cif * cif)
|
133
|
+
{
|
134
|
+
/* Set the return type flag. */
|
135
|
+
switch (cif->rtype->type)
|
136
|
+
{
|
137
|
+
case FFI_TYPE_VOID:
|
138
|
+
cif->flags = (unsigned) cif->rtype->type;
|
139
|
+
break;
|
140
|
+
|
141
|
+
case FFI_TYPE_STRUCT:
|
142
|
+
cif->flags = (unsigned) cif->rtype->type;
|
143
|
+
break;
|
144
|
+
|
145
|
+
case FFI_TYPE_SINT64:
|
146
|
+
case FFI_TYPE_UINT64:
|
147
|
+
case FFI_TYPE_DOUBLE:
|
148
|
+
cif->flags = FFI_TYPE_DOUBLE;
|
149
|
+
break;
|
150
|
+
|
151
|
+
case FFI_TYPE_FLOAT:
|
152
|
+
default:
|
153
|
+
cif->flags = FFI_TYPE_INT;
|
154
|
+
break;
|
155
|
+
}
|
156
|
+
|
157
|
+
return FFI_OK;
|
158
|
+
}
|
159
|
+
|
160
|
+
extern void ffi_call_ARCompact (void (*)(char *, extended_cif *),
|
161
|
+
extended_cif *, unsigned, unsigned,
|
162
|
+
unsigned *, void (*fn) (void));
|
163
|
+
|
164
|
+
void
|
165
|
+
ffi_call (ffi_cif * cif, void (*fn) (void), void *rvalue, void **avalue)
|
166
|
+
{
|
167
|
+
extended_cif ecif;
|
168
|
+
|
169
|
+
ecif.cif = cif;
|
170
|
+
ecif.avalue = avalue;
|
171
|
+
|
172
|
+
/* If the return value is a struct and we don't have
|
173
|
+
a return value address then we need to make one. */
|
174
|
+
if ((rvalue == NULL) && (cif->rtype->type == FFI_TYPE_STRUCT))
|
175
|
+
{
|
176
|
+
ecif.rvalue = alloca (cif->rtype->size);
|
177
|
+
}
|
178
|
+
else
|
179
|
+
ecif.rvalue = rvalue;
|
180
|
+
|
181
|
+
switch (cif->abi)
|
182
|
+
{
|
183
|
+
case FFI_ARCOMPACT:
|
184
|
+
ffi_call_ARCompact (ffi_prep_args, &ecif, cif->bytes,
|
185
|
+
cif->flags, ecif.rvalue, fn);
|
186
|
+
break;
|
187
|
+
|
188
|
+
default:
|
189
|
+
FFI_ASSERT (0);
|
190
|
+
break;
|
191
|
+
}
|
192
|
+
}
|
193
|
+
|
194
|
+
int
|
195
|
+
ffi_closure_inner_ARCompact (ffi_closure * closure, void *rvalue,
|
196
|
+
ffi_arg * args)
|
197
|
+
{
|
198
|
+
void **arg_area, **p_argv;
|
199
|
+
ffi_cif *cif = closure->cif;
|
200
|
+
char *argp = (char *) args;
|
201
|
+
ffi_type **p_argt;
|
202
|
+
int i;
|
203
|
+
|
204
|
+
arg_area = (void **) alloca (cif->nargs * sizeof (void *));
|
205
|
+
|
206
|
+
/* handle hidden argument */
|
207
|
+
if (cif->flags == FFI_TYPE_STRUCT)
|
208
|
+
{
|
209
|
+
rvalue = *(void **) argp;
|
210
|
+
argp += 4;
|
211
|
+
}
|
212
|
+
|
213
|
+
p_argv = arg_area;
|
214
|
+
|
215
|
+
for (i = 0, p_argt = cif->arg_types; i < cif->nargs;
|
216
|
+
i++, p_argt++, p_argv++)
|
217
|
+
{
|
218
|
+
size_t z;
|
219
|
+
int alignment;
|
220
|
+
|
221
|
+
/* align alignment to 4 */
|
222
|
+
alignment = (((*p_argt)->alignment - 1) | 3) + 1;
|
223
|
+
|
224
|
+
/* Align if necessary. */
|
225
|
+
if ((alignment - 1) & (unsigned) argp)
|
226
|
+
argp = (char *) FFI_ALIGN (argp, alignment);
|
227
|
+
|
228
|
+
z = (*p_argt)->size;
|
229
|
+
*p_argv = (void *) argp;
|
230
|
+
argp += z;
|
231
|
+
}
|
232
|
+
|
233
|
+
(closure->fun) (cif, rvalue, arg_area, closure->user_data);
|
234
|
+
|
235
|
+
return cif->flags;
|
236
|
+
}
|
237
|
+
|
238
|
+
extern void ffi_closure_ARCompact (void);
|
239
|
+
|
240
|
+
ffi_status
|
241
|
+
ffi_prep_closure_loc (ffi_closure * closure, ffi_cif * cif,
|
242
|
+
void (*fun) (ffi_cif *, void *, void **, void *),
|
243
|
+
void *user_data, void *codeloc)
|
244
|
+
{
|
245
|
+
uint32_t *tramp = (uint32_t *) & (closure->tramp[0]);
|
246
|
+
|
247
|
+
switch (cif->abi)
|
248
|
+
{
|
249
|
+
case FFI_ARCOMPACT:
|
250
|
+
FFI_ASSERT (tramp == codeloc);
|
251
|
+
tramp[0] = CODE_ENDIAN (0x200a1fc0); /* mov r8, pcl */
|
252
|
+
tramp[1] = CODE_ENDIAN (0x20200f80); /* j [long imm] */
|
253
|
+
tramp[2] = CODE_ENDIAN (ffi_closure_ARCompact);
|
254
|
+
break;
|
255
|
+
|
256
|
+
default:
|
257
|
+
return FFI_BAD_ABI;
|
258
|
+
}
|
259
|
+
|
260
|
+
closure->cif = cif;
|
261
|
+
closure->fun = fun;
|
262
|
+
closure->user_data = user_data;
|
263
|
+
cacheflush (codeloc, FFI_TRAMPOLINE_SIZE, BCACHE);
|
264
|
+
|
265
|
+
return FFI_OK;
|
266
|
+
}
|
@@ -0,0 +1,53 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
ffitarget.h - Copyright (c) 2012 Anthony Green
|
3
|
+
Copyright (c) 2013 Synopsys, Inc. (www.synopsys.com)
|
4
|
+
Target configuration macros for ARC.
|
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 RENESAS TECHNOLOGY 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
|
+
|
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
|
+
/* ---- Generic type definitions ----------------------------------------- */
|
35
|
+
|
36
|
+
#ifndef LIBFFI_ASM
|
37
|
+
typedef unsigned long ffi_arg;
|
38
|
+
typedef signed long ffi_sarg;
|
39
|
+
|
40
|
+
typedef enum ffi_abi
|
41
|
+
{
|
42
|
+
FFI_FIRST_ABI = 0,
|
43
|
+
FFI_ARCOMPACT,
|
44
|
+
FFI_LAST_ABI,
|
45
|
+
FFI_DEFAULT_ABI = FFI_ARCOMPACT
|
46
|
+
} ffi_abi;
|
47
|
+
#endif
|
48
|
+
|
49
|
+
#define FFI_CLOSURES 1
|
50
|
+
#define FFI_TRAMPOLINE_SIZE 12
|
51
|
+
#define FFI_NATIVE_RAW_API 0
|
52
|
+
|
53
|
+
#endif
|
@@ -0,0 +1,819 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
ffi.c - Copyright (c) 2011 Timothy Wall
|
3
|
+
Copyright (c) 2011 Plausible Labs Cooperative, Inc.
|
4
|
+
Copyright (c) 2011 Anthony Green
|
5
|
+
Copyright (c) 2011 Free Software Foundation
|
6
|
+
Copyright (c) 1998, 2008, 2011 Red Hat, Inc.
|
7
|
+
|
8
|
+
ARM Foreign Function Interface
|
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 <fficonfig.h>
|
32
|
+
#include <ffi.h>
|
33
|
+
#include <ffi_common.h>
|
34
|
+
#include <stdint.h>
|
35
|
+
#include <stdlib.h>
|
36
|
+
#include "internal.h"
|
37
|
+
|
38
|
+
#if FFI_EXEC_TRAMPOLINE_TABLE
|
39
|
+
|
40
|
+
#ifdef __MACH__
|
41
|
+
#include <mach/machine/vm_param.h>
|
42
|
+
#endif
|
43
|
+
|
44
|
+
#else
|
45
|
+
extern unsigned int ffi_arm_trampoline[2] FFI_HIDDEN;
|
46
|
+
#endif
|
47
|
+
|
48
|
+
/* Forward declares. */
|
49
|
+
static int vfp_type_p (const ffi_type *);
|
50
|
+
static void layout_vfp_args (ffi_cif *);
|
51
|
+
|
52
|
+
static void *
|
53
|
+
ffi_align (ffi_type *ty, void *p)
|
54
|
+
{
|
55
|
+
/* Align if necessary */
|
56
|
+
size_t alignment;
|
57
|
+
#ifdef _WIN32_WCE
|
58
|
+
alignment = 4;
|
59
|
+
#else
|
60
|
+
alignment = ty->alignment;
|
61
|
+
if (alignment < 4)
|
62
|
+
alignment = 4;
|
63
|
+
#endif
|
64
|
+
return (void *) FFI_ALIGN (p, alignment);
|
65
|
+
}
|
66
|
+
|
67
|
+
static size_t
|
68
|
+
ffi_put_arg (ffi_type *ty, void *src, void *dst)
|
69
|
+
{
|
70
|
+
size_t z = ty->size;
|
71
|
+
|
72
|
+
switch (ty->type)
|
73
|
+
{
|
74
|
+
case FFI_TYPE_SINT8:
|
75
|
+
*(UINT32 *)dst = *(SINT8 *)src;
|
76
|
+
break;
|
77
|
+
case FFI_TYPE_UINT8:
|
78
|
+
*(UINT32 *)dst = *(UINT8 *)src;
|
79
|
+
break;
|
80
|
+
case FFI_TYPE_SINT16:
|
81
|
+
*(UINT32 *)dst = *(SINT16 *)src;
|
82
|
+
break;
|
83
|
+
case FFI_TYPE_UINT16:
|
84
|
+
*(UINT32 *)dst = *(UINT16 *)src;
|
85
|
+
break;
|
86
|
+
|
87
|
+
case FFI_TYPE_INT:
|
88
|
+
case FFI_TYPE_SINT32:
|
89
|
+
case FFI_TYPE_UINT32:
|
90
|
+
case FFI_TYPE_POINTER:
|
91
|
+
case FFI_TYPE_FLOAT:
|
92
|
+
*(UINT32 *)dst = *(UINT32 *)src;
|
93
|
+
break;
|
94
|
+
|
95
|
+
case FFI_TYPE_SINT64:
|
96
|
+
case FFI_TYPE_UINT64:
|
97
|
+
case FFI_TYPE_DOUBLE:
|
98
|
+
*(UINT64 *)dst = *(UINT64 *)src;
|
99
|
+
break;
|
100
|
+
|
101
|
+
case FFI_TYPE_STRUCT:
|
102
|
+
case FFI_TYPE_COMPLEX:
|
103
|
+
memcpy (dst, src, z);
|
104
|
+
break;
|
105
|
+
|
106
|
+
default:
|
107
|
+
abort();
|
108
|
+
}
|
109
|
+
|
110
|
+
return FFI_ALIGN (z, 4);
|
111
|
+
}
|
112
|
+
|
113
|
+
/* ffi_prep_args is called once stack space has been allocated
|
114
|
+
for the function's arguments.
|
115
|
+
|
116
|
+
The vfp_space parameter is the load area for VFP regs, the return
|
117
|
+
value is cif->vfp_used (word bitset of VFP regs used for passing
|
118
|
+
arguments). These are only used for the VFP hard-float ABI.
|
119
|
+
*/
|
120
|
+
static void
|
121
|
+
ffi_prep_args_SYSV (ffi_cif *cif, int flags, void *rvalue,
|
122
|
+
void **avalue, char *argp)
|
123
|
+
{
|
124
|
+
ffi_type **arg_types = cif->arg_types;
|
125
|
+
int i, n;
|
126
|
+
|
127
|
+
if (flags == ARM_TYPE_STRUCT)
|
128
|
+
{
|
129
|
+
*(void **) argp = rvalue;
|
130
|
+
argp += 4;
|
131
|
+
}
|
132
|
+
|
133
|
+
for (i = 0, n = cif->nargs; i < n; i++)
|
134
|
+
{
|
135
|
+
ffi_type *ty = arg_types[i];
|
136
|
+
argp = ffi_align (ty, argp);
|
137
|
+
argp += ffi_put_arg (ty, avalue[i], argp);
|
138
|
+
}
|
139
|
+
}
|
140
|
+
|
141
|
+
static void
|
142
|
+
ffi_prep_args_VFP (ffi_cif *cif, int flags, void *rvalue,
|
143
|
+
void **avalue, char *stack, char *vfp_space)
|
144
|
+
{
|
145
|
+
ffi_type **arg_types = cif->arg_types;
|
146
|
+
int i, n, vi = 0;
|
147
|
+
char *argp, *regp, *eo_regp;
|
148
|
+
char stack_used = 0;
|
149
|
+
char done_with_regs = 0;
|
150
|
+
|
151
|
+
/* The first 4 words on the stack are used for values
|
152
|
+
passed in core registers. */
|
153
|
+
regp = stack;
|
154
|
+
eo_regp = argp = regp + 16;
|
155
|
+
|
156
|
+
/* If the function returns an FFI_TYPE_STRUCT in memory,
|
157
|
+
that address is passed in r0 to the function. */
|
158
|
+
if (flags == ARM_TYPE_STRUCT)
|
159
|
+
{
|
160
|
+
*(void **) regp = rvalue;
|
161
|
+
regp += 4;
|
162
|
+
}
|
163
|
+
|
164
|
+
for (i = 0, n = cif->nargs; i < n; i++)
|
165
|
+
{
|
166
|
+
ffi_type *ty = arg_types[i];
|
167
|
+
void *a = avalue[i];
|
168
|
+
int is_vfp_type = vfp_type_p (ty);
|
169
|
+
|
170
|
+
/* Allocated in VFP registers. */
|
171
|
+
if (vi < cif->vfp_nargs && is_vfp_type)
|
172
|
+
{
|
173
|
+
char *vfp_slot = vfp_space + cif->vfp_args[vi++] * 4;
|
174
|
+
ffi_put_arg (ty, a, vfp_slot);
|
175
|
+
continue;
|
176
|
+
}
|
177
|
+
/* Try allocating in core registers. */
|
178
|
+
else if (!done_with_regs && !is_vfp_type)
|
179
|
+
{
|
180
|
+
char *tregp = ffi_align (ty, regp);
|
181
|
+
size_t size = ty->size;
|
182
|
+
size = (size < 4) ? 4 : size; // pad
|
183
|
+
/* Check if there is space left in the aligned register
|
184
|
+
area to place the argument. */
|
185
|
+
if (tregp + size <= eo_regp)
|
186
|
+
{
|
187
|
+
regp = tregp + ffi_put_arg (ty, a, tregp);
|
188
|
+
done_with_regs = (regp == argp);
|
189
|
+
// ensure we did not write into the stack area
|
190
|
+
FFI_ASSERT (regp <= argp);
|
191
|
+
continue;
|
192
|
+
}
|
193
|
+
/* In case there are no arguments in the stack area yet,
|
194
|
+
the argument is passed in the remaining core registers
|
195
|
+
and on the stack. */
|
196
|
+
else if (!stack_used)
|
197
|
+
{
|
198
|
+
stack_used = 1;
|
199
|
+
done_with_regs = 1;
|
200
|
+
argp = tregp + ffi_put_arg (ty, a, tregp);
|
201
|
+
FFI_ASSERT (eo_regp < argp);
|
202
|
+
continue;
|
203
|
+
}
|
204
|
+
}
|
205
|
+
/* Base case, arguments are passed on the stack */
|
206
|
+
stack_used = 1;
|
207
|
+
argp = ffi_align (ty, argp);
|
208
|
+
argp += ffi_put_arg (ty, a, argp);
|
209
|
+
}
|
210
|
+
}
|
211
|
+
|
212
|
+
/* Perform machine dependent cif processing */
|
213
|
+
ffi_status
|
214
|
+
ffi_prep_cif_machdep (ffi_cif *cif)
|
215
|
+
{
|
216
|
+
int flags = 0, cabi = cif->abi;
|
217
|
+
size_t bytes = cif->bytes;
|
218
|
+
|
219
|
+
/* Map out the register placements of VFP register args. The VFP
|
220
|
+
hard-float calling conventions are slightly more sophisticated
|
221
|
+
than the base calling conventions, so we do it here instead of
|
222
|
+
in ffi_prep_args(). */
|
223
|
+
if (cabi == FFI_VFP)
|
224
|
+
layout_vfp_args (cif);
|
225
|
+
|
226
|
+
/* Set the return type flag */
|
227
|
+
switch (cif->rtype->type)
|
228
|
+
{
|
229
|
+
case FFI_TYPE_VOID:
|
230
|
+
flags = ARM_TYPE_VOID;
|
231
|
+
break;
|
232
|
+
|
233
|
+
case FFI_TYPE_INT:
|
234
|
+
case FFI_TYPE_UINT8:
|
235
|
+
case FFI_TYPE_SINT8:
|
236
|
+
case FFI_TYPE_UINT16:
|
237
|
+
case FFI_TYPE_SINT16:
|
238
|
+
case FFI_TYPE_UINT32:
|
239
|
+
case FFI_TYPE_SINT32:
|
240
|
+
case FFI_TYPE_POINTER:
|
241
|
+
flags = ARM_TYPE_INT;
|
242
|
+
break;
|
243
|
+
|
244
|
+
case FFI_TYPE_SINT64:
|
245
|
+
case FFI_TYPE_UINT64:
|
246
|
+
flags = ARM_TYPE_INT64;
|
247
|
+
break;
|
248
|
+
|
249
|
+
case FFI_TYPE_FLOAT:
|
250
|
+
flags = (cabi == FFI_VFP ? ARM_TYPE_VFP_S : ARM_TYPE_INT);
|
251
|
+
break;
|
252
|
+
case FFI_TYPE_DOUBLE:
|
253
|
+
flags = (cabi == FFI_VFP ? ARM_TYPE_VFP_D : ARM_TYPE_INT64);
|
254
|
+
break;
|
255
|
+
|
256
|
+
case FFI_TYPE_STRUCT:
|
257
|
+
case FFI_TYPE_COMPLEX:
|
258
|
+
if (cabi == FFI_VFP)
|
259
|
+
{
|
260
|
+
int h = vfp_type_p (cif->rtype);
|
261
|
+
|
262
|
+
flags = ARM_TYPE_VFP_N;
|
263
|
+
if (h == 0x100 + FFI_TYPE_FLOAT)
|
264
|
+
flags = ARM_TYPE_VFP_S;
|
265
|
+
if (h == 0x100 + FFI_TYPE_DOUBLE)
|
266
|
+
flags = ARM_TYPE_VFP_D;
|
267
|
+
if (h != 0)
|
268
|
+
break;
|
269
|
+
}
|
270
|
+
|
271
|
+
/* A Composite Type not larger than 4 bytes is returned in r0.
|
272
|
+
A Composite Type larger than 4 bytes, or whose size cannot
|
273
|
+
be determined statically ... is stored in memory at an
|
274
|
+
address passed [in r0]. */
|
275
|
+
if (cif->rtype->size <= 4)
|
276
|
+
flags = ARM_TYPE_INT;
|
277
|
+
else
|
278
|
+
{
|
279
|
+
flags = ARM_TYPE_STRUCT;
|
280
|
+
bytes += 4;
|
281
|
+
}
|
282
|
+
break;
|
283
|
+
|
284
|
+
default:
|
285
|
+
abort();
|
286
|
+
}
|
287
|
+
|
288
|
+
/* Round the stack up to a multiple of 8 bytes. This isn't needed
|
289
|
+
everywhere, but it is on some platforms, and it doesn't harm anything
|
290
|
+
when it isn't needed. */
|
291
|
+
bytes = FFI_ALIGN (bytes, 8);
|
292
|
+
|
293
|
+
/* Minimum stack space is the 4 register arguments that we pop. */
|
294
|
+
if (bytes < 4*4)
|
295
|
+
bytes = 4*4;
|
296
|
+
|
297
|
+
cif->bytes = bytes;
|
298
|
+
cif->flags = flags;
|
299
|
+
|
300
|
+
return FFI_OK;
|
301
|
+
}
|
302
|
+
|
303
|
+
/* Perform machine dependent cif processing for variadic calls */
|
304
|
+
ffi_status
|
305
|
+
ffi_prep_cif_machdep_var (ffi_cif * cif,
|
306
|
+
unsigned int nfixedargs, unsigned int ntotalargs)
|
307
|
+
{
|
308
|
+
/* VFP variadic calls actually use the SYSV ABI */
|
309
|
+
if (cif->abi == FFI_VFP)
|
310
|
+
cif->abi = FFI_SYSV;
|
311
|
+
|
312
|
+
return ffi_prep_cif_machdep (cif);
|
313
|
+
}
|
314
|
+
|
315
|
+
/* Prototypes for assembly functions, in sysv.S. */
|
316
|
+
|
317
|
+
struct call_frame
|
318
|
+
{
|
319
|
+
void *fp;
|
320
|
+
void *lr;
|
321
|
+
void *rvalue;
|
322
|
+
int flags;
|
323
|
+
void *closure;
|
324
|
+
};
|
325
|
+
|
326
|
+
extern void ffi_call_SYSV (void *stack, struct call_frame *,
|
327
|
+
void (*fn) (void)) FFI_HIDDEN;
|
328
|
+
extern void ffi_call_VFP (void *vfp_space, struct call_frame *,
|
329
|
+
void (*fn) (void), unsigned vfp_used) FFI_HIDDEN;
|
330
|
+
|
331
|
+
static void
|
332
|
+
ffi_call_int (ffi_cif * cif, void (*fn) (void), void *rvalue,
|
333
|
+
void **avalue, void *closure)
|
334
|
+
{
|
335
|
+
int flags = cif->flags;
|
336
|
+
ffi_type *rtype = cif->rtype;
|
337
|
+
size_t bytes, rsize, vfp_size;
|
338
|
+
char *stack, *vfp_space, *new_rvalue;
|
339
|
+
struct call_frame *frame;
|
340
|
+
|
341
|
+
rsize = 0;
|
342
|
+
if (rvalue == NULL)
|
343
|
+
{
|
344
|
+
/* If the return value is a struct and we don't have a return
|
345
|
+
value address then we need to make one. Otherwise the return
|
346
|
+
value is in registers and we can ignore them. */
|
347
|
+
if (flags == ARM_TYPE_STRUCT)
|
348
|
+
rsize = rtype->size;
|
349
|
+
else
|
350
|
+
flags = ARM_TYPE_VOID;
|
351
|
+
}
|
352
|
+
else if (flags == ARM_TYPE_VFP_N)
|
353
|
+
{
|
354
|
+
/* Largest case is double x 4. */
|
355
|
+
rsize = 32;
|
356
|
+
}
|
357
|
+
else if (flags == ARM_TYPE_INT && rtype->type == FFI_TYPE_STRUCT)
|
358
|
+
rsize = 4;
|
359
|
+
|
360
|
+
/* Largest case. */
|
361
|
+
vfp_size = (cif->abi == FFI_VFP && cif->vfp_used ? 8*8: 0);
|
362
|
+
|
363
|
+
bytes = cif->bytes;
|
364
|
+
stack = alloca (vfp_size + bytes + sizeof(struct call_frame) + rsize);
|
365
|
+
|
366
|
+
vfp_space = NULL;
|
367
|
+
if (vfp_size)
|
368
|
+
{
|
369
|
+
vfp_space = stack;
|
370
|
+
stack += vfp_size;
|
371
|
+
}
|
372
|
+
|
373
|
+
frame = (struct call_frame *)(stack + bytes);
|
374
|
+
|
375
|
+
new_rvalue = rvalue;
|
376
|
+
if (rsize)
|
377
|
+
new_rvalue = (void *)(frame + 1);
|
378
|
+
|
379
|
+
frame->rvalue = new_rvalue;
|
380
|
+
frame->flags = flags;
|
381
|
+
frame->closure = closure;
|
382
|
+
|
383
|
+
if (vfp_space)
|
384
|
+
{
|
385
|
+
ffi_prep_args_VFP (cif, flags, new_rvalue, avalue, stack, vfp_space);
|
386
|
+
ffi_call_VFP (vfp_space, frame, fn, cif->vfp_used);
|
387
|
+
}
|
388
|
+
else
|
389
|
+
{
|
390
|
+
ffi_prep_args_SYSV (cif, flags, new_rvalue, avalue, stack);
|
391
|
+
ffi_call_SYSV (stack, frame, fn);
|
392
|
+
}
|
393
|
+
|
394
|
+
if (rvalue && rvalue != new_rvalue)
|
395
|
+
memcpy (rvalue, new_rvalue, rtype->size);
|
396
|
+
}
|
397
|
+
|
398
|
+
void
|
399
|
+
ffi_call (ffi_cif *cif, void (*fn) (void), void *rvalue, void **avalue)
|
400
|
+
{
|
401
|
+
ffi_call_int (cif, fn, rvalue, avalue, NULL);
|
402
|
+
}
|
403
|
+
|
404
|
+
void
|
405
|
+
ffi_call_go (ffi_cif *cif, void (*fn) (void), void *rvalue,
|
406
|
+
void **avalue, void *closure)
|
407
|
+
{
|
408
|
+
ffi_call_int (cif, fn, rvalue, avalue, closure);
|
409
|
+
}
|
410
|
+
|
411
|
+
static void *
|
412
|
+
ffi_prep_incoming_args_SYSV (ffi_cif *cif, void *rvalue,
|
413
|
+
char *argp, void **avalue)
|
414
|
+
{
|
415
|
+
ffi_type **arg_types = cif->arg_types;
|
416
|
+
int i, n;
|
417
|
+
|
418
|
+
if (cif->flags == ARM_TYPE_STRUCT)
|
419
|
+
{
|
420
|
+
rvalue = *(void **) argp;
|
421
|
+
argp += 4;
|
422
|
+
}
|
423
|
+
else
|
424
|
+
{
|
425
|
+
if (cif->rtype->size && cif->rtype->size < 4)
|
426
|
+
*(uint32_t *) rvalue = 0;
|
427
|
+
}
|
428
|
+
|
429
|
+
for (i = 0, n = cif->nargs; i < n; i++)
|
430
|
+
{
|
431
|
+
ffi_type *ty = arg_types[i];
|
432
|
+
size_t z = ty->size;
|
433
|
+
|
434
|
+
argp = ffi_align (ty, argp);
|
435
|
+
avalue[i] = (void *) argp;
|
436
|
+
argp += z;
|
437
|
+
}
|
438
|
+
|
439
|
+
return rvalue;
|
440
|
+
}
|
441
|
+
|
442
|
+
static void *
|
443
|
+
ffi_prep_incoming_args_VFP (ffi_cif *cif, void *rvalue, char *stack,
|
444
|
+
char *vfp_space, void **avalue)
|
445
|
+
{
|
446
|
+
ffi_type **arg_types = cif->arg_types;
|
447
|
+
int i, n, vi = 0;
|
448
|
+
char *argp, *regp, *eo_regp;
|
449
|
+
char done_with_regs = 0;
|
450
|
+
char stack_used = 0;
|
451
|
+
|
452
|
+
regp = stack;
|
453
|
+
eo_regp = argp = regp + 16;
|
454
|
+
|
455
|
+
if (cif->flags == ARM_TYPE_STRUCT)
|
456
|
+
{
|
457
|
+
rvalue = *(void **) regp;
|
458
|
+
regp += 4;
|
459
|
+
}
|
460
|
+
|
461
|
+
for (i = 0, n = cif->nargs; i < n; i++)
|
462
|
+
{
|
463
|
+
ffi_type *ty = arg_types[i];
|
464
|
+
int is_vfp_type = vfp_type_p (ty);
|
465
|
+
size_t z = ty->size;
|
466
|
+
|
467
|
+
if (vi < cif->vfp_nargs && is_vfp_type)
|
468
|
+
{
|
469
|
+
avalue[i] = vfp_space + cif->vfp_args[vi++] * 4;
|
470
|
+
continue;
|
471
|
+
}
|
472
|
+
else if (!done_with_regs && !is_vfp_type)
|
473
|
+
{
|
474
|
+
char *tregp = ffi_align (ty, regp);
|
475
|
+
|
476
|
+
z = (z < 4) ? 4 : z; // pad
|
477
|
+
|
478
|
+
/* If the arguments either fits into the registers or uses registers
|
479
|
+
and stack, while we haven't read other things from the stack */
|
480
|
+
if (tregp + z <= eo_regp || !stack_used)
|
481
|
+
{
|
482
|
+
/* Because we're little endian, this is what it turns into. */
|
483
|
+
avalue[i] = (void *) tregp;
|
484
|
+
regp = tregp + z;
|
485
|
+
|
486
|
+
/* If we read past the last core register, make sure we
|
487
|
+
have not read from the stack before and continue
|
488
|
+
reading after regp. */
|
489
|
+
if (regp > eo_regp)
|
490
|
+
{
|
491
|
+
FFI_ASSERT (!stack_used);
|
492
|
+
argp = regp;
|
493
|
+
}
|
494
|
+
if (regp >= eo_regp)
|
495
|
+
{
|
496
|
+
done_with_regs = 1;
|
497
|
+
stack_used = 1;
|
498
|
+
}
|
499
|
+
continue;
|
500
|
+
}
|
501
|
+
}
|
502
|
+
|
503
|
+
stack_used = 1;
|
504
|
+
argp = ffi_align (ty, argp);
|
505
|
+
avalue[i] = (void *) argp;
|
506
|
+
argp += z;
|
507
|
+
}
|
508
|
+
|
509
|
+
return rvalue;
|
510
|
+
}
|
511
|
+
|
512
|
+
struct closure_frame
|
513
|
+
{
|
514
|
+
char vfp_space[8*8] __attribute__((aligned(8)));
|
515
|
+
char result[8*4];
|
516
|
+
char argp[];
|
517
|
+
};
|
518
|
+
|
519
|
+
int FFI_HIDDEN
|
520
|
+
ffi_closure_inner_SYSV (ffi_cif *cif,
|
521
|
+
void (*fun) (ffi_cif *, void *, void **, void *),
|
522
|
+
void *user_data,
|
523
|
+
struct closure_frame *frame)
|
524
|
+
{
|
525
|
+
void **avalue = (void **) alloca (cif->nargs * sizeof (void *));
|
526
|
+
void *rvalue = ffi_prep_incoming_args_SYSV (cif, frame->result,
|
527
|
+
frame->argp, avalue);
|
528
|
+
fun (cif, rvalue, avalue, user_data);
|
529
|
+
return cif->flags;
|
530
|
+
}
|
531
|
+
|
532
|
+
int FFI_HIDDEN
|
533
|
+
ffi_closure_inner_VFP (ffi_cif *cif,
|
534
|
+
void (*fun) (ffi_cif *, void *, void **, void *),
|
535
|
+
void *user_data,
|
536
|
+
struct closure_frame *frame)
|
537
|
+
{
|
538
|
+
void **avalue = (void **) alloca (cif->nargs * sizeof (void *));
|
539
|
+
void *rvalue = ffi_prep_incoming_args_VFP (cif, frame->result, frame->argp,
|
540
|
+
frame->vfp_space, avalue);
|
541
|
+
fun (cif, rvalue, avalue, user_data);
|
542
|
+
return cif->flags;
|
543
|
+
}
|
544
|
+
|
545
|
+
void ffi_closure_SYSV (void) FFI_HIDDEN;
|
546
|
+
void ffi_closure_VFP (void) FFI_HIDDEN;
|
547
|
+
void ffi_go_closure_SYSV (void) FFI_HIDDEN;
|
548
|
+
void ffi_go_closure_VFP (void) FFI_HIDDEN;
|
549
|
+
|
550
|
+
/* the cif must already be prep'ed */
|
551
|
+
|
552
|
+
ffi_status
|
553
|
+
ffi_prep_closure_loc (ffi_closure * closure,
|
554
|
+
ffi_cif * cif,
|
555
|
+
void (*fun) (ffi_cif *, void *, void **, void *),
|
556
|
+
void *user_data, void *codeloc)
|
557
|
+
{
|
558
|
+
void (*closure_func) (void) = ffi_closure_SYSV;
|
559
|
+
|
560
|
+
if (cif->abi == FFI_VFP)
|
561
|
+
{
|
562
|
+
/* We only need take the vfp path if there are vfp arguments. */
|
563
|
+
if (cif->vfp_used)
|
564
|
+
closure_func = ffi_closure_VFP;
|
565
|
+
}
|
566
|
+
else if (cif->abi != FFI_SYSV)
|
567
|
+
return FFI_BAD_ABI;
|
568
|
+
|
569
|
+
#if FFI_EXEC_TRAMPOLINE_TABLE
|
570
|
+
void **config = (void **)((uint8_t *)codeloc - PAGE_MAX_SIZE);
|
571
|
+
config[0] = closure;
|
572
|
+
config[1] = closure_func;
|
573
|
+
#else
|
574
|
+
memcpy (closure->tramp, ffi_arm_trampoline, 8);
|
575
|
+
#if defined (__QNX__)
|
576
|
+
msync(closure->tramp, 8, 0x1000000); /* clear data map */
|
577
|
+
msync(codeloc, 8, 0x1000000); /* clear insn map */
|
578
|
+
#else
|
579
|
+
__clear_cache(closure->tramp, closure->tramp + 8); /* clear data map */
|
580
|
+
__clear_cache(codeloc, codeloc + 8); /* clear insn map */
|
581
|
+
#endif
|
582
|
+
*(void (**)(void))(closure->tramp + 8) = closure_func;
|
583
|
+
#endif
|
584
|
+
|
585
|
+
closure->cif = cif;
|
586
|
+
closure->fun = fun;
|
587
|
+
closure->user_data = user_data;
|
588
|
+
|
589
|
+
return FFI_OK;
|
590
|
+
}
|
591
|
+
|
592
|
+
ffi_status
|
593
|
+
ffi_prep_go_closure (ffi_go_closure *closure, ffi_cif *cif,
|
594
|
+
void (*fun) (ffi_cif *, void *, void **, void *))
|
595
|
+
{
|
596
|
+
void (*closure_func) (void) = ffi_go_closure_SYSV;
|
597
|
+
|
598
|
+
if (cif->abi == FFI_VFP)
|
599
|
+
{
|
600
|
+
/* We only need take the vfp path if there are vfp arguments. */
|
601
|
+
if (cif->vfp_used)
|
602
|
+
closure_func = ffi_go_closure_VFP;
|
603
|
+
}
|
604
|
+
else if (cif->abi != FFI_SYSV)
|
605
|
+
return FFI_BAD_ABI;
|
606
|
+
|
607
|
+
closure->tramp = closure_func;
|
608
|
+
closure->cif = cif;
|
609
|
+
closure->fun = fun;
|
610
|
+
|
611
|
+
return FFI_OK;
|
612
|
+
}
|
613
|
+
|
614
|
+
/* Below are routines for VFP hard-float support. */
|
615
|
+
|
616
|
+
/* A subroutine of vfp_type_p. Given a structure type, return the type code
|
617
|
+
of the first non-structure element. Recurse for structure elements.
|
618
|
+
Return -1 if the structure is in fact empty, i.e. no nested elements. */
|
619
|
+
|
620
|
+
static int
|
621
|
+
is_hfa0 (const ffi_type *ty)
|
622
|
+
{
|
623
|
+
ffi_type **elements = ty->elements;
|
624
|
+
int i, ret = -1;
|
625
|
+
|
626
|
+
if (elements != NULL)
|
627
|
+
for (i = 0; elements[i]; ++i)
|
628
|
+
{
|
629
|
+
ret = elements[i]->type;
|
630
|
+
if (ret == FFI_TYPE_STRUCT || ret == FFI_TYPE_COMPLEX)
|
631
|
+
{
|
632
|
+
ret = is_hfa0 (elements[i]);
|
633
|
+
if (ret < 0)
|
634
|
+
continue;
|
635
|
+
}
|
636
|
+
break;
|
637
|
+
}
|
638
|
+
|
639
|
+
return ret;
|
640
|
+
}
|
641
|
+
|
642
|
+
/* A subroutine of vfp_type_p. Given a structure type, return true if all
|
643
|
+
of the non-structure elements are the same as CANDIDATE. */
|
644
|
+
|
645
|
+
static int
|
646
|
+
is_hfa1 (const ffi_type *ty, int candidate)
|
647
|
+
{
|
648
|
+
ffi_type **elements = ty->elements;
|
649
|
+
int i;
|
650
|
+
|
651
|
+
if (elements != NULL)
|
652
|
+
for (i = 0; elements[i]; ++i)
|
653
|
+
{
|
654
|
+
int t = elements[i]->type;
|
655
|
+
if (t == FFI_TYPE_STRUCT || t == FFI_TYPE_COMPLEX)
|
656
|
+
{
|
657
|
+
if (!is_hfa1 (elements[i], candidate))
|
658
|
+
return 0;
|
659
|
+
}
|
660
|
+
else if (t != candidate)
|
661
|
+
return 0;
|
662
|
+
}
|
663
|
+
|
664
|
+
return 1;
|
665
|
+
}
|
666
|
+
|
667
|
+
/* Determine if TY is an homogenous floating point aggregate (HFA).
|
668
|
+
That is, a structure consisting of 1 to 4 members of all the same type,
|
669
|
+
where that type is a floating point scalar.
|
670
|
+
|
671
|
+
Returns non-zero iff TY is an HFA. The result is an encoded value where
|
672
|
+
bits 0-7 contain the type code, and bits 8-10 contain the element count. */
|
673
|
+
|
674
|
+
static int
|
675
|
+
vfp_type_p (const ffi_type *ty)
|
676
|
+
{
|
677
|
+
ffi_type **elements;
|
678
|
+
int candidate, i;
|
679
|
+
size_t size, ele_count;
|
680
|
+
|
681
|
+
/* Quickest tests first. */
|
682
|
+
candidate = ty->type;
|
683
|
+
switch (ty->type)
|
684
|
+
{
|
685
|
+
default:
|
686
|
+
return 0;
|
687
|
+
case FFI_TYPE_FLOAT:
|
688
|
+
case FFI_TYPE_DOUBLE:
|
689
|
+
ele_count = 1;
|
690
|
+
goto done;
|
691
|
+
case FFI_TYPE_COMPLEX:
|
692
|
+
candidate = ty->elements[0]->type;
|
693
|
+
if (candidate != FFI_TYPE_FLOAT && candidate != FFI_TYPE_DOUBLE)
|
694
|
+
return 0;
|
695
|
+
ele_count = 2;
|
696
|
+
goto done;
|
697
|
+
case FFI_TYPE_STRUCT:
|
698
|
+
break;
|
699
|
+
}
|
700
|
+
|
701
|
+
/* No HFA types are smaller than 4 bytes, or larger than 32 bytes. */
|
702
|
+
size = ty->size;
|
703
|
+
if (size < 4 || size > 32)
|
704
|
+
return 0;
|
705
|
+
|
706
|
+
/* Find the type of the first non-structure member. */
|
707
|
+
elements = ty->elements;
|
708
|
+
candidate = elements[0]->type;
|
709
|
+
if (candidate == FFI_TYPE_STRUCT || candidate == FFI_TYPE_COMPLEX)
|
710
|
+
{
|
711
|
+
for (i = 0; ; ++i)
|
712
|
+
{
|
713
|
+
candidate = is_hfa0 (elements[i]);
|
714
|
+
if (candidate >= 0)
|
715
|
+
break;
|
716
|
+
}
|
717
|
+
}
|
718
|
+
|
719
|
+
/* If the first member is not a floating point type, it's not an HFA.
|
720
|
+
Also quickly re-check the size of the structure. */
|
721
|
+
switch (candidate)
|
722
|
+
{
|
723
|
+
case FFI_TYPE_FLOAT:
|
724
|
+
ele_count = size / sizeof(float);
|
725
|
+
if (size != ele_count * sizeof(float))
|
726
|
+
return 0;
|
727
|
+
break;
|
728
|
+
case FFI_TYPE_DOUBLE:
|
729
|
+
ele_count = size / sizeof(double);
|
730
|
+
if (size != ele_count * sizeof(double))
|
731
|
+
return 0;
|
732
|
+
break;
|
733
|
+
default:
|
734
|
+
return 0;
|
735
|
+
}
|
736
|
+
if (ele_count > 4)
|
737
|
+
return 0;
|
738
|
+
|
739
|
+
/* Finally, make sure that all scalar elements are the same type. */
|
740
|
+
for (i = 0; elements[i]; ++i)
|
741
|
+
{
|
742
|
+
int t = elements[i]->type;
|
743
|
+
if (t == FFI_TYPE_STRUCT || t == FFI_TYPE_COMPLEX)
|
744
|
+
{
|
745
|
+
if (!is_hfa1 (elements[i], candidate))
|
746
|
+
return 0;
|
747
|
+
}
|
748
|
+
else if (t != candidate)
|
749
|
+
return 0;
|
750
|
+
}
|
751
|
+
|
752
|
+
/* All tests succeeded. Encode the result. */
|
753
|
+
done:
|
754
|
+
return (ele_count << 8) | candidate;
|
755
|
+
}
|
756
|
+
|
757
|
+
static int
|
758
|
+
place_vfp_arg (ffi_cif *cif, int h)
|
759
|
+
{
|
760
|
+
unsigned short reg = cif->vfp_reg_free;
|
761
|
+
int align = 1, nregs = h >> 8;
|
762
|
+
|
763
|
+
if ((h & 0xff) == FFI_TYPE_DOUBLE)
|
764
|
+
align = 2, nregs *= 2;
|
765
|
+
|
766
|
+
/* Align register number. */
|
767
|
+
if ((reg & 1) && align == 2)
|
768
|
+
reg++;
|
769
|
+
|
770
|
+
while (reg + nregs <= 16)
|
771
|
+
{
|
772
|
+
int s, new_used = 0;
|
773
|
+
for (s = reg; s < reg + nregs; s++)
|
774
|
+
{
|
775
|
+
new_used |= (1 << s);
|
776
|
+
if (cif->vfp_used & (1 << s))
|
777
|
+
{
|
778
|
+
reg += align;
|
779
|
+
goto next_reg;
|
780
|
+
}
|
781
|
+
}
|
782
|
+
/* Found regs to allocate. */
|
783
|
+
cif->vfp_used |= new_used;
|
784
|
+
cif->vfp_args[cif->vfp_nargs++] = reg;
|
785
|
+
|
786
|
+
/* Update vfp_reg_free. */
|
787
|
+
if (cif->vfp_used & (1 << cif->vfp_reg_free))
|
788
|
+
{
|
789
|
+
reg += nregs;
|
790
|
+
while (cif->vfp_used & (1 << reg))
|
791
|
+
reg += 1;
|
792
|
+
cif->vfp_reg_free = reg;
|
793
|
+
}
|
794
|
+
return 0;
|
795
|
+
next_reg:;
|
796
|
+
}
|
797
|
+
// done, mark all regs as used
|
798
|
+
cif->vfp_reg_free = 16;
|
799
|
+
cif->vfp_used = 0xFFFF;
|
800
|
+
return 1;
|
801
|
+
}
|
802
|
+
|
803
|
+
static void
|
804
|
+
layout_vfp_args (ffi_cif * cif)
|
805
|
+
{
|
806
|
+
int i;
|
807
|
+
/* Init VFP fields */
|
808
|
+
cif->vfp_used = 0;
|
809
|
+
cif->vfp_nargs = 0;
|
810
|
+
cif->vfp_reg_free = 0;
|
811
|
+
memset (cif->vfp_args, -1, 16); /* Init to -1. */
|
812
|
+
|
813
|
+
for (i = 0; i < cif->nargs; i++)
|
814
|
+
{
|
815
|
+
int h = vfp_type_p (cif->arg_types[i]);
|
816
|
+
if (h && place_vfp_arg (cif, h) == 1)
|
817
|
+
break;
|
818
|
+
}
|
819
|
+
}
|