cybrid_api_organization_ruby 0.94.31 → 0.94.33
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +5 -5
- data/cybrid_api_organization_ruby.gemspec +1 -1
- data/lib/cybrid_api_organization_ruby/api/organizations_organization_api.rb +1 -1
- data/lib/cybrid_api_organization_ruby/api_client.rb +1 -1
- data/lib/cybrid_api_organization_ruby/api_error.rb +1 -1
- data/lib/cybrid_api_organization_ruby/configuration.rb +1 -1
- data/lib/cybrid_api_organization_ruby/models/error_response_organization_model.rb +1 -1
- data/lib/cybrid_api_organization_ruby/models/organization_organization_model.rb +1 -1
- data/lib/cybrid_api_organization_ruby/models/patch_organization_organization_model.rb +1 -1
- data/lib/cybrid_api_organization_ruby/version.rb +2 -2
- data/lib/cybrid_api_organization_ruby.rb +1 -1
- data/spec/api/organizations_organization_api_spec.rb +1 -1
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/error_response_organization_model_spec.rb +1 -1
- data/spec/models/organization_organization_model_spec.rb +1 -1
- data/spec/models/patch_organization_organization_model_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/vendor/bundle/ruby/3.2.0/cache/ffi-1.16.1.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/byebug-11.1.3/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.16.1/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.16.1/gem_make.out +55 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.16.1/mkmf.log +268 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/jaro_winkler-1.5.6/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/psych-5.1.0/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/racc-1.7.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/stringio-3.0.8/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/CHANGELOG.md +399 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/Gemfile +14 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/README.md +137 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/Rakefile +194 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/AbstractMemory.c +1126 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/AbstractMemory.h +176 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/ArrayType.c +198 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/ArrayType.h +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Buffer.c +417 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Call.c +495 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/DynamicLibrary.c +397 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Function.c +1057 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Function.h +84 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/FunctionInfo.c +320 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/LastError.c +243 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/MappedType.c +211 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/MappedType.h +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/MemoryPointer.c +219 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/MethodHandle.c +350 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Pointer.c +546 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Pointer.h +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Struct.c +893 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Struct.h +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/StructByValue.c +177 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/StructLayout.c +769 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Type.c +447 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Type.h +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Types.c +138 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Variadic.c +345 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/compat.h +82 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/extconf.h +8 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/extconf.rb +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/ffi.c +97 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.appveyor/site.exp +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +7 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.appveyor.yml +84 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.ci/build-in-container.sh +10 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.ci/build.sh +124 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.ci/install.sh +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.ci/site.exp +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.circleci/config.yml +156 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.github/workflows/build.yml +460 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.github/workflows/emscripten.yml +171 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.gitignore +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/LICENSE +21 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/Makefile.am +157 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/Makefile.in +2127 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/README.md +526 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/acinclude.m4 +377 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/compile +347 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/config.guess +1754 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/config.sub +1892 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/configure +22791 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/configure.ac +451 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/configure.host +337 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/doc/Makefile.in +818 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/doc/libffi.texi +1046 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/doc/version.texi +4 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/fficonfig.h.in +188 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +312 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/include/Makefile.am +9 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/include/Makefile.in +609 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/include/ffi.h.in +527 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/include/ffi_cfi.h +76 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/include/ffi_common.h +182 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/include/tramp.h +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/install-sh +541 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/libtool-version +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/ltmain.sh +11448 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +198 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +158 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +119 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/man/Makefile.in +565 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/missing +215 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/msvcc.sh +353 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/aarch64/ffi.c +1129 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/aarch64/internal.h +100 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/aarch64/sysv.S +543 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/arc/arcompact.S +210 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/arc/ffi.c +443 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/arc/ffitarget.h +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/arm/ffi.c +921 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/arm/ffitarget.h +89 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/arm/internal.h +17 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/arm/sysv.S +456 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/closures.c +1107 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/dlmalloc.c +5171 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/ia64/ffi.c +616 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/ia64/unix.S +585 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/loongarch64/ffi.c +621 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +82 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/loongarch64/sysv.S +327 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/m32r/ffi.c +249 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/mips/ffi.c +1309 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/mips/ffitarget.h +251 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/mips/n32.S +772 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/mips/o32.S +561 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/moxie/ffi.c +310 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/or1k/ffi.c +341 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/pa/ffi.c +673 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/pa/ffitarget.h +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/pa/hpux32.S +417 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/pa/linux.S +427 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1153 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/powerpc/linux64.S +293 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +566 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/prep_cif.c +283 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/riscv/ffi.c +514 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/sparc/ffi64.c +624 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/tramp.c +716 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/wasm32/ffi.c +934 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/ffi.c +832 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/ffi64.c +950 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/ffitarget.h +164 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/ffiw64.c +361 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/internal.h +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/internal64.h +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/sysv.S +1272 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/sysv_intel.S +998 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/unix64.S +711 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/win64.S +254 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/xtensa/ffi.c +306 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/xtensa/ffitarget.h +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/xtensa/sysv.S +268 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/Makefile.am +135 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/Makefile.in +664 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +54 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/emscripten/build.sh +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/emscripten/test.html +7 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/lib/libffi.exp +682 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +283 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1746 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +747 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +163 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +110 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +220 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +154 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +134 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +134 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +140 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +83 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +83 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +102 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +91 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +92 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +96 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +112 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +117 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +131 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +113 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +145 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +114 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +113 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +137 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +116 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +148 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +140 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +121 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +155 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +121 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +102 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +147 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +152 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +113 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +108 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +106 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +108 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +69 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +99 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +152 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +125 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +343 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +175 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +161 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +146 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +137 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +119 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +121 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +142 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +142 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +142 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +124 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +125 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +118 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi.bsd.mk +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi.gnu.mk +32 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/rbffi.h +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ffi.gemspec +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/autopointer.rb +188 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/compat.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/data_converter.rb +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/dynamic_library.rb +89 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/enum.rb +303 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/ffi.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/function.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/library.rb +576 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/library_path.rb +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/managedstruct.rb +84 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/platform/sw_64-linux/types.conf +141 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/platform/x86_64-windows/types.conf +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/platform.rb +187 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/struct.rb +317 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/struct_layout.rb +96 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/struct_layout_builder.rb +227 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/types.rb +219 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/variadic.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/version.rb +3 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.2.0/specifications/ffi-1.16.1.gemspec +34 -0
- metadata +628 -580
- data/vendor/bundle/ruby/3.2.0/cache/ffi-1.15.5.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.15.5/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.15.5/gem_make.out +0 -54
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.15.5/mkmf.log +0 -244
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/CHANGELOG.md +0 -338
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/Gemfile +0 -14
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/README.md +0 -136
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/Rakefile +0 -191
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/AbstractMemory.c +0 -1104
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/AbstractMemory.h +0 -175
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.c +0 -162
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.h +0 -59
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Buffer.c +0 -360
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Call.c +0 -487
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/DynamicLibrary.c +0 -334
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Function.c +0 -917
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Function.h +0 -83
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/FunctionInfo.c +0 -266
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/LastError.c +0 -225
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.c +0 -168
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.h +0 -59
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/MemoryPointer.c +0 -192
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/MethodHandle.c +0 -348
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.c +0 -507
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.h +0 -59
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Struct.c +0 -822
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Struct.h +0 -112
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/StructByValue.c +0 -145
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/StructLayout.c +0 -700
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Type.c +0 -379
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Type.h +0 -61
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Types.c +0 -138
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Variadic.c +0 -303
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/compat.h +0 -82
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/extconf.h +0 -7
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/extconf.rb +0 -98
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/ffi.c +0 -93
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.appveyor.yml +0 -66
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.gitignore +0 -38
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +0 -14
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/build-in-container.sh +0 -12
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/build.sh +0 -142
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/install.sh +0 -71
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/site.exp +0 -27
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis.yml +0 -83
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/LICENSE +0 -21
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/Makefile.am +0 -150
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/Makefile.in +0 -2060
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/README.md +0 -486
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/acinclude.m4 +0 -479
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/config.guess +0 -1687
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/config.sub +0 -1851
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/configure +0 -22050
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/configure.ac +0 -415
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/configure.host +0 -318
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/doc/Makefile.in +0 -815
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/doc/libffi.texi +0 -997
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/doc/version.texi +0 -4
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/fficonfig.h.in +0 -223
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +0 -201
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/Makefile.am +0 -9
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/Makefile.in +0 -608
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/ffi.h.in +0 -523
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/ffi_cfi.h +0 -55
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/ffi_common.h +0 -153
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/install-sh +0 -518
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/libtool-version +0 -29
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/ltmain.sh +0 -11251
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +0 -194
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +0 -122
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +0 -88
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/man/Makefile.in +0 -562
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/missing +0 -215
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +0 -511
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/msvcc.sh +0 -353
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/aarch64/ffi.c +0 -1025
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/aarch64/internal.h +0 -68
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/aarch64/sysv.S +0 -451
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arc/arcompact.S +0 -135
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arc/ffi.c +0 -266
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arc/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arm/ffi.c +0 -876
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arm/ffitarget.h +0 -89
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arm/internal.h +0 -7
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arm/sysv.S +0 -385
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/closures.c +0 -1021
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/dlmalloc.c +0 -5166
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/ia64/ffi.c +0 -604
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/ia64/unix.S +0 -567
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/m32r/ffi.c +0 -232
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/mips/ffi.c +0 -1134
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/mips/ffitarget.h +0 -244
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/mips/n32.S +0 -663
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/mips/o32.S +0 -504
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/moxie/ffi.c +0 -285
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/or1k/ffi.c +0 -328
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/pa/ffi.c +0 -674
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/pa/ffitarget.h +0 -80
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/pa/hpux32.S +0 -370
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/pa/linux.S +0 -380
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +0 -1153
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/powerpc/linux64.S +0 -291
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +0 -564
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/prep_cif.c +0 -263
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/riscv/ffi.c +0 -481
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/sparc/ffi64.c +0 -608
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/ffi.c +0 -770
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/ffi64.c +0 -895
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/ffitarget.h +0 -160
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/ffiw64.c +0 -318
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/internal.h +0 -29
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/internal64.h +0 -22
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/sysv.S +0 -1138
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/sysv_intel.S +0 -995
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/unix64.S +0 -621
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/win64.S +0 -241
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/xtensa/ffi.c +0 -298
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/xtensa/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/xtensa/sysv.S +0 -258
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/Makefile.am +0 -122
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/Makefile.in +0 -648
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/lib/libffi.exp +0 -660
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +0 -283
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +0 -1745
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +0 -743
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +0 -138
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +0 -107
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +0 -43
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +0 -38
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +0 -38
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +0 -44
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +0 -49
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +0 -49
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +0 -55
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +0 -57
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +0 -196
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +0 -121
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +0 -123
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +0 -125
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +0 -89
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +0 -81
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +0 -81
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +0 -82
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +0 -89
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +0 -92
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +0 -95
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +0 -55
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +0 -94
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +0 -95
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +0 -96
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +0 -102
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +0 -89
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +0 -93
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +0 -113
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +0 -95
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +0 -95
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +0 -98
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +0 -109
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +0 -98
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +0 -124
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +0 -113
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +0 -99
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +0 -117
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +0 -97
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +0 -88
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +0 -93
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +0 -92
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +0 -132
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +0 -115
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +0 -95
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +0 -92
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +0 -93
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +0 -66
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +0 -61
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +0 -42
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +0 -105
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +0 -61
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +0 -74
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +0 -74
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +0 -86
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +0 -74
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +0 -86
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +0 -74
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +0 -142
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +0 -44
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +0 -42
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +0 -42
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +0 -114
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +0 -42
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar_va.c +0 -44
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +0 -43
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +0 -45
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +0 -45
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +0 -47
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +0 -43
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort_va.c +0 -44
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +0 -138
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +0 -343
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +0 -152
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +0 -161
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +0 -134
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +0 -121
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +0 -110
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +0 -111
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +0 -111
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +0 -112
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +0 -131
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +0 -111
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +0 -131
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +0 -131
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +0 -124
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +0 -125
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +0 -70
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +0 -117
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +0 -54
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi.bsd.mk +0 -40
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi.gnu.mk +0 -32
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/rbffi.h +0 -55
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ffi.gemspec +0 -42
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/autopointer.rb +0 -203
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/data_converter.rb +0 -67
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/enum.rb +0 -296
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/ffi.rb +0 -47
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/library.rb +0 -592
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/managedstruct.rb +0 -84
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/platform.rb +0 -185
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/struct.rb +0 -316
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/struct_layout.rb +0 -96
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/struct_layout_builder.rb +0 -227
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/types.rb +0 -194
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/variadic.rb +0 -69
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/version.rb +0 -3
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.2.0/specifications/ffi-1.15.5.gemspec +0 -33
- /data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/{ffi-1.15.5 → ffi-1.16.1}/gem.build_complete +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/COPYING +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/LICENSE +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/LICENSE.SPECS +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/Call.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/ClosurePool.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/ClosurePool.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/DynamicLibrary.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/LastError.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/LongDouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/LongDouble.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/Makefile +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/MemoryPointer.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/MethodHandle.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/Platform.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/Platform.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/StructByValue.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/Thread.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/Thread.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/Types.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/ar-lib +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/bfin-sim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/compile +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/m32r-sim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/moxie-sim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/or1k-sim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/powerpc-eabisim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/wine-sim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/.gitattributes +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/.github/issue_template.md +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/ChangeLog.old +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/autogen.sh +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/doc/Makefile.am +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/libffi.map.in +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/libffi.pc.in +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/libtool-ldflags +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/asmcfi.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/ax_append_flag.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/ax_configure_args.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/ax_require_defined.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/make_sunver.pl +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/man/Makefile.am +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/man/ffi.3 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/man/ffi_call.3 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/man/ffi_prep_cif.3 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/aarch64/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/alpha/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/alpha/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/alpha/internal.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/alpha/osf.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/avr32/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/avr32/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/avr32/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/bfin/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/bfin/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/bfin/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/cris/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/cris/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/cris/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/csky/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/csky/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/csky/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/debug.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/frv/eabi.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/frv/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/frv/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/ia64/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/ia64/ia64_flags.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/java_raw_api.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/kvx/asm.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/kvx/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/kvx/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/kvx/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m32r/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m32r/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m68k/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m68k/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m68k/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m88k/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m88k/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m88k/obsd.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/metag/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/metag/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/metag/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/microblaze/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/microblaze/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/microblaze/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/moxie/eabi.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/moxie/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/nios2/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/nios2/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/nios2/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/or1k/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/or1k/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/aix.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/aix_closure.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/asm.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/darwin.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/raw_api.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/riscv/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/riscv/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/s390/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/s390/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/s390/internal.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/s390/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sh/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sh/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sh/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sh64/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sh64/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sh64/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sparc/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sparc/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sparc/internal.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sparc/v8.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sparc/v9.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/tile/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/tile/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/tile/tile.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/types.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/vax/elfbsd.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/vax/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/vax/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/x86/asmnames.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/x86/win64_intel.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/stamp-h.in +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/config/default.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/many.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c → ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc_tc.c} +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_args.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_float_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/err_bad_abi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.complex → ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures}/ffitest.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/problem1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.go → ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.complex}/ffitest.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi.darwin.mk +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi.mk +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi.vc.mk +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi.vc64.mk +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/rbffi_endian.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/abstract_memory.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/buffer.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/callback.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/errno.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/io.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/memorypointer.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/aarch64-darwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/aarch64-freebsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/aarch64-freebsd12/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/aarch64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/aarch64-openbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/lib/ffi/platform/x86_64-windows → ffi-1.16.1/lib/ffi/platform/aarch64-windows}/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/arm-freebsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/arm-freebsd12/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/arm-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-cygwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-darwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-freebsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-freebsd12/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-gnu/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-netbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-openbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-solaris/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-windows/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/ia64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mips-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mips64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mips64el-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mipsel-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mipsisa32r6-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mipsisa32r6el-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mipsisa64r6-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mipsisa64r6el-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/powerpc-aix/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/powerpc-darwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/powerpc-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/powerpc-openbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/powerpc64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/powerpc64le-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/riscv64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/s390-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/s390x-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/sparc-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/sparc-solaris/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/lib/ffi/platform/sparc64-linux → ffi-1.16.1/lib/ffi/platform/sparcv9-linux}/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/sparcv9-openbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/sparcv9-solaris/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-cygwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-darwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-dragonflybsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-freebsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-freebsd12/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-haiku/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-msys/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-netbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-openbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-solaris/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/pointer.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/struct_by_reference.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/tools/const_generator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/tools/generator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/tools/generator_task.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/tools/struct_generator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/tools/types_generator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/union.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/rakelib/ffi_gem_helper.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/samples/getlogin.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/samples/getpid.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/samples/gettimeofday.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/samples/hello.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/samples/inotify.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/samples/pty.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/samples/qsort.rb +0 -0
@@ -0,0 +1,934 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
ffi.c - Copyright (c) 2018-2023 Hood Chatham, Brion Vibber, Kleis Auke Wolthuizen, and others.
|
3
|
+
|
4
|
+
wasm32/emscripten Foreign Function Interface
|
5
|
+
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
7
|
+
a copy of this software and associated documentation files (the
|
8
|
+
``Software''), to deal in the Software without restriction, including
|
9
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
10
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
11
|
+
permit persons to whom the Software is furnished to do so, subject to
|
12
|
+
the following conditions:
|
13
|
+
|
14
|
+
The above copyright notice and this permission notice shall be included
|
15
|
+
in all copies or substantial portions of the Software.
|
16
|
+
|
17
|
+
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
|
18
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
19
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
20
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
21
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
22
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
23
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
24
|
+
DEALINGS IN THE SOFTWARE.
|
25
|
+
----------------------------------------------------------------------- */
|
26
|
+
|
27
|
+
#include <ffi.h>
|
28
|
+
#include <ffi_common.h>
|
29
|
+
|
30
|
+
#include <stdlib.h>
|
31
|
+
#include <stdint.h>
|
32
|
+
|
33
|
+
#include <emscripten/emscripten.h>
|
34
|
+
|
35
|
+
#ifdef DEBUG_F
|
36
|
+
#define LOG_DEBUG(args...) \
|
37
|
+
console.warn(`====LIBFFI(line __LINE__)`, args)
|
38
|
+
#else
|
39
|
+
#define LOG_DEBUG(args...) 0
|
40
|
+
#endif
|
41
|
+
|
42
|
+
#define EM_JS_MACROS(ret, name, args, body...) EM_JS(ret, name, args, body)
|
43
|
+
|
44
|
+
#if WASM_BIGINT
|
45
|
+
EM_JS_DEPS(libffi, "$getWasmTableEntry,$setWasmTableEntry,$getEmptyTableSlot,$convertJsFunctionToWasm");
|
46
|
+
#define CALL_FUNCTION_POINTER(ptr, args...) \
|
47
|
+
(LOG_DEBUG("CALL_FUNC_PTR", ptr, args), \
|
48
|
+
getWasmTableEntry(ptr).apply(null, args))
|
49
|
+
|
50
|
+
#define JS_FUNCTION_TO_WASM convertJsFunctionToWasm
|
51
|
+
#else
|
52
|
+
EM_JS_DEPS(libffi, "$getWasmTableEntry,$setWasmTableEntry,$getEmptyTableSlot,$convertJsFunctionToWasm,$dynCall,$generateFuncType,$uleb128Encode");
|
53
|
+
#define CALL_FUNCTION_POINTER(ptr, args...) \
|
54
|
+
(LOG_DEBUG("CALL_FUNC_PTR", sig, ptr, args), \
|
55
|
+
dynCall(sig, ptr, args))
|
56
|
+
|
57
|
+
#define JS_FUNCTION_TO_WASM createLegalizerWrapper
|
58
|
+
#endif
|
59
|
+
|
60
|
+
// Signature calculations are not needed if WASM_BIGINT is present.
|
61
|
+
#if WASM_BIGINT
|
62
|
+
#define SIG(sig)
|
63
|
+
#else
|
64
|
+
#define SIG(sig) sig
|
65
|
+
#endif
|
66
|
+
|
67
|
+
#define DEREF_U8(addr, offset) HEAPU8[addr + offset]
|
68
|
+
#define DEREF_S8(addr, offset) HEAP8[addr + offset]
|
69
|
+
#define DEREF_U16(addr, offset) HEAPU16[(addr >> 1) + offset]
|
70
|
+
#define DEREF_S16(addr, offset) HEAP16[(addr >> 1) + offset]
|
71
|
+
#define DEREF_U32(addr, offset) HEAPU32[(addr >> 2) + offset]
|
72
|
+
#define DEREF_S32(addr, offset) HEAP32[(addr >> 2) + offset]
|
73
|
+
|
74
|
+
#define DEREF_F32(addr, offset) HEAPF32[(addr >> 2) + offset]
|
75
|
+
#define DEREF_F64(addr, offset) HEAPF64[(addr >> 3) + offset]
|
76
|
+
|
77
|
+
#if WASM_BIGINT
|
78
|
+
// We have HEAPU64 in this case.
|
79
|
+
#define DEREF_U64(addr, offset) HEAPU64[(addr >> 3) + offset]
|
80
|
+
#endif
|
81
|
+
|
82
|
+
|
83
|
+
#define CHECK_FIELD_OFFSET(struct, field, offset) \
|
84
|
+
_Static_assert( \
|
85
|
+
offsetof(struct, field) == offset, \
|
86
|
+
"Memory layout of '" #struct "' has changed: '" #field "' is in an unexpected location");
|
87
|
+
|
88
|
+
CHECK_FIELD_OFFSET(ffi_cif, abi, 4*0);
|
89
|
+
CHECK_FIELD_OFFSET(ffi_cif, nargs, 4*1);
|
90
|
+
CHECK_FIELD_OFFSET(ffi_cif, arg_types, 4*2);
|
91
|
+
CHECK_FIELD_OFFSET(ffi_cif, rtype, 4*3);
|
92
|
+
CHECK_FIELD_OFFSET(ffi_cif, nfixedargs, 4*6);
|
93
|
+
|
94
|
+
#define CIF__ABI(addr) DEREF_U32(addr, 0)
|
95
|
+
#define CIF__NARGS(addr) DEREF_U32(addr, 1)
|
96
|
+
#define CIF__ARGTYPES(addr) DEREF_U32(addr, 2)
|
97
|
+
#define CIF__RTYPE(addr) DEREF_U32(addr, 3)
|
98
|
+
#define CIF__NFIXEDARGS(addr) DEREF_U32(addr, 6)
|
99
|
+
|
100
|
+
CHECK_FIELD_OFFSET(ffi_type, size, 0);
|
101
|
+
CHECK_FIELD_OFFSET(ffi_type, alignment, 4);
|
102
|
+
CHECK_FIELD_OFFSET(ffi_type, type, 6);
|
103
|
+
CHECK_FIELD_OFFSET(ffi_type, elements, 8);
|
104
|
+
|
105
|
+
#define FFI_TYPE__SIZE(addr) DEREF_U32(addr, 0)
|
106
|
+
#define FFI_TYPE__ALIGN(addr) DEREF_U16(addr + 4, 0)
|
107
|
+
#define FFI_TYPE__TYPEID(addr) DEREF_U16(addr + 6, 0)
|
108
|
+
#define FFI_TYPE__ELEMENTS(addr) DEREF_U32(addr + 8, 0)
|
109
|
+
|
110
|
+
#define ALIGN_ADDRESS(addr, align) (addr &= (~((align) - 1)))
|
111
|
+
#define STACK_ALLOC(stack, size, align) ((stack -= (size)), ALIGN_ADDRESS(stack, align))
|
112
|
+
|
113
|
+
// Most wasm runtimes support at most 1000 Js trampoline args.
|
114
|
+
#define MAX_ARGS 1000
|
115
|
+
|
116
|
+
#include <stddef.h>
|
117
|
+
|
118
|
+
#define VARARGS_FLAG 1
|
119
|
+
|
120
|
+
#define FFI_OK_MACRO 0
|
121
|
+
_Static_assert(FFI_OK_MACRO == FFI_OK, "FFI_OK must be 0");
|
122
|
+
|
123
|
+
#define FFI_BAD_TYPEDEF_MACRO 1
|
124
|
+
_Static_assert(FFI_BAD_TYPEDEF_MACRO == FFI_BAD_TYPEDEF, "FFI_BAD_TYPEDEF must be 1");
|
125
|
+
|
126
|
+
ffi_status FFI_HIDDEN
|
127
|
+
ffi_prep_cif_machdep(ffi_cif *cif)
|
128
|
+
{
|
129
|
+
if (cif->abi != FFI_WASM32_EMSCRIPTEN)
|
130
|
+
return FFI_BAD_ABI;
|
131
|
+
// This is called after ffi_prep_cif_machdep_var so we need to avoid
|
132
|
+
// overwriting cif->nfixedargs.
|
133
|
+
if (!(cif->flags & VARARGS_FLAG))
|
134
|
+
cif->nfixedargs = cif->nargs;
|
135
|
+
if (cif->nargs > MAX_ARGS)
|
136
|
+
return FFI_BAD_TYPEDEF;
|
137
|
+
if (cif->rtype->type == FFI_TYPE_COMPLEX)
|
138
|
+
return FFI_BAD_TYPEDEF;
|
139
|
+
// If they put the COMPLEX type into a struct we won't notice, but whatever.
|
140
|
+
for (int i = 0; i < cif->nargs; i++)
|
141
|
+
if (cif->arg_types[i]->type == FFI_TYPE_COMPLEX)
|
142
|
+
return FFI_BAD_TYPEDEF;
|
143
|
+
return FFI_OK;
|
144
|
+
}
|
145
|
+
|
146
|
+
ffi_status FFI_HIDDEN
|
147
|
+
ffi_prep_cif_machdep_var(ffi_cif *cif, unsigned nfixedargs, unsigned ntotalargs)
|
148
|
+
{
|
149
|
+
cif->flags |= VARARGS_FLAG;
|
150
|
+
cif->nfixedargs = nfixedargs;
|
151
|
+
// The varargs takes up one extra argument
|
152
|
+
if (cif->nfixedargs + 1 > MAX_ARGS)
|
153
|
+
return FFI_BAD_TYPEDEF;
|
154
|
+
return FFI_OK;
|
155
|
+
}
|
156
|
+
|
157
|
+
/**
|
158
|
+
* A Javascript helper function. This takes an argument typ which is a wasm
|
159
|
+
* pointer to an ffi_type object. It returns a pair a type and a type id.
|
160
|
+
*
|
161
|
+
* - If it is not a struct, return its type and its typeid field.
|
162
|
+
* - If it is a struct of size >= 2, return the type and its typeid (which
|
163
|
+
* will be FFI_TYPE_STRUCT)
|
164
|
+
* - If it is a struct of size 0, return FFI_TYPE_VOID (????? this is broken)
|
165
|
+
* - If it is a struct of size 1, replace it with the single field and apply
|
166
|
+
* the same logic again to that.
|
167
|
+
*
|
168
|
+
* By always unboxing structs up front, we can avoid messy casework later.
|
169
|
+
*/
|
170
|
+
EM_JS_MACROS(
|
171
|
+
void,
|
172
|
+
unbox_small_structs, (ffi_type type_ptr), {
|
173
|
+
var type_id = FFI_TYPE__TYPEID(type_ptr);
|
174
|
+
while (type_id === FFI_TYPE_STRUCT) {
|
175
|
+
var elements = FFI_TYPE__ELEMENTS(type_ptr);
|
176
|
+
var first_element = DEREF_U32(elements, 0);
|
177
|
+
if (first_element === 0) {
|
178
|
+
type_id = FFI_TYPE_VOID;
|
179
|
+
break;
|
180
|
+
} else if (DEREF_U32(elements, 1) === 0) {
|
181
|
+
type_ptr = first_element;
|
182
|
+
type_id = FFI_TYPE__TYPEID(first_element);
|
183
|
+
} else {
|
184
|
+
break;
|
185
|
+
}
|
186
|
+
}
|
187
|
+
return [type_ptr, type_id];
|
188
|
+
})
|
189
|
+
|
190
|
+
EM_JS_MACROS(
|
191
|
+
void,
|
192
|
+
ffi_call_js, (ffi_cif *cif, ffi_fp fn, void *rvalue, void **avalue),
|
193
|
+
{
|
194
|
+
var abi = CIF__ABI(cif);
|
195
|
+
var nargs = CIF__NARGS(cif);
|
196
|
+
var nfixedargs = CIF__NFIXEDARGS(cif);
|
197
|
+
var arg_types_ptr = CIF__ARGTYPES(cif);
|
198
|
+
var rtype_unboxed = unbox_small_structs(CIF__RTYPE(cif));
|
199
|
+
var rtype_ptr = rtype_unboxed[0];
|
200
|
+
var rtype_id = rtype_unboxed[1];
|
201
|
+
var orig_stack_ptr = stackSave();
|
202
|
+
var cur_stack_ptr = orig_stack_ptr;
|
203
|
+
|
204
|
+
var args = [];
|
205
|
+
// Does our onwards call return by argument or normally? We return by argument
|
206
|
+
// no matter what.
|
207
|
+
var ret_by_arg = false;
|
208
|
+
|
209
|
+
if (rtype_id === FFI_TYPE_COMPLEX) {
|
210
|
+
throw new Error('complex ret marshalling nyi');
|
211
|
+
}
|
212
|
+
if (rtype_id < 0 || rtype_id > FFI_TYPE_LAST) {
|
213
|
+
throw new Error('Unexpected rtype ' + rtype_id);
|
214
|
+
}
|
215
|
+
// If the return type is a struct with multiple entries or a long double, the
|
216
|
+
// function takes an extra first argument which is a pointer to return value.
|
217
|
+
// Conveniently, we've already received a pointer to return value, so we can
|
218
|
+
// just use this. We also mark a flag that we don't need to convert the return
|
219
|
+
// value of the dynamic call back to C.
|
220
|
+
if (rtype_id === FFI_TYPE_LONGDOUBLE || rtype_id === FFI_TYPE_STRUCT) {
|
221
|
+
args.push(rvalue);
|
222
|
+
ret_by_arg = true;
|
223
|
+
}
|
224
|
+
|
225
|
+
SIG(var sig = "");
|
226
|
+
|
227
|
+
#if !WASM_BIGINT
|
228
|
+
switch(rtype_id) {
|
229
|
+
case FFI_TYPE_VOID:
|
230
|
+
SIG(sig = 'v');
|
231
|
+
break;
|
232
|
+
case FFI_TYPE_STRUCT:
|
233
|
+
case FFI_TYPE_LONGDOUBLE:
|
234
|
+
SIG(sig = 'vi');
|
235
|
+
break;
|
236
|
+
case FFI_TYPE_INT:
|
237
|
+
case FFI_TYPE_UINT8:
|
238
|
+
case FFI_TYPE_SINT8:
|
239
|
+
case FFI_TYPE_UINT16:
|
240
|
+
case FFI_TYPE_SINT16:
|
241
|
+
case FFI_TYPE_UINT32:
|
242
|
+
case FFI_TYPE_SINT32:
|
243
|
+
case FFI_TYPE_POINTER:
|
244
|
+
SIG(sig = 'i');
|
245
|
+
break;
|
246
|
+
case FFI_TYPE_FLOAT:
|
247
|
+
SIG(sig = 'f');
|
248
|
+
break;
|
249
|
+
case FFI_TYPE_DOUBLE:
|
250
|
+
SIG(sig = 'd');
|
251
|
+
break;
|
252
|
+
case FFI_TYPE_UINT64:
|
253
|
+
case FFI_TYPE_SINT64:
|
254
|
+
SIG(sig = 'j');
|
255
|
+
break;
|
256
|
+
}
|
257
|
+
#endif
|
258
|
+
|
259
|
+
// Accumulate a Javascript list of arguments for the Javascript wrapper for
|
260
|
+
// the wasm function. The Javascript wrapper does a type conversion from
|
261
|
+
// Javascript to C automatically, here we manually do the inverse conversion
|
262
|
+
// from C to Javascript.
|
263
|
+
for (var i = 0; i < nfixedargs; i++) {
|
264
|
+
var arg_ptr = DEREF_U32(avalue, i);
|
265
|
+
var arg_unboxed = unbox_small_structs(DEREF_U32(arg_types_ptr, i));
|
266
|
+
var arg_type_ptr = arg_unboxed[0];
|
267
|
+
var arg_type_id = arg_unboxed[1];
|
268
|
+
|
269
|
+
// It's okay here to always use unsigned integers as long as the size is 32
|
270
|
+
// or 64 bits. Smaller sizes get extended to 32 bits differently according
|
271
|
+
// to whether they are signed or unsigned.
|
272
|
+
switch (arg_type_id) {
|
273
|
+
case FFI_TYPE_INT:
|
274
|
+
case FFI_TYPE_SINT32:
|
275
|
+
case FFI_TYPE_UINT32:
|
276
|
+
case FFI_TYPE_POINTER:
|
277
|
+
args.push(DEREF_U32(arg_ptr, 0));
|
278
|
+
SIG(sig += 'i');
|
279
|
+
break;
|
280
|
+
case FFI_TYPE_FLOAT:
|
281
|
+
args.push(DEREF_F32(arg_ptr, 0));
|
282
|
+
SIG(sig += 'f');
|
283
|
+
break;
|
284
|
+
case FFI_TYPE_DOUBLE:
|
285
|
+
args.push(DEREF_F64(arg_ptr, 0));
|
286
|
+
SIG(sig += 'd');
|
287
|
+
break;
|
288
|
+
case FFI_TYPE_UINT8:
|
289
|
+
args.push(DEREF_U8(arg_ptr, 0));
|
290
|
+
SIG(sig += 'i');
|
291
|
+
break;
|
292
|
+
case FFI_TYPE_SINT8:
|
293
|
+
args.push(DEREF_S8(arg_ptr, 0));
|
294
|
+
SIG(sig += 'i');
|
295
|
+
break;
|
296
|
+
case FFI_TYPE_UINT16:
|
297
|
+
args.push(DEREF_U16(arg_ptr, 0));
|
298
|
+
SIG(sig += 'i');
|
299
|
+
break;
|
300
|
+
case FFI_TYPE_SINT16:
|
301
|
+
args.push(DEREF_S16(arg_ptr, 0));
|
302
|
+
SIG(sig += 'i');
|
303
|
+
break;
|
304
|
+
case FFI_TYPE_UINT64:
|
305
|
+
case FFI_TYPE_SINT64:
|
306
|
+
#if WASM_BIGINT
|
307
|
+
args.push(DEREF_U64(arg_ptr, 0));
|
308
|
+
#else
|
309
|
+
args.push(DEREF_U32(arg_ptr, 0));
|
310
|
+
args.push(DEREF_U32(arg_ptr, 1));
|
311
|
+
#endif
|
312
|
+
SIG(sig += 'j');
|
313
|
+
break;
|
314
|
+
case FFI_TYPE_LONGDOUBLE:
|
315
|
+
// long double is passed as a pair of BigInts.
|
316
|
+
#if WASM_BIGINT
|
317
|
+
args.push(DEREF_U64(arg_ptr, 0));
|
318
|
+
args.push(DEREF_U64(arg_ptr, 1));
|
319
|
+
#else
|
320
|
+
args.push(DEREF_U32(arg_ptr, 0));
|
321
|
+
args.push(DEREF_U32(arg_ptr, 1));
|
322
|
+
args.push(DEREF_U32(arg_ptr, 2));
|
323
|
+
args.push(DEREF_U32(arg_ptr, 3));
|
324
|
+
#endif
|
325
|
+
SIG(sig += "jj");
|
326
|
+
break;
|
327
|
+
case FFI_TYPE_STRUCT:
|
328
|
+
// Nontrivial structs are passed by pointer.
|
329
|
+
// Have to copy the struct onto the stack though because C ABI says it's
|
330
|
+
// call by value.
|
331
|
+
var size = FFI_TYPE__SIZE(arg_type_ptr);
|
332
|
+
var align = FFI_TYPE__ALIGN(arg_type_ptr);
|
333
|
+
STACK_ALLOC(cur_stack_ptr, size, align);
|
334
|
+
HEAP8.subarray(cur_stack_ptr, cur_stack_ptr+size).set(HEAP8.subarray(arg_ptr, arg_ptr + size));
|
335
|
+
args.push(cur_stack_ptr);
|
336
|
+
SIG(sig += 'i');
|
337
|
+
break;
|
338
|
+
case FFI_TYPE_COMPLEX:
|
339
|
+
throw new Error('complex marshalling nyi');
|
340
|
+
default:
|
341
|
+
throw new Error('Unexpected type ' + arg_type_id);
|
342
|
+
}
|
343
|
+
}
|
344
|
+
|
345
|
+
// Wasm functions can't directly manipulate the callstack, so varargs
|
346
|
+
// arguments have to go on a separate stack. A varags function takes one extra
|
347
|
+
// argument which is a pointer to where on the separate stack the args are
|
348
|
+
// located. Because stacks are allocated backwards, we have to loop over the
|
349
|
+
// varargs backwards.
|
350
|
+
//
|
351
|
+
// We don't have any way of knowing how many args were actually passed, so we
|
352
|
+
// just always copy extra nonsense past the end. The ownwards call will know
|
353
|
+
// not to look at it.
|
354
|
+
if (nfixedargs != nargs) {
|
355
|
+
SIG(sig += 'i');
|
356
|
+
var struct_arg_info = [];
|
357
|
+
for (var i = nargs - 1; i >= nfixedargs; i--) {
|
358
|
+
var arg_ptr = DEREF_U32(avalue, i);
|
359
|
+
var arg_unboxed = unbox_small_structs(DEREF_U32(arg_types_ptr, i));
|
360
|
+
var arg_type_ptr = arg_unboxed[0];
|
361
|
+
var arg_type_id = arg_unboxed[1];
|
362
|
+
switch (arg_type_id) {
|
363
|
+
case FFI_TYPE_UINT8:
|
364
|
+
case FFI_TYPE_SINT8:
|
365
|
+
STACK_ALLOC(cur_stack_ptr, 1, 1);
|
366
|
+
DEREF_U8(cur_stack_ptr, 0) = DEREF_U8(arg_ptr, 0);
|
367
|
+
break;
|
368
|
+
case FFI_TYPE_UINT16:
|
369
|
+
case FFI_TYPE_SINT16:
|
370
|
+
STACK_ALLOC(cur_stack_ptr, 2, 2);
|
371
|
+
DEREF_U16(cur_stack_ptr, 0) = DEREF_U16(arg_ptr, 0);
|
372
|
+
break;
|
373
|
+
case FFI_TYPE_INT:
|
374
|
+
case FFI_TYPE_UINT32:
|
375
|
+
case FFI_TYPE_SINT32:
|
376
|
+
case FFI_TYPE_POINTER:
|
377
|
+
case FFI_TYPE_FLOAT:
|
378
|
+
STACK_ALLOC(cur_stack_ptr, 4, 4);
|
379
|
+
DEREF_U32(cur_stack_ptr, 0) = DEREF_U32(arg_ptr, 0);
|
380
|
+
break;
|
381
|
+
case FFI_TYPE_DOUBLE:
|
382
|
+
case FFI_TYPE_UINT64:
|
383
|
+
case FFI_TYPE_SINT64:
|
384
|
+
STACK_ALLOC(cur_stack_ptr, 8, 8);
|
385
|
+
DEREF_U32(cur_stack_ptr, 0) = DEREF_U32(arg_ptr, 0);
|
386
|
+
DEREF_U32(cur_stack_ptr, 1) = DEREF_U32(arg_ptr, 1);
|
387
|
+
break;
|
388
|
+
case FFI_TYPE_LONGDOUBLE:
|
389
|
+
STACK_ALLOC(cur_stack_ptr, 16, 8);
|
390
|
+
DEREF_U32(cur_stack_ptr, 0) = DEREF_U32(arg_ptr, 0);
|
391
|
+
DEREF_U32(cur_stack_ptr, 1) = DEREF_U32(arg_ptr, 1);
|
392
|
+
DEREF_U32(cur_stack_ptr, 2) = DEREF_U32(arg_ptr, 2);
|
393
|
+
DEREF_U32(cur_stack_ptr, 3) = DEREF_U32(arg_ptr, 3);
|
394
|
+
break;
|
395
|
+
case FFI_TYPE_STRUCT:
|
396
|
+
// Again, struct must be passed by pointer.
|
397
|
+
// But ABI is by value, so have to copy struct onto stack.
|
398
|
+
// Currently arguments are going onto stack so we can't put it there now. Come back for this.
|
399
|
+
STACK_ALLOC(cur_stack_ptr, 4, 4);
|
400
|
+
struct_arg_info.push([cur_stack_ptr, arg_ptr, FFI_TYPE__SIZE(arg_type_ptr), FFI_TYPE__ALIGN(arg_type_ptr)]);
|
401
|
+
break;
|
402
|
+
case FFI_TYPE_COMPLEX:
|
403
|
+
throw new Error('complex arg marshalling nyi');
|
404
|
+
default:
|
405
|
+
throw new Error('Unexpected argtype ' + arg_type_id);
|
406
|
+
}
|
407
|
+
}
|
408
|
+
// extra normal argument which is the pointer to the varargs.
|
409
|
+
args.push(cur_stack_ptr);
|
410
|
+
// Now allocate variable struct args on stack too.
|
411
|
+
for (var i = 0; i < struct_arg_info.length; i++) {
|
412
|
+
var struct_info = struct_arg_info[i];
|
413
|
+
var arg_target = struct_info[0];
|
414
|
+
var arg_ptr = struct_info[1];
|
415
|
+
var size = struct_info[2];
|
416
|
+
var align = struct_info[3];
|
417
|
+
STACK_ALLOC(cur_stack_ptr, size, align);
|
418
|
+
HEAP8.subarray(cur_stack_ptr, cur_stack_ptr+size).set(HEAP8.subarray(arg_ptr, arg_ptr + size));
|
419
|
+
DEREF_U32(arg_target, 0) = cur_stack_ptr;
|
420
|
+
}
|
421
|
+
}
|
422
|
+
stackRestore(cur_stack_ptr);
|
423
|
+
stackAlloc(0); // stackAlloc enforces alignment invariants on the stack pointer
|
424
|
+
var result = CALL_FUNCTION_POINTER(fn, args);
|
425
|
+
// Put the stack pointer back (we moved it if there were any struct args or we
|
426
|
+
// made a varargs call)
|
427
|
+
stackRestore(orig_stack_ptr);
|
428
|
+
|
429
|
+
// We need to return by argument. If return value was a nontrivial struct or
|
430
|
+
// long double, the onwards call already put the return value in rvalue
|
431
|
+
if (ret_by_arg) {
|
432
|
+
return;
|
433
|
+
}
|
434
|
+
|
435
|
+
// Otherwise the result was automatically converted from C into Javascript and
|
436
|
+
// we need to manually convert it back to C.
|
437
|
+
switch (rtype_id) {
|
438
|
+
case FFI_TYPE_VOID:
|
439
|
+
break;
|
440
|
+
case FFI_TYPE_INT:
|
441
|
+
case FFI_TYPE_UINT32:
|
442
|
+
case FFI_TYPE_SINT32:
|
443
|
+
case FFI_TYPE_POINTER:
|
444
|
+
DEREF_U32(rvalue, 0) = result;
|
445
|
+
break;
|
446
|
+
case FFI_TYPE_FLOAT:
|
447
|
+
DEREF_F32(rvalue, 0) = result;
|
448
|
+
break;
|
449
|
+
case FFI_TYPE_DOUBLE:
|
450
|
+
DEREF_F64(rvalue, 0) = result;
|
451
|
+
break;
|
452
|
+
case FFI_TYPE_UINT8:
|
453
|
+
case FFI_TYPE_SINT8:
|
454
|
+
DEREF_U8(rvalue, 0) = result;
|
455
|
+
break;
|
456
|
+
case FFI_TYPE_UINT16:
|
457
|
+
case FFI_TYPE_SINT16:
|
458
|
+
DEREF_U16(rvalue, 0) = result;
|
459
|
+
break;
|
460
|
+
case FFI_TYPE_UINT64:
|
461
|
+
case FFI_TYPE_SINT64:
|
462
|
+
#if WASM_BIGINT
|
463
|
+
DEREF_U64(rvalue, 0) = result;
|
464
|
+
#else
|
465
|
+
DEREF_U32(rvalue, 0) = result;
|
466
|
+
DEREF_U32(rvalue, 1) = getTempRet0();
|
467
|
+
#endif
|
468
|
+
break;
|
469
|
+
case FFI_TYPE_COMPLEX:
|
470
|
+
throw new Error('complex ret marshalling nyi');
|
471
|
+
default:
|
472
|
+
throw new Error('Unexpected rtype ' + rtype_id);
|
473
|
+
}
|
474
|
+
});
|
475
|
+
|
476
|
+
void ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue) {
|
477
|
+
ffi_call_js(cif, fn, rvalue, avalue);
|
478
|
+
}
|
479
|
+
|
480
|
+
CHECK_FIELD_OFFSET(ffi_closure, ftramp, 4*0);
|
481
|
+
CHECK_FIELD_OFFSET(ffi_closure, cif, 4*1);
|
482
|
+
CHECK_FIELD_OFFSET(ffi_closure, fun, 4*2);
|
483
|
+
CHECK_FIELD_OFFSET(ffi_closure, user_data, 4*3);
|
484
|
+
|
485
|
+
#define CLOSURE__wrapper(addr) DEREF_U32(addr, 0)
|
486
|
+
#define CLOSURE__cif(addr) DEREF_U32(addr, 1)
|
487
|
+
#define CLOSURE__fun(addr) DEREF_U32(addr, 2)
|
488
|
+
#define CLOSURE__user_data(addr) DEREF_U32(addr, 3)
|
489
|
+
|
490
|
+
EM_JS_MACROS(void *, ffi_closure_alloc_js, (size_t size, void **code), {
|
491
|
+
var closure = _malloc(size);
|
492
|
+
var index = getEmptyTableSlot();
|
493
|
+
DEREF_U32(code, 0) = index;
|
494
|
+
CLOSURE__wrapper(closure) = index;
|
495
|
+
return closure;
|
496
|
+
})
|
497
|
+
|
498
|
+
void * __attribute__ ((visibility ("default")))
|
499
|
+
ffi_closure_alloc(size_t size, void **code) {
|
500
|
+
return ffi_closure_alloc_js(size, code);
|
501
|
+
}
|
502
|
+
|
503
|
+
EM_JS_MACROS(void, ffi_closure_free_js, (void *closure), {
|
504
|
+
var index = CLOSURE__wrapper(closure);
|
505
|
+
freeTableIndexes.push(index);
|
506
|
+
_free(closure);
|
507
|
+
})
|
508
|
+
|
509
|
+
void __attribute__ ((visibility ("default")))
|
510
|
+
ffi_closure_free(void *closure) {
|
511
|
+
return ffi_closure_free_js(closure);
|
512
|
+
}
|
513
|
+
|
514
|
+
#if !WASM_BIGINT
|
515
|
+
|
516
|
+
// When !WASM_BIGINT, we assume there is no JS bigint integration, so JavaScript
|
517
|
+
// functions cannot take 64 bit integer arguments.
|
518
|
+
//
|
519
|
+
// We need to make our own wasm legalizer adaptor that splits 64 bit integer
|
520
|
+
// arguments and then calls the JavaScript trampoline, then the JavaScript
|
521
|
+
// trampoline reassembles them, calls the closure, then splits the result (if
|
522
|
+
// it's a 64 bit integer) and the adaptor puts it back together.
|
523
|
+
//
|
524
|
+
// This is basically the reverse of the Emscripten function
|
525
|
+
// createDyncallWrapper.
|
526
|
+
EM_JS(void, createLegalizerWrapper, (int trampoline, int sig), {
|
527
|
+
if(!sig.includes("j")) {
|
528
|
+
return convertJsFunctionToWasm(trampoline, sig);
|
529
|
+
}
|
530
|
+
var sections = [];
|
531
|
+
var prelude = [
|
532
|
+
0x00, 0x61, 0x73, 0x6d, // magic ("\0asm")
|
533
|
+
0x01, 0x00, 0x00, 0x00, // version: 1
|
534
|
+
];
|
535
|
+
sections.push(prelude);
|
536
|
+
var wrappersig = [
|
537
|
+
// if return type is j, we will put the upper 32 bits into tempRet0.
|
538
|
+
sig[0].replace("j", "i"),
|
539
|
+
// in the rest of the argument list, one 64 bit integer is legalized into
|
540
|
+
// two 32 bit integers.
|
541
|
+
sig.slice(1).replace(/j/g, "ii"),
|
542
|
+
].join("");
|
543
|
+
|
544
|
+
var typeSectionBody = [
|
545
|
+
0x03, // number of types = 3
|
546
|
+
];
|
547
|
+
generateFuncType(wrappersig, typeSectionBody); // The signature of the wrapper we are generating
|
548
|
+
generateFuncType(sig, typeSectionBody); // the signature of the function pointer we will call
|
549
|
+
generateFuncType("i", typeSectionBody); // the signature of getTempRet0
|
550
|
+
|
551
|
+
var typeSection = [0x01 /* Type section code */];
|
552
|
+
uleb128Encode(typeSectionBody.length, typeSection); // length of section in bytes
|
553
|
+
typeSection.push.apply(typeSection, typeSectionBody);
|
554
|
+
sections.push(typeSection);
|
555
|
+
|
556
|
+
var importSection = [
|
557
|
+
0x02, // import section code
|
558
|
+
0x0d, // length of section in bytes
|
559
|
+
0x02, // number of imports = 2
|
560
|
+
// Import the getTempRet0 function, which we will call "r"
|
561
|
+
0x01, 0x65, // name "e"
|
562
|
+
0x01, 0x72, // name "r"
|
563
|
+
0x00, // importing a function
|
564
|
+
0x02, // type 2 = () -> i32
|
565
|
+
// Import the wrapped function, which we will call "f"
|
566
|
+
0x01, 0x65, // name "e"
|
567
|
+
0x01, 0x66, // name "f"
|
568
|
+
0x00, // importing a function
|
569
|
+
0x00, // type 0 = wrappersig
|
570
|
+
];
|
571
|
+
sections.push(importSection);
|
572
|
+
|
573
|
+
var functionSection = [
|
574
|
+
0x03, // function section code
|
575
|
+
0x02, // length of section in bytes
|
576
|
+
0x01, // number of functions = 1
|
577
|
+
0x01, // type 1 = sig
|
578
|
+
];
|
579
|
+
sections.push(functionSection);
|
580
|
+
|
581
|
+
var exportSection = [
|
582
|
+
0x07, // export section code
|
583
|
+
0x05, // length of section in bytes
|
584
|
+
0x01, // One export
|
585
|
+
0x01, 0x66, // name "f"
|
586
|
+
0x00, // type: function
|
587
|
+
0x02, // function index 2 = the wrapper function
|
588
|
+
];
|
589
|
+
sections.push(exportSection);
|
590
|
+
|
591
|
+
var convert_code = [];
|
592
|
+
convert_code.push(0x00); // no local variables (except the arguments)
|
593
|
+
|
594
|
+
function localGet(j) {
|
595
|
+
convert_code.push(0x20); // local.get
|
596
|
+
uleb128Encode(j, convert_code);
|
597
|
+
}
|
598
|
+
|
599
|
+
for (var i = 1; i < sig.length; i++) {
|
600
|
+
if (sig[i] == "j") {
|
601
|
+
localGet(i - 1);
|
602
|
+
convert_code.push(
|
603
|
+
0xa7 // i32.wrap_i64
|
604
|
+
);
|
605
|
+
localGet(i - 1);
|
606
|
+
convert_code.push(
|
607
|
+
0x42, 0x20, // i64.const 32
|
608
|
+
0x88, // i64.shr_u
|
609
|
+
0xa7 // i32.wrap_i64
|
610
|
+
);
|
611
|
+
} else {
|
612
|
+
localGet(i - 1);
|
613
|
+
}
|
614
|
+
}
|
615
|
+
convert_code.push(
|
616
|
+
0x10, 0x01 // call f
|
617
|
+
);
|
618
|
+
if (sig[0] === "j") {
|
619
|
+
// Need to reassemble a 64 bit integer. Lower 32 bits is on stack. Upper 32
|
620
|
+
// bits we get from getTempRet0
|
621
|
+
convert_code.push(
|
622
|
+
0xad, // i64.extend_i32_unsigned
|
623
|
+
0x10, 0x00, // Call function 0 (r = getTempRet0)
|
624
|
+
// join lower 32 bits and upper 32 bits
|
625
|
+
0xac, // i64.extend_i32_signed
|
626
|
+
0x42, 0x20, // i64.const 32
|
627
|
+
0x86, // i64.shl,
|
628
|
+
0x84 // i64.or
|
629
|
+
);
|
630
|
+
}
|
631
|
+
convert_code.push(0x0b); // end
|
632
|
+
|
633
|
+
var codeBody = [0x01]; // one code
|
634
|
+
uleb128Encode(convert_code.length, codeBody);
|
635
|
+
codeBody.push.apply(codeBody, convert_code);
|
636
|
+
var codeSection = [0x0a /* Code section code */];
|
637
|
+
uleb128Encode(codeBody.length, codeSection);
|
638
|
+
codeSection.push.apply(codeSection, codeBody);
|
639
|
+
sections.push(codeSection);
|
640
|
+
|
641
|
+
var bytes = new Uint8Array([].concat.apply([], sections));
|
642
|
+
// We can compile this wasm module synchronously because it is small.
|
643
|
+
var module = new WebAssembly.Module(bytes);
|
644
|
+
var instance = new WebAssembly.Instance(module, {
|
645
|
+
e: {
|
646
|
+
r: getTempRet0,
|
647
|
+
f: trampoline,
|
648
|
+
},
|
649
|
+
});
|
650
|
+
return instance.exports.f;
|
651
|
+
});
|
652
|
+
#endif
|
653
|
+
|
654
|
+
EM_JS_MACROS(
|
655
|
+
ffi_status,
|
656
|
+
ffi_prep_closure_loc_js,
|
657
|
+
(ffi_closure *closure, ffi_cif *cif, void *fun, void *user_data, void *codeloc),
|
658
|
+
{
|
659
|
+
var abi = CIF__ABI(cif);
|
660
|
+
var nargs = CIF__NARGS(cif);
|
661
|
+
var nfixedargs = CIF__NFIXEDARGS(cif);
|
662
|
+
var arg_types_ptr = CIF__ARGTYPES(cif);
|
663
|
+
var rtype_unboxed = unbox_small_structs(CIF__RTYPE(cif));
|
664
|
+
var rtype_ptr = rtype_unboxed[0];
|
665
|
+
var rtype_id = rtype_unboxed[1];
|
666
|
+
|
667
|
+
// First construct the signature of the javascript trampoline we are going to create.
|
668
|
+
// Important: this is the signature for calling us, the onward call always has sig viiii.
|
669
|
+
var sig;
|
670
|
+
var ret_by_arg = false;
|
671
|
+
switch (rtype_id) {
|
672
|
+
case FFI_TYPE_VOID:
|
673
|
+
sig = 'v';
|
674
|
+
break;
|
675
|
+
case FFI_TYPE_STRUCT:
|
676
|
+
case FFI_TYPE_LONGDOUBLE:
|
677
|
+
// Return via a first pointer argument.
|
678
|
+
sig = 'vi';
|
679
|
+
ret_by_arg = true;
|
680
|
+
break;
|
681
|
+
case FFI_TYPE_INT:
|
682
|
+
case FFI_TYPE_UINT8:
|
683
|
+
case FFI_TYPE_SINT8:
|
684
|
+
case FFI_TYPE_UINT16:
|
685
|
+
case FFI_TYPE_SINT16:
|
686
|
+
case FFI_TYPE_UINT32:
|
687
|
+
case FFI_TYPE_SINT32:
|
688
|
+
case FFI_TYPE_POINTER:
|
689
|
+
sig = 'i';
|
690
|
+
break;
|
691
|
+
case FFI_TYPE_FLOAT:
|
692
|
+
sig = 'f';
|
693
|
+
break;
|
694
|
+
case FFI_TYPE_DOUBLE:
|
695
|
+
sig = 'd';
|
696
|
+
break;
|
697
|
+
case FFI_TYPE_UINT64:
|
698
|
+
case FFI_TYPE_SINT64:
|
699
|
+
sig = 'j';
|
700
|
+
break;
|
701
|
+
case FFI_TYPE_COMPLEX:
|
702
|
+
throw new Error('complex ret marshalling nyi');
|
703
|
+
default:
|
704
|
+
throw new Error('Unexpected rtype ' + rtype_id);
|
705
|
+
}
|
706
|
+
var unboxed_arg_type_id_list = [];
|
707
|
+
var unboxed_arg_type_info_list = [];
|
708
|
+
for (var i = 0; i < nargs; i++) {
|
709
|
+
var arg_unboxed = unbox_small_structs(DEREF_U32(arg_types_ptr, i));
|
710
|
+
var arg_type_ptr = arg_unboxed[0];
|
711
|
+
var arg_type_id = arg_unboxed[1];
|
712
|
+
unboxed_arg_type_id_list.push(arg_type_id);
|
713
|
+
unboxed_arg_type_info_list.push([FFI_TYPE__SIZE(arg_type_ptr), FFI_TYPE__ALIGN(arg_type_ptr)]);
|
714
|
+
}
|
715
|
+
for (var i = 0; i < nfixedargs; i++) {
|
716
|
+
switch (unboxed_arg_type_id_list[i]) {
|
717
|
+
case FFI_TYPE_INT:
|
718
|
+
case FFI_TYPE_UINT8:
|
719
|
+
case FFI_TYPE_SINT8:
|
720
|
+
case FFI_TYPE_UINT16:
|
721
|
+
case FFI_TYPE_SINT16:
|
722
|
+
case FFI_TYPE_UINT32:
|
723
|
+
case FFI_TYPE_SINT32:
|
724
|
+
case FFI_TYPE_POINTER:
|
725
|
+
case FFI_TYPE_STRUCT:
|
726
|
+
sig += 'i';
|
727
|
+
break;
|
728
|
+
case FFI_TYPE_FLOAT:
|
729
|
+
sig += 'f';
|
730
|
+
break;
|
731
|
+
case FFI_TYPE_DOUBLE:
|
732
|
+
sig += 'd';
|
733
|
+
break;
|
734
|
+
case FFI_TYPE_LONGDOUBLE:
|
735
|
+
sig += 'jj';
|
736
|
+
break;
|
737
|
+
case FFI_TYPE_UINT64:
|
738
|
+
case FFI_TYPE_SINT64:
|
739
|
+
sig += 'j';
|
740
|
+
break;
|
741
|
+
case FFI_TYPE_COMPLEX:
|
742
|
+
throw new Error('complex marshalling nyi');
|
743
|
+
default:
|
744
|
+
throw new Error('Unexpected argtype ' + arg_type_id);
|
745
|
+
}
|
746
|
+
}
|
747
|
+
if (nfixedargs < nargs) {
|
748
|
+
// extra pointer to varargs stack
|
749
|
+
sig += "i";
|
750
|
+
}
|
751
|
+
LOG_DEBUG("CREATE_CLOSURE", "sig:", sig);
|
752
|
+
function trampoline() {
|
753
|
+
var args = Array.prototype.slice.call(arguments);
|
754
|
+
var size = 0;
|
755
|
+
var orig_stack_ptr = stackSave();
|
756
|
+
var cur_ptr = orig_stack_ptr;
|
757
|
+
var ret_ptr;
|
758
|
+
var jsarg_idx = 0;
|
759
|
+
// Should we return by argument or not? The onwards call returns by argument
|
760
|
+
// no matter what. (Warning: ret_by_arg means the opposite in ffi_call)
|
761
|
+
if (ret_by_arg) {
|
762
|
+
ret_ptr = args[jsarg_idx++];
|
763
|
+
} else {
|
764
|
+
// We might return 4 bytes or 8 bytes, allocate 8 just in case.
|
765
|
+
STACK_ALLOC(cur_ptr, 8, 8);
|
766
|
+
ret_ptr = cur_ptr;
|
767
|
+
}
|
768
|
+
cur_ptr -= 4 * nargs;
|
769
|
+
var args_ptr = cur_ptr;
|
770
|
+
var carg_idx = 0;
|
771
|
+
// Here we either have the actual argument, or a pair of BigInts for long
|
772
|
+
// double, or a pointer to struct. We have to store into args_ptr[i] a
|
773
|
+
// pointer to the ith argument. If the argument is a struct, just store the
|
774
|
+
// pointer. Otherwise allocate stack space and copy the js argument onto the
|
775
|
+
// stack.
|
776
|
+
for (; carg_idx < nfixedargs; carg_idx++) {
|
777
|
+
// jsarg_idx might start out as 0 or 1 depending on ret_by_arg
|
778
|
+
// it advances an extra time for long double
|
779
|
+
var cur_arg = args[jsarg_idx++];
|
780
|
+
var arg_type_info = unboxed_arg_type_info_list[carg_idx];
|
781
|
+
var arg_size = arg_type_info[0];
|
782
|
+
var arg_align = arg_type_info[1];
|
783
|
+
var arg_type_id = unboxed_arg_type_id_list[carg_idx];
|
784
|
+
switch (arg_type_id) {
|
785
|
+
case FFI_TYPE_UINT8:
|
786
|
+
case FFI_TYPE_SINT8:
|
787
|
+
// Bad things happen if we don't align to 4 here
|
788
|
+
STACK_ALLOC(cur_ptr, 1, 4);
|
789
|
+
DEREF_U32(args_ptr, carg_idx) = cur_ptr;
|
790
|
+
DEREF_U8(cur_ptr, 0) = cur_arg;
|
791
|
+
break;
|
792
|
+
case FFI_TYPE_UINT16:
|
793
|
+
case FFI_TYPE_SINT16:
|
794
|
+
// Bad things happen if we don't align to 4 here
|
795
|
+
STACK_ALLOC(cur_ptr, 2, 4);
|
796
|
+
DEREF_U32(args_ptr, carg_idx) = cur_ptr;
|
797
|
+
DEREF_U16(cur_ptr, 0) = cur_arg;
|
798
|
+
break;
|
799
|
+
case FFI_TYPE_INT:
|
800
|
+
case FFI_TYPE_UINT32:
|
801
|
+
case FFI_TYPE_SINT32:
|
802
|
+
case FFI_TYPE_POINTER:
|
803
|
+
STACK_ALLOC(cur_ptr, 4, 4);
|
804
|
+
DEREF_U32(args_ptr, carg_idx) = cur_ptr;
|
805
|
+
DEREF_U32(cur_ptr, 0) = cur_arg;
|
806
|
+
break;
|
807
|
+
case FFI_TYPE_STRUCT:
|
808
|
+
// cur_arg is already a pointer to struct
|
809
|
+
// copy it onto stack to pass by value
|
810
|
+
STACK_ALLOC(cur_ptr, arg_size, arg_align);
|
811
|
+
HEAP8.subarray(cur_ptr, cur_ptr + arg_size).set(HEAP8.subarray(cur_arg, cur_arg + arg_size));
|
812
|
+
DEREF_U32(args_ptr, carg_idx) = cur_ptr;
|
813
|
+
break;
|
814
|
+
case FFI_TYPE_FLOAT:
|
815
|
+
STACK_ALLOC(cur_ptr, 4, 4);
|
816
|
+
DEREF_U32(args_ptr, carg_idx) = cur_ptr;
|
817
|
+
DEREF_F32(cur_ptr, 0) = cur_arg;
|
818
|
+
break;
|
819
|
+
case FFI_TYPE_DOUBLE:
|
820
|
+
STACK_ALLOC(cur_ptr, 8, 8);
|
821
|
+
DEREF_U32(args_ptr, carg_idx) = cur_ptr;
|
822
|
+
DEREF_F64(cur_ptr, 0) = cur_arg;
|
823
|
+
break;
|
824
|
+
case FFI_TYPE_UINT64:
|
825
|
+
case FFI_TYPE_SINT64:
|
826
|
+
STACK_ALLOC(cur_ptr, 8, 8);
|
827
|
+
DEREF_U32(args_ptr, carg_idx) = cur_ptr;
|
828
|
+
#if WASM_BIGINT
|
829
|
+
DEREF_U64(cur_ptr, 0) = cur_arg;
|
830
|
+
#else
|
831
|
+
// Bigint arg was split by legalizer adaptor
|
832
|
+
DEREF_U32(cur_ptr, 0) = cur_arg;
|
833
|
+
cur_arg = args[jsarg_idx++];
|
834
|
+
DEREF_U32(cur_ptr, 1) = cur_arg;
|
835
|
+
#endif
|
836
|
+
break;
|
837
|
+
case FFI_TYPE_LONGDOUBLE:
|
838
|
+
STACK_ALLOC(cur_ptr, 16, 8);
|
839
|
+
DEREF_U32(args_ptr, carg_idx) = cur_ptr;
|
840
|
+
#if WASM_BIGINT
|
841
|
+
DEREF_U64(cur_ptr, 0) = cur_arg;
|
842
|
+
cur_arg = args[jsarg_idx++];
|
843
|
+
DEREF_U64(cur_ptr, 1) = cur_arg;
|
844
|
+
#else
|
845
|
+
// Was split by legalizer adaptor
|
846
|
+
DEREF_U32(cur_ptr, 0) = cur_arg;
|
847
|
+
cur_arg = args[jsarg_idx++];
|
848
|
+
DEREF_U32(cur_ptr, 1) = cur_arg;
|
849
|
+
cur_arg = args[jsarg_idx++];
|
850
|
+
DEREF_U32(cur_ptr, 2) = cur_arg;
|
851
|
+
cur_arg = args[jsarg_idx++];
|
852
|
+
DEREF_U32(cur_ptr, 3) = cur_arg;
|
853
|
+
#endif
|
854
|
+
break;
|
855
|
+
}
|
856
|
+
}
|
857
|
+
// If its a varargs call, last js argument is a pointer to the varargs.
|
858
|
+
var varargs = args[args.length - 1];
|
859
|
+
// We have no way of knowing how many varargs were actually provided, this
|
860
|
+
// fills the rest of the stack space allocated with nonsense. The onward
|
861
|
+
// call will know to ignore the nonsense.
|
862
|
+
|
863
|
+
// We either have a pointer to the argument if the argument is not a struct
|
864
|
+
// or a pointer to pointer to struct. We need to store a pointer to the
|
865
|
+
// argument into args_ptr[i]
|
866
|
+
for (; carg_idx < nargs; carg_idx++) {
|
867
|
+
var arg_type_id = unboxed_arg_type_id_list[carg_idx];
|
868
|
+
var arg_type_info = unboxed_arg_type_info_list[carg_idx];
|
869
|
+
var arg_size = arg_type_info[0];
|
870
|
+
var arg_align = arg_type_info[1];
|
871
|
+
if (arg_type_id === FFI_TYPE_STRUCT) {
|
872
|
+
// In this case varargs is a pointer to pointer to struct so we need to
|
873
|
+
// deref once
|
874
|
+
var struct_ptr = DEREF_U32(varargs, 0);
|
875
|
+
STACK_ALLOC(cur_ptr, arg_size, arg_align);
|
876
|
+
HEAP8.subarray(cur_ptr, cur_ptr + arg_size).set(HEAP8.subarray(struct_ptr, struct_ptr + arg_size));
|
877
|
+
DEREF_U32(args_ptr, carg_idx) = cur_ptr;
|
878
|
+
} else {
|
879
|
+
DEREF_U32(args_ptr, carg_idx) = varargs;
|
880
|
+
}
|
881
|
+
varargs += 4;
|
882
|
+
}
|
883
|
+
stackRestore(cur_ptr);
|
884
|
+
stackAlloc(0); // stackAlloc enforces alignment invariants on the stack pointer
|
885
|
+
LOG_DEBUG("CALL_CLOSURE", "closure:", closure, "fptr", CLOSURE__fun(closure), "cif", CLOSURE__cif(closure));
|
886
|
+
getWasmTableEntry(CLOSURE__fun(closure))(
|
887
|
+
CLOSURE__cif(closure), ret_ptr, args_ptr,
|
888
|
+
CLOSURE__user_data(closure)
|
889
|
+
);
|
890
|
+
stackRestore(orig_stack_ptr);
|
891
|
+
|
892
|
+
// If we aren't supposed to return by argument, figure out what to return.
|
893
|
+
if (!ret_by_arg) {
|
894
|
+
switch (sig[0]) {
|
895
|
+
case "i":
|
896
|
+
return DEREF_U32(ret_ptr, 0);
|
897
|
+
case "j":
|
898
|
+
#if WASM_BIGINT
|
899
|
+
return DEREF_U64(ret_ptr, 0);
|
900
|
+
#else
|
901
|
+
// Split the return i64, set the upper 32 bits into tempRet0 and return
|
902
|
+
// the lower 32 bits.
|
903
|
+
setTempRet0(DEREF_U32(ret_ptr, 1));
|
904
|
+
return DEREF_U32(ret_ptr, 0);
|
905
|
+
#endif
|
906
|
+
case "d":
|
907
|
+
return DEREF_F64(ret_ptr, 0);
|
908
|
+
case "f":
|
909
|
+
return DEREF_F32(ret_ptr, 0);
|
910
|
+
}
|
911
|
+
}
|
912
|
+
}
|
913
|
+
try {
|
914
|
+
var wasm_trampoline = JS_FUNCTION_TO_WASM(trampoline, sig);
|
915
|
+
} catch(e) {
|
916
|
+
return FFI_BAD_TYPEDEF_MACRO;
|
917
|
+
}
|
918
|
+
setWasmTableEntry(codeloc, wasm_trampoline);
|
919
|
+
CLOSURE__cif(closure) = cif;
|
920
|
+
CLOSURE__fun(closure) = fun;
|
921
|
+
CLOSURE__user_data(closure) = user_data;
|
922
|
+
return FFI_OK_MACRO;
|
923
|
+
})
|
924
|
+
|
925
|
+
// EM_JS does not correctly handle function pointer arguments, so we need a
|
926
|
+
// helper
|
927
|
+
ffi_status ffi_prep_closure_loc(ffi_closure *closure, ffi_cif *cif,
|
928
|
+
void (*fun)(ffi_cif *, void *, void **, void *),
|
929
|
+
void *user_data, void *codeloc) {
|
930
|
+
if (cif->abi != FFI_WASM32_EMSCRIPTEN)
|
931
|
+
return FFI_BAD_ABI;
|
932
|
+
return ffi_prep_closure_loc_js(closure, cif, (void *)fun, user_data,
|
933
|
+
codeloc);
|
934
|
+
}
|