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
@@ -32,6 +32,10 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
32
32
|
#define FFI_SIZEOF_JAVA_RAW 4
|
33
33
|
typedef unsigned long long ffi_arg;
|
34
34
|
typedef signed long long ffi_sarg;
|
35
|
+
#elif defined(_WIN32)
|
36
|
+
#define FFI_SIZEOF_ARG 8
|
37
|
+
typedef unsigned long long ffi_arg;
|
38
|
+
typedef signed long long ffi_sarg;
|
35
39
|
#else
|
36
40
|
typedef unsigned long ffi_arg;
|
37
41
|
typedef signed long ffi_sarg;
|
@@ -41,8 +45,13 @@ typedef enum ffi_abi
|
|
41
45
|
{
|
42
46
|
FFI_FIRST_ABI = 0,
|
43
47
|
FFI_SYSV,
|
48
|
+
FFI_WIN64,
|
44
49
|
FFI_LAST_ABI,
|
50
|
+
#if defined(_WIN32)
|
51
|
+
FFI_DEFAULT_ABI = FFI_WIN64
|
52
|
+
#else
|
45
53
|
FFI_DEFAULT_ABI = FFI_SYSV
|
54
|
+
#endif
|
46
55
|
} ffi_abi;
|
47
56
|
#endif
|
48
57
|
|
@@ -65,17 +74,24 @@ typedef enum ffi_abi
|
|
65
74
|
#define FFI_TRAMPOLINE_CLOSURE_OFFSET FFI_TRAMPOLINE_SIZE
|
66
75
|
#endif
|
67
76
|
|
77
|
+
#ifdef _WIN32
|
78
|
+
#define FFI_EXTRA_CIF_FIELDS unsigned is_variadic
|
79
|
+
#endif
|
80
|
+
#define FFI_TARGET_SPECIFIC_VARIADIC
|
81
|
+
|
68
82
|
/* ---- Internal ---- */
|
69
83
|
|
70
84
|
#if defined (__APPLE__)
|
71
|
-
#define FFI_TARGET_SPECIFIC_VARIADIC
|
72
85
|
#define FFI_EXTRA_CIF_FIELDS unsigned aarch64_nfixedargs
|
73
|
-
#
|
74
|
-
/* iOS
|
86
|
+
#elif !defined(_WIN32)
|
87
|
+
/* iOS and Windows reserve x18 for the system. Disable Go closures until
|
75
88
|
a new static chain is chosen. */
|
76
89
|
#define FFI_GO_CLOSURES 1
|
77
90
|
#endif
|
78
91
|
|
92
|
+
#ifndef _WIN32
|
93
|
+
/* No complex type on Windows */
|
79
94
|
#define FFI_TARGET_HAS_COMPLEX_TYPE
|
95
|
+
#endif
|
80
96
|
|
81
97
|
#endif
|
@@ -19,6 +19,7 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19
19
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
20
20
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
21
21
|
|
22
|
+
#if defined(__aarch64__) || defined(__arm64__)
|
22
23
|
#define LIBFFI_ASM
|
23
24
|
#include <fficonfig.h>
|
24
25
|
#include <ffi.h>
|
@@ -55,6 +56,14 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
55
56
|
#define PTR_SIZE 4
|
56
57
|
#else
|
57
58
|
#define PTR_SIZE 8
|
59
|
+
#endif
|
60
|
+
|
61
|
+
#if FFI_EXEC_TRAMPOLINE_TABLE && defined(__MACH__) && defined(HAVE_PTRAUTH)
|
62
|
+
# define BR(r) braaz r
|
63
|
+
# define BLR(r) blraaz r
|
64
|
+
#else
|
65
|
+
# define BR(r) br r
|
66
|
+
# define BLR(r) blr r
|
58
67
|
#endif
|
59
68
|
|
60
69
|
.text
|
@@ -110,7 +119,7 @@ CNAME(ffi_call_SYSV):
|
|
110
119
|
/* Deallocate the context, leaving the stacked arguments. */
|
111
120
|
add sp, sp, #CALL_CONTEXT_SIZE
|
112
121
|
|
113
|
-
|
122
|
+
BLR(x9) /* call fn */
|
114
123
|
|
115
124
|
ldp x3, x4, [x29, #16] /* reload rvalue and flags */
|
116
125
|
|
@@ -198,9 +207,9 @@ CNAME(ffi_call_SYSV):
|
|
198
207
|
cfi_endproc
|
199
208
|
|
200
209
|
.globl CNAME(ffi_call_SYSV)
|
210
|
+
FFI_HIDDEN(CNAME(ffi_call_SYSV))
|
201
211
|
#ifdef __ELF__
|
202
212
|
.type CNAME(ffi_call_SYSV), #function
|
203
|
-
.hidden CNAME(ffi_call_SYSV)
|
204
213
|
.size CNAME(ffi_call_SYSV), .-CNAME(ffi_call_SYSV)
|
205
214
|
#endif
|
206
215
|
|
@@ -237,9 +246,9 @@ CNAME(ffi_closure_SYSV_V):
|
|
237
246
|
cfi_endproc
|
238
247
|
|
239
248
|
.globl CNAME(ffi_closure_SYSV_V)
|
249
|
+
FFI_HIDDEN(CNAME(ffi_closure_SYSV_V))
|
240
250
|
#ifdef __ELF__
|
241
251
|
.type CNAME(ffi_closure_SYSV_V), #function
|
242
|
-
.hidden CNAME(ffi_closure_SYSV_V)
|
243
252
|
.size CNAME(ffi_closure_SYSV_V), . - CNAME(ffi_closure_SYSV_V)
|
244
253
|
#endif
|
245
254
|
|
@@ -270,6 +279,9 @@ CNAME(ffi_closure_SYSV):
|
|
270
279
|
bl CNAME(ffi_closure_SYSV_inner)
|
271
280
|
|
272
281
|
/* Load the return value as directed. */
|
282
|
+
#if FFI_EXEC_TRAMPOLINE_TABLE && defined(__MACH__) && defined(HAVE_PTRAUTH)
|
283
|
+
autiza x1
|
284
|
+
#endif
|
273
285
|
adr x1, 0f
|
274
286
|
and w0, w0, #AARCH64_RET_MASK
|
275
287
|
add x1, x1, x0, lsl #3
|
@@ -349,9 +361,9 @@ CNAME(ffi_closure_SYSV):
|
|
349
361
|
cfi_endproc
|
350
362
|
|
351
363
|
.globl CNAME(ffi_closure_SYSV)
|
364
|
+
FFI_HIDDEN(CNAME(ffi_closure_SYSV))
|
352
365
|
#ifdef __ELF__
|
353
366
|
.type CNAME(ffi_closure_SYSV), #function
|
354
|
-
.hidden CNAME(ffi_closure_SYSV)
|
355
367
|
.size CNAME(ffi_closure_SYSV), . - CNAME(ffi_closure_SYSV)
|
356
368
|
#endif
|
357
369
|
|
@@ -364,14 +376,14 @@ CNAME(ffi_closure_trampoline_table_page):
|
|
364
376
|
.rept PAGE_MAX_SIZE / FFI_TRAMPOLINE_SIZE
|
365
377
|
adr x16, -PAGE_MAX_SIZE
|
366
378
|
ldp x17, x16, [x16]
|
367
|
-
|
368
|
-
nop /* each entry in the trampoline config page is 2*sizeof(void*) so the trampoline itself cannot be smaller
|
379
|
+
BR(x16)
|
380
|
+
nop /* each entry in the trampoline config page is 2*sizeof(void*) so the trampoline itself cannot be smaller than 16 bytes */
|
369
381
|
.endr
|
370
382
|
|
371
383
|
.globl CNAME(ffi_closure_trampoline_table_page)
|
384
|
+
FFI_HIDDEN(CNAME(ffi_closure_trampoline_table_page))
|
372
385
|
#ifdef __ELF__
|
373
386
|
.type CNAME(ffi_closure_trampoline_table_page), #function
|
374
|
-
.hidden CNAME(ffi_closure_trampoline_table_page)
|
375
387
|
.size CNAME(ffi_closure_trampoline_table_page), . - CNAME(ffi_closure_trampoline_table_page)
|
376
388
|
#endif
|
377
389
|
#endif
|
@@ -396,9 +408,9 @@ CNAME(ffi_go_closure_SYSV_V):
|
|
396
408
|
cfi_endproc
|
397
409
|
|
398
410
|
.globl CNAME(ffi_go_closure_SYSV_V)
|
411
|
+
FFI_HIDDEN(CNAME(ffi_go_closure_SYSV_V))
|
399
412
|
#ifdef __ELF__
|
400
413
|
.type CNAME(ffi_go_closure_SYSV_V), #function
|
401
|
-
.hidden CNAME(ffi_go_closure_SYSV_V)
|
402
414
|
.size CNAME(ffi_go_closure_SYSV_V), . - CNAME(ffi_go_closure_SYSV_V)
|
403
415
|
#endif
|
404
416
|
|
@@ -425,12 +437,13 @@ CNAME(ffi_go_closure_SYSV):
|
|
425
437
|
cfi_endproc
|
426
438
|
|
427
439
|
.globl CNAME(ffi_go_closure_SYSV)
|
440
|
+
FFI_HIDDEN(CNAME(ffi_go_closure_SYSV))
|
428
441
|
#ifdef __ELF__
|
429
442
|
.type CNAME(ffi_go_closure_SYSV), #function
|
430
|
-
.hidden CNAME(ffi_go_closure_SYSV)
|
431
443
|
.size CNAME(ffi_go_closure_SYSV), . - CNAME(ffi_go_closure_SYSV)
|
432
444
|
#endif
|
433
445
|
#endif /* FFI_GO_CLOSURES */
|
446
|
+
#endif /* __arm64__ */
|
434
447
|
|
435
448
|
#if defined __ELF__ && defined __linux__
|
436
449
|
.section .note.GNU-stack,"",%progbits
|
@@ -0,0 +1,506 @@
|
|
1
|
+
/* Copyright (c) 2009, 2010, 2011, 2012 ARM Ltd.
|
2
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
3
|
+
a copy of this software and associated documentation files (the
|
4
|
+
``Software''), to deal in the Software without restriction, including
|
5
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
6
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
7
|
+
permit persons to whom the Software is furnished to do so, subject to
|
8
|
+
the following conditions:
|
9
|
+
The above copyright notice and this permission notice shall be
|
10
|
+
included in all copies or substantial portions of the Software.
|
11
|
+
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
|
12
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
13
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
14
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
15
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
16
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
17
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
18
|
+
|
19
|
+
#define LIBFFI_ASM
|
20
|
+
#include <fficonfig.h>
|
21
|
+
#include <ffi.h>
|
22
|
+
#include <ffi_cfi.h>
|
23
|
+
#include "internal.h"
|
24
|
+
|
25
|
+
OPT 2 /*disable listing */
|
26
|
+
/* For some macros to add unwind information */
|
27
|
+
#include "ksarm64.h"
|
28
|
+
OPT 1 /*re-enable listing */
|
29
|
+
|
30
|
+
#define BE(X) 0
|
31
|
+
#define PTR_REG(n) x##n
|
32
|
+
#define PTR_SIZE 8
|
33
|
+
|
34
|
+
IMPORT ffi_closure_SYSV_inner
|
35
|
+
EXPORT ffi_call_SYSV
|
36
|
+
EXPORT ffi_closure_SYSV_V
|
37
|
+
EXPORT ffi_closure_SYSV
|
38
|
+
EXPORT extend_hfa_type
|
39
|
+
EXPORT compress_hfa_type
|
40
|
+
#ifdef FFI_GO_CLOSURES
|
41
|
+
EXPORT ffi_go_closure_SYSV_V
|
42
|
+
EXPORT ffi_go_closure_SYSV
|
43
|
+
#endif
|
44
|
+
|
45
|
+
TEXTAREA, ALIGN=8
|
46
|
+
|
47
|
+
/* ffi_call_SYSV
|
48
|
+
extern void ffi_call_SYSV (void *stack, void *frame,
|
49
|
+
void (*fn)(void), void *rvalue,
|
50
|
+
int flags, void *closure);
|
51
|
+
Therefore on entry we have:
|
52
|
+
x0 stack
|
53
|
+
x1 frame
|
54
|
+
x2 fn
|
55
|
+
x3 rvalue
|
56
|
+
x4 flags
|
57
|
+
x5 closure
|
58
|
+
*/
|
59
|
+
|
60
|
+
NESTED_ENTRY ffi_call_SYSV_fake
|
61
|
+
|
62
|
+
/* For unwind information, Windows has to store fp and lr */
|
63
|
+
PROLOG_SAVE_REG_PAIR x29, x30, #-32!
|
64
|
+
|
65
|
+
ALTERNATE_ENTRY ffi_call_SYSV
|
66
|
+
/* Use a stack frame allocated by our caller. */
|
67
|
+
stp x29, x30, [x1]
|
68
|
+
mov x29, x1
|
69
|
+
mov sp, x0
|
70
|
+
|
71
|
+
mov x9, x2 /* save fn */
|
72
|
+
mov x8, x3 /* install structure return */
|
73
|
+
#ifdef FFI_GO_CLOSURES
|
74
|
+
/*mov x18, x5 install static chain */
|
75
|
+
#endif
|
76
|
+
stp x3, x4, [x29, #16] /* save rvalue and flags */
|
77
|
+
|
78
|
+
/* Load the vector argument passing registers, if necessary. */
|
79
|
+
tbz x4, #AARCH64_FLAG_ARG_V_BIT, ffi_call_SYSV_L1
|
80
|
+
ldp q0, q1, [sp, #0]
|
81
|
+
ldp q2, q3, [sp, #32]
|
82
|
+
ldp q4, q5, [sp, #64]
|
83
|
+
ldp q6, q7, [sp, #96]
|
84
|
+
|
85
|
+
ffi_call_SYSV_L1
|
86
|
+
/* Load the core argument passing registers, including
|
87
|
+
the structure return pointer. */
|
88
|
+
ldp x0, x1, [sp, #16*N_V_ARG_REG + 0]
|
89
|
+
ldp x2, x3, [sp, #16*N_V_ARG_REG + 16]
|
90
|
+
ldp x4, x5, [sp, #16*N_V_ARG_REG + 32]
|
91
|
+
ldp x6, x7, [sp, #16*N_V_ARG_REG + 48]
|
92
|
+
|
93
|
+
/* Deallocate the context, leaving the stacked arguments. */
|
94
|
+
add sp, sp, #CALL_CONTEXT_SIZE
|
95
|
+
|
96
|
+
blr x9 /* call fn */
|
97
|
+
|
98
|
+
ldp x3, x4, [x29, #16] /* reload rvalue and flags */
|
99
|
+
|
100
|
+
/* Partially deconstruct the stack frame. */
|
101
|
+
mov sp, x29
|
102
|
+
ldp x29, x30, [x29]
|
103
|
+
|
104
|
+
/* Save the return value as directed. */
|
105
|
+
adr x5, ffi_call_SYSV_return
|
106
|
+
and w4, w4, #AARCH64_RET_MASK
|
107
|
+
add x5, x5, x4, lsl #3
|
108
|
+
br x5
|
109
|
+
|
110
|
+
/* Note that each table entry is 2 insns, and thus 8 bytes.
|
111
|
+
For integer data, note that we're storing into ffi_arg
|
112
|
+
and therefore we want to extend to 64 bits; these types
|
113
|
+
have two consecutive entries allocated for them. */
|
114
|
+
ALIGN 4
|
115
|
+
ffi_call_SYSV_return
|
116
|
+
ret /* VOID */
|
117
|
+
nop
|
118
|
+
str x0, [x3] /* INT64 */
|
119
|
+
ret
|
120
|
+
stp x0, x1, [x3] /* INT128 */
|
121
|
+
ret
|
122
|
+
brk #1000 /* UNUSED */
|
123
|
+
ret
|
124
|
+
brk #1000 /* UNUSED */
|
125
|
+
ret
|
126
|
+
brk #1000 /* UNUSED */
|
127
|
+
ret
|
128
|
+
brk #1000 /* UNUSED */
|
129
|
+
ret
|
130
|
+
brk #1000 /* UNUSED */
|
131
|
+
ret
|
132
|
+
st4 { v0.s, v1.s, v2.s, v3.s }[0], [x3] /* S4 */
|
133
|
+
ret
|
134
|
+
st3 { v0.s, v1.s, v2.s }[0], [x3] /* S3 */
|
135
|
+
ret
|
136
|
+
stp s0, s1, [x3] /* S2 */
|
137
|
+
ret
|
138
|
+
str s0, [x3] /* S1 */
|
139
|
+
ret
|
140
|
+
st4 { v0.d, v1.d, v2.d, v3.d }[0], [x3] /* D4 */
|
141
|
+
ret
|
142
|
+
st3 { v0.d, v1.d, v2.d }[0], [x3] /* D3 */
|
143
|
+
ret
|
144
|
+
stp d0, d1, [x3] /* D2 */
|
145
|
+
ret
|
146
|
+
str d0, [x3] /* D1 */
|
147
|
+
ret
|
148
|
+
str q3, [x3, #48] /* Q4 */
|
149
|
+
nop
|
150
|
+
str q2, [x3, #32] /* Q3 */
|
151
|
+
nop
|
152
|
+
stp q0, q1, [x3] /* Q2 */
|
153
|
+
ret
|
154
|
+
str q0, [x3] /* Q1 */
|
155
|
+
ret
|
156
|
+
uxtb w0, w0 /* UINT8 */
|
157
|
+
str x0, [x3]
|
158
|
+
ret /* reserved */
|
159
|
+
nop
|
160
|
+
uxth w0, w0 /* UINT16 */
|
161
|
+
str x0, [x3]
|
162
|
+
ret /* reserved */
|
163
|
+
nop
|
164
|
+
mov w0, w0 /* UINT32 */
|
165
|
+
str x0, [x3]
|
166
|
+
ret /* reserved */
|
167
|
+
nop
|
168
|
+
sxtb x0, w0 /* SINT8 */
|
169
|
+
str x0, [x3]
|
170
|
+
ret /* reserved */
|
171
|
+
nop
|
172
|
+
sxth x0, w0 /* SINT16 */
|
173
|
+
str x0, [x3]
|
174
|
+
ret /* reserved */
|
175
|
+
nop
|
176
|
+
sxtw x0, w0 /* SINT32 */
|
177
|
+
str x0, [x3]
|
178
|
+
ret /* reserved */
|
179
|
+
nop
|
180
|
+
|
181
|
+
|
182
|
+
NESTED_END ffi_call_SYSV_fake
|
183
|
+
|
184
|
+
|
185
|
+
/* ffi_closure_SYSV
|
186
|
+
Closure invocation glue. This is the low level code invoked directly by
|
187
|
+
the closure trampoline to setup and call a closure.
|
188
|
+
On entry x17 points to a struct ffi_closure, x16 has been clobbered
|
189
|
+
all other registers are preserved.
|
190
|
+
We allocate a call context and save the argument passing registers,
|
191
|
+
then invoked the generic C ffi_closure_SYSV_inner() function to do all
|
192
|
+
the real work, on return we load the result passing registers back from
|
193
|
+
the call context.
|
194
|
+
*/
|
195
|
+
|
196
|
+
#define ffi_closure_SYSV_FS (8*2 + CALL_CONTEXT_SIZE + 64)
|
197
|
+
|
198
|
+
NESTED_ENTRY ffi_closure_SYSV_V
|
199
|
+
PROLOG_SAVE_REG_PAIR x29, x30, #-ffi_closure_SYSV_FS!
|
200
|
+
|
201
|
+
/* Save the argument passing vector registers. */
|
202
|
+
stp q0, q1, [sp, #16 + 0]
|
203
|
+
stp q2, q3, [sp, #16 + 32]
|
204
|
+
stp q4, q5, [sp, #16 + 64]
|
205
|
+
stp q6, q7, [sp, #16 + 96]
|
206
|
+
|
207
|
+
b ffi_closure_SYSV_save_argument
|
208
|
+
NESTED_END ffi_closure_SYSV_V
|
209
|
+
|
210
|
+
NESTED_ENTRY ffi_closure_SYSV
|
211
|
+
PROLOG_SAVE_REG_PAIR x29, x30, #-ffi_closure_SYSV_FS!
|
212
|
+
|
213
|
+
ffi_closure_SYSV_save_argument
|
214
|
+
/* Save the argument passing core registers. */
|
215
|
+
stp x0, x1, [sp, #16 + 16*N_V_ARG_REG + 0]
|
216
|
+
stp x2, x3, [sp, #16 + 16*N_V_ARG_REG + 16]
|
217
|
+
stp x4, x5, [sp, #16 + 16*N_V_ARG_REG + 32]
|
218
|
+
stp x6, x7, [sp, #16 + 16*N_V_ARG_REG + 48]
|
219
|
+
|
220
|
+
/* Load ffi_closure_inner arguments. */
|
221
|
+
ldp PTR_REG(0), PTR_REG(1), [x17, #FFI_TRAMPOLINE_CLOSURE_OFFSET] /* load cif, fn */
|
222
|
+
ldr PTR_REG(2), [x17, #FFI_TRAMPOLINE_CLOSURE_OFFSET+PTR_SIZE*2] /* load user_data */
|
223
|
+
|
224
|
+
do_closure
|
225
|
+
add x3, sp, #16 /* load context */
|
226
|
+
add x4, sp, #ffi_closure_SYSV_FS /* load stack */
|
227
|
+
add x5, sp, #16+CALL_CONTEXT_SIZE /* load rvalue */
|
228
|
+
mov x6, x8 /* load struct_rval */
|
229
|
+
|
230
|
+
bl ffi_closure_SYSV_inner
|
231
|
+
|
232
|
+
/* Load the return value as directed. */
|
233
|
+
adr x1, ffi_closure_SYSV_return_base
|
234
|
+
and w0, w0, #AARCH64_RET_MASK
|
235
|
+
add x1, x1, x0, lsl #3
|
236
|
+
add x3, sp, #16+CALL_CONTEXT_SIZE
|
237
|
+
br x1
|
238
|
+
|
239
|
+
/* Note that each table entry is 2 insns, and thus 8 bytes. */
|
240
|
+
ALIGN 8
|
241
|
+
ffi_closure_SYSV_return_base
|
242
|
+
b ffi_closure_SYSV_epilog /* VOID */
|
243
|
+
nop
|
244
|
+
ldr x0, [x3] /* INT64 */
|
245
|
+
b ffi_closure_SYSV_epilog
|
246
|
+
ldp x0, x1, [x3] /* INT128 */
|
247
|
+
b ffi_closure_SYSV_epilog
|
248
|
+
brk #1000 /* UNUSED */
|
249
|
+
nop
|
250
|
+
brk #1000 /* UNUSED */
|
251
|
+
nop
|
252
|
+
brk #1000 /* UNUSED */
|
253
|
+
nop
|
254
|
+
brk #1000 /* UNUSED */
|
255
|
+
nop
|
256
|
+
brk #1000 /* UNUSED */
|
257
|
+
nop
|
258
|
+
ldr s3, [x3, #12] /* S4 */
|
259
|
+
nop
|
260
|
+
ldr s2, [x3, #8] /* S3 */
|
261
|
+
nop
|
262
|
+
ldp s0, s1, [x3] /* S2 */
|
263
|
+
b ffi_closure_SYSV_epilog
|
264
|
+
ldr s0, [x3] /* S1 */
|
265
|
+
b ffi_closure_SYSV_epilog
|
266
|
+
ldr d3, [x3, #24] /* D4 */
|
267
|
+
nop
|
268
|
+
ldr d2, [x3, #16] /* D3 */
|
269
|
+
nop
|
270
|
+
ldp d0, d1, [x3] /* D2 */
|
271
|
+
b ffi_closure_SYSV_epilog
|
272
|
+
ldr d0, [x3] /* D1 */
|
273
|
+
b ffi_closure_SYSV_epilog
|
274
|
+
ldr q3, [x3, #48] /* Q4 */
|
275
|
+
nop
|
276
|
+
ldr q2, [x3, #32] /* Q3 */
|
277
|
+
nop
|
278
|
+
ldp q0, q1, [x3] /* Q2 */
|
279
|
+
b ffi_closure_SYSV_epilog
|
280
|
+
ldr q0, [x3] /* Q1 */
|
281
|
+
b ffi_closure_SYSV_epilog
|
282
|
+
ldrb w0, [x3, #BE(7)] /* UINT8 */
|
283
|
+
b ffi_closure_SYSV_epilog
|
284
|
+
brk #1000 /* reserved */
|
285
|
+
nop
|
286
|
+
ldrh w0, [x3, #BE(6)] /* UINT16 */
|
287
|
+
b ffi_closure_SYSV_epilog
|
288
|
+
brk #1000 /* reserved */
|
289
|
+
nop
|
290
|
+
ldr w0, [x3, #BE(4)] /* UINT32 */
|
291
|
+
b ffi_closure_SYSV_epilog
|
292
|
+
brk #1000 /* reserved */
|
293
|
+
nop
|
294
|
+
ldrsb x0, [x3, #BE(7)] /* SINT8 */
|
295
|
+
b ffi_closure_SYSV_epilog
|
296
|
+
brk #1000 /* reserved */
|
297
|
+
nop
|
298
|
+
ldrsh x0, [x3, #BE(6)] /* SINT16 */
|
299
|
+
b ffi_closure_SYSV_epilog
|
300
|
+
brk #1000 /* reserved */
|
301
|
+
nop
|
302
|
+
ldrsw x0, [x3, #BE(4)] /* SINT32 */
|
303
|
+
nop
|
304
|
+
/* reserved */
|
305
|
+
|
306
|
+
ffi_closure_SYSV_epilog
|
307
|
+
EPILOG_RESTORE_REG_PAIR x29, x30, #ffi_closure_SYSV_FS!
|
308
|
+
EPILOG_RETURN
|
309
|
+
NESTED_END ffi_closure_SYSV
|
310
|
+
|
311
|
+
|
312
|
+
#ifdef FFI_GO_CLOSURES
|
313
|
+
NESTED_ENTRY ffi_go_closure_SYSV_V
|
314
|
+
PROLOG_SAVE_REG_PAIR x29, x30, #-ffi_closure_SYSV_FS!
|
315
|
+
|
316
|
+
/* Save the argument passing vector registers. */
|
317
|
+
stp q0, q1, [sp, #16 + 0]
|
318
|
+
stp q2, q3, [sp, #16 + 32]
|
319
|
+
stp q4, q5, [sp, #16 + 64]
|
320
|
+
stp q6, q7, [sp, #16 + 96]
|
321
|
+
b ffi_go_closure_SYSV_save_argument
|
322
|
+
NESTED_END ffi_go_closure_SYSV_V
|
323
|
+
|
324
|
+
NESTED_ENTRY ffi_go_closure_SYSV
|
325
|
+
PROLOG_SAVE_REG_PAIR x29, x30, #-ffi_closure_SYSV_FS!
|
326
|
+
|
327
|
+
ffi_go_closure_SYSV_save_argument
|
328
|
+
/* Save the argument passing core registers. */
|
329
|
+
stp x0, x1, [sp, #16 + 16*N_V_ARG_REG + 0]
|
330
|
+
stp x2, x3, [sp, #16 + 16*N_V_ARG_REG + 16]
|
331
|
+
stp x4, x5, [sp, #16 + 16*N_V_ARG_REG + 32]
|
332
|
+
stp x6, x7, [sp, #16 + 16*N_V_ARG_REG + 48]
|
333
|
+
|
334
|
+
/* Load ffi_closure_inner arguments. */
|
335
|
+
ldp PTR_REG(0), PTR_REG(1), [x18, #PTR_SIZE]/* load cif, fn */
|
336
|
+
mov x2, x18 /* load user_data */
|
337
|
+
b do_closure
|
338
|
+
NESTED_END ffi_go_closure_SYSV
|
339
|
+
|
340
|
+
#endif /* FFI_GO_CLOSURES */
|
341
|
+
|
342
|
+
|
343
|
+
/* void extend_hfa_type (void *dest, void *src, int h) */
|
344
|
+
|
345
|
+
LEAF_ENTRY extend_hfa_type
|
346
|
+
|
347
|
+
adr x3, extend_hfa_type_jump_base
|
348
|
+
and w2, w2, #AARCH64_RET_MASK
|
349
|
+
sub x2, x2, #AARCH64_RET_S4
|
350
|
+
add x3, x3, x2, lsl #4
|
351
|
+
br x3
|
352
|
+
|
353
|
+
ALIGN 4
|
354
|
+
extend_hfa_type_jump_base
|
355
|
+
ldp s16, s17, [x1] /* S4 */
|
356
|
+
ldp s18, s19, [x1, #8]
|
357
|
+
b extend_hfa_type_store_4
|
358
|
+
nop
|
359
|
+
|
360
|
+
ldp s16, s17, [x1] /* S3 */
|
361
|
+
ldr s18, [x1, #8]
|
362
|
+
b extend_hfa_type_store_3
|
363
|
+
nop
|
364
|
+
|
365
|
+
ldp s16, s17, [x1] /* S2 */
|
366
|
+
b extend_hfa_type_store_2
|
367
|
+
nop
|
368
|
+
nop
|
369
|
+
|
370
|
+
ldr s16, [x1] /* S1 */
|
371
|
+
b extend_hfa_type_store_1
|
372
|
+
nop
|
373
|
+
nop
|
374
|
+
|
375
|
+
ldp d16, d17, [x1] /* D4 */
|
376
|
+
ldp d18, d19, [x1, #16]
|
377
|
+
b extend_hfa_type_store_4
|
378
|
+
nop
|
379
|
+
|
380
|
+
ldp d16, d17, [x1] /* D3 */
|
381
|
+
ldr d18, [x1, #16]
|
382
|
+
b extend_hfa_type_store_3
|
383
|
+
nop
|
384
|
+
|
385
|
+
ldp d16, d17, [x1] /* D2 */
|
386
|
+
b extend_hfa_type_store_2
|
387
|
+
nop
|
388
|
+
nop
|
389
|
+
|
390
|
+
ldr d16, [x1] /* D1 */
|
391
|
+
b extend_hfa_type_store_1
|
392
|
+
nop
|
393
|
+
nop
|
394
|
+
|
395
|
+
ldp q16, q17, [x1] /* Q4 */
|
396
|
+
ldp q18, q19, [x1, #16]
|
397
|
+
b extend_hfa_type_store_4
|
398
|
+
nop
|
399
|
+
|
400
|
+
ldp q16, q17, [x1] /* Q3 */
|
401
|
+
ldr q18, [x1, #16]
|
402
|
+
b extend_hfa_type_store_3
|
403
|
+
nop
|
404
|
+
|
405
|
+
ldp q16, q17, [x1] /* Q2 */
|
406
|
+
b extend_hfa_type_store_2
|
407
|
+
nop
|
408
|
+
nop
|
409
|
+
|
410
|
+
ldr q16, [x1] /* Q1 */
|
411
|
+
b extend_hfa_type_store_1
|
412
|
+
|
413
|
+
extend_hfa_type_store_4
|
414
|
+
str q19, [x0, #48]
|
415
|
+
extend_hfa_type_store_3
|
416
|
+
str q18, [x0, #32]
|
417
|
+
extend_hfa_type_store_2
|
418
|
+
str q17, [x0, #16]
|
419
|
+
extend_hfa_type_store_1
|
420
|
+
str q16, [x0]
|
421
|
+
ret
|
422
|
+
|
423
|
+
LEAF_END extend_hfa_type
|
424
|
+
|
425
|
+
|
426
|
+
/* void compress_hfa_type (void *dest, void *reg, int h) */
|
427
|
+
|
428
|
+
LEAF_ENTRY compress_hfa_type
|
429
|
+
|
430
|
+
adr x3, compress_hfa_type_jump_base
|
431
|
+
and w2, w2, #AARCH64_RET_MASK
|
432
|
+
sub x2, x2, #AARCH64_RET_S4
|
433
|
+
add x3, x3, x2, lsl #4
|
434
|
+
br x3
|
435
|
+
|
436
|
+
ALIGN 4
|
437
|
+
compress_hfa_type_jump_base
|
438
|
+
ldp q16, q17, [x1] /* S4 */
|
439
|
+
ldp q18, q19, [x1, #32]
|
440
|
+
st4 { v16.s, v17.s, v18.s, v19.s }[0], [x0]
|
441
|
+
ret
|
442
|
+
|
443
|
+
ldp q16, q17, [x1] /* S3 */
|
444
|
+
ldr q18, [x1, #32]
|
445
|
+
st3 { v16.s, v17.s, v18.s }[0], [x0]
|
446
|
+
ret
|
447
|
+
|
448
|
+
ldp q16, q17, [x1] /* S2 */
|
449
|
+
st2 { v16.s, v17.s }[0], [x0]
|
450
|
+
ret
|
451
|
+
nop
|
452
|
+
|
453
|
+
ldr q16, [x1] /* S1 */
|
454
|
+
st1 { v16.s }[0], [x0]
|
455
|
+
ret
|
456
|
+
nop
|
457
|
+
|
458
|
+
ldp q16, q17, [x1] /* D4 */
|
459
|
+
ldp q18, q19, [x1, #32]
|
460
|
+
st4 { v16.d, v17.d, v18.d, v19.d }[0], [x0]
|
461
|
+
ret
|
462
|
+
|
463
|
+
ldp q16, q17, [x1] /* D3 */
|
464
|
+
ldr q18, [x1, #32]
|
465
|
+
st3 { v16.d, v17.d, v18.d }[0], [x0]
|
466
|
+
ret
|
467
|
+
|
468
|
+
ldp q16, q17, [x1] /* D2 */
|
469
|
+
st2 { v16.d, v17.d }[0], [x0]
|
470
|
+
ret
|
471
|
+
nop
|
472
|
+
|
473
|
+
ldr q16, [x1] /* D1 */
|
474
|
+
st1 { v16.d }[0], [x0]
|
475
|
+
ret
|
476
|
+
nop
|
477
|
+
|
478
|
+
ldp q16, q17, [x1] /* Q4 */
|
479
|
+
ldp q18, q19, [x1, #32]
|
480
|
+
b compress_hfa_type_store_q4
|
481
|
+
nop
|
482
|
+
|
483
|
+
ldp q16, q17, [x1] /* Q3 */
|
484
|
+
ldr q18, [x1, #32]
|
485
|
+
b compress_hfa_type_store_q3
|
486
|
+
nop
|
487
|
+
|
488
|
+
ldp q16, q17, [x1] /* Q2 */
|
489
|
+
stp q16, q17, [x0]
|
490
|
+
ret
|
491
|
+
nop
|
492
|
+
|
493
|
+
ldr q16, [x1] /* Q1 */
|
494
|
+
str q16, [x0]
|
495
|
+
ret
|
496
|
+
|
497
|
+
compress_hfa_type_store_q4
|
498
|
+
str q19, [x0, #48]
|
499
|
+
compress_hfa_type_store_q3
|
500
|
+
str q18, [x0, #32]
|
501
|
+
stp q16, q17, [x0]
|
502
|
+
ret
|
503
|
+
|
504
|
+
LEAF_END compress_hfa_type
|
505
|
+
|
506
|
+
END
|