ffi 1.9.25 → 1.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +212 -0
- data/Gemfile +3 -4
- data/README.md +38 -18
- data/Rakefile +55 -146
- data/ext/ffi_c/AbstractMemory.c +29 -34
- data/ext/ffi_c/Buffer.c +4 -9
- data/ext/ffi_c/Call.c +16 -49
- data/ext/ffi_c/Call.h +4 -7
- data/ext/ffi_c/ClosurePool.c +75 -25
- data/ext/ffi_c/ClosurePool.h +3 -1
- data/ext/ffi_c/DynamicLibrary.c +2 -7
- data/ext/ffi_c/Function.c +47 -131
- data/ext/ffi_c/Function.h +0 -4
- data/ext/ffi_c/FunctionInfo.c +3 -8
- data/ext/ffi_c/LastError.c +49 -8
- data/ext/ffi_c/LongDouble.c +12 -10
- data/ext/ffi_c/LongDouble.h +0 -4
- data/ext/ffi_c/MemoryPointer.c +3 -8
- data/ext/ffi_c/MemoryPointer.h +0 -4
- data/ext/ffi_c/MethodHandle.c +21 -31
- data/ext/ffi_c/MethodHandle.h +3 -2
- data/ext/ffi_c/Platform.c +3 -54
- data/ext/ffi_c/Pointer.c +25 -26
- data/ext/ffi_c/Pointer.h +0 -4
- data/ext/ffi_c/Struct.c +49 -56
- data/ext/ffi_c/Struct.h +12 -6
- data/ext/ffi_c/StructByValue.c +2 -7
- data/ext/ffi_c/StructLayout.c +22 -20
- data/ext/ffi_c/Thread.c +4 -228
- data/ext/ffi_c/Thread.h +1 -20
- data/ext/ffi_c/Type.c +1 -19
- data/ext/ffi_c/Type.h +0 -1
- data/ext/ffi_c/Types.c +7 -8
- data/ext/ffi_c/Types.h +3 -4
- data/ext/ffi_c/Variadic.c +23 -24
- data/ext/ffi_c/compat.h +4 -0
- data/ext/ffi_c/extconf.rb +53 -30
- data/ext/ffi_c/ffi.c +3 -8
- data/ext/ffi_c/libffi.darwin.mk +1 -1
- data/ext/ffi_c/libffi/.appveyor.yml +29 -13
- data/ext/ffi_c/libffi/.gitattributes +4 -0
- data/ext/ffi_c/libffi/.travis.yml +51 -2
- data/ext/ffi_c/libffi/.travis/bfin-sim.exp +58 -0
- data/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +14 -0
- data/ext/ffi_c/libffi/.travis/build-in-container.sh +12 -0
- data/ext/ffi_c/libffi/.travis/build.sh +116 -8
- data/ext/ffi_c/libffi/.travis/install.sh +65 -16
- data/ext/ffi_c/libffi/.travis/m32r-sim.exp +58 -0
- data/ext/ffi_c/libffi/.travis/moxie-sim.exp +1 -1
- data/ext/ffi_c/libffi/.travis/or1k-sim.exp +58 -0
- data/ext/ffi_c/libffi/.travis/powerpc-eabisim.exp +58 -0
- data/ext/ffi_c/libffi/.travis/site.exp +10 -1
- data/ext/ffi_c/libffi/.travis/wine-sim.exp +55 -0
- data/ext/ffi_c/libffi/{ChangeLog.libffi-3.1 → ChangeLog.old} +1407 -0
- data/ext/ffi_c/libffi/LICENSE +1 -1
- data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +5 -4
- data/ext/ffi_c/libffi/Makefile.am +56 -72
- data/ext/ffi_c/libffi/README.md +33 -8
- data/ext/ffi_c/libffi/config.guess +552 -331
- data/ext/ffi_c/libffi/config.sub +1321 -1306
- data/ext/ffi_c/libffi/configure.ac +37 -12
- data/ext/ffi_c/libffi/configure.host +56 -27
- data/ext/ffi_c/libffi/doc/Makefile.am +3 -0
- data/ext/ffi_c/libffi/doc/libffi.texi +997 -0
- data/ext/ffi_c/libffi/doc/version.texi +4 -0
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +2 -4
- data/ext/ffi_c/libffi/include/ffi.h.in +19 -7
- data/ext/ffi_c/libffi/include/ffi_common.h +5 -1
- data/ext/ffi_c/libffi/libffi.map.in +8 -12
- data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +2 -48
- data/ext/ffi_c/libffi/libtool-version +1 -1
- data/ext/ffi_c/libffi/m4/asmcfi.m4 +1 -1
- data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +5 -26
- data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +5 -26
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +2 -1
- data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +5 -26
- data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +7 -3
- data/ext/ffi_c/libffi/make_sunver.pl +333 -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 +38 -13
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +153 -69
- data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +19 -3
- data/ext/ffi_c/libffi/src/aarch64/internal.h +1 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +22 -9
- data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +62 -5
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +8 -1
- data/ext/ffi_c/libffi/src/arm/sysv.S +6 -4
- data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
- data/ext/ffi_c/libffi/src/closures.c +69 -14
- data/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
- data/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
- data/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
- data/ext/ffi_c/libffi/src/dlmalloc.c +1 -1
- data/ext/ffi_c/libffi/src/frv/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
- data/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
- data/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
- data/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
- data/ext/ffi_c/libffi/src/metag/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/mips/ffi.c +5 -1
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +1 -1
- data/ext/ffi_c/libffi/src/mips/o32.S +2 -0
- data/ext/ffi_c/libffi/src/moxie/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/pa/ffi.c +46 -91
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +1 -6
- data/ext/ffi_c/libffi/src/pa/hpux32.S +4 -2
- data/ext/ffi_c/libffi/src/pa/linux.S +27 -4
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +6 -4
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +13 -1
- data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +211 -32
- data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +18 -7
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +10 -4
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +91 -28
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +81 -5
- data/ext/ffi_c/libffi/src/powerpc/sysv.S +5 -7
- data/ext/ffi_c/libffi/src/prep_cif.c +4 -2
- data/ext/ffi_c/libffi/src/riscv/ffi.c +42 -6
- data/ext/ffi_c/libffi/src/riscv/ffitarget.h +1 -0
- data/ext/ffi_c/libffi/src/riscv/sysv.S +86 -7
- data/ext/ffi_c/libffi/src/x86/ffi.c +29 -12
- data/ext/ffi_c/libffi/src/x86/ffi64.c +22 -11
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +15 -2
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +20 -10
- data/ext/ffi_c/libffi/src/x86/sysv.S +105 -10
- data/ext/ffi_c/libffi/src/x86/sysv_intel.S +995 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +100 -4
- data/ext/ffi_c/libffi/src/x86/win64.S +12 -3
- data/ext/ffi_c/libffi/src/x86/win64_intel.S +3 -2
- data/ext/ffi_c/libffi/testsuite/Makefile.am +114 -109
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +32 -8
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +7 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +12 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_simple.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3float.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_args.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_float_double.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_struct_va1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulong_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +0 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +138 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +3 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct11.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest.cc +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest_ffi_call.cc +0 -0
- data/ext/ffi_c/rbffi.h +0 -2
- data/ffi.gemspec +13 -6
- data/lib/ffi.rb +10 -2
- data/lib/ffi/abstract_memory.rb +44 -0
- data/lib/ffi/autopointer.rb +1 -1
- data/lib/ffi/data_converter.rb +67 -0
- data/lib/ffi/ffi.rb +3 -0
- data/lib/ffi/io.rb +3 -3
- data/lib/ffi/library.rb +12 -8
- data/lib/ffi/managedstruct.rb +2 -2
- data/lib/ffi/platform.rb +34 -10
- data/lib/ffi/platform/aarch64-darwin/types.conf +130 -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 +81 -81
- data/lib/ffi/platform/aarch64-openbsd/types.conf +134 -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 +110 -82
- data/lib/ffi/platform/i386-cygwin/types.conf +1 -1
- data/lib/ffi/platform/i386-darwin/types.conf +63 -63
- data/lib/ffi/platform/i386-freebsd/types.conf +89 -89
- data/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
- data/lib/ffi/platform/i386-gnu/types.conf +84 -84
- data/lib/ffi/platform/i386-linux/types.conf +77 -77
- data/lib/ffi/platform/i386-netbsd/types.conf +87 -87
- data/lib/ffi/platform/i386-openbsd/types.conf +89 -89
- data/lib/ffi/platform/i386-solaris/types.conf +96 -96
- data/lib/ffi/platform/i386-windows/types.conf +43 -96
- data/lib/ffi/platform/ia64-linux/types.conf +79 -79
- data/lib/ffi/platform/mips-linux/types.conf +79 -79
- data/lib/ffi/platform/mips64-linux/types.conf +81 -81
- data/lib/ffi/platform/mips64el-linux/types.conf +81 -81
- data/lib/ffi/platform/mipsel-linux/types.conf +79 -79
- data/lib/ffi/platform/mipsisa32r6-linux/types.conf +79 -79
- data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +79 -79
- data/lib/ffi/platform/mipsisa64r6-linux/types.conf +81 -81
- data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +81 -81
- data/lib/ffi/platform/powerpc-aix/types.conf +155 -155
- data/lib/ffi/platform/powerpc-darwin/types.conf +63 -63
- data/lib/ffi/platform/powerpc-linux/types.conf +108 -78
- data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
- data/lib/ffi/platform/powerpc64-linux/types.conf +81 -81
- data/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
- data/lib/ffi/platform/riscv64-linux/types.conf +104 -0
- data/lib/ffi/platform/s390-linux/types.conf +79 -79
- data/lib/ffi/platform/s390x-linux/types.conf +79 -79
- data/lib/ffi/platform/sparc-linux/types.conf +79 -79
- data/lib/ffi/platform/sparc-solaris/types.conf +103 -103
- data/lib/ffi/platform/sparc64-linux/types.conf +79 -79
- data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
- data/lib/ffi/platform/sparcv9-solaris/types.conf +103 -103
- data/lib/ffi/platform/x86_64-cygwin/types.conf +1 -1
- data/lib/ffi/platform/x86_64-darwin/types.conf +88 -84
- data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
- data/lib/ffi/platform/x86_64-freebsd/types.conf +90 -90
- data/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
- data/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
- data/lib/ffi/platform/x86_64-linux/types.conf +107 -77
- data/lib/ffi/platform/x86_64-msys/types.conf +119 -0
- data/lib/ffi/platform/x86_64-netbsd/types.conf +89 -89
- data/lib/ffi/platform/x86_64-openbsd/types.conf +86 -86
- data/lib/ffi/platform/x86_64-solaris/types.conf +96 -96
- data/lib/ffi/platform/x86_64-windows/types.conf +42 -110
- data/lib/ffi/pointer.rb +26 -20
- data/lib/ffi/struct.rb +13 -68
- data/lib/ffi/struct_by_reference.rb +72 -0
- data/lib/ffi/struct_layout.rb +96 -0
- data/lib/ffi/tools/const_generator.rb +5 -4
- data/lib/ffi/tools/generator.rb +47 -2
- data/lib/ffi/tools/generator_task.rb +13 -17
- data/lib/ffi/tools/struct_generator.rb +4 -4
- data/lib/ffi/tools/types_generator.rb +7 -4
- data/lib/ffi/types.rb +1 -1
- data/lib/ffi/variadic.rb +1 -10
- data/lib/ffi/version.rb +1 -1
- data/rakelib/ffi_gem_helper.rb +65 -0
- data/samples/getlogin.rb +1 -1
- data/samples/getpid.rb +1 -1
- data/samples/gettimeofday.rb +8 -8
- data/samples/hello.rb +2 -1
- data/samples/inotify.rb +1 -1
- data/samples/pty.rb +1 -2
- data/samples/qsort.rb +0 -1
- metadata +160 -122
- data/.gitignore +0 -22
- data/.gitmodules +0 -3
- data/.travis.yml +0 -52
- data/.yardopts +0 -5
- data/appveyor.yml +0 -22
- data/ext/ffi_c/DataConverter.c +0 -91
- data/ext/ffi_c/StructByReference.c +0 -190
- data/ext/ffi_c/StructByReference.h +0 -50
- data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
- data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
- data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
- data/ext/ffi_c/win32/stdbool.h +0 -8
- data/ext/ffi_c/win32/stdint.h +0 -201
- data/samples/sample_helper.rb +0 -6
@@ -1,5 +1,6 @@
|
|
1
1
|
/* -----------------------------------------------------------------------
|
2
|
-
closures.c - Copyright (c)
|
2
|
+
closures.c - Copyright (c) 2019 Anthony Green
|
3
|
+
Copyright (c) 2007, 2009, 2010 Red Hat, Inc.
|
3
4
|
Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc
|
4
5
|
Copyright (c) 2011 Plausible Labs Cooperative, Inc.
|
5
6
|
|
@@ -44,6 +45,9 @@
|
|
44
45
|
|
45
46
|
#include <stddef.h>
|
46
47
|
#include <unistd.h>
|
48
|
+
#ifdef HAVE_SYS_MEMFD_H
|
49
|
+
#include <sys/memfd.h>
|
50
|
+
#endif
|
47
51
|
|
48
52
|
static const size_t overhead =
|
49
53
|
(sizeof(max_align_t) > sizeof(void *) + sizeof(size_t)) ?
|
@@ -122,7 +126,7 @@ ffi_closure_free (void *ptr)
|
|
122
126
|
# define FFI_MMAP_EXEC_WRIT 1
|
123
127
|
# define HAVE_MNTENT 1
|
124
128
|
# endif
|
125
|
-
# if defined(
|
129
|
+
# if defined(_WIN32) || defined(__OS2__)
|
126
130
|
/* Windows systems may have Data Execution Protection (DEP) enabled,
|
127
131
|
which requires the use of VirtualMalloc/VirtualFree to alloc/free
|
128
132
|
executable memory. */
|
@@ -147,6 +151,9 @@ ffi_closure_free (void *ptr)
|
|
147
151
|
|
148
152
|
#include <mach/mach.h>
|
149
153
|
#include <pthread.h>
|
154
|
+
#ifdef HAVE_PTRAUTH
|
155
|
+
#include <ptrauth.h>
|
156
|
+
#endif
|
150
157
|
#include <stdio.h>
|
151
158
|
#include <stdlib.h>
|
152
159
|
|
@@ -172,7 +179,7 @@ struct ffi_trampoline_table
|
|
172
179
|
|
173
180
|
struct ffi_trampoline_table_entry
|
174
181
|
{
|
175
|
-
void *(*trampoline) ();
|
182
|
+
void *(*trampoline) (void);
|
176
183
|
ffi_trampoline_table_entry *next;
|
177
184
|
};
|
178
185
|
|
@@ -300,6 +307,9 @@ ffi_closure_alloc (size_t size, void **code)
|
|
300
307
|
|
301
308
|
/* Initialize the return values */
|
302
309
|
*code = entry->trampoline;
|
310
|
+
#ifdef HAVE_PTRAUTH
|
311
|
+
*code = ptrauth_sign_unauthenticated (*code, ptrauth_key_asia, 0);
|
312
|
+
#endif
|
303
313
|
closure->trampoline_table = table;
|
304
314
|
closure->trampoline_table_entry = entry;
|
305
315
|
|
@@ -385,7 +395,7 @@ ffi_closure_free (void *ptr)
|
|
385
395
|
#endif
|
386
396
|
#include <string.h>
|
387
397
|
#include <stdio.h>
|
388
|
-
#if !defined(
|
398
|
+
#if !defined(_WIN32)
|
389
399
|
#ifdef HAVE_MNTENT
|
390
400
|
#include <mntent.h>
|
391
401
|
#endif /* HAVE_MNTENT */
|
@@ -511,11 +521,11 @@ static int dlmalloc_trim(size_t) MAYBE_UNUSED;
|
|
511
521
|
static size_t dlmalloc_usable_size(void*) MAYBE_UNUSED;
|
512
522
|
static void dlmalloc_stats(void) MAYBE_UNUSED;
|
513
523
|
|
514
|
-
#if !(defined(
|
524
|
+
#if !(defined(_WIN32) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX)
|
515
525
|
/* Use these for mmap and munmap within dlmalloc.c. */
|
516
526
|
static void *dlmmap(void *, size_t, int, int, int, off_t);
|
517
527
|
static int dlmunmap(void *, size_t);
|
518
|
-
#endif /* !(defined(
|
528
|
+
#endif /* !(defined(_WIN32) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX) */
|
519
529
|
|
520
530
|
#define mmap dlmmap
|
521
531
|
#define munmap dlmunmap
|
@@ -525,7 +535,7 @@ static int dlmunmap(void *, size_t);
|
|
525
535
|
#undef mmap
|
526
536
|
#undef munmap
|
527
537
|
|
528
|
-
#if !(defined(
|
538
|
+
#if !(defined(_WIN32) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX)
|
529
539
|
|
530
540
|
/* A mutex used to synchronize access to *exec* variables in this file. */
|
531
541
|
static pthread_mutex_t open_temp_exec_file_mutex = PTHREAD_MUTEX_INITIALIZER;
|
@@ -537,6 +547,17 @@ static int execfd = -1;
|
|
537
547
|
/* The amount of space already allocated from the temporary file. */
|
538
548
|
static size_t execsize = 0;
|
539
549
|
|
550
|
+
#ifdef HAVE_MEMFD_CREATE
|
551
|
+
/* Open a temporary file name, and immediately unlink it. */
|
552
|
+
static int
|
553
|
+
open_temp_exec_file_memfd (const char *name)
|
554
|
+
{
|
555
|
+
int fd;
|
556
|
+
fd = memfd_create (name, MFD_CLOEXEC);
|
557
|
+
return fd;
|
558
|
+
}
|
559
|
+
#endif
|
560
|
+
|
540
561
|
/* Open a temporary file name, and immediately unlink it. */
|
541
562
|
static int
|
542
563
|
open_temp_exec_file_name (char *name, int flags)
|
@@ -664,6 +685,9 @@ static struct
|
|
664
685
|
const char *arg;
|
665
686
|
int repeat;
|
666
687
|
} open_temp_exec_file_opts[] = {
|
688
|
+
#ifdef HAVE_MEMFD_CREATE
|
689
|
+
{ open_temp_exec_file_memfd, "libffi", 0 },
|
690
|
+
#endif
|
667
691
|
{ open_temp_exec_file_env, "TMPDIR", 0 },
|
668
692
|
{ open_temp_exec_file_dir, "/tmp", 0 },
|
669
693
|
{ open_temp_exec_file_dir, "/var/tmp", 0 },
|
@@ -789,7 +813,13 @@ dlmmap_locked (void *start, size_t length, int prot, int flags, off_t offset)
|
|
789
813
|
close (execfd);
|
790
814
|
goto retry_open;
|
791
815
|
}
|
792
|
-
ftruncate (execfd, offset)
|
816
|
+
if (ftruncate (execfd, offset) != 0)
|
817
|
+
{
|
818
|
+
/* Fixme : Error logs can be added here. Returning an error for
|
819
|
+
* ftruncte() will not add any advantage as it is being
|
820
|
+
* validating in the error case. */
|
821
|
+
}
|
822
|
+
|
793
823
|
return MFAIL;
|
794
824
|
}
|
795
825
|
else if (!offset
|
@@ -801,7 +831,12 @@ dlmmap_locked (void *start, size_t length, int prot, int flags, off_t offset)
|
|
801
831
|
if (start == MFAIL)
|
802
832
|
{
|
803
833
|
munmap (ptr, length);
|
804
|
-
ftruncate (execfd, offset)
|
834
|
+
if (ftruncate (execfd, offset) != 0)
|
835
|
+
{
|
836
|
+
/* Fixme : Error logs can be added here. Returning an error for
|
837
|
+
* ftruncte() will not add any advantage as it is being
|
838
|
+
* validating in the error case. */
|
839
|
+
}
|
805
840
|
return start;
|
806
841
|
}
|
807
842
|
|
@@ -896,7 +931,7 @@ segment_holding_code (mstate m, char* addr)
|
|
896
931
|
}
|
897
932
|
#endif
|
898
933
|
|
899
|
-
#endif /* !(defined(
|
934
|
+
#endif /* !(defined(_WIN32) || defined(__OS2__)) || defined (__CYGWIN__) || defined(__INTERIX) */
|
900
935
|
|
901
936
|
/* Allocate a chunk of memory with the given size. Returns a pointer
|
902
937
|
to the writable address, and sets *CODE to the executable
|
@@ -909,7 +944,7 @@ ffi_closure_alloc (size_t size, void **code)
|
|
909
944
|
if (!code)
|
910
945
|
return NULL;
|
911
946
|
|
912
|
-
ptr = dlmalloc (size);
|
947
|
+
ptr = FFI_CLOSURE_PTR (dlmalloc (size));
|
913
948
|
|
914
949
|
if (ptr)
|
915
950
|
{
|
@@ -921,6 +956,20 @@ ffi_closure_alloc (size_t size, void **code)
|
|
921
956
|
return ptr;
|
922
957
|
}
|
923
958
|
|
959
|
+
void *
|
960
|
+
ffi_data_to_code_pointer (void *data)
|
961
|
+
{
|
962
|
+
msegmentptr seg = segment_holding (gm, data);
|
963
|
+
/* We expect closures to be allocated with ffi_closure_alloc(), in
|
964
|
+
which case seg will be non-NULL. However, some users take on the
|
965
|
+
burden of managing this memory themselves, in which case this
|
966
|
+
we'll just return data. */
|
967
|
+
if (seg)
|
968
|
+
return add_segment_exec_offset (data, seg);
|
969
|
+
else
|
970
|
+
return data;
|
971
|
+
}
|
972
|
+
|
924
973
|
/* Release a chunk of memory allocated with ffi_closure_alloc. If
|
925
974
|
FFI_CLOSURE_FREE_CODE is nonzero, the given address can be the
|
926
975
|
writable or the executable address given. Otherwise, only the
|
@@ -935,7 +984,7 @@ ffi_closure_free (void *ptr)
|
|
935
984
|
ptr = sub_segment_exec_offset (ptr, seg);
|
936
985
|
#endif
|
937
986
|
|
938
|
-
dlfree (ptr);
|
987
|
+
dlfree (FFI_RESTORE_PTR (ptr));
|
939
988
|
}
|
940
989
|
|
941
990
|
# else /* ! FFI_MMAP_EXEC_WRIT */
|
@@ -951,13 +1000,19 @@ ffi_closure_alloc (size_t size, void **code)
|
|
951
1000
|
if (!code)
|
952
1001
|
return NULL;
|
953
1002
|
|
954
|
-
return *code = malloc (size);
|
1003
|
+
return *code = FFI_CLOSURE_PTR (malloc (size));
|
955
1004
|
}
|
956
1005
|
|
957
1006
|
void
|
958
1007
|
ffi_closure_free (void *ptr)
|
959
1008
|
{
|
960
|
-
free (ptr);
|
1009
|
+
free (FFI_RESTORE_PTR (ptr));
|
1010
|
+
}
|
1011
|
+
|
1012
|
+
void *
|
1013
|
+
ffi_data_to_code_pointer (void *data)
|
1014
|
+
{
|
1015
|
+
return data;
|
961
1016
|
}
|
962
1017
|
|
963
1018
|
# endif /* ! FFI_MMAP_EXEC_WRIT */
|
@@ -0,0 +1,395 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
ffi.c
|
3
|
+
|
4
|
+
CSKY 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
|
+
#include <ffi.h>
|
28
|
+
#include <ffi_common.h>
|
29
|
+
|
30
|
+
#include <stdlib.h>
|
31
|
+
|
32
|
+
/* ffi_prep_args is called by the assembly routine once stack space
|
33
|
+
has been allocated for the function's arguments
|
34
|
+
*/
|
35
|
+
void ffi_prep_args(char *stack, extended_cif *ecif)
|
36
|
+
{
|
37
|
+
register unsigned int i;
|
38
|
+
register void **p_argv;
|
39
|
+
register char *argp;
|
40
|
+
register ffi_type **p_arg;
|
41
|
+
|
42
|
+
argp = stack;
|
43
|
+
|
44
|
+
if ( ecif->cif->flags == FFI_TYPE_STRUCT ) {
|
45
|
+
*(void **) argp = ecif->rvalue;
|
46
|
+
argp += 4;
|
47
|
+
}
|
48
|
+
|
49
|
+
p_argv = ecif->avalue;
|
50
|
+
|
51
|
+
for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types;
|
52
|
+
(i != 0);
|
53
|
+
i--, p_arg++)
|
54
|
+
{
|
55
|
+
size_t z;
|
56
|
+
size_t alignment;
|
57
|
+
|
58
|
+
/* Align if necessary */
|
59
|
+
alignment = (*p_arg)->alignment;
|
60
|
+
#ifdef __CSKYABIV1__
|
61
|
+
/*
|
62
|
+
* Adapt ABIV1 bug.
|
63
|
+
* If struct's size is larger than 8 bytes, then it always alignment as 4 bytes.
|
64
|
+
*/
|
65
|
+
if (((*p_arg)->type == FFI_TYPE_STRUCT) && ((*p_arg)->size > 8) && (alignment == 8)) {
|
66
|
+
alignment = 4;
|
67
|
+
}
|
68
|
+
#endif
|
69
|
+
|
70
|
+
if ((alignment - 1) & (unsigned) argp) {
|
71
|
+
argp = (char *) FFI_ALIGN(argp, alignment);
|
72
|
+
}
|
73
|
+
|
74
|
+
if ((*p_arg)->type == FFI_TYPE_STRUCT)
|
75
|
+
argp = (char *) FFI_ALIGN(argp, 4);
|
76
|
+
|
77
|
+
z = (*p_arg)->size;
|
78
|
+
if (z < sizeof(int))
|
79
|
+
{
|
80
|
+
z = sizeof(int);
|
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
|
+
#ifdef __CSKYBE__
|
101
|
+
memcpy((argp + 4 - (*p_arg)->size), *p_argv, (*p_arg)->size);
|
102
|
+
#else
|
103
|
+
memcpy(argp, *p_argv, (*p_arg)->size);
|
104
|
+
#endif
|
105
|
+
break;
|
106
|
+
|
107
|
+
default:
|
108
|
+
FFI_ASSERT(0);
|
109
|
+
}
|
110
|
+
}
|
111
|
+
else if (z == sizeof(int))
|
112
|
+
{
|
113
|
+
*(unsigned int *) argp = (unsigned int)*(UINT32 *)(* p_argv);
|
114
|
+
}
|
115
|
+
else
|
116
|
+
{
|
117
|
+
memcpy(argp, *p_argv, z);
|
118
|
+
}
|
119
|
+
p_argv++;
|
120
|
+
argp += z;
|
121
|
+
}
|
122
|
+
|
123
|
+
return;
|
124
|
+
}
|
125
|
+
|
126
|
+
/* Perform machine dependent cif processing */
|
127
|
+
ffi_status ffi_prep_cif_machdep(ffi_cif *cif)
|
128
|
+
{
|
129
|
+
/* Round the stack up to a multiple of 8 bytes. This isn't needed
|
130
|
+
everywhere, but it is on some platforms, and it doesn't hcsky anything
|
131
|
+
when it isn't needed. */
|
132
|
+
cif->bytes = (cif->bytes + 7) & ~7;
|
133
|
+
|
134
|
+
/* Set the return type flag */
|
135
|
+
switch (cif->rtype->type)
|
136
|
+
{
|
137
|
+
|
138
|
+
case FFI_TYPE_DOUBLE:
|
139
|
+
case FFI_TYPE_SINT64:
|
140
|
+
case FFI_TYPE_UINT64:
|
141
|
+
cif->flags = (unsigned) FFI_TYPE_SINT64;
|
142
|
+
break;
|
143
|
+
|
144
|
+
case FFI_TYPE_STRUCT:
|
145
|
+
if (cif->rtype->size <= 4)
|
146
|
+
/* A Composite Type not larger than 4 bytes is returned in r0. */
|
147
|
+
cif->flags = (unsigned)FFI_TYPE_INT;
|
148
|
+
else if (cif->rtype->size <= 8)
|
149
|
+
/* A Composite Type not larger than 8 bytes is returned in r0, r1. */
|
150
|
+
cif->flags = (unsigned)FFI_TYPE_SINT64;
|
151
|
+
else
|
152
|
+
/* A Composite Type larger than 8 bytes, or whose size cannot
|
153
|
+
be determined statically ... is stored in memory at an
|
154
|
+
address passed [in r0]. */
|
155
|
+
cif->flags = (unsigned)FFI_TYPE_STRUCT;
|
156
|
+
break;
|
157
|
+
|
158
|
+
default:
|
159
|
+
cif->flags = FFI_TYPE_INT;
|
160
|
+
break;
|
161
|
+
}
|
162
|
+
|
163
|
+
return FFI_OK;
|
164
|
+
}
|
165
|
+
|
166
|
+
/* Perform machine dependent cif processing for variadic calls */
|
167
|
+
ffi_status ffi_prep_cif_machdep_var(ffi_cif *cif,
|
168
|
+
unsigned int nfixedargs,
|
169
|
+
unsigned int ntotalargs)
|
170
|
+
{
|
171
|
+
return ffi_prep_cif_machdep(cif);
|
172
|
+
}
|
173
|
+
|
174
|
+
/* Prototypes for assembly functions, in sysv.S */
|
175
|
+
extern void ffi_call_SYSV (void (*fn)(void), extended_cif *, unsigned, unsigned, unsigned *);
|
176
|
+
|
177
|
+
void ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue)
|
178
|
+
{
|
179
|
+
extended_cif ecif;
|
180
|
+
|
181
|
+
int small_struct = (cif->flags == FFI_TYPE_INT
|
182
|
+
&& cif->rtype->type == FFI_TYPE_STRUCT);
|
183
|
+
|
184
|
+
ecif.cif = cif;
|
185
|
+
ecif.avalue = avalue;
|
186
|
+
|
187
|
+
unsigned int temp;
|
188
|
+
|
189
|
+
/* If the return value is a struct and we don't have a return */
|
190
|
+
/* value address then we need to make one */
|
191
|
+
|
192
|
+
if ((rvalue == NULL) &&
|
193
|
+
(cif->flags == FFI_TYPE_STRUCT))
|
194
|
+
{
|
195
|
+
ecif.rvalue = alloca(cif->rtype->size);
|
196
|
+
}
|
197
|
+
else if (small_struct)
|
198
|
+
ecif.rvalue = &temp;
|
199
|
+
else
|
200
|
+
ecif.rvalue = rvalue;
|
201
|
+
|
202
|
+
switch (cif->abi)
|
203
|
+
{
|
204
|
+
case FFI_SYSV:
|
205
|
+
ffi_call_SYSV (fn, &ecif, cif->bytes, cif->flags, ecif.rvalue);
|
206
|
+
break;
|
207
|
+
|
208
|
+
default:
|
209
|
+
FFI_ASSERT(0);
|
210
|
+
break;
|
211
|
+
}
|
212
|
+
if (small_struct)
|
213
|
+
#ifdef __CSKYBE__
|
214
|
+
memcpy (rvalue, ((unsigned char *)&temp + (4 - cif->rtype->size)), cif->rtype->size);
|
215
|
+
#else
|
216
|
+
memcpy (rvalue, &temp, cif->rtype->size);
|
217
|
+
#endif
|
218
|
+
}
|
219
|
+
|
220
|
+
/** private members **/
|
221
|
+
|
222
|
+
static void ffi_prep_incoming_args_SYSV (char *stack, void **ret,
|
223
|
+
void** args, ffi_cif* cif);
|
224
|
+
|
225
|
+
void ffi_closure_SYSV (ffi_closure *);
|
226
|
+
|
227
|
+
/* This function is jumped to by the trampoline */
|
228
|
+
|
229
|
+
unsigned int
|
230
|
+
ffi_closure_SYSV_inner (closure, respp, args)
|
231
|
+
ffi_closure *closure;
|
232
|
+
void **respp;
|
233
|
+
void *args;
|
234
|
+
{
|
235
|
+
// our various things...
|
236
|
+
ffi_cif *cif;
|
237
|
+
void **arg_area;
|
238
|
+
|
239
|
+
cif = closure->cif;
|
240
|
+
arg_area = (void**) alloca (cif->nargs * sizeof (void*));
|
241
|
+
|
242
|
+
/* this call will initialize ARG_AREA, such that each
|
243
|
+
* element in that array points to the corresponding
|
244
|
+
* value on the stack; and if the function returns
|
245
|
+
* a structure, it will re-set RESP to point to the
|
246
|
+
* structure return address. */
|
247
|
+
|
248
|
+
ffi_prep_incoming_args_SYSV(args, respp, arg_area, cif);
|
249
|
+
|
250
|
+
(closure->fun) (cif, *respp, arg_area, closure->user_data);
|
251
|
+
|
252
|
+
#ifdef __CSKYBE__
|
253
|
+
if (cif->flags == FFI_TYPE_INT && cif->rtype->type == FFI_TYPE_STRUCT) {
|
254
|
+
unsigned int tmp = 0;
|
255
|
+
tmp = *(unsigned int *)(*respp);
|
256
|
+
*(unsigned int *)(*respp) = (tmp >> ((4 - cif->rtype->size) * 8));
|
257
|
+
}
|
258
|
+
#endif
|
259
|
+
|
260
|
+
return cif->flags;
|
261
|
+
}
|
262
|
+
|
263
|
+
|
264
|
+
static void
|
265
|
+
ffi_prep_incoming_args_SYSV(char *stack, void **rvalue,
|
266
|
+
void **avalue, ffi_cif *cif)
|
267
|
+
{
|
268
|
+
register unsigned int i;
|
269
|
+
register void **p_argv;
|
270
|
+
register char *argp;
|
271
|
+
register ffi_type **p_arg;
|
272
|
+
|
273
|
+
argp = stack;
|
274
|
+
|
275
|
+
if ( cif->flags == FFI_TYPE_STRUCT ) {
|
276
|
+
*rvalue = *(void **) argp;
|
277
|
+
argp += 4;
|
278
|
+
}
|
279
|
+
|
280
|
+
p_argv = avalue;
|
281
|
+
|
282
|
+
for (i = cif->nargs, p_arg = cif->arg_types; (i != 0); i--, p_arg++)
|
283
|
+
{
|
284
|
+
size_t z;
|
285
|
+
size_t alignment;
|
286
|
+
|
287
|
+
alignment = (*p_arg)->alignment;
|
288
|
+
if (alignment < 4)
|
289
|
+
alignment = 4;
|
290
|
+
|
291
|
+
#ifdef __CSKYABIV1__
|
292
|
+
/*
|
293
|
+
* Adapt ABIV1 bug.
|
294
|
+
* If struct's size is larger than 8 bytes, then it always alignment as 4 bytes.
|
295
|
+
*/
|
296
|
+
if (((*p_arg)->type == FFI_TYPE_STRUCT) && ((*p_arg)->size > 8) && (alignment == 8)) {
|
297
|
+
alignment = 4;
|
298
|
+
}
|
299
|
+
#endif
|
300
|
+
|
301
|
+
/* Align if necessary */
|
302
|
+
if ((alignment - 1) & (unsigned) argp) {
|
303
|
+
argp = (char *) FFI_ALIGN(argp, alignment);
|
304
|
+
}
|
305
|
+
|
306
|
+
z = (*p_arg)->size;
|
307
|
+
|
308
|
+
#ifdef __CSKYBE__
|
309
|
+
unsigned int tmp = 0;
|
310
|
+
if ((*p_arg)->size < 4) {
|
311
|
+
tmp = *(unsigned int *)argp;
|
312
|
+
memcpy(argp, ((unsigned char *)&tmp + (4 - (*p_arg)->size)), (*p_arg)->size);
|
313
|
+
}
|
314
|
+
#else
|
315
|
+
/* because we're little endian, this is what it turns into. */
|
316
|
+
#endif
|
317
|
+
*p_argv = (void*) argp;
|
318
|
+
|
319
|
+
p_argv++;
|
320
|
+
argp += z;
|
321
|
+
}
|
322
|
+
|
323
|
+
return;
|
324
|
+
}
|
325
|
+
|
326
|
+
/* How to make a trampoline. */
|
327
|
+
|
328
|
+
extern unsigned char ffi_csky_trampoline[TRAMPOLINE_SIZE];
|
329
|
+
|
330
|
+
/*
|
331
|
+
* Since there is no __clear_cache in libgcc in csky toolchain.
|
332
|
+
* define ffi_csky_cacheflush in sysv.S.
|
333
|
+
* void ffi_csky_cacheflush(uint32 start_addr, uint32 size, int cache)
|
334
|
+
*/
|
335
|
+
#define CACHEFLUSH_IN_FFI 1
|
336
|
+
#if CACHEFLUSH_IN_FFI
|
337
|
+
extern void ffi_csky_cacheflush(unsigned char *__tramp, unsigned int k,
|
338
|
+
int i);
|
339
|
+
#define FFI_INIT_TRAMPOLINE(TRAMP,FUN,CTX) \
|
340
|
+
({ unsigned char *__tramp = (unsigned char*)(TRAMP); \
|
341
|
+
unsigned int __fun = (unsigned int)(FUN); \
|
342
|
+
unsigned int __ctx = (unsigned int)(CTX); \
|
343
|
+
unsigned char *insns = (unsigned char *)(CTX); \
|
344
|
+
memcpy (__tramp, ffi_csky_trampoline, TRAMPOLINE_SIZE); \
|
345
|
+
*(unsigned int*) &__tramp[TRAMPOLINE_SIZE] = __ctx; \
|
346
|
+
*(unsigned int*) &__tramp[TRAMPOLINE_SIZE + 4] = __fun; \
|
347
|
+
ffi_csky_cacheflush(&__tramp[0], TRAMPOLINE_SIZE, 3); /* Clear data mapping. */ \
|
348
|
+
ffi_csky_cacheflush(insns, TRAMPOLINE_SIZE, 3); \
|
349
|
+
/* Clear instruction \
|
350
|
+
mapping. */ \
|
351
|
+
})
|
352
|
+
#else
|
353
|
+
#define FFI_INIT_TRAMPOLINE(TRAMP,FUN,CTX) \
|
354
|
+
({ unsigned char *__tramp = (unsigned char*)(TRAMP); \
|
355
|
+
unsigned int __fun = (unsigned int)(FUN); \
|
356
|
+
unsigned int __ctx = (unsigned int)(CTX); \
|
357
|
+
unsigned char *insns = (unsigned char *)(CTX); \
|
358
|
+
memcpy (__tramp, ffi_csky_trampoline, TRAMPOLINE_SIZE); \
|
359
|
+
*(unsigned int*) &__tramp[TRAMPOLINE_SIZE] = __ctx; \
|
360
|
+
*(unsigned int*) &__tramp[TRAMPOLINE_SIZE + 4] = __fun; \
|
361
|
+
__clear_cache((&__tramp[0]), (&__tramp[TRAMPOLINE_SIZE-1])); /* Clear data mapping. */ \
|
362
|
+
__clear_cache(insns, insns + TRAMPOLINE_SIZE); \
|
363
|
+
/* Clear instruction \
|
364
|
+
mapping. */ \
|
365
|
+
})
|
366
|
+
#endif
|
367
|
+
|
368
|
+
/* the cif must already be prep'ed */
|
369
|
+
|
370
|
+
ffi_status
|
371
|
+
ffi_prep_closure_loc (ffi_closure* closure,
|
372
|
+
ffi_cif* cif,
|
373
|
+
void (*fun)(ffi_cif*,void*,void**,void*),
|
374
|
+
void *user_data,
|
375
|
+
void *codeloc)
|
376
|
+
{
|
377
|
+
void (*closure_func)(ffi_closure*) = NULL;
|
378
|
+
|
379
|
+
if (cif->abi == FFI_SYSV)
|
380
|
+
closure_func = &ffi_closure_SYSV;
|
381
|
+
else
|
382
|
+
return FFI_BAD_ABI;
|
383
|
+
|
384
|
+
FFI_INIT_TRAMPOLINE (&closure->tramp[0], \
|
385
|
+
closure_func, \
|
386
|
+
codeloc);
|
387
|
+
|
388
|
+
closure->cif = cif;
|
389
|
+
closure->user_data = user_data;
|
390
|
+
closure->fun = fun;
|
391
|
+
|
392
|
+
return FFI_OK;
|
393
|
+
}
|
394
|
+
|
395
|
+
|