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
@@ -0,0 +1,54 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
emcc_exists="$(command -v emcc)"
|
3
|
+
if [ ! "${emcc_exists}" ]; then
|
4
|
+
echo "Emscripten not on path"
|
5
|
+
exit 1
|
6
|
+
fi
|
7
|
+
|
8
|
+
set -e
|
9
|
+
|
10
|
+
cd "$1"
|
11
|
+
shift
|
12
|
+
|
13
|
+
# Parse arguments
|
14
|
+
while [ $# -gt 0 ]; do
|
15
|
+
case $1 in
|
16
|
+
--wasm-bigint) WASM_BIGINT=true ;;
|
17
|
+
*)
|
18
|
+
echo "ERROR: Unknown parameter: $1" >&2
|
19
|
+
exit 1
|
20
|
+
;;
|
21
|
+
esac
|
22
|
+
shift
|
23
|
+
done
|
24
|
+
|
25
|
+
|
26
|
+
export CFLAGS="-fPIC -O2 -I../../target/include $EXTRA_CFLAGS"
|
27
|
+
export CXXFLAGS="$CFLAGS -sNO_DISABLE_EXCEPTION_CATCHING $EXTRA_CXXFLAGS"
|
28
|
+
export LDFLAGS=" \
|
29
|
+
-L../../target/lib/ -lffi \
|
30
|
+
-sEXPORT_ALL \
|
31
|
+
-sMODULARIZE \
|
32
|
+
-sMAIN_MODULE \
|
33
|
+
-sNO_DISABLE_EXCEPTION_CATCHING \
|
34
|
+
$EXTRA_LD_FLAGS \
|
35
|
+
"
|
36
|
+
|
37
|
+
# This needs to test false if there exists an environment variable called
|
38
|
+
# WASM_BIGINT whose contents are empty. Don't use +x.
|
39
|
+
if [ -n "${WASM_BIGINT}" ] ; then
|
40
|
+
export LDFLAGS+=" -sWASM_BIGINT"
|
41
|
+
else
|
42
|
+
export LDFLAGS+=" -sEXPORTED_RUNTIME_METHODS='getTempRet0,setTempRet0'"
|
43
|
+
fi
|
44
|
+
|
45
|
+
# Rename main functions to test__filename so we can link them together
|
46
|
+
ls *c | sed 's!\(.*\)\.c!sed -i "s/main/test__\1/g" \0!g' | bash
|
47
|
+
|
48
|
+
# Compile
|
49
|
+
ls *.c | sed 's/\(.*\)\.c/emcc $CFLAGS -c \1.c -o \1.o /g' | bash
|
50
|
+
ls *.cc | sed 's/\(.*\)\.cc/em++ $CXXFLAGS -c \1.cc -o \1.o /g' | bash
|
51
|
+
|
52
|
+
# Link
|
53
|
+
em++ $LDFLAGS *.o -o test.js
|
54
|
+
cp ../emscripten/test.html .
|
@@ -0,0 +1,63 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
command -v emcc >/dev/null 2>&1 || {
|
3
|
+
echo >&2 "emsdk could not be found. Aborting."
|
4
|
+
exit 1
|
5
|
+
}
|
6
|
+
|
7
|
+
set -e
|
8
|
+
|
9
|
+
SOURCE_DIR=$PWD
|
10
|
+
|
11
|
+
# Working directories
|
12
|
+
TARGET=$SOURCE_DIR/target
|
13
|
+
mkdir -p "$TARGET"
|
14
|
+
|
15
|
+
# Define default arguments
|
16
|
+
|
17
|
+
# JS BigInt to Wasm i64 integration, disabled by default
|
18
|
+
# This needs to test false if there exists an environment variable called
|
19
|
+
# WASM_BIGINT whose contents are empty. Don't use +x.
|
20
|
+
if [ -n "${WASM_BIGINT}" ]; then
|
21
|
+
WASM_BIGINT=true
|
22
|
+
else
|
23
|
+
WASM_BIGINT=false
|
24
|
+
fi
|
25
|
+
|
26
|
+
# Parse arguments
|
27
|
+
while [ $# -gt 0 ]; do
|
28
|
+
case $1 in
|
29
|
+
--wasm-bigint) WASM_BIGINT=true ;;
|
30
|
+
--debug) DEBUG=true ;;
|
31
|
+
*)
|
32
|
+
echo "ERROR: Unknown parameter: $1" >&2
|
33
|
+
exit 1
|
34
|
+
;;
|
35
|
+
esac
|
36
|
+
shift
|
37
|
+
done
|
38
|
+
|
39
|
+
# Common compiler flags
|
40
|
+
export CFLAGS="-O3 -fPIC"
|
41
|
+
if [ "$WASM_BIGINT" = "true" ]; then
|
42
|
+
# We need to detect WASM_BIGINT support at compile time
|
43
|
+
export CFLAGS+=" -DWASM_BIGINT"
|
44
|
+
fi
|
45
|
+
if [ "$DEBUG" = "true" ]; then
|
46
|
+
export CFLAGS+=" -DDEBUG_F"
|
47
|
+
fi
|
48
|
+
export CXXFLAGS="$CFLAGS"
|
49
|
+
|
50
|
+
# Build paths
|
51
|
+
export CPATH="$TARGET/include"
|
52
|
+
export PKG_CONFIG_PATH="$TARGET/lib/pkgconfig"
|
53
|
+
export EM_PKG_CONFIG_PATH="$PKG_CONFIG_PATH"
|
54
|
+
|
55
|
+
# Specific variables for cross-compilation
|
56
|
+
export CHOST="wasm32-unknown-linux" # wasm32-unknown-emscripten
|
57
|
+
|
58
|
+
autoreconf -fiv
|
59
|
+
emconfigure ./configure --host=$CHOST --prefix="$TARGET" --enable-static --disable-shared --disable-dependency-tracking \
|
60
|
+
--disable-builddir --disable-multi-os-directory --disable-raw-api --disable-docs
|
61
|
+
make install
|
62
|
+
cp fficonfig.h target/include/
|
63
|
+
cp include/ffi_common.h target/include/
|
@@ -0,0 +1,80 @@
|
|
1
|
+
from pathlib import Path
|
2
|
+
from pytest import fixture
|
3
|
+
from pytest_pyodide.server import spawn_web_server
|
4
|
+
from pytest_pyodide import runner
|
5
|
+
|
6
|
+
TEST_PATH = Path(__file__).parents[1].resolve()
|
7
|
+
|
8
|
+
|
9
|
+
class BaseRunner(runner._BrowserBaseRunner):
|
10
|
+
def __init__(
|
11
|
+
self,
|
12
|
+
*args,
|
13
|
+
test_dir,
|
14
|
+
**kwargs,
|
15
|
+
):
|
16
|
+
self.test_dir = test_dir
|
17
|
+
super().__init__(
|
18
|
+
*args,
|
19
|
+
**kwargs,
|
20
|
+
load_pyodide=False,
|
21
|
+
)
|
22
|
+
|
23
|
+
def prepare_driver(self):
|
24
|
+
self.base_url = (
|
25
|
+
f"http://{self.server_hostname}:{self.server_port}/{self.test_dir}/"
|
26
|
+
)
|
27
|
+
self.goto(f"{self.base_url}/test.html")
|
28
|
+
|
29
|
+
def javascript_setup(self):
|
30
|
+
self.run_js("globalThis.TestModule = await globalThis.Module();")
|
31
|
+
|
32
|
+
|
33
|
+
class FirefoxRunner(BaseRunner, runner.SeleniumFirefoxRunner):
|
34
|
+
pass
|
35
|
+
|
36
|
+
|
37
|
+
class ChromeRunner(BaseRunner, runner.SeleniumChromeRunner):
|
38
|
+
pass
|
39
|
+
|
40
|
+
|
41
|
+
# TODO: Figure out how to get NodeRunner to work.
|
42
|
+
|
43
|
+
RUNNER_DICT = {x.browser: x for x in [FirefoxRunner, ChromeRunner]}
|
44
|
+
|
45
|
+
|
46
|
+
@fixture(params=list(RUNNER_DICT), scope="class")
|
47
|
+
def selenium_class_scope(request, web_server_main):
|
48
|
+
server_hostname, server_port, server_log = web_server_main
|
49
|
+
assert request.param in RUNNER_DICT
|
50
|
+
cls = RUNNER_DICT[request.param]
|
51
|
+
selenium = cls(
|
52
|
+
test_dir=request.cls.TEST_BUILD_DIR,
|
53
|
+
server_port=server_port,
|
54
|
+
server_hostname=server_hostname,
|
55
|
+
server_log=server_log,
|
56
|
+
)
|
57
|
+
request.cls.call_number = 0
|
58
|
+
try:
|
59
|
+
yield selenium
|
60
|
+
finally:
|
61
|
+
print(selenium.logs)
|
62
|
+
selenium.driver.quit()
|
63
|
+
|
64
|
+
|
65
|
+
@fixture(scope="function")
|
66
|
+
def selenium(selenium_class_scope, request):
|
67
|
+
selenium = selenium_class_scope
|
68
|
+
request.cls.call_number += 1
|
69
|
+
# Refresh page every 50 calls to prevent firefox out of memory errors
|
70
|
+
if request.cls.call_number % 50 == 0:
|
71
|
+
selenium.driver.refresh()
|
72
|
+
selenium.javascript_setup()
|
73
|
+
selenium.clean_logs()
|
74
|
+
yield selenium
|
75
|
+
|
76
|
+
|
77
|
+
@fixture(scope="session")
|
78
|
+
def web_server_main(request):
|
79
|
+
with spawn_web_server(TEST_PATH) as output:
|
80
|
+
yield output
|
@@ -0,0 +1,48 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
# JS BigInt to Wasm i64 integration, disabled by default
|
4
|
+
WASM_BIGINT=false
|
5
|
+
|
6
|
+
emcc_exists="$(command -v emcc)"
|
7
|
+
if [ ! "${emcc_exists}" ]; then
|
8
|
+
echo "Emscripten not on path"
|
9
|
+
exit 1
|
10
|
+
fi
|
11
|
+
|
12
|
+
# Parse arguments
|
13
|
+
while [ $# -gt 0 ]; do
|
14
|
+
case $1 in
|
15
|
+
--wasm-bigint) WASM_BIGINT=true ;;
|
16
|
+
*)
|
17
|
+
echo "ERROR: Unknown parameter: $1" >&2
|
18
|
+
exit 1
|
19
|
+
;;
|
20
|
+
esac
|
21
|
+
shift
|
22
|
+
done
|
23
|
+
|
24
|
+
# Common compiler flags
|
25
|
+
export CFLAGS="-fPIC $EXTRA_CFLAGS"
|
26
|
+
if [ "$WASM_BIGINT" = "true" ]; then
|
27
|
+
# We need to detect WASM_BIGINT support at compile time
|
28
|
+
export CFLAGS+=" -DWASM_BIGINT"
|
29
|
+
fi
|
30
|
+
export CXXFLAGS="$CFLAGS -sNO_DISABLE_EXCEPTION_CATCHING $EXTRA_CXXFLAGS"
|
31
|
+
export LDFLAGS="-sEXPORTED_FUNCTIONS=_main,_malloc,_free -sALLOW_TABLE_GROWTH -sASSERTIONS -sNO_DISABLE_EXCEPTION_CATCHING"
|
32
|
+
if [ "$WASM_BIGINT" = "true" ]; then
|
33
|
+
export LDFLAGS+=" -sWASM_BIGINT"
|
34
|
+
else
|
35
|
+
export LDFLAGS+=" -sEXPORTED_RUNTIME_METHODS='getTempRet0,setTempRet0'"
|
36
|
+
fi
|
37
|
+
|
38
|
+
# Specific variables for cross-compilation
|
39
|
+
export CHOST="wasm32-unknown-linux" # wasm32-unknown-emscripten
|
40
|
+
|
41
|
+
autoreconf -fiv
|
42
|
+
emconfigure ./configure --prefix="$(pwd)/target" --host=$CHOST --enable-static --disable-shared \
|
43
|
+
--disable-builddir --disable-multi-os-directory --disable-raw-api --disable-docs ||
|
44
|
+
(cat config.log && exit 1)
|
45
|
+
make
|
46
|
+
|
47
|
+
EMMAKEN_JUST_CONFIGURE=1 emmake make check \
|
48
|
+
RUNTESTFLAGS="LDFLAGS_FOR_TARGET='$LDFLAGS'" || (cat testsuite/libffi.log && exit 1)
|
@@ -0,0 +1,51 @@
|
|
1
|
+
import subprocess
|
2
|
+
import pathlib
|
3
|
+
import pytest
|
4
|
+
|
5
|
+
TEST_PATH = pathlib.Path(__file__).parents[1].resolve()
|
6
|
+
|
7
|
+
xfails = {}
|
8
|
+
|
9
|
+
|
10
|
+
def libffi_tests(self, selenium, libffi_test):
|
11
|
+
if libffi_test in xfails:
|
12
|
+
pytest.xfail(f'known failure with code "{xfails[libffi_test]}"')
|
13
|
+
res = selenium.run_js(
|
14
|
+
"""
|
15
|
+
window.TestModule = await Module();
|
16
|
+
"""
|
17
|
+
)
|
18
|
+
selenium.run_js(
|
19
|
+
f"""
|
20
|
+
try {{
|
21
|
+
TestModule._test__{libffi_test}();
|
22
|
+
}} catch(e){{
|
23
|
+
if(e.name !== "ExitStatus"){{
|
24
|
+
throw e;
|
25
|
+
}}
|
26
|
+
if(e.status !== 0){{
|
27
|
+
throw new Error(`Terminated with nonzero status code ${{e.status}}: ` + e.message);
|
28
|
+
}}
|
29
|
+
}}
|
30
|
+
"""
|
31
|
+
)
|
32
|
+
|
33
|
+
|
34
|
+
class TestCall:
|
35
|
+
TEST_BUILD_DIR = "libffi.call.test"
|
36
|
+
test_call = libffi_tests
|
37
|
+
|
38
|
+
|
39
|
+
class TestClosures:
|
40
|
+
TEST_BUILD_DIR = "libffi.closures.test"
|
41
|
+
test_closures = libffi_tests
|
42
|
+
|
43
|
+
|
44
|
+
def pytest_generate_tests(metafunc):
|
45
|
+
test_build_dir = metafunc.cls.TEST_BUILD_DIR
|
46
|
+
test_names = [x.stem for x in (TEST_PATH / test_build_dir).glob("*.o")]
|
47
|
+
metafunc.parametrize("libffi_test", test_names)
|
48
|
+
|
49
|
+
|
50
|
+
if __name__ == "__main__":
|
51
|
+
subprocess.call(["build-tests.sh", "libffi.call"])
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2003, 2005, 2008, 2009, 2010, 2011, 2014 Free Software Foundation, Inc.
|
1
|
+
# Copyright (C) 2003, 2005, 2008, 2009, 2010, 2011, 2014, 2019, 2022 Free Software Foundation, Inc.
|
2
2
|
|
3
3
|
# This program is free software; you can redistribute it and/or modify
|
4
4
|
# it under the terms of the GNU General Public License as published by
|
@@ -45,7 +45,7 @@ proc is-effective-target { arg } {
|
|
45
45
|
if { [info procs check_effective_target_${arg}] != [list] } {
|
46
46
|
set selected [check_effective_target_${arg}]
|
47
47
|
} else {
|
48
|
-
error "unknown effective target keyword `$arg'"
|
48
|
+
error "unknown effective target keyword `$arg'"
|
49
49
|
}
|
50
50
|
verbose "is-effective-target: $arg $selected" 2
|
51
51
|
return $selected
|
@@ -196,7 +196,7 @@ if { [info procs saved-dg-process-target] == [list] } {
|
|
196
196
|
return "N"
|
197
197
|
}
|
198
198
|
return [dg-process-target-1 $xfail_selector]
|
199
|
-
|
199
|
+
|
200
200
|
}
|
201
201
|
return [dg-process-target-1 $selector]
|
202
202
|
}
|
@@ -221,6 +221,13 @@ proc libffi-dg-test-1 { target_compile prog do_what extra_tool_flags } {
|
|
221
221
|
set output_match [lreplace $output_match 1 1 $x]
|
222
222
|
}
|
223
223
|
|
224
|
+
if { [ istarget "wasm32-*-*" ] } {
|
225
|
+
# emscripten will get confused if told to build as .exe
|
226
|
+
set exec_suffix ""
|
227
|
+
} else {
|
228
|
+
set exec_suffix ".exe"
|
229
|
+
}
|
230
|
+
|
224
231
|
# Set up the compiler flags, based on what we're going to do.
|
225
232
|
|
226
233
|
set options [list]
|
@@ -231,7 +238,7 @@ proc libffi-dg-test-1 { target_compile prog do_what extra_tool_flags } {
|
|
231
238
|
}
|
232
239
|
"link" {
|
233
240
|
set compile_type "executable"
|
234
|
-
set output_file "[file rootname [file tail $prog]]
|
241
|
+
set output_file "[file rootname [file tail $prog]]$exec_suffix"
|
235
242
|
# The following line is needed for targets like the i960 where
|
236
243
|
# the default output file is b.out. Sigh.
|
237
244
|
}
|
@@ -240,7 +247,7 @@ proc libffi-dg-test-1 { target_compile prog do_what extra_tool_flags } {
|
|
240
247
|
# FIXME: "./" is to cope with "." not being in $PATH.
|
241
248
|
# Should this be handled elsewhere?
|
242
249
|
# YES.
|
243
|
-
set output_file "./[file rootname [file tail $prog]]
|
250
|
+
set output_file "./[file rootname [file tail $prog]]$exec_suffix"
|
244
251
|
# This is the only place where we care if an executable was
|
245
252
|
# created or not. If it was, dg.exp will try to run it.
|
246
253
|
remote_file build delete $output_file;
|
@@ -266,6 +273,16 @@ proc libffi-dg-test { prog do_what extra_tool_flags } {
|
|
266
273
|
return [libffi-dg-test-1 target_compile $prog $do_what $extra_tool_flags]
|
267
274
|
}
|
268
275
|
|
276
|
+
proc libffi-dg-prune { target_triplet text } {
|
277
|
+
# We get this with some qemu emulated systems (eg. ppc64le-linux-gnu)
|
278
|
+
regsub -all "(^|\n)\[^\n\]*unable to perform all requested operations" $text "" text
|
279
|
+
# We get this from sparc64 linux systems
|
280
|
+
regsub -all "(^|\n)\[^\n\]*warning: .* has a LOAD segment with RWX permissions" $text "" text
|
281
|
+
# Ignore Emscripten INFO messages
|
282
|
+
regsub -all "(^|\n)(cache|shared):INFO:\[^\n\]*" $text "" text
|
283
|
+
return $text
|
284
|
+
}
|
285
|
+
|
269
286
|
proc libffi-init { args } {
|
270
287
|
global gluefile wrap_flags;
|
271
288
|
global srcdir
|
@@ -286,9 +303,6 @@ proc libffi-init { args } {
|
|
286
303
|
verbose "libffi $blddirffi"
|
287
304
|
|
288
305
|
# Which compiler are we building with?
|
289
|
-
set tmp [grep "$blddirffi/config.log" "^ax_cv_c_compiler_vendor.*$"]
|
290
|
-
regexp -- {^[^=]*=(.*)$} $tmp nil compiler_vendor
|
291
|
-
|
292
306
|
if { [string match $compiler_vendor "gnu"] } {
|
293
307
|
set gccdir [lookfor_file $tool_root_dir gcc/libgcc.a]
|
294
308
|
if {$gccdir != ""} {
|
@@ -373,7 +387,9 @@ proc libffi_target_compile { source dest type options } {
|
|
373
387
|
|
374
388
|
if { [istarget "*-*-darwin9*"] || [istarget "*-*-darwin1*"]
|
375
389
|
|| [istarget "*-*-darwin2*"] } {
|
376
|
-
lappend options "additional_flags=-Wl,-allow_stack_execute"
|
390
|
+
# lappend options "additional_flags=-Wl,-allow_stack_execute"
|
391
|
+
lappend options "additional_flags=-Wno-unused-command-line-argument"
|
392
|
+
lappend options "additional_flags=-Wl,-search_paths_first"
|
377
393
|
}
|
378
394
|
|
379
395
|
# If you're building the compiler with --prefix set to a place
|
@@ -391,17 +407,29 @@ proc libffi_target_compile { source dest type options } {
|
|
391
407
|
|
392
408
|
lappend options "libs= -lffi"
|
393
409
|
|
394
|
-
if { [string match "
|
395
|
-
lappend options "libs= -lpthread"
|
396
|
-
}
|
410
|
+
if { ![string match "*android*" $target_triplet] } {
|
397
411
|
|
398
|
-
|
399
|
-
|
400
|
-
|
412
|
+
if { [string match "aarch64*-*-linux*" $target_triplet] } {
|
413
|
+
lappend options "libs= -lpthread"
|
414
|
+
}
|
415
|
+
|
416
|
+
# this may be required for g++, but just confused clang.
|
417
|
+
if { [string match "*.cc" $source] } {
|
418
|
+
lappend options "c++"
|
419
|
+
if { [string match "*-*-darwin*" $target_triplet] } {
|
420
|
+
lappend options "libs= -lc++"
|
421
|
+
}
|
422
|
+
}
|
423
|
+
|
424
|
+
if { [string match "arc*-*-linux*" $target_triplet] } {
|
425
|
+
lappend options "libs= -lpthread"
|
426
|
+
}
|
401
427
|
}
|
402
428
|
|
403
|
-
|
404
|
-
|
429
|
+
# emscripten emits this warning while building the feature test
|
430
|
+
# which causes it to be seen as unsupported.
|
431
|
+
if { [string match "wasm32-*" $target_triplet] } {
|
432
|
+
lappend options "additional_flags=-Wno-unused-command-line-argument"
|
405
433
|
}
|
406
434
|
|
407
435
|
verbose "options: $options"
|
@@ -477,22 +505,37 @@ proc libffi-dg-runtest { testcases default-extra-flags } {
|
|
477
505
|
proc run-many-tests { testcases extra_flags } {
|
478
506
|
global compiler_vendor
|
479
507
|
global has_gccbug
|
508
|
+
global env
|
480
509
|
switch $compiler_vendor {
|
481
510
|
"clang" {
|
482
|
-
|
483
|
-
|
511
|
+
set common "-W -Wall"
|
512
|
+
if [info exists env(LIBFFI_TEST_OPTIMIZATION)] {
|
513
|
+
set optimizations [ list $env(LIBFFI_TEST_OPTIMIZATION) ]
|
514
|
+
} else {
|
515
|
+
set optimizations { "-O0" "-O2" }
|
516
|
+
}
|
484
517
|
}
|
485
518
|
"gnu" {
|
486
519
|
set common "-W -Wall -Wno-psabi"
|
487
|
-
|
520
|
+
if [info exists env(LIBFFI_TEST_OPTIMIZATION)] {
|
521
|
+
set optimizations [ list $env(LIBFFI_TEST_OPTIMIZATION) ]
|
522
|
+
} else {
|
523
|
+
set optimizations { "-O0" "-O2" }
|
524
|
+
}
|
488
525
|
}
|
489
526
|
default {
|
490
527
|
# Assume we are using the vendor compiler.
|
491
528
|
set common ""
|
492
|
-
|
529
|
+
if [info exists env(LIBFFI_TEST_OPTIMIZATION)] {
|
530
|
+
set optimizations [ list $env(LIBFFI_TEST_OPTIMIZATION) ]
|
531
|
+
} else {
|
532
|
+
set optimizations { "" }
|
533
|
+
}
|
493
534
|
}
|
494
535
|
}
|
495
536
|
|
537
|
+
info exists env(LD_LIBRARY_PATH)
|
538
|
+
|
496
539
|
set targetabis { "" }
|
497
540
|
if [string match $compiler_vendor "gnu"] {
|
498
541
|
if [libffi_feature_test "#ifdef __i386__"] {
|
@@ -532,10 +575,13 @@ proc run-many-tests { testcases extra_flags } {
|
|
532
575
|
&& [string match "*callback*" $testname] ) \
|
533
576
|
|| [string match "*DGTEST=55 *" $common] \
|
534
577
|
|| [string match "*DGTEST=56 *" $common] ) } then {
|
535
|
-
|
578
|
+
if [libffi_feature_test "#if (__GNUC__ < 9) || ((__GNUC__ == 9) && (__GNUC_MINOR__ < 3))"] {
|
579
|
+
set has_gccbug true;
|
580
|
+
}
|
536
581
|
}
|
537
|
-
|
538
|
-
|
582
|
+
verbose "Testing $testname, $options" 1
|
583
|
+
verbose "has_gccbug = $has_gccbug" 1
|
584
|
+
dg-test $test $options ""
|
539
585
|
}
|
540
586
|
}
|
541
587
|
}
|
@@ -571,7 +617,7 @@ proc check-flags { args } {
|
|
571
617
|
# compare them to the actual options.
|
572
618
|
if { [string compare [lindex $args 2] "*"] == 0
|
573
619
|
&& [string compare [lindex $args 3] "" ] == 0 } {
|
574
|
-
set result 1
|
620
|
+
set result 1
|
575
621
|
} else {
|
576
622
|
# The target list might be an effective-target keyword, so replace
|
577
623
|
# the original list with "*-*-*", since we already know it matches.
|
@@ -175,7 +175,7 @@ proc set_ld_library_path_env_vars { } {
|
|
175
175
|
} else {
|
176
176
|
setenv DYLD_LIBRARY_PATH "$ld_library_path"
|
177
177
|
}
|
178
|
-
if { [istarget *-*-cygwin*] || [istarget *-*-mingw*] } {
|
178
|
+
if { [istarget *-*-cygwin*] || [ istarget *-*-msys* ] || [istarget *-*-mingw*] } {
|
179
179
|
if { $orig_path_saved } {
|
180
180
|
setenv PATH "$ld_library_path:$orig_path"
|
181
181
|
} else {
|
@@ -271,7 +271,7 @@ proc get_shlib_extension { } {
|
|
271
271
|
|
272
272
|
if { [ istarget *-*-darwin* ] } {
|
273
273
|
set shlib_ext "dylib"
|
274
|
-
} elseif { [ istarget *-*-cygwin* ] || [ istarget *-*-mingw* ] } {
|
274
|
+
} elseif { [ istarget *-*-cygwin* ] || [ istarget *-*-msys* ] || [ istarget *-*-mingw* ] } {
|
275
275
|
set shlib_ext "dll"
|
276
276
|
} elseif { [ istarget hppa*-*-hpux* ] } {
|
277
277
|
set shlib_ext "sl"
|
@@ -19,7 +19,6 @@ libffi-init
|
|
19
19
|
|
20
20
|
global srcdir subdir
|
21
21
|
global compiler_vendor
|
22
|
-
global has_gccbug
|
23
22
|
|
24
23
|
# The conversion of this testsuite into a dejagnu compatible testsuite
|
25
24
|
# was done in a pretty lazy fashion, and requires the use of compiler
|
@@ -48,7 +47,13 @@ for {set i 1} {$i < 82} {incr i} {
|
|
48
47
|
set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/test-callback.c]]
|
49
48
|
|
50
49
|
for {set i 1} {$i < 81} {incr i} {
|
51
|
-
|
50
|
+
if { [libffi_feature_test "#if FFI_CLOSURES"] } {
|
51
|
+
run-many-tests $tlist [format "-DDGTEST=%d %s" $i $warning_options]
|
52
|
+
} else {
|
53
|
+
foreach test $tlist {
|
54
|
+
unsupported [format "%s -DDGTEST=%d %s" $test $i $warning_options]
|
55
|
+
}
|
56
|
+
}
|
52
57
|
}
|
53
58
|
|
54
59
|
dg-finish
|
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
This program is free software: you can redistribute it and/or modify
|
6
6
|
it under the terms of the GNU General Public License as published by
|
7
|
-
the Free Software Foundation; either version
|
7
|
+
the Free Software Foundation; either version 3 of the License, or
|
8
8
|
(at your option) any later version.
|
9
9
|
|
10
10
|
This program is distributed in the hope that it will be useful,
|
@@ -16,7 +16,7 @@
|
|
16
16
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
17
17
|
**/
|
18
18
|
|
19
|
-
/* { dg-do run { xfail gccbug } }*/
|
19
|
+
/* { dg-do run { xfail gccbug } } */
|
20
20
|
|
21
21
|
#include <stdio.h>
|
22
22
|
#include <stdlib.h>
|
@@ -50,6 +50,7 @@ int _fprintf(FILE *stream, const char *format, ...)
|
|
50
50
|
case 3:
|
51
51
|
vsprintf(&rbuf2[strlen(rbuf2)], format, args);
|
52
52
|
printf("%s", rbuf2);
|
53
|
+
fflush (stdout);
|
53
54
|
if (strcmp (rbuf1, rbuf2)) abort();
|
54
55
|
break;
|
55
56
|
}
|
@@ -1220,7 +1221,7 @@ void
|
|
1220
1221
|
}
|
1221
1222
|
fprintf(out,"->{%g}\n",Fr.x);
|
1222
1223
|
fflush(out);
|
1223
|
-
#endif
|
1224
|
+
#endif
|
1224
1225
|
#if (!defined(DGTEST)) || DGTEST == 56
|
1225
1226
|
Dr = D_fDd(f1,D2,d3);
|
1226
1227
|
fprintf(out,"->{%g}\n",Dr.x);
|
@@ -1243,7 +1244,7 @@ void
|
|
1243
1244
|
}
|
1244
1245
|
fprintf(out,"->{%g}\n",Dr.x);
|
1245
1246
|
fflush(out);
|
1246
|
-
#endif
|
1247
|
+
#endif
|
1247
1248
|
#if (!defined(DGTEST)) || DGTEST == 57
|
1248
1249
|
Dr = D_Dfd(D1,f2,d3);
|
1249
1250
|
fprintf(out,"->{%g}\n",Dr.x);
|
@@ -4,7 +4,7 @@
|
|
4
4
|
*
|
5
5
|
* This program is free software: you can redistribute it and/or modify
|
6
6
|
* it under the terms of the GNU General Public License as published by
|
7
|
-
* the Free Software Foundation; either version
|
7
|
+
* the Free Software Foundation; either version 3 of the License, or
|
8
8
|
* (at your option) any later version.
|
9
9
|
*
|
10
10
|
* This program is distributed in the hope that it will be useful,
|
@@ -16,7 +16,7 @@
|
|
16
16
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
17
17
|
*/
|
18
18
|
|
19
|
-
/* { dg-do run { xfail gccbug } }*/
|
19
|
+
/* { dg-do run { xfail gccbug } } */
|
20
20
|
|
21
21
|
#include <stdio.h>
|
22
22
|
#include <stdlib.h>
|
@@ -64,7 +64,11 @@ typedef struct {
|
|
64
64
|
typedef struct { char c[3]; } T;
|
65
65
|
typedef struct { char c[33],c1; } X;
|
66
66
|
|
67
|
-
|
67
|
+
/* Don't use a number over 127, as some systems use signed chars and
|
68
|
+
the test case 25 doesn't account for this, resulting in undefined
|
69
|
+
behavior. See https://github.com/libffi/libffi/issues/598. */
|
70
|
+
char c1='a', c2=127, c3=(char)1;
|
71
|
+
|
68
72
|
short s1=32767, s2=(short)32768, s3=3, s4=4, s5=5, s6=6, s7=7, s8=8, s9=9;
|
69
73
|
int i1=1, i2=2, i3=3, i4=4, i5=5, i6=6, i7=7, i8=8, i9=9,
|
70
74
|
i10=11, i11=12, i12=13, i13=14, i14=15, i15=16, i16=17;
|
@@ -0,0 +1,41 @@
|
|
1
|
+
/* Area: bpo-38748
|
2
|
+
Purpose: test for stdcall alignment problem
|
3
|
+
Source: github.com/python/cpython/pull/26204 */
|
4
|
+
|
5
|
+
/* { dg-do run } */
|
6
|
+
|
7
|
+
#include "ffitest.h"
|
8
|
+
#include "ffi_common.h"
|
9
|
+
|
10
|
+
static UINT32 ABI_ATTR align_arguments(UINT32 l1,
|
11
|
+
UINT64 l2)
|
12
|
+
{
|
13
|
+
return l1 + (UINT32) l2;
|
14
|
+
}
|
15
|
+
|
16
|
+
int main(void)
|
17
|
+
{
|
18
|
+
ffi_cif cif;
|
19
|
+
ffi_type *args[4] = {
|
20
|
+
&ffi_type_uint32,
|
21
|
+
&ffi_type_uint64
|
22
|
+
};
|
23
|
+
ffi_arg lr1, lr2;
|
24
|
+
UINT32 l1 = 1;
|
25
|
+
UINT64 l2 = 2;
|
26
|
+
void *values[2] = {&l1, &l2};
|
27
|
+
|
28
|
+
/* Initialize the cif */
|
29
|
+
CHECK(ffi_prep_cif(&cif, ABI_NUM, 2,
|
30
|
+
&ffi_type_uint32, args) == FFI_OK);
|
31
|
+
|
32
|
+
lr1 = align_arguments(l1, l2);
|
33
|
+
|
34
|
+
ffi_call(&cif, FFI_FN(align_arguments), &lr2, values);
|
35
|
+
|
36
|
+
if (lr1 == lr2)
|
37
|
+
printf("bpo-38748 arguments tests ok!\n");
|
38
|
+
else
|
39
|
+
CHECK(0);
|
40
|
+
exit(0);
|
41
|
+
}
|
@@ -32,10 +32,21 @@ if { [string match $compiler_vendor "microsoft"] } {
|
|
32
32
|
set additional_options "";
|
33
33
|
}
|
34
34
|
|
35
|
-
set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/*.
|
35
|
+
set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/*.c]]
|
36
36
|
|
37
37
|
run-many-tests $tlist $additional_options
|
38
38
|
|
39
|
+
set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/*.cc]]
|
40
|
+
|
41
|
+
# No C++ for or1k
|
42
|
+
if { [istarget "or1k-*-*"] } {
|
43
|
+
foreach test $tlist {
|
44
|
+
unsupported "$test"
|
45
|
+
}
|
46
|
+
} else {
|
47
|
+
run-many-tests $tlist $additional_options
|
48
|
+
}
|
49
|
+
|
39
50
|
dg-finish
|
40
51
|
|
41
52
|
# Local Variables:
|