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
@@ -37,7 +37,7 @@
|
|
37
37
|
# Copyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>
|
38
38
|
# Copyright (c) 2008 Matteo Frigo
|
39
39
|
# Copyright (c) 2014 Tsukasa Oi
|
40
|
-
# Copyright (c) 2017 Alexey Kopytov
|
40
|
+
# Copyright (c) 2017-2018 Alexey Kopytov
|
41
41
|
#
|
42
42
|
# This program is free software: you can redistribute it and/or modify it
|
43
43
|
# under the terms of the GNU General Public License as published by the
|
@@ -65,7 +65,7 @@
|
|
65
65
|
# modified version of the Autoconf Macro, you may extend this special
|
66
66
|
# exception to the GPL to apply to your modified version as well.
|
67
67
|
|
68
|
-
#serial
|
68
|
+
#serial 22
|
69
69
|
|
70
70
|
AC_DEFUN([AX_GCC_ARCHFLAG],
|
71
71
|
[AC_REQUIRE([AC_PROG_CC])
|
@@ -108,7 +108,7 @@ case $host_cpu in
|
|
108
108
|
*2?6[[ad]]?:*:*:*) ax_gcc_arch="sandybridge corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
|
109
109
|
*3?6[[ae]]?:*:*:*) ax_gcc_arch="ivybridge core-avx-i corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
|
110
110
|
*3?6[[cf]]?:*:*:*|*4?6[[56]]?:*:*:*) ax_gcc_arch="haswell core-avx2 core-avx-i corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
|
111
|
-
*3?6d?:*:*:*) ax_gcc_arch="broadwell core-avx2 core-avx-i corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
|
111
|
+
*3?6d?:*:*:*|*4?6[[7f]]?:*:*:*|*5?66?:*:*:*) ax_gcc_arch="broadwell core-avx2 core-avx-i corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
|
112
112
|
*1?6c?:*:*:*|*2?6[[67]]?:*:*:*|*3?6[[56]]?:*:*:*) ax_gcc_arch="bonnell atom core2 pentium-m pentium3 pentiumpro" ;;
|
113
113
|
*3?67?:*:*:*|*[[45]]?6[[ad]]?:*:*:*) ax_gcc_arch="silvermont atom core2 pentium-m pentium3 pentiumpro" ;;
|
114
114
|
*000?f[[012]]?:*:*:*|?f[[012]]?:*:*:*|f[[012]]?:*:*:*) ax_gcc_arch="pentium4 pentiumpro" ;;
|
@@ -198,6 +198,10 @@ case $host_cpu in
|
|
198
198
|
*POWER4*|*power4*|*gq*) ax_gcc_arch="power4 970";;
|
199
199
|
*POWER5*|*power5*|*gr*|*gs*) ax_gcc_arch="power5 power4 970";;
|
200
200
|
603ev|8240) ax_gcc_arch="$cputype 603e 603";;
|
201
|
+
*POWER7*) ax_gcc_arch="power7";;
|
202
|
+
*POWER8*) ax_gcc_arch="power8";;
|
203
|
+
*POWER9*) ax_gcc_arch="power9";;
|
204
|
+
*POWER10*) ax_gcc_arch="power10";;
|
201
205
|
*) ax_gcc_arch=$cputype ;;
|
202
206
|
esac
|
203
207
|
ax_gcc_arch="$ax_gcc_arch powerpc"
|
@@ -0,0 +1,333 @@
|
|
1
|
+
#!/usr/bin/perl -w
|
2
|
+
|
3
|
+
# make_sunver.pl
|
4
|
+
#
|
5
|
+
# This script takes at least two arguments, a GNU style version script and
|
6
|
+
# a list of object and archive files, and generates a corresponding Sun
|
7
|
+
# style version script as follows:
|
8
|
+
#
|
9
|
+
# Each glob pattern, C++ mangled pattern or literal in the input script is
|
10
|
+
# matched against all global symbols in the input objects, emitting those
|
11
|
+
# that matched (or nothing if no match was found).
|
12
|
+
# A comment with the original pattern and its type is left in the output
|
13
|
+
# file to make it easy to understand the matches.
|
14
|
+
#
|
15
|
+
# It uses elfdump when present (native), GNU readelf otherwise.
|
16
|
+
# It depends on the GNU version of c++filt, since it must understand the
|
17
|
+
# GNU mangling style.
|
18
|
+
|
19
|
+
use FileHandle;
|
20
|
+
use IPC::Open2;
|
21
|
+
|
22
|
+
# Enforce C locale.
|
23
|
+
$ENV{'LC_ALL'} = "C";
|
24
|
+
$ENV{'LANG'} = "C";
|
25
|
+
|
26
|
+
# Input version script, GNU style.
|
27
|
+
my $symvers = shift;
|
28
|
+
|
29
|
+
##########
|
30
|
+
# Get all the symbols from the library, match them, and add them to a hash.
|
31
|
+
|
32
|
+
my %sym_hash = ();
|
33
|
+
|
34
|
+
# List of objects and archives to process.
|
35
|
+
my @OBJECTS = ();
|
36
|
+
|
37
|
+
# List of shared objects to omit from processing.
|
38
|
+
my @SHAREDOBJS = ();
|
39
|
+
|
40
|
+
# Filter out those input archives that have corresponding shared objects to
|
41
|
+
# avoid adding all symbols matched in the archive to the output map.
|
42
|
+
foreach $file (@ARGV) {
|
43
|
+
if (($so = $file) =~ s/\.a$/.so/ && -e $so) {
|
44
|
+
printf STDERR "omitted $file -> $so\n";
|
45
|
+
push (@SHAREDOBJS, $so);
|
46
|
+
} else {
|
47
|
+
push (@OBJECTS, $file);
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
# We need to detect and ignore hidden symbols. Solaris nm can only detect
|
52
|
+
# this in the harder to parse default output format, and GNU nm not at all,
|
53
|
+
# so use elfdump -s in the native case and GNU readelf -s otherwise.
|
54
|
+
# GNU objdump -t cannot be used since it produces a variable number of
|
55
|
+
# columns.
|
56
|
+
|
57
|
+
# The path to elfdump.
|
58
|
+
my $elfdump = "/usr/ccs/bin/elfdump";
|
59
|
+
|
60
|
+
if (-f $elfdump) {
|
61
|
+
open ELFDUMP,$elfdump.' -s '.(join ' ',@OBJECTS).'|' or die $!;
|
62
|
+
my $skip_arsym = 0;
|
63
|
+
|
64
|
+
while (<ELFDUMP>) {
|
65
|
+
chomp;
|
66
|
+
|
67
|
+
# Ignore empty lines.
|
68
|
+
if (/^$/) {
|
69
|
+
# End of archive symbol table, stop skipping.
|
70
|
+
$skip_arsym = 0 if $skip_arsym;
|
71
|
+
next;
|
72
|
+
}
|
73
|
+
|
74
|
+
# Keep skipping until end of archive symbol table.
|
75
|
+
next if ($skip_arsym);
|
76
|
+
|
77
|
+
# Ignore object name header for individual objects and archives.
|
78
|
+
next if (/:$/);
|
79
|
+
|
80
|
+
# Ignore table header lines.
|
81
|
+
next if (/^Symbol Table Section:/);
|
82
|
+
next if (/index.*value.*size/);
|
83
|
+
|
84
|
+
# Start of archive symbol table: start skipping.
|
85
|
+
if (/^Symbol Table: \(archive/) {
|
86
|
+
$skip_arsym = 1;
|
87
|
+
next;
|
88
|
+
}
|
89
|
+
|
90
|
+
# Split table.
|
91
|
+
(undef, undef, undef, undef, $bind, $oth, undef, $shndx, $name) = split;
|
92
|
+
|
93
|
+
# Error out for unknown input.
|
94
|
+
die "unknown input line:\n$_" unless defined($bind);
|
95
|
+
|
96
|
+
# Ignore local symbols.
|
97
|
+
next if ($bind eq "LOCL");
|
98
|
+
# Ignore hidden symbols.
|
99
|
+
next if ($oth eq "H");
|
100
|
+
# Ignore undefined symbols.
|
101
|
+
next if ($shndx eq "UNDEF");
|
102
|
+
# Error out for unhandled cases.
|
103
|
+
if ($bind !~ /^(GLOB|WEAK)/ or $oth ne "D") {
|
104
|
+
die "unhandled symbol:\n$_";
|
105
|
+
}
|
106
|
+
|
107
|
+
# Remember symbol.
|
108
|
+
$sym_hash{$name}++;
|
109
|
+
}
|
110
|
+
close ELFDUMP or die "$elfdump error";
|
111
|
+
} else {
|
112
|
+
open READELF, 'readelf -s -W '.(join ' ',@OBJECTS).'|' or die $!;
|
113
|
+
# Process each symbol.
|
114
|
+
while (<READELF>) {
|
115
|
+
chomp;
|
116
|
+
|
117
|
+
# Ignore empty lines.
|
118
|
+
next if (/^$/);
|
119
|
+
|
120
|
+
# Ignore object name header.
|
121
|
+
next if (/^File: .*$/);
|
122
|
+
|
123
|
+
# Ignore table header lines.
|
124
|
+
next if (/^Symbol table.*contains.*:/);
|
125
|
+
next if (/Num:.*Value.*Size/);
|
126
|
+
|
127
|
+
# Split table.
|
128
|
+
(undef, undef, undef, undef, $bind, $vis, $ndx, $name) = split;
|
129
|
+
|
130
|
+
# Error out for unknown input.
|
131
|
+
die "unknown input line:\n$_" unless defined($bind);
|
132
|
+
|
133
|
+
# Ignore local symbols.
|
134
|
+
next if ($bind eq "LOCAL");
|
135
|
+
# Ignore hidden symbols.
|
136
|
+
next if ($vis eq "HIDDEN");
|
137
|
+
# Ignore undefined symbols.
|
138
|
+
next if ($ndx eq "UND");
|
139
|
+
# Error out for unhandled cases.
|
140
|
+
if ($bind !~ /^(GLOBAL|WEAK)/ or $vis ne "DEFAULT") {
|
141
|
+
die "unhandled symbol:\n$_";
|
142
|
+
}
|
143
|
+
|
144
|
+
# Remember symbol.
|
145
|
+
$sym_hash{$name}++;
|
146
|
+
}
|
147
|
+
close READELF or die "readelf error";
|
148
|
+
}
|
149
|
+
|
150
|
+
##########
|
151
|
+
# The various types of glob patterns.
|
152
|
+
#
|
153
|
+
# A glob pattern that is to be applied to the demangled name: 'cxx'.
|
154
|
+
# A glob patterns that applies directly to the name in the .o files: 'glob'.
|
155
|
+
# This pattern is ignored; used for local variables (usually just '*'): 'ign'.
|
156
|
+
|
157
|
+
# The type of the current pattern.
|
158
|
+
my $glob = 'glob';
|
159
|
+
|
160
|
+
# We're currently inside `extern "C++"', which Sun ld doesn't understand.
|
161
|
+
my $in_extern = 0;
|
162
|
+
|
163
|
+
# The c++filt command to use. This *must* be GNU c++filt; the Sun Studio
|
164
|
+
# c++filt doesn't handle the GNU mangling style.
|
165
|
+
my $cxxfilt = $ENV{'CXXFILT'} || "c++filt";
|
166
|
+
|
167
|
+
# The current version name.
|
168
|
+
my $current_version = "";
|
169
|
+
|
170
|
+
# Was there any attempt to match a symbol to this version?
|
171
|
+
my $matches_attempted;
|
172
|
+
|
173
|
+
# The number of versions which matched this symbol.
|
174
|
+
my $matched_symbols;
|
175
|
+
|
176
|
+
open F,$symvers or die $!;
|
177
|
+
|
178
|
+
# Print information about generating this file
|
179
|
+
print "# This file was generated by make_sunver.pl. DO NOT EDIT!\n";
|
180
|
+
print "# It was generated by:\n";
|
181
|
+
printf "# %s %s %s\n", $0, $symvers, (join ' ',@ARGV);
|
182
|
+
printf "# Omitted archives with corresponding shared libraries: %s\n",
|
183
|
+
(join ' ', @SHAREDOBJS) if $#SHAREDOBJS >= 0;
|
184
|
+
print "#\n\n";
|
185
|
+
|
186
|
+
while (<F>) {
|
187
|
+
# Lines of the form '};'
|
188
|
+
if (/^([ \t]*)(\}[ \t]*;[ \t]*)$/) {
|
189
|
+
$glob = 'glob';
|
190
|
+
if ($in_extern) {
|
191
|
+
$in_extern--;
|
192
|
+
print "$1##$2\n";
|
193
|
+
} else {
|
194
|
+
print;
|
195
|
+
}
|
196
|
+
next;
|
197
|
+
}
|
198
|
+
|
199
|
+
# Lines of the form '} SOME_VERSION_NAME_1.0;'
|
200
|
+
if (/^[ \t]*\}[ \tA-Z0-9_.a-z]+;[ \t]*$/) {
|
201
|
+
$glob = 'glob';
|
202
|
+
# We tried to match symbols agains this version, but none matched.
|
203
|
+
# Emit dummy hidden symbol to avoid marking this version WEAK.
|
204
|
+
if ($matches_attempted && $matched_symbols == 0) {
|
205
|
+
print " hidden:\n";
|
206
|
+
print " .force_WEAK_off_$current_version = DATA S0x0 V0x0;\n";
|
207
|
+
}
|
208
|
+
print; next;
|
209
|
+
}
|
210
|
+
|
211
|
+
# Comment and blank lines
|
212
|
+
if (/^[ \t]*\#/) { print; next; }
|
213
|
+
if (/^[ \t]*$/) { print; next; }
|
214
|
+
|
215
|
+
# Lines of the form '{'
|
216
|
+
if (/^([ \t]*){$/) {
|
217
|
+
if ($in_extern) {
|
218
|
+
print "$1##{\n";
|
219
|
+
} else {
|
220
|
+
print;
|
221
|
+
}
|
222
|
+
next;
|
223
|
+
}
|
224
|
+
|
225
|
+
# Lines of the form 'SOME_VERSION_NAME_1.1 {'
|
226
|
+
if (/^([A-Z0-9_.]+)[ \t]+{$/) {
|
227
|
+
# Record version name.
|
228
|
+
$current_version = $1;
|
229
|
+
# Reset match attempts, #matched symbols for this version.
|
230
|
+
$matches_attempted = 0;
|
231
|
+
$matched_symbols = 0;
|
232
|
+
print;
|
233
|
+
next;
|
234
|
+
}
|
235
|
+
|
236
|
+
# Ignore 'global:'
|
237
|
+
if (/^[ \t]*global:$/) { print; next; }
|
238
|
+
|
239
|
+
# After 'local:', globs should be ignored, they won't be exported.
|
240
|
+
if (/^[ \t]*local:$/) {
|
241
|
+
$glob = 'ign';
|
242
|
+
print;
|
243
|
+
next;
|
244
|
+
}
|
245
|
+
|
246
|
+
# After 'extern "C++"', globs are C++ patterns
|
247
|
+
if (/^([ \t]*)(extern \"C\+\+\"[ \t]*)$/) {
|
248
|
+
$in_extern++;
|
249
|
+
$glob = 'cxx';
|
250
|
+
# Need to comment, Sun ld cannot handle this.
|
251
|
+
print "$1##$2\n"; next;
|
252
|
+
}
|
253
|
+
|
254
|
+
# Chomp newline now we're done with passing through the input file.
|
255
|
+
chomp;
|
256
|
+
|
257
|
+
# Catch globs. Note that '{}' is not allowed in globs by this script,
|
258
|
+
# so only '*' and '[]' are available.
|
259
|
+
if (/^([ \t]*)([^ \t;{}#]+);?[ \t]*$/) {
|
260
|
+
my $ws = $1;
|
261
|
+
my $ptn = $2;
|
262
|
+
# Turn the glob into a regex by replacing '*' with '.*', '?' with '.'.
|
263
|
+
# Keep $ptn so we can still print the original form.
|
264
|
+
($pattern = $ptn) =~ s/\*/\.\*/g;
|
265
|
+
$pattern =~ s/\?/\./g;
|
266
|
+
|
267
|
+
if ($glob eq 'ign') {
|
268
|
+
# We're in a local: * section; just continue.
|
269
|
+
print "$_\n";
|
270
|
+
next;
|
271
|
+
}
|
272
|
+
|
273
|
+
# Print the glob commented for human readers.
|
274
|
+
print "$ws##$ptn ($glob)\n";
|
275
|
+
# We tried to match a symbol to this version.
|
276
|
+
$matches_attempted++;
|
277
|
+
|
278
|
+
if ($glob eq 'glob') {
|
279
|
+
my %ptn_syms = ();
|
280
|
+
|
281
|
+
# Match ptn against symbols in %sym_hash.
|
282
|
+
foreach my $sym (keys %sym_hash) {
|
283
|
+
# Maybe it matches one of the patterns based on the symbol in
|
284
|
+
# the .o file.
|
285
|
+
$ptn_syms{$sym}++ if ($sym =~ /^$pattern$/);
|
286
|
+
}
|
287
|
+
|
288
|
+
foreach my $sym (sort keys(%ptn_syms)) {
|
289
|
+
$matched_symbols++;
|
290
|
+
print "$ws$sym;\n";
|
291
|
+
}
|
292
|
+
} elsif ($glob eq 'cxx') {
|
293
|
+
my %dem_syms = ();
|
294
|
+
|
295
|
+
# Verify that we're actually using GNU c++filt. Other versions
|
296
|
+
# most likely cannot handle GNU style symbol mangling.
|
297
|
+
my $cxxout = `$cxxfilt --version 2>&1`;
|
298
|
+
$cxxout =~ m/GNU/ or die "$0 requires GNU c++filt to function";
|
299
|
+
|
300
|
+
# Talk to c++filt through a pair of file descriptors.
|
301
|
+
# Need to start a fresh instance per pattern, otherwise the
|
302
|
+
# process grows to 500+ MB.
|
303
|
+
my $pid = open2(*FILTIN, *FILTOUT, $cxxfilt) or die $!;
|
304
|
+
|
305
|
+
# Match ptn against symbols in %sym_hash.
|
306
|
+
foreach my $sym (keys %sym_hash) {
|
307
|
+
# No? Well, maybe its demangled form matches one of those
|
308
|
+
# patterns.
|
309
|
+
printf FILTOUT "%s\n",$sym;
|
310
|
+
my $dem = <FILTIN>;
|
311
|
+
chomp $dem;
|
312
|
+
$dem_syms{$sym}++ if ($dem =~ /^$pattern$/);
|
313
|
+
}
|
314
|
+
|
315
|
+
close FILTOUT or die "c++filt error";
|
316
|
+
close FILTIN or die "c++filt error";
|
317
|
+
# Need to wait for the c++filt process to avoid lots of zombies.
|
318
|
+
waitpid $pid, 0;
|
319
|
+
|
320
|
+
foreach my $sym (sort keys(%dem_syms)) {
|
321
|
+
$matched_symbols++;
|
322
|
+
print "$ws$sym;\n";
|
323
|
+
}
|
324
|
+
} else {
|
325
|
+
# No? Well, then ignore it.
|
326
|
+
}
|
327
|
+
next;
|
328
|
+
}
|
329
|
+
# Important sanity check. This script can't handle lots of formats
|
330
|
+
# that GNU ld can, so be sure to error out if one is seen!
|
331
|
+
die "strange line `$_'";
|
332
|
+
}
|
333
|
+
close F;
|
@@ -0,0 +1,33 @@
|
|
1
|
+
|
2
|
+
Microsoft Visual Studio Solution File, Format Version 12.00
|
3
|
+
# Visual Studio 15
|
4
|
+
VisualStudioVersion = 15.0.28302.56
|
5
|
+
MinimumVisualStudioVersion = 10.0.40219.1
|
6
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Ffi_staticLib_arm64", "Ffi_staticLib.vcxproj", "{115502C0-BE05-4767-BF19-5C87D805FAD6}"
|
7
|
+
EndProject
|
8
|
+
Global
|
9
|
+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
10
|
+
Debug|ARM64 = Debug|ARM64
|
11
|
+
Debug|x64 = Debug|x64
|
12
|
+
Debug|x86 = Debug|x86
|
13
|
+
Release|ARM64 = Release|ARM64
|
14
|
+
Release|x64 = Release|x64
|
15
|
+
Release|x86 = Release|x86
|
16
|
+
EndGlobalSection
|
17
|
+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
18
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
19
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Debug|ARM64.Build.0 = Debug|ARM64
|
20
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Debug|x64.ActiveCfg = Debug|ARM64
|
21
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Debug|x86.ActiveCfg = Debug|ARM64
|
22
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Release|ARM64.ActiveCfg = Release|ARM64
|
23
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Release|ARM64.Build.0 = Release|ARM64
|
24
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Release|x64.ActiveCfg = Release|ARM64
|
25
|
+
{115502C0-BE05-4767-BF19-5C87D805FAD6}.Release|x86.ActiveCfg = Release|ARM64
|
26
|
+
EndGlobalSection
|
27
|
+
GlobalSection(SolutionProperties) = preSolution
|
28
|
+
HideSolutionNode = FALSE
|
29
|
+
EndGlobalSection
|
30
|
+
GlobalSection(ExtensibilityGlobals) = postSolution
|
31
|
+
SolutionGuid = {241C54C7-20DD-4897-9376-E6B6D1B43BD5}
|
32
|
+
EndGlobalSection
|
33
|
+
EndGlobal
|
@@ -0,0 +1,130 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<ItemGroup Label="ProjectConfigurations">
|
4
|
+
<ProjectConfiguration Include="Debug|ARM64">
|
5
|
+
<Configuration>Debug</Configuration>
|
6
|
+
<Platform>ARM64</Platform>
|
7
|
+
</ProjectConfiguration>
|
8
|
+
<ProjectConfiguration Include="Release|ARM64">
|
9
|
+
<Configuration>Release</Configuration>
|
10
|
+
<Platform>ARM64</Platform>
|
11
|
+
</ProjectConfiguration>
|
12
|
+
</ItemGroup>
|
13
|
+
<PropertyGroup Label="Globals">
|
14
|
+
<VCProjectVersion>15.0</VCProjectVersion>
|
15
|
+
<ProjectGuid>{115502C0-BE05-4767-BF19-5C87D805FAD6}</ProjectGuid>
|
16
|
+
<Keyword>Win32Proj</Keyword>
|
17
|
+
<RootNamespace>FfistaticLib</RootNamespace>
|
18
|
+
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
|
19
|
+
<ProjectName>Ffi_staticLib_arm64</ProjectName>
|
20
|
+
</PropertyGroup>
|
21
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
22
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
|
23
|
+
<ConfigurationType>StaticLibrary</ConfigurationType>
|
24
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
25
|
+
<PlatformToolset>v141</PlatformToolset>
|
26
|
+
<CharacterSet>Unicode</CharacterSet>
|
27
|
+
</PropertyGroup>
|
28
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
|
29
|
+
<ConfigurationType>StaticLibrary</ConfigurationType>
|
30
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
31
|
+
<PlatformToolset>v141</PlatformToolset>
|
32
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
33
|
+
<CharacterSet>Unicode</CharacterSet>
|
34
|
+
</PropertyGroup>
|
35
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
36
|
+
<ImportGroup Label="ExtensionSettings">
|
37
|
+
</ImportGroup>
|
38
|
+
<ImportGroup Label="Shared">
|
39
|
+
</ImportGroup>
|
40
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="PropertySheets">
|
41
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
42
|
+
</ImportGroup>
|
43
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="PropertySheets">
|
44
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
45
|
+
</ImportGroup>
|
46
|
+
<PropertyGroup Label="UserMacros" />
|
47
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
|
48
|
+
<LinkIncremental>true</LinkIncremental>
|
49
|
+
</PropertyGroup>
|
50
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
|
51
|
+
<LinkIncremental>false</LinkIncremental>
|
52
|
+
</PropertyGroup>
|
53
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
|
54
|
+
<ClCompile>
|
55
|
+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
56
|
+
<WarningLevel>Level3</WarningLevel>
|
57
|
+
<Optimization>Disabled</Optimization>
|
58
|
+
<SDLCheck>true</SDLCheck>
|
59
|
+
<PreprocessorDefinitions>FFI_BUILDING_DLL;_DEBUG;_LIB;USE_DL_PREFIX;ARM64;_M_ARM64;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
60
|
+
<ConformanceMode>true</ConformanceMode>
|
61
|
+
<AdditionalIncludeDirectories>..\..\include;.\aarch64_include;..\..\src\aarch64;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
62
|
+
<IgnoreStandardIncludePath>false</IgnoreStandardIncludePath>
|
63
|
+
<BrowseInformation>true</BrowseInformation>
|
64
|
+
<OmitFramePointers>
|
65
|
+
</OmitFramePointers>
|
66
|
+
<WholeProgramOptimization>false</WholeProgramOptimization>
|
67
|
+
</ClCompile>
|
68
|
+
<Link>
|
69
|
+
<SubSystem>Windows</SubSystem>
|
70
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
71
|
+
</Link>
|
72
|
+
</ItemDefinitionGroup>
|
73
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
|
74
|
+
<ClCompile>
|
75
|
+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
76
|
+
<WarningLevel>Level3</WarningLevel>
|
77
|
+
<Optimization>MaxSpeed</Optimization>
|
78
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
79
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
80
|
+
<SDLCheck>true</SDLCheck>
|
81
|
+
<PreprocessorDefinitions>FFI_BUILDING_DLL;USE_DL_PREFIX;ARM64;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
82
|
+
<ConformanceMode>true</ConformanceMode>
|
83
|
+
<AdditionalIncludeDirectories>..\..\include;.\aarch64_include;..\..\src\aarch64;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
84
|
+
<OmitFramePointers>true</OmitFramePointers>
|
85
|
+
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
86
|
+
<EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
|
87
|
+
<AdditionalUsingDirectories>..\..\src;..\..\src\aarch64;%(AdditionalUsingDirectories)</AdditionalUsingDirectories>
|
88
|
+
</ClCompile>
|
89
|
+
<Link>
|
90
|
+
<SubSystem>Windows</SubSystem>
|
91
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
92
|
+
<OptimizeReferences>true</OptimizeReferences>
|
93
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
94
|
+
</Link>
|
95
|
+
<ProjectReference>
|
96
|
+
<LinkLibraryDependencies>true</LinkLibraryDependencies>
|
97
|
+
</ProjectReference>
|
98
|
+
</ItemDefinitionGroup>
|
99
|
+
<ItemGroup>
|
100
|
+
<ClInclude Include=".\aarch64_include\ffi.h" />
|
101
|
+
<ClInclude Include=".\aarch64_include\fficonfig.h" />
|
102
|
+
<ClInclude Include="..\..\src\aarch64\ffitarget.h" />
|
103
|
+
<ClInclude Include="..\include\ffi_cfi.h" />
|
104
|
+
<ClInclude Include="..\include\ffi_common.h" />
|
105
|
+
<ClInclude Include="..\..\src\aarch64\internal.h" />
|
106
|
+
</ItemGroup>
|
107
|
+
<ItemGroup>
|
108
|
+
<ClCompile Include="..\..\src\closures.c" />
|
109
|
+
<ClCompile Include="..\..\src\dlmalloc.c" />
|
110
|
+
<ClCompile Include="..\..\src\aarch64\ffi.c" />
|
111
|
+
<ClCompile Include="..\..\src\prep_cif.c" />
|
112
|
+
<ClCompile Include="..\..\src\types.c" />
|
113
|
+
</ItemGroup>
|
114
|
+
<!--ItemGroup>
|
115
|
+
<Object Include="..\..\..\..\Downloads\libffi-master-win64\src\aarch64\win64_armasm.obj" />
|
116
|
+
</ItemGroup-->
|
117
|
+
<ItemGroup>
|
118
|
+
<CustomBuild Include="..\..\src\aarch64\win64_armasm.S">
|
119
|
+
<!--ExcludedFromBuild Condition="'$(Platform)'!='ARM64'">true</ExcludedFromBuild -->
|
120
|
+
<Command>
|
121
|
+
cl /FA /EP /nologo /I"..\..\include" /I".\aarch64_include" /I"..\..\src\aarch64" "%(FullPath)" > $(IntDir)win64_armasm.i
|
122
|
+
armasm64 $(IntDir)win64_armasm.i /I"src\" /I"..\..\include" /I"..\..\src\aarch64" -o "$(IntDir)win64_armasm.obj"
|
123
|
+
</Command>
|
124
|
+
<Outputs>win64_armasm.obj;%(Outputs)</Outputs>
|
125
|
+
</CustomBuild>
|
126
|
+
</ItemGroup>
|
127
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
128
|
+
<ImportGroup Label="ExtensionTargets">
|
129
|
+
</ImportGroup>
|
130
|
+
</Project>
|