ffi 1.9.24 → 1.16.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +348 -0
- data/Gemfile +4 -5
- data/README.md +44 -17
- data/Rakefile +74 -148
- data/ext/ffi_c/AbstractMemory.c +89 -70
- data/ext/ffi_c/AbstractMemory.h +3 -2
- data/ext/ffi_c/ArrayType.c +49 -13
- data/ext/ffi_c/ArrayType.h +1 -0
- data/ext/ffi_c/Buffer.c +90 -38
- data/ext/ffi_c/Call.c +55 -56
- data/ext/ffi_c/Call.h +12 -6
- data/ext/ffi_c/ClosurePool.c +333 -0
- data/ext/ffi_c/{Closure.h → ClosurePool.h} +25 -13
- data/ext/ffi_c/DynamicLibrary.c +91 -33
- data/ext/ffi_c/Function.c +306 -235
- data/ext/ffi_c/Function.h +3 -5
- data/ext/ffi_c/FunctionInfo.c +87 -32
- data/ext/ffi_c/LastError.c +74 -15
- data/ext/ffi_c/LongDouble.c +12 -10
- data/ext/ffi_c/LongDouble.h +0 -4
- data/ext/ffi_c/MappedType.c +66 -23
- data/ext/ffi_c/MappedType.h +0 -2
- data/ext/ffi_c/MemoryPointer.c +37 -15
- data/ext/ffi_c/MemoryPointer.h +0 -4
- data/ext/ffi_c/MethodHandle.c +265 -38
- data/ext/ffi_c/MethodHandle.h +3 -2
- data/ext/ffi_c/Platform.c +5 -56
- data/ext/ffi_c/Pointer.c +93 -55
- data/ext/ffi_c/Pointer.h +1 -4
- data/ext/ffi_c/Struct.c +202 -134
- data/ext/ffi_c/Struct.h +18 -9
- data/ext/ffi_c/StructByValue.c +50 -23
- data/ext/ffi_c/StructLayout.c +135 -64
- data/ext/ffi_c/Thread.c +4 -228
- data/ext/ffi_c/Thread.h +1 -20
- data/ext/ffi_c/Type.c +105 -55
- data/ext/ffi_c/Type.h +3 -2
- data/ext/ffi_c/Types.c +8 -9
- data/ext/ffi_c/Types.h +3 -4
- data/ext/ffi_c/Variadic.c +88 -47
- data/ext/ffi_c/compat.h +26 -22
- data/ext/ffi_c/extconf.rb +75 -32
- data/ext/ffi_c/ffi.c +9 -10
- data/ext/ffi_c/libffi/.appveyor/site.exp +16 -0
- data/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +7 -0
- data/ext/ffi_c/libffi/.appveyor.yml +53 -19
- data/ext/ffi_c/libffi/.ci/bfin-sim.exp +58 -0
- data/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
- data/ext/ffi_c/libffi/.ci/build-in-container.sh +10 -0
- data/ext/ffi_c/libffi/.ci/build.sh +124 -0
- data/ext/ffi_c/libffi/.ci/install.sh +78 -0
- data/ext/ffi_c/libffi/.ci/m32r-sim.exp +58 -0
- data/ext/ffi_c/libffi/{.travis → .ci}/moxie-sim.exp +1 -1
- data/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
- data/ext/ffi_c/libffi/.ci/or1k-sim.exp +58 -0
- data/ext/ffi_c/libffi/.ci/powerpc-eabisim.exp +58 -0
- data/ext/ffi_c/libffi/.ci/site.exp +29 -0
- data/ext/ffi_c/libffi/.ci/wine-sim.exp +55 -0
- data/ext/ffi_c/libffi/.circleci/config.yml +156 -0
- data/ext/ffi_c/libffi/.gitattributes +4 -0
- data/ext/ffi_c/libffi/.github/workflows/build.yml +460 -0
- data/ext/ffi_c/libffi/.github/workflows/emscripten.yml +171 -0
- data/ext/ffi_c/libffi/.gitignore +10 -2
- 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 +64 -73
- data/ext/ffi_c/libffi/Makefile.in +553 -235
- data/ext/ffi_c/libffi/README.md +165 -100
- data/ext/ffi_c/libffi/acinclude.m4 +10 -112
- data/ext/ffi_c/libffi/compile +348 -0
- data/ext/ffi_c/libffi/config.guess +950 -662
- data/ext/ffi_c/libffi/config.sub +1362 -1306
- data/ext/ffi_c/libffi/configure +4909 -4096
- data/ext/ffi_c/libffi/configure.ac +93 -32
- data/ext/ffi_c/libffi/configure.host +76 -28
- data/ext/ffi_c/libffi/doc/Makefile.in +15 -8
- data/ext/ffi_c/libffi/doc/libffi.texi +107 -46
- data/ext/ffi_c/libffi/doc/version.texi +4 -4
- data/ext/ffi_c/libffi/fficonfig.h.in +22 -44
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +165 -56
- data/ext/ffi_c/libffi/include/Makefile.am +1 -1
- data/ext/ffi_c/libffi/include/Makefile.in +17 -12
- data/ext/ffi_c/libffi/include/ffi.h.in +64 -48
- data/ext/ffi_c/libffi/include/ffi_cfi.h +21 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +34 -1
- data/ext/ffi_c/libffi/include/tramp.h +45 -0
- data/ext/ffi_c/libffi/install-sh +107 -74
- 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 +2 -2
- data/ext/ffi_c/libffi/ltmain.sh +576 -284
- 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_cc_maxopt.m4 +18 -14
- data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +108 -72
- data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +5 -26
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +76 -44
- 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/m4/ax_prepend_flag.m4 +51 -0
- data/ext/ffi_c/libffi/make_sunver.pl +333 -0
- data/ext/ffi_c/libffi/man/Makefile.in +15 -8
- data/ext/ffi_c/libffi/missing +8 -8
- 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/msvc_build/aarch64/aarch64_include/fficonfig.h +219 -0
- data/ext/ffi_c/libffi/msvcc.sh +39 -14
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +286 -98
- data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +19 -3
- data/ext/ffi_c/libffi/src/aarch64/internal.h +33 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +142 -37
- data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
- data/ext/ffi_c/libffi/src/arc/arcompact.S +169 -94
- data/ext/ffi_c/libffi/src/arc/ffi.c +325 -148
- data/ext/ffi_c/libffi/src/arc/ffitarget.h +14 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +112 -10
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +8 -1
- data/ext/ffi_c/libffi/src/arm/internal.h +10 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +117 -44
- data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
- data/ext/ffi_c/libffi/src/closures.c +189 -48
- 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 +6 -1
- data/ext/ffi_c/libffi/src/frv/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/ia64/ffi.c +12 -0
- data/ext/ffi_c/libffi/src/ia64/unix.S +20 -2
- 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/loongarch64/ffi.c +621 -0
- data/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +82 -0
- data/ext/ffi_c/libffi/src/loongarch64/sysv.S +327 -0
- data/ext/ffi_c/libffi/src/m32r/ffi.c +31 -14
- data/ext/ffi_c/libffi/src/metag/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/mips/ffi.c +245 -66
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +8 -1
- data/ext/ffi_c/libffi/src/mips/n32.S +137 -28
- data/ext/ffi_c/libffi/src/mips/o32.S +63 -4
- data/ext/ffi_c/libffi/src/moxie/ffi.c +48 -23
- data/ext/ffi_c/libffi/src/or1k/ffi.c +25 -12
- data/ext/ffi_c/libffi/src/pa/ffi.c +62 -108
- data/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +20 -11
- data/ext/ffi_c/libffi/src/pa/hpux32.S +87 -38
- data/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
- data/ext/ffi_c/libffi/src/pa/linux.S +109 -39
- 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 +93 -28
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +83 -5
- data/ext/ffi_c/libffi/src/powerpc/sysv.S +5 -7
- data/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
- data/ext/ffi_c/libffi/src/prep_cif.c +26 -4
- data/ext/ffi_c/libffi/src/riscv/ffi.c +79 -10
- 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/sparc/ffi64.c +16 -0
- data/ext/ffi_c/libffi/src/tramp.c +716 -0
- data/ext/ffi_c/libffi/src/wasm32/ffi.c +934 -0
- data/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +128 -49
- data/ext/ffi_c/libffi/src/x86/ffi64.c +89 -23
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +21 -4
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +63 -10
- data/ext/ffi_c/libffi/src/x86/internal.h +14 -0
- data/ext/ffi_c/libffi/src/x86/internal64.h +14 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +274 -45
- data/ext/ffi_c/libffi/src/x86/sysv_intel.S +998 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +190 -4
- data/ext/ffi_c/libffi/src/x86/win64.S +32 -10
- data/ext/ffi_c/libffi/src/x86/win64_intel.S +3 -2
- data/ext/ffi_c/libffi/src/xtensa/ffi.c +16 -8
- data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +4 -0
- data/ext/ffi_c/libffi/src/xtensa/sysv.S +26 -16
- data/ext/ffi_c/libffi/testsuite/Makefile.am +127 -109
- data/ext/ffi_c/libffi/testsuite/Makefile.in +144 -88
- data/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +54 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/build.sh +63 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +80 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +48 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/test.html +7 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +51 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +71 -25
- data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +7 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +5 -4
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +5 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +12 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +28 -3
- data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +5 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +8 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +61 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -119
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +220 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +154 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +15 -0
- 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 +3 -2
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +21 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +7 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_simple.c +6 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +18 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +22 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +24 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +29 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +4 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +19 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +21 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +35 -3
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +13 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +19 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +13 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +13 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3float.c +18 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +22 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +13 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +29 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +19 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +24 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +28 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +24 -2
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +39 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +25 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +14 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +14 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +14 -2
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +19 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +19 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +20 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +40 -25
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +40 -3
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +19 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +18 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +18 -3
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +18 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +18 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +19 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +19 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +3 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +9 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +4 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +11 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +22 -3
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +5 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +6 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +6 -2
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +5 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +10 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +3 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +3 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_struct_va1.c +11 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +3 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +4 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint_va.c +4 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulong_va.c +4 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +24 -22
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +32 -9
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +1 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +12 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct11.c +21 -5
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +10 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +10 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +9 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +9 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +11 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +9 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +11 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +1 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +1 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +6 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest.cc +2 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest_ffi_call.cc +1 -0
- data/ext/ffi_c/libffi.bsd.mk +2 -2
- data/ext/ffi_c/libffi.darwin.mk +1 -1
- data/ext/ffi_c/libffi.gnu.mk +2 -2
- data/ext/ffi_c/rbffi.h +1 -3
- data/ffi.gemspec +15 -9
- data/lib/ffi/abstract_memory.rb +44 -0
- data/lib/ffi/autopointer.rb +8 -23
- data/lib/ffi/compat.rb +43 -0
- data/lib/ffi/data_converter.rb +67 -0
- data/lib/ffi/dynamic_library.rb +89 -0
- data/lib/ffi/enum.rb +18 -11
- data/lib/ffi/ffi.rb +6 -0
- data/lib/ffi/function.rb +71 -0
- data/lib/ffi/io.rb +3 -3
- data/lib/ffi/library.rb +65 -77
- data/lib/ffi/library_path.rb +109 -0
- data/lib/ffi/managedstruct.rb +3 -3
- 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 +181 -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/aarch64-windows/types.conf +52 -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/hppa1.1-linux/types.conf +178 -0
- data/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
- 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/loongarch64-linux/types.conf +141 -0
- 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/sparcv9-openbsd/types.conf +156 -0
- data/lib/ffi/platform/sparcv9-solaris/types.conf +103 -103
- data/lib/ffi/platform/sw_64-linux/types.conf +141 -0
- 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/platform.rb +43 -20
- data/lib/ffi/pointer.rb +26 -20
- data/lib/ffi/struct.rb +14 -68
- data/lib/ffi/struct_by_reference.rb +72 -0
- data/lib/ffi/struct_layout.rb +96 -0
- data/lib/ffi/struct_layout_builder.rb +1 -1
- data/lib/ffi/tools/const_generator.rb +11 -8
- data/lib/ffi/tools/generator.rb +47 -2
- data/lib/ffi/tools/generator_task.rb +13 -17
- data/lib/ffi/tools/struct_generator.rb +6 -5
- data/lib/ffi/tools/types_generator.rb +7 -4
- data/lib/ffi/types.rb +33 -7
- data/lib/ffi/variadic.rb +20 -18
- data/lib/ffi/version.rb +1 -1
- data/lib/ffi.rb +10 -3
- 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/hello_ractor.rb +11 -0
- data/samples/inotify.rb +1 -1
- data/samples/pty.rb +1 -2
- data/samples/qsort.rb +0 -1
- data/samples/qsort_ractor.rb +28 -0
- data.tar.gz.sig +0 -0
- metadata +252 -153
- metadata.gz.sig +0 -0
- 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/Closure.c +0 -54
- 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/.travis/build.sh +0 -34
- data/ext/ffi_c/libffi/.travis/install.sh +0 -22
- data/ext/ffi_c/libffi/.travis/site.exp +0 -18
- data/ext/ffi_c/libffi/.travis.yml +0 -34
- 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/libffi/testsuite/libffi.call/cls_uchar_va.c +0 -44
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +0 -44
- 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
- data/ext/ffi_c/libffi/{.travis → .ci}/ar-lib +0 -0
- data/ext/ffi_c/libffi/{.travis → .ci}/compile +0 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/{pyobjc-tc.c → pyobjc_tc.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_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}/err_bad_abi.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/lib/ffi/platform/{sparc64-linux → sparcv9-linux}/types.conf +79 -79
data/ext/ffi_c/Function.h
CHANGED
@@ -34,11 +34,7 @@
|
|
34
34
|
extern "C" {
|
35
35
|
#endif
|
36
36
|
|
37
|
-
#ifndef _MSC_VER
|
38
37
|
# include <stdbool.h>
|
39
|
-
#else
|
40
|
-
# include "win32/stdbool.h"
|
41
|
-
#endif
|
42
38
|
|
43
39
|
#include <ffi.h>
|
44
40
|
|
@@ -46,7 +42,7 @@ typedef struct FunctionType_ FunctionType;
|
|
46
42
|
|
47
43
|
#include "Type.h"
|
48
44
|
#include "Call.h"
|
49
|
-
#include "
|
45
|
+
#include "ClosurePool.h"
|
50
46
|
|
51
47
|
struct FunctionType_ {
|
52
48
|
Type type; /* The native type of a FunctionInfo object */
|
@@ -60,6 +56,7 @@ struct FunctionType_ {
|
|
60
56
|
ffi_type** ffiParameterTypes;
|
61
57
|
ffi_cif ffi_cif;
|
62
58
|
Invoker invoke;
|
59
|
+
ClosurePool* closurePool;
|
63
60
|
int parameterCount;
|
64
61
|
int flags;
|
65
62
|
ffi_abi abi;
|
@@ -71,6 +68,7 @@ struct FunctionType_ {
|
|
71
68
|
bool hasStruct;
|
72
69
|
};
|
73
70
|
|
71
|
+
extern const rb_data_type_t rbffi_fntype_data_type;
|
74
72
|
extern VALUE rbffi_FunctionTypeClass, rbffi_FunctionClass;
|
75
73
|
|
76
74
|
void rbffi_Function_Init(VALUE moduleFFI);
|
data/ext/ffi_c/FunctionInfo.c
CHANGED
@@ -33,12 +33,8 @@
|
|
33
33
|
#include <sys/types.h>
|
34
34
|
#include <stdio.h>
|
35
35
|
|
36
|
-
#
|
37
|
-
#
|
38
|
-
# include <stdbool.h>
|
39
|
-
#else
|
40
|
-
# include "win32/stdbool.h"
|
41
|
-
#endif
|
36
|
+
#include <stdint.h>
|
37
|
+
#include <stdbool.h>
|
42
38
|
|
43
39
|
#include <errno.h>
|
44
40
|
#include <ruby.h>
|
@@ -55,8 +51,24 @@
|
|
55
51
|
|
56
52
|
static VALUE fntype_allocate(VALUE klass);
|
57
53
|
static VALUE fntype_initialize(int argc, VALUE* argv, VALUE self);
|
58
|
-
static void fntype_mark(
|
59
|
-
static void
|
54
|
+
static void fntype_mark(void *);
|
55
|
+
static void fntype_compact(void *);
|
56
|
+
static void fntype_free(void *);
|
57
|
+
static size_t fntype_memsize(const void *);
|
58
|
+
|
59
|
+
const rb_data_type_t rbffi_fntype_data_type = { /* extern */
|
60
|
+
.wrap_struct_name = "FFI::FunctionType",
|
61
|
+
.function = {
|
62
|
+
.dmark = fntype_mark,
|
63
|
+
.dfree = fntype_free,
|
64
|
+
.dsize = fntype_memsize,
|
65
|
+
ffi_compact_callback( fntype_compact )
|
66
|
+
},
|
67
|
+
.parent = &rbffi_type_data_type,
|
68
|
+
// IMPORTANT: WB_PROTECTED objects must only use the RB_OBJ_WRITE()
|
69
|
+
// macro to update VALUE references, as to trigger write barriers.
|
70
|
+
.flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | FFI_RUBY_TYPED_FROZEN_SHAREABLE
|
71
|
+
};
|
60
72
|
|
61
73
|
VALUE rbffi_FunctionTypeClass = Qnil;
|
62
74
|
|
@@ -64,39 +76,80 @@ static VALUE
|
|
64
76
|
fntype_allocate(VALUE klass)
|
65
77
|
{
|
66
78
|
FunctionType* fnInfo;
|
67
|
-
VALUE obj =
|
79
|
+
VALUE obj = TypedData_Make_Struct(klass, FunctionType, &rbffi_fntype_data_type, fnInfo);
|
68
80
|
|
69
81
|
fnInfo->type.ffiType = &ffi_type_pointer;
|
70
82
|
fnInfo->type.nativeType = NATIVE_FUNCTION;
|
71
|
-
fnInfo->rbReturnType
|
72
|
-
fnInfo->rbParameterTypes
|
73
|
-
fnInfo->rbEnums
|
83
|
+
RB_OBJ_WRITE(obj, &fnInfo->rbReturnType, Qnil);
|
84
|
+
RB_OBJ_WRITE(obj, &fnInfo->rbParameterTypes, Qnil);
|
85
|
+
RB_OBJ_WRITE(obj, &fnInfo->rbEnums, Qnil);
|
74
86
|
fnInfo->invoke = rbffi_CallFunction;
|
87
|
+
fnInfo->closurePool = NULL;
|
75
88
|
|
76
89
|
return obj;
|
77
90
|
}
|
78
91
|
|
79
92
|
static void
|
80
|
-
fntype_mark(
|
93
|
+
fntype_mark(void *data)
|
94
|
+
{
|
95
|
+
FunctionType *fnInfo = (FunctionType *)data;
|
96
|
+
rb_gc_mark_movable(fnInfo->rbReturnType);
|
97
|
+
rb_gc_mark_movable(fnInfo->rbParameterTypes);
|
98
|
+
rb_gc_mark_movable(fnInfo->rbEnums);
|
99
|
+
if (fnInfo->callbackCount > 0 && fnInfo->callbackParameters != NULL) {
|
100
|
+
size_t index;
|
101
|
+
for (index = 0; index < fnInfo->callbackCount; index++) {
|
102
|
+
rb_gc_mark_movable(fnInfo->callbackParameters[index]);
|
103
|
+
}
|
104
|
+
}
|
105
|
+
}
|
106
|
+
|
107
|
+
static void
|
108
|
+
fntype_compact(void *data)
|
81
109
|
{
|
82
|
-
|
83
|
-
|
84
|
-
|
110
|
+
FunctionType *fnInfo = (FunctionType *)data;
|
111
|
+
ffi_gc_location(fnInfo->rbReturnType);
|
112
|
+
ffi_gc_location(fnInfo->rbParameterTypes);
|
113
|
+
ffi_gc_location(fnInfo->rbEnums);
|
85
114
|
if (fnInfo->callbackCount > 0 && fnInfo->callbackParameters != NULL) {
|
86
|
-
|
115
|
+
size_t index;
|
116
|
+
for (index = 0; index < fnInfo->callbackCount; index++) {
|
117
|
+
ffi_gc_location(fnInfo->callbackParameters[index]);
|
118
|
+
}
|
87
119
|
}
|
88
120
|
}
|
89
121
|
|
90
122
|
static void
|
91
|
-
fntype_free(
|
123
|
+
fntype_free(void *data)
|
92
124
|
{
|
125
|
+
FunctionType *fnInfo = (FunctionType *)data;
|
93
126
|
xfree(fnInfo->parameterTypes);
|
94
127
|
xfree(fnInfo->ffiParameterTypes);
|
95
128
|
xfree(fnInfo->nativeParameterTypes);
|
96
129
|
xfree(fnInfo->callbackParameters);
|
130
|
+
if (fnInfo->closurePool != NULL) {
|
131
|
+
rbffi_ClosurePool_Free(fnInfo->closurePool);
|
132
|
+
}
|
97
133
|
xfree(fnInfo);
|
98
134
|
}
|
99
135
|
|
136
|
+
static size_t
|
137
|
+
fntype_memsize(const void *data)
|
138
|
+
{
|
139
|
+
const FunctionType *fnInfo = (const FunctionType *)data;
|
140
|
+
|
141
|
+
size_t memsize = sizeof(FunctionType);
|
142
|
+
memsize += fnInfo->callbackCount * sizeof(VALUE);
|
143
|
+
|
144
|
+
memsize += fnInfo->parameterCount * (
|
145
|
+
sizeof(*fnInfo->parameterTypes)
|
146
|
+
+ sizeof(ffi_type *)
|
147
|
+
+ sizeof(*fnInfo->nativeParameterTypes)
|
148
|
+
);
|
149
|
+
|
150
|
+
return memsize;
|
151
|
+
}
|
152
|
+
|
100
153
|
/*
|
101
154
|
* call-seq: initialize(return_type, param_types, options={})
|
102
155
|
* @param [Type, Symbol] return_type return type for the function
|
@@ -129,13 +182,13 @@ fntype_initialize(int argc, VALUE* argv, VALUE self)
|
|
129
182
|
|
130
183
|
Check_Type(rbParamTypes, T_ARRAY);
|
131
184
|
|
132
|
-
|
185
|
+
TypedData_Get_Struct(self, FunctionType, &rbffi_fntype_data_type, fnInfo);
|
133
186
|
fnInfo->parameterCount = (int) RARRAY_LEN(rbParamTypes);
|
134
187
|
fnInfo->parameterTypes = xcalloc(fnInfo->parameterCount, sizeof(*fnInfo->parameterTypes));
|
135
188
|
fnInfo->ffiParameterTypes = xcalloc(fnInfo->parameterCount, sizeof(ffi_type *));
|
136
189
|
fnInfo->nativeParameterTypes = xcalloc(fnInfo->parameterCount, sizeof(*fnInfo->nativeParameterTypes));
|
137
|
-
fnInfo->rbParameterTypes
|
138
|
-
fnInfo->rbEnums
|
190
|
+
RB_OBJ_WRITE(self, &fnInfo->rbParameterTypes, rb_ary_new2(fnInfo->parameterCount));
|
191
|
+
RB_OBJ_WRITE(self, &fnInfo->rbEnums, rbEnums);
|
139
192
|
fnInfo->blocking = RTEST(rbBlocking);
|
140
193
|
fnInfo->hasStruct = false;
|
141
194
|
|
@@ -150,7 +203,8 @@ fntype_initialize(int argc, VALUE* argv, VALUE self)
|
|
150
203
|
|
151
204
|
if (rb_obj_is_kind_of(type, rbffi_FunctionTypeClass)) {
|
152
205
|
REALLOC_N(fnInfo->callbackParameters, VALUE, fnInfo->callbackCount + 1);
|
153
|
-
fnInfo->callbackParameters[fnInfo->callbackCount
|
206
|
+
RB_OBJ_WRITE(self, &fnInfo->callbackParameters[fnInfo->callbackCount], type);
|
207
|
+
fnInfo->callbackCount++;
|
154
208
|
}
|
155
209
|
|
156
210
|
if (rb_obj_is_kind_of(type, rbffi_StructByValueClass)) {
|
@@ -158,25 +212,24 @@ fntype_initialize(int argc, VALUE* argv, VALUE self)
|
|
158
212
|
}
|
159
213
|
|
160
214
|
rb_ary_push(fnInfo->rbParameterTypes, type);
|
161
|
-
|
215
|
+
TypedData_Get_Struct(type, Type, &rbffi_type_data_type, fnInfo->parameterTypes[i]);
|
162
216
|
fnInfo->ffiParameterTypes[i] = fnInfo->parameterTypes[i]->ffiType;
|
163
217
|
fnInfo->nativeParameterTypes[i] = fnInfo->parameterTypes[i]->nativeType;
|
164
218
|
}
|
165
219
|
|
166
|
-
fnInfo->rbReturnType
|
220
|
+
RB_OBJ_WRITE(self, &fnInfo->rbReturnType, rbffi_Type_Lookup(rbReturnType));
|
167
221
|
if (!RTEST(fnInfo->rbReturnType)) {
|
168
222
|
VALUE typeName = rb_funcall2(rbReturnType, rb_intern("inspect"), 0, NULL);
|
169
223
|
rb_raise(rb_eTypeError, "Invalid return type (%s)", RSTRING_PTR(typeName));
|
170
224
|
}
|
171
|
-
|
225
|
+
|
172
226
|
if (rb_obj_is_kind_of(fnInfo->rbReturnType, rbffi_StructByValueClass)) {
|
173
227
|
fnInfo->hasStruct = true;
|
174
228
|
}
|
175
229
|
|
176
|
-
|
230
|
+
TypedData_Get_Struct(fnInfo->rbReturnType, Type, &rbffi_type_data_type, fnInfo->returnType);
|
177
231
|
fnInfo->ffiReturnType = fnInfo->returnType->ffiType;
|
178
232
|
|
179
|
-
|
180
233
|
#if defined(X86_WIN32)
|
181
234
|
rbConventionStr = (rbConvention != Qnil) ? rb_funcall2(rbConvention, rb_intern("to_s"), 0, NULL) : Qnil;
|
182
235
|
fnInfo->abi = (rbConventionStr != Qnil && strcmp(StringValueCStr(rbConventionStr), "stdcall") == 0)
|
@@ -200,20 +253,22 @@ fntype_initialize(int argc, VALUE* argv, VALUE self)
|
|
200
253
|
|
201
254
|
fnInfo->invoke = rbffi_GetInvoker(fnInfo);
|
202
255
|
|
256
|
+
rb_obj_freeze(fnInfo->rbParameterTypes);
|
257
|
+
rb_obj_freeze(self);
|
203
258
|
return self;
|
204
259
|
}
|
205
260
|
|
206
261
|
/*
|
207
|
-
* call-seq:
|
262
|
+
* call-seq: return_type
|
208
263
|
* @return [Type]
|
209
264
|
* Get the return type of the function type
|
210
265
|
*/
|
211
266
|
static VALUE
|
212
|
-
|
267
|
+
fntype_return_type(VALUE self)
|
213
268
|
{
|
214
269
|
FunctionType* ft;
|
215
270
|
|
216
|
-
|
271
|
+
TypedData_Get_Struct(self, FunctionType, &rbffi_fntype_data_type, ft);
|
217
272
|
|
218
273
|
return ft->rbReturnType;
|
219
274
|
}
|
@@ -228,7 +283,7 @@ fntype_param_types(VALUE self)
|
|
228
283
|
{
|
229
284
|
FunctionType* ft;
|
230
285
|
|
231
|
-
|
286
|
+
TypedData_Get_Struct(self, FunctionType, &rbffi_fntype_data_type, ft);
|
232
287
|
|
233
288
|
return rb_ary_dup(ft->rbParameterTypes);
|
234
289
|
}
|
@@ -260,7 +315,7 @@ rbffi_FunctionInfo_Init(VALUE moduleFFI)
|
|
260
315
|
|
261
316
|
rb_define_alloc_func(rbffi_FunctionTypeClass, fntype_allocate);
|
262
317
|
rb_define_method(rbffi_FunctionTypeClass, "initialize", fntype_initialize, -1);
|
263
|
-
rb_define_method(rbffi_FunctionTypeClass, "
|
318
|
+
rb_define_method(rbffi_FunctionTypeClass, "return_type", fntype_return_type, 0);
|
264
319
|
rb_define_method(rbffi_FunctionTypeClass, "param_types", fntype_param_types, 0);
|
265
320
|
|
266
321
|
}
|
data/ext/ffi_c/LastError.c
CHANGED
@@ -33,12 +33,8 @@
|
|
33
33
|
#endif
|
34
34
|
#include <sys/types.h>
|
35
35
|
#include <stdio.h>
|
36
|
-
#
|
37
|
-
#
|
38
|
-
# include <stdbool.h>
|
39
|
-
#else
|
40
|
-
# include "win32/stdbool.h"
|
41
|
-
#endif
|
36
|
+
#include <stdint.h>
|
37
|
+
#include <stdbool.h>
|
42
38
|
#include <errno.h>
|
43
39
|
#include <ruby.h>
|
44
40
|
|
@@ -49,8 +45,17 @@
|
|
49
45
|
# define USE_PTHREAD_LOCAL
|
50
46
|
#endif
|
51
47
|
|
48
|
+
#if defined(__CYGWIN__)
|
49
|
+
typedef uint32_t DWORD;
|
50
|
+
DWORD __stdcall GetLastError(void);
|
51
|
+
void __stdcall SetLastError(DWORD);
|
52
|
+
#endif
|
53
|
+
|
52
54
|
typedef struct ThreadData {
|
53
55
|
int td_errno;
|
56
|
+
#if defined(_WIN32) || defined(__CYGWIN__)
|
57
|
+
DWORD td_winapi_errno;
|
58
|
+
#endif
|
54
59
|
} ThreadData;
|
55
60
|
|
56
61
|
#if defined(USE_PTHREAD_LOCAL)
|
@@ -86,30 +91,49 @@ thread_data_free(void *ptr)
|
|
86
91
|
}
|
87
92
|
|
88
93
|
#else
|
94
|
+
static size_t
|
95
|
+
thread_data_memsize(const void *data) {
|
96
|
+
return sizeof(ThreadData);
|
97
|
+
}
|
98
|
+
|
99
|
+
static const rb_data_type_t thread_data_data_type = {
|
100
|
+
.wrap_struct_name = "FFI::ThreadData",
|
101
|
+
.function = {
|
102
|
+
.dmark = NULL,
|
103
|
+
.dfree = RUBY_TYPED_DEFAULT_FREE,
|
104
|
+
.dsize = thread_data_memsize,
|
105
|
+
},
|
106
|
+
// IMPORTANT: WB_PROTECTED objects must only use the RB_OBJ_WRITE()
|
107
|
+
// macro to update VALUE references, as to trigger write barriers.
|
108
|
+
.flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED
|
109
|
+
};
|
110
|
+
|
89
111
|
static ID id_thread_data;
|
90
112
|
|
91
113
|
static ThreadData*
|
92
114
|
thread_data_init(void)
|
93
115
|
{
|
94
|
-
ThreadData*
|
116
|
+
ThreadData *td;
|
95
117
|
VALUE obj;
|
96
118
|
|
97
|
-
obj =
|
119
|
+
obj = TypedData_Make_Struct(rb_cObject, ThreadData, &thread_data_data_type, td);
|
98
120
|
rb_thread_local_aset(rb_thread_current(), id_thread_data, obj);
|
99
121
|
|
100
122
|
return td;
|
101
123
|
}
|
102
124
|
|
103
125
|
static inline ThreadData*
|
104
|
-
thread_data_get()
|
126
|
+
thread_data_get(void)
|
105
127
|
{
|
106
128
|
VALUE obj = rb_thread_local_aref(rb_thread_current(), id_thread_data);
|
107
129
|
|
108
|
-
if (
|
109
|
-
return (
|
130
|
+
if (NIL_P(obj)) {
|
131
|
+
return thread_data_init();
|
110
132
|
}
|
111
133
|
|
112
|
-
|
134
|
+
ThreadData *td;
|
135
|
+
TypedData_Get_Struct(obj, ThreadData, &thread_data_data_type, td);
|
136
|
+
return td;
|
113
137
|
}
|
114
138
|
|
115
139
|
#endif
|
@@ -126,6 +150,19 @@ get_last_error(VALUE self)
|
|
126
150
|
return INT2NUM(thread_data_get()->td_errno);
|
127
151
|
}
|
128
152
|
|
153
|
+
#if defined(_WIN32) || defined(__CYGWIN__)
|
154
|
+
/*
|
155
|
+
* call-seq: winapi_error
|
156
|
+
* @return [Numeric]
|
157
|
+
* Get +GetLastError()+ value. Only Windows or Cygwin.
|
158
|
+
*/
|
159
|
+
static VALUE
|
160
|
+
get_last_winapi_error(VALUE self)
|
161
|
+
{
|
162
|
+
return INT2NUM(thread_data_get()->td_winapi_errno);
|
163
|
+
}
|
164
|
+
#endif
|
165
|
+
|
129
166
|
|
130
167
|
/*
|
131
168
|
* call-seq: error(error)
|
@@ -136,7 +173,6 @@ get_last_error(VALUE self)
|
|
136
173
|
static VALUE
|
137
174
|
set_last_error(VALUE self, VALUE error)
|
138
175
|
{
|
139
|
-
|
140
176
|
#ifdef _WIN32
|
141
177
|
SetLastError(NUM2INT(error));
|
142
178
|
#else
|
@@ -146,22 +182,40 @@ set_last_error(VALUE self, VALUE error)
|
|
146
182
|
return Qnil;
|
147
183
|
}
|
148
184
|
|
185
|
+
#if defined(_WIN32) || defined(__CYGWIN__)
|
186
|
+
/*
|
187
|
+
* call-seq: error(error)
|
188
|
+
* @param [Numeric] error
|
189
|
+
* @return [nil]
|
190
|
+
* Set +GetLastError()+ value. Only on Windows and Cygwin.
|
191
|
+
*/
|
192
|
+
static VALUE
|
193
|
+
set_last_winapi_error(VALUE self, VALUE error)
|
194
|
+
{
|
195
|
+
SetLastError(NUM2INT(error));
|
196
|
+
return Qnil;
|
197
|
+
}
|
198
|
+
#endif
|
199
|
+
|
149
200
|
|
150
201
|
void
|
151
202
|
rbffi_save_errno(void)
|
152
203
|
{
|
153
204
|
int error = 0;
|
154
|
-
|
155
205
|
#ifdef _WIN32
|
156
206
|
error = GetLastError();
|
157
207
|
#else
|
158
208
|
error = errno;
|
159
209
|
#endif
|
160
210
|
|
211
|
+
#if defined(_WIN32) || defined(__CYGWIN__)
|
212
|
+
DWORD winapi_error = GetLastError();
|
213
|
+
thread_data_get()->td_winapi_errno = winapi_error;
|
214
|
+
#endif
|
215
|
+
|
161
216
|
thread_data_get()->td_errno = error;
|
162
217
|
}
|
163
218
|
|
164
|
-
|
165
219
|
void
|
166
220
|
rbffi_LastError_Init(VALUE moduleFFI)
|
167
221
|
{
|
@@ -175,6 +229,11 @@ rbffi_LastError_Init(VALUE moduleFFI)
|
|
175
229
|
rb_define_module_function(moduleError, "error", get_last_error, 0);
|
176
230
|
rb_define_module_function(moduleError, "error=", set_last_error, 1);
|
177
231
|
|
232
|
+
#if defined(_WIN32) || defined(__CYGWIN__)
|
233
|
+
rb_define_module_function(moduleError, "winapi_error", get_last_winapi_error, 0);
|
234
|
+
rb_define_module_function(moduleError, "winapi_error=", set_last_winapi_error, 1);
|
235
|
+
#endif
|
236
|
+
|
178
237
|
#if defined(USE_PTHREAD_LOCAL)
|
179
238
|
pthread_key_create(&threadDataKey, thread_data_free);
|
180
239
|
#else
|
data/ext/ffi_c/LongDouble.c
CHANGED
@@ -3,15 +3,15 @@
|
|
3
3
|
#include <stdarg.h>
|
4
4
|
#include <float.h>
|
5
5
|
|
6
|
-
#if defined (__CYGWIN__) || defined(__INTERIX)
|
6
|
+
#if defined (__CYGWIN__) || defined(__INTERIX) || defined(_MSC_VER)
|
7
7
|
# define strtold(str, endptr) ((long double) strtod((str), (endptr)))
|
8
8
|
#endif /* defined (__CYGWIN__) */
|
9
9
|
|
10
10
|
static VALUE rb_cBigDecimal = Qnil;
|
11
11
|
static VALUE bigdecimal_load(VALUE unused);
|
12
|
-
static VALUE bigdecimal_failed(VALUE value);
|
12
|
+
static VALUE bigdecimal_failed(VALUE value, VALUE exc);
|
13
13
|
|
14
|
-
VALUE
|
14
|
+
VALUE
|
15
15
|
rbffi_longdouble_new(long double ld)
|
16
16
|
{
|
17
17
|
if (!RTEST(rb_cBigDecimal)) {
|
@@ -21,27 +21,29 @@ rbffi_longdouble_new(long double ld)
|
|
21
21
|
|
22
22
|
if (RTEST(rb_cBigDecimal) && rb_cBigDecimal != rb_cObject) {
|
23
23
|
char buf[128];
|
24
|
-
return rb_funcall(
|
24
|
+
return rb_funcall(rb_mKernel, rb_intern("BigDecimal"), 1, rb_str_new(buf, sprintf(buf, "%.35Le", ld)));
|
25
25
|
}
|
26
26
|
|
27
27
|
/* Fall through to handling as a float */
|
28
28
|
return rb_float_new(ld);
|
29
29
|
}
|
30
30
|
|
31
|
-
long double
|
31
|
+
long double
|
32
32
|
rbffi_num2longdouble(VALUE value)
|
33
33
|
{
|
34
34
|
if (TYPE(value) == T_FLOAT) {
|
35
35
|
return rb_num2dbl(value);
|
36
36
|
}
|
37
|
-
|
37
|
+
|
38
38
|
if (!RTEST(rb_cBigDecimal) && rb_const_defined(rb_cObject, rb_intern("BigDecimal"))) {
|
39
39
|
rb_cBigDecimal = rb_const_get(rb_cObject, rb_intern("BigDecimal"));
|
40
40
|
}
|
41
41
|
|
42
42
|
if (RTEST(rb_cBigDecimal) && rb_cBigDecimal != rb_cObject && RTEST(rb_obj_is_kind_of(value, rb_cBigDecimal))) {
|
43
43
|
VALUE s = rb_funcall(value, rb_intern("to_s"), 1, rb_str_new2("E"));
|
44
|
-
|
44
|
+
long double ret = strtold(RSTRING_PTR(s), NULL);
|
45
|
+
RB_GC_GUARD(s);
|
46
|
+
return ret;
|
45
47
|
}
|
46
48
|
|
47
49
|
/* Fall through to handling as a float */
|
@@ -49,15 +51,15 @@ rbffi_num2longdouble(VALUE value)
|
|
49
51
|
}
|
50
52
|
|
51
53
|
|
52
|
-
static VALUE
|
54
|
+
static VALUE
|
53
55
|
bigdecimal_load(VALUE unused)
|
54
56
|
{
|
55
57
|
rb_require("bigdecimal");
|
56
58
|
return rb_const_get(rb_cObject, rb_intern("BigDecimal"));
|
57
59
|
}
|
58
60
|
|
59
|
-
static VALUE
|
60
|
-
bigdecimal_failed(VALUE value)
|
61
|
+
static VALUE
|
62
|
+
bigdecimal_failed(VALUE value, VALUE exc)
|
61
63
|
{
|
62
64
|
return value;
|
63
65
|
}
|
data/ext/ffi_c/LongDouble.h
CHANGED
data/ext/ffi_c/MappedType.c
CHANGED
@@ -31,6 +31,7 @@
|
|
31
31
|
|
32
32
|
#include <ffi.h>
|
33
33
|
#include "rbffi.h"
|
34
|
+
#include "compat.h"
|
34
35
|
|
35
36
|
#include "Type.h"
|
36
37
|
#include "MappedType.h"
|
@@ -38,24 +39,41 @@
|
|
38
39
|
|
39
40
|
static VALUE mapped_allocate(VALUE);
|
40
41
|
static VALUE mapped_initialize(VALUE, VALUE);
|
41
|
-
static void mapped_mark(
|
42
|
+
static void mapped_mark(void *);
|
43
|
+
static void mapped_compact(void *);
|
44
|
+
static size_t mapped_memsize(const void *);
|
42
45
|
static ID id_native_type, id_to_native, id_from_native;
|
43
46
|
|
44
47
|
VALUE rbffi_MappedTypeClass = Qnil;
|
45
48
|
|
49
|
+
static const rb_data_type_t mapped_type_data_type = {
|
50
|
+
.wrap_struct_name = "FFI::Type::Mapped",
|
51
|
+
.function = {
|
52
|
+
.dmark = mapped_mark,
|
53
|
+
.dfree = RUBY_TYPED_DEFAULT_FREE,
|
54
|
+
.dsize = mapped_memsize,
|
55
|
+
ffi_compact_callback( mapped_compact )
|
56
|
+
},
|
57
|
+
.parent = &rbffi_type_data_type,
|
58
|
+
// IMPORTANT: WB_PROTECTED objects must only use the RB_OBJ_WRITE()
|
59
|
+
// macro to update VALUE references, as to trigger write barriers.
|
60
|
+
.flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | FFI_RUBY_TYPED_FROZEN_SHAREABLE
|
61
|
+
};
|
62
|
+
|
63
|
+
|
46
64
|
static VALUE
|
47
65
|
mapped_allocate(VALUE klass)
|
48
66
|
{
|
49
67
|
MappedType* m;
|
50
68
|
|
51
|
-
VALUE obj =
|
69
|
+
VALUE obj = TypedData_Make_Struct(klass, MappedType, &mapped_type_data_type, m);
|
52
70
|
|
53
|
-
m->rbConverter
|
54
|
-
m->rbType
|
71
|
+
RB_OBJ_WRITE(obj, &m->rbConverter, Qnil);
|
72
|
+
RB_OBJ_WRITE(obj, &m->rbType, Qnil);
|
55
73
|
m->type = NULL;
|
56
74
|
m->base.nativeType = NATIVE_MAPPED;
|
57
75
|
m->base.ffiType = &ffi_type_void;
|
58
|
-
|
76
|
+
|
59
77
|
return obj;
|
60
78
|
}
|
61
79
|
|
@@ -69,7 +87,7 @@ static VALUE
|
|
69
87
|
mapped_initialize(VALUE self, VALUE rbConverter)
|
70
88
|
{
|
71
89
|
MappedType* m = NULL;
|
72
|
-
|
90
|
+
|
73
91
|
if (!rb_respond_to(rbConverter, id_native_type)) {
|
74
92
|
rb_raise(rb_eNoMethodError, "native_type method not implemented");
|
75
93
|
}
|
@@ -81,25 +99,42 @@ mapped_initialize(VALUE self, VALUE rbConverter)
|
|
81
99
|
if (!rb_respond_to(rbConverter, id_from_native)) {
|
82
100
|
rb_raise(rb_eNoMethodError, "from_native method not implemented");
|
83
101
|
}
|
84
|
-
|
85
|
-
|
86
|
-
m->rbType
|
102
|
+
|
103
|
+
TypedData_Get_Struct(self, MappedType, &mapped_type_data_type, m);
|
104
|
+
RB_OBJ_WRITE(self, &m->rbType, rb_funcall2(rbConverter, id_native_type, 0, NULL));
|
87
105
|
if (!(rb_obj_is_kind_of(m->rbType, rbffi_TypeClass))) {
|
88
106
|
rb_raise(rb_eTypeError, "native_type did not return instance of FFI::Type");
|
89
107
|
}
|
90
108
|
|
91
|
-
m->rbConverter
|
92
|
-
|
109
|
+
RB_OBJ_WRITE(self, &m->rbConverter, rbConverter);
|
110
|
+
TypedData_Get_Struct(m->rbType, Type, &rbffi_type_data_type, m->type);
|
93
111
|
m->base.ffiType = m->type->ffiType;
|
94
|
-
|
112
|
+
|
113
|
+
rb_obj_freeze(self);
|
114
|
+
|
95
115
|
return self;
|
96
116
|
}
|
97
117
|
|
98
118
|
static void
|
99
|
-
mapped_mark(
|
119
|
+
mapped_mark(void* data)
|
120
|
+
{
|
121
|
+
MappedType* m = (MappedType*)data;
|
122
|
+
rb_gc_mark_movable(m->rbType);
|
123
|
+
rb_gc_mark_movable(m->rbConverter);
|
124
|
+
}
|
125
|
+
|
126
|
+
static void
|
127
|
+
mapped_compact(void* data)
|
100
128
|
{
|
101
|
-
|
102
|
-
|
129
|
+
MappedType* m = (MappedType*)data;
|
130
|
+
ffi_gc_location(m->rbType);
|
131
|
+
ffi_gc_location(m->rbConverter);
|
132
|
+
}
|
133
|
+
|
134
|
+
static size_t
|
135
|
+
mapped_memsize(const void *data)
|
136
|
+
{
|
137
|
+
return sizeof(MappedType);
|
103
138
|
}
|
104
139
|
|
105
140
|
/*
|
@@ -111,7 +146,7 @@ static VALUE
|
|
111
146
|
mapped_native_type(VALUE self)
|
112
147
|
{
|
113
148
|
MappedType*m = NULL;
|
114
|
-
|
149
|
+
TypedData_Get_Struct(self, MappedType, &mapped_type_data_type, m);
|
115
150
|
|
116
151
|
return m->rbType;
|
117
152
|
}
|
@@ -124,9 +159,8 @@ static VALUE
|
|
124
159
|
mapped_to_native(int argc, VALUE* argv, VALUE self)
|
125
160
|
{
|
126
161
|
MappedType*m = NULL;
|
127
|
-
|
128
|
-
|
129
|
-
|
162
|
+
TypedData_Get_Struct(self, MappedType, &mapped_type_data_type, m);
|
163
|
+
|
130
164
|
return rb_funcall2(m->rbConverter, id_to_native, argc, argv);
|
131
165
|
}
|
132
166
|
|
@@ -138,20 +172,28 @@ static VALUE
|
|
138
172
|
mapped_from_native(int argc, VALUE* argv, VALUE self)
|
139
173
|
{
|
140
174
|
MappedType*m = NULL;
|
141
|
-
|
142
|
-
Data_Get_Struct(self, MappedType, m);
|
175
|
+
TypedData_Get_Struct(self, MappedType, &mapped_type_data_type, m);
|
143
176
|
|
144
177
|
return rb_funcall2(m->rbConverter, id_from_native, argc, argv);
|
145
178
|
}
|
146
179
|
|
180
|
+
static VALUE
|
181
|
+
mapped_converter(VALUE self)
|
182
|
+
{
|
183
|
+
MappedType*m = NULL;
|
184
|
+
TypedData_Get_Struct(self, MappedType, &mapped_type_data_type, m);
|
185
|
+
|
186
|
+
return m->rbConverter;
|
187
|
+
}
|
188
|
+
|
147
189
|
void
|
148
190
|
rbffi_MappedType_Init(VALUE moduleFFI)
|
149
191
|
{
|
150
|
-
/*
|
192
|
+
/*
|
151
193
|
* Document-class: FFI::Type::Mapped < FFI::Type
|
152
194
|
*/
|
153
195
|
rbffi_MappedTypeClass = rb_define_class_under(rbffi_TypeClass, "Mapped", rbffi_TypeClass);
|
154
|
-
|
196
|
+
|
155
197
|
rb_global_variable(&rbffi_MappedTypeClass);
|
156
198
|
|
157
199
|
id_native_type = rb_intern("native_type");
|
@@ -164,5 +206,6 @@ rbffi_MappedType_Init(VALUE moduleFFI)
|
|
164
206
|
rb_define_method(rbffi_MappedTypeClass, "native_type", mapped_native_type, 0);
|
165
207
|
rb_define_method(rbffi_MappedTypeClass, "to_native", mapped_to_native, -1);
|
166
208
|
rb_define_method(rbffi_MappedTypeClass, "from_native", mapped_from_native, -1);
|
209
|
+
rb_define_method(rbffi_MappedTypeClass, "converter", mapped_converter, 0);
|
167
210
|
}
|
168
211
|
|