ffi 1.1.2 → 1.17.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +456 -0
- data/COPYING +49 -0
- data/Gemfile +21 -0
- data/LICENSE +21 -11
- data/LICENSE.SPECS +22 -0
- data/README.md +137 -0
- data/Rakefile +166 -156
- data/ext/ffi_c/AbstractMemory.c +240 -140
- data/ext/ffi_c/AbstractMemory.h +25 -15
- data/ext/ffi_c/ArrayType.c +78 -29
- data/ext/ffi_c/ArrayType.h +22 -12
- data/ext/ffi_c/Buffer.c +121 -60
- data/ext/ffi_c/Call.c +184 -137
- data/ext/ffi_c/Call.h +46 -22
- data/ext/ffi_c/ClosurePool.c +101 -43
- data/ext/ffi_c/ClosurePool.h +24 -13
- data/ext/ffi_c/DynamicLibrary.c +139 -57
- data/ext/ffi_c/DynamicLibrary.h +70 -12
- data/ext/ffi_c/Function.c +372 -273
- data/ext/ffi_c/Function.h +25 -20
- data/ext/ffi_c/FunctionInfo.c +135 -49
- data/ext/ffi_c/LastError.c +97 -30
- data/ext/ffi_c/LastError.h +21 -12
- data/ext/ffi_c/LongDouble.c +15 -9
- data/ext/ffi_c/LongDouble.h +21 -16
- data/ext/ffi_c/MappedType.c +88 -38
- data/ext/ffi_c/MappedType.h +21 -14
- data/ext/ffi_c/MemoryPointer.c +91 -38
- data/ext/ffi_c/MemoryPointer.h +22 -19
- data/ext/ffi_c/MethodHandle.c +52 -51
- data/ext/ffi_c/MethodHandle.h +24 -14
- data/ext/ffi_c/Platform.c +28 -62
- data/ext/ffi_c/Platform.h +21 -12
- data/ext/ffi_c/Pointer.c +145 -86
- data/ext/ffi_c/Pointer.h +23 -19
- data/ext/ffi_c/Struct.c +363 -163
- data/ext/ffi_c/Struct.h +39 -21
- data/ext/ffi_c/StructByValue.c +72 -37
- data/ext/ffi_c/StructByValue.h +21 -12
- data/ext/ffi_c/StructLayout.c +308 -94
- data/ext/ffi_c/Thread.c +73 -270
- data/ext/ffi_c/Thread.h +32 -35
- data/ext/ffi_c/Type.c +147 -84
- data/ext/ffi_c/Type.h +27 -11
- data/ext/ffi_c/Types.c +40 -24
- data/ext/ffi_c/Types.h +24 -21
- data/ext/ffi_c/Variadic.c +148 -64
- data/ext/ffi_c/compat.h +45 -37
- data/ext/ffi_c/extconf.rb +86 -32
- data/ext/ffi_c/ffi.c +32 -21
- 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 +84 -0
- data/ext/ffi_c/libffi/.ci/ar-lib +270 -0
- data/ext/ffi_c/libffi/.ci/bfin-sim.exp +58 -0
- data/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
- data/ext/ffi_c/libffi/.ci/build-in-container.sh +10 -0
- data/ext/ffi_c/libffi/.ci/build.sh +124 -0
- data/ext/ffi_c/libffi/.ci/compile +351 -0
- data/ext/ffi_c/libffi/.ci/install.sh +78 -0
- data/ext/ffi_c/libffi/.ci/m32r-sim.exp +58 -0
- data/ext/ffi_c/libffi/.ci/moxie-sim.exp +60 -0
- data/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
- data/ext/ffi_c/libffi/.ci/or1k-sim.exp +58 -0
- data/ext/ffi_c/libffi/.ci/powerpc-eabisim.exp +58 -0
- data/ext/ffi_c/libffi/.ci/site.exp +29 -0
- data/ext/ffi_c/libffi/.ci/wine-sim.exp +55 -0
- data/ext/ffi_c/libffi/.circleci/config.yml +156 -0
- data/ext/ffi_c/libffi/.gitattributes +4 -0
- data/ext/ffi_c/libffi/.github/issue_template.md +10 -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 +46 -0
- data/ext/ffi_c/libffi/{ChangeLog → ChangeLog.old} +6366 -3559
- data/ext/ffi_c/libffi/LICENSE +1 -1
- data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +353 -0
- data/ext/ffi_c/libffi/Makefile.am +131 -170
- data/ext/ffi_c/libffi/Makefile.in +1317 -1010
- data/ext/ffi_c/libffi/README.md +531 -0
- data/ext/ffi_c/libffi/acinclude.m4 +289 -4
- data/ext/ffi_c/libffi/autogen.sh +2 -0
- data/ext/ffi_c/libffi/compile +222 -17
- data/ext/ffi_c/libffi/config.guess +1033 -780
- data/ext/ffi_c/libffi/config.sub +1393 -1206
- data/ext/ffi_c/libffi/configure +16340 -10740
- data/ext/ffi_c/libffi/configure.ac +226 -271
- data/ext/ffi_c/libffi/configure.host +330 -4
- data/ext/ffi_c/libffi/doc/Makefile.am +3 -0
- data/ext/ffi_c/libffi/doc/Makefile.in +818 -0
- data/ext/ffi_c/libffi/doc/libffi.texi +525 -79
- data/ext/ffi_c/libffi/doc/version.texi +4 -4
- data/ext/ffi_c/libffi/fficonfig.h.in +41 -52
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +312 -0
- data/ext/ffi_c/libffi/include/Makefile.am +3 -3
- data/ext/ffi_c/libffi/include/Makefile.in +201 -79
- data/ext/ffi_c/libffi/include/ffi.h.in +190 -99
- data/ext/ffi_c/libffi/include/ffi_cfi.h +76 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +72 -14
- data/ext/ffi_c/libffi/include/tramp.h +45 -0
- data/ext/ffi_c/libffi/install-sh +231 -210
- data/ext/ffi_c/libffi/libffi.map.in +81 -0
- data/ext/ffi_c/libffi/libffi.pc.in +3 -2
- data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +997 -0
- data/ext/ffi_c/libffi/libtool-ldflags +106 -0
- data/ext/ffi_c/libffi/libtool-version +2 -2
- data/ext/ffi_c/libffi/ltmain.sh +3868 -2068
- data/ext/ffi_c/libffi/m4/asmcfi.m4 +13 -0
- data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +50 -0
- data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +47 -25
- data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +110 -147
- data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +53 -0
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +75 -19
- data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +8 -29
- data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +11 -9
- data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +104 -52
- data/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +18 -8
- data/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
- data/ext/ffi_c/libffi/m4/ax_require_defined.m4 +37 -0
- data/ext/ffi_c/libffi/make_sunver.pl +333 -0
- data/ext/ffi_c/libffi/man/Makefile.am +2 -2
- data/ext/ffi_c/libffi/man/Makefile.in +156 -57
- data/ext/ffi_c/libffi/man/ffi.3 +10 -0
- data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +6 -4
- data/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +73 -0
- data/ext/ffi_c/libffi/missing +153 -314
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
- data/ext/ffi_c/libffi/{include/ffi.h.vc64 → msvc_build/aarch64/aarch64_include/ffi.h} +151 -67
- data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +219 -0
- data/ext/ffi_c/libffi/msvcc.sh +176 -20
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +1142 -0
- data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +97 -0
- data/ext/ffi_c/libffi/src/aarch64/internal.h +100 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +695 -0
- data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
- data/ext/ffi_c/libffi/src/alpha/ffi.c +335 -98
- data/ext/ffi_c/libffi/src/alpha/ffitarget.h +10 -1
- data/ext/ffi_c/libffi/src/alpha/internal.h +23 -0
- data/ext/ffi_c/libffi/src/alpha/osf.S +161 -266
- data/ext/ffi_c/libffi/src/arc/arcompact.S +210 -0
- data/ext/ffi_c/libffi/src/arc/ffi.c +443 -0
- data/ext/ffi_c/libffi/src/arc/ffitarget.h +67 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +706 -513
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +32 -8
- data/ext/ffi_c/libffi/src/arm/internal.h +17 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +372 -413
- data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
- data/ext/ffi_c/libffi/src/avr32/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/bfin/ffi.c +196 -0
- data/ext/ffi_c/libffi/src/bfin/ffitarget.h +43 -0
- data/ext/ffi_c/libffi/src/bfin/sysv.S +179 -0
- data/ext/ffi_c/libffi/src/closures.c +565 -73
- data/ext/ffi_c/libffi/src/cris/ffi.c +10 -7
- data/ext/ffi_c/libffi/src/cris/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
- data/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
- data/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
- data/ext/ffi_c/libffi/src/debug.c +8 -3
- data/ext/ffi_c/libffi/src/dlmalloc.c +23 -13
- data/ext/ffi_c/libffi/src/frv/ffi.c +2 -2
- data/ext/ffi_c/libffi/src/frv/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/ia64/ffi.c +47 -13
- data/ext/ffi_c/libffi/src/ia64/ffitarget.h +8 -2
- data/ext/ffi_c/libffi/src/ia64/unix.S +28 -3
- data/ext/ffi_c/libffi/src/java_raw_api.c +23 -5
- data/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
- data/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
- data/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
- data/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
- data/ext/ffi_c/libffi/src/loongarch64/ffi.c +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 +32 -15
- data/ext/ffi_c/libffi/src/m32r/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/m68k/ffi.c +87 -13
- data/ext/ffi_c/libffi/src/m68k/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/m68k/sysv.S +119 -32
- data/ext/ffi_c/libffi/src/m88k/ffi.c +400 -0
- data/ext/ffi_c/libffi/src/m88k/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/m88k/obsd.S +209 -0
- data/ext/ffi_c/libffi/src/metag/ffi.c +330 -0
- data/ext/ffi_c/libffi/{fficonfig.hw → src/metag/ffitarget.h} +22 -26
- data/ext/ffi_c/libffi/src/metag/sysv.S +311 -0
- data/ext/ffi_c/libffi/src/microblaze/ffi.c +321 -0
- data/ext/ffi_c/libffi/src/microblaze/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/microblaze/sysv.S +302 -0
- data/ext/ffi_c/libffi/src/mips/ffi.c +382 -101
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +23 -14
- data/ext/ffi_c/libffi/src/mips/n32.S +321 -89
- data/ext/ffi_c/libffi/src/mips/o32.S +211 -31
- data/ext/ffi_c/libffi/src/moxie/eabi.S +55 -82
- data/ext/ffi_c/libffi/src/moxie/ffi.c +100 -66
- data/ext/ffi_c/libffi/src/moxie/ffitarget.h +52 -0
- data/ext/ffi_c/libffi/src/nios2/ffi.c +304 -0
- data/ext/ffi_c/libffi/src/nios2/ffitarget.h +52 -0
- data/ext/ffi_c/libffi/src/nios2/sysv.S +136 -0
- data/ext/ffi_c/libffi/src/or1k/ffi.c +341 -0
- data/ext/ffi_c/libffi/src/or1k/ffitarget.h +58 -0
- data/ext/ffi_c/libffi/src/or1k/sysv.S +107 -0
- data/ext/ffi_c/libffi/src/pa/ffi.c +62 -108
- data/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +28 -12
- data/ext/ffi_c/libffi/src/pa/hpux32.S +87 -38
- data/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
- data/ext/ffi_c/libffi/src/pa/linux.S +109 -39
- data/ext/ffi_c/libffi/src/powerpc/aix.S +245 -7
- data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +253 -4
- data/ext/ffi_c/libffi/src/powerpc/asm.h +2 -2
- data/ext/ffi_c/libffi/src/powerpc/darwin.S +2 -7
- data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +22 -26
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +105 -1378
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +157 -52
- data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1153 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +105 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +923 -0
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +110 -45
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +191 -85
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +438 -108
- data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +138 -68
- data/ext/ffi_c/libffi/src/powerpc/sysv.S +73 -119
- data/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
- data/ext/ffi_c/libffi/src/prep_cif.c +131 -25
- data/ext/ffi_c/libffi/src/raw_api.c +18 -5
- data/ext/ffi_c/libffi/src/riscv/ffi.c +514 -0
- data/ext/ffi_c/libffi/src/riscv/ffitarget.h +69 -0
- data/ext/ffi_c/libffi/src/riscv/sysv.S +293 -0
- data/ext/ffi_c/libffi/src/s390/ffi.c +294 -318
- data/ext/ffi_c/libffi/src/s390/ffitarget.h +9 -1
- data/ext/ffi_c/libffi/src/s390/internal.h +11 -0
- data/ext/ffi_c/libffi/src/s390/sysv.S +257 -366
- data/ext/ffi_c/libffi/src/sh/ffi.c +4 -3
- data/ext/ffi_c/libffi/src/sh/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/sh64/ffi.c +3 -2
- data/ext/ffi_c/libffi/src/sh64/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/sparc/ffi.c +326 -527
- data/ext/ffi_c/libffi/src/sparc/ffi64.c +630 -0
- data/ext/ffi_c/libffi/src/sparc/ffitarget.h +20 -7
- data/ext/ffi_c/libffi/src/sparc/internal.h +26 -0
- data/ext/ffi_c/libffi/src/sparc/v8.S +364 -234
- data/ext/ffi_c/libffi/src/sparc/v9.S +340 -207
- data/ext/ffi_c/libffi/src/tile/ffi.c +355 -0
- data/ext/ffi_c/libffi/src/tile/ffitarget.h +65 -0
- data/ext/ffi_c/libffi/src/tile/tile.S +360 -0
- data/ext/ffi_c/libffi/src/tramp.c +716 -0
- data/ext/ffi_c/libffi/src/types.c +48 -19
- data/ext/ffi_c/libffi/src/vax/elfbsd.S +195 -0
- data/ext/ffi_c/libffi/src/vax/ffi.c +276 -0
- data/ext/ffi_c/libffi/src/vax/ffitarget.h +49 -0
- 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/asmnames.h +30 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +686 -498
- data/ext/ffi_c/libffi/src/x86/ffi64.c +444 -129
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +79 -36
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +361 -0
- data/ext/ffi_c/libffi/src/x86/internal.h +43 -0
- data/ext/ffi_c/libffi/src/x86/internal64.h +36 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +1198 -394
- data/ext/ffi_c/libffi/src/x86/sysv_intel.S +998 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +585 -300
- data/ext/ffi_c/libffi/src/x86/win64.S +244 -458
- data/ext/ffi_c/libffi/src/x86/win64_intel.S +238 -0
- data/ext/ffi_c/libffi/src/xtensa/ffi.c +306 -0
- data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +57 -0
- data/ext/ffi_c/libffi/src/xtensa/sysv.S +268 -0
- data/ext/ffi_c/libffi/stamp-h.in +1 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.am +80 -73
- data/ext/ffi_c/libffi/testsuite/Makefile.in +233 -117
- 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 +360 -28
- data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +22 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +28 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +50 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1746 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2885 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +747 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +28 -6
- 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/err_bad_typedef.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +52 -42
- data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +3 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +15 -12
- data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +4 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +110 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +6 -16
- data/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +57 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +127 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +5 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +1 -1
- 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 +9 -10
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +9 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +57 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +7 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +7 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +9 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +9 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +9 -8
- 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/uninitialized.c +61 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +78 -0
- 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 +134 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +134 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +140 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +3 -2
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +21 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +7 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call/closure_stdcall.c → libffi.closures/closure_simple.c} +13 -16
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +22 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +26 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +28 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +33 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +8 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +23 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +25 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +40 -8
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +17 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +23 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +17 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +17 -4
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +113 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +26 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +17 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +33 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +23 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +29 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +32 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +28 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +43 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +29 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +18 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +18 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +18 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +23 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +23 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +24 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +44 -31
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +44 -9
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +23 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +22 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +22 -7
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +22 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +22 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +23 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +23 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +7 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +19 -10
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +4 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +14 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +32 -12
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_args.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_float_double.c +55 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +5 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +6 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +6 -2
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +6 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +21 -9
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +3 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +125 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +3 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +49 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +7 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +41 -40
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +38 -15
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +9 -9
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +19 -6
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +137 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +15 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +15 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +14 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +14 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +17 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +14 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +17 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +17 -6
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +7 -7
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +7 -7
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +6 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +6 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +8 -3
- data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.closures}/unwindtest.cc +4 -10
- data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.closures}/unwindtest_ffi_call.cc +4 -2
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +71 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +80 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +16 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.special/special.exp → libffi.complex/complex.exp} +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +51 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +37 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +34 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +28 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +19 -0
- data/ext/ffi_c/libffi.bsd.mk +13 -7
- data/ext/ffi_c/libffi.darwin.mk +25 -13
- data/ext/ffi_c/libffi.gnu.mk +4 -3
- data/ext/ffi_c/libffi.mk +11 -6
- data/ext/ffi_c/libffi.vc.mk +1 -1
- data/ext/ffi_c/libffi.vc64.mk +1 -1
- data/ext/ffi_c/rbffi.h +23 -15
- data/ext/ffi_c/rbffi_endian.h +11 -2
- data/ffi.gemspec +42 -0
- data/lib/ffi/abstract_memory.rb +44 -0
- data/lib/ffi/autopointer.rb +65 -68
- data/lib/ffi/compat.rb +43 -0
- data/lib/ffi/data_converter.rb +67 -0
- data/lib/ffi/dynamic_library.rb +118 -0
- data/lib/ffi/enum.rb +166 -25
- data/lib/ffi/errno.rb +21 -11
- data/lib/ffi/ffi.rb +28 -11
- data/lib/ffi/function.rb +71 -0
- data/lib/ffi/io.rb +25 -15
- data/lib/ffi/library.rb +227 -136
- data/lib/ffi/library_path.rb +109 -0
- data/lib/ffi/managedstruct.rb +64 -35
- data/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
- data/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
- data/lib/ffi/platform/aarch64-freebsd12/types.conf +181 -0
- data/lib/ffi/platform/aarch64-linux/types.conf +175 -0
- data/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
- data/lib/ffi/platform/aarch64-windows/types.conf +52 -0
- data/lib/ffi/platform/arm-freebsd/types.conf +152 -0
- data/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
- data/lib/ffi/platform/arm-linux/types.conf +110 -82
- data/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
- data/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
- data/lib/ffi/platform/i386-cygwin/types.conf +3 -0
- data/lib/ffi/platform/i386-darwin/types.conf +63 -63
- data/lib/ffi/platform/i386-freebsd/types.conf +89 -89
- data/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
- data/lib/ffi/platform/i386-linux/types.conf +77 -77
- data/lib/ffi/platform/i386-netbsd/types.conf +87 -87
- data/lib/ffi/platform/i386-openbsd/types.conf +89 -87
- data/lib/ffi/platform/i386-solaris/types.conf +96 -96
- data/lib/ffi/platform/i386-windows/types.conf +43 -96
- data/lib/ffi/platform/ia64-linux/types.conf +79 -79
- data/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
- data/lib/ffi/platform/mips-linux/types.conf +79 -79
- data/lib/ffi/platform/mips64-linux/types.conf +104 -0
- data/lib/ffi/platform/mips64el-linux/types.conf +104 -0
- data/lib/ffi/platform/mipsel-linux/types.conf +79 -79
- data/lib/ffi/platform/mipsisa32r6-linux/types.conf +102 -0
- data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +102 -0
- data/lib/ffi/platform/mipsisa64r6-linux/types.conf +104 -0
- data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +104 -0
- data/lib/ffi/platform/powerpc-aix/types.conf +155 -155
- data/lib/ffi/platform/powerpc-darwin/types.conf +63 -63
- data/lib/ffi/platform/powerpc-linux/types.conf +108 -78
- data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
- data/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
- data/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
- data/lib/ffi/platform/riscv64-linux/types.conf +104 -0
- data/lib/ffi/platform/s390-linux/types.conf +79 -79
- data/lib/ffi/platform/s390x-linux/types.conf +79 -79
- data/lib/ffi/platform/sparc-linux/types.conf +79 -79
- data/lib/ffi/platform/sparc-solaris/types.conf +103 -103
- data/lib/ffi/platform/sparcv9-linux/types.conf +102 -0
- data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
- data/lib/ffi/platform/sparcv9-solaris/types.conf +103 -103
- data/lib/ffi/platform/sw_64-linux/types.conf +141 -0
- data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
- data/lib/ffi/platform/x86_64-darwin/types.conf +93 -63
- data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
- data/lib/ffi/platform/x86_64-freebsd/types.conf +90 -88
- data/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
- data/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
- data/lib/ffi/platform/x86_64-linux/types.conf +107 -77
- data/lib/ffi/platform/x86_64-msys/types.conf +119 -0
- data/lib/ffi/platform/x86_64-netbsd/types.conf +89 -87
- data/lib/ffi/platform/x86_64-openbsd/types.conf +100 -92
- data/lib/ffi/platform/x86_64-solaris/types.conf +96 -96
- data/lib/ffi/platform/x86_64-windows/types.conf +52 -0
- data/lib/ffi/platform.rb +91 -34
- data/lib/ffi/pointer.rb +78 -33
- data/lib/ffi/struct.rb +100 -66
- data/lib/ffi/struct_by_reference.rb +72 -0
- data/lib/ffi/struct_layout.rb +96 -0
- data/lib/ffi/struct_layout_builder.rb +84 -19
- data/lib/ffi/tools/const_generator.rb +11 -8
- data/lib/ffi/tools/generator.rb +48 -1
- data/lib/ffi/tools/generator_task.rb +13 -16
- data/lib/ffi/tools/struct_generator.rb +6 -5
- data/lib/ffi/tools/types_generator.rb +14 -10
- data/lib/ffi/types.rb +96 -51
- data/lib/ffi/union.rb +23 -12
- data/lib/ffi/variadic.rb +44 -29
- data/lib/ffi/version.rb +3 -0
- data/lib/ffi.rb +20 -8
- data/rakelib/ffi_gem_helper.rb +65 -0
- data/samples/getlogin.rb +8 -0
- data/samples/getpid.rb +8 -0
- data/samples/gettimeofday.rb +18 -0
- data/samples/hello.rb +8 -0
- data/samples/hello_ractor.rb +11 -0
- data/samples/inotify.rb +60 -0
- data/samples/pty.rb +75 -0
- data/samples/qsort.rb +20 -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 +508 -268
- metadata.gz.sig +1 -0
- data/History.txt +0 -1
- data/README.rdoc +0 -102
- data/ext/ffi_c/DataConverter.c +0 -91
- data/ext/ffi_c/Ffi_c.iml +0 -12
- data/ext/ffi_c/StructByReference.c +0 -158
- data/ext/ffi_c/StructByReference.h +0 -50
- data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
- data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
- data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
- data/ext/ffi_c/libffi/Makefile.vc +0 -141
- data/ext/ffi_c/libffi/Makefile.vc64 +0 -141
- data/ext/ffi_c/libffi/README +0 -342
- data/ext/ffi_c/libffi/aclocal.m4 +0 -1873
- data/ext/ffi_c/libffi/build-ios.sh +0 -67
- data/ext/ffi_c/libffi/depcomp +0 -630
- data/ext/ffi_c/libffi/doc/libffi.info +0 -593
- data/ext/ffi_c/libffi/doc/stamp-vti +0 -4
- data/ext/ffi_c/libffi/include/ffi.h.vc +0 -427
- data/ext/ffi_c/libffi/m4/ax_check_compiler_flags.m4 +0 -76
- data/ext/ffi_c/libffi/m4/libtool.m4 +0 -7831
- data/ext/ffi_c/libffi/m4/ltoptions.m4 +0 -369
- data/ext/ffi_c/libffi/m4/ltsugar.m4 +0 -123
- data/ext/ffi_c/libffi/m4/ltversion.m4 +0 -23
- data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +0 -98
- data/ext/ffi_c/libffi/mdate-sh +0 -201
- data/ext/ffi_c/libffi/src/arm/gentramp.sh +0 -118
- data/ext/ffi_c/libffi/src/arm/trampoline.S +0 -4450
- data/ext/ffi_c/libffi/src/x86/darwin.S +0 -444
- data/ext/ffi_c/libffi/src/x86/darwin64.S +0 -416
- data/ext/ffi_c/libffi/src/x86/freebsd.S +0 -458
- data/ext/ffi_c/libffi/src/x86/win32.S +0 -1065
- data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +0 -300
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +0 -63
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +0 -44
- data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +0 -96
- data/ext/ffi_c/libffi/texinfo.tex +0 -7210
- data/ext/ffi_c/win32/stdint.h +0 -199
- data/gen/Rakefile +0 -30
- data/lib/Lib.iml +0 -13
- data/spec/ffi/Ffi.iml +0 -12
- data/spec/ffi/async_callback_spec.rb +0 -46
- data/spec/ffi/bool_spec.rb +0 -40
- data/spec/ffi/buffer_spec.rb +0 -215
- data/spec/ffi/callback_spec.rb +0 -668
- data/spec/ffi/custom_param_type.rb +0 -47
- data/spec/ffi/custom_type_spec.rb +0 -85
- data/spec/ffi/dup_spec.rb +0 -65
- data/spec/ffi/enum_spec.rb +0 -227
- data/spec/ffi/errno_spec.rb +0 -29
- data/spec/ffi/ffi_spec.rb +0 -40
- data/spec/ffi/function_spec.rb +0 -87
- data/spec/ffi/library_spec.rb +0 -208
- data/spec/ffi/long_double.rb +0 -41
- data/spec/ffi/managed_struct_spec.rb +0 -72
- data/spec/ffi/number_spec.rb +0 -247
- data/spec/ffi/pointer_spec.rb +0 -214
- data/spec/ffi/rbx/attach_function_spec.rb +0 -28
- data/spec/ffi/rbx/memory_pointer_spec.rb +0 -111
- data/spec/ffi/rbx/spec_helper.rb +0 -1
- data/spec/ffi/rbx/struct_spec.rb +0 -13
- data/spec/ffi/spec_helper.rb +0 -35
- data/spec/ffi/string_spec.rb +0 -119
- data/spec/ffi/strptr_spec.rb +0 -61
- data/spec/ffi/struct_callback_spec.rb +0 -80
- data/spec/ffi/struct_initialize_spec.rb +0 -46
- data/spec/ffi/struct_packed_spec.rb +0 -62
- data/spec/ffi/struct_spec.rb +0 -719
- data/spec/ffi/typedef_spec.rb +0 -89
- data/spec/ffi/union_spec.rb +0 -76
- data/spec/ffi/variadic_spec.rb +0 -103
- data/spec/spec.opts +0 -4
- data/tasks/ann.rake +0 -80
- data/tasks/extension.rake +0 -32
- data/tasks/gem.rake +0 -199
- data/tasks/git.rake +0 -41
- data/tasks/notes.rake +0 -27
- data/tasks/post_load.rake +0 -34
- data/tasks/rdoc.rake +0 -50
- data/tasks/rubyforge.rake +0 -55
- data/tasks/setup.rb +0 -301
- data/tasks/spec.rake +0 -54
- data/tasks/svn.rake +0 -47
- data/tasks/test.rake +0 -40
- data/tasks/yard.rake +0 -11
- data/ext/ffi_c/libffi/testsuite/libffi.call/{pyobjc-tc.c → pyobjc_tc.c} +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
- data/lib/ffi/platform/{i486-gnu → i386-gnu}/types.conf +84 -84
@@ -24,6 +24,15 @@ cls_struct_3byte cls_struct_3byte_fn(struct cls_struct_3byte a1,
|
|
24
24
|
|
25
25
|
printf("%d %d %d %d: %d %d\n", a1.a, a1.b, a2.a, a2.b, result.a, result.b);
|
26
26
|
|
27
|
+
CHECK(a1.a == 12);
|
28
|
+
CHECK(a1.b == 119);
|
29
|
+
|
30
|
+
CHECK(a2.a == 1);
|
31
|
+
CHECK(a2.b == 15);
|
32
|
+
|
33
|
+
CHECK(result.a == 13);
|
34
|
+
CHECK(result.b == 134);
|
35
|
+
|
27
36
|
return result;
|
28
37
|
}
|
29
38
|
|
@@ -50,15 +59,15 @@ int main (void)
|
|
50
59
|
ffi_type cls_struct_type;
|
51
60
|
ffi_type* dbl_arg_types[5];
|
52
61
|
|
62
|
+
struct cls_struct_3byte g_dbl = { 12, 119 };
|
63
|
+
struct cls_struct_3byte f_dbl = { 1, 15 };
|
64
|
+
struct cls_struct_3byte res_dbl;
|
65
|
+
|
53
66
|
cls_struct_type.size = 0;
|
54
67
|
cls_struct_type.alignment = 0;
|
55
68
|
cls_struct_type.type = FFI_TYPE_STRUCT;
|
56
69
|
cls_struct_type.elements = cls_struct_fields;
|
57
70
|
|
58
|
-
struct cls_struct_3byte g_dbl = { 12, 119 };
|
59
|
-
struct cls_struct_3byte f_dbl = { 1, 15 };
|
60
|
-
struct cls_struct_3byte res_dbl;
|
61
|
-
|
62
71
|
cls_struct_fields[0] = &ffi_type_ushort;
|
63
72
|
cls_struct_fields[1] = &ffi_type_uchar;
|
64
73
|
cls_struct_fields[2] = NULL;
|
@@ -78,6 +87,8 @@ int main (void)
|
|
78
87
|
/* { dg-output "12 119 1 15: 13 134" } */
|
79
88
|
printf("res: %d %d\n", res_dbl.a, res_dbl.b);
|
80
89
|
/* { dg-output "\nres: 13 134" } */
|
90
|
+
CHECK(res_dbl.a == 13);
|
91
|
+
CHECK(res_dbl.b == 134);
|
81
92
|
|
82
93
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_3byte_gn, NULL, code) == FFI_OK);
|
83
94
|
|
@@ -85,6 +96,8 @@ int main (void)
|
|
85
96
|
/* { dg-output "\n12 119 1 15: 13 134" } */
|
86
97
|
printf("res: %d %d\n", res_dbl.a, res_dbl.b);
|
87
98
|
/* { dg-output "\nres: 13 134" } */
|
99
|
+
CHECK(res_dbl.a == 13);
|
100
|
+
CHECK(res_dbl.b == 134);
|
88
101
|
|
89
102
|
exit(0);
|
90
103
|
}
|
@@ -24,6 +24,15 @@ cls_struct_3byte_1 cls_struct_3byte_fn1(struct cls_struct_3byte_1 a1,
|
|
24
24
|
|
25
25
|
printf("%d %d %d %d: %d %d\n", a1.a, a1.b, a2.a, a2.b, result.a, result.b);
|
26
26
|
|
27
|
+
CHECK(a1.a == 15);
|
28
|
+
CHECK(a1.b == 125);
|
29
|
+
|
30
|
+
CHECK(a2.a == 9);
|
31
|
+
CHECK(a2.b == 19);
|
32
|
+
|
33
|
+
CHECK(result.a == 24);
|
34
|
+
CHECK(result.b == 144);
|
35
|
+
|
27
36
|
return result;
|
28
37
|
}
|
29
38
|
|
@@ -50,15 +59,15 @@ int main (void)
|
|
50
59
|
ffi_type cls_struct_type;
|
51
60
|
ffi_type* dbl_arg_types[5];
|
52
61
|
|
62
|
+
struct cls_struct_3byte_1 g_dbl = { 15, 125 };
|
63
|
+
struct cls_struct_3byte_1 f_dbl = { 9, 19 };
|
64
|
+
struct cls_struct_3byte_1 res_dbl;
|
65
|
+
|
53
66
|
cls_struct_type.size = 0;
|
54
67
|
cls_struct_type.alignment = 0;
|
55
68
|
cls_struct_type.type = FFI_TYPE_STRUCT;
|
56
69
|
cls_struct_type.elements = cls_struct_fields;
|
57
70
|
|
58
|
-
struct cls_struct_3byte_1 g_dbl = { 15, 125 };
|
59
|
-
struct cls_struct_3byte_1 f_dbl = { 9, 19 };
|
60
|
-
struct cls_struct_3byte_1 res_dbl;
|
61
|
-
|
62
71
|
cls_struct_fields[0] = &ffi_type_uchar;
|
63
72
|
cls_struct_fields[1] = &ffi_type_ushort;
|
64
73
|
cls_struct_fields[2] = NULL;
|
@@ -78,6 +87,8 @@ int main (void)
|
|
78
87
|
/* { dg-output "15 125 9 19: 24 144" } */
|
79
88
|
printf("res: %d %d\n", res_dbl.a, res_dbl.b);
|
80
89
|
/* { dg-output "\nres: 24 144" } */
|
90
|
+
CHECK(res_dbl.a == 24);
|
91
|
+
CHECK(res_dbl.b == 144);
|
81
92
|
|
82
93
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_3byte_gn1, NULL, code) == FFI_OK);
|
83
94
|
|
@@ -85,6 +96,8 @@ int main (void)
|
|
85
96
|
/* { dg-output "\n15 125 9 19: 24 144" } */
|
86
97
|
printf("res: %d %d\n", res_dbl.a, res_dbl.b);
|
87
98
|
/* { dg-output "\nres: 24 144" } */
|
99
|
+
CHECK(res_dbl.a == 24);
|
100
|
+
CHECK(res_dbl.b == 144);
|
88
101
|
|
89
102
|
exit(0);
|
90
103
|
}
|
@@ -0,0 +1,113 @@
|
|
1
|
+
/* Area: ffi_call, closure_call
|
2
|
+
Purpose: Check structure passing with different structure size.
|
3
|
+
Depending on the ABI. Check overlapping.
|
4
|
+
Limitations:>none.
|
5
|
+
PR: none.
|
6
|
+
Originator: <compnerd@compnerd.org> 20171026 */
|
7
|
+
|
8
|
+
/* { dg-do run } */
|
9
|
+
|
10
|
+
#include "ffitest.h"
|
11
|
+
|
12
|
+
typedef struct cls_struct_3float {
|
13
|
+
float f;
|
14
|
+
float g;
|
15
|
+
float h;
|
16
|
+
} cls_struct_3float;
|
17
|
+
|
18
|
+
cls_struct_3float cls_struct_3float_fn(struct cls_struct_3float a1,
|
19
|
+
struct cls_struct_3float a2)
|
20
|
+
{
|
21
|
+
struct cls_struct_3float result;
|
22
|
+
|
23
|
+
result.f = a1.f + a2.f;
|
24
|
+
result.g = a1.g + a2.g;
|
25
|
+
result.h = a1.h + a2.h;
|
26
|
+
|
27
|
+
printf("%g %g %g %g %g %g: %g %g %g\n", a1.f, a1.g, a1.h,
|
28
|
+
a2.f, a2.g, a2.h, result.f, result.g, result.h);
|
29
|
+
|
30
|
+
CHECK_FLOAT_EQ(a1.f, 1);
|
31
|
+
CHECK_FLOAT_EQ(a1.g, 2);
|
32
|
+
CHECK_FLOAT_EQ(a1.h, 3);
|
33
|
+
|
34
|
+
CHECK_FLOAT_EQ(a2.f, 1);
|
35
|
+
CHECK_FLOAT_EQ(a2.g, 2);
|
36
|
+
CHECK_FLOAT_EQ(a2.h, 3);
|
37
|
+
|
38
|
+
CHECK_FLOAT_EQ(result.f, 2);
|
39
|
+
CHECK_FLOAT_EQ(result.g, 4);
|
40
|
+
CHECK_FLOAT_EQ(result.h, 6);
|
41
|
+
|
42
|
+
return result;
|
43
|
+
}
|
44
|
+
|
45
|
+
static void
|
46
|
+
cls_struct_3float_gn(ffi_cif *cif __UNUSED__, void* resp, void **args,
|
47
|
+
void* userdata __UNUSED__)
|
48
|
+
{
|
49
|
+
struct cls_struct_3float a1, a2;
|
50
|
+
|
51
|
+
a1 = *(struct cls_struct_3float*)(args[0]);
|
52
|
+
a2 = *(struct cls_struct_3float*)(args[1]);
|
53
|
+
|
54
|
+
*(cls_struct_3float*)resp = cls_struct_3float_fn(a1, a2);
|
55
|
+
}
|
56
|
+
|
57
|
+
int main (void)
|
58
|
+
{
|
59
|
+
ffi_cif cif;
|
60
|
+
void *code;
|
61
|
+
ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
|
62
|
+
void *args_dbl[3];
|
63
|
+
ffi_type* cls_struct_fields[4];
|
64
|
+
ffi_type cls_struct_type;
|
65
|
+
ffi_type* dbl_arg_types[3];
|
66
|
+
|
67
|
+
struct cls_struct_3float g_dbl = { 1.0f, 2.0f, 3.0f };
|
68
|
+
struct cls_struct_3float f_dbl = { 1.0f, 2.0f, 3.0f };
|
69
|
+
struct cls_struct_3float res_dbl;
|
70
|
+
|
71
|
+
cls_struct_fields[0] = &ffi_type_float;
|
72
|
+
cls_struct_fields[1] = &ffi_type_float;
|
73
|
+
cls_struct_fields[2] = &ffi_type_float;
|
74
|
+
cls_struct_fields[3] = NULL;
|
75
|
+
|
76
|
+
cls_struct_type.size = 0;
|
77
|
+
cls_struct_type.alignment = 0;
|
78
|
+
cls_struct_type.type = FFI_TYPE_STRUCT;
|
79
|
+
cls_struct_type.elements = cls_struct_fields;
|
80
|
+
|
81
|
+
dbl_arg_types[0] = &cls_struct_type;
|
82
|
+
dbl_arg_types[1] = &cls_struct_type;
|
83
|
+
dbl_arg_types[2] = NULL;
|
84
|
+
|
85
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type,
|
86
|
+
dbl_arg_types) == FFI_OK);
|
87
|
+
|
88
|
+
args_dbl[0] = &g_dbl;
|
89
|
+
args_dbl[1] = &f_dbl;
|
90
|
+
args_dbl[2] = NULL;
|
91
|
+
|
92
|
+
ffi_call(&cif, FFI_FN(cls_struct_3float_fn), &res_dbl, args_dbl);
|
93
|
+
/* { dg-output "1 2 3 1 2 3: 2 4 6" } */
|
94
|
+
printf("res: %g %g %g\n", res_dbl.f, res_dbl.g, res_dbl.h);
|
95
|
+
/* { dg-output "\nres: 2 4 6" } */
|
96
|
+
CHECK_FLOAT_EQ(res_dbl.f, 2);
|
97
|
+
CHECK_FLOAT_EQ(res_dbl.g, 4);
|
98
|
+
CHECK_FLOAT_EQ(res_dbl.h, 6);
|
99
|
+
|
100
|
+
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_3float_gn, NULL, code) ==
|
101
|
+
FFI_OK);
|
102
|
+
|
103
|
+
res_dbl = ((cls_struct_3float(*)(cls_struct_3float,
|
104
|
+
cls_struct_3float))(code))(g_dbl, f_dbl);
|
105
|
+
/* { dg-output "\n1 2 3 1 2 3: 2 4 6" } */
|
106
|
+
printf("res: %g %g %g\n", res_dbl.f, res_dbl.g, res_dbl.h);
|
107
|
+
/* { dg-output "\nres: 2 4 6" } */
|
108
|
+
CHECK_FLOAT_EQ(res_dbl.f, 2);
|
109
|
+
CHECK_FLOAT_EQ(res_dbl.g, 4);
|
110
|
+
CHECK_FLOAT_EQ(res_dbl.h, 6);
|
111
|
+
|
112
|
+
exit(0);
|
113
|
+
}
|
@@ -30,6 +30,20 @@ cls_struct_4_1byte cls_struct_4_1byte_fn(struct cls_struct_4_1byte a1,
|
|
30
30
|
a2.a, a2.b, a2.c, a2.d,
|
31
31
|
result.a, result.b, result.c, result.d);
|
32
32
|
|
33
|
+
CHECK(a1.a == 12);
|
34
|
+
CHECK(a1.b == 13);
|
35
|
+
CHECK(a1.c == 14);
|
36
|
+
CHECK(a1.d == 15);
|
37
|
+
|
38
|
+
CHECK(a2.a == 178);
|
39
|
+
CHECK(a2.b == 179);
|
40
|
+
CHECK(a2.c == 180);
|
41
|
+
CHECK(a2.d == 181);
|
42
|
+
|
43
|
+
CHECK(result.a == 190);
|
44
|
+
CHECK(result.b == 192);
|
45
|
+
CHECK(result.c == 194);
|
46
|
+
CHECK(result.d == 196);
|
33
47
|
return result;
|
34
48
|
}
|
35
49
|
|
@@ -56,15 +70,15 @@ int main (void)
|
|
56
70
|
ffi_type cls_struct_type;
|
57
71
|
ffi_type* dbl_arg_types[5];
|
58
72
|
|
73
|
+
struct cls_struct_4_1byte g_dbl = { 12, 13, 14, 15 };
|
74
|
+
struct cls_struct_4_1byte f_dbl = { 178, 179, 180, 181 };
|
75
|
+
struct cls_struct_4_1byte res_dbl;
|
76
|
+
|
59
77
|
cls_struct_type.size = 0;
|
60
78
|
cls_struct_type.alignment = 0;
|
61
79
|
cls_struct_type.type = FFI_TYPE_STRUCT;
|
62
80
|
cls_struct_type.elements = cls_struct_fields;
|
63
81
|
|
64
|
-
struct cls_struct_4_1byte g_dbl = { 12, 13, 14, 15 };
|
65
|
-
struct cls_struct_4_1byte f_dbl = { 178, 179, 180, 181 };
|
66
|
-
struct cls_struct_4_1byte res_dbl;
|
67
|
-
|
68
82
|
cls_struct_fields[0] = &ffi_type_uchar;
|
69
83
|
cls_struct_fields[1] = &ffi_type_uchar;
|
70
84
|
cls_struct_fields[2] = &ffi_type_uchar;
|
@@ -86,6 +100,10 @@ int main (void)
|
|
86
100
|
/* { dg-output "12 13 14 15 178 179 180 181: 190 192 194 196" } */
|
87
101
|
printf("res: %d %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c, res_dbl.d);
|
88
102
|
/* { dg-output "\nres: 190 192 194 196" } */
|
103
|
+
CHECK(res_dbl.a == 190);
|
104
|
+
CHECK(res_dbl.b == 192);
|
105
|
+
CHECK(res_dbl.c == 194);
|
106
|
+
CHECK(res_dbl.d == 196);
|
89
107
|
|
90
108
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_4_1byte_gn, NULL, code) == FFI_OK);
|
91
109
|
|
@@ -93,6 +111,10 @@ int main (void)
|
|
93
111
|
/* { dg-output "\n12 13 14 15 178 179 180 181: 190 192 194 196" } */
|
94
112
|
printf("res: %d %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c, res_dbl.d);
|
95
113
|
/* { dg-output "\nres: 190 192 194 196" } */
|
114
|
+
CHECK(res_dbl.a == 190);
|
115
|
+
CHECK(res_dbl.b == 192);
|
116
|
+
CHECK(res_dbl.c == 194);
|
117
|
+
CHECK(res_dbl.d == 196);
|
96
118
|
|
97
119
|
exit(0);
|
98
120
|
}
|
@@ -24,6 +24,15 @@ cls_struct_4byte cls_struct_4byte_fn(struct cls_struct_4byte a1,
|
|
24
24
|
|
25
25
|
printf("%d %d %d %d: %d %d\n", a1.a, a1.b, a2.a, a2.b, result.a, result.b);
|
26
26
|
|
27
|
+
CHECK(a1.a == 127);
|
28
|
+
CHECK(a1.b == 120);
|
29
|
+
|
30
|
+
CHECK(a2.a == 12);
|
31
|
+
CHECK(a2.b == 128);
|
32
|
+
|
33
|
+
CHECK(result.a == 139);
|
34
|
+
CHECK(result.b == 248);
|
35
|
+
|
27
36
|
return result;
|
28
37
|
}
|
29
38
|
|
@@ -50,15 +59,15 @@ int main (void)
|
|
50
59
|
ffi_type cls_struct_type;
|
51
60
|
ffi_type* dbl_arg_types[5];
|
52
61
|
|
62
|
+
struct cls_struct_4byte g_dbl = { 127, 120 };
|
63
|
+
struct cls_struct_4byte f_dbl = { 12, 128 };
|
64
|
+
struct cls_struct_4byte res_dbl;
|
65
|
+
|
53
66
|
cls_struct_type.size = 0;
|
54
67
|
cls_struct_type.alignment = 0;
|
55
68
|
cls_struct_type.type = FFI_TYPE_STRUCT;
|
56
69
|
cls_struct_type.elements = cls_struct_fields;
|
57
70
|
|
58
|
-
struct cls_struct_4byte g_dbl = { 127, 120 };
|
59
|
-
struct cls_struct_4byte f_dbl = { 12, 128 };
|
60
|
-
struct cls_struct_4byte res_dbl;
|
61
|
-
|
62
71
|
cls_struct_fields[0] = &ffi_type_ushort;
|
63
72
|
cls_struct_fields[1] = &ffi_type_ushort;
|
64
73
|
cls_struct_fields[2] = NULL;
|
@@ -78,6 +87,8 @@ int main (void)
|
|
78
87
|
/* { dg-output "127 120 12 128: 139 248" } */
|
79
88
|
printf("res: %d %d\n", res_dbl.a, res_dbl.b);
|
80
89
|
/* { dg-output "\nres: 139 248" } */
|
90
|
+
CHECK(res_dbl.a == 139);
|
91
|
+
CHECK(res_dbl.b == 248);
|
81
92
|
|
82
93
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_4byte_gn, NULL, code) == FFI_OK);
|
83
94
|
|
@@ -85,6 +96,8 @@ int main (void)
|
|
85
96
|
/* { dg-output "\n127 120 12 128: 139 248" } */
|
86
97
|
printf("res: %d %d\n", res_dbl.a, res_dbl.b);
|
87
98
|
/* { dg-output "\nres: 139 248" } */
|
99
|
+
CHECK(res_dbl.a == 139);
|
100
|
+
CHECK(res_dbl.b == 248);
|
88
101
|
|
89
102
|
exit(0);
|
90
103
|
}
|
@@ -16,7 +16,7 @@ typedef struct cls_struct_5byte {
|
|
16
16
|
unsigned char e;
|
17
17
|
} cls_struct_5byte;
|
18
18
|
|
19
|
-
cls_struct_5byte cls_struct_5byte_fn(struct cls_struct_5byte a1,
|
19
|
+
static cls_struct_5byte cls_struct_5byte_fn(struct cls_struct_5byte a1,
|
20
20
|
struct cls_struct_5byte a2)
|
21
21
|
{
|
22
22
|
struct cls_struct_5byte result;
|
@@ -32,6 +32,24 @@ cls_struct_5byte cls_struct_5byte_fn(struct cls_struct_5byte a1,
|
|
32
32
|
a2.a, a2.b, a2.c, a2.d, a2.e,
|
33
33
|
result.a, result.b, result.c, result.d, result.e);
|
34
34
|
|
35
|
+
CHECK(a1.a == 127);
|
36
|
+
CHECK(a1.b == 120);
|
37
|
+
CHECK(a1.c == 1);
|
38
|
+
CHECK(a1.d == 3);
|
39
|
+
CHECK(a1.e == 4);
|
40
|
+
|
41
|
+
CHECK(a2.a == 12);
|
42
|
+
CHECK(a2.b == 128);
|
43
|
+
CHECK(a2.c == 9);
|
44
|
+
CHECK(a2.d == 3);
|
45
|
+
CHECK(a2.e == 4);
|
46
|
+
|
47
|
+
CHECK(result.a == 139);
|
48
|
+
CHECK(result.b == 248);
|
49
|
+
CHECK(result.c == 10);
|
50
|
+
CHECK(result.d == 6);
|
51
|
+
CHECK(result.e == 8);
|
52
|
+
|
35
53
|
return result;
|
36
54
|
}
|
37
55
|
|
@@ -58,15 +76,15 @@ int main (void)
|
|
58
76
|
ffi_type cls_struct_type;
|
59
77
|
ffi_type* dbl_arg_types[5];
|
60
78
|
|
79
|
+
struct cls_struct_5byte g_dbl = { 127, 120, 1, 3, 4 };
|
80
|
+
struct cls_struct_5byte f_dbl = { 12, 128, 9, 3, 4 };
|
81
|
+
struct cls_struct_5byte res_dbl = { 0, 0, 0, 0, 0 };
|
82
|
+
|
61
83
|
cls_struct_type.size = 0;
|
62
84
|
cls_struct_type.alignment = 0;
|
63
85
|
cls_struct_type.type = FFI_TYPE_STRUCT;
|
64
86
|
cls_struct_type.elements = cls_struct_fields;
|
65
87
|
|
66
|
-
struct cls_struct_5byte g_dbl = { 127, 120, 1, 3, 4 };
|
67
|
-
struct cls_struct_5byte f_dbl = { 12, 128, 9, 3, 4 };
|
68
|
-
struct cls_struct_5byte res_dbl = { 0, 0, 0, 0, 0 };
|
69
|
-
|
70
88
|
cls_struct_fields[0] = &ffi_type_uchar;
|
71
89
|
cls_struct_fields[1] = &ffi_type_uchar;
|
72
90
|
cls_struct_fields[2] = &ffi_type_uchar;
|
@@ -90,6 +108,11 @@ int main (void)
|
|
90
108
|
printf("res: %d %d %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c,
|
91
109
|
res_dbl.d, res_dbl.e);
|
92
110
|
/* { dg-output "\nres: 139 248 10 6 8" } */
|
111
|
+
CHECK(res_dbl.a == 139);
|
112
|
+
CHECK(res_dbl.b == 248);
|
113
|
+
CHECK(res_dbl.c == 10);
|
114
|
+
CHECK(res_dbl.d == 6);
|
115
|
+
CHECK(res_dbl.e == 8);
|
93
116
|
|
94
117
|
res_dbl.a = 0;
|
95
118
|
res_dbl.b = 0;
|
@@ -104,6 +127,11 @@ int main (void)
|
|
104
127
|
printf("res: %d %d %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c,
|
105
128
|
res_dbl.d, res_dbl.e);
|
106
129
|
/* { dg-output "\nres: 139 248 10 6 8" } */
|
130
|
+
CHECK(res_dbl.a == 139);
|
131
|
+
CHECK(res_dbl.b == 248);
|
132
|
+
CHECK(res_dbl.c == 10);
|
133
|
+
CHECK(res_dbl.d == 6);
|
134
|
+
CHECK(res_dbl.e == 8);
|
107
135
|
|
108
136
|
exit(0);
|
109
137
|
}
|
@@ -14,7 +14,7 @@ typedef struct cls_struct_5byte {
|
|
14
14
|
unsigned char c;
|
15
15
|
} cls_struct_5byte;
|
16
16
|
|
17
|
-
cls_struct_5byte cls_struct_5byte_fn(struct cls_struct_5byte a1,
|
17
|
+
static cls_struct_5byte cls_struct_5byte_fn(struct cls_struct_5byte a1,
|
18
18
|
struct cls_struct_5byte a2)
|
19
19
|
{
|
20
20
|
struct cls_struct_5byte result;
|
@@ -27,6 +27,18 @@ cls_struct_5byte cls_struct_5byte_fn(struct cls_struct_5byte a1,
|
|
27
27
|
a2.a, a2.b, a2.c,
|
28
28
|
result.a, result.b, result.c);
|
29
29
|
|
30
|
+
CHECK(a1.a == 127);
|
31
|
+
CHECK(a1.b == 120);
|
32
|
+
CHECK(a1.c == 1);
|
33
|
+
|
34
|
+
CHECK(a2.a == 12);
|
35
|
+
CHECK(a2.b == 128);
|
36
|
+
CHECK(a2.c == 9);
|
37
|
+
|
38
|
+
CHECK(result.a == 139);
|
39
|
+
CHECK(result.b == 248);
|
40
|
+
CHECK(result.c == 10);
|
41
|
+
|
30
42
|
return result;
|
31
43
|
}
|
32
44
|
|
@@ -53,15 +65,15 @@ int main (void)
|
|
53
65
|
ffi_type cls_struct_type;
|
54
66
|
ffi_type* dbl_arg_types[5];
|
55
67
|
|
68
|
+
struct cls_struct_5byte g_dbl = { 127, 120, 1 };
|
69
|
+
struct cls_struct_5byte f_dbl = { 12, 128, 9 };
|
70
|
+
struct cls_struct_5byte res_dbl = { 0, 0, 0 };
|
71
|
+
|
56
72
|
cls_struct_type.size = 0;
|
57
73
|
cls_struct_type.alignment = 0;
|
58
74
|
cls_struct_type.type = FFI_TYPE_STRUCT;
|
59
75
|
cls_struct_type.elements = cls_struct_fields;
|
60
76
|
|
61
|
-
struct cls_struct_5byte g_dbl = { 127, 120, 1 };
|
62
|
-
struct cls_struct_5byte f_dbl = { 12, 128, 9 };
|
63
|
-
struct cls_struct_5byte res_dbl = { 0, 0, 0 };
|
64
|
-
|
65
77
|
cls_struct_fields[0] = &ffi_type_ushort;
|
66
78
|
cls_struct_fields[1] = &ffi_type_ushort;
|
67
79
|
cls_struct_fields[2] = &ffi_type_uchar;
|
@@ -82,6 +94,9 @@ int main (void)
|
|
82
94
|
/* { dg-output "127 120 1 12 128 9: 139 248 10" } */
|
83
95
|
printf("res: %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
84
96
|
/* { dg-output "\nres: 139 248 10" } */
|
97
|
+
CHECK(res_dbl.a == 139);
|
98
|
+
CHECK(res_dbl.b == 248);
|
99
|
+
CHECK(res_dbl.c == 10);
|
85
100
|
|
86
101
|
res_dbl.a = 0;
|
87
102
|
res_dbl.b = 0;
|
@@ -93,6 +108,9 @@ int main (void)
|
|
93
108
|
/* { dg-output "\n127 120 1 12 128 9: 139 248 10" } */
|
94
109
|
printf("res: %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
95
110
|
/* { dg-output "\nres: 139 248 10" } */
|
111
|
+
CHECK(res_dbl.a == 139);
|
112
|
+
CHECK(res_dbl.b == 248);
|
113
|
+
CHECK(res_dbl.c == 10);
|
96
114
|
|
97
115
|
exit(0);
|
98
116
|
}
|
@@ -38,6 +38,14 @@ cls_struct_64byte cls_struct_64byte_fn(struct cls_struct_64byte b0,
|
|
38
38
|
|
39
39
|
printf("%g %g %g %g %g %g %g %g\n", result.a, result.b, result.c,
|
40
40
|
result.d, result.e, result.f, result.g, result.h);
|
41
|
+
CHECK(result.a == 22);
|
42
|
+
CHECK(result.b == 15);
|
43
|
+
CHECK(result.c == 17);
|
44
|
+
CHECK(result.d == 25);
|
45
|
+
CHECK(result.e == 6);
|
46
|
+
CHECK(result.f == 13);
|
47
|
+
CHECK(result.g == 19);
|
48
|
+
CHECK(result.h == 18);
|
41
49
|
|
42
50
|
return result;
|
43
51
|
}
|
@@ -66,17 +74,17 @@ int main (void)
|
|
66
74
|
ffi_type cls_struct_type;
|
67
75
|
ffi_type* dbl_arg_types[5];
|
68
76
|
|
69
|
-
cls_struct_type.size = 0;
|
70
|
-
cls_struct_type.alignment = 0;
|
71
|
-
cls_struct_type.type = FFI_TYPE_STRUCT;
|
72
|
-
cls_struct_type.elements = cls_struct_fields;
|
73
|
-
|
74
77
|
struct cls_struct_64byte e_dbl = { 9.0, 2.0, 6.0, 5.0, 3.0, 4.0, 8.0, 1.0 };
|
75
78
|
struct cls_struct_64byte f_dbl = { 1.0, 2.0, 3.0, 7.0, 2.0, 5.0, 6.0, 7.0 };
|
76
79
|
struct cls_struct_64byte g_dbl = { 4.0, 5.0, 7.0, 9.0, 1.0, 1.0, 2.0, 9.0 };
|
77
80
|
struct cls_struct_64byte h_dbl = { 8.0, 6.0, 1.0, 4.0, 0.0, 3.0, 3.0, 1.0 };
|
78
81
|
struct cls_struct_64byte res_dbl;
|
79
82
|
|
83
|
+
cls_struct_type.size = 0;
|
84
|
+
cls_struct_type.alignment = 0;
|
85
|
+
cls_struct_type.type = FFI_TYPE_STRUCT;
|
86
|
+
cls_struct_type.elements = cls_struct_fields;
|
87
|
+
|
80
88
|
cls_struct_fields[0] = &ffi_type_double;
|
81
89
|
cls_struct_fields[1] = &ffi_type_double;
|
82
90
|
cls_struct_fields[2] = &ffi_type_double;
|
@@ -107,6 +115,14 @@ int main (void)
|
|
107
115
|
printf("res: %g %g %g %g %g %g %g %g\n", res_dbl.a, res_dbl.b, res_dbl.c,
|
108
116
|
res_dbl.d, res_dbl.e, res_dbl.f, res_dbl.g, res_dbl.h);
|
109
117
|
/* { dg-output "\nres: 22 15 17 25 6 13 19 18" } */
|
118
|
+
CHECK(res_dbl.a == 22);
|
119
|
+
CHECK(res_dbl.b == 15);
|
120
|
+
CHECK(res_dbl.c == 17);
|
121
|
+
CHECK(res_dbl.d == 25);
|
122
|
+
CHECK(res_dbl.e == 6);
|
123
|
+
CHECK(res_dbl.f == 13);
|
124
|
+
CHECK(res_dbl.g == 19);
|
125
|
+
CHECK(res_dbl.h == 18);
|
110
126
|
|
111
127
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_64byte_gn, NULL, code) == FFI_OK);
|
112
128
|
|
@@ -119,6 +135,14 @@ int main (void)
|
|
119
135
|
printf("res: %g %g %g %g %g %g %g %g\n", res_dbl.a, res_dbl.b, res_dbl.c,
|
120
136
|
res_dbl.d, res_dbl.e, res_dbl.f, res_dbl.g, res_dbl.h);
|
121
137
|
/* { dg-output "\nres: 22 15 17 25 6 13 19 18" } */
|
138
|
+
CHECK(res_dbl.a == 22);
|
139
|
+
CHECK(res_dbl.b == 15);
|
140
|
+
CHECK(res_dbl.c == 17);
|
141
|
+
CHECK(res_dbl.d == 25);
|
142
|
+
CHECK(res_dbl.e == 6);
|
143
|
+
CHECK(res_dbl.f == 13);
|
144
|
+
CHECK(res_dbl.g == 19);
|
145
|
+
CHECK(res_dbl.h == 18);
|
122
146
|
|
123
147
|
exit(0);
|
124
148
|
}
|
@@ -17,7 +17,7 @@ typedef struct cls_struct_6byte {
|
|
17
17
|
unsigned char f;
|
18
18
|
} cls_struct_6byte;
|
19
19
|
|
20
|
-
cls_struct_6byte cls_struct_6byte_fn(struct cls_struct_6byte a1,
|
20
|
+
static cls_struct_6byte cls_struct_6byte_fn(struct cls_struct_6byte a1,
|
21
21
|
struct cls_struct_6byte a2)
|
22
22
|
{
|
23
23
|
struct cls_struct_6byte result;
|
@@ -34,6 +34,27 @@ cls_struct_6byte cls_struct_6byte_fn(struct cls_struct_6byte a1,
|
|
34
34
|
a2.a, a2.b, a2.c, a2.d, a2.e, a2.f,
|
35
35
|
result.a, result.b, result.c, result.d, result.e, result.f);
|
36
36
|
|
37
|
+
CHECK(a1.a == 127);
|
38
|
+
CHECK(a1.b == 120);
|
39
|
+
CHECK(a1.c == 1);
|
40
|
+
CHECK(a1.d == 3);
|
41
|
+
CHECK(a1.e == 4);
|
42
|
+
CHECK(a1.f == 5);
|
43
|
+
|
44
|
+
CHECK(a2.a == 12);
|
45
|
+
CHECK(a2.b == 128);
|
46
|
+
CHECK(a2.c == 9);
|
47
|
+
CHECK(a2.d == 3);
|
48
|
+
CHECK(a2.e == 4);
|
49
|
+
CHECK(a2.f == 5);
|
50
|
+
|
51
|
+
CHECK(result.a == 139);
|
52
|
+
CHECK(result.b == 248);
|
53
|
+
CHECK(result.c == 10);
|
54
|
+
CHECK(result.d == 6);
|
55
|
+
CHECK(result.e == 8);
|
56
|
+
CHECK(result.f == 10);
|
57
|
+
|
37
58
|
return result;
|
38
59
|
}
|
39
60
|
|
@@ -60,15 +81,15 @@ int main (void)
|
|
60
81
|
ffi_type cls_struct_type;
|
61
82
|
ffi_type* dbl_arg_types[5];
|
62
83
|
|
84
|
+
struct cls_struct_6byte g_dbl = { 127, 120, 1, 3, 4, 5 };
|
85
|
+
struct cls_struct_6byte f_dbl = { 12, 128, 9, 3, 4, 5 };
|
86
|
+
struct cls_struct_6byte res_dbl = { 0, 0, 0, 0, 0, 0 };
|
87
|
+
|
63
88
|
cls_struct_type.size = 0;
|
64
89
|
cls_struct_type.alignment = 0;
|
65
90
|
cls_struct_type.type = FFI_TYPE_STRUCT;
|
66
91
|
cls_struct_type.elements = cls_struct_fields;
|
67
92
|
|
68
|
-
struct cls_struct_6byte g_dbl = { 127, 120, 1, 3, 4, 5 };
|
69
|
-
struct cls_struct_6byte f_dbl = { 12, 128, 9, 3, 4, 5 };
|
70
|
-
struct cls_struct_6byte res_dbl = { 0, 0, 0, 0, 0, 0 };
|
71
|
-
|
72
93
|
cls_struct_fields[0] = &ffi_type_uchar;
|
73
94
|
cls_struct_fields[1] = &ffi_type_uchar;
|
74
95
|
cls_struct_fields[2] = &ffi_type_uchar;
|
@@ -109,5 +130,11 @@ int main (void)
|
|
109
130
|
res_dbl.d, res_dbl.e, res_dbl.f);
|
110
131
|
/* { dg-output "\nres: 139 248 10 6 8 10" } */
|
111
132
|
|
133
|
+
CHECK(res_dbl.a == 139);
|
134
|
+
CHECK(res_dbl.b == 248);
|
135
|
+
CHECK(res_dbl.c == 10);
|
136
|
+
CHECK(res_dbl.d == 6);
|
137
|
+
CHECK(res_dbl.e == 8);
|
138
|
+
CHECK(res_dbl.f == 10);
|
112
139
|
exit(0);
|
113
140
|
}
|
@@ -16,7 +16,7 @@ typedef struct cls_struct_6byte {
|
|
16
16
|
unsigned char d;
|
17
17
|
} cls_struct_6byte;
|
18
18
|
|
19
|
-
cls_struct_6byte cls_struct_6byte_fn(struct cls_struct_6byte a1,
|
19
|
+
static cls_struct_6byte cls_struct_6byte_fn(struct cls_struct_6byte a1,
|
20
20
|
struct cls_struct_6byte a2)
|
21
21
|
{
|
22
22
|
struct cls_struct_6byte result;
|
@@ -30,6 +30,21 @@ cls_struct_6byte cls_struct_6byte_fn(struct cls_struct_6byte a1,
|
|
30
30
|
a2.a, a2.b, a2.c, a2.d,
|
31
31
|
result.a, result.b, result.c, result.d);
|
32
32
|
|
33
|
+
CHECK(a1.a == 127);
|
34
|
+
CHECK(a1.b == 120);
|
35
|
+
CHECK(a1.c == 1);
|
36
|
+
CHECK(a1.d == 128);
|
37
|
+
|
38
|
+
CHECK(a2.a == 12);
|
39
|
+
CHECK(a2.b == 128);
|
40
|
+
CHECK(a2.c == 9);
|
41
|
+
CHECK(a2.d == 127);
|
42
|
+
|
43
|
+
CHECK(result.a == 139);
|
44
|
+
CHECK(result.b == 248);
|
45
|
+
CHECK(result.c == 10);
|
46
|
+
CHECK(result.d == 255);
|
47
|
+
|
33
48
|
return result;
|
34
49
|
}
|
35
50
|
|
@@ -56,15 +71,15 @@ int main (void)
|
|
56
71
|
ffi_type cls_struct_type;
|
57
72
|
ffi_type* dbl_arg_types[5];
|
58
73
|
|
74
|
+
struct cls_struct_6byte g_dbl = { 127, 120, 1, 128 };
|
75
|
+
struct cls_struct_6byte f_dbl = { 12, 128, 9, 127 };
|
76
|
+
struct cls_struct_6byte res_dbl;
|
77
|
+
|
59
78
|
cls_struct_type.size = 0;
|
60
79
|
cls_struct_type.alignment = 0;
|
61
80
|
cls_struct_type.type = FFI_TYPE_STRUCT;
|
62
81
|
cls_struct_type.elements = cls_struct_fields;
|
63
82
|
|
64
|
-
struct cls_struct_6byte g_dbl = { 127, 120, 1, 128 };
|
65
|
-
struct cls_struct_6byte f_dbl = { 12, 128, 9, 127 };
|
66
|
-
struct cls_struct_6byte res_dbl;
|
67
|
-
|
68
83
|
cls_struct_fields[0] = &ffi_type_ushort;
|
69
84
|
cls_struct_fields[1] = &ffi_type_ushort;
|
70
85
|
cls_struct_fields[2] = &ffi_type_uchar;
|
@@ -86,6 +101,10 @@ int main (void)
|
|
86
101
|
/* { dg-output "127 120 1 128 12 128 9 127: 139 248 10 255" } */
|
87
102
|
printf("res: %d %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c, res_dbl.d);
|
88
103
|
/* { dg-output "\nres: 139 248 10 255" } */
|
104
|
+
CHECK(res_dbl.a == 139);
|
105
|
+
CHECK(res_dbl.b == 248);
|
106
|
+
CHECK(res_dbl.c == 10);
|
107
|
+
CHECK(res_dbl.d == 255);
|
89
108
|
|
90
109
|
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_6byte_gn, NULL, code) == FFI_OK);
|
91
110
|
|
@@ -93,7 +112,10 @@ int main (void)
|
|
93
112
|
/* { dg-output "\n127 120 1 128 12 128 9 127: 139 248 10 255" } */
|
94
113
|
printf("res: %d %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c, res_dbl.d);
|
95
114
|
/* { dg-output "\nres: 139 248 10 255" } */
|
96
|
-
|
115
|
+
CHECK(res_dbl.a == 139);
|
116
|
+
CHECK(res_dbl.b == 248);
|
117
|
+
CHECK(res_dbl.c == 10);
|
118
|
+
CHECK(res_dbl.d == 255);
|
97
119
|
|
98
120
|
exit(0);
|
99
121
|
}
|