ffi 1.15.5 → 1.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
@@ -5,7 +5,7 @@
|
|
5
5
|
Originator: <hos@tamanegi.org> 20031203 */
|
6
6
|
|
7
7
|
/* { dg-do run { xfail strongarm*-*-* xscale*-*-* } } */
|
8
|
-
/* { dg-options -mlong-double-128 { target powerpc64*-*-linux* } } */
|
8
|
+
/* { dg-options -mlong-double-128 { target powerpc64*-*-linux-gnu* } } */
|
9
9
|
|
10
10
|
#include "ffitest.h"
|
11
11
|
|
@@ -19,7 +19,7 @@ typedef struct cls_struct_align {
|
|
19
19
|
long double g;
|
20
20
|
} cls_struct_align;
|
21
21
|
|
22
|
-
cls_struct_align cls_struct_align_fn(
|
22
|
+
static cls_struct_align cls_struct_align_fn(
|
23
23
|
cls_struct_align a1,
|
24
24
|
cls_struct_align a2)
|
25
25
|
{
|
@@ -39,32 +39,34 @@ cls_struct_align cls_struct_align_fn(
|
|
39
39
|
a2.a, a2.b, a2.c, a2.d, a2.e, a2.f, a2.g,
|
40
40
|
r.a, r.b, r.c, r.d, r.e, r.f, r.g);
|
41
41
|
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
42
|
+
CHECK(a1.a == 1);
|
43
|
+
CHECK(a1.b == 2);
|
44
|
+
CHECK(a1.c == 3);
|
45
|
+
CHECK(a1.d == 4);
|
46
|
+
CHECK(a1.e == 5);
|
47
|
+
CHECK(a1.f == 6);
|
48
|
+
CHECK(a1.g == 7);
|
49
|
+
|
50
|
+
CHECK(a2.a == 8);
|
51
|
+
CHECK(a2.b == 9);
|
52
|
+
CHECK(a2.c == 10);
|
53
|
+
CHECK(a2.d == 11);
|
54
|
+
CHECK(a2.e == 12);
|
55
|
+
CHECK(a2.f == 13);
|
56
|
+
CHECK(a2.g == 14);
|
57
|
+
|
58
|
+
CHECK(r.a == 9);
|
59
|
+
CHECK(r.b == 11);
|
60
|
+
CHECK(r.c == 13);
|
61
|
+
CHECK(r.d == 15);
|
62
|
+
CHECK(r.e == 17);
|
63
|
+
CHECK(r.f == 19);
|
64
|
+
CHECK(r.g == 21);
|
63
65
|
return r;
|
64
66
|
}
|
65
67
|
|
66
68
|
static void
|
67
|
-
cls_struct_align_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
|
69
|
+
cls_struct_align_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
|
68
70
|
void* userdata __UNUSED__)
|
69
71
|
{
|
70
72
|
struct cls_struct_align a1, a2;
|
@@ -119,6 +121,13 @@ int main (void)
|
|
119
121
|
printf("res: %Lg %Lg %Lg %Lg %Lg %Lg %Lg\n", res_dbl.a, res_dbl.b,
|
120
122
|
res_dbl.c, res_dbl.d, res_dbl.e, res_dbl.f, res_dbl.g);
|
121
123
|
/* { dg-output "\nres: 9 11 13 15 17 19 21" } */
|
124
|
+
CHECK(res_dbl.a == 9);
|
125
|
+
CHECK(res_dbl.b == 11);
|
126
|
+
CHECK(res_dbl.c == 13);
|
127
|
+
CHECK(res_dbl.d == 15);
|
128
|
+
CHECK(res_dbl.e == 17);
|
129
|
+
CHECK(res_dbl.f == 19);
|
130
|
+
CHECK(res_dbl.g == 21);
|
122
131
|
|
123
132
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_align_gn, NULL, code) == FFI_OK);
|
124
133
|
|
@@ -127,6 +136,12 @@ int main (void)
|
|
127
136
|
printf("res: %Lg %Lg %Lg %Lg %Lg %Lg %Lg\n", res_dbl.a, res_dbl.b,
|
128
137
|
res_dbl.c, res_dbl.d, res_dbl.e, res_dbl.f, res_dbl.g);
|
129
138
|
/* { dg-output "\nres: 9 11 13 15 17 19 21" } */
|
130
|
-
|
139
|
+
CHECK(res_dbl.a == 9);
|
140
|
+
CHECK(res_dbl.b == 11);
|
141
|
+
CHECK(res_dbl.c == 13);
|
142
|
+
CHECK(res_dbl.d == 15);
|
143
|
+
CHECK(res_dbl.e == 17);
|
144
|
+
CHECK(res_dbl.f == 19);
|
145
|
+
CHECK(res_dbl.g == 21);
|
131
146
|
exit(0);
|
132
147
|
}
|
@@ -6,7 +6,7 @@
|
|
6
6
|
*/
|
7
7
|
|
8
8
|
/* { dg-do run { xfail strongarm*-*-* } } */
|
9
|
-
/* { dg-options -mlong-double-128 { target powerpc64*-*-linux* } } */
|
9
|
+
/* { dg-options -mlong-double-128 { target powerpc64*-*-linux-gnu* } } */
|
10
10
|
|
11
11
|
#include "ffitest.h"
|
12
12
|
|
@@ -20,7 +20,7 @@ typedef struct cls_struct_align {
|
|
20
20
|
long double g;
|
21
21
|
} cls_struct_align;
|
22
22
|
|
23
|
-
cls_struct_align cls_struct_align_fn(
|
23
|
+
static cls_struct_align cls_struct_align_fn(
|
24
24
|
cls_struct_align a1,
|
25
25
|
cls_struct_align a2)
|
26
26
|
{
|
@@ -40,6 +40,30 @@ cls_struct_align cls_struct_align_fn(
|
|
40
40
|
a2.a, a2.b, a2.c, a2.d, a2.e, a2.f, a2.g,
|
41
41
|
r.a, r.b, r.c, r.d, r.e, r.f, r.g);
|
42
42
|
|
43
|
+
CHECK(a1.a == 1);
|
44
|
+
CHECK(a1.b == 2);
|
45
|
+
CHECK(a1.c == 3);
|
46
|
+
CHECK(a1.d == 4);
|
47
|
+
CHECK(a1.e == 5);
|
48
|
+
CHECK(a1.f == 6);
|
49
|
+
CHECK(a1.g == 7);
|
50
|
+
|
51
|
+
CHECK(a2.a == 8);
|
52
|
+
CHECK(a2.b == 9);
|
53
|
+
CHECK(a2.c == 10);
|
54
|
+
CHECK(a2.d == 11);
|
55
|
+
CHECK(a2.e == 12);
|
56
|
+
CHECK(a2.f == 13);
|
57
|
+
CHECK(a2.g == 14);
|
58
|
+
|
59
|
+
CHECK(r.a == 9);
|
60
|
+
CHECK(r.b == 11);
|
61
|
+
CHECK(r.c == 13);
|
62
|
+
CHECK(r.d == 15);
|
63
|
+
CHECK(r.e == 17);
|
64
|
+
CHECK(r.f == 19);
|
65
|
+
CHECK(r.g == 21);
|
66
|
+
|
43
67
|
return r;
|
44
68
|
}
|
45
69
|
|
@@ -99,6 +123,13 @@ int main (void)
|
|
99
123
|
printf("res: %Lg %Lg %Lg %Lg %Lg %g %Lg\n", res_dbl.a, res_dbl.b,
|
100
124
|
res_dbl.c, res_dbl.d, res_dbl.e, res_dbl.f, res_dbl.g);
|
101
125
|
/* { dg-output "\nres: 9 11 13 15 17 19 21" } */
|
126
|
+
CHECK(res_dbl.a == 9);
|
127
|
+
CHECK(res_dbl.b == 11);
|
128
|
+
CHECK(res_dbl.c == 13);
|
129
|
+
CHECK(res_dbl.d == 15);
|
130
|
+
CHECK(res_dbl.e == 17);
|
131
|
+
CHECK(res_dbl.f == 19);
|
132
|
+
CHECK(res_dbl.g == 21);
|
102
133
|
|
103
134
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_align_gn, NULL, code) == FFI_OK);
|
104
135
|
|
@@ -107,7 +138,13 @@ int main (void)
|
|
107
138
|
printf("res: %Lg %Lg %Lg %Lg %Lg %g %Lg\n", res_dbl.a, res_dbl.b,
|
108
139
|
res_dbl.c, res_dbl.d, res_dbl.e, res_dbl.f, res_dbl.g);
|
109
140
|
/* { dg-output "\nres: 9 11 13 15 17 19 21" } */
|
110
|
-
|
141
|
+
CHECK(res_dbl.a == 9);
|
142
|
+
CHECK(res_dbl.b == 11);
|
143
|
+
CHECK(res_dbl.c == 13);
|
144
|
+
CHECK(res_dbl.d == 15);
|
145
|
+
CHECK(res_dbl.e == 17);
|
146
|
+
CHECK(res_dbl.f == 19);
|
147
|
+
CHECK(res_dbl.g == 21);
|
111
148
|
exit(0);
|
112
149
|
}
|
113
150
|
|
@@ -13,7 +13,7 @@ typedef struct cls_struct_align {
|
|
13
13
|
unsigned char c;
|
14
14
|
} cls_struct_align;
|
15
15
|
|
16
|
-
cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
16
|
+
static cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
17
17
|
struct cls_struct_align a2)
|
18
18
|
{
|
19
19
|
struct cls_struct_align result;
|
@@ -28,6 +28,18 @@ cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
|
28
28
|
result.a, (uintptr_t)result.b,
|
29
29
|
result.c);
|
30
30
|
|
31
|
+
CHECK(a1.a == 12);
|
32
|
+
CHECK(a1.b == (void *)4951);
|
33
|
+
CHECK(a1.c == 127);
|
34
|
+
|
35
|
+
CHECK(a2.a == 1);
|
36
|
+
CHECK(a2.b == (void *)9320);
|
37
|
+
CHECK(a2.c == 13);
|
38
|
+
|
39
|
+
CHECK(result.a == 13);
|
40
|
+
CHECK(result.b == (void *)14271);
|
41
|
+
CHECK(result.c == 140);
|
42
|
+
|
31
43
|
return result;
|
32
44
|
}
|
33
45
|
|
@@ -83,6 +95,9 @@ int main (void)
|
|
83
95
|
/* { dg-output "12 4951 127 1 9320 13: 13 14271 140" } */
|
84
96
|
printf("res: %d %" PRIuPTR " %d\n", res_dbl.a, (uintptr_t)res_dbl.b, res_dbl.c);
|
85
97
|
/* { dg-output "\nres: 13 14271 140" } */
|
98
|
+
CHECK(res_dbl.a == 13);
|
99
|
+
CHECK(res_dbl.b == (void *)14271);
|
100
|
+
CHECK(res_dbl.c == 140);
|
86
101
|
|
87
102
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_align_gn, NULL, code) == FFI_OK);
|
88
103
|
|
@@ -90,6 +105,9 @@ int main (void)
|
|
90
105
|
/* { dg-output "\n12 4951 127 1 9320 13: 13 14271 140" } */
|
91
106
|
printf("res: %d %" PRIuPTR " %d\n", res_dbl.a, (uintptr_t)res_dbl.b, res_dbl.c);
|
92
107
|
/* { dg-output "\nres: 13 14271 140" } */
|
108
|
+
CHECK(res_dbl.a == 13);
|
109
|
+
CHECK(res_dbl.b == (void *)14271);
|
110
|
+
CHECK(res_dbl.c == 140);
|
93
111
|
|
94
112
|
exit(0);
|
95
113
|
}
|
@@ -13,7 +13,7 @@ typedef struct cls_struct_align {
|
|
13
13
|
unsigned char c;
|
14
14
|
} cls_struct_align;
|
15
15
|
|
16
|
-
cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
16
|
+
static cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
17
17
|
struct cls_struct_align a2)
|
18
18
|
{
|
19
19
|
struct cls_struct_align result;
|
@@ -23,6 +23,17 @@ cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
|
23
23
|
result.c = a1.c + a2.c;
|
24
24
|
|
25
25
|
printf("%d %d %d %d %d %d: %d %d %d\n", a1.a, a1.b, a1.c, a2.a, a2.b, a2.c, result.a, result.b, result.c);
|
26
|
+
CHECK(a1.a == 12);
|
27
|
+
CHECK(a1.b == 4951);
|
28
|
+
CHECK(a1.c == 127);
|
29
|
+
|
30
|
+
CHECK(a2.a == 1);
|
31
|
+
CHECK(a2.b == 9320);
|
32
|
+
CHECK(a2.c == 13);
|
33
|
+
|
34
|
+
CHECK(result.a == 13);
|
35
|
+
CHECK(result.b == 14271);
|
36
|
+
CHECK(result.c == 140);
|
26
37
|
|
27
38
|
return result;
|
28
39
|
}
|
@@ -79,6 +90,9 @@ int main (void)
|
|
79
90
|
/* { dg-output "12 4951 127 1 9320 13: 13 14271 140" } */
|
80
91
|
printf("res: %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
81
92
|
/* { dg-output "\nres: 13 14271 140" } */
|
93
|
+
CHECK(res_dbl.a == 13);
|
94
|
+
CHECK(res_dbl.b == 14271);
|
95
|
+
CHECK(res_dbl.c == 140);
|
82
96
|
|
83
97
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_align_gn, NULL, code) == FFI_OK);
|
84
98
|
|
@@ -86,6 +100,9 @@ int main (void)
|
|
86
100
|
/* { dg-output "\n12 4951 127 1 9320 13: 13 14271 140" } */
|
87
101
|
printf("res: %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
88
102
|
/* { dg-output "\nres: 13 14271 140" } */
|
103
|
+
CHECK(res_dbl.a == 13);
|
104
|
+
CHECK(res_dbl.b == 14271);
|
105
|
+
CHECK(res_dbl.c == 140);
|
89
106
|
|
90
107
|
exit(0);
|
91
108
|
}
|
@@ -13,7 +13,7 @@ typedef struct cls_struct_align {
|
|
13
13
|
unsigned char c;
|
14
14
|
} cls_struct_align;
|
15
15
|
|
16
|
-
cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
16
|
+
static cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
17
17
|
struct cls_struct_align a2)
|
18
18
|
{
|
19
19
|
struct cls_struct_align result;
|
@@ -23,6 +23,17 @@ cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
|
23
23
|
result.c = a1.c + a2.c;
|
24
24
|
|
25
25
|
printf("%d %d %d %d %d %d: %d %d %d\n", a1.a, a1.b, a1.c, a2.a, a2.b, a2.c, result.a, result.b, result.c);
|
26
|
+
CHECK(a1.a == 12);
|
27
|
+
CHECK(a1.b == 4951);
|
28
|
+
CHECK(a1.c == 127);
|
29
|
+
|
30
|
+
CHECK(a2.a == 1);
|
31
|
+
CHECK(a2.b == 9320);
|
32
|
+
CHECK(a2.c == 13);
|
33
|
+
|
34
|
+
CHECK(result.a == 13);
|
35
|
+
CHECK(result.b == 14271);
|
36
|
+
CHECK(result.c == 140);
|
26
37
|
|
27
38
|
return result;
|
28
39
|
}
|
@@ -79,13 +90,17 @@ int main (void)
|
|
79
90
|
/* { dg-output "12 4951 127 1 9320 13: 13 14271 140" } */
|
80
91
|
printf("res: %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
81
92
|
/* { dg-output "\nres: 13 14271 140" } */
|
82
|
-
|
93
|
+
CHECK(res_dbl.a == 13);
|
94
|
+
CHECK(res_dbl.b == 14271);
|
95
|
+
CHECK(res_dbl.c == 140);
|
83
96
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_align_gn, NULL, code) == FFI_OK);
|
84
97
|
|
85
98
|
res_dbl = ((cls_struct_align(*)(cls_struct_align, cls_struct_align))(code))(g_dbl, f_dbl);
|
86
99
|
/* { dg-output "\n12 4951 127 1 9320 13: 13 14271 140" } */
|
87
100
|
printf("res: %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
88
101
|
/* { dg-output "\nres: 13 14271 140" } */
|
89
|
-
|
102
|
+
CHECK(res_dbl.a == 13);
|
103
|
+
CHECK(res_dbl.b == 14271);
|
104
|
+
CHECK(res_dbl.c == 140);
|
90
105
|
exit(0);
|
91
106
|
}
|
@@ -14,7 +14,7 @@ typedef struct cls_struct_align {
|
|
14
14
|
unsigned char c;
|
15
15
|
} cls_struct_align;
|
16
16
|
|
17
|
-
cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
17
|
+
static cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
18
18
|
struct cls_struct_align a2)
|
19
19
|
{
|
20
20
|
struct cls_struct_align result;
|
@@ -24,6 +24,17 @@ cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
|
24
24
|
result.c = a1.c + a2.c;
|
25
25
|
|
26
26
|
printf("%d %" PRIdLL " %d %d %" PRIdLL " %d: %d %" PRIdLL " %d\n", a1.a, a1.b, a1.c, a2.a, a2.b, a2.c, result.a, result.b, result.c);
|
27
|
+
CHECK(a1.a == 12);
|
28
|
+
CHECK(a1.b == 4951);
|
29
|
+
CHECK(a1.c == 127);
|
30
|
+
|
31
|
+
CHECK(a2.a == 1);
|
32
|
+
CHECK(a2.b == 9320);
|
33
|
+
CHECK(a2.c == 13);
|
34
|
+
|
35
|
+
CHECK(result.a == 13);
|
36
|
+
CHECK(result.b == 14271);
|
37
|
+
CHECK(result.c == 140);
|
27
38
|
|
28
39
|
return result;
|
29
40
|
}
|
@@ -80,6 +91,9 @@ int main (void)
|
|
80
91
|
/* { dg-output "12 4951 127 1 9320 13: 13 14271 140" } */
|
81
92
|
printf("res: %d %" PRIdLL " %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
82
93
|
/* { dg-output "\nres: 13 14271 140" } */
|
94
|
+
CHECK(res_dbl.a == 13);
|
95
|
+
CHECK(res_dbl.b == 14271);
|
96
|
+
CHECK(res_dbl.c == 140);
|
83
97
|
|
84
98
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_align_gn, NULL, code) == FFI_OK);
|
85
99
|
|
@@ -87,6 +101,9 @@ int main (void)
|
|
87
101
|
/* { dg-output "\n12 4951 127 1 9320 13: 13 14271 140" } */
|
88
102
|
printf("res: %d %" PRIdLL " %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
89
103
|
/* { dg-output "\nres: 13 14271 140" } */
|
104
|
+
CHECK(res_dbl.a == 13);
|
105
|
+
CHECK(res_dbl.b == 14271);
|
106
|
+
CHECK(res_dbl.c == 140);
|
90
107
|
|
91
108
|
exit(0);
|
92
109
|
}
|
@@ -13,7 +13,7 @@ typedef struct cls_struct_align {
|
|
13
13
|
unsigned char c;
|
14
14
|
} cls_struct_align;
|
15
15
|
|
16
|
-
cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
16
|
+
static cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
17
17
|
struct cls_struct_align a2)
|
18
18
|
{
|
19
19
|
struct cls_struct_align result;
|
@@ -23,6 +23,17 @@ cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
|
23
23
|
result.c = a1.c + a2.c;
|
24
24
|
|
25
25
|
printf("%d %d %d %d %d %d: %d %d %d\n", a1.a, a1.b, a1.c, a2.a, a2.b, a2.c, result.a, result.b, result.c);
|
26
|
+
CHECK(a1.a == 12);
|
27
|
+
CHECK(a1.b == 4951);
|
28
|
+
CHECK(a1.c == 127);
|
29
|
+
|
30
|
+
CHECK(a2.a == 1);
|
31
|
+
CHECK(a2.b == 9320);
|
32
|
+
CHECK(a2.c == 13);
|
33
|
+
|
34
|
+
CHECK(result.a == 13);
|
35
|
+
CHECK(result.b == 14271);
|
36
|
+
CHECK(result.c == 140);
|
26
37
|
|
27
38
|
return result;
|
28
39
|
}
|
@@ -79,6 +90,9 @@ int main (void)
|
|
79
90
|
/* { dg-output "12 4951 127 1 9320 13: 13 14271 140" } */
|
80
91
|
printf("res: %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
81
92
|
/* { dg-output "\nres: 13 14271 140" } */
|
93
|
+
CHECK(res_dbl.a == 13);
|
94
|
+
CHECK(res_dbl.b == 14271);
|
95
|
+
CHECK(res_dbl.c == 140);
|
82
96
|
|
83
97
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_align_gn, NULL, code) == FFI_OK);
|
84
98
|
|
@@ -86,6 +100,9 @@ int main (void)
|
|
86
100
|
/* { dg-output "\n12 4951 127 1 9320 13: 13 14271 140" } */
|
87
101
|
printf("res: %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
88
102
|
/* { dg-output "\nres: 13 14271 140" } */
|
103
|
+
CHECK(res_dbl.a == 13);
|
104
|
+
CHECK(res_dbl.b == 14271);
|
105
|
+
CHECK(res_dbl.c == 140);
|
89
106
|
|
90
107
|
exit(0);
|
91
108
|
}
|
@@ -13,7 +13,7 @@ typedef struct cls_struct_align {
|
|
13
13
|
unsigned char c;
|
14
14
|
} cls_struct_align;
|
15
15
|
|
16
|
-
cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
16
|
+
static cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
17
17
|
struct cls_struct_align a2)
|
18
18
|
{
|
19
19
|
struct cls_struct_align result;
|
@@ -24,6 +24,18 @@ cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
|
24
24
|
|
25
25
|
printf("%d %d %d %d %d %d: %d %d %d\n", a1.a, a1.b, a1.c, a2.a, a2.b, a2.c, result.a, result.b, result.c);
|
26
26
|
|
27
|
+
CHECK(a1.a == 12);
|
28
|
+
CHECK(a1.b == 4951);
|
29
|
+
CHECK(a1.c == 127);
|
30
|
+
|
31
|
+
CHECK(a2.a == 1);
|
32
|
+
CHECK(a2.b == 9320);
|
33
|
+
CHECK(a2.c == 13);
|
34
|
+
|
35
|
+
CHECK(result.a == 13);
|
36
|
+
CHECK(result.b == 14271);
|
37
|
+
CHECK(result.c == 140);
|
38
|
+
|
27
39
|
return result;
|
28
40
|
}
|
29
41
|
|
@@ -79,6 +91,9 @@ int main (void)
|
|
79
91
|
/* { dg-output "12 4951 127 1 9320 13: 13 14271 140" } */
|
80
92
|
printf("res: %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
81
93
|
/* { dg-output "\nres: 13 14271 140" } */
|
94
|
+
CHECK(res_dbl.a == 13);
|
95
|
+
CHECK(res_dbl.b == 14271);
|
96
|
+
CHECK(res_dbl.c == 140);
|
82
97
|
|
83
98
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_align_gn, NULL, code) == FFI_OK);
|
84
99
|
|
@@ -86,6 +101,9 @@ int main (void)
|
|
86
101
|
/* { dg-output "\n12 4951 127 1 9320 13: 13 14271 140" } */
|
87
102
|
printf("res: %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
88
103
|
/* { dg-output "\nres: 13 14271 140" } */
|
104
|
+
CHECK(res_dbl.a == 13);
|
105
|
+
CHECK(res_dbl.b == 14271);
|
106
|
+
CHECK(res_dbl.c == 140);
|
89
107
|
|
90
108
|
exit(0);
|
91
109
|
}
|
@@ -15,7 +15,7 @@ typedef struct cls_struct_align {
|
|
15
15
|
unsigned char c;
|
16
16
|
} cls_struct_align;
|
17
17
|
|
18
|
-
cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
18
|
+
static cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
19
19
|
struct cls_struct_align a2)
|
20
20
|
{
|
21
21
|
struct cls_struct_align result;
|
@@ -26,6 +26,18 @@ cls_struct_align cls_struct_align_fn(struct cls_struct_align a1,
|
|
26
26
|
|
27
27
|
printf("%d %" PRIdLL " %d %d %" PRIdLL " %d: %d %" PRIdLL " %d\n", a1.a, a1.b, a1.c, a2.a, a2.b, a2.c, result.a, result.b, result.c);
|
28
28
|
|
29
|
+
CHECK(a1.a == 12);
|
30
|
+
CHECK(a1.b == 4951);
|
31
|
+
CHECK(a1.c == 127);
|
32
|
+
|
33
|
+
CHECK(a2.a == 1);
|
34
|
+
CHECK(a2.b == 9320);
|
35
|
+
CHECK(a2.c == 13);
|
36
|
+
|
37
|
+
CHECK(result.a == 13);
|
38
|
+
CHECK(result.b == 14271);
|
39
|
+
CHECK(result.c == 140);
|
40
|
+
|
29
41
|
return result;
|
30
42
|
}
|
31
43
|
|
@@ -81,6 +93,9 @@ int main (void)
|
|
81
93
|
/* { dg-output "12 4951 127 1 9320 13: 13 14271 140" } */
|
82
94
|
printf("res: %d %" PRIdLL " %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
83
95
|
/* { dg-output "\nres: 13 14271 140" } */
|
96
|
+
CHECK(res_dbl.a == 13);
|
97
|
+
CHECK(res_dbl.b == 14271);
|
98
|
+
CHECK(res_dbl.c == 140);
|
84
99
|
|
85
100
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_align_gn, NULL, code) == FFI_OK);
|
86
101
|
|
@@ -88,6 +103,9 @@ int main (void)
|
|
88
103
|
/* { dg-output "\n12 4951 127 1 9320 13: 13 14271 140" } */
|
89
104
|
printf("res: %d %" PRIdLL " %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
90
105
|
/* { dg-output "\nres: 13 14271 140" } */
|
106
|
+
CHECK(res_dbl.a == 13);
|
107
|
+
CHECK(res_dbl.b == 14271);
|
108
|
+
CHECK(res_dbl.c == 140);
|
91
109
|
|
92
110
|
exit(0);
|
93
111
|
}
|
@@ -17,6 +17,8 @@ void
|
|
17
17
|
closure_test_fn(Dbls p)
|
18
18
|
{
|
19
19
|
printf("%.1f %.1f\n", p.x, p.y);
|
20
|
+
CHECK(p.x == 1);
|
21
|
+
CHECK(p.y == 2);
|
20
22
|
}
|
21
23
|
|
22
24
|
void
|
@@ -56,7 +58,7 @@ int main(int argc __UNUSED__, char** argv __UNUSED__)
|
|
56
58
|
|
57
59
|
CHECK(ffi_prep_closure_loc(pcl, &cif, closure_test_gn, NULL, code) == FFI_OK);
|
58
60
|
|
59
|
-
((void
|
61
|
+
((void (*)(Dbls))(code))(arg);
|
60
62
|
/* { dg-output "1.0 2.0" } */
|
61
63
|
|
62
64
|
closure_test_fn(arg);
|
@@ -10,14 +10,20 @@
|
|
10
10
|
|
11
11
|
#include "ffitest.h"
|
12
12
|
|
13
|
+
#define BUF_SIZE 50
|
14
|
+
static char buffer[BUF_SIZE];
|
15
|
+
|
13
16
|
static void
|
14
|
-
cls_double_va_fn(ffi_cif* cif __UNUSED__, void* resp,
|
17
|
+
cls_double_va_fn(ffi_cif* cif __UNUSED__, void* resp,
|
15
18
|
void** args, void* userdata __UNUSED__)
|
16
19
|
{
|
17
20
|
char* format = *(char**)args[0];
|
18
21
|
double doubleValue = *(double*)args[1];
|
19
22
|
|
20
23
|
*(ffi_arg*)resp = printf(format, doubleValue);
|
24
|
+
CHECK(*(ffi_arg*)resp == 4);
|
25
|
+
snprintf(buffer, BUF_SIZE, format, doubleValue);
|
26
|
+
CHECK(strncmp(buffer, "7.0\n", 4) == 0);
|
21
27
|
}
|
22
28
|
|
23
29
|
int main (void)
|
@@ -48,6 +54,7 @@ int main (void)
|
|
48
54
|
/* { dg-output "7.0" } */
|
49
55
|
printf("res: %d\n", (int) res);
|
50
56
|
/* { dg-output "\nres: 4" } */
|
57
|
+
CHECK(res == 4);
|
51
58
|
|
52
59
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_double_va_fn, NULL,
|
53
60
|
code) == FFI_OK);
|
@@ -56,6 +63,7 @@ int main (void)
|
|
56
63
|
/* { dg-output "\n7.0" } */
|
57
64
|
printf("res: %d\n", (int) res);
|
58
65
|
/* { dg-output "\nres: 4" } */
|
66
|
+
CHECK(res == 4);
|
59
67
|
|
60
68
|
exit(0);
|
61
69
|
}
|
@@ -14,6 +14,9 @@ static void cls_ret_float_fn(ffi_cif* cif __UNUSED__, void* resp, void** args,
|
|
14
14
|
|
15
15
|
printf("%g: %g\n",*(float *)args[0],
|
16
16
|
*(float *)resp);
|
17
|
+
|
18
|
+
CHECK((int)(*(float *)args[0]) == -2122);
|
19
|
+
CHECK((int)(*(float *)resp) == -2122);
|
17
20
|
}
|
18
21
|
|
19
22
|
typedef float (*cls_ret_float)(float);
|
@@ -38,5 +41,6 @@ int main (void)
|
|
38
41
|
/* { dg-output "\\-2122.12: \\-2122.12" } */
|
39
42
|
printf("res: %.6f\n", res);
|
40
43
|
/* { dg-output "\nres: \-2122.120117" } */
|
44
|
+
CHECK((int)res == -2122);
|
41
45
|
exit(0);
|
42
46
|
}
|
@@ -7,7 +7,7 @@
|
|
7
7
|
/* This test is known to PASS on armv7l-unknown-linux-gnueabihf, so I have
|
8
8
|
remove the xfail for arm*-*-* below, until we know more. */
|
9
9
|
/* { dg-do run { xfail strongarm*-*-* xscale*-*-* } } */
|
10
|
-
/* { dg-options -mlong-double-128 { target powerpc64*-*-linux* } } */
|
10
|
+
/* { dg-options -mlong-double-128 { target powerpc64*-*-linux-gnu* } } */
|
11
11
|
|
12
12
|
#include "ffitest.h"
|
13
13
|
|
@@ -25,6 +25,14 @@ long double cls_ldouble_fn(
|
|
25
25
|
|
26
26
|
printf("%Lg %Lg %Lg %Lg %Lg %Lg %Lg %Lg: %Lg\n",
|
27
27
|
a1, a2, a3, a4, a5, a6, a7, a8, r);
|
28
|
+
CHECK(a1 == 1);
|
29
|
+
CHECK(a2 == 2);
|
30
|
+
CHECK(a3 == 3);
|
31
|
+
CHECK(a4 == 4);
|
32
|
+
CHECK(a5 == 5);
|
33
|
+
CHECK(a6 == 6);
|
34
|
+
CHECK(a7 == 7);
|
35
|
+
CHECK(a8 == 8);
|
28
36
|
|
29
37
|
return r;
|
30
38
|
}
|
@@ -91,6 +99,7 @@ int main(void)
|
|
91
99
|
/* { dg-output "1 2 3 4 5 6 7 8: 36" } */
|
92
100
|
printf("res: %Lg\n", res);
|
93
101
|
/* { dg-output "\nres: 36" } */
|
102
|
+
CHECK(res == 36);
|
94
103
|
|
95
104
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_ldouble_gn, NULL, code) == FFI_OK);
|
96
105
|
|
@@ -100,6 +109,7 @@ int main(void)
|
|
100
109
|
/* { dg-output "\n1 2 3 4 5 6 7 8: 36" } */
|
101
110
|
printf("res: %Lg\n", res);
|
102
111
|
/* { dg-output "\nres: 36" } */
|
112
|
+
CHECK(res == 36);
|
103
113
|
|
104
114
|
return 0;
|
105
115
|
}
|
@@ -5,19 +5,36 @@
|
|
5
5
|
Originator: Blake Chaffin 6/6/2007 */
|
6
6
|
|
7
7
|
/* { dg-do run { xfail strongarm*-*-* xscale*-*-* } } */
|
8
|
-
/* { dg-output "" { xfail avr32*-*-*
|
8
|
+
/* { dg-output "" { xfail avr32*-*-* } } */
|
9
9
|
/* { dg-output "" { xfail mips-sgi-irix6* } } PR libffi/46660 */
|
10
10
|
|
11
11
|
#include "ffitest.h"
|
12
|
+
#include <stdarg.h>
|
13
|
+
|
14
|
+
#define BUF_SIZE 50
|
15
|
+
static char buffer[BUF_SIZE];
|
16
|
+
|
17
|
+
static int
|
18
|
+
wrap_printf(char* fmt, ...) {
|
19
|
+
va_list ap;
|
20
|
+
va_start(ap, fmt);
|
21
|
+
long double ldArg = va_arg(ap, long double);
|
22
|
+
va_end(ap);
|
23
|
+
CHECK((int)ldArg == 7);
|
24
|
+
return printf(fmt, ldArg);
|
25
|
+
}
|
12
26
|
|
13
27
|
static void
|
14
|
-
cls_longdouble_va_fn(ffi_cif* cif __UNUSED__, void* resp,
|
28
|
+
cls_longdouble_va_fn(ffi_cif* cif __UNUSED__, void* resp,
|
15
29
|
void** args, void* userdata __UNUSED__)
|
16
30
|
{
|
17
31
|
char* format = *(char**)args[0];
|
18
32
|
long double ldValue = *(long double*)args[1];
|
19
33
|
|
20
34
|
*(ffi_arg*)resp = printf(format, ldValue);
|
35
|
+
CHECK(*(ffi_arg*)resp == 4);
|
36
|
+
snprintf(buffer, BUF_SIZE, format, ldValue);
|
37
|
+
CHECK(strncmp(buffer, "7.0\n", BUF_SIZE) == 0);
|
21
38
|
}
|
22
39
|
|
23
40
|
int main (void)
|
@@ -44,10 +61,11 @@ int main (void)
|
|
44
61
|
args[1] = &ldArg;
|
45
62
|
args[2] = NULL;
|
46
63
|
|
47
|
-
ffi_call(&cif, FFI_FN(
|
64
|
+
ffi_call(&cif, FFI_FN(wrap_printf), &res, args);
|
48
65
|
/* { dg-output "7.0" } */
|
49
66
|
printf("res: %d\n", (int) res);
|
50
67
|
/* { dg-output "\nres: 4" } */
|
68
|
+
CHECK(res == 4);
|
51
69
|
|
52
70
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_longdouble_va_fn, NULL,
|
53
71
|
code) == FFI_OK);
|
@@ -56,6 +74,7 @@ int main (void)
|
|
56
74
|
/* { dg-output "\n7.0" } */
|
57
75
|
printf("res: %d\n", (int) res);
|
58
76
|
/* { dg-output "\nres: 4" } */
|
77
|
+
CHECK(res == 4);
|
59
78
|
|
60
79
|
exit(0);
|
61
80
|
}
|