ffi 1.15.4 → 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 +90 -0
- data/Gemfile +1 -1
- data/README.md +3 -2
- data/Rakefile +28 -11
- data/ext/ffi_c/AbstractMemory.c +60 -36
- 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 +86 -29
- data/ext/ffi_c/Call.c +18 -7
- data/ext/ffi_c/DynamicLibrary.c +89 -26
- data/ext/ffi_c/Function.c +244 -98
- data/ext/ffi_c/Function.h +1 -0
- data/ext/ffi_c/FunctionInfo.c +80 -24
- data/ext/ffi_c/LastError.c +25 -7
- data/ext/ffi_c/MappedType.c +66 -23
- data/ext/ffi_c/MappedType.h +0 -2
- data/ext/ffi_c/MemoryPointer.c +34 -7
- data/ext/ffi_c/MethodHandle.c +3 -1
- data/ext/ffi_c/Pointer.c +68 -29
- data/ext/ffi_c/Pointer.h +1 -0
- data/ext/ffi_c/Struct.c +155 -80
- data/ext/ffi_c/Struct.h +7 -4
- data/ext/ffi_c/StructByValue.c +48 -16
- data/ext/ffi_c/StructLayout.c +117 -48
- data/ext/ffi_c/Type.c +104 -36
- data/ext/ffi_c/Type.h +3 -1
- data/ext/ffi_c/Types.c +1 -1
- data/ext/ffi_c/Variadic.c +65 -23
- 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/.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 +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/LICENSE +1 -1
- data/ext/ffi_c/libffi/Makefile.am +12 -5
- data/ext/ffi_c/libffi/Makefile.in +92 -34
- data/ext/ffi_c/libffi/README.md +144 -104
- 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 +4567 -3822
- data/ext/ffi_c/libffi/configure.ac +64 -28
- data/ext/ffi_c/libffi/configure.host +25 -6
- 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 +54 -50
- data/ext/ffi_c/libffi/include/ffi_cfi.h +21 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +29 -0
- data/ext/ffi_c/libffi/include/tramp.h +45 -0
- data/ext/ffi_c/libffi/libtool-version +2 -2
- data/ext/ffi_c/libffi/ltmain.sh +512 -315
- 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 +1 -1
- data/ext/ffi_c/libffi/msvcc.sh +1 -1
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +146 -42
- data/ext/ffi_c/libffi/src/aarch64/internal.h +32 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +134 -42
- 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 +133 -47
- data/ext/ffi_c/libffi/src/dlmalloc.c +5 -0
- 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 +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/mips/ffi.c +240 -65
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +7 -0
- data/ext/ffi_c/libffi/src/mips/n32.S +137 -28
- 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_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 +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 +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 +43 -0
- 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 +127 -114
- data/ext/ffi_c/libffi/testsuite/Makefile.in +136 -120
- 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 +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/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.gnu.mk +2 -2
- data/ext/ffi_c/rbffi.h +1 -1
- data/ffi.gemspec +3 -3
- data/lib/ffi/autopointer.rb +7 -22
- data/lib/ffi/compat.rb +43 -0
- data/lib/ffi/data_converter.rb +2 -2
- data/lib/ffi/dynamic_library.rb +89 -0
- data/lib/ffi/enum.rb +18 -11
- data/lib/ffi/ffi.rb +3 -0
- data/lib/ffi/function.rb +71 -0
- data/lib/ffi/library.rb +55 -71
- data/lib/ffi/library_path.rb +109 -0
- data/lib/ffi/managedstruct.rb +1 -1
- 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/struct.rb +2 -1
- data/lib/ffi/struct_layout.rb +1 -1
- data/lib/ffi/struct_layout_builder.rb +1 -1
- data/lib/ffi/tools/const_generator.rb +5 -4
- data/lib/ffi/types.rb +32 -6
- data/lib/ffi/variadic.rb +19 -8
- data/lib/ffi/version.rb +1 -1
- data/rakelib/ffi_gem_helper.rb +1 -1
- data/samples/hello_ractor.rb +11 -0
- data/samples/qsort_ractor.rb +28 -0
- data.tar.gz.sig +0 -0
- metadata +103 -28
- metadata.gz.sig +0 -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
@@ -35,6 +35,13 @@ static C C_fn (int x, int y, int z, C source, int i, int j, int k)
|
|
35
35
|
|
36
36
|
printf ("%d, %d, %d, %d, %d, %d\n", x, y, z, i, j, k);
|
37
37
|
|
38
|
+
CHECK(x == 1);
|
39
|
+
CHECK(y == 1);
|
40
|
+
CHECK(z == 1);
|
41
|
+
CHECK(i == 1);
|
42
|
+
CHECK(j == 1);
|
43
|
+
CHECK(k == 1);
|
44
|
+
|
38
45
|
printf ("%.1f, %.1f, %.1f, %.1f, "
|
39
46
|
"%.1f, %.1f, %.1f, %.1f\n",
|
40
47
|
source.a.a_x, source.a.a_y,
|
@@ -42,6 +49,15 @@ static C C_fn (int x, int y, int z, C source, int i, int j, int k)
|
|
42
49
|
result.a.a_x, result.a.a_y,
|
43
50
|
result.b.b_x, result.b.b_y);
|
44
51
|
|
52
|
+
CHECK_FLOAT_EQ(source.a.a_x, 1.0);
|
53
|
+
CHECK_FLOAT_EQ(source.a.a_y, 2.0);
|
54
|
+
CHECK_FLOAT_EQ(source.b.b_x, 4.0);
|
55
|
+
CHECK_FLOAT_EQ(source.b.b_y, 8.0);
|
56
|
+
CHECK_FLOAT_EQ(result.a.a_x, 1.0);
|
57
|
+
CHECK_FLOAT_EQ(result.a.a_y, 2.0);
|
58
|
+
CHECK_FLOAT_EQ(result.b.b_x, 4.0);
|
59
|
+
CHECK_FLOAT_EQ(result.b.b_y, 8.0);
|
60
|
+
|
45
61
|
return result;
|
46
62
|
}
|
47
63
|
|
@@ -113,9 +129,9 @@ int main (void)
|
|
113
129
|
ffi_call (&cif, FFI_FN (C_fn), &result, args);
|
114
130
|
/* { dg-output "1, 1, 1, 1, 1, 1\n" } */
|
115
131
|
/* { dg-output "1.0, 2.0, 4.0, 8.0, 1.0, 2.0, 4.0, 8.0" } */
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
exit
|
132
|
+
CHECK_FLOAT_EQ(result.a.a_x, source.a.a_x);
|
133
|
+
CHECK_FLOAT_EQ(result.a.a_y, source.a.a_y);
|
134
|
+
CHECK_FLOAT_EQ(result.b.b_x, source.b.b_x);
|
135
|
+
CHECK_FLOAT_EQ(result.b.b_y, source.b.b_y);
|
136
|
+
exit(0);
|
121
137
|
}
|
@@ -0,0 +1,86 @@
|
|
1
|
+
/* Area: ffi_call
|
2
|
+
Purpose: Check nested float struct.
|
3
|
+
Limitations: none.
|
4
|
+
PR: none.
|
5
|
+
Originator: Cheng Jin <jincheng@ca.ibm.com> */
|
6
|
+
|
7
|
+
/* { dg-do run } */
|
8
|
+
#include "ffitest.h"
|
9
|
+
|
10
|
+
typedef struct stru_FF stru_FF;
|
11
|
+
typedef struct stru_Nested_F stru_Nested_F;
|
12
|
+
|
13
|
+
struct stru_FF {
|
14
|
+
float elem1;
|
15
|
+
float elem2;
|
16
|
+
};
|
17
|
+
|
18
|
+
struct stru_Nested_F {
|
19
|
+
float elem1;
|
20
|
+
stru_FF elem2;
|
21
|
+
};
|
22
|
+
|
23
|
+
static float testNestedFloatStruct(float arg1, stru_Nested_F arg2)
|
24
|
+
{
|
25
|
+
float floatSum = arg1 + arg2.elem1 + arg2.elem2.elem1 + arg2.elem2.elem2;
|
26
|
+
return floatSum;
|
27
|
+
}
|
28
|
+
|
29
|
+
int main (void)
|
30
|
+
{
|
31
|
+
float ts12_result = 0;
|
32
|
+
int structElemNum = 2;
|
33
|
+
int nestedStructElemNum = 2;
|
34
|
+
int argNum = 2;
|
35
|
+
|
36
|
+
ffi_cif cif;
|
37
|
+
ffi_type **struct_float1 = (ffi_type **)malloc(sizeof(ffi_type *) * (structElemNum + 1));
|
38
|
+
ffi_type **struct_float2 = (ffi_type **)malloc(sizeof(ffi_type *) * (nestedStructElemNum + 1));
|
39
|
+
ffi_type **args = (ffi_type **)malloc(sizeof(ffi_type *) * (argNum + 1));
|
40
|
+
void **values = (void **)malloc(sizeof(void *) * (argNum + 1));
|
41
|
+
ffi_type struct_float_type1, struct_float_type2;
|
42
|
+
ffi_type *retType = &ffi_type_float;
|
43
|
+
float arg1;
|
44
|
+
float *arg2 = (float *)malloc(sizeof(stru_Nested_F));
|
45
|
+
|
46
|
+
struct_float2[0] = &ffi_type_float;
|
47
|
+
struct_float2[1] = &ffi_type_float;
|
48
|
+
struct_float2[2] = NULL;
|
49
|
+
|
50
|
+
struct_float_type2.size = 0;
|
51
|
+
struct_float_type2.alignment = 0;
|
52
|
+
struct_float_type2.type = FFI_TYPE_STRUCT;
|
53
|
+
struct_float_type2.elements = struct_float2;
|
54
|
+
|
55
|
+
struct_float1[0] = &ffi_type_float;
|
56
|
+
struct_float1[1] = &struct_float_type2;
|
57
|
+
struct_float1[2] = NULL;
|
58
|
+
|
59
|
+
struct_float_type1.size = 0;
|
60
|
+
struct_float_type1.alignment = 0;
|
61
|
+
struct_float_type1.type = FFI_TYPE_STRUCT;
|
62
|
+
struct_float_type1.elements = struct_float1;
|
63
|
+
|
64
|
+
args[0] = &ffi_type_float;
|
65
|
+
args[1] = &struct_float_type1;
|
66
|
+
args[2] = NULL;
|
67
|
+
|
68
|
+
arg1 = 37.88;
|
69
|
+
arg2[0] = 31.22;
|
70
|
+
arg2[1] = 33.44;
|
71
|
+
arg2[2] = 35.66;
|
72
|
+
values[0] = &arg1;
|
73
|
+
values[1] = arg2;
|
74
|
+
values[2] = NULL;
|
75
|
+
|
76
|
+
CHECK( ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, retType, args) == FFI_OK);
|
77
|
+
ffi_call(&cif, FFI_FN(testNestedFloatStruct), &ts12_result, values);
|
78
|
+
CHECK_FLOAT_EQ(ts12_result, 138.2f);
|
79
|
+
|
80
|
+
free(struct_float1);
|
81
|
+
free(struct_float2);
|
82
|
+
free(args);
|
83
|
+
free(values);
|
84
|
+
|
85
|
+
exit(0);
|
86
|
+
}
|
@@ -0,0 +1,115 @@
|
|
1
|
+
/* Area: ffi_call, closure_call
|
2
|
+
Purpose: Check structure passing.
|
3
|
+
Limitations: none.
|
4
|
+
PR: none.
|
5
|
+
Originator: <jincheng@ca.ibm.com> and <jakub@redhat.com> 20210609 */
|
6
|
+
|
7
|
+
/* { dg-do run } */
|
8
|
+
#include "ffitest.h"
|
9
|
+
|
10
|
+
typedef struct A {
|
11
|
+
float a, b;
|
12
|
+
} A;
|
13
|
+
|
14
|
+
typedef struct B {
|
15
|
+
float x;
|
16
|
+
struct A y;
|
17
|
+
} B;
|
18
|
+
|
19
|
+
B B_fn(float b0, struct B b1)
|
20
|
+
{
|
21
|
+
struct B result;
|
22
|
+
|
23
|
+
result.x = b0 + b1.x;
|
24
|
+
result.y.a = b0 + b1.y.a;
|
25
|
+
result.y.b = b0 + b1.y.b;
|
26
|
+
|
27
|
+
printf("%g %g %g %g: %g %g %g\n", b0, b1.x, b1.y.a, b1.y.b,
|
28
|
+
result.x, result.y.a, result.y.b);
|
29
|
+
|
30
|
+
CHECK_FLOAT_EQ(b0, 12.125);
|
31
|
+
CHECK_FLOAT_EQ(b1.x, 24.75);
|
32
|
+
CHECK_FLOAT_EQ(b1.y.a, 31.625);
|
33
|
+
CHECK_FLOAT_EQ(b1.y.b, 32.25);
|
34
|
+
CHECK_FLOAT_EQ(result.x, 36.875);
|
35
|
+
CHECK_FLOAT_EQ(result.y.a, 43.75);
|
36
|
+
CHECK_FLOAT_EQ(result.y.b, 44.375);
|
37
|
+
|
38
|
+
return result;
|
39
|
+
}
|
40
|
+
|
41
|
+
static void
|
42
|
+
B_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
|
43
|
+
void* userdata __UNUSED__)
|
44
|
+
{
|
45
|
+
float b0;
|
46
|
+
struct B b1;
|
47
|
+
|
48
|
+
b0 = *(float*)(args[0]);
|
49
|
+
b1 = *(struct B*)(args[1]);
|
50
|
+
|
51
|
+
*(B*)resp = B_fn(b0, b1);
|
52
|
+
}
|
53
|
+
|
54
|
+
int main (void)
|
55
|
+
{
|
56
|
+
ffi_cif cif;
|
57
|
+
void *code;
|
58
|
+
ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
|
59
|
+
void* args_dbl[3];
|
60
|
+
ffi_type* cls_struct_fields[3];
|
61
|
+
ffi_type* cls_struct_fields1[3];
|
62
|
+
ffi_type cls_struct_type, cls_struct_type1;
|
63
|
+
ffi_type* dbl_arg_types[3];
|
64
|
+
|
65
|
+
float e_dbl = 12.125f;
|
66
|
+
struct B f_dbl = { 24.75f, { 31.625f, 32.25f } };
|
67
|
+
|
68
|
+
struct B res_dbl;
|
69
|
+
|
70
|
+
cls_struct_type.size = 0;
|
71
|
+
cls_struct_type.alignment = 0;
|
72
|
+
cls_struct_type.type = FFI_TYPE_STRUCT;
|
73
|
+
cls_struct_type.elements = cls_struct_fields;
|
74
|
+
|
75
|
+
cls_struct_type1.size = 0;
|
76
|
+
cls_struct_type1.alignment = 0;
|
77
|
+
cls_struct_type1.type = FFI_TYPE_STRUCT;
|
78
|
+
cls_struct_type1.elements = cls_struct_fields1;
|
79
|
+
|
80
|
+
cls_struct_fields[0] = &ffi_type_float;
|
81
|
+
cls_struct_fields[1] = &ffi_type_float;
|
82
|
+
cls_struct_fields[2] = NULL;
|
83
|
+
|
84
|
+
cls_struct_fields1[0] = &ffi_type_float;
|
85
|
+
cls_struct_fields1[1] = &cls_struct_type;
|
86
|
+
cls_struct_fields1[2] = NULL;
|
87
|
+
|
88
|
+
|
89
|
+
dbl_arg_types[0] = &ffi_type_float;
|
90
|
+
dbl_arg_types[1] = &cls_struct_type1;
|
91
|
+
dbl_arg_types[2] = NULL;
|
92
|
+
|
93
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type1,
|
94
|
+
dbl_arg_types) == FFI_OK);
|
95
|
+
|
96
|
+
args_dbl[0] = &e_dbl;
|
97
|
+
args_dbl[1] = &f_dbl;
|
98
|
+
args_dbl[2] = NULL;
|
99
|
+
|
100
|
+
ffi_call(&cif, FFI_FN(B_fn), &res_dbl, args_dbl);
|
101
|
+
/* { dg-output "12.125 24.75 31.625 32.25: 36.875 43.75 44.375" } */
|
102
|
+
CHECK_FLOAT_EQ( res_dbl.x, (e_dbl + f_dbl.x));
|
103
|
+
CHECK_FLOAT_EQ( res_dbl.y.a, (e_dbl + f_dbl.y.a));
|
104
|
+
CHECK_FLOAT_EQ( res_dbl.y.b, (e_dbl + f_dbl.y.b));
|
105
|
+
|
106
|
+
CHECK(ffi_prep_closure_loc(pcl, &cif, B_gn, NULL, code) == FFI_OK);
|
107
|
+
|
108
|
+
res_dbl = ((B(*)(float, B))(code))(e_dbl, f_dbl);
|
109
|
+
/* { dg-output "\n12.125 24.75 31.625 32.25: 36.875 43.75 44.375" } */
|
110
|
+
CHECK_FLOAT_EQ( res_dbl.x, (e_dbl + f_dbl.x));
|
111
|
+
CHECK_FLOAT_EQ( res_dbl.y.a, (e_dbl + f_dbl.y.a));
|
112
|
+
CHECK_FLOAT_EQ( res_dbl.y.b, (e_dbl + f_dbl.y.b));
|
113
|
+
|
114
|
+
exit(0);
|
115
|
+
}
|
@@ -19,7 +19,7 @@ typedef struct B {
|
|
19
19
|
unsigned char y;
|
20
20
|
} B;
|
21
21
|
|
22
|
-
B B_fn(struct A b0, struct B b1)
|
22
|
+
static B B_fn(struct A b0, struct B b1)
|
23
23
|
{
|
24
24
|
struct B result;
|
25
25
|
|
@@ -30,6 +30,15 @@ B B_fn(struct A b0, struct B b1)
|
|
30
30
|
printf("%lu %d %lu %d %d: %lu %d %d\n", b0.a, b0.b, b1.x.a, b1.x.b, b1.y,
|
31
31
|
result.x.a, result.x.b, result.y);
|
32
32
|
|
33
|
+
CHECK(b0.a == 1);
|
34
|
+
CHECK(b0.b == 7);
|
35
|
+
CHECK(b1.x.a == 12);
|
36
|
+
CHECK(b1.x.b == 127);
|
37
|
+
CHECK(b1.y == 99);
|
38
|
+
CHECK(result.x.a == 13);
|
39
|
+
CHECK(result.x.b == 233);
|
40
|
+
CHECK(result.y == 134);
|
41
|
+
|
33
42
|
return result;
|
34
43
|
}
|
35
44
|
|
@@ -19,7 +19,7 @@ typedef struct B {
|
|
19
19
|
unsigned char y;
|
20
20
|
} B;
|
21
21
|
|
22
|
-
B B_fn(struct A b0, struct B b1)
|
22
|
+
static B B_fn(struct A b0, struct B b1)
|
23
23
|
{
|
24
24
|
struct B result;
|
25
25
|
|
@@ -31,6 +31,15 @@ B B_fn(struct A b0, struct B b1)
|
|
31
31
|
(int)b1.x.a, b1.x.b, b1.y,
|
32
32
|
(int)result.x.a, result.x.b, result.y);
|
33
33
|
|
34
|
+
CHECK((int)b0.a == 1);
|
35
|
+
CHECK(b0.b == 7);
|
36
|
+
CHECK((int)b1.x.a == 12);
|
37
|
+
CHECK(b1.x.b == 127);
|
38
|
+
CHECK(b1.y == 99);
|
39
|
+
CHECK((int)result.x.a == 13);
|
40
|
+
CHECK(result.x.b == 233);
|
41
|
+
CHECK(result.y == 134);
|
42
|
+
|
34
43
|
return result;
|
35
44
|
}
|
36
45
|
|
@@ -31,6 +31,15 @@ static B B_fn(struct A b2, struct B b3)
|
|
31
31
|
(int)b3.x.a, b3.x.b, b3.y,
|
32
32
|
(int)result.x.a, result.x.b, result.y);
|
33
33
|
|
34
|
+
CHECK((int)b2.a == 1);
|
35
|
+
CHECK(b2.b == 7);
|
36
|
+
CHECK((int)b3.x.a == 12);
|
37
|
+
CHECK(b3.x.b == 127);
|
38
|
+
CHECK(b3.y == 99);
|
39
|
+
CHECK((int)result.x.a == 13);
|
40
|
+
CHECK(result.x.b == 233);
|
41
|
+
CHECK(result.y == 134);
|
42
|
+
|
34
43
|
return result;
|
35
44
|
}
|
36
45
|
|
@@ -31,6 +31,15 @@ static B B_fn(struct A b2, struct B b3)
|
|
31
31
|
(int)b3.x.a, b3.x.b, b3.y,
|
32
32
|
(int)result.x.a, result.x.b, result.y);
|
33
33
|
|
34
|
+
CHECK((int)b2.a == 1);
|
35
|
+
CHECK(b2.b == 7);
|
36
|
+
CHECK((int)b3.x.a == 12);
|
37
|
+
CHECK(b3.x.b == 127);
|
38
|
+
CHECK(b3.y == 99);
|
39
|
+
CHECK((int)result.x.a == 13);
|
40
|
+
CHECK(result.x.b == 233);
|
41
|
+
CHECK(result.y == 134);
|
42
|
+
|
34
43
|
return result;
|
35
44
|
}
|
36
45
|
|
@@ -36,6 +36,17 @@ static B B_fn(struct A b2, struct B b3, struct C b4)
|
|
36
36
|
(int)b3.x.a, b3.x.b, b3.y, (int)b4.d, b4.e,
|
37
37
|
(int)result.x.a, result.x.b, result.y);
|
38
38
|
|
39
|
+
CHECK((int)b2.a == 1);
|
40
|
+
CHECK(b2.b == 7);
|
41
|
+
CHECK((int)b3.x.a == 12);
|
42
|
+
CHECK(b3.x.b == 127);
|
43
|
+
CHECK(b3.y == 99);
|
44
|
+
CHECK((int)b4.d == 2);
|
45
|
+
CHECK(b4.e == 9);
|
46
|
+
CHECK((int)result.x.a == 15);
|
47
|
+
CHECK(result.x.b == 242);
|
48
|
+
CHECK(result.y == 143);
|
49
|
+
|
39
50
|
return result;
|
40
51
|
}
|
41
52
|
|
@@ -31,6 +31,15 @@ static B B_fn(struct A b2, struct B b3)
|
|
31
31
|
(int)b3.x.a, b3.x.b, b3.y,
|
32
32
|
(int)result.x.a, result.x.b, result.y);
|
33
33
|
|
34
|
+
CHECK((int)b2.a == 1);
|
35
|
+
CHECK(b2.b == 7);
|
36
|
+
CHECK((int)b3.x.a == 12);
|
37
|
+
CHECK(b3.x.b == 127);
|
38
|
+
CHECK(b3.y == 99);
|
39
|
+
CHECK((int)result.x.a == 13);
|
40
|
+
CHECK(result.x.b == 233);
|
41
|
+
CHECK(result.y == 134);
|
42
|
+
|
34
43
|
return result;
|
35
44
|
}
|
36
45
|
|
@@ -36,6 +36,17 @@ static B B_fn(struct A b2, struct B b3, struct C b4)
|
|
36
36
|
(int)b3.x.a, b3.x.b, b3.y, (int)b4.d, b4.e,
|
37
37
|
(int)result.x.a, result.x.b, result.y);
|
38
38
|
|
39
|
+
CHECK((int)b2.a == 1);
|
40
|
+
CHECK(b2.b == 7);
|
41
|
+
CHECK((int)b3.x.a == 12);
|
42
|
+
CHECK(b3.x.b == 127);
|
43
|
+
CHECK(b3.y == 99);
|
44
|
+
CHECK((int)b4.d == 2);
|
45
|
+
CHECK(b4.e == 9);
|
46
|
+
CHECK((int)result.x.a == 15);
|
47
|
+
CHECK(result.x.b == 242);
|
48
|
+
CHECK(result.y == 143);
|
49
|
+
|
39
50
|
return result;
|
40
51
|
}
|
41
52
|
|
@@ -36,6 +36,17 @@ static B B_fn(struct A b2, struct B b3, struct C b4)
|
|
36
36
|
b3.x.a, (int)b3.x.b, b3.y, (int)b4.d, b4.e,
|
37
37
|
result.x.a, (int)result.x.b, result.y);
|
38
38
|
|
39
|
+
CHECK((int)b2.a == 1);
|
40
|
+
CHECK(b2.b == 7);
|
41
|
+
CHECK((int)b3.x.a == 12);
|
42
|
+
CHECK(b3.x.b == 127);
|
43
|
+
CHECK(b3.y == 99);
|
44
|
+
CHECK((int)b4.d == 2);
|
45
|
+
CHECK(b4.e == 9);
|
46
|
+
CHECK((int)result.x.a == 15);
|
47
|
+
CHECK(result.x.b == 242);
|
48
|
+
CHECK(result.y == 143);
|
49
|
+
|
39
50
|
return result;
|
40
51
|
}
|
41
52
|
|
@@ -0,0 +1,86 @@
|
|
1
|
+
/* Area: ffi_call, closure_call
|
2
|
+
Purpose: Single argument structs have a different ABI in emscripten.
|
3
|
+
Limitations: none.
|
4
|
+
PR: none.
|
5
|
+
Originator: <hood@mit.edu> */
|
6
|
+
|
7
|
+
/* { dg-do run } */
|
8
|
+
#include "ffitest.h"
|
9
|
+
|
10
|
+
typedef struct A {
|
11
|
+
int a;
|
12
|
+
} A;
|
13
|
+
|
14
|
+
static struct A A_fn(int b0, struct A b1)
|
15
|
+
{
|
16
|
+
b1.a += b0;
|
17
|
+
return b1;
|
18
|
+
}
|
19
|
+
|
20
|
+
static void
|
21
|
+
A_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
|
22
|
+
void* userdata __UNUSED__)
|
23
|
+
{
|
24
|
+
int b0;
|
25
|
+
struct A b1;
|
26
|
+
|
27
|
+
b0 = *(int*)(args[0]);
|
28
|
+
b1 = *(struct A*)(args[1]);
|
29
|
+
|
30
|
+
*(A*)resp = A_fn(b0, b1);
|
31
|
+
}
|
32
|
+
|
33
|
+
int main (void)
|
34
|
+
{
|
35
|
+
printf("123\n");
|
36
|
+
ffi_cif cif;
|
37
|
+
void *code;
|
38
|
+
ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
|
39
|
+
void* args_dbl[3];
|
40
|
+
ffi_type* cls_struct_fields[2];
|
41
|
+
ffi_type cls_struct_type;
|
42
|
+
ffi_type* dbl_arg_types[3];
|
43
|
+
|
44
|
+
int e_dbl = 12125;
|
45
|
+
struct A f_dbl = { 31625 };
|
46
|
+
|
47
|
+
struct A res_dbl;
|
48
|
+
|
49
|
+
cls_struct_type.size = 0;
|
50
|
+
cls_struct_type.alignment = 0;
|
51
|
+
cls_struct_type.type = FFI_TYPE_STRUCT;
|
52
|
+
cls_struct_type.elements = cls_struct_fields;
|
53
|
+
|
54
|
+
cls_struct_fields[0] = &ffi_type_sint;
|
55
|
+
cls_struct_fields[1] = NULL;
|
56
|
+
|
57
|
+
dbl_arg_types[0] = &ffi_type_sint;
|
58
|
+
dbl_arg_types[1] = &cls_struct_type;
|
59
|
+
dbl_arg_types[2] = NULL;
|
60
|
+
|
61
|
+
res_dbl = A_fn(e_dbl, f_dbl);
|
62
|
+
printf("0 res: %d\n", res_dbl.a);
|
63
|
+
/* { dg-output "0 res: 43750" } */
|
64
|
+
|
65
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type,
|
66
|
+
dbl_arg_types) == FFI_OK);
|
67
|
+
|
68
|
+
args_dbl[0] = &e_dbl;
|
69
|
+
args_dbl[1] = &f_dbl;
|
70
|
+
args_dbl[2] = NULL;
|
71
|
+
|
72
|
+
|
73
|
+
ffi_call(&cif, FFI_FN(A_fn), &res_dbl, args_dbl);
|
74
|
+
printf("1 res: %d\n", res_dbl.a);
|
75
|
+
/* { dg-output "\n1 res: 43750" } */
|
76
|
+
CHECK( res_dbl.a == (e_dbl + f_dbl.a));
|
77
|
+
|
78
|
+
CHECK(ffi_prep_closure_loc(pcl, &cif, A_gn, NULL, code) == FFI_OK);
|
79
|
+
|
80
|
+
res_dbl = ((A(*)(int, A))(code))(e_dbl, f_dbl);
|
81
|
+
printf("2 res: %d\n", res_dbl.a);
|
82
|
+
/* { dg-output "\n2 res: 43750" } */
|
83
|
+
CHECK( res_dbl.a == (e_dbl + f_dbl.a));
|
84
|
+
|
85
|
+
exit(0);
|
86
|
+
}
|
@@ -0,0 +1,102 @@
|
|
1
|
+
/* Area: ffi_call, closure_call
|
2
|
+
Purpose: Single argument structs have a different ABI in emscripten.
|
3
|
+
Limitations: none.
|
4
|
+
PR: none.
|
5
|
+
Originator: <hood@mit.edu> */
|
6
|
+
|
7
|
+
/* { dg-do run } */
|
8
|
+
#include "ffitest.h"
|
9
|
+
|
10
|
+
typedef struct A {
|
11
|
+
int a, b;
|
12
|
+
} A;
|
13
|
+
|
14
|
+
typedef struct B {
|
15
|
+
struct A y;
|
16
|
+
} B;
|
17
|
+
|
18
|
+
static struct B B_fn(int b0, struct B b1)
|
19
|
+
{
|
20
|
+
b1.y.a += b0;
|
21
|
+
b1.y.b -= b0;
|
22
|
+
return b1;
|
23
|
+
}
|
24
|
+
|
25
|
+
static void
|
26
|
+
B_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
|
27
|
+
void* userdata __UNUSED__)
|
28
|
+
{
|
29
|
+
int b0;
|
30
|
+
struct B b1;
|
31
|
+
|
32
|
+
b0 = *(int*)(args[0]);
|
33
|
+
b1 = *(struct B*)(args[1]);
|
34
|
+
|
35
|
+
*(B*)resp = B_fn(b0, b1);
|
36
|
+
}
|
37
|
+
|
38
|
+
int main (void)
|
39
|
+
{
|
40
|
+
ffi_cif cif;
|
41
|
+
void *code;
|
42
|
+
ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
|
43
|
+
void* args_dbl[3];
|
44
|
+
ffi_type* cls_struct_fields[3];
|
45
|
+
ffi_type* cls_struct_fields1[2];
|
46
|
+
ffi_type cls_struct_type, cls_struct_type1;
|
47
|
+
ffi_type* dbl_arg_types[3];
|
48
|
+
|
49
|
+
int e_dbl = 12125;
|
50
|
+
struct B f_dbl = { { 31625, 16723 } };
|
51
|
+
|
52
|
+
struct B res_dbl;
|
53
|
+
|
54
|
+
cls_struct_type.size = 0;
|
55
|
+
cls_struct_type.alignment = 0;
|
56
|
+
cls_struct_type.type = FFI_TYPE_STRUCT;
|
57
|
+
cls_struct_type.elements = cls_struct_fields;
|
58
|
+
|
59
|
+
cls_struct_type1.size = 0;
|
60
|
+
cls_struct_type1.alignment = 0;
|
61
|
+
cls_struct_type1.type = FFI_TYPE_STRUCT;
|
62
|
+
cls_struct_type1.elements = cls_struct_fields1;
|
63
|
+
|
64
|
+
cls_struct_fields[0] = &ffi_type_sint;
|
65
|
+
cls_struct_fields[1] = &ffi_type_sint;
|
66
|
+
cls_struct_fields[2] = NULL;
|
67
|
+
|
68
|
+
cls_struct_fields1[0] = &cls_struct_type;
|
69
|
+
cls_struct_fields1[1] = NULL;
|
70
|
+
|
71
|
+
|
72
|
+
dbl_arg_types[0] = &ffi_type_sint;
|
73
|
+
dbl_arg_types[1] = &cls_struct_type1;
|
74
|
+
dbl_arg_types[2] = NULL;
|
75
|
+
|
76
|
+
res_dbl = B_fn(e_dbl, f_dbl);
|
77
|
+
printf("0 res: %d %d\n", res_dbl.y.a, res_dbl.y.b);
|
78
|
+
/* { dg-output "0 res: 43750 4598" } */
|
79
|
+
|
80
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type1,
|
81
|
+
dbl_arg_types) == FFI_OK);
|
82
|
+
|
83
|
+
args_dbl[0] = &e_dbl;
|
84
|
+
args_dbl[1] = &f_dbl;
|
85
|
+
args_dbl[2] = NULL;
|
86
|
+
|
87
|
+
ffi_call(&cif, FFI_FN(B_fn), &res_dbl, args_dbl);
|
88
|
+
printf("1 res: %d %d\n", res_dbl.y.a, res_dbl.y.b);
|
89
|
+
/* { dg-output "\n1 res: 43750 4598" } */
|
90
|
+
CHECK( res_dbl.y.a == (f_dbl.y.a + e_dbl));
|
91
|
+
CHECK( res_dbl.y.b == (f_dbl.y.b - e_dbl));
|
92
|
+
|
93
|
+
CHECK(ffi_prep_closure_loc(pcl, &cif, B_gn, NULL, code) == FFI_OK);
|
94
|
+
|
95
|
+
res_dbl = ((B(*)(int, B))(code))(e_dbl, f_dbl);
|
96
|
+
printf("2 res: %d %d\n", res_dbl.y.a, res_dbl.y.b);
|
97
|
+
/* { dg-output "\n2 res: 43750 4598" } */
|
98
|
+
CHECK( res_dbl.y.a == (f_dbl.y.a + e_dbl));
|
99
|
+
CHECK( res_dbl.y.b == (f_dbl.y.b - e_dbl));
|
100
|
+
|
101
|
+
exit(0);
|
102
|
+
}
|
@@ -0,0 +1,101 @@
|
|
1
|
+
/* Area: ffi_call, closure_call
|
2
|
+
Purpose: Single argument structs have a different ABI in emscripten.
|
3
|
+
Limitations: none.
|
4
|
+
PR: none.
|
5
|
+
Originator: <hood@mit.edu> */
|
6
|
+
|
7
|
+
/* { dg-do run } */
|
8
|
+
#include "ffitest.h"
|
9
|
+
|
10
|
+
typedef struct A {
|
11
|
+
int a;
|
12
|
+
} A;
|
13
|
+
|
14
|
+
typedef struct B {
|
15
|
+
struct A y;
|
16
|
+
} B;
|
17
|
+
|
18
|
+
static struct B B_fn(int b0, struct B b1)
|
19
|
+
{
|
20
|
+
b1.y.a += b0;
|
21
|
+
return b1;
|
22
|
+
}
|
23
|
+
|
24
|
+
static void
|
25
|
+
B_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
|
26
|
+
void* userdata __UNUSED__)
|
27
|
+
{
|
28
|
+
int b0;
|
29
|
+
struct B b1;
|
30
|
+
|
31
|
+
b0 = *(int*)(args[0]);
|
32
|
+
b1 = *(struct B*)(args[1]);
|
33
|
+
|
34
|
+
*(B*)resp = B_fn(b0, b1);
|
35
|
+
}
|
36
|
+
|
37
|
+
int main (void)
|
38
|
+
{
|
39
|
+
printf("123\n");
|
40
|
+
ffi_cif cif;
|
41
|
+
void *code;
|
42
|
+
ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
|
43
|
+
void* args_dbl[3];
|
44
|
+
ffi_type* cls_struct_fields[2];
|
45
|
+
ffi_type* cls_struct_fields1[2];
|
46
|
+
ffi_type cls_struct_type, cls_struct_type1;
|
47
|
+
ffi_type* dbl_arg_types[3];
|
48
|
+
|
49
|
+
int e_dbl = 12125;
|
50
|
+
struct B f_dbl = { { 31625 } };
|
51
|
+
|
52
|
+
struct B res_dbl;
|
53
|
+
|
54
|
+
cls_struct_type.size = 0;
|
55
|
+
cls_struct_type.alignment = 0;
|
56
|
+
cls_struct_type.type = FFI_TYPE_STRUCT;
|
57
|
+
cls_struct_type.elements = cls_struct_fields;
|
58
|
+
|
59
|
+
cls_struct_type1.size = 0;
|
60
|
+
cls_struct_type1.alignment = 0;
|
61
|
+
cls_struct_type1.type = FFI_TYPE_STRUCT;
|
62
|
+
cls_struct_type1.elements = cls_struct_fields1;
|
63
|
+
|
64
|
+
cls_struct_fields[0] = &ffi_type_sint;
|
65
|
+
cls_struct_fields[1] = NULL;
|
66
|
+
|
67
|
+
cls_struct_fields1[0] = &cls_struct_type;
|
68
|
+
cls_struct_fields1[1] = NULL;
|
69
|
+
|
70
|
+
|
71
|
+
dbl_arg_types[0] = &ffi_type_sint;
|
72
|
+
dbl_arg_types[1] = &cls_struct_type1;
|
73
|
+
dbl_arg_types[2] = NULL;
|
74
|
+
|
75
|
+
res_dbl = B_fn(e_dbl, f_dbl);
|
76
|
+
printf("0 res: %d\n", res_dbl.y.a);
|
77
|
+
/* { dg-output "0 res: 43750" } */
|
78
|
+
|
79
|
+
|
80
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type1,
|
81
|
+
dbl_arg_types) == FFI_OK);
|
82
|
+
|
83
|
+
args_dbl[0] = &e_dbl;
|
84
|
+
args_dbl[1] = &f_dbl;
|
85
|
+
args_dbl[2] = NULL;
|
86
|
+
|
87
|
+
|
88
|
+
ffi_call(&cif, FFI_FN(B_fn), &res_dbl, args_dbl);
|
89
|
+
printf("1 res: %d\n", res_dbl.y.a);
|
90
|
+
/* { dg-output "\n1 res: 43750" } */
|
91
|
+
CHECK( res_dbl.y.a == (e_dbl + f_dbl.y.a));
|
92
|
+
|
93
|
+
CHECK(ffi_prep_closure_loc(pcl, &cif, B_gn, NULL, code) == FFI_OK);
|
94
|
+
|
95
|
+
res_dbl = ((B(*)(int, B))(code))(e_dbl, f_dbl);
|
96
|
+
printf("2 res: %d\n", res_dbl.y.a);
|
97
|
+
/* { dg-output "\n2 res: 43750" } */
|
98
|
+
CHECK( res_dbl.y.a == (e_dbl + f_dbl.y.a));
|
99
|
+
|
100
|
+
exit(0);
|
101
|
+
}
|