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
data/ext/ffi_c/AbstractMemory.c
CHANGED
@@ -1,38 +1,44 @@
|
|
1
1
|
/*
|
2
2
|
* Copyright (c) 2008, 2009, Wayne Meissner
|
3
|
+
* Copyright (C) 2009 Jake Douglas <jake@shiftedlabs.com>
|
4
|
+
* Copyright (C) 2008 Luc Heinrich <luc@honk-honk.com>
|
3
5
|
*
|
6
|
+
* Copyright (c) 2008-2013, Ruby FFI project contributors
|
4
7
|
* All rights reserved.
|
5
8
|
*
|
6
|
-
*
|
9
|
+
* Redistribution and use in source and binary forms, with or without
|
10
|
+
* modification, are permitted provided that the following conditions are met:
|
11
|
+
* * Redistributions of source code must retain the above copyright
|
12
|
+
* notice, this list of conditions and the following disclaimer.
|
13
|
+
* * Redistributions in binary form must reproduce the above copyright
|
14
|
+
* notice, this list of conditions and the following disclaimer in the
|
15
|
+
* documentation and/or other materials provided with the distribution.
|
16
|
+
* * Neither the name of the Ruby FFI project nor the
|
17
|
+
* names of its contributors may be used to endorse or promote products
|
18
|
+
* derived from this software without specific prior written permission.
|
7
19
|
*
|
8
|
-
*
|
9
|
-
*
|
10
|
-
*
|
11
|
-
*
|
12
|
-
*
|
13
|
-
*
|
14
|
-
*
|
15
|
-
*
|
16
|
-
*
|
17
|
-
*
|
18
|
-
* version 3 along with this work. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
21
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
22
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
23
|
+
* DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
24
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
25
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
26
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
27
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
28
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
29
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
19
30
|
*/
|
20
31
|
|
21
32
|
#include <sys/types.h>
|
22
33
|
#ifndef _MSC_VER
|
23
|
-
#include <sys/param.h>
|
34
|
+
# include <sys/param.h>
|
35
|
+
#endif
|
24
36
|
#include <stdint.h>
|
25
37
|
#include <stdbool.h>
|
26
|
-
|
27
|
-
typedef int bool;
|
28
|
-
#define true 1
|
29
|
-
#define false 0
|
30
|
-
#endif
|
38
|
+
|
31
39
|
#include <limits.h>
|
32
40
|
#include <ruby.h>
|
33
|
-
|
34
|
-
# include "win32/stdint.h"
|
35
|
-
#endif
|
41
|
+
|
36
42
|
#include "rbffi.h"
|
37
43
|
#include "compat.h"
|
38
44
|
#include "AbstractMemory.h"
|
@@ -40,22 +46,39 @@ typedef int bool;
|
|
40
46
|
#include "Function.h"
|
41
47
|
#include "LongDouble.h"
|
42
48
|
|
49
|
+
#ifdef PRIsVALUE
|
50
|
+
# define RB_OBJ_CLASSNAME(obj) rb_obj_class(obj)
|
51
|
+
# define RB_OBJ_STRING(obj) (obj)
|
52
|
+
#else
|
53
|
+
# define PRIsVALUE "s"
|
54
|
+
# define RB_OBJ_CLASSNAME(obj) rb_obj_classname(obj)
|
55
|
+
# define RB_OBJ_STRING(obj) StringValueCStr(obj)
|
56
|
+
#endif
|
43
57
|
|
58
|
+
static size_t memsize(const void *data);
|
44
59
|
static inline char* memory_address(VALUE self);
|
45
60
|
VALUE rbffi_AbstractMemoryClass = Qnil;
|
46
61
|
static VALUE NullPointerErrorClass = Qnil;
|
47
62
|
static ID id_to_ptr = 0, id_plus = 0, id_call = 0;
|
48
63
|
|
49
|
-
|
50
|
-
|
51
|
-
{
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
64
|
+
const rb_data_type_t rbffi_abstract_memory_data_type = { /* extern */
|
65
|
+
.wrap_struct_name = "FFI::AbstractMemory",
|
66
|
+
.function = {
|
67
|
+
.dmark = NULL,
|
68
|
+
.dfree = RUBY_TYPED_DEFAULT_FREE,
|
69
|
+
.dsize = memsize,
|
70
|
+
},
|
71
|
+
// IMPORTANT: WB_PROTECTED objects must only use the RB_OBJ_WRITE()
|
72
|
+
// macro to update VALUE references, as to trigger write barriers.
|
73
|
+
.flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | FFI_RUBY_TYPED_FROZEN_SHAREABLE
|
74
|
+
};
|
56
75
|
|
57
|
-
|
76
|
+
static size_t
|
77
|
+
memsize(const void *data)
|
78
|
+
{
|
79
|
+
return sizeof(AbstractMemory);
|
58
80
|
}
|
81
|
+
|
59
82
|
#define VAL(x, swap) (unlikely(((memory->flags & MEM_SWAP) != 0)) ? swap((x)) : (x))
|
60
83
|
|
61
84
|
#define NUM_OP(name, type, toNative, fromNative, swap) \
|
@@ -73,7 +96,7 @@ static VALUE \
|
|
73
96
|
memory_put_##name(VALUE self, VALUE offset, VALUE value) \
|
74
97
|
{ \
|
75
98
|
AbstractMemory* memory; \
|
76
|
-
|
99
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, memory); \
|
77
100
|
memory_op_put_##name(memory, NUM2LONG(offset), value); \
|
78
101
|
return self; \
|
79
102
|
} \
|
@@ -82,7 +105,7 @@ static VALUE \
|
|
82
105
|
memory_write_##name(VALUE self, VALUE value) \
|
83
106
|
{ \
|
84
107
|
AbstractMemory* memory; \
|
85
|
-
|
108
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, memory); \
|
86
109
|
memory_op_put_##name(memory, 0, value); \
|
87
110
|
return self; \
|
88
111
|
} \
|
@@ -101,7 +124,7 @@ static VALUE \
|
|
101
124
|
memory_get_##name(VALUE self, VALUE offset) \
|
102
125
|
{ \
|
103
126
|
AbstractMemory* memory; \
|
104
|
-
|
127
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, memory); \
|
105
128
|
return memory_op_get_##name(memory, NUM2LONG(offset)); \
|
106
129
|
} \
|
107
130
|
static VALUE memory_read_##name(VALUE self); \
|
@@ -109,7 +132,7 @@ static VALUE \
|
|
109
132
|
memory_read_##name(VALUE self) \
|
110
133
|
{ \
|
111
134
|
AbstractMemory* memory; \
|
112
|
-
|
135
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, memory); \
|
113
136
|
return memory_op_get_##name(memory, 0); \
|
114
137
|
} \
|
115
138
|
static MemoryOp memory_op_##name = { memory_op_get_##name, memory_op_put_##name }; \
|
@@ -118,14 +141,16 @@ static VALUE memory_put_array_of_##name(VALUE self, VALUE offset, VALUE ary); \
|
|
118
141
|
static VALUE \
|
119
142
|
memory_put_array_of_##name(VALUE self, VALUE offset, VALUE ary) \
|
120
143
|
{ \
|
121
|
-
long count
|
144
|
+
long count; \
|
122
145
|
long off = NUM2LONG(offset); \
|
123
146
|
AbstractMemory* memory = MEMORY(self); \
|
124
147
|
long i; \
|
125
|
-
|
148
|
+
Check_Type(ary, T_ARRAY); \
|
149
|
+
count = RARRAY_LEN(ary); \
|
150
|
+
if (likely(count > 0)) checkWrite(memory); \
|
126
151
|
checkBounds(memory, off, count * sizeof(type)); \
|
127
152
|
for (i = 0; i < count; i++) { \
|
128
|
-
type tmp = (type) VAL(toNative(
|
153
|
+
type tmp = (type) VAL(toNative(RARRAY_AREF(ary, i)), swap); \
|
129
154
|
memcpy(memory->address + off + (i * sizeof(type)), &tmp, sizeof(tmp)); \
|
130
155
|
} \
|
131
156
|
return self; \
|
@@ -145,7 +170,7 @@ memory_get_array_of_##name(VALUE self, VALUE offset, VALUE length) \
|
|
145
170
|
AbstractMemory* memory = MEMORY(self); \
|
146
171
|
VALUE retVal = rb_ary_new2(count); \
|
147
172
|
long i; \
|
148
|
-
checkRead(memory); \
|
173
|
+
if (likely(count > 0)) checkRead(memory); \
|
149
174
|
checkBounds(memory, off, count * sizeof(type)); \
|
150
175
|
for (i = 0; i < count; ++i) { \
|
151
176
|
type tmp; \
|
@@ -192,13 +217,13 @@ SWAPU16(uint16_t x)
|
|
192
217
|
((x >> 40) & 0x000000000000ff00ULL) | \
|
193
218
|
((x >> 56) & 0x00000000000000ffULL))
|
194
219
|
|
195
|
-
static inline int32_t
|
220
|
+
static inline int32_t
|
196
221
|
SWAPS32(int32_t x)
|
197
222
|
{
|
198
223
|
return bswap32(x);
|
199
224
|
}
|
200
225
|
|
201
|
-
static inline uint32_t
|
226
|
+
static inline uint32_t
|
202
227
|
SWAPU32(uint32_t x)
|
203
228
|
{
|
204
229
|
return bswap32(x);
|
@@ -291,6 +316,7 @@ static VALUE
|
|
291
316
|
memory_clear(VALUE self)
|
292
317
|
{
|
293
318
|
AbstractMemory* ptr = MEMORY(self);
|
319
|
+
checkWrite(ptr);
|
294
320
|
memset(ptr->address, 0, ptr->size);
|
295
321
|
return self;
|
296
322
|
}
|
@@ -298,23 +324,91 @@ memory_clear(VALUE self)
|
|
298
324
|
/*
|
299
325
|
* call-seq: memory.size
|
300
326
|
* Return memory size in bytes (alias: #total)
|
301
|
-
* @return [
|
327
|
+
* @return [Integer]
|
302
328
|
*/
|
303
329
|
static VALUE
|
304
|
-
memory_size(VALUE self)
|
330
|
+
memory_size(VALUE self)
|
305
331
|
{
|
306
332
|
AbstractMemory* ptr;
|
307
333
|
|
308
|
-
|
334
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, ptr);
|
309
335
|
|
310
336
|
return LONG2NUM(ptr->size);
|
311
337
|
}
|
312
338
|
|
339
|
+
/*
|
340
|
+
* call-seq: memory.get(type, offset)
|
341
|
+
* Return data of given type contained in memory.
|
342
|
+
* @param [Symbol, Type] type_name type of data to get
|
343
|
+
* @param [Integer] offset point in buffer to start from
|
344
|
+
* @return [Object]
|
345
|
+
* @raise {ArgumentError} if type is not supported
|
346
|
+
*/
|
347
|
+
static VALUE
|
348
|
+
memory_get(VALUE self, VALUE type_name, VALUE offset)
|
349
|
+
{
|
350
|
+
AbstractMemory* ptr;
|
351
|
+
VALUE nType;
|
352
|
+
Type *type;
|
353
|
+
MemoryOp *op;
|
354
|
+
|
355
|
+
nType = rbffi_Type_Lookup(type_name);
|
356
|
+
if(NIL_P(nType)) goto undefined_type;
|
357
|
+
|
358
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, ptr);
|
359
|
+
TypedData_Get_Struct(nType, Type, &rbffi_type_data_type, type);
|
360
|
+
|
361
|
+
op = get_memory_op(type);
|
362
|
+
if(op == NULL) goto undefined_type;
|
363
|
+
|
364
|
+
return op->get(ptr, NUM2LONG(offset));
|
365
|
+
|
366
|
+
undefined_type: {
|
367
|
+
VALUE msg = rb_sprintf("undefined type '%" PRIsVALUE "'", type_name);
|
368
|
+
rb_exc_raise(rb_exc_new3(rb_eArgError, msg));
|
369
|
+
return Qnil;
|
370
|
+
}
|
371
|
+
}
|
372
|
+
|
373
|
+
/*
|
374
|
+
* call-seq: memory.put(type, offset, value)
|
375
|
+
* @param [Symbol, Type] type_name type of data to put
|
376
|
+
* @param [Integer] offset point in buffer to start from
|
377
|
+
* @return [nil]
|
378
|
+
* @raise {ArgumentError} if type is not supported
|
379
|
+
*/
|
380
|
+
static VALUE
|
381
|
+
memory_put(VALUE self, VALUE type_name, VALUE offset, VALUE value)
|
382
|
+
{
|
383
|
+
AbstractMemory* ptr;
|
384
|
+
VALUE nType;
|
385
|
+
Type *type;
|
386
|
+
MemoryOp *op;
|
387
|
+
|
388
|
+
nType = rbffi_Type_Lookup(type_name);
|
389
|
+
if(NIL_P(nType)) goto undefined_type;
|
390
|
+
|
391
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, ptr);
|
392
|
+
TypedData_Get_Struct(nType, Type, &rbffi_type_data_type, type);
|
393
|
+
|
394
|
+
op = get_memory_op(type);
|
395
|
+
if(op == NULL) goto undefined_type;
|
396
|
+
|
397
|
+
op->put(ptr, NUM2LONG(offset), value);
|
398
|
+
return Qnil;
|
399
|
+
|
400
|
+
undefined_type: {
|
401
|
+
VALUE msg = rb_sprintf("unsupported type '%" PRIsVALUE "'", type_name);
|
402
|
+
rb_exc_raise(rb_exc_new3(rb_eArgError, msg));
|
403
|
+
return Qnil;
|
404
|
+
}
|
405
|
+
}
|
406
|
+
|
313
407
|
/*
|
314
408
|
* call-seq: memory.get_string(offset, length=nil)
|
315
409
|
* Return string contained in memory.
|
316
|
-
* @param [
|
317
|
-
* @param [
|
410
|
+
* @param [Integer] offset point in buffer to start from
|
411
|
+
* @param [Integer] length string's length in bytes. If nil, a (memory size - offset) length string is returned).
|
318
412
|
* @return [String]
|
319
413
|
* @raise {IndexError} if +length+ is too great
|
320
414
|
* @raise {NullPointerError} if memory not initialized
|
@@ -334,15 +428,15 @@ memory_get_string(int argc, VALUE* argv, VALUE self)
|
|
334
428
|
checkBounds(ptr, off, len);
|
335
429
|
|
336
430
|
end = memchr(ptr->address + off, 0, len);
|
337
|
-
return
|
431
|
+
return rb_str_new((char *) ptr->address + off,
|
338
432
|
(end != NULL ? end - ptr->address - off : len));
|
339
433
|
}
|
340
434
|
|
341
435
|
/*
|
342
436
|
* call-seq: memory.get_array_of_string(offset, count=nil)
|
343
437
|
* Return an array of strings contained in memory.
|
344
|
-
* @param [
|
345
|
-
* @param [
|
438
|
+
* @param [Integer] offset point in memory to start from
|
439
|
+
* @param [Integer] count number of strings to get. If nil, return all strings
|
346
440
|
* @return [Array<String>]
|
347
441
|
* @raise {IndexError} if +offset+ is too great
|
348
442
|
* @raise {NullPointerError} if memory not initialized
|
@@ -360,17 +454,17 @@ memory_get_array_of_string(int argc, VALUE* argv, VALUE self)
|
|
360
454
|
count = (countnum == Qnil ? 0 : NUM2INT(countnum));
|
361
455
|
retVal = rb_ary_new2(count);
|
362
456
|
|
363
|
-
|
457
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, ptr);
|
364
458
|
checkRead(ptr);
|
365
459
|
|
366
460
|
if (countnum != Qnil) {
|
367
461
|
int i;
|
368
462
|
|
369
463
|
checkBounds(ptr, off, count * sizeof (char*));
|
370
|
-
|
464
|
+
|
371
465
|
for (i = 0; i < count; ++i) {
|
372
466
|
const char* strptr = *((const char**) (ptr->address + off) + i);
|
373
|
-
rb_ary_push(retVal, (strptr == NULL ? Qnil :
|
467
|
+
rb_ary_push(retVal, (strptr == NULL ? Qnil : rb_str_new2(strptr)));
|
374
468
|
}
|
375
469
|
|
376
470
|
} else {
|
@@ -380,7 +474,7 @@ memory_get_array_of_string(int argc, VALUE* argv, VALUE self)
|
|
380
474
|
if (strptr == NULL) {
|
381
475
|
break;
|
382
476
|
}
|
383
|
-
rb_ary_push(retVal,
|
477
|
+
rb_ary_push(retVal, rb_str_new2(strptr));
|
384
478
|
}
|
385
479
|
}
|
386
480
|
|
@@ -391,10 +485,10 @@ memory_get_array_of_string(int argc, VALUE* argv, VALUE self)
|
|
391
485
|
* call-seq: memory.read_array_of_string(count=nil)
|
392
486
|
* Return an array of strings contained in memory. Same as:
|
393
487
|
* memory.get_array_of_string(0, count)
|
394
|
-
* @param [
|
488
|
+
* @param [Integer] count number of strings to get. If nil, return all strings
|
395
489
|
* @return [Array<String>]
|
396
490
|
*/
|
397
|
-
static VALUE
|
491
|
+
static VALUE
|
398
492
|
memory_read_array_of_string(int argc, VALUE* argv, VALUE self)
|
399
493
|
{
|
400
494
|
VALUE* rargv = ALLOCA_N(VALUE, argc + 1);
|
@@ -411,7 +505,7 @@ memory_read_array_of_string(int argc, VALUE* argv, VALUE self)
|
|
411
505
|
|
412
506
|
/*
|
413
507
|
* call-seq: memory.put_string(offset, str)
|
414
|
-
* @param [
|
508
|
+
* @param [Integer] offset
|
415
509
|
* @param [String] str
|
416
510
|
* @return [self]
|
417
511
|
* @raise {SecurityError} when writing unsafe string to memory
|
@@ -431,11 +525,6 @@ memory_put_string(VALUE self, VALUE offset, VALUE str)
|
|
431
525
|
|
432
526
|
checkWrite(ptr);
|
433
527
|
checkBounds(ptr, off, len + 1);
|
434
|
-
|
435
|
-
if (rb_safe_level() >= 1 && OBJ_TAINTED(str)) {
|
436
|
-
rb_raise(rb_eSecurityError, "Writing unsafe string to memory");
|
437
|
-
return Qnil;
|
438
|
-
}
|
439
528
|
|
440
529
|
memcpy(ptr->address + off, RSTRING_PTR(str), len);
|
441
530
|
*((char *) ptr->address + off + len) = '\0';
|
@@ -446,8 +535,8 @@ memory_put_string(VALUE self, VALUE offset, VALUE str)
|
|
446
535
|
/*
|
447
536
|
* call-seq: memory.get_bytes(offset, length)
|
448
537
|
* Return string contained in memory.
|
449
|
-
* @param [
|
450
|
-
* @param [
|
538
|
+
* @param [Integer] offset point in buffer to start from
|
539
|
+
* @param [Integer] length string's length in bytes.
|
451
540
|
* @return [String]
|
452
541
|
* @raise {IndexError} if +length+ is too great
|
453
542
|
* @raise {NullPointerError} if memory not initialized
|
@@ -457,23 +546,23 @@ memory_get_bytes(VALUE self, VALUE offset, VALUE length)
|
|
457
546
|
{
|
458
547
|
AbstractMemory* ptr = MEMORY(self);
|
459
548
|
long off, len;
|
460
|
-
|
549
|
+
|
461
550
|
off = NUM2LONG(offset);
|
462
551
|
len = NUM2LONG(length);
|
463
552
|
|
464
553
|
checkRead(ptr);
|
465
554
|
checkBounds(ptr, off, len);
|
466
|
-
|
467
|
-
return
|
555
|
+
|
556
|
+
return rb_str_new((char *) ptr->address + off, len);
|
468
557
|
}
|
469
558
|
|
470
559
|
/*
|
471
560
|
* call-seq: memory.put_bytes(offset, str, index=0, length=nil)
|
472
561
|
* Put a string in memory.
|
473
|
-
* @param [
|
562
|
+
* @param [Integer] offset point in buffer to start from
|
474
563
|
* @param [String] str string to put to memory
|
475
|
-
* @param [
|
476
|
-
* @param [
|
564
|
+
* @param [Integer] index
|
565
|
+
* @param [Integer] length string's length in bytes. If nil, a (memory size - offset) length string is returned).
|
477
566
|
* @return [self]
|
478
567
|
* @raise {IndexError} if +length+ is too great
|
479
568
|
* @raise {NullPointerError} if memory not initialized
|
@@ -493,7 +582,7 @@ memory_put_bytes(int argc, VALUE* argv, VALUE self)
|
|
493
582
|
off = NUM2LONG(offset);
|
494
583
|
idx = nargs > 2 ? NUM2LONG(rbIndex) : 0;
|
495
584
|
if (idx < 0) {
|
496
|
-
rb_raise(rb_eRangeError, "index
|
585
|
+
rb_raise(rb_eRangeError, "index cannot be less than zero");
|
497
586
|
return Qnil;
|
498
587
|
}
|
499
588
|
len = nargs > 3 ? NUM2LONG(rbLength) : (RSTRING_LEN(str) - idx);
|
@@ -505,10 +594,6 @@ memory_put_bytes(int argc, VALUE* argv, VALUE self)
|
|
505
594
|
checkWrite(ptr);
|
506
595
|
checkBounds(ptr, off, len);
|
507
596
|
|
508
|
-
if (rb_safe_level() >= 1 && OBJ_TAINTED(str)) {
|
509
|
-
rb_raise(rb_eSecurityError, "Writing unsafe string to memory");
|
510
|
-
return Qnil;
|
511
|
-
}
|
512
597
|
memcpy(ptr->address + off, RSTRING_PTR(str) + idx, len);
|
513
598
|
|
514
599
|
return self;
|
@@ -516,12 +601,12 @@ memory_put_bytes(int argc, VALUE* argv, VALUE self)
|
|
516
601
|
|
517
602
|
/*
|
518
603
|
* call-seq: memory.read_bytes(length)
|
519
|
-
* @param [
|
604
|
+
* @param [Integer] length of string to return
|
520
605
|
* @return [String]
|
521
606
|
* equivalent to :
|
522
607
|
* memory.get_bytes(0, length)
|
523
608
|
*/
|
524
|
-
static VALUE
|
609
|
+
static VALUE
|
525
610
|
memory_read_bytes(VALUE self, VALUE length)
|
526
611
|
{
|
527
612
|
return memory_get_bytes(self, INT2FIX(0), length);
|
@@ -530,13 +615,13 @@ memory_read_bytes(VALUE self, VALUE length)
|
|
530
615
|
/*
|
531
616
|
* call-seq: memory.write_bytes(str, index=0, length=nil)
|
532
617
|
* @param [String] str string to put to memory
|
533
|
-
* @param [
|
534
|
-
* @param [
|
618
|
+
* @param [Integer] index
|
619
|
+
* @param [Integer] length string's length in bytes. If nil, a (memory size - offset) length string is returned).
|
535
620
|
* @return [self]
|
536
621
|
* equivalent to :
|
537
622
|
* memory.put_bytes(0, str, index, length)
|
538
623
|
*/
|
539
|
-
static VALUE
|
624
|
+
static VALUE
|
540
625
|
memory_write_bytes(int argc, VALUE* argv, VALUE self)
|
541
626
|
{
|
542
627
|
VALUE* wargv = ALLOCA_N(VALUE, argc + 1);
|
@@ -552,7 +637,7 @@ memory_write_bytes(int argc, VALUE* argv, VALUE self)
|
|
552
637
|
|
553
638
|
/*
|
554
639
|
* call-seq: memory.type_size
|
555
|
-
* @return [
|
640
|
+
* @return [Integer] type size in bytes
|
556
641
|
* Get the memory's type size.
|
557
642
|
*/
|
558
643
|
static VALUE
|
@@ -560,7 +645,7 @@ memory_type_size(VALUE self)
|
|
560
645
|
{
|
561
646
|
AbstractMemory* ptr;
|
562
647
|
|
563
|
-
|
648
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, ptr);
|
564
649
|
|
565
650
|
return INT2NUM(ptr->typeSize);
|
566
651
|
}
|
@@ -568,8 +653,8 @@ memory_type_size(VALUE self)
|
|
568
653
|
/*
|
569
654
|
* Document-method: []
|
570
655
|
* call-seq: memory[idx]
|
571
|
-
* @param [
|
572
|
-
* @return
|
656
|
+
* @param [Integer] idx index to access in memory
|
657
|
+
* @return
|
573
658
|
* Memory read accessor.
|
574
659
|
*/
|
575
660
|
static VALUE
|
@@ -578,7 +663,7 @@ memory_aref(VALUE self, VALUE idx)
|
|
578
663
|
AbstractMemory* ptr;
|
579
664
|
VALUE rbOffset = Qnil;
|
580
665
|
|
581
|
-
|
666
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, ptr);
|
582
667
|
|
583
668
|
rbOffset = ULONG2NUM(NUM2ULONG(idx) * ptr->typeSize);
|
584
669
|
|
@@ -588,7 +673,9 @@ memory_aref(VALUE self, VALUE idx)
|
|
588
673
|
static inline char*
|
589
674
|
memory_address(VALUE obj)
|
590
675
|
{
|
591
|
-
|
676
|
+
AbstractMemory *mem;
|
677
|
+
TypedData_Get_Struct(obj, AbstractMemory, &rbffi_abstract_memory_data_type, mem);
|
678
|
+
return mem->address;
|
592
679
|
}
|
593
680
|
|
594
681
|
static VALUE
|
@@ -596,24 +683,33 @@ memory_copy_from(VALUE self, VALUE rbsrc, VALUE rblen)
|
|
596
683
|
{
|
597
684
|
AbstractMemory* dst;
|
598
685
|
|
599
|
-
|
686
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, dst);
|
600
687
|
|
601
|
-
memcpy(dst->address, rbffi_AbstractMemory_Cast(rbsrc,
|
688
|
+
memcpy(dst->address, rbffi_AbstractMemory_Cast(rbsrc, &rbffi_abstract_memory_data_type)->address, NUM2INT(rblen));
|
602
689
|
|
603
690
|
return self;
|
604
691
|
}
|
605
692
|
|
606
|
-
|
607
|
-
|
693
|
+
/*
|
694
|
+
* call-seq:
|
695
|
+
* res.freeze
|
696
|
+
*
|
697
|
+
* Freeze the AbstractMemory object and unset the writable flag.
|
698
|
+
*/
|
699
|
+
static VALUE
|
700
|
+
memory_freeze(VALUE self)
|
608
701
|
{
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
}
|
702
|
+
AbstractMemory* ptr = MEMORY(self);
|
703
|
+
ptr->flags &= ~MEM_WR;
|
704
|
+
return rb_call_super(0, NULL);
|
705
|
+
}
|
614
706
|
|
615
|
-
|
616
|
-
|
707
|
+
AbstractMemory*
|
708
|
+
rbffi_AbstractMemory_Cast(VALUE obj, const rb_data_type_t *data_type)
|
709
|
+
{
|
710
|
+
AbstractMemory* memory;
|
711
|
+
TypedData_Get_Struct(obj, AbstractMemory, data_type, memory);
|
712
|
+
return memory;
|
617
713
|
}
|
618
714
|
|
619
715
|
void
|
@@ -640,7 +736,7 @@ memory_op_get_strptr(AbstractMemory* ptr, long offset)
|
|
640
736
|
memcpy(&tmp, ptr->address + offset, sizeof(tmp));
|
641
737
|
}
|
642
738
|
|
643
|
-
return tmp != NULL ?
|
739
|
+
return tmp != NULL ? rb_str_new2(tmp) : Qnil;
|
644
740
|
}
|
645
741
|
|
646
742
|
static void
|
@@ -651,33 +747,32 @@ memory_op_put_strptr(AbstractMemory* ptr, long offset, VALUE value)
|
|
651
747
|
|
652
748
|
static MemoryOp memory_op_strptr = { memory_op_get_strptr, memory_op_put_strptr };
|
653
749
|
|
654
|
-
//static MemoryOp memory_op_pointer = { memory_op_get_pointer, memory_op_put_pointer };
|
655
750
|
|
656
751
|
MemoryOps rbffi_AbstractMemoryOps = {
|
657
|
-
&memory_op_int8,
|
658
|
-
&memory_op_uint8,
|
659
|
-
&memory_op_int16,
|
660
|
-
&memory_op_uint16,
|
661
|
-
&memory_op_int32,
|
662
|
-
&memory_op_uint32,
|
663
|
-
&memory_op_int64,
|
664
|
-
&memory_op_uint64,
|
665
|
-
&memory_op_long,
|
666
|
-
&memory_op_ulong,
|
667
|
-
&memory_op_float32,
|
668
|
-
&memory_op_float64,
|
669
|
-
&memory_op_longdouble,
|
670
|
-
&memory_op_pointer,
|
671
|
-
&memory_op_strptr,
|
672
|
-
&memory_op_bool
|
752
|
+
&memory_op_int8, /*.int8 */
|
753
|
+
&memory_op_uint8, /* .uint8 */
|
754
|
+
&memory_op_int16, /* .int16 */
|
755
|
+
&memory_op_uint16, /* .uint16 */
|
756
|
+
&memory_op_int32, /* .int32 */
|
757
|
+
&memory_op_uint32, /* .uint32 */
|
758
|
+
&memory_op_int64, /* .int64 */
|
759
|
+
&memory_op_uint64, /* .uint64 */
|
760
|
+
&memory_op_long, /* .slong */
|
761
|
+
&memory_op_ulong, /* .uslong */
|
762
|
+
&memory_op_float32, /* .float32 */
|
763
|
+
&memory_op_float64, /* .float64 */
|
764
|
+
&memory_op_longdouble, /* .longdouble */
|
765
|
+
&memory_op_pointer, /* .pointer */
|
766
|
+
&memory_op_strptr, /* .strptr */
|
767
|
+
&memory_op_bool /* .boolOp */
|
673
768
|
};
|
674
769
|
|
675
770
|
void
|
676
771
|
rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
677
772
|
{
|
678
|
-
/*
|
773
|
+
/*
|
679
774
|
* Document-class: FFI::AbstractMemory
|
680
|
-
*
|
775
|
+
*
|
681
776
|
* {AbstractMemory} is the base class for many memory management classes such as {Buffer}.
|
682
777
|
*
|
683
778
|
* This class has a lot of methods to work with integers :
|
@@ -705,11 +800,11 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
705
800
|
*/
|
706
801
|
VALUE classMemory = rb_define_class_under(moduleFFI, "AbstractMemory", rb_cObject);
|
707
802
|
rbffi_AbstractMemoryClass = classMemory;
|
708
|
-
/*
|
709
|
-
* Document-variable: FFI::AbstractMemory
|
803
|
+
/*
|
804
|
+
* Document-variable: FFI::AbstractMemory
|
710
805
|
*/
|
711
806
|
rb_global_variable(&rbffi_AbstractMemoryClass);
|
712
|
-
|
807
|
+
rb_undef_alloc_func(classMemory);
|
713
808
|
|
714
809
|
NullPointerErrorClass = rb_define_class_under(moduleFFI, "NullPointerError", rb_eRuntimeError);
|
715
810
|
/* Document-variable: NullPointerError */
|
@@ -734,13 +829,13 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
734
829
|
rb_define_method(classMemory, "read_array_of_" #type, memory_read_array_of_##type, 1); \
|
735
830
|
rb_define_method(classMemory, "write_array_of_u" #type, memory_write_array_of_u##type, 1); \
|
736
831
|
rb_define_method(classMemory, "read_array_of_u" #type, memory_read_array_of_u##type, 1);
|
737
|
-
|
832
|
+
|
738
833
|
INT(int8);
|
739
834
|
INT(int16);
|
740
835
|
INT(int32);
|
741
836
|
INT(int64);
|
742
837
|
INT(long);
|
743
|
-
|
838
|
+
|
744
839
|
#define ALIAS(name, old) \
|
745
840
|
rb_define_alias(classMemory, "put_" #name, "put_" #old); \
|
746
841
|
rb_define_alias(classMemory, "get_" #name, "get_" #old); \
|
@@ -758,16 +853,16 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
758
853
|
rb_define_alias(classMemory, "read_array_of_" #name, "read_array_of_" #old); \
|
759
854
|
rb_define_alias(classMemory, "write_array_of_u" #name, "write_array_of_u" #old); \
|
760
855
|
rb_define_alias(classMemory, "read_array_of_u" #name, "read_array_of_u" #old);
|
761
|
-
|
856
|
+
|
762
857
|
ALIAS(char, int8);
|
763
858
|
ALIAS(short, int16);
|
764
859
|
ALIAS(int, int32);
|
765
860
|
ALIAS(long_long, int64);
|
766
|
-
|
861
|
+
|
767
862
|
/*
|
768
863
|
* Document-method: put_float32
|
769
|
-
* call-seq: memory.
|
770
|
-
* @param [
|
864
|
+
* call-seq: memory.put_float32(offset, value)
|
865
|
+
* @param [Integer] offset
|
771
866
|
* @param [Numeric] value
|
772
867
|
* @return [self]
|
773
868
|
* Put +value+ as a 32-bit float in memory at offset +offset+ (alias: #put_float).
|
@@ -776,7 +871,7 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
776
871
|
/*
|
777
872
|
* Document-method: get_float32
|
778
873
|
* call-seq: memory.get_float32(offset)
|
779
|
-
* @param [
|
874
|
+
* @param [Integer] offset
|
780
875
|
* @return [Float]
|
781
876
|
* Get a 32-bit float from memory at offset +offset+ (alias: #get_float).
|
782
877
|
*/
|
@@ -807,7 +902,7 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
807
902
|
/*
|
808
903
|
* Document-method: put_array_of_float32
|
809
904
|
* call-seq: memory.put_array_of_float32(offset, ary)
|
810
|
-
* @param [
|
905
|
+
* @param [Integer] offset
|
811
906
|
* @param [Array<Numeric>] ary
|
812
907
|
* @return [self]
|
813
908
|
* Put values from +ary+ as 32-bit floats in memory from offset +offset+ (alias: #put_array_of_float).
|
@@ -816,8 +911,8 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
816
911
|
/*
|
817
912
|
* Document-method: get_array_of_float32
|
818
913
|
* call-seq: memory.get_array_of_float32(offset, length)
|
819
|
-
* @param [
|
820
|
-
* @param [
|
914
|
+
* @param [Integer] offset
|
915
|
+
* @param [Integer] length number of Float to get
|
821
916
|
* @return [Array<Float>]
|
822
917
|
* Get 32-bit floats in memory from offset +offset+ (alias: #get_array_of_float).
|
823
918
|
*/
|
@@ -836,7 +931,7 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
836
931
|
/*
|
837
932
|
* Document-method: read_array_of_float
|
838
933
|
* call-seq: memory.read_array_of_float(length)
|
839
|
-
* @param [
|
934
|
+
* @param [Integer] length number of Float to read
|
840
935
|
* @return [Array<Float>]
|
841
936
|
* Read 32-bit floats from memory.
|
842
937
|
*
|
@@ -849,7 +944,7 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
849
944
|
/*
|
850
945
|
* Document-method: put_float64
|
851
946
|
* call-seq: memory.put_float64(offset, value)
|
852
|
-
* @param [
|
947
|
+
* @param [Integer] offset
|
853
948
|
* @param [Numeric] value
|
854
949
|
* @return [self]
|
855
950
|
* Put +value+ as a 64-bit float (double) in memory at offset +offset+ (alias: #put_double).
|
@@ -858,7 +953,7 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
858
953
|
/*
|
859
954
|
* Document-method: get_float64
|
860
955
|
* call-seq: memory.get_float64(offset)
|
861
|
-
* @param [
|
956
|
+
* @param [Integer] offset
|
862
957
|
* @return [Float]
|
863
958
|
* Get a 64-bit float (double) from memory at offset +offset+ (alias: #get_double).
|
864
959
|
*/
|
@@ -889,7 +984,7 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
889
984
|
/*
|
890
985
|
* Document-method: put_array_of_float64
|
891
986
|
* call-seq: memory.put_array_of_float64(offset, ary)
|
892
|
-
* @param [
|
987
|
+
* @param [Integer] offset
|
893
988
|
* @param [Array<Numeric>] ary
|
894
989
|
* @return [self]
|
895
990
|
* Put values from +ary+ as 64-bit floats (doubles) in memory from offset +offset+ (alias: #put_array_of_double).
|
@@ -898,8 +993,8 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
898
993
|
/*
|
899
994
|
* Document-method: get_array_of_float64
|
900
995
|
* call-seq: memory.get_array_of_float64(offset, length)
|
901
|
-
* @param [
|
902
|
-
* @param [
|
996
|
+
* @param [Integer] offset
|
997
|
+
* @param [Integer] length number of Float to get
|
903
998
|
* @return [Array<Float>]
|
904
999
|
* Get 64-bit floats (doubles) in memory from offset +offset+ (alias: #get_array_of_double).
|
905
1000
|
*/
|
@@ -918,7 +1013,7 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
918
1013
|
/*
|
919
1014
|
* Document-method: read_array_of_double
|
920
1015
|
* call-seq: memory.read_array_of_double(length)
|
921
|
-
* @param [
|
1016
|
+
* @param [Integer] length number of Float to read
|
922
1017
|
* @return [Array<Float>]
|
923
1018
|
* Read 64-bit floats (doubles) from memory.
|
924
1019
|
*
|
@@ -931,7 +1026,7 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
931
1026
|
/*
|
932
1027
|
* Document-method: put_pointer
|
933
1028
|
* call-seq: memory.put_pointer(offset, value)
|
934
|
-
* @param [
|
1029
|
+
* @param [Integer] offset
|
935
1030
|
* @param [nil,Pointer, Integer, #to_ptr] value
|
936
1031
|
* @return [self]
|
937
1032
|
* Put +value+ in memory from +offset+..
|
@@ -940,7 +1035,7 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
940
1035
|
/*
|
941
1036
|
* Document-method: get_pointer
|
942
1037
|
* call-seq: memory.get_pointer(offset)
|
943
|
-
* @param [
|
1038
|
+
* @param [Integer] offset
|
944
1039
|
* @return [Pointer]
|
945
1040
|
* Get a {Pointer} to the memory from +offset+.
|
946
1041
|
*/
|
@@ -969,7 +1064,7 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
969
1064
|
/*
|
970
1065
|
* Document-method: put_array_of_pointer
|
971
1066
|
* call-seq: memory.put_array_of_pointer(offset, ary)
|
972
|
-
* @param [
|
1067
|
+
* @param [Integer] offset
|
973
1068
|
* @param [Array<#to_ptr>] ary
|
974
1069
|
* @return [self]
|
975
1070
|
* Put an array of {Pointer} into memory from +offset+.
|
@@ -978,8 +1073,8 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
978
1073
|
/*
|
979
1074
|
* Document-method: get_array_of_pointer
|
980
1075
|
* call-seq: memory.get_array_of_pointer(offset, length)
|
981
|
-
* @param [
|
982
|
-
* @param [
|
1076
|
+
* @param [Integer] offset
|
1077
|
+
* @param [Integer] length
|
983
1078
|
* @return [Array<Pointer>]
|
984
1079
|
* Get an array of {Pointer} of length +length+ from +offset+.
|
985
1080
|
*/
|
@@ -998,7 +1093,7 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
998
1093
|
/*
|
999
1094
|
* Document-method: read_array_of_pointer
|
1000
1095
|
* call-seq: memory.read_array_of_pointer(length)
|
1001
|
-
* @param [
|
1096
|
+
* @param [Integer] length
|
1002
1097
|
* @return [Array<Pointer>]
|
1003
1098
|
* Read an array of {Pointer} of length +length+.
|
1004
1099
|
*
|
@@ -1014,6 +1109,10 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
1014
1109
|
rb_define_method(classMemory, "read_bytes", memory_read_bytes, 1);
|
1015
1110
|
rb_define_method(classMemory, "write_bytes", memory_write_bytes, -1);
|
1016
1111
|
rb_define_method(classMemory, "get_array_of_string", memory_get_array_of_string, -1);
|
1112
|
+
rb_define_method(classMemory, "read_array_of_string", memory_read_array_of_string, -1);
|
1113
|
+
|
1114
|
+
rb_define_method(classMemory, "get", memory_get, 2);
|
1115
|
+
rb_define_method(classMemory, "put", memory_put, 3);
|
1017
1116
|
|
1018
1117
|
rb_define_method(classMemory, "clear", memory_clear, 0);
|
1019
1118
|
rb_define_method(classMemory, "total", memory_size, 0);
|
@@ -1021,6 +1120,7 @@ rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
|
1021
1120
|
rb_define_method(classMemory, "type_size", memory_type_size, 0);
|
1022
1121
|
rb_define_method(classMemory, "[]", memory_aref, 1);
|
1023
1122
|
rb_define_method(classMemory, "__copy_from__", memory_copy_from, 2);
|
1123
|
+
rb_define_method(classMemory, "freeze", memory_freeze, 0 );
|
1024
1124
|
|
1025
1125
|
id_to_ptr = rb_intern("to_ptr");
|
1026
1126
|
id_call = rb_intern("call");
|