ffi 1.10.0 → 1.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/{appveyor.yml → .appveyor.yml} +9 -1
- data/.github/workflows/ci.yml +64 -0
- data/.gitignore +3 -0
- data/.gitmodules +1 -0
- data/.travis.yml +35 -20
- data/CHANGELOG.md +124 -0
- data/Gemfile +6 -4
- data/README.md +29 -17
- data/Rakefile +29 -120
- data/ext/ffi_c/AbstractMemory.c +5 -9
- data/ext/ffi_c/Buffer.c +2 -2
- data/ext/ffi_c/Call.c +14 -41
- data/ext/ffi_c/Call.h +4 -7
- data/ext/ffi_c/ClosurePool.c +11 -14
- data/ext/ffi_c/DynamicLibrary.c +1 -1
- data/ext/ffi_c/Function.c +18 -117
- data/ext/ffi_c/FunctionInfo.c +1 -2
- data/ext/ffi_c/LongDouble.c +12 -10
- data/ext/ffi_c/LongDouble.h +0 -4
- data/ext/ffi_c/MemoryPointer.c +1 -1
- data/ext/ffi_c/MethodHandle.c +18 -24
- data/ext/ffi_c/MethodHandle.h +3 -2
- data/ext/ffi_c/Platform.c +1 -47
- data/ext/ffi_c/Pointer.c +1 -1
- data/ext/ffi_c/Struct.c +47 -51
- data/ext/ffi_c/Struct.h +12 -6
- data/ext/ffi_c/StructLayout.c +20 -14
- data/ext/ffi_c/Thread.c +4 -223
- data/ext/ffi_c/Thread.h +0 -14
- data/ext/ffi_c/Type.c +0 -18
- data/ext/ffi_c/Type.h +0 -1
- data/ext/ffi_c/Types.c +1 -1
- data/ext/ffi_c/Variadic.c +9 -15
- data/ext/ffi_c/compat.h +4 -0
- data/ext/ffi_c/extconf.rb +36 -26
- 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/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 +35 -41
- data/ext/ffi_c/libffi/README.md +29 -8
- data/ext/ffi_c/libffi/configure.ac +31 -11
- data/ext/ffi_c/libffi/configure.host +26 -9
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +1 -3
- 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 +27 -2
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +132 -58
- data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +13 -2
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +21 -8
- data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +40 -5
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +8 -1
- data/ext/ffi_c/libffi/src/arm/sysv.S +2 -0
- data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
- data/ext/ffi_c/libffi/src/closures.c +51 -13
- data/ext/ffi_c/libffi/src/frv/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/metag/ffi.c +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_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 +83 -28
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +68 -4
- 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 +21 -10
- data/ext/ffi_c/libffi/src/x86/ffi64.c +15 -11
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +15 -2
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +15 -10
- data/ext/ffi_c/libffi/src/x86/sysv.S +103 -8
- data/ext/ffi_c/libffi/src/x86/sysv_intel.S +995 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +99 -2
- data/ext/ffi_c/libffi/src/x86/win64.S +9 -1
- data/ext/ffi_c/libffi/testsuite/Makefile.am +114 -109
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +26 -22
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +7 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +1 -1
- 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 +1 -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 +12 -5
- data/lib/ffi.rb +10 -2
- data/lib/ffi/data_converter.rb +67 -0
- data/lib/ffi/ffi.rb +2 -0
- data/lib/ffi/library.rb +10 -6
- data/lib/ffi/platform.rb +12 -3
- data/lib/ffi/platform/aarch64-freebsd/types.conf +89 -89
- data/lib/ffi/platform/aarch64-freebsd12/types.conf +89 -89
- data/lib/ffi/platform/aarch64-linux/types.conf +81 -81
- data/lib/ffi/platform/arm-freebsd/types.conf +87 -87
- data/lib/ffi/platform/arm-freebsd12/types.conf +87 -87
- 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 +87 -87
- data/lib/ffi/platform/i386-freebsd12/types.conf +87 -87
- 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/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 +89 -89
- data/lib/ffi/platform/x86_64-freebsd12/types.conf +139 -109
- data/lib/ffi/platform/x86_64-linux/types.conf +107 -77
- 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 +20 -13
- 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/version.rb +1 -1
- 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 +141 -116
- 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/samples/sample_helper.rb +0 -6
data/ext/ffi_c/libffi/LICENSE
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
The libffi source distribution contains certain code that is not part
|
2
2
|
of libffi, and is only used as tooling to assist with the building and
|
3
3
|
testing of libffi. This includes the msvcc.sh script used to wrap the
|
4
|
-
Microsoft compiler with GNU compatible command-line options,
|
5
|
-
libffi test code distributed in the
|
6
|
-
directory. This code is distributed with
|
7
|
-
convenience only, and libffi is in no way
|
4
|
+
Microsoft compiler with GNU compatible command-line options,
|
5
|
+
make_sunver.pl, and the libffi test code distributed in the
|
6
|
+
testsuite/libffi.bhaible directory. This code is distributed with
|
7
|
+
libffi for the purpose of convenience only, and libffi is in no way
|
8
|
+
derived from this code.
|
8
9
|
|
9
10
|
msvcc.sh an testsuite/libffi.bhaible are both distributed under the
|
10
11
|
terms of the GNU GPL version 2, as below.
|
@@ -14,15 +14,14 @@ if BUILD_DOCS
|
|
14
14
|
SUBDIRS += doc
|
15
15
|
endif
|
16
16
|
|
17
|
-
EXTRA_DIST = LICENSE ChangeLog.
|
18
|
-
ChangeLog.libffi ChangeLog.libffi-3.1 \
|
17
|
+
EXTRA_DIST = LICENSE ChangeLog.old \
|
19
18
|
m4/libtool.m4 m4/lt~obsolete.m4 \
|
20
19
|
m4/ltoptions.m4 m4/ltsugar.m4 m4/ltversion.m4 \
|
21
20
|
m4/ltversion.m4 src/debug.c msvcc.sh \
|
22
21
|
generate-darwin-source-and-headers.py \
|
23
22
|
libffi.xcodeproj/project.pbxproj \
|
24
23
|
libtool-ldflags libtool-version configure.host README.md \
|
25
|
-
libffi.map.in
|
24
|
+
libffi.map.in LICENSE-BUILDTOOLS msvc_build make_sunver.pl
|
26
25
|
|
27
26
|
# local.exp is generated by configure
|
28
27
|
DISTCLEANFILES = local.exp
|
@@ -77,41 +76,32 @@ noinst_HEADERS = \
|
|
77
76
|
src/xtensa/ffitarget.h \
|
78
77
|
src/dlmalloc.c
|
79
78
|
|
80
|
-
EXTRA_libffi_la_SOURCES = \
|
81
|
-
src/aarch64/ffi.c src/
|
82
|
-
src/
|
83
|
-
src/
|
84
|
-
src/
|
85
|
-
src/
|
86
|
-
src/
|
87
|
-
src/
|
88
|
-
src/
|
89
|
-
src/
|
90
|
-
src/
|
91
|
-
src/
|
92
|
-
src/
|
93
|
-
src/
|
94
|
-
src/
|
95
|
-
src/
|
96
|
-
src/
|
97
|
-
src/
|
98
|
-
src/
|
99
|
-
src/
|
100
|
-
src/
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
src/
|
106
|
-
src/s390/ffi.c src/s390/sysv.S \
|
107
|
-
src/sh/ffi.c src/sh/sysv.S \
|
108
|
-
src/sh64/ffi.c src/sh64/sysv.S \
|
109
|
-
src/sparc/ffi.c src/sparc/ffi64.c src/sparc/v8.S src/sparc/v9.S \
|
110
|
-
src/tile/ffi.c src/tile/tile.S \
|
111
|
-
src/vax/ffi.c src/vax/elfbsd.S \
|
112
|
-
src/x86/ffi.c src/x86/sysv.S \
|
113
|
-
src/x86/ffiw64.c src/x86/win64.S \
|
114
|
-
src/x86/ffi64.c src/x86/unix64.S \
|
79
|
+
EXTRA_libffi_la_SOURCES = src/aarch64/ffi.c src/aarch64/sysv.S \
|
80
|
+
src/aarch64/win64_armasm.S src/alpha/ffi.c src/alpha/osf.S \
|
81
|
+
src/arc/ffi.c src/arc/arcompact.S src/arm/ffi.c \
|
82
|
+
src/arm/sysv.S src/arm/ffi.c src/arm/sysv_msvc_arm32.S \
|
83
|
+
src/avr32/ffi.c src/avr32/sysv.S src/bfin/ffi.c \
|
84
|
+
src/bfin/sysv.S src/cris/ffi.c src/cris/sysv.S src/frv/ffi.c \
|
85
|
+
src/frv/eabi.S src/ia64/ffi.c src/ia64/unix.S src/m32r/ffi.c \
|
86
|
+
src/m32r/sysv.S src/m68k/ffi.c src/m68k/sysv.S src/m88k/ffi.c \
|
87
|
+
src/m88k/obsd.S src/metag/ffi.c src/metag/sysv.S \
|
88
|
+
src/microblaze/ffi.c src/microblaze/sysv.S src/mips/ffi.c \
|
89
|
+
src/mips/o32.S src/mips/n32.S src/moxie/ffi.c \
|
90
|
+
src/moxie/eabi.S src/nios2/ffi.c src/nios2/sysv.S \
|
91
|
+
src/or1k/ffi.c src/or1k/sysv.S src/pa/ffi.c src/pa/linux.S \
|
92
|
+
src/pa/hpux32.S src/powerpc/ffi.c src/powerpc/ffi_sysv.c \
|
93
|
+
src/powerpc/ffi_linux64.c src/powerpc/sysv.S \
|
94
|
+
src/powerpc/linux64.S src/powerpc/linux64_closure.S \
|
95
|
+
src/powerpc/ppc_closure.S src/powerpc/aix.S \
|
96
|
+
src/powerpc/darwin.S src/powerpc/aix_closure.S \
|
97
|
+
src/powerpc/darwin_closure.S src/powerpc/ffi_darwin.c \
|
98
|
+
src/riscv/ffi.c src/riscv/sysv.S src/s390/ffi.c \
|
99
|
+
src/s390/sysv.S src/sh/ffi.c src/sh/sysv.S src/sh64/ffi.c \
|
100
|
+
src/sh64/sysv.S src/sparc/ffi.c src/sparc/ffi64.c \
|
101
|
+
src/sparc/v8.S src/sparc/v9.S src/tile/ffi.c src/tile/tile.S \
|
102
|
+
src/vax/ffi.c src/vax/elfbsd.S src/x86/ffi.c src/x86/sysv.S \
|
103
|
+
src/x86/ffiw64.c src/x86/win64.S src/x86/ffi64.c \
|
104
|
+
src/x86/unix64.S src/x86/sysv_intel.S src/x86/win64_intel.S \
|
115
105
|
src/xtensa/ffi.c src/xtensa/sysv.S
|
116
106
|
|
117
107
|
TARGET_OBJ = @TARGET_OBJ@
|
@@ -140,9 +130,9 @@ endif
|
|
140
130
|
if LIBFFI_BUILD_VERSIONED_SHLIB_SUN
|
141
131
|
libffi_version_script = -Wl,-M,libffi.map-sun
|
142
132
|
libffi_version_dep = libffi.map-sun
|
143
|
-
libffi.map-sun : libffi.map $(top_srcdir)
|
133
|
+
libffi.map-sun : libffi.map $(top_srcdir)/make_sunver.pl \
|
144
134
|
$(libffi_la_OBJECTS) $(libffi_la_LIBADD)
|
145
|
-
perl $(top_srcdir)
|
135
|
+
perl $(top_srcdir)/make_sunver.pl libffi.map \
|
146
136
|
`echo $(libffi_la_OBJECTS) $(libffi_la_LIBADD) | \
|
147
137
|
sed 's,\([^/ ]*\)\.l\([ao]\),.libs/\1.\2,g'` \
|
148
138
|
> $@ || (rm -f $@ ; exit 1)
|
@@ -154,7 +144,8 @@ endif
|
|
154
144
|
libffi_version_info = -version-info `grep -v '^\#' $(srcdir)/libtool-version`
|
155
145
|
|
156
146
|
libffi.map: $(top_srcdir)/libffi.map.in
|
157
|
-
$(COMPILE) -D$(TARGET) -
|
147
|
+
$(COMPILE) -D$(TARGET) -DGENERATE_LIBFFI_MAP \
|
148
|
+
-E -x assembler-with-cpp -o $@ $<
|
158
149
|
|
159
150
|
libffi_la_LDFLAGS = -no-undefined $(libffi_version_info) $(libffi_version_script) $(LTLDFLAGS) $(AM_LTLDFLAGS)
|
160
151
|
libffi_la_DEPENDENCIES = $(libffi_la_LIBADD) $(libffi_version_dep)
|
@@ -163,4 +154,7 @@ AM_CPPFLAGS = -I. -I$(top_srcdir)/include -Iinclude -I$(top_srcdir)/src
|
|
163
154
|
AM_CCASFLAGS = $(AM_CPPFLAGS)
|
164
155
|
|
165
156
|
dist-hook:
|
157
|
+
d=`(cd $(distdir); pwd)`; (cd doc; make pdf; cp *.pdf $$d/doc)
|
166
158
|
if [ -d $(top_srcdir)/.git ] ; then (cd $(top_srcdir); git log --no-decorate) ; else echo 'See git log for history.' ; fi > $(distdir)/ChangeLog
|
159
|
+
s=`awk '/was released on/{ print NR; exit}' $(top_srcdir)/README.md`; tail -n +$$(($$s-1)) $(top_srcdir)/README.md > $(distdir)/README.md
|
160
|
+
|
data/ext/ffi_c/libffi/README.md
CHANGED
@@ -4,7 +4,7 @@ Status
|
|
4
4
|
[![Build Status](https://travis-ci.org/libffi/libffi.svg?branch=master)](https://travis-ci.org/libffi/libffi)
|
5
5
|
[![Build status](https://ci.appveyor.com/api/projects/status/8lko9vagbx4w2kxq?svg=true)](https://ci.appveyor.com/project/atgreen/libffi)
|
6
6
|
|
7
|
-
libffi-3.
|
7
|
+
libffi-3.4 was released on TBD. Check the libffi web
|
8
8
|
page for updates: <URL:http://sourceware.org/libffi/>.
|
9
9
|
|
10
10
|
|
@@ -51,11 +51,13 @@ tested:
|
|
51
51
|
| --------------- | ---------------- | ----------------------- |
|
52
52
|
| AArch64 (ARM64) | iOS | Clang |
|
53
53
|
| AArch64 | Linux | GCC |
|
54
|
+
| AArch64 | Windows | MSVC |
|
54
55
|
| Alpha | Linux | GCC |
|
55
56
|
| Alpha | Tru64 | GCC |
|
56
57
|
| ARC | Linux | GCC |
|
57
58
|
| ARM | Linux | GCC |
|
58
59
|
| ARM | iOS | GCC |
|
60
|
+
| ARM | Windows | MSVC |
|
59
61
|
| AVR32 | Linux | GCC |
|
60
62
|
| Blackfin | uClinux | GCC |
|
61
63
|
| HPPA | HPUX | GCC |
|
@@ -99,7 +101,6 @@ tested:
|
|
99
101
|
| X86 | Interix | GCC |
|
100
102
|
| X86 | kFreeBSD | GCC |
|
101
103
|
| X86 | Linux | GCC |
|
102
|
-
| X86 | Mac OSX | GCC |
|
103
104
|
| X86 | OpenBSD | GCC |
|
104
105
|
| X86 | OS/2 | GCC |
|
105
106
|
| X86 | Solaris | GCC |
|
@@ -152,7 +153,7 @@ It's also possible to build libffi on Windows platforms with
|
|
152
153
|
Microsoft's Visual C++ compiler. In this case, use the msvcc.sh
|
153
154
|
wrapper script during configuration like so:
|
154
155
|
|
155
|
-
path/to/configure CC=path/to/msvcc.sh CXX=path/to/msvcc.sh LD=link CPP="cl -nologo -EP"
|
156
|
+
path/to/configure CC=path/to/msvcc.sh CXX=path/to/msvcc.sh LD=link CPP="cl -nologo -EP" CPPFLAGS="-DFFI_BUILDING_DLL"
|
156
157
|
|
157
158
|
For 64-bit Windows builds, use ``CC="path/to/msvcc.sh -m64"`` and
|
158
159
|
``CXX="path/to/msvcc.sh -m64"``. You may also need to specify
|
@@ -161,13 +162,18 @@ For 64-bit Windows builds, use ``CC="path/to/msvcc.sh -m64"`` and
|
|
161
162
|
It is also possible to build libffi on Windows platforms with the LLVM
|
162
163
|
project's clang-cl compiler, like below:
|
163
164
|
|
164
|
-
path/to/configure CC="path/to/msvcc.sh -clang-cl" CXX="path/to/msvcc.sh -clang-cl" LD=link CPP="clang-cl -EP"
|
165
|
+
path/to/configure CC="path/to/msvcc.sh -clang-cl" CXX="path/to/msvcc.sh -clang-cl" LD=link CPP="clang-cl -EP"
|
165
166
|
|
166
167
|
When building with MSVC under a MingW environment, you may need to
|
167
168
|
remove the line in configure that sets 'fix_srcfile_path' to a 'cygpath'
|
168
169
|
command. ('cygpath' is not present in MingW, and is not required when
|
169
170
|
using MingW-style paths.)
|
170
171
|
|
172
|
+
To build static library for ARM64 with MSVC using visual studio solution, msvc_build folder have
|
173
|
+
aarch64/Ffi_staticLib.sln
|
174
|
+
required header files in aarch64/aarch64_include/
|
175
|
+
|
176
|
+
|
171
177
|
SPARC Solaris builds require the use of the GNU assembler and linker.
|
172
178
|
Point ``AS`` and ``LD`` environment variables at those tool prior to
|
173
179
|
configuration.
|
@@ -190,13 +196,24 @@ History
|
|
190
196
|
|
191
197
|
See the git log for details at http://github.com/libffi/libffi.
|
192
198
|
|
193
|
-
3.
|
199
|
+
3.4 TBD
|
200
|
+
Add support for Intel Control-flow Enforcement Technology (CET).
|
201
|
+
Add support for ARM Pointer Authentication (PA).
|
202
|
+
Fix 32-bit PPC regression.
|
203
|
+
Fix MIPS soft-float problem.
|
204
|
+
|
205
|
+
3.3 Nov-23-19
|
194
206
|
Add RISC-V support.
|
195
207
|
New API in support of GO closures.
|
208
|
+
Add IEEE754 binary128 long double support for 64-bit Power
|
196
209
|
Default to Microsoft's 64 bit long double ABI with Visual C++.
|
197
|
-
|
198
|
-
|
199
|
-
|
210
|
+
GNU compiler uses 80 bits (128 in memory) FFI_GNUW64 ABI.
|
211
|
+
Add Windows on ARM64 (WOA) support.
|
212
|
+
Add Windows 32-bit ARM support.
|
213
|
+
Raw java (gcj) API deprecated.
|
214
|
+
Add pre-built PDF documentation to source distribution.
|
215
|
+
Many new test cases and bug fixes.
|
216
|
+
|
200
217
|
3.2.1 Nov-12-14
|
201
218
|
Build fix for non-iOS AArch64 targets.
|
202
219
|
|
@@ -412,7 +429,9 @@ developers:
|
|
412
429
|
|
413
430
|
aarch64 Marcus Shawcroft, James Greenhalgh
|
414
431
|
alpha Richard Henderson
|
432
|
+
arc Hackers at Synopsis
|
415
433
|
arm Raffaele Sena
|
434
|
+
avr32 Bradley Smith
|
416
435
|
blackfin Alexandre Keunecke I. de Mendonca
|
417
436
|
cris Simon Posnjak, Hans-Peter Nilsson
|
418
437
|
frv Anthony Green
|
@@ -420,6 +439,7 @@ developers:
|
|
420
439
|
m32r Kazuhiro Inaoka
|
421
440
|
m68k Andreas Schwab
|
422
441
|
m88k Miod Vallat
|
442
|
+
metag Hackers at Imagination Technologies
|
423
443
|
microblaze Nathan Rossi
|
424
444
|
mips Anthony Green, Casey Marshall
|
425
445
|
mips64 David Daney
|
@@ -430,6 +450,7 @@ developers:
|
|
430
450
|
powerpc Geoffrey Keating, Andreas Tobler,
|
431
451
|
David Edelsohn, John Hornkvist
|
432
452
|
powerpc64 Jakub Jelinek
|
453
|
+
riscv Michael Knyszek, Andrew Waterman, Stef O'Rear
|
433
454
|
s390 Gerhard Tonn, Ulrich Weigand
|
434
455
|
sh Kaz Kojima
|
435
456
|
sh64 Kaz Kojima
|
@@ -2,7 +2,7 @@ dnl Process this with autoconf to create configure
|
|
2
2
|
|
3
3
|
AC_PREREQ(2.68)
|
4
4
|
|
5
|
-
AC_INIT([libffi], [3.3
|
5
|
+
AC_INIT([libffi], [3.3], [http://github.com/libffi/libffi/issues])
|
6
6
|
AC_CONFIG_HEADERS([fficonfig.h])
|
7
7
|
|
8
8
|
AC_CANONICAL_SYSTEM
|
@@ -176,6 +176,28 @@ case "$TARGET" in
|
|
176
176
|
;;
|
177
177
|
esac
|
178
178
|
|
179
|
+
AC_CACHE_CHECK([whether compiler supports pointer authentication],
|
180
|
+
libffi_cv_as_ptrauth, [
|
181
|
+
libffi_cv_as_ptrauth=unknown
|
182
|
+
AC_TRY_COMPILE(,[
|
183
|
+
#ifdef __clang__
|
184
|
+
# if __has_feature(ptrauth_calls)
|
185
|
+
# define HAVE_PTRAUTH 1
|
186
|
+
# endif
|
187
|
+
#endif
|
188
|
+
|
189
|
+
#ifndef HAVE_PTRAUTH
|
190
|
+
# error Pointer authentication not supported
|
191
|
+
#endif
|
192
|
+
],
|
193
|
+
[libffi_cv_as_ptrauth=yes],
|
194
|
+
[libffi_cv_as_ptrauth=no])
|
195
|
+
])
|
196
|
+
if test "x$libffi_cv_as_ptrauth" = xyes; then
|
197
|
+
AC_DEFINE(HAVE_PTRAUTH, 1,
|
198
|
+
[Define if your compiler supports pointer authentication.])
|
199
|
+
fi
|
200
|
+
|
179
201
|
# On PaX enable kernels that have MPROTECT enable we can't use PROT_EXEC.
|
180
202
|
AC_ARG_ENABLE(pax_emutramp,
|
181
203
|
[ --enable-pax_emutramp enable pax emulated trampolines, for we can't use PROT_EXEC],
|
@@ -240,17 +262,11 @@ fi
|
|
240
262
|
if test "x$GCC" = "xyes"; then
|
241
263
|
AC_CACHE_CHECK([whether .eh_frame section should be read-only],
|
242
264
|
libffi_cv_ro_eh_frame, [
|
243
|
-
libffi_cv_ro_eh_frame=
|
265
|
+
libffi_cv_ro_eh_frame=yes
|
244
266
|
echo 'extern void foo (void); void bar (void) { foo (); foo (); }' > conftest.c
|
245
267
|
if $CC $CFLAGS -c -fpic -fexceptions -o conftest.o conftest.c > /dev/null 2>&1; then
|
246
|
-
|
247
|
-
|
248
|
-
if test "x$libffi_eh_frame_line" != "x"; then
|
249
|
-
libffi_test_line=`expr $libffi_eh_frame_line + 1`p
|
250
|
-
sed -n $libffi_test_line conftest.dump > conftest.line
|
251
|
-
if grep READONLY conftest.line > /dev/null; then
|
252
|
-
libffi_cv_ro_eh_frame=yes
|
253
|
-
fi
|
268
|
+
if readelf -WS conftest.o | grep -q -n 'eh_frame .* WA'; then
|
269
|
+
libffi_cv_ro_eh_frame=no
|
254
270
|
fi
|
255
271
|
fi
|
256
272
|
rm -f conftest.*
|
@@ -270,7 +286,7 @@ if test "x$GCC" = "xyes"; then
|
|
270
286
|
echo 'int __attribute__ ((visibility ("hidden"))) foo (void) { return 1 ; }' > conftest.c
|
271
287
|
libffi_cv_hidden_visibility_attribute=no
|
272
288
|
if AC_TRY_COMMAND(${CC-cc} -Werror -S conftest.c -o conftest.s 1>&AS_MESSAGE_LOG_FD); then
|
273
|
-
if
|
289
|
+
if egrep '(\.hidden|\.private_extern).*foo' conftest.s >/dev/null; then
|
274
290
|
libffi_cv_hidden_visibility_attribute=yes
|
275
291
|
fi
|
276
292
|
fi
|
@@ -292,7 +308,11 @@ AM_CONDITIONAL(BUILD_DOCS, [test x$enable_docs = xyes])
|
|
292
308
|
AH_BOTTOM([
|
293
309
|
#ifdef HAVE_HIDDEN_VISIBILITY_ATTRIBUTE
|
294
310
|
#ifdef LIBFFI_ASM
|
311
|
+
#ifdef __APPLE__
|
312
|
+
#define FFI_HIDDEN(name) .private_extern name
|
313
|
+
#else
|
295
314
|
#define FFI_HIDDEN(name) .hidden name
|
315
|
+
#endif
|
296
316
|
#else
|
297
317
|
#define FFI_HIDDEN __attribute__ ((visibility ("hidden")))
|
298
318
|
#endif
|
@@ -6,6 +6,11 @@
|
|
6
6
|
# THIS TABLE IS SORTED. KEEP IT THAT WAY.
|
7
7
|
# Most of the time we can define all the variables all at once...
|
8
8
|
case "${host}" in
|
9
|
+
aarch64*-*-cygwin* | aarch64*-*-mingw* | aarch64*-*-win* )
|
10
|
+
TARGET=ARM_WIN64; TARGETDIR=aarch64
|
11
|
+
MSVC=1
|
12
|
+
;;
|
13
|
+
|
9
14
|
aarch64*-*-*)
|
10
15
|
TARGET=AARCH64; TARGETDIR=aarch64
|
11
16
|
SOURCES="ffi.c sysv.S"
|
@@ -23,6 +28,11 @@ case "${host}" in
|
|
23
28
|
SOURCES="ffi.c arcompact.S"
|
24
29
|
;;
|
25
30
|
|
31
|
+
arm*-*-cygwin* | arm*-*-mingw* | arm*-*-win* )
|
32
|
+
TARGET=ARM_WIN32; TARGETDIR=arm
|
33
|
+
MSVC=1
|
34
|
+
;;
|
35
|
+
|
26
36
|
arm*-*-*)
|
27
37
|
TARGET=ARM; TARGETDIR=arm
|
28
38
|
SOURCES="ffi.c sysv.S"
|
@@ -64,7 +74,7 @@ case "${host}" in
|
|
64
74
|
TARGET=X86_FREEBSD; TARGETDIR=x86
|
65
75
|
;;
|
66
76
|
|
67
|
-
i?86-*-cygwin* | i?86-*-mingw* | i?86-*-os2* | i?86-*-interix* \
|
77
|
+
i?86-*-cygwin* | i?86-*-mingw* | i?86-*-win* | i?86-*-os2* | i?86-*-interix* \
|
68
78
|
| x86_64-*-cygwin* | x86_64-*-mingw* | x86_64-*-win* )
|
69
79
|
TARGETDIR=x86
|
70
80
|
if test $ac_cv_sizeof_size_t = 4; then
|
@@ -74,12 +84,6 @@ case "${host}" in
|
|
74
84
|
fi
|
75
85
|
if test "${ax_cv_c_compiler_vendor}" = "microsoft"; then
|
76
86
|
MSVC=1
|
77
|
-
if test $ac_cv_sizeof_size_t = 4; then
|
78
|
-
# libffi does not support microsoft tools for 32-bit windows
|
79
|
-
# hosts. Try porting src/x86/sysv.S to intel assembly
|
80
|
-
# format.
|
81
|
-
UNSUPPORTED=1
|
82
|
-
fi
|
83
87
|
fi
|
84
88
|
# All mingw/cygwin/win32 builds require -no-undefined for sharedlib.
|
85
89
|
# We must also check with_cross_host to decide if this is a native
|
@@ -174,7 +178,7 @@ case "${host}" in
|
|
174
178
|
SOURCES="ffi.c sysv.S"
|
175
179
|
;;
|
176
180
|
|
177
|
-
or1k
|
181
|
+
or1k*-*-*)
|
178
182
|
TARGET=OR1K; TARGETDIR=or1k
|
179
183
|
SOURCES="ffi.c sysv.S"
|
180
184
|
;;
|
@@ -186,6 +190,9 @@ case "${host}" in
|
|
186
190
|
powerpc-*-amigaos*)
|
187
191
|
TARGET=POWERPC; TARGETDIR=powerpc
|
188
192
|
;;
|
193
|
+
powerpc-*-eabi*)
|
194
|
+
TARGET=POWERPC; TARGETDIR=powerpc
|
195
|
+
;;
|
189
196
|
powerpc-*-beos*)
|
190
197
|
TARGET=POWERPC; TARGETDIR=powerpc
|
191
198
|
;;
|
@@ -248,6 +255,12 @@ esac
|
|
248
255
|
|
249
256
|
# ... but some of the cases above share configury.
|
250
257
|
case "${TARGET}" in
|
258
|
+
ARM_WIN32)
|
259
|
+
SOURCES="ffi.c sysv_msvc_arm32.S"
|
260
|
+
;;
|
261
|
+
ARM_WIN64)
|
262
|
+
SOURCES="ffi.c win64_armasm.S"
|
263
|
+
;;
|
251
264
|
MIPS)
|
252
265
|
SOURCES="ffi.c o32.S n32.S"
|
253
266
|
;;
|
@@ -265,7 +278,11 @@ case "${TARGET}" in
|
|
265
278
|
SOURCES="ffi.c ffi_sysv.c sysv.S ppc_closure.S"
|
266
279
|
;;
|
267
280
|
X86 | X86_DARWIN | X86_FREEBSD | X86_WIN32)
|
268
|
-
|
281
|
+
if test "$MSVC" = 1; then
|
282
|
+
SOURCES="ffi.c sysv_intel.S"
|
283
|
+
else
|
284
|
+
SOURCES="ffi.c sysv.S"
|
285
|
+
fi
|
269
286
|
;;
|
270
287
|
X86_64)
|
271
288
|
if test x"$TARGET_X32" = xyes; then
|
@@ -143,7 +143,7 @@ def build_target(platform, platform_headers):
|
|
143
143
|
mkdir_p(build_dir)
|
144
144
|
env = dict(CC=xcrun_cmd('clang'),
|
145
145
|
LD=xcrun_cmd('ld'),
|
146
|
-
CFLAGS='%s' % (platform.version_min))
|
146
|
+
CFLAGS='%s -fembed-bitcode' % (platform.version_min))
|
147
147
|
working_dir = os.getcwd()
|
148
148
|
try:
|
149
149
|
os.chdir(build_dir)
|
@@ -173,7 +173,6 @@ def generate_source_and_headers(generate_osx=True, generate_ios=True):
|
|
173
173
|
copy_src_platform_files(device_platform)
|
174
174
|
copy_src_platform_files(device64_platform)
|
175
175
|
if generate_osx:
|
176
|
-
copy_src_platform_files(desktop32_platform)
|
177
176
|
copy_src_platform_files(desktop64_platform)
|
178
177
|
|
179
178
|
platform_headers = collections.defaultdict(set)
|
@@ -184,7 +183,6 @@ def generate_source_and_headers(generate_osx=True, generate_ios=True):
|
|
184
183
|
build_target(device_platform, platform_headers)
|
185
184
|
build_target(device64_platform, platform_headers)
|
186
185
|
if generate_osx:
|
187
|
-
build_target(desktop32_platform, platform_headers)
|
188
186
|
build_target(desktop64_platform, platform_headers)
|
189
187
|
|
190
188
|
mkdir_p('darwin_common/include')
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* -----------------------------------------------------------------*-C-*-
|
2
|
-
libffi @VERSION@ - Copyright (c) 2011, 2014 Anthony Green
|
2
|
+
libffi @VERSION@ - Copyright (c) 2011, 2014, 2019 Anthony Green
|
3
3
|
- Copyright (c) 1996-2003, 2007, 2008 Red Hat, Inc.
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person
|
@@ -283,18 +283,20 @@ FFI_API size_t ffi_raw_size (ffi_cif *cif);
|
|
283
283
|
packing, even on 64-bit machines. I.e. on 64-bit machines longs
|
284
284
|
and doubles are followed by an empty 64-bit word. */
|
285
285
|
|
286
|
+
#if !FFI_NATIVE_RAW_API
|
286
287
|
FFI_API
|
287
288
|
void ffi_java_raw_call (ffi_cif *cif,
|
288
289
|
void (*fn)(void),
|
289
290
|
void *rvalue,
|
290
|
-
ffi_java_raw *avalue);
|
291
|
+
ffi_java_raw *avalue) __attribute__((deprecated));
|
292
|
+
#endif
|
291
293
|
|
292
294
|
FFI_API
|
293
|
-
void ffi_java_ptrarray_to_raw (ffi_cif *cif, void **args, ffi_java_raw *raw);
|
295
|
+
void ffi_java_ptrarray_to_raw (ffi_cif *cif, void **args, ffi_java_raw *raw) __attribute__((deprecated));
|
294
296
|
FFI_API
|
295
|
-
void ffi_java_raw_to_ptrarray (ffi_cif *cif, ffi_java_raw *raw, void **args);
|
297
|
+
void ffi_java_raw_to_ptrarray (ffi_cif *cif, ffi_java_raw *raw, void **args) __attribute__((deprecated));
|
296
298
|
FFI_API
|
297
|
-
size_t ffi_java_raw_size (ffi_cif *cif);
|
299
|
+
size_t ffi_java_raw_size (ffi_cif *cif) __attribute__((deprecated));
|
298
300
|
|
299
301
|
/* ---- Definitions for closures ----------------------------------------- */
|
300
302
|
|
@@ -328,6 +330,14 @@ typedef struct {
|
|
328
330
|
FFI_API void *ffi_closure_alloc (size_t size, void **code);
|
329
331
|
FFI_API void ffi_closure_free (void *);
|
330
332
|
|
333
|
+
#if defined(PA_LINUX) || defined(PA_HPUX)
|
334
|
+
#define FFI_CLOSURE_PTR(X) ((void *)((unsigned int)(X) | 2))
|
335
|
+
#define FFI_RESTORE_PTR(X) ((void *)((unsigned int)(X) & ~3))
|
336
|
+
#else
|
337
|
+
#define FFI_CLOSURE_PTR(X) (X)
|
338
|
+
#define FFI_RESTORE_PTR(X) (X)
|
339
|
+
#endif
|
340
|
+
|
331
341
|
FFI_API ffi_status
|
332
342
|
ffi_prep_closure (ffi_closure*,
|
333
343
|
ffi_cif *,
|
@@ -414,18 +424,20 @@ ffi_prep_raw_closure_loc (ffi_raw_closure*,
|
|
414
424
|
void *user_data,
|
415
425
|
void *codeloc);
|
416
426
|
|
427
|
+
#if !FFI_NATIVE_RAW_API
|
417
428
|
FFI_API ffi_status
|
418
429
|
ffi_prep_java_raw_closure (ffi_java_raw_closure*,
|
419
430
|
ffi_cif *cif,
|
420
431
|
void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),
|
421
|
-
void *user_data);
|
432
|
+
void *user_data) __attribute__((deprecated));
|
422
433
|
|
423
434
|
FFI_API ffi_status
|
424
435
|
ffi_prep_java_raw_closure_loc (ffi_java_raw_closure*,
|
425
436
|
ffi_cif *cif,
|
426
437
|
void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),
|
427
438
|
void *user_data,
|
428
|
-
void *codeloc);
|
439
|
+
void *codeloc) __attribute__((deprecated));
|
440
|
+
#endif
|
429
441
|
|
430
442
|
#endif /* FFI_CLOSURES */
|
431
443
|
|