ffi 1.15.5 → 1.17.0
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 +118 -0
- data/Gemfile +10 -3
- data/README.md +4 -3
- data/Rakefile +25 -10
- data/ext/ffi_c/AbstractMemory.c +99 -74
- data/ext/ffi_c/AbstractMemory.h +3 -2
- data/ext/ffi_c/ArrayType.c +51 -15
- data/ext/ffi_c/ArrayType.h +1 -0
- data/ext/ffi_c/Buffer.c +90 -33
- data/ext/ffi_c/Call.c +29 -12
- data/ext/ffi_c/Call.h +3 -2
- data/ext/ffi_c/DynamicLibrary.c +90 -27
- data/ext/ffi_c/Function.c +244 -98
- data/ext/ffi_c/Function.h +1 -0
- data/ext/ffi_c/FunctionInfo.c +81 -25
- data/ext/ffi_c/LastError.c +29 -11
- data/ext/ffi_c/MappedType.c +66 -23
- data/ext/ffi_c/MappedType.h +0 -2
- data/ext/ffi_c/MemoryPointer.c +36 -9
- data/ext/ffi_c/MethodHandle.c +3 -1
- data/ext/ffi_c/Pointer.c +82 -40
- data/ext/ffi_c/Pointer.h +1 -0
- data/ext/ffi_c/Struct.c +166 -84
- data/ext/ffi_c/Struct.h +7 -4
- data/ext/ffi_c/StructByValue.c +48 -16
- data/ext/ffi_c/StructLayout.c +130 -61
- data/ext/ffi_c/Type.c +120 -51
- data/ext/ffi_c/Type.h +3 -1
- data/ext/ffi_c/Types.c +8 -2
- data/ext/ffi_c/Types.h +0 -1
- data/ext/ffi_c/Variadic.c +71 -26
- data/ext/ffi_c/compat.h +22 -22
- data/ext/ffi_c/extconf.rb +19 -2
- data/ext/ffi_c/ffi.c +4 -0
- data/ext/ffi_c/libffi/.allow-ai-service +0 -0
- 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 +27 -9
- data/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
- data/ext/ffi_c/libffi/{.travis → .ci}/build-in-container.sh +4 -6
- data/ext/ffi_c/libffi/.ci/build.sh +124 -0
- data/ext/ffi_c/libffi/{.travis → .ci}/install.sh +14 -7
- data/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
- data/ext/ffi_c/libffi/{.travis → .ci}/site.exp +5 -3
- data/ext/ffi_c/libffi/.circleci/config.yml +156 -0
- data/ext/ffi_c/libffi/.github/workflows/build.yml +479 -0
- data/ext/ffi_c/libffi/.github/workflows/emscripten.yml +172 -0
- data/ext/ffi_c/libffi/.gitignore +10 -2
- data/ext/ffi_c/libffi/LICENSE +1 -1
- data/ext/ffi_c/libffi/Makefile.am +12 -5
- data/ext/ffi_c/libffi/Makefile.in +118 -51
- data/ext/ffi_c/libffi/README.md +150 -105
- data/ext/ffi_c/libffi/acinclude.m4 +10 -112
- data/ext/ffi_c/libffi/compile +348 -0
- data/ext/ffi_c/libffi/config.guess +623 -556
- data/ext/ffi_c/libffi/config.sub +75 -34
- data/ext/ffi_c/libffi/configure +4571 -3830
- data/ext/ffi_c/libffi/configure.ac +64 -28
- data/ext/ffi_c/libffi/configure.host +26 -7
- data/ext/ffi_c/libffi/doc/Makefile.in +9 -6
- data/ext/ffi_c/libffi/doc/libffi.texi +82 -33
- data/ext/ffi_c/libffi/doc/version.texi +4 -4
- data/ext/ffi_c/libffi/fficonfig.h.in +12 -47
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +163 -52
- data/ext/ffi_c/libffi/include/Makefile.am +1 -1
- data/ext/ffi_c/libffi/include/Makefile.in +10 -9
- data/ext/ffi_c/libffi/include/ffi.h.in +55 -60
- data/ext/ffi_c/libffi/include/ffi_cfi.h +21 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +33 -2
- data/ext/ffi_c/libffi/include/tramp.h +45 -0
- data/ext/ffi_c/libffi/install-sh +92 -69
- data/ext/ffi_c/libffi/libffi.map.in +5 -0
- data/ext/ffi_c/libffi/libtool-version +2 -2
- data/ext/ffi_c/libffi/ltmain.sh +518 -333
- 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_compiler_vendor.m4 +76 -45
- data/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
- data/ext/ffi_c/libffi/man/Makefile.in +9 -6
- data/ext/ffi_c/libffi/missing +1 -1
- data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +2 -2
- data/ext/ffi_c/libffi/msvcc.sh +1 -1
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +172 -55
- data/ext/ffi_c/libffi/src/aarch64/internal.h +32 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +331 -87
- 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 +62 -17
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +3 -3
- data/ext/ffi_c/libffi/src/arm/internal.h +10 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +113 -42
- data/ext/ffi_c/libffi/src/closures.c +136 -50
- data/ext/ffi_c/libffi/src/debug.c +2 -2
- data/ext/ffi_c/libffi/src/dlmalloc.c +6 -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/loongarch64/ffi.c +624 -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/mips/ffi.c +250 -67
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +7 -0
- data/ext/ffi_c/libffi/src/mips/n32.S +193 -33
- data/ext/ffi_c/libffi/src/mips/o32.S +61 -4
- data/ext/ffi_c/libffi/src/moxie/ffi.c +47 -22
- data/ext/ffi_c/libffi/src/or1k/ffi.c +25 -12
- data/ext/ffi_c/libffi/src/pa/ffi.c +32 -33
- data/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +22 -8
- data/ext/ffi_c/libffi/src/pa/hpux32.S +83 -36
- data/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
- data/ext/ffi_c/libffi/src/pa/linux.S +82 -35
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +36 -24
- data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1 -1
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +2 -0
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +2 -0
- data/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
- data/ext/ffi_c/libffi/src/prep_cif.c +22 -2
- data/ext/ffi_c/libffi/src/riscv/ffi.c +37 -4
- data/ext/ffi_c/libffi/src/sparc/ffi64.c +23 -1
- data/ext/ffi_c/libffi/src/tramp.c +716 -0
- data/ext/ffi_c/libffi/src/types.c +4 -6
- data/ext/ffi_c/libffi/src/wasm32/ffi.c +947 -0
- data/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +99 -37
- data/ext/ffi_c/libffi/src/x86/ffi64.c +67 -12
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +9 -5
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +44 -1
- 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 +172 -38
- data/ext/ffi_c/libffi/src/x86/sysv_intel.S +91 -88
- data/ext/ffi_c/libffi/src/x86/unix64.S +96 -6
- data/ext/ffi_c/libffi/src/x86/win64.S +20 -7
- 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 +79 -114
- data/ext/ffi_c/libffi/testsuite/Makefile.in +89 -121
- 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 +86 -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 +43 -21
- data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1 -0
- 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/callback.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/callback2.c +108 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/callback3.c +114 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/callback4.c +119 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +28 -3
- 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_fn0.c +3 -2
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +21 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +7 -6
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +6 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +18 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +22 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +24 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +29 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +21 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +35 -3
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +19 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +18 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +22 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +29 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +24 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +28 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +24 -2
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +39 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +25 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +14 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +14 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +14 -2
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +20 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +40 -25
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +40 -3
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +18 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +18 -3
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +18 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +18 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +3 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +9 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +11 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +22 -3
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +5 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +6 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +6 -2
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +5 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +1 -138
- data/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +21 -21
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +32 -9
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +12 -0
- data/ext/ffi_c/libffi/testsuite/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.closures/nested_struct2.c +10 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +10 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +9 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +9 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +9 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +11 -0
- data/ext/ffi_c/libffi/testsuite/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.closures/stret_medium.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +6 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +2 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +1 -0
- data/ext/ffi_c/libffi.bsd.mk +2 -2
- data/ext/ffi_c/libffi.darwin.mk +2 -2
- data/ext/ffi_c/libffi.gnu.mk +2 -2
- data/ext/ffi_c/rbffi.h +1 -1
- data/ffi.gemspec +3 -3
- data/lib/ffi/autopointer.rb +8 -31
- data/lib/ffi/compat.rb +43 -0
- data/lib/ffi/data_converter.rb +2 -2
- data/lib/ffi/dynamic_library.rb +118 -0
- data/lib/ffi/enum.rb +18 -12
- data/lib/ffi/ffi.rb +3 -0
- data/lib/ffi/function.rb +71 -0
- data/lib/ffi/io.rb +2 -2
- data/lib/ffi/library.rb +72 -88
- data/lib/ffi/library_path.rb +109 -0
- data/lib/ffi/managedstruct.rb +1 -1
- data/lib/ffi/platform/aarch64-linux/types.conf +74 -3
- data/lib/ffi/platform/aarch64-windows/types.conf +52 -0
- 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/loongarch64-linux/types.conf +141 -0
- data/lib/ffi/platform/sw_64-linux/types.conf +141 -0
- data/lib/ffi/platform.rb +15 -13
- data/lib/ffi/pointer.rb +6 -6
- data/lib/ffi/struct.rb +6 -5
- data/lib/ffi/struct_layout.rb +3 -3
- data/lib/ffi/struct_layout_builder.rb +9 -9
- data/lib/ffi/types.rb +65 -37
- data/lib/ffi/variadic.rb +19 -8
- data/lib/ffi/version.rb +1 -1
- data/samples/hello_ractor.rb +11 -0
- data/samples/qsort_ractor.rb +28 -0
- data/sig/ffi/abstract_memory.rbs +165 -0
- data/sig/ffi/auto_pointer.rbs +27 -0
- data/sig/ffi/buffer.rbs +18 -0
- data/sig/ffi/data_converter.rbs +10 -0
- data/sig/ffi/dynamic_library.rbs +9 -0
- data/sig/ffi/enum.rbs +38 -0
- data/sig/ffi/function.rbs +39 -0
- data/sig/ffi/library.rbs +42 -0
- data/sig/ffi/native_type.rbs +86 -0
- data/sig/ffi/pointer.rbs +42 -0
- data/sig/ffi/struct.rbs +76 -0
- data/sig/ffi/struct_by_reference.rbs +11 -0
- data/sig/ffi/struct_by_value.rbs +7 -0
- data/sig/ffi/struct_layout.rbs +9 -0
- data/sig/ffi/struct_layout_builder.rbs +5 -0
- data/sig/ffi/type.rbs +39 -0
- data/sig/ffi.rbs +26 -0
- data.tar.gz.sig +0 -0
- metadata +122 -28
- metadata.gz.sig +1 -0
- data/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +0 -14
- data/ext/ffi_c/libffi/.travis/build.sh +0 -142
- data/ext/ffi_c/libffi/.travis.yml +0 -83
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar_va.c +0 -44
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort_va.c +0 -44
- /data/ext/ffi_c/libffi/{.travis → .ci}/ar-lib +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/bfin-sim.exp +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/compile +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/m32r-sim.exp +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/moxie-sim.exp +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/or1k-sim.exp +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/powerpc-eabisim.exp +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/wine-sim.exp +0 -0
- /data/ext/ffi_c/libffi/testsuite/libffi.call/{pyobjc-tc.c → pyobjc_tc.c} +0 -0
- /data/lib/ffi/platform/{sparc64-linux → sparcv9-linux}/types.conf +0 -0
@@ -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,86 @@
|
|
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
|
+
import logging
|
7
|
+
|
8
|
+
TEST_PATH = Path(__file__).parents[1].resolve()
|
9
|
+
|
10
|
+
|
11
|
+
class BaseRunner(runner._BrowserBaseRunner):
|
12
|
+
def __init__(
|
13
|
+
self,
|
14
|
+
*args,
|
15
|
+
test_dir,
|
16
|
+
**kwargs,
|
17
|
+
):
|
18
|
+
self.test_dir = test_dir
|
19
|
+
super().__init__(
|
20
|
+
*args,
|
21
|
+
**kwargs,
|
22
|
+
load_pyodide=False,
|
23
|
+
)
|
24
|
+
|
25
|
+
def prepare_driver(self):
|
26
|
+
self.base_url = (
|
27
|
+
f"http://{self.server_hostname}:{self.server_port}/{self.test_dir}/"
|
28
|
+
)
|
29
|
+
self.goto(f"{self.base_url}/test.html")
|
30
|
+
|
31
|
+
def javascript_setup(self):
|
32
|
+
self.run_js("globalThis.TestModule = await globalThis.Module();")
|
33
|
+
|
34
|
+
|
35
|
+
class FirefoxRunner(BaseRunner, runner.SeleniumFirefoxRunner):
|
36
|
+
pass
|
37
|
+
|
38
|
+
|
39
|
+
class ChromeRunner(BaseRunner, runner.SeleniumChromeRunner):
|
40
|
+
pass
|
41
|
+
|
42
|
+
|
43
|
+
# TODO: Figure out how to get NodeRunner to work.
|
44
|
+
|
45
|
+
RUNNER_DICT = {x.browser: x for x in [FirefoxRunner, ChromeRunner]}
|
46
|
+
|
47
|
+
|
48
|
+
@fixture(params=list(RUNNER_DICT), scope="class")
|
49
|
+
def selenium_class_scope(request, web_server_main):
|
50
|
+
server_hostname, server_port, server_log = web_server_main
|
51
|
+
assert request.param in RUNNER_DICT
|
52
|
+
|
53
|
+
logger = logging.getLogger('selenium')
|
54
|
+
logger.setLevel(logging.DEBUG)
|
55
|
+
|
56
|
+
cls = RUNNER_DICT[request.param]
|
57
|
+
selenium = cls(
|
58
|
+
test_dir=request.cls.TEST_BUILD_DIR,
|
59
|
+
server_port=server_port,
|
60
|
+
server_hostname=server_hostname,
|
61
|
+
server_log=server_log,
|
62
|
+
)
|
63
|
+
request.cls.call_number = 0
|
64
|
+
try:
|
65
|
+
yield selenium
|
66
|
+
finally:
|
67
|
+
print(selenium.logs)
|
68
|
+
selenium.driver.quit()
|
69
|
+
|
70
|
+
|
71
|
+
@fixture(scope="function")
|
72
|
+
def selenium(selenium_class_scope, request):
|
73
|
+
selenium = selenium_class_scope
|
74
|
+
request.cls.call_number += 1
|
75
|
+
# Refresh page every 50 calls to prevent firefox out of memory errors
|
76
|
+
if request.cls.call_number % 50 == 0:
|
77
|
+
selenium.driver.refresh()
|
78
|
+
selenium.javascript_setup()
|
79
|
+
selenium.clean_logs()
|
80
|
+
yield selenium
|
81
|
+
|
82
|
+
|
83
|
+
@fixture(scope="session")
|
84
|
+
def web_server_main(request):
|
85
|
+
with spawn_web_server(TEST_PATH) as output:
|
86
|
+
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, 2019 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;
|
@@ -269,6 +276,10 @@ proc libffi-dg-test { prog do_what extra_tool_flags } {
|
|
269
276
|
proc libffi-dg-prune { target_triplet text } {
|
270
277
|
# We get this with some qemu emulated systems (eg. ppc64le-linux-gnu)
|
271
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
|
272
283
|
return $text
|
273
284
|
}
|
274
285
|
|
@@ -292,9 +303,6 @@ proc libffi-init { args } {
|
|
292
303
|
verbose "libffi $blddirffi"
|
293
304
|
|
294
305
|
# Which compiler are we building with?
|
295
|
-
set tmp [grep "$blddirffi/config.log" "^ax_cv_c_compiler_vendor.*$"]
|
296
|
-
regexp -- {^[^=]*=(.*)$} $tmp nil compiler_vendor
|
297
|
-
|
298
306
|
if { [string match $compiler_vendor "gnu"] } {
|
299
307
|
set gccdir [lookfor_file $tool_root_dir gcc/libgcc.a]
|
300
308
|
if {$gccdir != ""} {
|
@@ -379,7 +387,9 @@ proc libffi_target_compile { source dest type options } {
|
|
379
387
|
|
380
388
|
if { [istarget "*-*-darwin9*"] || [istarget "*-*-darwin1*"]
|
381
389
|
|| [istarget "*-*-darwin2*"] } {
|
382
|
-
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"
|
383
393
|
}
|
384
394
|
|
385
395
|
# If you're building the compiler with --prefix set to a place
|
@@ -397,17 +407,29 @@ proc libffi_target_compile { source dest type options } {
|
|
397
407
|
|
398
408
|
lappend options "libs= -lffi"
|
399
409
|
|
400
|
-
if { [string match "
|
401
|
-
|
402
|
-
|
410
|
+
if { ![string match "*android*" $target_triplet] } {
|
411
|
+
|
412
|
+
if { [string match "aarch64*-*-linux*" $target_triplet] } {
|
413
|
+
lappend options "libs= -lpthread"
|
414
|
+
}
|
403
415
|
|
404
|
-
|
405
|
-
|
406
|
-
|
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
|
+
}
|
407
427
|
}
|
408
428
|
|
409
|
-
|
410
|
-
|
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"
|
411
433
|
}
|
412
434
|
|
413
435
|
verbose "options: $options"
|
@@ -489,7 +511,7 @@ proc run-many-tests { testcases extra_flags } {
|
|
489
511
|
set common "-W -Wall"
|
490
512
|
if [info exists env(LIBFFI_TEST_OPTIMIZATION)] {
|
491
513
|
set optimizations [ list $env(LIBFFI_TEST_OPTIMIZATION) ]
|
492
|
-
} else {
|
514
|
+
} else {
|
493
515
|
set optimizations { "-O0" "-O2" }
|
494
516
|
}
|
495
517
|
}
|
@@ -497,7 +519,7 @@ proc run-many-tests { testcases extra_flags } {
|
|
497
519
|
set common "-W -Wall -Wno-psabi"
|
498
520
|
if [info exists env(LIBFFI_TEST_OPTIMIZATION)] {
|
499
521
|
set optimizations [ list $env(LIBFFI_TEST_OPTIMIZATION) ]
|
500
|
-
} else {
|
522
|
+
} else {
|
501
523
|
set optimizations { "-O0" "-O2" }
|
502
524
|
}
|
503
525
|
}
|
@@ -506,7 +528,7 @@ proc run-many-tests { testcases extra_flags } {
|
|
506
528
|
set common ""
|
507
529
|
if [info exists env(LIBFFI_TEST_OPTIMIZATION)] {
|
508
530
|
set optimizations [ list $env(LIBFFI_TEST_OPTIMIZATION) ]
|
509
|
-
} else {
|
531
|
+
} else {
|
510
532
|
set optimizations { "" }
|
511
533
|
}
|
512
534
|
}
|
@@ -595,7 +617,7 @@ proc check-flags { args } {
|
|
595
617
|
# compare them to the actual options.
|
596
618
|
if { [string compare [lindex $args 2] "*"] == 0
|
597
619
|
&& [string compare [lindex $args 3] "" ] == 0 } {
|
598
|
-
set result 1
|
620
|
+
set result 1
|
599
621
|
} else {
|
600
622
|
# The target list might be an effective-target keyword, so replace
|
601
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"
|
@@ -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
|
+
}
|
@@ -0,0 +1,99 @@
|
|
1
|
+
/* Area: ffi_call
|
2
|
+
Purpose: Check structures with array and callback.
|
3
|
+
Limitations: none.
|
4
|
+
PR: none.
|
5
|
+
Originator: David Tenty <daltenty@ibm.com> */
|
6
|
+
|
7
|
+
/* { dg-do run } */
|
8
|
+
#include "ffitest.h"
|
9
|
+
|
10
|
+
int i=5;
|
11
|
+
|
12
|
+
void callback(void) { i++; }
|
13
|
+
|
14
|
+
typedef struct
|
15
|
+
{
|
16
|
+
unsigned char c1;
|
17
|
+
double s[2];
|
18
|
+
unsigned char c2;
|
19
|
+
} test_structure_12;
|
20
|
+
|
21
|
+
static test_structure_12 ABI_ATTR struct12 (test_structure_12 ts, void (*func)(void))
|
22
|
+
{
|
23
|
+
ts.c1 += 1;
|
24
|
+
ts.c2 += 1;
|
25
|
+
ts.s[0] += 1;
|
26
|
+
ts.s[1] += 1;
|
27
|
+
|
28
|
+
func();
|
29
|
+
return ts;
|
30
|
+
}
|
31
|
+
|
32
|
+
int main (void)
|
33
|
+
{
|
34
|
+
ffi_cif cif;
|
35
|
+
ffi_type *args[MAX_ARGS];
|
36
|
+
void *values[MAX_ARGS];
|
37
|
+
ffi_type ts12_type,ts12a_type;
|
38
|
+
ffi_type *ts12_type_elements[4];
|
39
|
+
ffi_type *ts12a_type_elements[3];
|
40
|
+
|
41
|
+
test_structure_12 ts12_arg;
|
42
|
+
void (*ptr)(void)=&callback;
|
43
|
+
|
44
|
+
test_structure_12 *ts12_result =
|
45
|
+
(test_structure_12 *) malloc (sizeof(test_structure_12));
|
46
|
+
|
47
|
+
ts12a_type.size = 0;
|
48
|
+
ts12a_type.alignment = 0;
|
49
|
+
ts12a_type.type = FFI_TYPE_STRUCT;
|
50
|
+
ts12a_type.elements = ts12a_type_elements;
|
51
|
+
ts12a_type_elements[0] = &ffi_type_double;
|
52
|
+
ts12a_type_elements[1] = &ffi_type_double;
|
53
|
+
ts12a_type_elements[2] = NULL;
|
54
|
+
|
55
|
+
ts12_type.size = 0;
|
56
|
+
ts12_type.alignment = 0;
|
57
|
+
ts12_type.type = FFI_TYPE_STRUCT;
|
58
|
+
ts12_type.elements = ts12_type_elements;
|
59
|
+
ts12_type_elements[0] = &ffi_type_uchar;
|
60
|
+
ts12_type_elements[1] = &ts12a_type;
|
61
|
+
ts12_type_elements[2] = &ffi_type_uchar;
|
62
|
+
ts12_type_elements[3] = NULL;
|
63
|
+
|
64
|
+
|
65
|
+
args[0] = &ts12_type;
|
66
|
+
args[1] = &ffi_type_pointer;
|
67
|
+
values[0] = &ts12_arg;
|
68
|
+
values[1] = &ptr;
|
69
|
+
|
70
|
+
CHECK(ffi_prep_cif(&cif, ABI_NUM, 2, &ts12_type, args) == FFI_OK);
|
71
|
+
|
72
|
+
ts12_arg.c1 = 5;
|
73
|
+
ts12_arg.c2 = 6;
|
74
|
+
ts12_arg.s[0] = 7.77;
|
75
|
+
ts12_arg.s[1] = 8.88;
|
76
|
+
|
77
|
+
printf ("%u\n", ts12_arg.c1);
|
78
|
+
printf ("%u\n", ts12_arg.c2);
|
79
|
+
printf ("%g\n", ts12_arg.s[0]);
|
80
|
+
printf ("%g\n", ts12_arg.s[1]);
|
81
|
+
printf ("%d\n", i);
|
82
|
+
|
83
|
+
ffi_call(&cif, FFI_FN(struct12), ts12_result, values);
|
84
|
+
|
85
|
+
printf ("%u\n", ts12_result->c1);
|
86
|
+
printf ("%u\n", ts12_result->c2);
|
87
|
+
printf ("%g\n", ts12_result->s[0]);
|
88
|
+
printf ("%g\n", ts12_result->s[1]);
|
89
|
+
printf ("%d\n", i);
|
90
|
+
CHECK(ts12_result->c1 == 5 + 1);
|
91
|
+
CHECK(ts12_result->c2 == 6 + 1);
|
92
|
+
CHECK(ts12_result->s[0] == 7.77 + 1);
|
93
|
+
CHECK(ts12_result->s[1] == 8.88 + 1);
|
94
|
+
CHECK(i == 5 + 1);
|
95
|
+
CHECK(ts12_type.size == sizeof(test_structure_12));
|
96
|
+
|
97
|
+
free (ts12_result);
|
98
|
+
exit(0);
|
99
|
+
}
|