wasmtime 28.0.0 → 29.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +155 -120
- data/ext/Cargo.toml +5 -5
- data/ext/cargo-vendor/bitflags-2.8.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/bitflags-2.8.0/CHANGELOG.md +581 -0
- data/ext/cargo-vendor/bitflags-2.8.0/Cargo.lock +384 -0
- data/ext/cargo-vendor/bitflags-2.8.0/Cargo.toml +130 -0
- data/ext/cargo-vendor/bitflags-2.8.0/README.md +77 -0
- data/ext/cargo-vendor/bitflags-2.8.0/examples/custom_derive.rs +23 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/external/arbitrary.rs +33 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/lib.rs +1025 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests/bitflags_match.rs +93 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests/truncate.rs +29 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests/unknown.rs +40 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests.rs +134 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/traits.rs +444 -0
- data/ext/cargo-vendor/cc-1.2.10/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cc-1.2.10/CHANGELOG.md +379 -0
- data/ext/cargo-vendor/cc-1.2.10/Cargo.lock +191 -0
- data/ext/cargo-vendor/cc-1.2.10/Cargo.toml +67 -0
- data/ext/cargo-vendor/cc-1.2.10/src/flags.rs +492 -0
- data/ext/cargo-vendor/cc-1.2.10/src/lib.rs +4216 -0
- data/ext/cargo-vendor/cc-1.2.10/src/target/generated.rs +3403 -0
- data/ext/cargo-vendor/cc-1.2.10/src/tool.rs +512 -0
- data/ext/cargo-vendor/cc-1.2.10/src/windows/windows_sys.rs +134 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/CHANGELOG.md +168 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/Cargo.lock +16 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/Cargo.toml +71 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/LICENSE-MIT +25 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/README.md +126 -0
- data/ext/cargo-vendor/cranelift-bforest-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.116.1/Cargo.lock +25 -0
- data/ext/cargo-vendor/cranelift-bforest-0.116.1/Cargo.toml +73 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/Cargo.lock +73 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/Cargo.toml +88 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/src/scalar.rs +629 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/Cargo.lock +1078 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/Cargo.toml +242 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/build.rs +223 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/binemit/mod.rs +174 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/ir/immediates.rs +1961 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/abi.rs +1540 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/args.rs +711 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/emit.rs +3577 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/emit_tests.rs +7972 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/mod.rs +3056 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/regs.rs +281 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst.isle +5102 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/lower/isle.rs +765 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/lower.isle +3161 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/mod.rs +260 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/mod.rs +476 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/abi.rs +943 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/args.rs +580 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/emit.rs +710 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/mod.rs +846 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/regs.rs +164 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst.isle +489 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/lower/isle.rs +162 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/lower.isle +1414 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/mod.rs +287 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/abi.rs +995 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/inst/args.rs +1957 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/inst/emit_tests.rs +2277 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/s390x/abi.rs +1399 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/s390x/inst/emit.rs +3435 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/abi.rs +1386 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/inst.isle +5758 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/lower/isle/generated_code.rs +16 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/lower/isle.rs +997 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isle_prelude.rs +1156 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/abi.rs +2451 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/buffer.rs +2496 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/lower.rs +1603 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/prelude.isle +836 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/prelude_lower.isle +1128 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/Cargo.lock +46 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/Cargo.toml +75 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/cdsl/instructions.rs +494 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/isa/pulley.rs +20 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/isle.rs +186 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/lib.rs +111 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/pulley.rs +401 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/shared/instructions.rs +3786 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/Cargo.lock +7 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/Cargo.toml +33 -0
- data/ext/cargo-vendor/cranelift-control-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.116.1/Cargo.lock +16 -0
- data/ext/cargo-vendor/cranelift-control-0.116.1/Cargo.toml +44 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/Cargo.lock +77 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/Cargo.toml +89 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/src/sparse.rs +411 -0
- data/ext/cargo-vendor/cranelift-frontend-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.116.0/Cargo.lock +544 -0
- data/ext/cargo-vendor/cranelift-frontend-0.116.0/Cargo.toml +111 -0
- data/ext/cargo-vendor/cranelift-isle-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.116.0/Cargo.lock +294 -0
- data/ext/cargo-vendor/cranelift-isle-0.116.0/Cargo.toml +83 -0
- data/ext/cargo-vendor/cranelift-native-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.116.0/Cargo.lock +261 -0
- data/ext/cargo-vendor/cranelift-native-0.116.0/Cargo.toml +53 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/Cargo.toml +70 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/README.md +52 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/tests/common/mod.rs +33 -0
- data/ext/cargo-vendor/indexmap-2.7.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/indexmap-2.7.1/Cargo.lock +333 -0
- data/ext/cargo-vendor/indexmap-2.7.1/Cargo.toml +150 -0
- data/ext/cargo-vendor/indexmap-2.7.1/RELEASES.md +541 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/lib.rs +273 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map/core/entry.rs +571 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map/core.rs +738 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map/iter.rs +776 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map.rs +1608 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/set/iter.rs +628 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/set.rs +1301 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/util.rs +58 -0
- data/ext/cargo-vendor/ipnet-2.11.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/ipnet-2.11.0/Cargo.lock +179 -0
- data/ext/cargo-vendor/ipnet-2.11.0/Cargo.toml +69 -0
- data/ext/cargo-vendor/ipnet-2.11.0/src/ipext.rs +989 -0
- data/ext/cargo-vendor/ipnet-2.11.0/src/ipnet.rs +2001 -0
- data/ext/cargo-vendor/ipnet-2.11.0/src/lib.rs +106 -0
- data/ext/cargo-vendor/js-sys-0.3.77/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/js-sys-0.3.77/Cargo.lock +127 -0
- data/ext/cargo-vendor/js-sys-0.3.77/Cargo.toml +69 -0
- data/ext/cargo-vendor/js-sys-0.3.77/src/lib.rs +6439 -0
- data/ext/cargo-vendor/log-0.4.25/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/log-0.4.25/CHANGELOG.md +368 -0
- data/ext/cargo-vendor/log-0.4.25/Cargo.toml +143 -0
- data/ext/cargo-vendor/log-0.4.25/README.md +134 -0
- data/ext/cargo-vendor/log-0.4.25/src/kv/key.rs +163 -0
- data/ext/cargo-vendor/log-0.4.25/src/kv/mod.rs +265 -0
- data/ext/cargo-vendor/log-0.4.25/src/kv/value.rs +1394 -0
- data/ext/cargo-vendor/log-0.4.25/src/lib.rs +1884 -0
- data/ext/cargo-vendor/log-0.4.25/src/serde.rs +397 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/Cargo.lock +48 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/Cargo.toml +90 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE +25 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE-MIT.md +24 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE-ZLIB.md +14 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/core.rs +2459 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/mod.rs +237 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/stored.rs +306 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/zlib.rs +112 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/Cargo.lock +304 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/Cargo.toml +105 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/src/fallback.rs +1277 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/src/lib.rs +1389 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/src/rcvec.rs +146 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/CONTRIBUTING.md +278 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/Cargo.lock +402 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/Cargo.toml +126 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/examples/objdump.rs +48 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/decode.rs +761 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/disas.rs +333 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/encode.rs +288 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/imms.rs +69 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/debug.rs +128 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/match_loop.rs +39 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/tail_loop.rs +152 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp.rs +4655 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/lib.rs +1287 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/op.rs +279 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/opcode.rs +106 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/regs.rs +375 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/tests/all/disas.rs +189 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/tests/all/interp.rs +853 -0
- data/ext/cargo-vendor/rustix-0.38.44/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rustix-0.38.44/Cargo.lock +1012 -0
- data/ext/cargo-vendor/rustix-0.38.44/Cargo.toml +308 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/backend/libc/system/syscalls.rs +159 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/backend/linux_raw/system/syscalls.rs +92 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/lib.rs +408 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/maybe_polyfill/std/mod.rs +41 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/system.rs +284 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/weak.rs +287 -0
- data/ext/cargo-vendor/rustversion-1.0.19/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rustversion-1.0.19/Cargo.lock +294 -0
- data/ext/cargo-vendor/rustversion-1.0.19/Cargo.toml +62 -0
- data/ext/cargo-vendor/rustversion-1.0.19/README.md +167 -0
- data/ext/cargo-vendor/rustversion-1.0.19/build/build.rs +102 -0
- data/ext/cargo-vendor/rustversion-1.0.19/build/rustc.rs +126 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/attr.rs +35 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/bound.rs +63 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/constfn.rs +58 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/date.rs +50 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/error.rs +56 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/expand.rs +72 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/expr.rs +163 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/iter.rs +42 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/lib.rs +282 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/release.rs +34 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/time.rs +51 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/token.rs +78 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/version.rs +18 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/test_const.rs +42 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/test_eval.rs +20 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/test_parse.rs +103 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-bound.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-bound.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-date.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-date.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-not.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-not.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-version.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-version.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/const-not-fn.rs +4 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/const-not-fn.stderr +5 -0
- data/ext/cargo-vendor/semver-1.0.25/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/semver-1.0.25/Cargo.lock +65 -0
- data/ext/cargo-vendor/semver-1.0.25/Cargo.toml +74 -0
- data/ext/cargo-vendor/semver-1.0.25/src/lib.rs +580 -0
- data/ext/cargo-vendor/serde_json-1.0.137/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/serde_json-1.0.137/Cargo.lock +417 -0
- data/ext/cargo-vendor/serde_json-1.0.137/Cargo.toml +153 -0
- data/ext/cargo-vendor/serde_json-1.0.137/src/lib.rs +435 -0
- data/ext/cargo-vendor/serde_json-1.0.137/src/value/ser.rs +1063 -0
- data/ext/cargo-vendor/serde_json-1.0.137/tests/compiletest.rs +7 -0
- data/ext/cargo-vendor/syn-2.0.96/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/syn-2.0.96/Cargo.lock +1749 -0
- data/ext/cargo-vendor/syn-2.0.96/Cargo.toml +268 -0
- data/ext/cargo-vendor/syn-2.0.96/src/expr.rs +4102 -0
- data/ext/cargo-vendor/syn-2.0.96/src/fixup.rs +770 -0
- data/ext/cargo-vendor/syn-2.0.96/src/lib.rs +1010 -0
- data/ext/cargo-vendor/syn-2.0.96/tests/test_expr.rs +1646 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/Cargo.lock +96 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/Cargo.toml +66 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/README.md +24 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/host.rs +63 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/lib.rs +109 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/targets.rs +2120 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/triple.rs +554 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/Cargo.lock +151 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/Cargo.toml +47 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/README.md +50 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/examples/variant.rs +60 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/src/lib.rs +60 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/src/variant.rs +248 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/Cargo.lock +557 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/Cargo.toml +80 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/LICENSE-APACHE +176 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/LICENSE-MIT +23 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/README.md +282 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/benches/xid.rs +125 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/src/lib.rs +269 -0
- data/ext/cargo-vendor/uuid-1.12.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/uuid-1.12.1/Cargo.toml +220 -0
- data/ext/cargo-vendor/uuid-1.12.1/README.md +90 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/builder.rs +879 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/error.rs +175 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/external/arbitrary_support.rs +71 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/external/serde_support.rs +767 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/external/slog_support.rs +48 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/lib.rs +1894 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/non_nil.rs +142 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/timestamp.rs +978 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/v5.rs +188 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/v7.rs +242 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/Cargo.lock +1843 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/Cargo.toml +252 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview0/wasi_unstable.witx +513 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview1/typenames.witx +750 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview1/wasi_snapshot_preview1.witx +521 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/Cargo.lock +184 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/Cargo.toml +106 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/cache/intern.rs +100 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/closure.rs +915 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/convert/closures.rs +253 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/externref.rs +174 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/lib.rs +1778 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/rt/marker.rs +47 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/rt/mod.rs +711 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/Cargo.lock +71 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/Cargo.toml +68 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/ast.rs +607 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/codegen.rs +1976 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/encode.rs +626 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/Cargo.lock +337 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/Cargo.toml +60 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/src/lib.rs +75 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/Cargo.lock +84 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/Cargo.toml +70 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/src/lib.rs +203 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/src/parser.rs +2332 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/Cargo.lock +16 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/Cargo.toml +52 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/identifier.rs +42 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/lib.rs +239 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/schema_hash_approval.rs +16 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/Cargo.lock +248 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/Cargo.toml +82 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/src/component/types.rs +792 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/src/reencode/component.rs +1446 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/Cargo.lock +646 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/Cargo.toml +139 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/src/readers/component/types.rs +574 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/src/validator/component.rs +4019 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/src/validator/component_types.rs +3388 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/Cargo.lock +1914 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/Cargo.toml +477 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/compile/code_builder.rs +317 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/compile/runtime.rs +208 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/compile.rs +888 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/config.rs +3461 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/engine/serialization.rs +947 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/engine.rs +858 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/code_memory.rs +470 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/bindgen_examples/_7_async.rs +47 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/bindgen_examples/mod.rs +557 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/func/host.rs +455 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/func/typed.rs +2469 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/mod.rs +670 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/externals/global.rs +312 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/func/typed.rs +788 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/func.rs +2674 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/instance.rs +988 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/memory.rs +1092 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/module/registry.rs +344 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/profiling.rs +280 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/store.rs +2988 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trampoline/global.rs +70 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trampoline/memory.rs +261 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trap.rs +620 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/values.rs +1092 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/arm.rs +28 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/mod.rs +48 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/unsupported.rs +28 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/x86.rs +39 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/component/libcalls.rs +559 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/component.rs +873 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/cow.rs +1144 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/gc/enabled/drc.rs +1094 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/helpers.c +207 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +1016 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +255 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +307 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling.rs +798 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/interpreter.rs +351 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/interpreter_disabled.rs +49 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/libcalls.rs +1346 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/malloc.rs +203 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/mmap.rs +235 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/static_.rs +78 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory.rs +751 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/mmap.rs +443 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/mmap_vec.rs +265 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/custom/mmap.rs +140 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/custom/vm.rs +102 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/miri/mmap.rs +124 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/miri/vm.rs +55 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/mmap.rs +210 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/signals.rs +491 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/unwind.rs +135 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/vm.rs +174 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/mmap.rs +246 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/mod.rs +29 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/traphandlers.rs +141 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/unwind32.rs +23 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/vm.rs +71 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/backtrace.rs +274 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/coredump_enabled.rs +43 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/signals.rs +64 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers.rs +955 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/unwind.rs +56 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/vmcontext.rs +1364 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm.rs +411 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/Cargo.lock +16 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/Cargo.toml +34 -0
- data/ext/cargo-vendor/wasmtime-cache-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-29.0.0/Cargo.lock +767 -0
- data/ext/cargo-vendor/wasmtime-cache-29.0.0/Cargo.toml +122 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/Cargo.lock +277 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/Cargo.toml +129 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char.rs +387 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char_async.rs +413 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char_tracing_async.rs +460 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions.rs +824 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions_async.rs +898 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions_tracing_async.rs +1189 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code.rs +279 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code_async.rs +298 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code_tracing_async.rs +311 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/direct-import_async.rs +218 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/direct-import_tracing_async.rs +231 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags.rs +859 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags_async.rs +920 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags_tracing_async.rs +1095 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats.rs +447 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats_async.rs +487 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats_tracing_async.rs +581 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/host-world_async.rs +218 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/host-world_tracing_async.rs +231 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers.rs +989 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers_async.rs +1127 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers_tracing_async.rs +1554 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists.rs +2032 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists_async.rs +2287 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists_tracing_async.rs +2979 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments.rs +730 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments_async.rs +757 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments_tracing_async.rs +818 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return.rs +475 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return_async.rs +518 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return_tracing_async.rs +632 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion.rs +508 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion_async.rs +535 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion_tracing_async.rs +583 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1.rs +208 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1_tracing_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2.rs +208 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2_tracing_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records.rs +1056 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records_async.rs +1145 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records_tracing_async.rs +1405 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename.rs +268 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename_async.rs +287 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename_tracing_async.rs +300 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export.rs +879 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export_async.rs +935 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export_tracing_async.rs +1009 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import.rs +1217 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import_async.rs +1350 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import_tracing_async.rs +1763 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types.rs +429 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types_async.rs +451 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types_tracing_async.rs +475 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions.rs +522 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions_async.rs +573 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions_tracing_async.rs +717 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists.rs +545 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists_async.rs +589 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists_tracing_async.rs +686 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi.rs +331 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi_async.rs +352 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi_tracing_async.rs +378 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous.rs +454 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous_async.rs +473 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous_tracing_async.rs +495 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export.rs +263 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export_async.rs +272 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export_tracing_async.rs +280 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke.rs +218 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke_async.rs +232 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke_tracing_async.rs +245 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings.rs +432 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings_async.rs +465 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings_tracing_async.rs +537 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features.rs +482 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features_async.rs +523 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features_tracing_async.rs +581 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo.rs +250 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo_async.rs +264 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo_tracing_async.rs +277 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths.rs +402 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths_async.rs +438 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths_tracing_async.rs +490 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants.rs +2016 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants_async.rs +2182 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants_tracing_async.rs +2704 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat.rs +265 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat_async.rs +271 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat_tracing_async.rs +271 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types.rs +263 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types_async.rs +278 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types_tracing_async.rs +286 -0
- data/ext/cargo-vendor/wasmtime-component-util-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-29.0.0/Cargo.lock +7 -0
- data/ext/cargo-vendor/wasmtime-component-util-29.0.0/Cargo.toml +37 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/Cargo.lock +647 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/Cargo.toml +170 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/compiler/component.rs +996 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/compiler.rs +1192 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/gc.rs +288 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/attr.rs +453 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/debug_transform_logging.rs +276 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/mod.rs +274 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/unit.rs +539 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/utils.rs +62 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/func_environ.rs +3435 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled/drc.rs +747 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled/null.rs +285 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled.rs +1496 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/lib.rs +430 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/obj.rs +657 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/code_translator/bounds_checks.rs +798 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/code_translator.rs +4082 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/environ/mod.rs +6 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/environ/spec.rs +55 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/func_translator.rs +284 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/mod.rs +26 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/state.rs +546 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/table.rs +122 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/Cargo.lock +713 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/Cargo.toml +217 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/builtin.rs +385 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/compile/mod.rs +390 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/compile/module_artifacts.rs +318 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component/info.rs +693 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component/vmcomponent_offsets.rs +316 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component.rs +108 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/demangling.rs +31 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/ext.rs +40 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/hostcall.rs +59 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/lib.rs +74 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/module_artifacts.rs +142 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/tunables.rs +244 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/vmoffsets.rs +903 -0
- data/ext/cargo-vendor/wasmtime-fiber-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-29.0.0/Cargo.lock +279 -0
- data/ext/cargo-vendor/wasmtime-fiber-29.0.0/Cargo.toml +101 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/Cargo.lock +187 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/Cargo.toml +95 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/Cargo.lock +104 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/Cargo.toml +85 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/Cargo.lock +16 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/Cargo.toml +72 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/src/lib.rs +281 -0
- data/ext/cargo-vendor/wasmtime-slab-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-slab-29.0.0/Cargo.lock +7 -0
- data/ext/cargo-vendor/wasmtime-slab-29.0.0/Cargo.toml +64 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/Cargo.lock +47 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/Cargo.toml +42 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/Cargo.lock +2112 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/Cargo.toml +238 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/bindings.rs +565 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/filesystem.rs +1088 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/io.rs +370 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/tcp.rs +546 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/udp.rs +760 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/ip_name_lookup.rs +130 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/pipe.rs +836 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/poll.rs +243 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/command.wit +10 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/imports.wit +36 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/stdio.wit +26 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/monotonic-clock.wit +50 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/timezone.wit +55 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/wall-clock.wit +46 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/world.wit +11 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/preopens.wit +11 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/types.wit +672 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/world.wit +9 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/error.wit +34 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/poll.wit +47 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/streams.wit +290 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/world.wit +10 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/insecure-seed.wit +27 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/insecure.wit +25 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/random.wit +29 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/world.wit +13 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/ip-name-lookup.wit +56 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/network.wit +169 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/tcp.wit +387 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/udp.wit +288 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/world.wit +19 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/test.wit +13 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/world.wit +6 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview0/wasi_unstable.witx +513 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview1/typenames.witx +750 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview1/wasi_snapshot_preview1.witx +521 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/Cargo.lock +587 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/Cargo.toml +120 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/src/builder.rs +100 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/Cargo.lock +185 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/Cargo.toml +80 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/src/lib.rs +3356 -0
- data/ext/cargo-vendor/wast-224.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wast-224.0.0/Cargo.lock +518 -0
- data/ext/cargo-vendor/wast-224.0.0/Cargo.toml +111 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/binary.rs +959 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/expand.rs +1078 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/resolve.rs +1178 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/types.rs +1041 -0
- data/ext/cargo-vendor/wat-1.224.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wat-1.224.0/Cargo.lock +126 -0
- data/ext/cargo-vendor/wat-1.224.0/Cargo.toml +61 -0
- data/ext/cargo-vendor/wiggle-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-29.0.0/Cargo.lock +1233 -0
- data/ext/cargo-vendor/wiggle-29.0.0/Cargo.toml +133 -0
- data/ext/cargo-vendor/wiggle-generate-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-29.0.0/Cargo.lock +223 -0
- data/ext/cargo-vendor/wiggle-generate-29.0.0/Cargo.toml +99 -0
- data/ext/cargo-vendor/wiggle-macro-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-29.0.0/Cargo.lock +235 -0
- data/ext/cargo-vendor/wiggle-macro-29.0.0/Cargo.toml +92 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/Cargo.lock +559 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/Cargo.toml +118 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/abi/mod.rs +666 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/bounds.rs +230 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/builtin.rs +274 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/call.rs +444 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/context.rs +710 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/control.rs +1055 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/error.rs +182 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/mod.rs +1304 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/frame/mod.rs +294 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/abi.rs +299 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/asm.rs +1085 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/masm.rs +886 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/mod.rs +175 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/mod.rs +338 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/abi.rs +494 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/asm.rs +1478 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/masm.rs +1361 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/mod.rs +176 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/masm.rs +1131 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/regalloc.rs +74 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/stack.rs +458 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/visitor.rs +2312 -0
- data/ext/cargo-vendor/winnow-0.6.24/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winnow-0.6.24/Cargo.lock +1567 -0
- data/ext/cargo-vendor/winnow-0.6.24/Cargo.toml +359 -0
- data/ext/cargo-vendor/winnow-0.6.24/examples/json/parser_partial.rs +350 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/_topic/nom.rs +104 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/_topic/stream.rs +65 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/_topic/why.rs +127 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/ascii/mod.rs +1895 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/binary/bits/mod.rs +412 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/binary/bits/tests.rs +192 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/core.rs +528 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/impls.rs +728 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/mod.rs +182 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/multi.rs +1612 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/tests.rs +1373 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/error.rs +1422 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/lib.rs +166 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/macros/mod.rs +5 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/parser.rs +1373 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/stream/mod.rs +3827 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/token/mod.rs +1105 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/token/tests.rs +863 -0
- data/lib/wasmtime/version.rb +1 -1
- metadata +2408 -2300
- data/ext/cargo-vendor/bitflags-2.6.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/bitflags-2.6.0/CHANGELOG.md +0 -553
- data/ext/cargo-vendor/bitflags-2.6.0/Cargo.lock +0 -383
- data/ext/cargo-vendor/bitflags-2.6.0/Cargo.toml +0 -96
- data/ext/cargo-vendor/bitflags-2.6.0/README.md +0 -77
- data/ext/cargo-vendor/bitflags-2.6.0/examples/custom_derive.rs +0 -23
- data/ext/cargo-vendor/bitflags-2.6.0/src/external/arbitrary.rs +0 -33
- data/ext/cargo-vendor/bitflags-2.6.0/src/lib.rs +0 -927
- data/ext/cargo-vendor/bitflags-2.6.0/src/tests.rs +0 -131
- data/ext/cargo-vendor/bitflags-2.6.0/src/traits.rs +0 -431
- data/ext/cargo-vendor/cc-1.2.7/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cc-1.2.7/CHANGELOG.md +0 -352
- data/ext/cargo-vendor/cc-1.2.7/Cargo.lock +0 -191
- data/ext/cargo-vendor/cc-1.2.7/Cargo.toml +0 -67
- data/ext/cargo-vendor/cc-1.2.7/src/flags.rs +0 -480
- data/ext/cargo-vendor/cc-1.2.7/src/lib.rs +0 -4210
- data/ext/cargo-vendor/cc-1.2.7/src/target/generated.rs +0 -3343
- data/ext/cargo-vendor/cc-1.2.7/src/tool.rs +0 -478
- data/ext/cargo-vendor/cc-1.2.7/src/windows/windows_sys.rs +0 -121
- data/ext/cargo-vendor/cpufeatures-0.2.16/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cpufeatures-0.2.16/CHANGELOG.md +0 -162
- data/ext/cargo-vendor/cpufeatures-0.2.16/Cargo.lock +0 -16
- data/ext/cargo-vendor/cpufeatures-0.2.16/Cargo.toml +0 -67
- data/ext/cargo-vendor/cpufeatures-0.2.16/LICENSE-MIT +0 -25
- data/ext/cargo-vendor/cpufeatures-0.2.16/README.md +0 -126
- data/ext/cargo-vendor/cranelift-bforest-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.115.0/Cargo.toml +0 -70
- data/ext/cargo-vendor/cranelift-bitset-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bitset-0.115.0/Cargo.toml +0 -85
- data/ext/cargo-vendor/cranelift-bitset-0.115.0/src/scalar.rs +0 -626
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/Cargo.toml +0 -238
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/build.rs +0 -255
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/binemit/mod.rs +0 -173
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/ir/immediates.rs +0 -1941
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/abi.rs +0 -1536
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/args.rs +0 -711
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/emit.rs +0 -3567
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/emit_tests.rs +0 -7972
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/mod.rs +0 -3056
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/regs.rs +0 -269
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst.isle +0 -5097
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/lower/isle.rs +0 -752
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/lower.isle +0 -3123
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/mod.rs +0 -260
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/mod.rs +0 -472
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/abi.rs +0 -762
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/args.rs +0 -226
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/emit.rs +0 -598
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/mod.rs +0 -976
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/regs.rs +0 -164
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst.isle +0 -589
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/lower/isle.rs +0 -148
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/lower.isle +0 -251
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/mod.rs +0 -281
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/abi.rs +0 -989
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/inst/args.rs +0 -1957
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/inst/emit_tests.rs +0 -2277
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/s390x/abi.rs +0 -1397
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/s390x/inst/emit.rs +0 -3426
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/abi.rs +0 -1384
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/inst.isle +0 -5758
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/lower/isle/generated_code.rs +0 -15
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/lower/isle.rs +0 -1001
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isle_prelude.rs +0 -1144
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/abi.rs +0 -2451
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/buffer.rs +0 -2496
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/lower.rs +0 -1602
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/prelude.isle +0 -827
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/prelude_lower.isle +0 -1116
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/Cargo.toml +0 -65
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/cdsl/instructions.rs +0 -494
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/isa/pulley.rs +0 -14
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/isle.rs +0 -182
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/lib.rs +0 -98
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/shared/instructions.rs +0 -3786
- data/ext/cargo-vendor/cranelift-codegen-shared-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.115.0/Cargo.toml +0 -33
- data/ext/cargo-vendor/cranelift-control-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.115.0/Cargo.toml +0 -44
- data/ext/cargo-vendor/cranelift-entity-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.115.0/Cargo.toml +0 -86
- data/ext/cargo-vendor/cranelift-entity-0.115.0/src/sparse.rs +0 -367
- data/ext/cargo-vendor/cranelift-frontend-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.115.0/Cargo.toml +0 -108
- data/ext/cargo-vendor/cranelift-isle-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.115.0/Cargo.toml +0 -80
- data/ext/cargo-vendor/cranelift-native-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.115.0/Cargo.toml +0 -53
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/Cargo.toml +0 -70
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/README.md +0 -52
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/tests/common/mod.rs +0 -33
- data/ext/cargo-vendor/indexmap-2.7.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/indexmap-2.7.0/Cargo.toml +0 -153
- data/ext/cargo-vendor/indexmap-2.7.0/RELEASES.md +0 -536
- data/ext/cargo-vendor/indexmap-2.7.0/src/lib.rs +0 -274
- data/ext/cargo-vendor/indexmap-2.7.0/src/map/core/entry.rs +0 -569
- data/ext/cargo-vendor/indexmap-2.7.0/src/map/core.rs +0 -722
- data/ext/cargo-vendor/indexmap-2.7.0/src/map/iter.rs +0 -775
- data/ext/cargo-vendor/indexmap-2.7.0/src/map.rs +0 -1578
- data/ext/cargo-vendor/indexmap-2.7.0/src/set/iter.rs +0 -627
- data/ext/cargo-vendor/indexmap-2.7.0/src/set.rs +0 -1290
- data/ext/cargo-vendor/indexmap-2.7.0/src/util.rs +0 -53
- data/ext/cargo-vendor/ipnet-2.10.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/ipnet-2.10.1/Cargo.toml +0 -68
- data/ext/cargo-vendor/ipnet-2.10.1/src/ipext.rs +0 -995
- data/ext/cargo-vendor/ipnet-2.10.1/src/ipnet.rs +0 -2002
- data/ext/cargo-vendor/ipnet-2.10.1/src/lib.rs +0 -108
- data/ext/cargo-vendor/js-sys-0.3.76/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/js-sys-0.3.76/Cargo.toml +0 -69
- data/ext/cargo-vendor/js-sys-0.3.76/src/lib.rs +0 -6426
- data/ext/cargo-vendor/log-0.4.22/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/log-0.4.22/CHANGELOG.md +0 -324
- data/ext/cargo-vendor/log-0.4.22/Cargo.toml +0 -139
- data/ext/cargo-vendor/log-0.4.22/README.md +0 -130
- data/ext/cargo-vendor/log-0.4.22/src/kv/key.rs +0 -143
- data/ext/cargo-vendor/log-0.4.22/src/kv/mod.rs +0 -265
- data/ext/cargo-vendor/log-0.4.22/src/kv/value.rs +0 -1394
- data/ext/cargo-vendor/log-0.4.22/src/lib.rs +0 -1878
- data/ext/cargo-vendor/log-0.4.22/src/serde.rs +0 -397
- data/ext/cargo-vendor/miniz_oxide-0.8.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/miniz_oxide-0.8.2/Cargo.toml +0 -87
- data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE +0 -21
- data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE-MIT.md +0 -21
- data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE-ZLIB.md +0 -11
- data/ext/cargo-vendor/miniz_oxide-0.8.2/src/deflate/core.rs +0 -2528
- data/ext/cargo-vendor/miniz_oxide-0.8.2/src/deflate/mod.rs +0 -226
- data/ext/cargo-vendor/proc-macro2-1.0.92/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/proc-macro2-1.0.92/Cargo.lock +0 -313
- data/ext/cargo-vendor/proc-macro2-1.0.92/Cargo.toml +0 -105
- data/ext/cargo-vendor/proc-macro2-1.0.92/src/fallback.rs +0 -1266
- data/ext/cargo-vendor/proc-macro2-1.0.92/src/lib.rs +0 -1389
- data/ext/cargo-vendor/proc-macro2-1.0.92/src/rcvec.rs +0 -145
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/Cargo.lock +0 -386
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/Cargo.toml +0 -118
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/examples/objdump.rs +0 -48
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/decode.rs +0 -734
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/disas.rs +0 -292
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/encode.rs +0 -198
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/imms.rs +0 -31
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp/match_loop.rs +0 -38
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp/tail_loop.rs +0 -137
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp.rs +0 -1269
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/lib.rs +0 -258
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/op.rs +0 -256
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/opcode.rs +0 -123
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/regs.rs +0 -345
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/tests/all/disas.rs +0 -189
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/tests/all/interp.rs +0 -1216
- data/ext/cargo-vendor/rustix-0.38.43/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/rustix-0.38.43/Cargo.lock +0 -1012
- data/ext/cargo-vendor/rustix-0.38.43/Cargo.toml +0 -308
- data/ext/cargo-vendor/rustix-0.38.43/src/backend/libc/system/syscalls.rs +0 -121
- data/ext/cargo-vendor/rustix-0.38.43/src/backend/linux_raw/system/syscalls.rs +0 -86
- data/ext/cargo-vendor/rustix-0.38.43/src/lib.rs +0 -401
- data/ext/cargo-vendor/rustix-0.38.43/src/maybe_polyfill/std/mod.rs +0 -43
- data/ext/cargo-vendor/rustix-0.38.43/src/system.rs +0 -261
- data/ext/cargo-vendor/rustix-0.38.43/src/weak.rs +0 -287
- data/ext/cargo-vendor/semver-1.0.24/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/semver-1.0.24/Cargo.lock +0 -65
- data/ext/cargo-vendor/semver-1.0.24/Cargo.toml +0 -71
- data/ext/cargo-vendor/semver-1.0.24/src/lib.rs +0 -580
- data/ext/cargo-vendor/serde_json-1.0.135/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/serde_json-1.0.135/Cargo.lock +0 -417
- data/ext/cargo-vendor/serde_json-1.0.135/Cargo.toml +0 -149
- data/ext/cargo-vendor/serde_json-1.0.135/src/lib.rs +0 -435
- data/ext/cargo-vendor/serde_json-1.0.135/src/value/ser.rs +0 -1063
- data/ext/cargo-vendor/syn-2.0.95/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/syn-2.0.95/Cargo.lock +0 -1749
- data/ext/cargo-vendor/syn-2.0.95/Cargo.toml +0 -268
- data/ext/cargo-vendor/syn-2.0.95/src/expr.rs +0 -4099
- data/ext/cargo-vendor/syn-2.0.95/src/fixup.rs +0 -725
- data/ext/cargo-vendor/syn-2.0.95/src/lib.rs +0 -1010
- data/ext/cargo-vendor/syn-2.0.95/tests/test_expr.rs +0 -1631
- data/ext/cargo-vendor/target-lexicon-0.12.16/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/target-lexicon-0.12.16/Cargo.lock +0 -89
- data/ext/cargo-vendor/target-lexicon-0.12.16/Cargo.toml +0 -65
- data/ext/cargo-vendor/target-lexicon-0.12.16/README.md +0 -20
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/host.rs +0 -63
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/lib.rs +0 -109
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/targets.rs +0 -1955
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/triple.rs +0 -554
- data/ext/cargo-vendor/unicode-ident-1.0.14/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/unicode-ident-1.0.14/Cargo.lock +0 -566
- data/ext/cargo-vendor/unicode-ident-1.0.14/Cargo.toml +0 -80
- data/ext/cargo-vendor/unicode-ident-1.0.14/README.md +0 -282
- data/ext/cargo-vendor/unicode-ident-1.0.14/benches/xid.rs +0 -127
- data/ext/cargo-vendor/unicode-ident-1.0.14/src/lib.rs +0 -269
- data/ext/cargo-vendor/uuid-1.11.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/uuid-1.11.0/Cargo.toml +0 -219
- data/ext/cargo-vendor/uuid-1.11.0/README.md +0 -93
- data/ext/cargo-vendor/uuid-1.11.0/src/builder.rs +0 -930
- data/ext/cargo-vendor/uuid-1.11.0/src/error.rs +0 -172
- data/ext/cargo-vendor/uuid-1.11.0/src/external/arbitrary_support.rs +0 -45
- data/ext/cargo-vendor/uuid-1.11.0/src/external/serde_support.rs +0 -735
- data/ext/cargo-vendor/uuid-1.11.0/src/external/slog_support.rs +0 -37
- data/ext/cargo-vendor/uuid-1.11.0/src/lib.rs +0 -1895
- data/ext/cargo-vendor/uuid-1.11.0/src/timestamp.rs +0 -972
- data/ext/cargo-vendor/uuid-1.11.0/src/v5.rs +0 -188
- data/ext/cargo-vendor/uuid-1.11.0/src/v7.rs +0 -241
- data/ext/cargo-vendor/wasi-common-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-28.0.0/Cargo.toml +0 -249
- data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview0/wasi_unstable.witx +0 -513
- data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview1/typenames.witx +0 -750
- data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview1/wasi_snapshot_preview1.witx +0 -521
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/Cargo.toml +0 -104
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/cache/intern.rs +0 -103
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/closure.rs +0 -913
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/convert/closures.rs +0 -249
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/externref.rs +0 -177
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/lib.rs +0 -2525
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/Cargo.toml +0 -71
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/ast.rs +0 -581
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/codegen.rs +0 -1945
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/encode.rs +0 -616
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/Cargo.toml +0 -64
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/src/lib.rs +0 -61
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/Cargo.toml +0 -74
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/src/lib.rs +0 -170
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/src/parser.rs +0 -2067
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/Cargo.toml +0 -49
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/src/lib.rs +0 -230
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/src/schema_hash_approval.rs +0 -16
- data/ext/cargo-vendor/wasm-encoder-0.223.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-encoder-0.223.0/Cargo.toml +0 -82
- data/ext/cargo-vendor/wasm-encoder-0.223.0/src/component/types.rs +0 -792
- data/ext/cargo-vendor/wasm-encoder-0.223.0/src/reencode/component.rs +0 -1446
- data/ext/cargo-vendor/wasmparser-0.223.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmparser-0.223.0/Cargo.lock +0 -646
- data/ext/cargo-vendor/wasmparser-0.223.0/Cargo.toml +0 -139
- data/ext/cargo-vendor/wasmparser-0.223.0/src/readers/component/types.rs +0 -574
- data/ext/cargo-vendor/wasmparser-0.223.0/src/validator/component.rs +0 -4006
- data/ext/cargo-vendor/wasmparser-0.223.0/src/validator/component_types.rs +0 -3377
- data/ext/cargo-vendor/wasmtime-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-28.0.0/Cargo.toml +0 -467
- data/ext/cargo-vendor/wasmtime-28.0.0/src/compile/code_builder.rs +0 -317
- data/ext/cargo-vendor/wasmtime-28.0.0/src/compile/runtime.rs +0 -171
- data/ext/cargo-vendor/wasmtime-28.0.0/src/compile.rs +0 -914
- data/ext/cargo-vendor/wasmtime-28.0.0/src/config.rs +0 -3439
- data/ext/cargo-vendor/wasmtime-28.0.0/src/engine/serialization.rs +0 -942
- data/ext/cargo-vendor/wasmtime-28.0.0/src/engine.rs +0 -823
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/code_memory.rs +0 -395
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/bindgen_examples/mod.rs +0 -488
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/func/host.rs +0 -455
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/func/typed.rs +0 -2482
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/mod.rs +0 -677
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/externals/global.rs +0 -312
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/func/typed.rs +0 -788
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/func.rs +0 -2672
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/instance.rs +0 -986
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/memory.rs +0 -1092
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/module/registry.rs +0 -344
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/profiling.rs +0 -280
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/store.rs +0 -2962
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trampoline/global.rs +0 -70
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trampoline/memory.rs +0 -261
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trap.rs +0 -625
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/values.rs +0 -1080
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/mod.rs +0 -45
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/unsupported.rs +0 -36
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/x86_64.rs +0 -28
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/component/libcalls.rs +0 -570
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/component.rs +0 -863
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/cow.rs +0 -1155
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/gc/enabled/drc.rs +0 -1093
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/helpers.c +0 -200
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -1007
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -256
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -308
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling.rs +0 -797
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/libcalls.rs +0 -1439
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/malloc.rs +0 -203
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/mmap.rs +0 -229
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/static_.rs +0 -79
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory.rs +0 -700
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/mmap.rs +0 -355
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/mmap_vec.rs +0 -201
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/custom/mmap.rs +0 -125
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/custom/vm.rs +0 -106
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/miri/mmap.rs +0 -116
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/miri/vm.rs +0 -59
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/mmap.rs +0 -192
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/signals.rs +0 -479
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/unwind.rs +0 -118
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/vm.rs +0 -187
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/mmap.rs +0 -231
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/mod.rs +0 -20
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/traphandlers.rs +0 -136
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/vm.rs +0 -75
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/backtrace.rs +0 -267
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -42
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/signals.rs +0 -164
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers.rs +0 -740
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/vmcontext.rs +0 -1321
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm.rs +0 -401
- data/ext/cargo-vendor/wasmtime-asm-macros-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-28.0.0/Cargo.toml +0 -34
- data/ext/cargo-vendor/wasmtime-cache-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-28.0.0/Cargo.toml +0 -119
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/Cargo.toml +0 -126
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char.rs +0 -387
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char_async.rs +0 -414
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char_tracing_async.rs +0 -461
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions.rs +0 -824
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions_async.rs +0 -899
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions_tracing_async.rs +0 -1190
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code.rs +0 -279
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code_async.rs +0 -300
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code_tracing_async.rs +0 -313
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/direct-import_async.rs +0 -219
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/direct-import_tracing_async.rs +0 -232
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags.rs +0 -859
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags_async.rs +0 -921
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags_tracing_async.rs +0 -1096
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats.rs +0 -447
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats_async.rs +0 -488
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats_tracing_async.rs +0 -582
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/host-world_async.rs +0 -219
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/host-world_tracing_async.rs +0 -232
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers.rs +0 -989
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers_async.rs +0 -1128
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers_tracing_async.rs +0 -1555
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists.rs +0 -2032
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists_async.rs +0 -2288
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists_tracing_async.rs +0 -2980
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments.rs +0 -730
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments_async.rs +0 -758
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments_tracing_async.rs +0 -819
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return.rs +0 -475
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return_async.rs +0 -519
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return_tracing_async.rs +0 -633
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion.rs +0 -508
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion_async.rs +0 -537
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion_tracing_async.rs +0 -585
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1.rs +0 -208
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1_tracing_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2.rs +0 -208
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2_tracing_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records.rs +0 -1056
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records_async.rs +0 -1146
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records_tracing_async.rs +0 -1406
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename.rs +0 -268
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename_async.rs +0 -289
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename_tracing_async.rs +0 -302
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export.rs +0 -879
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export_async.rs +0 -937
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export_tracing_async.rs +0 -1011
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import.rs +0 -1217
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import_async.rs +0 -1361
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import_tracing_async.rs +0 -1774
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types.rs +0 -429
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types_async.rs +0 -453
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types_tracing_async.rs +0 -477
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions.rs +0 -522
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions_async.rs +0 -574
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions_tracing_async.rs +0 -718
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists.rs +0 -545
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists_async.rs +0 -590
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists_tracing_async.rs +0 -687
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi.rs +0 -331
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi_async.rs +0 -354
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi_tracing_async.rs +0 -380
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous.rs +0 -454
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous_async.rs +0 -474
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous_tracing_async.rs +0 -496
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export.rs +0 -263
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export_async.rs +0 -272
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export_tracing_async.rs +0 -280
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke.rs +0 -218
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke_async.rs +0 -233
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke_tracing_async.rs +0 -246
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings.rs +0 -432
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings_async.rs +0 -466
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings_tracing_async.rs +0 -538
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features.rs +0 -482
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features_async.rs +0 -527
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features_tracing_async.rs +0 -585
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo.rs +0 -250
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo_async.rs +0 -265
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo_tracing_async.rs +0 -278
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths.rs +0 -402
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths_async.rs +0 -442
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths_tracing_async.rs +0 -494
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants.rs +0 -2016
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants_async.rs +0 -2183
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants_tracing_async.rs +0 -2705
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat.rs +0 -265
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat_async.rs +0 -271
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat_tracing_async.rs +0 -271
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types.rs +0 -263
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types_async.rs +0 -279
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types_tracing_async.rs +0 -287
- data/ext/cargo-vendor/wasmtime-component-util-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-28.0.0/Cargo.toml +0 -37
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/Cargo.toml +0 -167
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/compiler/component.rs +0 -982
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/compiler.rs +0 -1175
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/gc.rs +0 -259
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/attr.rs +0 -309
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/debug_transform_logging.rs +0 -252
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/mod.rs +0 -274
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/unit.rs +0 -529
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/utils.rs +0 -46
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/func_environ.rs +0 -3403
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled/drc.rs +0 -748
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled/null.rs +0 -286
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled.rs +0 -1497
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/lib.rs +0 -435
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/obj.rs +0 -638
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/code_translator/bounds_checks.rs +0 -721
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/code_translator.rs +0 -4090
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/environ/mod.rs +0 -8
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/environ/spec.rs +0 -961
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/func_translator.rs +0 -283
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/mod.rs +0 -26
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/state.rs +0 -548
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/table.rs +0 -117
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/Cargo.lock +0 -713
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/Cargo.toml +0 -214
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/builtin.rs +0 -290
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/compile/mod.rs +0 -384
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/compile/module_artifacts.rs +0 -329
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component/info.rs +0 -682
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component/vmcomponent_offsets.rs +0 -316
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component.rs +0 -111
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/demangling.rs +0 -28
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/lib.rs +0 -69
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/module_artifacts.rs +0 -146
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/tunables.rs +0 -241
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/vmoffsets.rs +0 -894
- data/ext/cargo-vendor/wasmtime-fiber-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-28.0.0/Cargo.toml +0 -98
- data/ext/cargo-vendor/wasmtime-jit-debug-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-28.0.0/Cargo.toml +0 -92
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-28.0.0/Cargo.toml +0 -82
- data/ext/cargo-vendor/wasmtime-slab-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-slab-28.0.0/Cargo.toml +0 -61
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-28.0.0/Cargo.toml +0 -42
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/Cargo.toml +0 -232
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/bindings.rs +0 -566
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/filesystem.rs +0 -1091
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/io.rs +0 -372
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/tcp.rs +0 -547
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/udp.rs +0 -762
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/ip_name_lookup.rs +0 -132
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/pipe.rs +0 -833
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/poll.rs +0 -245
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/command.wit +0 -10
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/imports.wit +0 -36
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/stdio.wit +0 -26
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/monotonic-clock.wit +0 -50
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/timezone.wit +0 -55
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/wall-clock.wit +0 -46
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/world.wit +0 -11
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/preopens.wit +0 -11
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/types.wit +0 -672
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/world.wit +0 -9
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/error.wit +0 -34
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/poll.wit +0 -47
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/streams.wit +0 -290
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/world.wit +0 -10
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/insecure-seed.wit +0 -27
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/insecure.wit +0 -25
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/random.wit +0 -29
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/world.wit +0 -13
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/ip-name-lookup.wit +0 -56
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/network.wit +0 -169
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/tcp.wit +0 -387
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/udp.wit +0 -288
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/world.wit +0 -19
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/test.wit +0 -13
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/world.wit +0 -6
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview0/wasi_unstable.witx +0 -513
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview1/typenames.witx +0 -750
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview1/wasi_snapshot_preview1.witx +0 -521
- data/ext/cargo-vendor/wasmtime-winch-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-28.0.0/Cargo.toml +0 -117
- data/ext/cargo-vendor/wasmtime-winch-28.0.0/src/builder.rs +0 -104
- data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/Cargo.toml +0 -77
- data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/src/lib.rs +0 -3360
- data/ext/cargo-vendor/wast-223.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wast-223.0.0/Cargo.toml +0 -111
- data/ext/cargo-vendor/wast-223.0.0/src/component/binary.rs +0 -959
- data/ext/cargo-vendor/wast-223.0.0/src/component/expand.rs +0 -1076
- data/ext/cargo-vendor/wast-223.0.0/src/component/resolve.rs +0 -1176
- data/ext/cargo-vendor/wast-223.0.0/src/component/types.rs +0 -1041
- data/ext/cargo-vendor/wat-1.223.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wat-1.223.0/Cargo.toml +0 -61
- data/ext/cargo-vendor/wiggle-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-28.0.0/Cargo.toml +0 -130
- data/ext/cargo-vendor/wiggle-generate-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-28.0.0/Cargo.toml +0 -96
- data/ext/cargo-vendor/wiggle-macro-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-28.0.0/Cargo.toml +0 -89
- data/ext/cargo-vendor/winch-codegen-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-28.0.0/Cargo.toml +0 -112
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/abi/mod.rs +0 -652
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/bounds.rs +0 -224
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/builtin.rs +0 -274
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/call.rs +0 -414
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/context.rs +0 -627
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/control.rs +0 -995
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/mod.rs +0 -1152
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/frame/mod.rs +0 -294
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/abi.rs +0 -299
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/asm.rs +0 -904
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/masm.rs +0 -736
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/mod.rs +0 -175
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/mod.rs +0 -327
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/abi.rs +0 -494
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/asm.rs +0 -1482
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/masm.rs +0 -1217
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/mod.rs +0 -176
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/masm.rs +0 -1057
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/regalloc.rs +0 -65
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/stack.rs +0 -447
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/visitor.rs +0 -2274
- data/ext/cargo-vendor/winnow-0.6.22/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winnow-0.6.22/Cargo.lock +0 -1567
- data/ext/cargo-vendor/winnow-0.6.22/Cargo.toml +0 -359
- data/ext/cargo-vendor/winnow-0.6.22/examples/json/parser_partial.rs +0 -350
- data/ext/cargo-vendor/winnow-0.6.22/src/_topic/nom.rs +0 -104
- data/ext/cargo-vendor/winnow-0.6.22/src/_topic/stream.rs +0 -65
- data/ext/cargo-vendor/winnow-0.6.22/src/_topic/why.rs +0 -126
- data/ext/cargo-vendor/winnow-0.6.22/src/ascii/mod.rs +0 -1895
- data/ext/cargo-vendor/winnow-0.6.22/src/binary/bits/mod.rs +0 -420
- data/ext/cargo-vendor/winnow-0.6.22/src/binary/bits/tests.rs +0 -191
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/core.rs +0 -580
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/mod.rs +0 -180
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/multi.rs +0 -1328
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/parser.rs +0 -1093
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/tests.rs +0 -1393
- data/ext/cargo-vendor/winnow-0.6.22/src/error.rs +0 -1423
- data/ext/cargo-vendor/winnow-0.6.22/src/lib.rs +0 -164
- data/ext/cargo-vendor/winnow-0.6.22/src/macros/mod.rs +0 -5
- data/ext/cargo-vendor/winnow-0.6.22/src/parser.rs +0 -1245
- data/ext/cargo-vendor/winnow-0.6.22/src/stream/mod.rs +0 -3822
- data/ext/cargo-vendor/winnow-0.6.22/src/token/mod.rs +0 -1031
- data/ext/cargo-vendor/winnow-0.6.22/src/token/tests.rs +0 -836
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/benches/parse.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/custom_bits_type.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/fmt.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/macro_free.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/serde.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/spec.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/example_generated.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external/bytemuck.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external/serde.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/internal.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/public.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/all.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/bits.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/complement.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/contains.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/difference.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/empty.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/eq.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/extend.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/flags.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/fmt.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits_retain.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits_truncate.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_name.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/insert.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/intersection.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/intersects.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/is_all.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/is_empty.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/iter.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/parser.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/remove.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/symmetric_difference.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/union.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/README.md +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/clippy.toml +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/command_helpers.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/detect_compiler_family.c +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/async_executor.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/job_token.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/mod.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/stderr.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/apple.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/llvm.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/parser.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/tempfile.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/utilities.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/com.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/find_tools.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/registry.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/setup_config.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/vs_instances.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/winapi.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/windows_targets.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/loongarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/x86.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/loongarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/x86.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/src/compound.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/tests/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/inst_specs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/dfg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/extfunc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/function.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/libcall.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/memtype.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/user_stack_maps.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/call_conv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley32.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/encode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/vector.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst_vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/winarm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/winch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/rex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit_state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/stack_switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/reg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/vcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/cprop.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/extends.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/icmp.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/spaceship.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/spectre.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ranges.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/timing.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/traversals.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/unionfind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/verifier/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/write.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_inst.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/arm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/x86.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/signed.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/unsigned.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/frontend/safepoints.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/frontend.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/veri_spec.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/disjointsets.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/files.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/sema.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/stablemapset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/noop_scheduler.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/random.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/README.md +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/benches/bench.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/benches/faststring.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/arbitrary.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/borsh.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/core/raw_entry_v1.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/mutable.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/serde_seq.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/slice.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/tests.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/map.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/mod.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/set.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rustc.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/serde.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/mutable.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/slice.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/tests.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/equivalent_trait.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/macros_full_path.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/quick.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/tests.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/README.md +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/RELEASES.md +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/ipnet_schemars.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/ipnet_serde.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/mask.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/src/Temporal.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/benches/value.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/__private_api.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/kv/error.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/kv/source.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/triagebot.toml +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/LICENSE-APACHE.md +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/Readme.md +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/deflate/buffer.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/deflate/stream.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/core.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/mod.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/output_buffer.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/stream.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/shared.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/README.md +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/build/probe.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/build.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/rust-toolchain.toml +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/detection.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/extra.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/location.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/marker.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/wrapper.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/features.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/marker.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test_fmt.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test_size.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-28.0.0 → pulley-interpreter-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-28.0.0 → pulley-interpreter-29.0.0}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/ORG_CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/README.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/benches/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/build.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/c.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/conv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/epoll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/poll_fd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/windows_syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/inotify.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/makedev.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/errno.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/windows_syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io_uring/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io_uring/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/addr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/ext.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/msghdr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/netdevice.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/read_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/send_recv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/sockopt.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/write_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/param/auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/param/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/prctl/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/prctl/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/cpu_set.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/wait.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pty/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pty/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/system/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/system/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/termios/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/termios/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/futex.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/ugid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/ugid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/winsock_c.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/arm.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips32r6.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips64r6.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/powerpc64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/thumb.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/x86.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/c.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/conv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/epoll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/poll_fd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/inotify.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/makedev.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/errno.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io_uring/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io_uring/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/addr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/msghdr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/netdevice.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/read_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/send_recv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/sockopt.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/write_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/init.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/libc_auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/prctl/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/prctl/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/cpu_set.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/wait.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pty/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pty/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/reg.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/tls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/system/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/system/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/termios/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/termios/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/futex.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/ugid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/ugid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/vdso.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/vdso_wrappers.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/bitcast.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/buffer.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/check_types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/clockid.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/cstr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/epoll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/eventfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/kqueue.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/pause.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/poll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/port.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/select.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ffi.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/abs.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/at.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/constants.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/copy_file_range.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/cwd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fadvise.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcntl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcntl_apple.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcopyfile.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/getpath.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/id.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/inotify.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/makedev.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/memfd_create.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/mount.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/openat2.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/raw_dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/seek_from.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/sendfile.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/special.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/statx.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/sync.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/xattr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/close.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/dup.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/errno.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/fcntl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/is_read_write.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/read_write.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io_uring.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/bsd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/linux.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/patterns.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/owned.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/raw.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/raw.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/socket.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/madvise.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/mmap.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/msync.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/userfaultfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/fsopen.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/mount_unmount.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/netdevice.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/send_recv/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/send_recv/msg.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socket.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socket_addr_any.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socketpair.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/sockopt.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/wsa.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/init.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/arg.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/dec_int.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pid.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/prctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/chdir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/chroot.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/exit.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/id.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/kill.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/membarrier.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pidfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pidfd_getfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pivot_root.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/prctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/priority.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/procctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/rlimit.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/sched.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/sched_yield.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/umask.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/wait.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/procfs.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pty.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/rand/getrandom.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/rand/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/shm.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/signal.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/static_assertions.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/tc.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/tty.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/clock.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/futex.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/id.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/libcap.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/prctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/setns.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/clock.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/timerfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/timespec.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ugid.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/utils.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → rustversion-1.0.19}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → rustversion-1.0.19}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → rustversion-1.0.19}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → semver-1.0.25}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → semver-1.0.25}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/README.md +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/benches/parse.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/build.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/backport.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/display.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/eval.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/identifier.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/impls.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/serde.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/node/mod.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_autotrait.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_identifier.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_version.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_version_req.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → serde_json-1.0.137}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → serde_json-1.0.137}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/README.md +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/build.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/de.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/io/core.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/bhcomp.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/bignum.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/cached.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/cached_float80.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/digit.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/errors.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers32.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers64.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/shift.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/small_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/number.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/read.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/ser.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/de.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/from.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/index.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/partial_eq.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/debug.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue1004.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue520.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue795.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue845.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue953.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/stream.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/test.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_comma.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_value.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_value.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/not_found.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/not_found.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_expr.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_expr.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_key.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_key.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_array_element.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_array_element.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_map_entry.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_map_entry.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_comma.stderr +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → syn-2.0.96}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → syn-2.0.96}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/README.md +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/benches/file.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/benches/rust.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/attr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/bigint.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/buffer.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/classify.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/custom_keyword.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/custom_punctuation.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/data.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/derive.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/discouraged.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/drops.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/export.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ext.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/clone.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/debug.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/eq.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/fold.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/hash.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/token.css +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/visit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/visit_mut.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/generics.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/group.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ident.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/item.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lifetime.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lookahead.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/mac.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/meta.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/op.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse_macro_input.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse_quote.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/pat.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/precedence.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/print.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/punctuated.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/restriction.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/scan_expr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/sealed.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/span.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/spanned.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/stmt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/thread.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/token.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/tt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ty.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/verbatim.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/whitespace.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/eq.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/visit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/debug/gen.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/debug/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression/issue1108.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression/issue1235.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/repo/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/repo/progress.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_asyncness.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_attribute.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_derive_input.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_generics.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_grouping.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_ident.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_item.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_iterators.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_lit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_meta.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_buffer.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_quote.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_stream.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_pat.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_path.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_precedence.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_receiver.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_round_trip.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_shebang.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_size.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_stmt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_token_trees.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_ty.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_unparenthesize.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_visibility.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/zzz_stable.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/examples/host.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/examples/misc.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/scripts/rust-targets.sh +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/src/data_model.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/src/parse_error.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/LICENSE-UNICODE +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/src/tables.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/compare.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/xid_continue.fst +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/xid_start.fst +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/roaring/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/static_size.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/tables/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/tables/tables.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/trie/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/trie/trie.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/external/borsh_support.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/external.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/fmt.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/md5.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/rng.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/sha1.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v1.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v3.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v4.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v6.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v8.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/cache/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/cast.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/impls.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/slices.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/traits.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/describe.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/link.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/util.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/src/worker.js +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-support-0.2.99 → wasm-bindgen-macro-support-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-support-0.2.99 → wasm-bindgen-macro-support-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/components.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/modules.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/branch_hints.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/code.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/dump.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/reencode.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/benches/benchmark.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/examples/simple.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/arity.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/binary_reader/simd.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/binary_reader.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/hash.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map/detail.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_set.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/map.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/set.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/features.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/branch_hinting.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/coredumps.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/dylink0.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/init.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/operators.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/reloc.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/types/matches.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/core/canonical.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/operators/simd.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/operators.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/tests/big-module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/func/options.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/resource_table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/storage.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/coredump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/externals/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/anyref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/eqref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/rooting.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/anyref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/eqref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/rooting.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/noextern.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/none_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/instantiate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/stack.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/type_registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/uninhabited.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/v128.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/async_yield.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/byte_count.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/const_expr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/cow_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/null.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/func_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/gc_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/gc_runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/host_data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/memory/shared_memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/memory/shared_memory_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/pkru.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/sys.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/send_sync_unsafe_cell.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/capi.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/machports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0/src/runtime/vm/sys/windows/unwind.rs → wasmtime-29.0.0/src/runtime/vm/sys/windows/unwind64.rs} +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/sync_nostd.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/sync_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-28.0.0 → wasmtime-asm-macros-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/bindgen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/dead-code.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/host-world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/path1/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/path2/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/resources-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/resources-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/unstable-features.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/unversioned-foo.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/wat.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen_no_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/direct-import.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/host-world.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-28.0.0 → wasmtime-component-util-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/synthetic.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/translate/heap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/translate/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/examples/factc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/module_environ.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/artifacts.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/dfg.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate/inline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types_builder/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/signature.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc/drc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc/null.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/prelude.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/nostd.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-slab-28.0.0 → wasmtime-slab-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-28.0.0 → wasmtime-versioned-export-macros-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/clocks/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/filesystem/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/instance_network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/tcp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/udp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/preview0.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stdio/worker_thread_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/write_stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/api.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/process_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/run.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/terminal.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/rust.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/alias.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/item_ref.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary/dwarf.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary/dwarf_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/expr.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/global.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/memory.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/deinline_import_export.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/mod.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/table.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/tag.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/encode.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/gensym.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/token.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/wat.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/annotations.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-index.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/inline1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/inline1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string10.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string10.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string11.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string11.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string12.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string12.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string13.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string13.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string14.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string14.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string15.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string15.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string16.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string16.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string9.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string9.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/unbalanced.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/recursive.rs +0 -0
- /data/ext/cargo-vendor/{wat-1.223.0 → wat-1.224.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wat-1.223.0 → wat-1.224.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/codegen/env.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/codegen/phase.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/README.md +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/contains_token.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/find_slice.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/iter.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/next_slice.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/number.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser_ast.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser_lexer.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/css/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/css/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/custom_error.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/parser_streaming.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/parser_str.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/iterator.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/json.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/parser_dispatch.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json_iterator.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/example.ndjson +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/s_expression/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/s_expression/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/string/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/string/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/arithmetic.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/error.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/fromstr.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/http.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/ini.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/json.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/language.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/partial.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/performance.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/s_expression.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_0.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_1.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_2.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_3.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_4.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_5.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_6.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_7.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_8.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/ascii/tests.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/binary/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/binary/tests.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/branch.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/debug/internals.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/debug/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/sequence.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/macros/dispatch.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/macros/seq.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22/src/macros/test.rs → winnow-0.6.24/src/macros/tests.rs} +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/stream/impls.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/stream/tests.rs +0 -0
@@ -0,0 +1,3435 @@
|
|
1
|
+
use crate::compiler::Compiler;
|
2
|
+
use crate::translate::{
|
3
|
+
FuncTranslationState, GlobalVariable, Heap, HeapData, StructFieldsVec, TableData, TableSize,
|
4
|
+
TargetEnvironment,
|
5
|
+
};
|
6
|
+
use crate::{gc, BuiltinFunctionSignatures, TRAP_INTERNAL_ASSERT};
|
7
|
+
use cranelift_codegen::cursor::FuncCursor;
|
8
|
+
use cranelift_codegen::ir::condcodes::{FloatCC, IntCC};
|
9
|
+
use cranelift_codegen::ir::immediates::{Imm64, Offset32};
|
10
|
+
use cranelift_codegen::ir::pcc::Fact;
|
11
|
+
use cranelift_codegen::ir::types::*;
|
12
|
+
use cranelift_codegen::ir::{self, types};
|
13
|
+
use cranelift_codegen::ir::{ArgumentPurpose, Function, InstBuilder, MemFlags};
|
14
|
+
use cranelift_codegen::isa::{TargetFrontendConfig, TargetIsa};
|
15
|
+
use cranelift_entity::packed_option::ReservedValue;
|
16
|
+
use cranelift_entity::{EntityRef, PrimaryMap, SecondaryMap};
|
17
|
+
use cranelift_frontend::FunctionBuilder;
|
18
|
+
use cranelift_frontend::Variable;
|
19
|
+
use smallvec::SmallVec;
|
20
|
+
use std::mem;
|
21
|
+
use wasmparser::{Operator, WasmFeatures};
|
22
|
+
use wasmtime_environ::{
|
23
|
+
BuiltinFunctionIndex, DataIndex, ElemIndex, EngineOrModuleTypeIndex, FuncIndex, GlobalIndex,
|
24
|
+
IndexType, Memory, MemoryIndex, Module, ModuleInternedTypeIndex, ModuleTranslation,
|
25
|
+
ModuleTypesBuilder, PtrSize, Table, TableIndex, TripleExt, Tunables, TypeConvert, TypeIndex,
|
26
|
+
VMOffsets, WasmCompositeInnerType, WasmFuncType, WasmHeapTopType, WasmHeapType, WasmRefType,
|
27
|
+
WasmResult, WasmValType,
|
28
|
+
};
|
29
|
+
use wasmtime_environ::{FUNCREF_INIT_BIT, FUNCREF_MASK};
|
30
|
+
|
31
|
+
/// A struct with an `Option<ir::FuncRef>` member for every builtin
|
32
|
+
/// function, to de-duplicate constructing/getting its function.
|
33
|
+
pub(crate) struct BuiltinFunctions {
|
34
|
+
types: BuiltinFunctionSignatures,
|
35
|
+
|
36
|
+
builtins: [Option<ir::FuncRef>; BuiltinFunctionIndex::len() as usize],
|
37
|
+
}
|
38
|
+
|
39
|
+
impl BuiltinFunctions {
|
40
|
+
fn new(compiler: &Compiler) -> Self {
|
41
|
+
Self {
|
42
|
+
types: BuiltinFunctionSignatures::new(compiler),
|
43
|
+
builtins: [None; BuiltinFunctionIndex::len() as usize],
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
fn load_builtin(&mut self, func: &mut Function, index: BuiltinFunctionIndex) -> ir::FuncRef {
|
48
|
+
let cache = &mut self.builtins[index.index() as usize];
|
49
|
+
if let Some(f) = cache {
|
50
|
+
return *f;
|
51
|
+
}
|
52
|
+
let signature = func.import_signature(self.types.wasm_signature(index));
|
53
|
+
let name =
|
54
|
+
ir::ExternalName::User(func.declare_imported_user_function(ir::UserExternalName {
|
55
|
+
namespace: crate::NS_WASMTIME_BUILTIN,
|
56
|
+
index: index.index(),
|
57
|
+
}));
|
58
|
+
let f = func.import_function(ir::ExtFuncData {
|
59
|
+
name,
|
60
|
+
signature,
|
61
|
+
colocated: true,
|
62
|
+
});
|
63
|
+
*cache = Some(f);
|
64
|
+
f
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
// Generate helper methods on `BuiltinFunctions` above for each named builtin
|
69
|
+
// as well.
|
70
|
+
macro_rules! declare_function_signatures {
|
71
|
+
($(
|
72
|
+
$( #[$attr:meta] )*
|
73
|
+
$name:ident( $( $pname:ident: $param:ident ),* ) $( -> $result:ident )?;
|
74
|
+
)*) => {
|
75
|
+
$(impl BuiltinFunctions {
|
76
|
+
$( #[$attr] )*
|
77
|
+
pub(crate) fn $name(&mut self, func: &mut Function) -> ir::FuncRef {
|
78
|
+
self.load_builtin(func, BuiltinFunctionIndex::$name())
|
79
|
+
}
|
80
|
+
})*
|
81
|
+
};
|
82
|
+
}
|
83
|
+
wasmtime_environ::foreach_builtin_function!(declare_function_signatures);
|
84
|
+
|
85
|
+
/// The `FuncEnvironment` implementation for use by the `ModuleEnvironment`.
|
86
|
+
pub struct FuncEnvironment<'module_environment> {
|
87
|
+
compiler: &'module_environment Compiler,
|
88
|
+
isa: &'module_environment (dyn TargetIsa + 'module_environment),
|
89
|
+
pub(crate) module: &'module_environment Module,
|
90
|
+
pub(crate) types: &'module_environment ModuleTypesBuilder,
|
91
|
+
wasm_func_ty: &'module_environment WasmFuncType,
|
92
|
+
sig_ref_to_ty: SecondaryMap<ir::SigRef, Option<&'module_environment WasmFuncType>>,
|
93
|
+
|
94
|
+
#[cfg(feature = "gc")]
|
95
|
+
pub(crate) ty_to_gc_layout: std::collections::HashMap<
|
96
|
+
wasmtime_environ::ModuleInternedTypeIndex,
|
97
|
+
wasmtime_environ::GcLayout,
|
98
|
+
>,
|
99
|
+
|
100
|
+
#[cfg(feature = "wmemcheck")]
|
101
|
+
translation: &'module_environment ModuleTranslation<'module_environment>,
|
102
|
+
|
103
|
+
/// Heaps implementing WebAssembly linear memories.
|
104
|
+
heaps: PrimaryMap<Heap, HeapData>,
|
105
|
+
|
106
|
+
/// Cranelift tables we have created to implement Wasm tables.
|
107
|
+
tables: SecondaryMap<TableIndex, Option<TableData>>,
|
108
|
+
|
109
|
+
/// The Cranelift global holding the vmctx address.
|
110
|
+
vmctx: Option<ir::GlobalValue>,
|
111
|
+
|
112
|
+
/// The PCC memory type describing the vmctx layout, if we're
|
113
|
+
/// using PCC.
|
114
|
+
pcc_vmctx_memtype: Option<ir::MemoryType>,
|
115
|
+
|
116
|
+
/// Caches of signatures for builtin functions.
|
117
|
+
pub(crate) builtin_functions: BuiltinFunctions,
|
118
|
+
|
119
|
+
/// Offsets to struct fields accessed by JIT code.
|
120
|
+
pub(crate) offsets: VMOffsets<u8>,
|
121
|
+
|
122
|
+
pub(crate) tunables: &'module_environment Tunables,
|
123
|
+
|
124
|
+
/// A function-local variable which stores the cached value of the amount of
|
125
|
+
/// fuel remaining to execute. If used this is modified frequently so it's
|
126
|
+
/// stored locally as a variable instead of always referenced from the field
|
127
|
+
/// in `*const VMRuntimeLimits`
|
128
|
+
fuel_var: cranelift_frontend::Variable,
|
129
|
+
|
130
|
+
/// A function-local variable which caches the value of `*const
|
131
|
+
/// VMRuntimeLimits` for this function's vmctx argument. This pointer is stored
|
132
|
+
/// in the vmctx itself, but never changes for the lifetime of the function,
|
133
|
+
/// so if we load it up front we can continue to use it throughout.
|
134
|
+
vmruntime_limits_ptr: ir::Value,
|
135
|
+
|
136
|
+
/// A cached epoch deadline value, when performing epoch-based
|
137
|
+
/// interruption. Loaded from `VMRuntimeLimits` and reloaded after
|
138
|
+
/// any yield.
|
139
|
+
epoch_deadline_var: cranelift_frontend::Variable,
|
140
|
+
|
141
|
+
/// A cached pointer to the per-Engine epoch counter, when
|
142
|
+
/// performing epoch-based interruption. Initialized in the
|
143
|
+
/// function prologue. We prefer to use a variable here rather
|
144
|
+
/// than reload on each check because it's better to let the
|
145
|
+
/// regalloc keep it in a register if able; if not, it can always
|
146
|
+
/// spill, and this isn't any worse than reloading each time.
|
147
|
+
epoch_ptr_var: cranelift_frontend::Variable,
|
148
|
+
|
149
|
+
fuel_consumed: i64,
|
150
|
+
|
151
|
+
/// A `GlobalValue` in CLIF which represents the stack limit.
|
152
|
+
///
|
153
|
+
/// Typically this resides in the `stack_limit` value of `ir::Function` but
|
154
|
+
/// that requires signal handlers on the host and when that's disabled this
|
155
|
+
/// is here with an explicit check instead. Note that the explicit check is
|
156
|
+
/// always present even if this is a "leaf" function, as we have to call
|
157
|
+
/// into the host to trap when signal handlers are disabled.
|
158
|
+
pub(crate) stack_limit_at_function_entry: Option<ir::GlobalValue>,
|
159
|
+
}
|
160
|
+
|
161
|
+
impl<'module_environment> FuncEnvironment<'module_environment> {
|
162
|
+
pub fn new(
|
163
|
+
compiler: &'module_environment Compiler,
|
164
|
+
translation: &'module_environment ModuleTranslation<'module_environment>,
|
165
|
+
types: &'module_environment ModuleTypesBuilder,
|
166
|
+
wasm_func_ty: &'module_environment WasmFuncType,
|
167
|
+
) -> Self {
|
168
|
+
let tunables = compiler.tunables();
|
169
|
+
let builtin_functions = BuiltinFunctions::new(compiler);
|
170
|
+
|
171
|
+
// This isn't used during translation, so squash the warning about this
|
172
|
+
// being unused from the compiler.
|
173
|
+
let _ = BuiltinFunctions::raise;
|
174
|
+
|
175
|
+
Self {
|
176
|
+
isa: compiler.isa(),
|
177
|
+
module: &translation.module,
|
178
|
+
compiler,
|
179
|
+
types,
|
180
|
+
wasm_func_ty,
|
181
|
+
sig_ref_to_ty: SecondaryMap::default(),
|
182
|
+
|
183
|
+
#[cfg(feature = "gc")]
|
184
|
+
ty_to_gc_layout: std::collections::HashMap::new(),
|
185
|
+
|
186
|
+
heaps: PrimaryMap::default(),
|
187
|
+
tables: SecondaryMap::default(),
|
188
|
+
vmctx: None,
|
189
|
+
pcc_vmctx_memtype: None,
|
190
|
+
builtin_functions,
|
191
|
+
offsets: VMOffsets::new(compiler.isa().pointer_bytes(), &translation.module),
|
192
|
+
tunables,
|
193
|
+
fuel_var: Variable::new(0),
|
194
|
+
epoch_deadline_var: Variable::new(0),
|
195
|
+
epoch_ptr_var: Variable::new(0),
|
196
|
+
vmruntime_limits_ptr: ir::Value::reserved_value(),
|
197
|
+
|
198
|
+
// Start with at least one fuel being consumed because even empty
|
199
|
+
// functions should consume at least some fuel.
|
200
|
+
fuel_consumed: 1,
|
201
|
+
|
202
|
+
#[cfg(feature = "wmemcheck")]
|
203
|
+
translation,
|
204
|
+
|
205
|
+
stack_limit_at_function_entry: None,
|
206
|
+
}
|
207
|
+
}
|
208
|
+
|
209
|
+
pub(crate) fn pointer_type(&self) -> ir::Type {
|
210
|
+
self.isa.pointer_type()
|
211
|
+
}
|
212
|
+
|
213
|
+
pub(crate) fn vmctx(&mut self, func: &mut Function) -> ir::GlobalValue {
|
214
|
+
self.vmctx.unwrap_or_else(|| {
|
215
|
+
let vmctx = func.create_global_value(ir::GlobalValueData::VMContext);
|
216
|
+
if self.isa.flags().enable_pcc() {
|
217
|
+
// Create a placeholder memtype for the vmctx; we'll
|
218
|
+
// add fields to it as we lazily create HeapData
|
219
|
+
// structs and global values.
|
220
|
+
let vmctx_memtype = func.create_memory_type(ir::MemoryTypeData::Struct {
|
221
|
+
size: 0,
|
222
|
+
fields: vec![],
|
223
|
+
});
|
224
|
+
|
225
|
+
self.pcc_vmctx_memtype = Some(vmctx_memtype);
|
226
|
+
func.global_value_facts[vmctx] = Some(Fact::Mem {
|
227
|
+
ty: vmctx_memtype,
|
228
|
+
min_offset: 0,
|
229
|
+
max_offset: 0,
|
230
|
+
nullable: false,
|
231
|
+
});
|
232
|
+
}
|
233
|
+
|
234
|
+
self.vmctx = Some(vmctx);
|
235
|
+
vmctx
|
236
|
+
})
|
237
|
+
}
|
238
|
+
|
239
|
+
pub(crate) fn vmctx_val(&mut self, pos: &mut FuncCursor<'_>) -> ir::Value {
|
240
|
+
let pointer_type = self.pointer_type();
|
241
|
+
let vmctx = self.vmctx(&mut pos.func);
|
242
|
+
pos.ins().global_value(pointer_type, vmctx)
|
243
|
+
}
|
244
|
+
|
245
|
+
fn get_table_copy_func(
|
246
|
+
&mut self,
|
247
|
+
func: &mut Function,
|
248
|
+
dst_table_index: TableIndex,
|
249
|
+
src_table_index: TableIndex,
|
250
|
+
) -> (ir::FuncRef, usize, usize) {
|
251
|
+
let sig = self.builtin_functions.table_copy(func);
|
252
|
+
(
|
253
|
+
sig,
|
254
|
+
dst_table_index.as_u32() as usize,
|
255
|
+
src_table_index.as_u32() as usize,
|
256
|
+
)
|
257
|
+
}
|
258
|
+
|
259
|
+
#[cfg(feature = "threads")]
|
260
|
+
fn get_memory_atomic_wait(
|
261
|
+
&mut self,
|
262
|
+
func: &mut Function,
|
263
|
+
memory_index: MemoryIndex,
|
264
|
+
ty: ir::Type,
|
265
|
+
) -> (ir::FuncRef, usize) {
|
266
|
+
match ty {
|
267
|
+
I32 => (
|
268
|
+
self.builtin_functions.memory_atomic_wait32(func),
|
269
|
+
memory_index.index(),
|
270
|
+
),
|
271
|
+
I64 => (
|
272
|
+
self.builtin_functions.memory_atomic_wait64(func),
|
273
|
+
memory_index.index(),
|
274
|
+
),
|
275
|
+
x => panic!("get_memory_atomic_wait unsupported type: {x:?}"),
|
276
|
+
}
|
277
|
+
}
|
278
|
+
|
279
|
+
fn get_global_location(
|
280
|
+
&mut self,
|
281
|
+
func: &mut ir::Function,
|
282
|
+
index: GlobalIndex,
|
283
|
+
) -> (ir::GlobalValue, i32) {
|
284
|
+
let pointer_type = self.pointer_type();
|
285
|
+
let vmctx = self.vmctx(func);
|
286
|
+
if let Some(def_index) = self.module.defined_global_index(index) {
|
287
|
+
let offset = i32::try_from(self.offsets.vmctx_vmglobal_definition(def_index)).unwrap();
|
288
|
+
(vmctx, offset)
|
289
|
+
} else {
|
290
|
+
let from_offset = self.offsets.vmctx_vmglobal_import_from(index);
|
291
|
+
let global = func.create_global_value(ir::GlobalValueData::Load {
|
292
|
+
base: vmctx,
|
293
|
+
offset: Offset32::new(i32::try_from(from_offset).unwrap()),
|
294
|
+
global_type: pointer_type,
|
295
|
+
flags: MemFlags::trusted().with_readonly(),
|
296
|
+
});
|
297
|
+
(global, 0)
|
298
|
+
}
|
299
|
+
}
|
300
|
+
|
301
|
+
fn declare_vmruntime_limits_ptr(&mut self, builder: &mut FunctionBuilder<'_>) {
|
302
|
+
// We load the `*const VMRuntimeLimits` value stored within vmctx at the
|
303
|
+
// head of the function and reuse the same value across the entire
|
304
|
+
// function. This is possible since we know that the pointer never
|
305
|
+
// changes for the lifetime of the function.
|
306
|
+
let pointer_type = self.pointer_type();
|
307
|
+
let vmctx = self.vmctx(builder.func);
|
308
|
+
let base = builder.ins().global_value(pointer_type, vmctx);
|
309
|
+
let offset = i32::from(self.offsets.ptr.vmctx_runtime_limits());
|
310
|
+
debug_assert!(self.vmruntime_limits_ptr.is_reserved_value());
|
311
|
+
self.vmruntime_limits_ptr =
|
312
|
+
builder
|
313
|
+
.ins()
|
314
|
+
.load(pointer_type, ir::MemFlags::trusted(), base, offset);
|
315
|
+
}
|
316
|
+
|
317
|
+
fn fuel_function_entry(&mut self, builder: &mut FunctionBuilder<'_>) {
|
318
|
+
// On function entry we load the amount of fuel into a function-local
|
319
|
+
// `self.fuel_var` to make fuel modifications fast locally. This cache
|
320
|
+
// is then periodically flushed to the Store-defined location in
|
321
|
+
// `VMRuntimeLimits` later.
|
322
|
+
builder.declare_var(self.fuel_var, ir::types::I64);
|
323
|
+
self.fuel_load_into_var(builder);
|
324
|
+
self.fuel_check(builder);
|
325
|
+
}
|
326
|
+
|
327
|
+
fn fuel_function_exit(&mut self, builder: &mut FunctionBuilder<'_>) {
|
328
|
+
// On exiting the function we need to be sure to save the fuel we have
|
329
|
+
// cached locally in `self.fuel_var` back into the Store-defined
|
330
|
+
// location.
|
331
|
+
self.fuel_save_from_var(builder);
|
332
|
+
}
|
333
|
+
|
334
|
+
fn fuel_before_op(
|
335
|
+
&mut self,
|
336
|
+
op: &Operator<'_>,
|
337
|
+
builder: &mut FunctionBuilder<'_>,
|
338
|
+
reachable: bool,
|
339
|
+
) {
|
340
|
+
if !reachable {
|
341
|
+
// In unreachable code we shouldn't have any leftover fuel we
|
342
|
+
// haven't accounted for since the reason for us to become
|
343
|
+
// unreachable should have already added it to `self.fuel_var`.
|
344
|
+
debug_assert_eq!(self.fuel_consumed, 0);
|
345
|
+
return;
|
346
|
+
}
|
347
|
+
|
348
|
+
self.fuel_consumed += match op {
|
349
|
+
// Nop and drop generate no code, so don't consume fuel for them.
|
350
|
+
Operator::Nop | Operator::Drop => 0,
|
351
|
+
|
352
|
+
// Control flow may create branches, but is generally cheap and
|
353
|
+
// free, so don't consume fuel. Note the lack of `if` since some
|
354
|
+
// cost is incurred with the conditional check.
|
355
|
+
Operator::Block { .. }
|
356
|
+
| Operator::Loop { .. }
|
357
|
+
| Operator::Unreachable
|
358
|
+
| Operator::Return
|
359
|
+
| Operator::Else
|
360
|
+
| Operator::End => 0,
|
361
|
+
|
362
|
+
// everything else, just call it one operation.
|
363
|
+
_ => 1,
|
364
|
+
};
|
365
|
+
|
366
|
+
match op {
|
367
|
+
// Exiting a function (via a return or unreachable) or otherwise
|
368
|
+
// entering a different function (via a call) means that we need to
|
369
|
+
// update the fuel consumption in `VMRuntimeLimits` because we're
|
370
|
+
// about to move control out of this function itself and the fuel
|
371
|
+
// may need to be read.
|
372
|
+
//
|
373
|
+
// Before this we need to update the fuel counter from our own cost
|
374
|
+
// leading up to this function call, and then we can store
|
375
|
+
// `self.fuel_var` into `VMRuntimeLimits`.
|
376
|
+
Operator::Unreachable
|
377
|
+
| Operator::Return
|
378
|
+
| Operator::CallIndirect { .. }
|
379
|
+
| Operator::Call { .. }
|
380
|
+
| Operator::ReturnCall { .. }
|
381
|
+
| Operator::ReturnCallRef { .. }
|
382
|
+
| Operator::ReturnCallIndirect { .. } => {
|
383
|
+
self.fuel_increment_var(builder);
|
384
|
+
self.fuel_save_from_var(builder);
|
385
|
+
}
|
386
|
+
|
387
|
+
// To ensure all code preceding a loop is only counted once we
|
388
|
+
// update the fuel variable on entry.
|
389
|
+
Operator::Loop { .. }
|
390
|
+
|
391
|
+
// Entering into an `if` block means that the edge we take isn't
|
392
|
+
// known until runtime, so we need to update our fuel consumption
|
393
|
+
// before we take the branch.
|
394
|
+
| Operator::If { .. }
|
395
|
+
|
396
|
+
// Control-flow instructions mean that we're moving to the end/exit
|
397
|
+
// of a block somewhere else. That means we need to update the fuel
|
398
|
+
// counter since we're effectively terminating our basic block.
|
399
|
+
| Operator::Br { .. }
|
400
|
+
| Operator::BrIf { .. }
|
401
|
+
| Operator::BrTable { .. }
|
402
|
+
|
403
|
+
// Exiting a scope means that we need to update the fuel
|
404
|
+
// consumption because there are multiple ways to exit a scope and
|
405
|
+
// this is the only time we have to account for instructions
|
406
|
+
// executed so far.
|
407
|
+
| Operator::End
|
408
|
+
|
409
|
+
// This is similar to `end`, except that it's only the terminator
|
410
|
+
// for an `if` block. The same reasoning applies though in that we
|
411
|
+
// are terminating a basic block and need to update the fuel
|
412
|
+
// variable.
|
413
|
+
| Operator::Else => self.fuel_increment_var(builder),
|
414
|
+
|
415
|
+
// This is a normal instruction where the fuel is buffered to later
|
416
|
+
// get added to `self.fuel_var`.
|
417
|
+
//
|
418
|
+
// Note that we generally ignore instructions which may trap and
|
419
|
+
// therefore result in exiting a block early. Current usage of fuel
|
420
|
+
// means that it's not too important to account for a precise amount
|
421
|
+
// of fuel consumed but rather "close to the actual amount" is good
|
422
|
+
// enough. For 100% precise counting, however, we'd probably need to
|
423
|
+
// not only increment but also save the fuel amount more often
|
424
|
+
// around trapping instructions. (see the `unreachable` instruction
|
425
|
+
// case above)
|
426
|
+
//
|
427
|
+
// Note that `Block` is specifically omitted from incrementing the
|
428
|
+
// fuel variable. Control flow entering a `block` is unconditional
|
429
|
+
// which means it's effectively executing straight-line code. We'll
|
430
|
+
// update the counter when exiting a block, but we shouldn't need to
|
431
|
+
// do so upon entering a block.
|
432
|
+
_ => {}
|
433
|
+
}
|
434
|
+
}
|
435
|
+
|
436
|
+
fn fuel_after_op(&mut self, op: &Operator<'_>, builder: &mut FunctionBuilder<'_>) {
|
437
|
+
// After a function call we need to reload our fuel value since the
|
438
|
+
// function may have changed it.
|
439
|
+
match op {
|
440
|
+
Operator::Call { .. } | Operator::CallIndirect { .. } => {
|
441
|
+
self.fuel_load_into_var(builder);
|
442
|
+
}
|
443
|
+
_ => {}
|
444
|
+
}
|
445
|
+
}
|
446
|
+
|
447
|
+
/// Adds `self.fuel_consumed` to the `fuel_var`, zero-ing out the amount of
|
448
|
+
/// fuel consumed at that point.
|
449
|
+
fn fuel_increment_var(&mut self, builder: &mut FunctionBuilder<'_>) {
|
450
|
+
let consumption = mem::replace(&mut self.fuel_consumed, 0);
|
451
|
+
if consumption == 0 {
|
452
|
+
return;
|
453
|
+
}
|
454
|
+
|
455
|
+
let fuel = builder.use_var(self.fuel_var);
|
456
|
+
let fuel = builder.ins().iadd_imm(fuel, consumption);
|
457
|
+
builder.def_var(self.fuel_var, fuel);
|
458
|
+
}
|
459
|
+
|
460
|
+
/// Loads the fuel consumption value from `VMRuntimeLimits` into `self.fuel_var`
|
461
|
+
fn fuel_load_into_var(&mut self, builder: &mut FunctionBuilder<'_>) {
|
462
|
+
let (addr, offset) = self.fuel_addr_offset();
|
463
|
+
let fuel = builder
|
464
|
+
.ins()
|
465
|
+
.load(ir::types::I64, ir::MemFlags::trusted(), addr, offset);
|
466
|
+
builder.def_var(self.fuel_var, fuel);
|
467
|
+
}
|
468
|
+
|
469
|
+
/// Stores the fuel consumption value from `self.fuel_var` into
|
470
|
+
/// `VMRuntimeLimits`.
|
471
|
+
fn fuel_save_from_var(&mut self, builder: &mut FunctionBuilder<'_>) {
|
472
|
+
let (addr, offset) = self.fuel_addr_offset();
|
473
|
+
let fuel_consumed = builder.use_var(self.fuel_var);
|
474
|
+
builder
|
475
|
+
.ins()
|
476
|
+
.store(ir::MemFlags::trusted(), fuel_consumed, addr, offset);
|
477
|
+
}
|
478
|
+
|
479
|
+
/// Returns the `(address, offset)` of the fuel consumption within
|
480
|
+
/// `VMRuntimeLimits`, used to perform loads/stores later.
|
481
|
+
fn fuel_addr_offset(&mut self) -> (ir::Value, ir::immediates::Offset32) {
|
482
|
+
debug_assert!(!self.vmruntime_limits_ptr.is_reserved_value());
|
483
|
+
(
|
484
|
+
self.vmruntime_limits_ptr,
|
485
|
+
i32::from(self.offsets.ptr.vmruntime_limits_fuel_consumed()).into(),
|
486
|
+
)
|
487
|
+
}
|
488
|
+
|
489
|
+
/// Checks the amount of remaining, and if we've run out of fuel we call
|
490
|
+
/// the out-of-fuel function.
|
491
|
+
fn fuel_check(&mut self, builder: &mut FunctionBuilder) {
|
492
|
+
self.fuel_increment_var(builder);
|
493
|
+
let out_of_gas_block = builder.create_block();
|
494
|
+
let continuation_block = builder.create_block();
|
495
|
+
|
496
|
+
// Note that our fuel is encoded as adding positive values to a
|
497
|
+
// negative number. Whenever the negative number goes positive that
|
498
|
+
// means we ran out of fuel.
|
499
|
+
//
|
500
|
+
// Compare to see if our fuel is positive, and if so we ran out of gas.
|
501
|
+
// Otherwise we can continue on like usual.
|
502
|
+
let zero = builder.ins().iconst(ir::types::I64, 0);
|
503
|
+
let fuel = builder.use_var(self.fuel_var);
|
504
|
+
let cmp = builder
|
505
|
+
.ins()
|
506
|
+
.icmp(IntCC::SignedGreaterThanOrEqual, fuel, zero);
|
507
|
+
builder
|
508
|
+
.ins()
|
509
|
+
.brif(cmp, out_of_gas_block, &[], continuation_block, &[]);
|
510
|
+
builder.seal_block(out_of_gas_block);
|
511
|
+
|
512
|
+
// If we ran out of gas then we call our out-of-gas intrinsic and it
|
513
|
+
// figures out what to do. Note that this may raise a trap, or do
|
514
|
+
// something like yield to an async runtime. In either case we don't
|
515
|
+
// assume what happens and handle the case the intrinsic returns.
|
516
|
+
//
|
517
|
+
// Note that we save/reload fuel around this since the out-of-gas
|
518
|
+
// intrinsic may alter how much fuel is in the system.
|
519
|
+
builder.switch_to_block(out_of_gas_block);
|
520
|
+
self.fuel_save_from_var(builder);
|
521
|
+
let out_of_gas = self.builtin_functions.out_of_gas(builder.func);
|
522
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
523
|
+
builder.ins().call(out_of_gas, &[vmctx]);
|
524
|
+
self.fuel_load_into_var(builder);
|
525
|
+
builder.ins().jump(continuation_block, &[]);
|
526
|
+
builder.seal_block(continuation_block);
|
527
|
+
|
528
|
+
builder.switch_to_block(continuation_block);
|
529
|
+
}
|
530
|
+
|
531
|
+
fn epoch_function_entry(&mut self, builder: &mut FunctionBuilder<'_>) {
|
532
|
+
builder.declare_var(self.epoch_deadline_var, ir::types::I64);
|
533
|
+
// Let epoch_check_full load the current deadline and call def_var
|
534
|
+
|
535
|
+
builder.declare_var(self.epoch_ptr_var, self.pointer_type());
|
536
|
+
let epoch_ptr = self.epoch_ptr(builder);
|
537
|
+
builder.def_var(self.epoch_ptr_var, epoch_ptr);
|
538
|
+
|
539
|
+
// We must check for an epoch change when entering a
|
540
|
+
// function. Why? Why aren't checks at loops sufficient to
|
541
|
+
// bound runtime to O(|static program size|)?
|
542
|
+
//
|
543
|
+
// The reason is that one can construct a "zip-bomb-like"
|
544
|
+
// program with exponential-in-program-size runtime, with no
|
545
|
+
// backedges (loops), by building a tree of function calls: f0
|
546
|
+
// calls f1 ten times, f1 calls f2 ten times, etc. E.g., nine
|
547
|
+
// levels of this yields a billion function calls with no
|
548
|
+
// backedges. So we can't do checks only at backedges.
|
549
|
+
//
|
550
|
+
// In this "call-tree" scenario, and in fact in any program
|
551
|
+
// that uses calls as a sort of control flow to try to evade
|
552
|
+
// backedge checks, a check at every function entry is
|
553
|
+
// sufficient. Then, combined with checks at every backedge
|
554
|
+
// (loop) the longest runtime between checks is bounded by the
|
555
|
+
// straightline length of any function body.
|
556
|
+
let continuation_block = builder.create_block();
|
557
|
+
let cur_epoch_value = self.epoch_load_current(builder);
|
558
|
+
self.epoch_check_full(builder, cur_epoch_value, continuation_block);
|
559
|
+
}
|
560
|
+
|
561
|
+
#[cfg(feature = "wmemcheck")]
|
562
|
+
fn hook_malloc_exit(&mut self, builder: &mut FunctionBuilder, retvals: &[ir::Value]) {
|
563
|
+
let check_malloc = self.builtin_functions.check_malloc(builder.func);
|
564
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
565
|
+
let func_args = builder
|
566
|
+
.func
|
567
|
+
.dfg
|
568
|
+
.block_params(builder.func.layout.entry_block().unwrap());
|
569
|
+
let len = if func_args.len() < 3 {
|
570
|
+
return;
|
571
|
+
} else {
|
572
|
+
// If a function named `malloc` has at least one argument, we assume the
|
573
|
+
// first argument is the requested allocation size.
|
574
|
+
func_args[2]
|
575
|
+
};
|
576
|
+
let retval = if retvals.len() < 1 {
|
577
|
+
return;
|
578
|
+
} else {
|
579
|
+
retvals[0]
|
580
|
+
};
|
581
|
+
builder.ins().call(check_malloc, &[vmctx, retval, len]);
|
582
|
+
}
|
583
|
+
|
584
|
+
#[cfg(feature = "wmemcheck")]
|
585
|
+
fn hook_free_exit(&mut self, builder: &mut FunctionBuilder) {
|
586
|
+
let check_free = self.builtin_functions.check_free(builder.func);
|
587
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
588
|
+
let func_args = builder
|
589
|
+
.func
|
590
|
+
.dfg
|
591
|
+
.block_params(builder.func.layout.entry_block().unwrap());
|
592
|
+
let ptr = if func_args.len() < 3 {
|
593
|
+
return;
|
594
|
+
} else {
|
595
|
+
// If a function named `free` has at least one argument, we assume the
|
596
|
+
// first argument is a pointer to memory.
|
597
|
+
func_args[2]
|
598
|
+
};
|
599
|
+
builder.ins().call(check_free, &[vmctx, ptr]);
|
600
|
+
}
|
601
|
+
|
602
|
+
fn epoch_ptr(&mut self, builder: &mut FunctionBuilder<'_>) -> ir::Value {
|
603
|
+
let vmctx = self.vmctx(builder.func);
|
604
|
+
let pointer_type = self.pointer_type();
|
605
|
+
let base = builder.ins().global_value(pointer_type, vmctx);
|
606
|
+
let offset = i32::from(self.offsets.ptr.vmctx_epoch_ptr());
|
607
|
+
let epoch_ptr = builder
|
608
|
+
.ins()
|
609
|
+
.load(pointer_type, ir::MemFlags::trusted(), base, offset);
|
610
|
+
epoch_ptr
|
611
|
+
}
|
612
|
+
|
613
|
+
fn epoch_load_current(&mut self, builder: &mut FunctionBuilder<'_>) -> ir::Value {
|
614
|
+
let addr = builder.use_var(self.epoch_ptr_var);
|
615
|
+
builder.ins().load(
|
616
|
+
ir::types::I64,
|
617
|
+
ir::MemFlags::trusted(),
|
618
|
+
addr,
|
619
|
+
ir::immediates::Offset32::new(0),
|
620
|
+
)
|
621
|
+
}
|
622
|
+
|
623
|
+
fn epoch_check(&mut self, builder: &mut FunctionBuilder<'_>) {
|
624
|
+
let continuation_block = builder.create_block();
|
625
|
+
|
626
|
+
// Load new epoch and check against the cached deadline.
|
627
|
+
let cur_epoch_value = self.epoch_load_current(builder);
|
628
|
+
self.epoch_check_cached(builder, cur_epoch_value, continuation_block);
|
629
|
+
|
630
|
+
// At this point we've noticed that the epoch has exceeded our
|
631
|
+
// cached deadline. However the real deadline may have been
|
632
|
+
// updated (within another yield) during some function that we
|
633
|
+
// called in the meantime, so reload the cache and check again.
|
634
|
+
self.epoch_check_full(builder, cur_epoch_value, continuation_block);
|
635
|
+
}
|
636
|
+
|
637
|
+
fn epoch_check_cached(
|
638
|
+
&mut self,
|
639
|
+
builder: &mut FunctionBuilder,
|
640
|
+
cur_epoch_value: ir::Value,
|
641
|
+
continuation_block: ir::Block,
|
642
|
+
) {
|
643
|
+
let new_epoch_block = builder.create_block();
|
644
|
+
builder.set_cold_block(new_epoch_block);
|
645
|
+
|
646
|
+
let epoch_deadline = builder.use_var(self.epoch_deadline_var);
|
647
|
+
let cmp = builder.ins().icmp(
|
648
|
+
IntCC::UnsignedGreaterThanOrEqual,
|
649
|
+
cur_epoch_value,
|
650
|
+
epoch_deadline,
|
651
|
+
);
|
652
|
+
builder
|
653
|
+
.ins()
|
654
|
+
.brif(cmp, new_epoch_block, &[], continuation_block, &[]);
|
655
|
+
builder.seal_block(new_epoch_block);
|
656
|
+
|
657
|
+
builder.switch_to_block(new_epoch_block);
|
658
|
+
}
|
659
|
+
|
660
|
+
fn epoch_check_full(
|
661
|
+
&mut self,
|
662
|
+
builder: &mut FunctionBuilder,
|
663
|
+
cur_epoch_value: ir::Value,
|
664
|
+
continuation_block: ir::Block,
|
665
|
+
) {
|
666
|
+
// We keep the deadline cached in a register to speed the checks
|
667
|
+
// in the common case (between epoch ticks) but we want to do a
|
668
|
+
// precise check here by reloading the cache first.
|
669
|
+
let deadline =
|
670
|
+
builder.ins().load(
|
671
|
+
ir::types::I64,
|
672
|
+
ir::MemFlags::trusted(),
|
673
|
+
self.vmruntime_limits_ptr,
|
674
|
+
ir::immediates::Offset32::new(
|
675
|
+
self.offsets.ptr.vmruntime_limits_epoch_deadline() as i32
|
676
|
+
),
|
677
|
+
);
|
678
|
+
builder.def_var(self.epoch_deadline_var, deadline);
|
679
|
+
self.epoch_check_cached(builder, cur_epoch_value, continuation_block);
|
680
|
+
|
681
|
+
let new_epoch = self.builtin_functions.new_epoch(builder.func);
|
682
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
683
|
+
// new_epoch() returns the new deadline, so we don't have to
|
684
|
+
// reload it.
|
685
|
+
let call = builder.ins().call(new_epoch, &[vmctx]);
|
686
|
+
let new_deadline = *builder.func.dfg.inst_results(call).first().unwrap();
|
687
|
+
builder.def_var(self.epoch_deadline_var, new_deadline);
|
688
|
+
builder.ins().jump(continuation_block, &[]);
|
689
|
+
builder.seal_block(continuation_block);
|
690
|
+
|
691
|
+
builder.switch_to_block(continuation_block);
|
692
|
+
}
|
693
|
+
|
694
|
+
/// Get the Memory for the given index.
|
695
|
+
fn memory(&self, index: MemoryIndex) -> Memory {
|
696
|
+
self.module.memories[index]
|
697
|
+
}
|
698
|
+
|
699
|
+
/// Get the Table for the given index.
|
700
|
+
fn table(&self, index: TableIndex) -> Table {
|
701
|
+
self.module.tables[index]
|
702
|
+
}
|
703
|
+
|
704
|
+
/// Cast the value to I64 and sign extend if necessary.
|
705
|
+
///
|
706
|
+
/// Returns the value casted to I64.
|
707
|
+
fn cast_index_to_i64(
|
708
|
+
&self,
|
709
|
+
pos: &mut FuncCursor<'_>,
|
710
|
+
val: ir::Value,
|
711
|
+
index_type: IndexType,
|
712
|
+
) -> ir::Value {
|
713
|
+
match index_type {
|
714
|
+
IndexType::I32 => pos.ins().uextend(I64, val),
|
715
|
+
IndexType::I64 => val,
|
716
|
+
}
|
717
|
+
}
|
718
|
+
|
719
|
+
/// Convert the target pointer-sized integer `val` into the memory/table's index type.
|
720
|
+
///
|
721
|
+
/// For memory, `val` is holding a memory length (or the `-1` `memory.grow`-failed sentinel).
|
722
|
+
/// For table, `val` is holding a table length.
|
723
|
+
///
|
724
|
+
/// This might involve extending or truncating it depending on the memory/table's
|
725
|
+
/// index type and the target's pointer type.
|
726
|
+
fn convert_pointer_to_index_type(
|
727
|
+
&self,
|
728
|
+
mut pos: FuncCursor<'_>,
|
729
|
+
val: ir::Value,
|
730
|
+
index_type: IndexType,
|
731
|
+
// When it is a memory and the memory is using single-byte pages,
|
732
|
+
// we need to handle the tuncation differently. See comments below.
|
733
|
+
//
|
734
|
+
// When it is a table, this should be set to false.
|
735
|
+
single_byte_pages: bool,
|
736
|
+
) -> ir::Value {
|
737
|
+
let desired_type = index_type_to_ir_type(index_type);
|
738
|
+
let pointer_type = self.pointer_type();
|
739
|
+
assert_eq!(pos.func.dfg.value_type(val), pointer_type);
|
740
|
+
|
741
|
+
// The current length is of type `pointer_type` but we need to fit it
|
742
|
+
// into `desired_type`. We are guaranteed that the result will always
|
743
|
+
// fit, so we just need to do the right ireduce/sextend here.
|
744
|
+
if pointer_type == desired_type {
|
745
|
+
val
|
746
|
+
} else if pointer_type.bits() > desired_type.bits() {
|
747
|
+
pos.ins().ireduce(desired_type, val)
|
748
|
+
} else {
|
749
|
+
// We have a 64-bit memory/table on a 32-bit host -- this combo doesn't
|
750
|
+
// really make a whole lot of sense to do from a user perspective
|
751
|
+
// but that is neither here nor there. We want to logically do an
|
752
|
+
// unsigned extend *except* when we are given the `-1` sentinel,
|
753
|
+
// which we must preserve as `-1` in the wider type.
|
754
|
+
match single_byte_pages {
|
755
|
+
false => {
|
756
|
+
// In the case that we have default page sizes, we can
|
757
|
+
// always sign extend, since valid memory lengths (in pages)
|
758
|
+
// never have their sign bit set, and so if the sign bit is
|
759
|
+
// set then this must be the `-1` sentinel, which we want to
|
760
|
+
// preserve through the extension.
|
761
|
+
//
|
762
|
+
// When it comes to table, `single_byte_pages` should have always been set to false.
|
763
|
+
// Then we simply do a signed extension.
|
764
|
+
pos.ins().sextend(desired_type, val)
|
765
|
+
}
|
766
|
+
true => {
|
767
|
+
// For single-byte pages, we have to explicitly check for
|
768
|
+
// `-1` and choose whether to do an unsigned extension or
|
769
|
+
// return a larger `-1` because there are valid memory
|
770
|
+
// lengths (in pages) that have the sign bit set.
|
771
|
+
let extended = pos.ins().uextend(desired_type, val);
|
772
|
+
let neg_one = pos.ins().iconst(desired_type, -1);
|
773
|
+
let is_failure = pos.ins().icmp_imm(IntCC::Equal, val, -1);
|
774
|
+
pos.ins().select(is_failure, neg_one, extended)
|
775
|
+
}
|
776
|
+
}
|
777
|
+
}
|
778
|
+
}
|
779
|
+
|
780
|
+
/// Set up the necessary preamble definitions in `func` to access the table identified
|
781
|
+
/// by `index`.
|
782
|
+
///
|
783
|
+
/// The index space covers both imported and locally declared tables.
|
784
|
+
fn ensure_table_exists(&mut self, func: &mut ir::Function, index: TableIndex) {
|
785
|
+
if self.tables[index].is_some() {
|
786
|
+
return;
|
787
|
+
}
|
788
|
+
|
789
|
+
let pointer_type = self.pointer_type();
|
790
|
+
|
791
|
+
let (ptr, base_offset, current_elements_offset) = {
|
792
|
+
let vmctx = self.vmctx(func);
|
793
|
+
if let Some(def_index) = self.module.defined_table_index(index) {
|
794
|
+
let base_offset =
|
795
|
+
i32::try_from(self.offsets.vmctx_vmtable_definition_base(def_index)).unwrap();
|
796
|
+
let current_elements_offset = i32::try_from(
|
797
|
+
self.offsets
|
798
|
+
.vmctx_vmtable_definition_current_elements(def_index),
|
799
|
+
)
|
800
|
+
.unwrap();
|
801
|
+
(vmctx, base_offset, current_elements_offset)
|
802
|
+
} else {
|
803
|
+
let from_offset = self.offsets.vmctx_vmtable_import_from(index);
|
804
|
+
let table = func.create_global_value(ir::GlobalValueData::Load {
|
805
|
+
base: vmctx,
|
806
|
+
offset: Offset32::new(i32::try_from(from_offset).unwrap()),
|
807
|
+
global_type: pointer_type,
|
808
|
+
flags: MemFlags::trusted().with_readonly(),
|
809
|
+
});
|
810
|
+
let base_offset = i32::from(self.offsets.vmtable_definition_base());
|
811
|
+
let current_elements_offset =
|
812
|
+
i32::from(self.offsets.vmtable_definition_current_elements());
|
813
|
+
(table, base_offset, current_elements_offset)
|
814
|
+
}
|
815
|
+
};
|
816
|
+
|
817
|
+
let table = &self.module.tables[index];
|
818
|
+
let element_size = if table.ref_type.is_vmgcref_type() {
|
819
|
+
// For GC-managed references, tables store `Option<VMGcRef>`s.
|
820
|
+
ir::types::I32.bytes()
|
821
|
+
} else {
|
822
|
+
self.reference_type(table.ref_type.heap_type).0.bytes()
|
823
|
+
};
|
824
|
+
|
825
|
+
let base_gv = func.create_global_value(ir::GlobalValueData::Load {
|
826
|
+
base: ptr,
|
827
|
+
offset: Offset32::new(base_offset),
|
828
|
+
global_type: pointer_type,
|
829
|
+
flags: if Some(table.limits.min) == table.limits.max {
|
830
|
+
// A fixed-size table can't be resized so its base address won't
|
831
|
+
// change.
|
832
|
+
MemFlags::trusted().with_readonly()
|
833
|
+
} else {
|
834
|
+
MemFlags::trusted()
|
835
|
+
},
|
836
|
+
});
|
837
|
+
|
838
|
+
let bound = if Some(table.limits.min) == table.limits.max {
|
839
|
+
TableSize::Static {
|
840
|
+
bound: table.limits.min,
|
841
|
+
}
|
842
|
+
} else {
|
843
|
+
TableSize::Dynamic {
|
844
|
+
bound_gv: func.create_global_value(ir::GlobalValueData::Load {
|
845
|
+
base: ptr,
|
846
|
+
offset: Offset32::new(current_elements_offset),
|
847
|
+
global_type: ir::Type::int(
|
848
|
+
u16::from(self.offsets.size_of_vmtable_definition_current_elements()) * 8,
|
849
|
+
)
|
850
|
+
.unwrap(),
|
851
|
+
flags: MemFlags::trusted(),
|
852
|
+
}),
|
853
|
+
}
|
854
|
+
};
|
855
|
+
|
856
|
+
self.tables[index] = Some(TableData {
|
857
|
+
base_gv,
|
858
|
+
bound,
|
859
|
+
element_size,
|
860
|
+
});
|
861
|
+
}
|
862
|
+
|
863
|
+
fn get_or_init_func_ref_table_elem(
|
864
|
+
&mut self,
|
865
|
+
builder: &mut FunctionBuilder,
|
866
|
+
table_index: TableIndex,
|
867
|
+
index: ir::Value,
|
868
|
+
cold_blocks: bool,
|
869
|
+
) -> ir::Value {
|
870
|
+
let pointer_type = self.pointer_type();
|
871
|
+
self.ensure_table_exists(builder.func, table_index);
|
872
|
+
let table_data = self.tables[table_index].clone().unwrap();
|
873
|
+
|
874
|
+
// To support lazy initialization of table
|
875
|
+
// contents, we check for a null entry here, and
|
876
|
+
// if null, we take a slow-path that invokes a
|
877
|
+
// libcall.
|
878
|
+
let (table_entry_addr, flags) = table_data.prepare_table_addr(self, builder, index);
|
879
|
+
let value = builder.ins().load(pointer_type, flags, table_entry_addr, 0);
|
880
|
+
|
881
|
+
if !self.tunables.table_lazy_init {
|
882
|
+
return value;
|
883
|
+
}
|
884
|
+
|
885
|
+
// Mask off the "initialized bit". See documentation on
|
886
|
+
// FUNCREF_INIT_BIT in crates/environ/src/ref_bits.rs for more
|
887
|
+
// details. Note that `FUNCREF_MASK` has type `usize` which may not be
|
888
|
+
// appropriate for the target architecture. Right now its value is
|
889
|
+
// always -2 so assert that part doesn't change and then thread through
|
890
|
+
// -2 as the immediate.
|
891
|
+
assert_eq!(FUNCREF_MASK as isize, -2);
|
892
|
+
let value_masked = builder.ins().band_imm(value, Imm64::from(-2));
|
893
|
+
|
894
|
+
let null_block = builder.create_block();
|
895
|
+
let continuation_block = builder.create_block();
|
896
|
+
if cold_blocks {
|
897
|
+
builder.set_cold_block(null_block);
|
898
|
+
builder.set_cold_block(continuation_block);
|
899
|
+
}
|
900
|
+
let result_param = builder.append_block_param(continuation_block, pointer_type);
|
901
|
+
builder.set_cold_block(null_block);
|
902
|
+
|
903
|
+
builder
|
904
|
+
.ins()
|
905
|
+
.brif(value, continuation_block, &[value_masked], null_block, &[]);
|
906
|
+
builder.seal_block(null_block);
|
907
|
+
|
908
|
+
builder.switch_to_block(null_block);
|
909
|
+
let index_type = self.table(table_index).idx_type;
|
910
|
+
let table_index = builder.ins().iconst(I32, table_index.index() as i64);
|
911
|
+
let lazy_init = self
|
912
|
+
.builtin_functions
|
913
|
+
.table_get_lazy_init_func_ref(builder.func);
|
914
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
915
|
+
let index = self.cast_index_to_i64(&mut builder.cursor(), index, index_type);
|
916
|
+
let call_inst = builder.ins().call(lazy_init, &[vmctx, table_index, index]);
|
917
|
+
let returned_entry = builder.func.dfg.inst_results(call_inst)[0];
|
918
|
+
builder.ins().jump(continuation_block, &[returned_entry]);
|
919
|
+
builder.seal_block(continuation_block);
|
920
|
+
|
921
|
+
builder.switch_to_block(continuation_block);
|
922
|
+
result_param
|
923
|
+
}
|
924
|
+
|
925
|
+
#[cfg(feature = "wmemcheck")]
|
926
|
+
fn check_malloc_start(&mut self, builder: &mut FunctionBuilder) {
|
927
|
+
let malloc_start = self.builtin_functions.malloc_start(builder.func);
|
928
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
929
|
+
builder.ins().call(malloc_start, &[vmctx]);
|
930
|
+
}
|
931
|
+
|
932
|
+
#[cfg(feature = "wmemcheck")]
|
933
|
+
fn check_free_start(&mut self, builder: &mut FunctionBuilder) {
|
934
|
+
let free_start = self.builtin_functions.free_start(builder.func);
|
935
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
936
|
+
builder.ins().call(free_start, &[vmctx]);
|
937
|
+
}
|
938
|
+
|
939
|
+
#[cfg(feature = "wmemcheck")]
|
940
|
+
fn current_func_name(&self, builder: &mut FunctionBuilder) -> Option<&str> {
|
941
|
+
let func_index = match &builder.func.name {
|
942
|
+
ir::UserFuncName::User(user) => FuncIndex::from_u32(user.index),
|
943
|
+
_ => {
|
944
|
+
panic!("function name not a UserFuncName::User as expected")
|
945
|
+
}
|
946
|
+
};
|
947
|
+
self.translation
|
948
|
+
.debuginfo
|
949
|
+
.name_section
|
950
|
+
.func_names
|
951
|
+
.get(&func_index)
|
952
|
+
.copied()
|
953
|
+
}
|
954
|
+
|
955
|
+
/// Proof-carrying code: create a memtype describing an empty
|
956
|
+
/// runtime struct (to be updated later).
|
957
|
+
fn create_empty_struct_memtype(&self, func: &mut ir::Function) -> ir::MemoryType {
|
958
|
+
func.create_memory_type(ir::MemoryTypeData::Struct {
|
959
|
+
size: 0,
|
960
|
+
fields: vec![],
|
961
|
+
})
|
962
|
+
}
|
963
|
+
|
964
|
+
/// Proof-carrying code: add a new field to a memtype used to
|
965
|
+
/// describe a runtime struct. A memory region of type `memtype`
|
966
|
+
/// will have a pointer at `offset` pointing to another memory
|
967
|
+
/// region of type `pointee`. `readonly` indicates whether the
|
968
|
+
/// PCC-checked code is expected to update this field or not.
|
969
|
+
fn add_field_to_memtype(
|
970
|
+
&self,
|
971
|
+
func: &mut ir::Function,
|
972
|
+
memtype: ir::MemoryType,
|
973
|
+
offset: u32,
|
974
|
+
pointee: ir::MemoryType,
|
975
|
+
readonly: bool,
|
976
|
+
) {
|
977
|
+
let ptr_size = self.pointer_type().bytes();
|
978
|
+
match &mut func.memory_types[memtype] {
|
979
|
+
ir::MemoryTypeData::Struct { size, fields } => {
|
980
|
+
*size = std::cmp::max(*size, offset.checked_add(ptr_size).unwrap().into());
|
981
|
+
fields.push(ir::MemoryTypeField {
|
982
|
+
ty: self.pointer_type(),
|
983
|
+
offset: offset.into(),
|
984
|
+
readonly,
|
985
|
+
fact: Some(ir::Fact::Mem {
|
986
|
+
ty: pointee,
|
987
|
+
min_offset: 0,
|
988
|
+
max_offset: 0,
|
989
|
+
nullable: false,
|
990
|
+
}),
|
991
|
+
});
|
992
|
+
|
993
|
+
// Sort fields by offset -- we need to do this now
|
994
|
+
// because we may create an arbitrary number of
|
995
|
+
// memtypes for imported memories and we don't
|
996
|
+
// otherwise track them.
|
997
|
+
fields.sort_by_key(|f| f.offset);
|
998
|
+
}
|
999
|
+
_ => panic!("Cannot add field to non-struct memtype"),
|
1000
|
+
}
|
1001
|
+
}
|
1002
|
+
|
1003
|
+
/// Add one level of indirection to a pointer-and-memtype pair:
|
1004
|
+
/// generate a load in the code at the specified offset, and if
|
1005
|
+
/// memtypes are in use, add a field to the original struct and
|
1006
|
+
/// generate a new memtype for the pointee.
|
1007
|
+
fn load_pointer_with_memtypes(
|
1008
|
+
&self,
|
1009
|
+
func: &mut ir::Function,
|
1010
|
+
value: ir::GlobalValue,
|
1011
|
+
offset: u32,
|
1012
|
+
readonly: bool,
|
1013
|
+
memtype: Option<ir::MemoryType>,
|
1014
|
+
) -> (ir::GlobalValue, Option<ir::MemoryType>) {
|
1015
|
+
let pointee = func.create_global_value(ir::GlobalValueData::Load {
|
1016
|
+
base: value,
|
1017
|
+
offset: Offset32::new(i32::try_from(offset).unwrap()),
|
1018
|
+
global_type: self.pointer_type(),
|
1019
|
+
flags: MemFlags::trusted().with_readonly(),
|
1020
|
+
});
|
1021
|
+
|
1022
|
+
let mt = memtype.map(|mt| {
|
1023
|
+
let pointee_mt = self.create_empty_struct_memtype(func);
|
1024
|
+
self.add_field_to_memtype(func, mt, offset, pointee_mt, readonly);
|
1025
|
+
func.global_value_facts[pointee] = Some(Fact::Mem {
|
1026
|
+
ty: pointee_mt,
|
1027
|
+
min_offset: 0,
|
1028
|
+
max_offset: 0,
|
1029
|
+
nullable: false,
|
1030
|
+
});
|
1031
|
+
pointee_mt
|
1032
|
+
});
|
1033
|
+
(pointee, mt)
|
1034
|
+
}
|
1035
|
+
|
1036
|
+
/// Helper to emit a conditional trap based on `trap_cond`.
|
1037
|
+
///
|
1038
|
+
/// This should only be used if `self.clif_instruction_traps_enabled()` is
|
1039
|
+
/// false, otherwise native CLIF instructions should be used instead.
|
1040
|
+
pub fn conditionally_trap(
|
1041
|
+
&mut self,
|
1042
|
+
builder: &mut FunctionBuilder,
|
1043
|
+
trap_cond: ir::Value,
|
1044
|
+
trap: ir::TrapCode,
|
1045
|
+
) {
|
1046
|
+
assert!(!self.clif_instruction_traps_enabled());
|
1047
|
+
|
1048
|
+
let trap_block = builder.create_block();
|
1049
|
+
builder.set_cold_block(trap_block);
|
1050
|
+
let continuation_block = builder.create_block();
|
1051
|
+
|
1052
|
+
builder
|
1053
|
+
.ins()
|
1054
|
+
.brif(trap_cond, trap_block, &[], continuation_block, &[]);
|
1055
|
+
|
1056
|
+
builder.seal_block(trap_block);
|
1057
|
+
builder.seal_block(continuation_block);
|
1058
|
+
|
1059
|
+
builder.switch_to_block(trap_block);
|
1060
|
+
self.trap(builder, trap);
|
1061
|
+
builder.switch_to_block(continuation_block);
|
1062
|
+
}
|
1063
|
+
|
1064
|
+
/// Helper used when `!self.clif_instruction_traps_enabled()` is enabled to
|
1065
|
+
/// test whether the divisor is zero.
|
1066
|
+
fn guard_zero_divisor(&mut self, builder: &mut FunctionBuilder, rhs: ir::Value) {
|
1067
|
+
if self.clif_instruction_traps_enabled() {
|
1068
|
+
return;
|
1069
|
+
}
|
1070
|
+
self.trapz(builder, rhs, ir::TrapCode::INTEGER_DIVISION_BY_ZERO);
|
1071
|
+
}
|
1072
|
+
|
1073
|
+
/// Helper used when `!self.clif_instruction_traps_enabled()` is enabled to
|
1074
|
+
/// test whether a signed division operation will raise a trap.
|
1075
|
+
fn guard_signed_divide(
|
1076
|
+
&mut self,
|
1077
|
+
builder: &mut FunctionBuilder,
|
1078
|
+
lhs: ir::Value,
|
1079
|
+
rhs: ir::Value,
|
1080
|
+
) {
|
1081
|
+
if self.clif_instruction_traps_enabled() {
|
1082
|
+
return;
|
1083
|
+
}
|
1084
|
+
self.trapz(builder, rhs, ir::TrapCode::INTEGER_DIVISION_BY_ZERO);
|
1085
|
+
|
1086
|
+
let ty = builder.func.dfg.value_type(rhs);
|
1087
|
+
let minus_one = builder.ins().iconst(ty, -1);
|
1088
|
+
let rhs_is_minus_one = builder.ins().icmp(IntCC::Equal, rhs, minus_one);
|
1089
|
+
let int_min = builder.ins().iconst(
|
1090
|
+
ty,
|
1091
|
+
match ty {
|
1092
|
+
I32 => i64::from(i32::MIN),
|
1093
|
+
I64 => i64::MIN,
|
1094
|
+
_ => unreachable!(),
|
1095
|
+
},
|
1096
|
+
);
|
1097
|
+
let lhs_is_int_min = builder.ins().icmp(IntCC::Equal, lhs, int_min);
|
1098
|
+
let is_integer_overflow = builder.ins().band(rhs_is_minus_one, lhs_is_int_min);
|
1099
|
+
self.conditionally_trap(builder, is_integer_overflow, ir::TrapCode::INTEGER_OVERFLOW);
|
1100
|
+
}
|
1101
|
+
|
1102
|
+
/// Helper used when `!self.clif_instruction_traps_enabled()` is enabled to
|
1103
|
+
/// guard the traps from float-to-int conversions.
|
1104
|
+
fn guard_fcvt_to_int(
|
1105
|
+
&mut self,
|
1106
|
+
builder: &mut FunctionBuilder,
|
1107
|
+
ty: ir::Type,
|
1108
|
+
val: ir::Value,
|
1109
|
+
range32: (f64, f64),
|
1110
|
+
range64: (f64, f64),
|
1111
|
+
) {
|
1112
|
+
assert!(!self.clif_instruction_traps_enabled());
|
1113
|
+
let val_ty = builder.func.dfg.value_type(val);
|
1114
|
+
let val = if val_ty == F64 {
|
1115
|
+
val
|
1116
|
+
} else {
|
1117
|
+
builder.ins().fpromote(F64, val)
|
1118
|
+
};
|
1119
|
+
let isnan = builder.ins().fcmp(FloatCC::NotEqual, val, val);
|
1120
|
+
self.trapnz(builder, isnan, ir::TrapCode::BAD_CONVERSION_TO_INTEGER);
|
1121
|
+
let val = builder.ins().trunc(val);
|
1122
|
+
let (lower_bound, upper_bound) = match ty {
|
1123
|
+
I32 => range32,
|
1124
|
+
I64 => range64,
|
1125
|
+
_ => unreachable!(),
|
1126
|
+
};
|
1127
|
+
let lower_bound = builder.ins().f64const(lower_bound);
|
1128
|
+
let too_small = builder
|
1129
|
+
.ins()
|
1130
|
+
.fcmp(FloatCC::LessThanOrEqual, val, lower_bound);
|
1131
|
+
self.trapnz(builder, too_small, ir::TrapCode::INTEGER_OVERFLOW);
|
1132
|
+
let upper_bound = builder.ins().f64const(upper_bound);
|
1133
|
+
let too_large = builder
|
1134
|
+
.ins()
|
1135
|
+
.fcmp(FloatCC::GreaterThanOrEqual, val, upper_bound);
|
1136
|
+
self.trapnz(builder, too_large, ir::TrapCode::INTEGER_OVERFLOW);
|
1137
|
+
}
|
1138
|
+
|
1139
|
+
/// Get the `ir::Type` for a `VMSharedTypeIndex`.
|
1140
|
+
pub(crate) fn vmshared_type_index_ty(&self) -> Type {
|
1141
|
+
Type::int_with_byte_size(self.offsets.size_of_vmshared_type_index().into()).unwrap()
|
1142
|
+
}
|
1143
|
+
|
1144
|
+
/// Given a `ModuleInternedTypeIndex`, emit code to get the corresponding
|
1145
|
+
/// `VMSharedTypeIndex` at runtime.
|
1146
|
+
pub(crate) fn module_interned_to_shared_ty(
|
1147
|
+
&mut self,
|
1148
|
+
pos: &mut FuncCursor,
|
1149
|
+
interned_ty: ModuleInternedTypeIndex,
|
1150
|
+
) -> ir::Value {
|
1151
|
+
let vmctx = self.vmctx_val(pos);
|
1152
|
+
let pointer_type = self.pointer_type();
|
1153
|
+
let mem_flags = ir::MemFlags::trusted().with_readonly();
|
1154
|
+
|
1155
|
+
// Load the base pointer of the array of `VMSharedTypeIndex`es.
|
1156
|
+
let shared_indices = pos.ins().load(
|
1157
|
+
pointer_type,
|
1158
|
+
mem_flags,
|
1159
|
+
vmctx,
|
1160
|
+
i32::from(self.offsets.ptr.vmctx_type_ids_array()),
|
1161
|
+
);
|
1162
|
+
|
1163
|
+
// Calculate the offset in that array for this type's entry.
|
1164
|
+
let ty = self.vmshared_type_index_ty();
|
1165
|
+
let offset = i32::try_from(interned_ty.as_u32().checked_mul(ty.bytes()).unwrap()).unwrap();
|
1166
|
+
|
1167
|
+
// Load the`VMSharedTypeIndex` that this `ModuleInternedTypeIndex` is
|
1168
|
+
// associated with at runtime from the array.
|
1169
|
+
pos.ins().load(ty, mem_flags, shared_indices, offset)
|
1170
|
+
}
|
1171
|
+
|
1172
|
+
/// Load the associated `VMSharedTypeIndex` from inside a `*const VMFuncRef`.
|
1173
|
+
///
|
1174
|
+
/// Does not check for null; just assumes that the `funcref` is a valid
|
1175
|
+
/// pointer.
|
1176
|
+
pub(crate) fn load_funcref_type_index(
|
1177
|
+
&mut self,
|
1178
|
+
pos: &mut FuncCursor,
|
1179
|
+
mem_flags: ir::MemFlags,
|
1180
|
+
funcref: ir::Value,
|
1181
|
+
) -> ir::Value {
|
1182
|
+
let ty = self.vmshared_type_index_ty();
|
1183
|
+
pos.ins().load(
|
1184
|
+
ty,
|
1185
|
+
mem_flags,
|
1186
|
+
funcref,
|
1187
|
+
i32::from(self.offsets.ptr.vm_func_ref_type_index()),
|
1188
|
+
)
|
1189
|
+
}
|
1190
|
+
}
|
1191
|
+
|
1192
|
+
struct Call<'a, 'func, 'module_env> {
|
1193
|
+
builder: &'a mut FunctionBuilder<'func>,
|
1194
|
+
env: &'a mut FuncEnvironment<'module_env>,
|
1195
|
+
tail: bool,
|
1196
|
+
}
|
1197
|
+
|
1198
|
+
enum CheckIndirectCallTypeSignature {
|
1199
|
+
Runtime,
|
1200
|
+
StaticMatch {
|
1201
|
+
/// Whether or not the funcref may be null or if it's statically known
|
1202
|
+
/// to not be null.
|
1203
|
+
may_be_null: bool,
|
1204
|
+
},
|
1205
|
+
StaticTrap,
|
1206
|
+
}
|
1207
|
+
|
1208
|
+
impl<'a, 'func, 'module_env> Call<'a, 'func, 'module_env> {
|
1209
|
+
/// Create a new `Call` site that will do regular, non-tail calls.
|
1210
|
+
pub fn new(
|
1211
|
+
builder: &'a mut FunctionBuilder<'func>,
|
1212
|
+
env: &'a mut FuncEnvironment<'module_env>,
|
1213
|
+
) -> Self {
|
1214
|
+
Call {
|
1215
|
+
builder,
|
1216
|
+
env,
|
1217
|
+
tail: false,
|
1218
|
+
}
|
1219
|
+
}
|
1220
|
+
|
1221
|
+
/// Create a new `Call` site that will perform tail calls.
|
1222
|
+
pub fn new_tail(
|
1223
|
+
builder: &'a mut FunctionBuilder<'func>,
|
1224
|
+
env: &'a mut FuncEnvironment<'module_env>,
|
1225
|
+
) -> Self {
|
1226
|
+
Call {
|
1227
|
+
builder,
|
1228
|
+
env,
|
1229
|
+
tail: true,
|
1230
|
+
}
|
1231
|
+
}
|
1232
|
+
|
1233
|
+
/// Do a direct call to the given callee function.
|
1234
|
+
pub fn direct_call(
|
1235
|
+
mut self,
|
1236
|
+
callee_index: FuncIndex,
|
1237
|
+
callee: ir::FuncRef,
|
1238
|
+
call_args: &[ir::Value],
|
1239
|
+
) -> WasmResult<ir::Inst> {
|
1240
|
+
let mut real_call_args = Vec::with_capacity(call_args.len() + 2);
|
1241
|
+
let caller_vmctx = self
|
1242
|
+
.builder
|
1243
|
+
.func
|
1244
|
+
.special_param(ArgumentPurpose::VMContext)
|
1245
|
+
.unwrap();
|
1246
|
+
|
1247
|
+
// Handle direct calls to locally-defined functions.
|
1248
|
+
if !self.env.module.is_imported_function(callee_index) {
|
1249
|
+
// First append the callee vmctx address, which is the same as the caller vmctx in
|
1250
|
+
// this case.
|
1251
|
+
real_call_args.push(caller_vmctx);
|
1252
|
+
|
1253
|
+
// Then append the caller vmctx address.
|
1254
|
+
real_call_args.push(caller_vmctx);
|
1255
|
+
|
1256
|
+
// Then append the regular call arguments.
|
1257
|
+
real_call_args.extend_from_slice(call_args);
|
1258
|
+
|
1259
|
+
// Finally, make the direct call!
|
1260
|
+
return Ok(self.direct_call_inst(callee, &real_call_args));
|
1261
|
+
}
|
1262
|
+
|
1263
|
+
// Handle direct calls to imported functions. We use an indirect call
|
1264
|
+
// so that we don't have to patch the code at runtime.
|
1265
|
+
let pointer_type = self.env.pointer_type();
|
1266
|
+
let sig_ref = self.builder.func.dfg.ext_funcs[callee].signature;
|
1267
|
+
let vmctx = self.env.vmctx(self.builder.func);
|
1268
|
+
let base = self.builder.ins().global_value(pointer_type, vmctx);
|
1269
|
+
|
1270
|
+
let mem_flags = ir::MemFlags::trusted().with_readonly();
|
1271
|
+
|
1272
|
+
// Load the callee address.
|
1273
|
+
let body_offset = i32::try_from(
|
1274
|
+
self.env
|
1275
|
+
.offsets
|
1276
|
+
.vmctx_vmfunction_import_wasm_call(callee_index),
|
1277
|
+
)
|
1278
|
+
.unwrap();
|
1279
|
+
let func_addr = self
|
1280
|
+
.builder
|
1281
|
+
.ins()
|
1282
|
+
.load(pointer_type, mem_flags, base, body_offset);
|
1283
|
+
|
1284
|
+
// First append the callee vmctx address.
|
1285
|
+
let vmctx_offset =
|
1286
|
+
i32::try_from(self.env.offsets.vmctx_vmfunction_import_vmctx(callee_index)).unwrap();
|
1287
|
+
let vmctx = self
|
1288
|
+
.builder
|
1289
|
+
.ins()
|
1290
|
+
.load(pointer_type, mem_flags, base, vmctx_offset);
|
1291
|
+
real_call_args.push(vmctx);
|
1292
|
+
real_call_args.push(caller_vmctx);
|
1293
|
+
|
1294
|
+
// Then append the regular call arguments.
|
1295
|
+
real_call_args.extend_from_slice(call_args);
|
1296
|
+
|
1297
|
+
// Finally, make the indirect call!
|
1298
|
+
Ok(self.indirect_call_inst(sig_ref, func_addr, &real_call_args))
|
1299
|
+
}
|
1300
|
+
|
1301
|
+
/// Do an indirect call through the given funcref table.
|
1302
|
+
pub fn indirect_call(
|
1303
|
+
mut self,
|
1304
|
+
features: &WasmFeatures,
|
1305
|
+
table_index: TableIndex,
|
1306
|
+
ty_index: TypeIndex,
|
1307
|
+
sig_ref: ir::SigRef,
|
1308
|
+
callee: ir::Value,
|
1309
|
+
call_args: &[ir::Value],
|
1310
|
+
) -> WasmResult<Option<ir::Inst>> {
|
1311
|
+
let (code_ptr, callee_vmctx) = match self.check_and_load_code_and_callee_vmctx(
|
1312
|
+
features,
|
1313
|
+
table_index,
|
1314
|
+
ty_index,
|
1315
|
+
callee,
|
1316
|
+
false,
|
1317
|
+
)? {
|
1318
|
+
Some(pair) => pair,
|
1319
|
+
None => return Ok(None),
|
1320
|
+
};
|
1321
|
+
|
1322
|
+
self.unchecked_call_impl(sig_ref, code_ptr, callee_vmctx, call_args)
|
1323
|
+
.map(Some)
|
1324
|
+
}
|
1325
|
+
|
1326
|
+
fn check_and_load_code_and_callee_vmctx(
|
1327
|
+
&mut self,
|
1328
|
+
features: &WasmFeatures,
|
1329
|
+
table_index: TableIndex,
|
1330
|
+
ty_index: TypeIndex,
|
1331
|
+
callee: ir::Value,
|
1332
|
+
cold_blocks: bool,
|
1333
|
+
) -> WasmResult<Option<(ir::Value, ir::Value)>> {
|
1334
|
+
// Get the funcref pointer from the table.
|
1335
|
+
let funcref_ptr = self.env.get_or_init_func_ref_table_elem(
|
1336
|
+
self.builder,
|
1337
|
+
table_index,
|
1338
|
+
callee,
|
1339
|
+
cold_blocks,
|
1340
|
+
);
|
1341
|
+
|
1342
|
+
// If necessary, check the signature.
|
1343
|
+
let check =
|
1344
|
+
self.check_indirect_call_type_signature(features, table_index, ty_index, funcref_ptr);
|
1345
|
+
|
1346
|
+
let trap_code = match check {
|
1347
|
+
// `funcref_ptr` is checked at runtime that its type matches,
|
1348
|
+
// meaning that if code gets this far it's guaranteed to not be
|
1349
|
+
// null. That means nothing in `unchecked_call` can fail.
|
1350
|
+
CheckIndirectCallTypeSignature::Runtime => None,
|
1351
|
+
|
1352
|
+
// No type check was performed on `funcref_ptr` because it's
|
1353
|
+
// statically known to have the right type. Note that whether or
|
1354
|
+
// not the function is null is not necessarily tested so far since
|
1355
|
+
// no type information was inspected.
|
1356
|
+
//
|
1357
|
+
// If the table may hold null functions, then further loads in
|
1358
|
+
// `unchecked_call` may fail. If the table only holds non-null
|
1359
|
+
// functions, though, then there's no possibility of a trap.
|
1360
|
+
CheckIndirectCallTypeSignature::StaticMatch { may_be_null } => {
|
1361
|
+
if may_be_null {
|
1362
|
+
Some(crate::TRAP_INDIRECT_CALL_TO_NULL)
|
1363
|
+
} else {
|
1364
|
+
None
|
1365
|
+
}
|
1366
|
+
}
|
1367
|
+
|
1368
|
+
// Code has already trapped, so return nothing indicating that this
|
1369
|
+
// is now unreachable code.
|
1370
|
+
CheckIndirectCallTypeSignature::StaticTrap => return Ok(None),
|
1371
|
+
};
|
1372
|
+
|
1373
|
+
Ok(Some(self.load_code_and_vmctx(funcref_ptr, trap_code)))
|
1374
|
+
}
|
1375
|
+
|
1376
|
+
fn check_indirect_call_type_signature(
|
1377
|
+
&mut self,
|
1378
|
+
features: &WasmFeatures,
|
1379
|
+
table_index: TableIndex,
|
1380
|
+
ty_index: TypeIndex,
|
1381
|
+
funcref_ptr: ir::Value,
|
1382
|
+
) -> CheckIndirectCallTypeSignature {
|
1383
|
+
let table = &self.env.module.tables[table_index];
|
1384
|
+
let sig_id_size = self.env.offsets.size_of_vmshared_type_index();
|
1385
|
+
let sig_id_type = Type::int(u16::from(sig_id_size) * 8).unwrap();
|
1386
|
+
|
1387
|
+
// Test if a type check is necessary for this table. If this table is a
|
1388
|
+
// table of typed functions and that type matches `ty_index`, then
|
1389
|
+
// there's no need to perform a typecheck.
|
1390
|
+
match table.ref_type.heap_type {
|
1391
|
+
// Functions do not have a statically known type in the table, a
|
1392
|
+
// typecheck is required. Fall through to below to perform the
|
1393
|
+
// actual typecheck.
|
1394
|
+
WasmHeapType::Func => {}
|
1395
|
+
|
1396
|
+
// Functions that have a statically known type are either going to
|
1397
|
+
// always succeed or always fail. Figure out by inspecting the types
|
1398
|
+
// further.
|
1399
|
+
WasmHeapType::ConcreteFunc(EngineOrModuleTypeIndex::Module(table_ty)) => {
|
1400
|
+
// If `ty_index` matches `table_ty`, then this call is
|
1401
|
+
// statically known to have the right type, so no checks are
|
1402
|
+
// necessary.
|
1403
|
+
let specified_ty = self.env.module.types[ty_index];
|
1404
|
+
if specified_ty == table_ty {
|
1405
|
+
return CheckIndirectCallTypeSignature::StaticMatch {
|
1406
|
+
may_be_null: table.ref_type.nullable,
|
1407
|
+
};
|
1408
|
+
}
|
1409
|
+
|
1410
|
+
if features.gc() {
|
1411
|
+
// If we are in the Wasm GC world, then we need to perform
|
1412
|
+
// an actual subtype check at runtime. Fall through to below
|
1413
|
+
// to do that.
|
1414
|
+
} else {
|
1415
|
+
// Otherwise if the types don't match then either (a) this
|
1416
|
+
// is a null pointer or (b) it's a pointer with the wrong
|
1417
|
+
// type. Figure out which and trap here.
|
1418
|
+
//
|
1419
|
+
// If it's possible to have a null here then try to load the
|
1420
|
+
// type information. If that fails due to the function being
|
1421
|
+
// a null pointer, then this was a call to null. Otherwise
|
1422
|
+
// if it succeeds then we know it won't match, so trap
|
1423
|
+
// anyway.
|
1424
|
+
if table.ref_type.nullable {
|
1425
|
+
if self.env.clif_memory_traps_enabled() {
|
1426
|
+
let mem_flags = ir::MemFlags::trusted().with_readonly();
|
1427
|
+
self.builder.ins().load(
|
1428
|
+
sig_id_type,
|
1429
|
+
mem_flags.with_trap_code(Some(crate::TRAP_INDIRECT_CALL_TO_NULL)),
|
1430
|
+
funcref_ptr,
|
1431
|
+
i32::from(self.env.offsets.ptr.vm_func_ref_type_index()),
|
1432
|
+
);
|
1433
|
+
} else {
|
1434
|
+
self.env.trapz(
|
1435
|
+
self.builder,
|
1436
|
+
funcref_ptr,
|
1437
|
+
crate::TRAP_INDIRECT_CALL_TO_NULL,
|
1438
|
+
);
|
1439
|
+
}
|
1440
|
+
}
|
1441
|
+
self.env.trap(self.builder, crate::TRAP_BAD_SIGNATURE);
|
1442
|
+
return CheckIndirectCallTypeSignature::StaticTrap;
|
1443
|
+
}
|
1444
|
+
}
|
1445
|
+
|
1446
|
+
// Tables of `nofunc` can only be inhabited by null, so go ahead and
|
1447
|
+
// trap with that.
|
1448
|
+
WasmHeapType::NoFunc => {
|
1449
|
+
assert!(table.ref_type.nullable);
|
1450
|
+
self.env
|
1451
|
+
.trap(self.builder, crate::TRAP_INDIRECT_CALL_TO_NULL);
|
1452
|
+
return CheckIndirectCallTypeSignature::StaticTrap;
|
1453
|
+
}
|
1454
|
+
|
1455
|
+
// Engine-indexed types don't show up until runtime and it's a Wasm
|
1456
|
+
// validation error to perform a call through a non-function table,
|
1457
|
+
// so these cases are dynamically not reachable.
|
1458
|
+
WasmHeapType::ConcreteFunc(EngineOrModuleTypeIndex::Engine(_))
|
1459
|
+
| WasmHeapType::ConcreteFunc(EngineOrModuleTypeIndex::RecGroup(_))
|
1460
|
+
| WasmHeapType::Extern
|
1461
|
+
| WasmHeapType::NoExtern
|
1462
|
+
| WasmHeapType::Any
|
1463
|
+
| WasmHeapType::Eq
|
1464
|
+
| WasmHeapType::I31
|
1465
|
+
| WasmHeapType::Array
|
1466
|
+
| WasmHeapType::ConcreteArray(_)
|
1467
|
+
| WasmHeapType::Struct
|
1468
|
+
| WasmHeapType::ConcreteStruct(_)
|
1469
|
+
| WasmHeapType::None => {
|
1470
|
+
unreachable!()
|
1471
|
+
}
|
1472
|
+
}
|
1473
|
+
|
1474
|
+
// Load the caller's `VMSharedTypeIndex.
|
1475
|
+
let interned_ty = self.env.module.types[ty_index];
|
1476
|
+
let caller_sig_id = self
|
1477
|
+
.env
|
1478
|
+
.module_interned_to_shared_ty(&mut self.builder.cursor(), interned_ty);
|
1479
|
+
|
1480
|
+
// Load the callee's `VMSharedTypeIndex`.
|
1481
|
+
//
|
1482
|
+
// Note that the callee may be null in which case this load may
|
1483
|
+
// trap. If so use the `TRAP_INDIRECT_CALL_TO_NULL` trap code.
|
1484
|
+
let mut mem_flags = ir::MemFlags::trusted().with_readonly();
|
1485
|
+
if self.env.clif_memory_traps_enabled() {
|
1486
|
+
mem_flags = mem_flags.with_trap_code(Some(crate::TRAP_INDIRECT_CALL_TO_NULL));
|
1487
|
+
} else {
|
1488
|
+
self.env
|
1489
|
+
.trapz(self.builder, funcref_ptr, crate::TRAP_INDIRECT_CALL_TO_NULL);
|
1490
|
+
}
|
1491
|
+
let callee_sig_id =
|
1492
|
+
self.env
|
1493
|
+
.load_funcref_type_index(&mut self.builder.cursor(), mem_flags, funcref_ptr);
|
1494
|
+
|
1495
|
+
// Check that they match: in the case of Wasm GC, this means doing a
|
1496
|
+
// full subtype check. Otherwise, we do a simple equality check.
|
1497
|
+
let matches = if features.gc() {
|
1498
|
+
#[cfg(feature = "gc")]
|
1499
|
+
{
|
1500
|
+
self.env
|
1501
|
+
.is_subtype(self.builder, callee_sig_id, caller_sig_id)
|
1502
|
+
}
|
1503
|
+
#[cfg(not(feature = "gc"))]
|
1504
|
+
{
|
1505
|
+
unreachable!()
|
1506
|
+
}
|
1507
|
+
} else {
|
1508
|
+
self.builder
|
1509
|
+
.ins()
|
1510
|
+
.icmp(IntCC::Equal, callee_sig_id, caller_sig_id)
|
1511
|
+
};
|
1512
|
+
self.env
|
1513
|
+
.trapz(self.builder, matches, crate::TRAP_BAD_SIGNATURE);
|
1514
|
+
CheckIndirectCallTypeSignature::Runtime
|
1515
|
+
}
|
1516
|
+
|
1517
|
+
/// Call a typed function reference.
|
1518
|
+
pub fn call_ref(
|
1519
|
+
mut self,
|
1520
|
+
sig_ref: ir::SigRef,
|
1521
|
+
callee: ir::Value,
|
1522
|
+
args: &[ir::Value],
|
1523
|
+
) -> WasmResult<ir::Inst> {
|
1524
|
+
// FIXME: the wasm type system tracks enough information to know whether
|
1525
|
+
// `callee` is a null reference or not. In some situations it can be
|
1526
|
+
// statically known here that `callee` cannot be null in which case this
|
1527
|
+
// can be `None` instead. This requires feeding type information from
|
1528
|
+
// wasmparser's validator into this function, however, which is not
|
1529
|
+
// easily done at this time.
|
1530
|
+
let callee_load_trap_code = Some(crate::TRAP_NULL_REFERENCE);
|
1531
|
+
|
1532
|
+
self.unchecked_call(sig_ref, callee, callee_load_trap_code, args)
|
1533
|
+
}
|
1534
|
+
|
1535
|
+
/// This calls a function by reference without checking the signature.
|
1536
|
+
///
|
1537
|
+
/// It gets the function address, sets relevant flags, and passes the
|
1538
|
+
/// special callee/caller vmctxs. It is used by both call_indirect (which
|
1539
|
+
/// checks the signature) and call_ref (which doesn't).
|
1540
|
+
fn unchecked_call(
|
1541
|
+
&mut self,
|
1542
|
+
sig_ref: ir::SigRef,
|
1543
|
+
callee: ir::Value,
|
1544
|
+
callee_load_trap_code: Option<ir::TrapCode>,
|
1545
|
+
call_args: &[ir::Value],
|
1546
|
+
) -> WasmResult<ir::Inst> {
|
1547
|
+
let (func_addr, callee_vmctx) = self.load_code_and_vmctx(callee, callee_load_trap_code);
|
1548
|
+
self.unchecked_call_impl(sig_ref, func_addr, callee_vmctx, call_args)
|
1549
|
+
}
|
1550
|
+
|
1551
|
+
fn load_code_and_vmctx(
|
1552
|
+
&mut self,
|
1553
|
+
callee: ir::Value,
|
1554
|
+
callee_load_trap_code: Option<ir::TrapCode>,
|
1555
|
+
) -> (ir::Value, ir::Value) {
|
1556
|
+
let pointer_type = self.env.pointer_type();
|
1557
|
+
|
1558
|
+
// Dereference callee pointer to get the function address.
|
1559
|
+
//
|
1560
|
+
// Note that this may trap if `callee` hasn't previously been verified
|
1561
|
+
// to be non-null. This means that this load is annotated with an
|
1562
|
+
// optional trap code provided by the caller of `unchecked_call` which
|
1563
|
+
// will handle the case where this is either already known to be
|
1564
|
+
// non-null or may trap.
|
1565
|
+
let mem_flags = ir::MemFlags::trusted().with_readonly();
|
1566
|
+
let mut callee_flags = mem_flags;
|
1567
|
+
if self.env.clif_memory_traps_enabled() {
|
1568
|
+
callee_flags = callee_flags.with_trap_code(callee_load_trap_code);
|
1569
|
+
} else {
|
1570
|
+
if let Some(trap) = callee_load_trap_code {
|
1571
|
+
self.env.trapz(self.builder, callee, trap);
|
1572
|
+
}
|
1573
|
+
}
|
1574
|
+
let func_addr = self.builder.ins().load(
|
1575
|
+
pointer_type,
|
1576
|
+
callee_flags,
|
1577
|
+
callee,
|
1578
|
+
i32::from(self.env.offsets.ptr.vm_func_ref_wasm_call()),
|
1579
|
+
);
|
1580
|
+
let callee_vmctx = self.builder.ins().load(
|
1581
|
+
pointer_type,
|
1582
|
+
mem_flags,
|
1583
|
+
callee,
|
1584
|
+
i32::from(self.env.offsets.ptr.vm_func_ref_vmctx()),
|
1585
|
+
);
|
1586
|
+
|
1587
|
+
(func_addr, callee_vmctx)
|
1588
|
+
}
|
1589
|
+
|
1590
|
+
/// This calls a function by reference without checking the
|
1591
|
+
/// signature, given the raw code pointer to the
|
1592
|
+
/// Wasm-calling-convention entry point and the callee vmctx.
|
1593
|
+
fn unchecked_call_impl(
|
1594
|
+
&mut self,
|
1595
|
+
sig_ref: ir::SigRef,
|
1596
|
+
func_addr: ir::Value,
|
1597
|
+
callee_vmctx: ir::Value,
|
1598
|
+
call_args: &[ir::Value],
|
1599
|
+
) -> WasmResult<ir::Inst> {
|
1600
|
+
let mut real_call_args = Vec::with_capacity(call_args.len() + 2);
|
1601
|
+
let caller_vmctx = self
|
1602
|
+
.builder
|
1603
|
+
.func
|
1604
|
+
.special_param(ArgumentPurpose::VMContext)
|
1605
|
+
.unwrap();
|
1606
|
+
|
1607
|
+
// First append the callee and caller vmctx addresses.
|
1608
|
+
real_call_args.push(callee_vmctx);
|
1609
|
+
real_call_args.push(caller_vmctx);
|
1610
|
+
|
1611
|
+
// Then append the regular call arguments.
|
1612
|
+
real_call_args.extend_from_slice(call_args);
|
1613
|
+
|
1614
|
+
Ok(self.indirect_call_inst(sig_ref, func_addr, &real_call_args))
|
1615
|
+
}
|
1616
|
+
|
1617
|
+
fn direct_call_inst(&mut self, callee: ir::FuncRef, args: &[ir::Value]) -> ir::Inst {
|
1618
|
+
if self.tail {
|
1619
|
+
self.builder.ins().return_call(callee, args)
|
1620
|
+
} else {
|
1621
|
+
let inst = self.builder.ins().call(callee, args);
|
1622
|
+
let results: SmallVec<[_; 4]> = self
|
1623
|
+
.builder
|
1624
|
+
.func
|
1625
|
+
.dfg
|
1626
|
+
.inst_results(inst)
|
1627
|
+
.iter()
|
1628
|
+
.copied()
|
1629
|
+
.collect();
|
1630
|
+
for (i, val) in results.into_iter().enumerate() {
|
1631
|
+
if self
|
1632
|
+
.env
|
1633
|
+
.func_ref_result_needs_stack_map(&self.builder.func, callee, i)
|
1634
|
+
{
|
1635
|
+
self.builder.declare_value_needs_stack_map(val);
|
1636
|
+
}
|
1637
|
+
}
|
1638
|
+
inst
|
1639
|
+
}
|
1640
|
+
}
|
1641
|
+
|
1642
|
+
fn indirect_call_inst(
|
1643
|
+
&mut self,
|
1644
|
+
sig_ref: ir::SigRef,
|
1645
|
+
func_addr: ir::Value,
|
1646
|
+
args: &[ir::Value],
|
1647
|
+
) -> ir::Inst {
|
1648
|
+
if self.tail {
|
1649
|
+
self.builder
|
1650
|
+
.ins()
|
1651
|
+
.return_call_indirect(sig_ref, func_addr, args)
|
1652
|
+
} else {
|
1653
|
+
let inst = self.builder.ins().call_indirect(sig_ref, func_addr, args);
|
1654
|
+
let results: SmallVec<[_; 4]> = self
|
1655
|
+
.builder
|
1656
|
+
.func
|
1657
|
+
.dfg
|
1658
|
+
.inst_results(inst)
|
1659
|
+
.iter()
|
1660
|
+
.copied()
|
1661
|
+
.collect();
|
1662
|
+
for (i, val) in results.into_iter().enumerate() {
|
1663
|
+
if self.env.sig_ref_result_needs_stack_map(sig_ref, i) {
|
1664
|
+
self.builder.declare_value_needs_stack_map(val);
|
1665
|
+
}
|
1666
|
+
}
|
1667
|
+
inst
|
1668
|
+
}
|
1669
|
+
}
|
1670
|
+
}
|
1671
|
+
|
1672
|
+
impl TypeConvert for FuncEnvironment<'_> {
|
1673
|
+
fn lookup_heap_type(&self, ty: wasmparser::UnpackedIndex) -> WasmHeapType {
|
1674
|
+
wasmtime_environ::WasmparserTypeConverter::new(self.types, |idx| self.module.types[idx])
|
1675
|
+
.lookup_heap_type(ty)
|
1676
|
+
}
|
1677
|
+
|
1678
|
+
fn lookup_type_index(&self, index: wasmparser::UnpackedIndex) -> EngineOrModuleTypeIndex {
|
1679
|
+
wasmtime_environ::WasmparserTypeConverter::new(self.types, |idx| self.module.types[idx])
|
1680
|
+
.lookup_type_index(index)
|
1681
|
+
}
|
1682
|
+
}
|
1683
|
+
|
1684
|
+
impl<'module_environment> TargetEnvironment for FuncEnvironment<'module_environment> {
|
1685
|
+
fn target_config(&self) -> TargetFrontendConfig {
|
1686
|
+
self.isa.frontend_config()
|
1687
|
+
}
|
1688
|
+
|
1689
|
+
fn reference_type(&self, wasm_ty: WasmHeapType) -> (ir::Type, bool) {
|
1690
|
+
let ty = crate::reference_type(wasm_ty, self.pointer_type());
|
1691
|
+
let needs_stack_map = match wasm_ty.top() {
|
1692
|
+
WasmHeapTopType::Extern | WasmHeapTopType::Any => true,
|
1693
|
+
WasmHeapTopType::Func => false,
|
1694
|
+
};
|
1695
|
+
(ty, needs_stack_map)
|
1696
|
+
}
|
1697
|
+
|
1698
|
+
fn heap_access_spectre_mitigation(&self) -> bool {
|
1699
|
+
self.isa.flags().enable_heap_access_spectre_mitigation()
|
1700
|
+
}
|
1701
|
+
|
1702
|
+
fn proof_carrying_code(&self) -> bool {
|
1703
|
+
self.isa.flags().enable_pcc()
|
1704
|
+
}
|
1705
|
+
|
1706
|
+
fn tunables(&self) -> &Tunables {
|
1707
|
+
self.compiler.tunables()
|
1708
|
+
}
|
1709
|
+
}
|
1710
|
+
|
1711
|
+
impl FuncEnvironment<'_> {
|
1712
|
+
pub fn heaps(&self) -> &PrimaryMap<Heap, HeapData> {
|
1713
|
+
&self.heaps
|
1714
|
+
}
|
1715
|
+
|
1716
|
+
pub fn is_wasm_parameter(&self, _signature: &ir::Signature, index: usize) -> bool {
|
1717
|
+
// The first two parameters are the vmctx and caller vmctx. The rest are
|
1718
|
+
// the wasm parameters.
|
1719
|
+
index >= 2
|
1720
|
+
}
|
1721
|
+
|
1722
|
+
pub fn param_needs_stack_map(&self, _signature: &ir::Signature, index: usize) -> bool {
|
1723
|
+
// Skip the caller and callee vmctx.
|
1724
|
+
if index < 2 {
|
1725
|
+
return false;
|
1726
|
+
}
|
1727
|
+
|
1728
|
+
self.wasm_func_ty.params()[index - 2].is_vmgcref_type_and_not_i31()
|
1729
|
+
}
|
1730
|
+
|
1731
|
+
pub fn sig_ref_result_needs_stack_map(&self, sig_ref: ir::SigRef, index: usize) -> bool {
|
1732
|
+
let wasm_func_ty = self.sig_ref_to_ty[sig_ref].as_ref().unwrap();
|
1733
|
+
wasm_func_ty.returns()[index].is_vmgcref_type_and_not_i31()
|
1734
|
+
}
|
1735
|
+
|
1736
|
+
pub fn func_ref_result_needs_stack_map(
|
1737
|
+
&self,
|
1738
|
+
func: &ir::Function,
|
1739
|
+
func_ref: ir::FuncRef,
|
1740
|
+
index: usize,
|
1741
|
+
) -> bool {
|
1742
|
+
let sig_ref = func.dfg.ext_funcs[func_ref].signature;
|
1743
|
+
let wasm_func_ty = self.sig_ref_to_ty[sig_ref].as_ref().unwrap();
|
1744
|
+
wasm_func_ty.returns()[index].is_vmgcref_type_and_not_i31()
|
1745
|
+
}
|
1746
|
+
|
1747
|
+
pub fn after_locals(&mut self, num_locals: usize) {
|
1748
|
+
self.fuel_var = Variable::new(num_locals);
|
1749
|
+
self.epoch_deadline_var = Variable::new(num_locals + 1);
|
1750
|
+
self.epoch_ptr_var = Variable::new(num_locals + 2);
|
1751
|
+
}
|
1752
|
+
|
1753
|
+
pub fn translate_table_grow(
|
1754
|
+
&mut self,
|
1755
|
+
builder: &mut FunctionBuilder<'_>,
|
1756
|
+
table_index: TableIndex,
|
1757
|
+
delta: ir::Value,
|
1758
|
+
init_value: ir::Value,
|
1759
|
+
) -> WasmResult<ir::Value> {
|
1760
|
+
let mut pos = builder.cursor();
|
1761
|
+
let table = self.table(table_index);
|
1762
|
+
let ty = table.ref_type.heap_type;
|
1763
|
+
let grow = if ty.is_vmgcref_type() {
|
1764
|
+
gc::builtins::table_grow_gc_ref(self, &mut pos.func)?
|
1765
|
+
} else {
|
1766
|
+
debug_assert_eq!(ty.top(), WasmHeapTopType::Func);
|
1767
|
+
self.builtin_functions.table_grow_func_ref(&mut pos.func)
|
1768
|
+
};
|
1769
|
+
|
1770
|
+
let vmctx = self.vmctx_val(&mut pos);
|
1771
|
+
|
1772
|
+
let index_type = table.idx_type;
|
1773
|
+
let delta = self.cast_index_to_i64(&mut pos, delta, index_type);
|
1774
|
+
let table_index_arg = pos.ins().iconst(I32, table_index.as_u32() as i64);
|
1775
|
+
let call_inst = pos
|
1776
|
+
.ins()
|
1777
|
+
.call(grow, &[vmctx, table_index_arg, delta, init_value]);
|
1778
|
+
let result = pos.func.dfg.first_result(call_inst);
|
1779
|
+
Ok(self.convert_pointer_to_index_type(builder.cursor(), result, index_type, false))
|
1780
|
+
}
|
1781
|
+
|
1782
|
+
pub fn translate_table_get(
|
1783
|
+
&mut self,
|
1784
|
+
builder: &mut FunctionBuilder,
|
1785
|
+
table_index: TableIndex,
|
1786
|
+
index: ir::Value,
|
1787
|
+
) -> WasmResult<ir::Value> {
|
1788
|
+
let table = self.module.tables[table_index];
|
1789
|
+
self.ensure_table_exists(builder.func, table_index);
|
1790
|
+
let table_data = self.tables[table_index].clone().unwrap();
|
1791
|
+
let heap_ty = table.ref_type.heap_type;
|
1792
|
+
match heap_ty.top() {
|
1793
|
+
// GC-managed types.
|
1794
|
+
WasmHeapTopType::Any | WasmHeapTopType::Extern => {
|
1795
|
+
let (src, flags) = table_data.prepare_table_addr(self, builder, index);
|
1796
|
+
gc::gc_compiler(self)?.translate_read_gc_reference(
|
1797
|
+
self,
|
1798
|
+
builder,
|
1799
|
+
table.ref_type,
|
1800
|
+
src,
|
1801
|
+
flags,
|
1802
|
+
)
|
1803
|
+
}
|
1804
|
+
|
1805
|
+
// Function types.
|
1806
|
+
WasmHeapTopType::Func => {
|
1807
|
+
Ok(self.get_or_init_func_ref_table_elem(builder, table_index, index, false))
|
1808
|
+
}
|
1809
|
+
}
|
1810
|
+
}
|
1811
|
+
|
1812
|
+
pub fn translate_table_set(
|
1813
|
+
&mut self,
|
1814
|
+
builder: &mut FunctionBuilder,
|
1815
|
+
table_index: TableIndex,
|
1816
|
+
value: ir::Value,
|
1817
|
+
index: ir::Value,
|
1818
|
+
) -> WasmResult<()> {
|
1819
|
+
let table = self.module.tables[table_index];
|
1820
|
+
self.ensure_table_exists(builder.func, table_index);
|
1821
|
+
let table_data = self.tables[table_index].clone().unwrap();
|
1822
|
+
let heap_ty = table.ref_type.heap_type;
|
1823
|
+
match heap_ty.top() {
|
1824
|
+
// GC-managed types.
|
1825
|
+
WasmHeapTopType::Any | WasmHeapTopType::Extern => {
|
1826
|
+
let (dst, flags) = table_data.prepare_table_addr(self, builder, index);
|
1827
|
+
gc::gc_compiler(self)?.translate_write_gc_reference(
|
1828
|
+
self,
|
1829
|
+
builder,
|
1830
|
+
table.ref_type,
|
1831
|
+
dst,
|
1832
|
+
value,
|
1833
|
+
flags,
|
1834
|
+
)
|
1835
|
+
}
|
1836
|
+
|
1837
|
+
// Function types.
|
1838
|
+
WasmHeapTopType::Func => {
|
1839
|
+
let (elem_addr, flags) = table_data.prepare_table_addr(self, builder, index);
|
1840
|
+
// Set the "initialized bit". See doc-comment on
|
1841
|
+
// `FUNCREF_INIT_BIT` in
|
1842
|
+
// crates/environ/src/ref_bits.rs for details.
|
1843
|
+
let value_with_init_bit = if self.tunables.table_lazy_init {
|
1844
|
+
builder
|
1845
|
+
.ins()
|
1846
|
+
.bor_imm(value, Imm64::from(FUNCREF_INIT_BIT as i64))
|
1847
|
+
} else {
|
1848
|
+
value
|
1849
|
+
};
|
1850
|
+
builder
|
1851
|
+
.ins()
|
1852
|
+
.store(flags, value_with_init_bit, elem_addr, 0);
|
1853
|
+
Ok(())
|
1854
|
+
}
|
1855
|
+
}
|
1856
|
+
}
|
1857
|
+
|
1858
|
+
pub fn translate_table_fill(
|
1859
|
+
&mut self,
|
1860
|
+
builder: &mut FunctionBuilder<'_>,
|
1861
|
+
table_index: TableIndex,
|
1862
|
+
dst: ir::Value,
|
1863
|
+
val: ir::Value,
|
1864
|
+
len: ir::Value,
|
1865
|
+
) -> WasmResult<()> {
|
1866
|
+
let mut pos = builder.cursor();
|
1867
|
+
let table = self.table(table_index);
|
1868
|
+
let index_type = table.idx_type;
|
1869
|
+
let dst = self.cast_index_to_i64(&mut pos, dst, index_type);
|
1870
|
+
let len = self.cast_index_to_i64(&mut pos, len, index_type);
|
1871
|
+
let ty = table.ref_type.heap_type;
|
1872
|
+
let libcall = if ty.is_vmgcref_type() {
|
1873
|
+
gc::builtins::table_fill_gc_ref(self, &mut pos.func)?
|
1874
|
+
} else {
|
1875
|
+
debug_assert_eq!(ty.top(), WasmHeapTopType::Func);
|
1876
|
+
self.builtin_functions.table_fill_func_ref(&mut pos.func)
|
1877
|
+
};
|
1878
|
+
|
1879
|
+
let vmctx = self.vmctx_val(&mut pos);
|
1880
|
+
|
1881
|
+
let table_index_arg = pos.ins().iconst(I32, table_index.as_u32() as i64);
|
1882
|
+
pos.ins()
|
1883
|
+
.call(libcall, &[vmctx, table_index_arg, dst, val, len]);
|
1884
|
+
|
1885
|
+
Ok(())
|
1886
|
+
}
|
1887
|
+
|
1888
|
+
pub fn translate_ref_i31(
|
1889
|
+
&mut self,
|
1890
|
+
mut pos: FuncCursor,
|
1891
|
+
val: ir::Value,
|
1892
|
+
) -> WasmResult<ir::Value> {
|
1893
|
+
debug_assert_eq!(pos.func.dfg.value_type(val), ir::types::I32);
|
1894
|
+
let shifted = pos.ins().ishl_imm(val, 1);
|
1895
|
+
let tagged = pos
|
1896
|
+
.ins()
|
1897
|
+
.bor_imm(shifted, i64::from(crate::I31_REF_DISCRIMINANT));
|
1898
|
+
let (ref_ty, _needs_stack_map) = self.reference_type(WasmHeapType::I31);
|
1899
|
+
debug_assert_eq!(ref_ty, ir::types::I32);
|
1900
|
+
Ok(tagged)
|
1901
|
+
}
|
1902
|
+
|
1903
|
+
pub fn translate_i31_get_s(
|
1904
|
+
&mut self,
|
1905
|
+
builder: &mut FunctionBuilder,
|
1906
|
+
i31ref: ir::Value,
|
1907
|
+
) -> WasmResult<ir::Value> {
|
1908
|
+
// TODO: If we knew we have a `(ref i31)` here, instead of maybe a `(ref
|
1909
|
+
// null i31)`, we could omit the `trapz`. But plumbing that type info
|
1910
|
+
// from `wasmparser` and through to here is a bit funky.
|
1911
|
+
self.trapz(builder, i31ref, crate::TRAP_NULL_REFERENCE);
|
1912
|
+
Ok(builder.ins().sshr_imm(i31ref, 1))
|
1913
|
+
}
|
1914
|
+
|
1915
|
+
pub fn translate_i31_get_u(
|
1916
|
+
&mut self,
|
1917
|
+
builder: &mut FunctionBuilder,
|
1918
|
+
i31ref: ir::Value,
|
1919
|
+
) -> WasmResult<ir::Value> {
|
1920
|
+
// TODO: If we knew we have a `(ref i31)` here, instead of maybe a `(ref
|
1921
|
+
// null i31)`, we could omit the `trapz`. But plumbing that type info
|
1922
|
+
// from `wasmparser` and through to here is a bit funky.
|
1923
|
+
self.trapz(builder, i31ref, crate::TRAP_NULL_REFERENCE);
|
1924
|
+
Ok(builder.ins().ushr_imm(i31ref, 1))
|
1925
|
+
}
|
1926
|
+
|
1927
|
+
pub fn struct_fields_len(&mut self, struct_type_index: TypeIndex) -> WasmResult<usize> {
|
1928
|
+
let ty = self.module.types[struct_type_index];
|
1929
|
+
match &self.types[ty].composite_type.inner {
|
1930
|
+
WasmCompositeInnerType::Struct(s) => Ok(s.fields.len()),
|
1931
|
+
_ => unreachable!(),
|
1932
|
+
}
|
1933
|
+
}
|
1934
|
+
|
1935
|
+
pub fn translate_struct_new(
|
1936
|
+
&mut self,
|
1937
|
+
builder: &mut FunctionBuilder,
|
1938
|
+
struct_type_index: TypeIndex,
|
1939
|
+
fields: StructFieldsVec,
|
1940
|
+
) -> WasmResult<ir::Value> {
|
1941
|
+
gc::translate_struct_new(self, builder, struct_type_index, &fields)
|
1942
|
+
}
|
1943
|
+
|
1944
|
+
pub fn translate_struct_new_default(
|
1945
|
+
&mut self,
|
1946
|
+
builder: &mut FunctionBuilder,
|
1947
|
+
struct_type_index: TypeIndex,
|
1948
|
+
) -> WasmResult<ir::Value> {
|
1949
|
+
gc::translate_struct_new_default(self, builder, struct_type_index)
|
1950
|
+
}
|
1951
|
+
|
1952
|
+
pub fn translate_struct_get(
|
1953
|
+
&mut self,
|
1954
|
+
builder: &mut FunctionBuilder,
|
1955
|
+
struct_type_index: TypeIndex,
|
1956
|
+
field_index: u32,
|
1957
|
+
struct_ref: ir::Value,
|
1958
|
+
) -> WasmResult<ir::Value> {
|
1959
|
+
gc::translate_struct_get(self, builder, struct_type_index, field_index, struct_ref)
|
1960
|
+
}
|
1961
|
+
|
1962
|
+
pub fn translate_struct_get_s(
|
1963
|
+
&mut self,
|
1964
|
+
builder: &mut FunctionBuilder,
|
1965
|
+
struct_type_index: TypeIndex,
|
1966
|
+
field_index: u32,
|
1967
|
+
struct_ref: ir::Value,
|
1968
|
+
) -> WasmResult<ir::Value> {
|
1969
|
+
gc::translate_struct_get_s(self, builder, struct_type_index, field_index, struct_ref)
|
1970
|
+
}
|
1971
|
+
|
1972
|
+
pub fn translate_struct_get_u(
|
1973
|
+
&mut self,
|
1974
|
+
builder: &mut FunctionBuilder,
|
1975
|
+
struct_type_index: TypeIndex,
|
1976
|
+
field_index: u32,
|
1977
|
+
struct_ref: ir::Value,
|
1978
|
+
) -> WasmResult<ir::Value> {
|
1979
|
+
gc::translate_struct_get_u(self, builder, struct_type_index, field_index, struct_ref)
|
1980
|
+
}
|
1981
|
+
|
1982
|
+
pub fn translate_struct_set(
|
1983
|
+
&mut self,
|
1984
|
+
builder: &mut FunctionBuilder,
|
1985
|
+
struct_type_index: TypeIndex,
|
1986
|
+
field_index: u32,
|
1987
|
+
struct_ref: ir::Value,
|
1988
|
+
value: ir::Value,
|
1989
|
+
) -> WasmResult<()> {
|
1990
|
+
gc::translate_struct_set(
|
1991
|
+
self,
|
1992
|
+
builder,
|
1993
|
+
struct_type_index,
|
1994
|
+
field_index,
|
1995
|
+
struct_ref,
|
1996
|
+
value,
|
1997
|
+
)
|
1998
|
+
}
|
1999
|
+
|
2000
|
+
pub fn translate_array_new(
|
2001
|
+
&mut self,
|
2002
|
+
builder: &mut FunctionBuilder,
|
2003
|
+
array_type_index: TypeIndex,
|
2004
|
+
elem: ir::Value,
|
2005
|
+
len: ir::Value,
|
2006
|
+
) -> WasmResult<ir::Value> {
|
2007
|
+
gc::translate_array_new(self, builder, array_type_index, elem, len)
|
2008
|
+
}
|
2009
|
+
|
2010
|
+
pub fn translate_array_new_default(
|
2011
|
+
&mut self,
|
2012
|
+
builder: &mut FunctionBuilder,
|
2013
|
+
array_type_index: TypeIndex,
|
2014
|
+
len: ir::Value,
|
2015
|
+
) -> WasmResult<ir::Value> {
|
2016
|
+
gc::translate_array_new_default(self, builder, array_type_index, len)
|
2017
|
+
}
|
2018
|
+
|
2019
|
+
pub fn translate_array_new_fixed(
|
2020
|
+
&mut self,
|
2021
|
+
builder: &mut FunctionBuilder,
|
2022
|
+
array_type_index: TypeIndex,
|
2023
|
+
elems: &[ir::Value],
|
2024
|
+
) -> WasmResult<ir::Value> {
|
2025
|
+
gc::translate_array_new_fixed(self, builder, array_type_index, elems)
|
2026
|
+
}
|
2027
|
+
|
2028
|
+
pub fn translate_array_new_data(
|
2029
|
+
&mut self,
|
2030
|
+
builder: &mut FunctionBuilder,
|
2031
|
+
array_type_index: TypeIndex,
|
2032
|
+
data_index: DataIndex,
|
2033
|
+
data_offset: ir::Value,
|
2034
|
+
len: ir::Value,
|
2035
|
+
) -> WasmResult<ir::Value> {
|
2036
|
+
let libcall = gc::builtins::array_new_data(self, builder.func)?;
|
2037
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
2038
|
+
let interned_type_index = self.module.types[array_type_index];
|
2039
|
+
let interned_type_index = builder
|
2040
|
+
.ins()
|
2041
|
+
.iconst(I32, i64::from(interned_type_index.as_u32()));
|
2042
|
+
let data_index = builder.ins().iconst(I32, i64::from(data_index.as_u32()));
|
2043
|
+
let call_inst = builder.ins().call(
|
2044
|
+
libcall,
|
2045
|
+
&[vmctx, interned_type_index, data_index, data_offset, len],
|
2046
|
+
);
|
2047
|
+
let result = builder.func.dfg.first_result(call_inst);
|
2048
|
+
Ok(builder.ins().ireduce(ir::types::I32, result))
|
2049
|
+
}
|
2050
|
+
|
2051
|
+
pub fn translate_array_new_elem(
|
2052
|
+
&mut self,
|
2053
|
+
builder: &mut FunctionBuilder,
|
2054
|
+
array_type_index: TypeIndex,
|
2055
|
+
elem_index: ElemIndex,
|
2056
|
+
elem_offset: ir::Value,
|
2057
|
+
len: ir::Value,
|
2058
|
+
) -> WasmResult<ir::Value> {
|
2059
|
+
let libcall = gc::builtins::array_new_elem(self, builder.func)?;
|
2060
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
2061
|
+
let interned_type_index = self.module.types[array_type_index];
|
2062
|
+
let interned_type_index = builder
|
2063
|
+
.ins()
|
2064
|
+
.iconst(I32, i64::from(interned_type_index.as_u32()));
|
2065
|
+
let elem_index = builder.ins().iconst(I32, i64::from(elem_index.as_u32()));
|
2066
|
+
let call_inst = builder.ins().call(
|
2067
|
+
libcall,
|
2068
|
+
&[vmctx, interned_type_index, elem_index, elem_offset, len],
|
2069
|
+
);
|
2070
|
+
let result = builder.func.dfg.first_result(call_inst);
|
2071
|
+
Ok(builder.ins().ireduce(ir::types::I32, result))
|
2072
|
+
}
|
2073
|
+
|
2074
|
+
pub fn translate_array_copy(
|
2075
|
+
&mut self,
|
2076
|
+
builder: &mut FunctionBuilder,
|
2077
|
+
_dst_array_type_index: TypeIndex,
|
2078
|
+
dst_array: ir::Value,
|
2079
|
+
dst_index: ir::Value,
|
2080
|
+
_src_array_type_index: TypeIndex,
|
2081
|
+
src_array: ir::Value,
|
2082
|
+
src_index: ir::Value,
|
2083
|
+
len: ir::Value,
|
2084
|
+
) -> WasmResult<()> {
|
2085
|
+
let libcall = gc::builtins::array_copy(self, builder.func)?;
|
2086
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
2087
|
+
builder.ins().call(
|
2088
|
+
libcall,
|
2089
|
+
&[vmctx, dst_array, dst_index, src_array, src_index, len],
|
2090
|
+
);
|
2091
|
+
Ok(())
|
2092
|
+
}
|
2093
|
+
|
2094
|
+
pub fn translate_array_fill(
|
2095
|
+
&mut self,
|
2096
|
+
builder: &mut FunctionBuilder,
|
2097
|
+
array_type_index: TypeIndex,
|
2098
|
+
array: ir::Value,
|
2099
|
+
index: ir::Value,
|
2100
|
+
value: ir::Value,
|
2101
|
+
len: ir::Value,
|
2102
|
+
) -> WasmResult<()> {
|
2103
|
+
gc::translate_array_fill(self, builder, array_type_index, array, index, value, len)
|
2104
|
+
}
|
2105
|
+
|
2106
|
+
pub fn translate_array_init_data(
|
2107
|
+
&mut self,
|
2108
|
+
builder: &mut FunctionBuilder,
|
2109
|
+
array_type_index: TypeIndex,
|
2110
|
+
array: ir::Value,
|
2111
|
+
dst_index: ir::Value,
|
2112
|
+
data_index: DataIndex,
|
2113
|
+
data_offset: ir::Value,
|
2114
|
+
len: ir::Value,
|
2115
|
+
) -> WasmResult<()> {
|
2116
|
+
let libcall = gc::builtins::array_init_data(self, builder.func)?;
|
2117
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
2118
|
+
let interned_type_index = self.module.types[array_type_index];
|
2119
|
+
let interned_type_index = builder
|
2120
|
+
.ins()
|
2121
|
+
.iconst(I32, i64::from(interned_type_index.as_u32()));
|
2122
|
+
let data_index = builder.ins().iconst(I32, i64::from(data_index.as_u32()));
|
2123
|
+
builder.ins().call(
|
2124
|
+
libcall,
|
2125
|
+
&[
|
2126
|
+
vmctx,
|
2127
|
+
interned_type_index,
|
2128
|
+
array,
|
2129
|
+
dst_index,
|
2130
|
+
data_index,
|
2131
|
+
data_offset,
|
2132
|
+
len,
|
2133
|
+
],
|
2134
|
+
);
|
2135
|
+
Ok(())
|
2136
|
+
}
|
2137
|
+
|
2138
|
+
pub fn translate_array_init_elem(
|
2139
|
+
&mut self,
|
2140
|
+
builder: &mut FunctionBuilder,
|
2141
|
+
array_type_index: TypeIndex,
|
2142
|
+
array: ir::Value,
|
2143
|
+
dst_index: ir::Value,
|
2144
|
+
elem_index: ElemIndex,
|
2145
|
+
elem_offset: ir::Value,
|
2146
|
+
len: ir::Value,
|
2147
|
+
) -> WasmResult<()> {
|
2148
|
+
let libcall = gc::builtins::array_init_elem(self, builder.func)?;
|
2149
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
2150
|
+
let interned_type_index = self.module.types[array_type_index];
|
2151
|
+
let interned_type_index = builder
|
2152
|
+
.ins()
|
2153
|
+
.iconst(I32, i64::from(interned_type_index.as_u32()));
|
2154
|
+
let elem_index = builder.ins().iconst(I32, i64::from(elem_index.as_u32()));
|
2155
|
+
builder.ins().call(
|
2156
|
+
libcall,
|
2157
|
+
&[
|
2158
|
+
vmctx,
|
2159
|
+
interned_type_index,
|
2160
|
+
array,
|
2161
|
+
dst_index,
|
2162
|
+
elem_index,
|
2163
|
+
elem_offset,
|
2164
|
+
len,
|
2165
|
+
],
|
2166
|
+
);
|
2167
|
+
Ok(())
|
2168
|
+
}
|
2169
|
+
|
2170
|
+
pub fn translate_array_len(
|
2171
|
+
&mut self,
|
2172
|
+
builder: &mut FunctionBuilder,
|
2173
|
+
array: ir::Value,
|
2174
|
+
) -> WasmResult<ir::Value> {
|
2175
|
+
gc::translate_array_len(self, builder, array)
|
2176
|
+
}
|
2177
|
+
|
2178
|
+
pub fn translate_array_get(
|
2179
|
+
&mut self,
|
2180
|
+
builder: &mut FunctionBuilder,
|
2181
|
+
array_type_index: TypeIndex,
|
2182
|
+
array: ir::Value,
|
2183
|
+
index: ir::Value,
|
2184
|
+
) -> WasmResult<ir::Value> {
|
2185
|
+
gc::translate_array_get(self, builder, array_type_index, array, index)
|
2186
|
+
}
|
2187
|
+
|
2188
|
+
pub fn translate_array_get_s(
|
2189
|
+
&mut self,
|
2190
|
+
builder: &mut FunctionBuilder,
|
2191
|
+
array_type_index: TypeIndex,
|
2192
|
+
array: ir::Value,
|
2193
|
+
index: ir::Value,
|
2194
|
+
) -> WasmResult<ir::Value> {
|
2195
|
+
gc::translate_array_get_s(self, builder, array_type_index, array, index)
|
2196
|
+
}
|
2197
|
+
|
2198
|
+
pub fn translate_array_get_u(
|
2199
|
+
&mut self,
|
2200
|
+
builder: &mut FunctionBuilder,
|
2201
|
+
array_type_index: TypeIndex,
|
2202
|
+
array: ir::Value,
|
2203
|
+
index: ir::Value,
|
2204
|
+
) -> WasmResult<ir::Value> {
|
2205
|
+
gc::translate_array_get_u(self, builder, array_type_index, array, index)
|
2206
|
+
}
|
2207
|
+
|
2208
|
+
pub fn translate_array_set(
|
2209
|
+
&mut self,
|
2210
|
+
builder: &mut FunctionBuilder,
|
2211
|
+
array_type_index: TypeIndex,
|
2212
|
+
array: ir::Value,
|
2213
|
+
index: ir::Value,
|
2214
|
+
value: ir::Value,
|
2215
|
+
) -> WasmResult<()> {
|
2216
|
+
gc::translate_array_set(self, builder, array_type_index, array, index, value)
|
2217
|
+
}
|
2218
|
+
|
2219
|
+
pub fn translate_ref_test(
|
2220
|
+
&mut self,
|
2221
|
+
builder: &mut FunctionBuilder<'_>,
|
2222
|
+
ref_ty: WasmRefType,
|
2223
|
+
gc_ref: ir::Value,
|
2224
|
+
) -> WasmResult<ir::Value> {
|
2225
|
+
gc::translate_ref_test(self, builder, ref_ty, gc_ref)
|
2226
|
+
}
|
2227
|
+
|
2228
|
+
pub fn translate_ref_null(
|
2229
|
+
&mut self,
|
2230
|
+
mut pos: cranelift_codegen::cursor::FuncCursor,
|
2231
|
+
ht: WasmHeapType,
|
2232
|
+
) -> WasmResult<ir::Value> {
|
2233
|
+
Ok(match ht.top() {
|
2234
|
+
WasmHeapTopType::Func => pos.ins().iconst(self.pointer_type(), 0),
|
2235
|
+
// NB: null GC references don't need to be in stack maps.
|
2236
|
+
WasmHeapTopType::Any | WasmHeapTopType::Extern => pos.ins().iconst(types::I32, 0),
|
2237
|
+
})
|
2238
|
+
}
|
2239
|
+
|
2240
|
+
pub fn translate_ref_is_null(
|
2241
|
+
&mut self,
|
2242
|
+
mut pos: cranelift_codegen::cursor::FuncCursor,
|
2243
|
+
value: ir::Value,
|
2244
|
+
) -> WasmResult<ir::Value> {
|
2245
|
+
let byte_is_null =
|
2246
|
+
pos.ins()
|
2247
|
+
.icmp_imm(cranelift_codegen::ir::condcodes::IntCC::Equal, value, 0);
|
2248
|
+
Ok(pos.ins().uextend(ir::types::I32, byte_is_null))
|
2249
|
+
}
|
2250
|
+
|
2251
|
+
pub fn translate_ref_func(
|
2252
|
+
&mut self,
|
2253
|
+
mut pos: cranelift_codegen::cursor::FuncCursor<'_>,
|
2254
|
+
func_index: FuncIndex,
|
2255
|
+
) -> WasmResult<ir::Value> {
|
2256
|
+
let func_index = pos.ins().iconst(I32, func_index.as_u32() as i64);
|
2257
|
+
let ref_func = self.builtin_functions.ref_func(&mut pos.func);
|
2258
|
+
let vmctx = self.vmctx_val(&mut pos);
|
2259
|
+
|
2260
|
+
let call_inst = pos.ins().call(ref_func, &[vmctx, func_index]);
|
2261
|
+
Ok(pos.func.dfg.first_result(call_inst))
|
2262
|
+
}
|
2263
|
+
|
2264
|
+
pub fn translate_custom_global_get(
|
2265
|
+
&mut self,
|
2266
|
+
builder: &mut FunctionBuilder,
|
2267
|
+
index: GlobalIndex,
|
2268
|
+
) -> WasmResult<ir::Value> {
|
2269
|
+
let ty = self.module.globals[index].wasm_ty;
|
2270
|
+
debug_assert!(
|
2271
|
+
ty.is_vmgcref_type(),
|
2272
|
+
"We only use GlobalVariable::Custom for VMGcRef types"
|
2273
|
+
);
|
2274
|
+
let WasmValType::Ref(ty) = ty else {
|
2275
|
+
unreachable!()
|
2276
|
+
};
|
2277
|
+
|
2278
|
+
let (gv, offset) = self.get_global_location(builder.func, index);
|
2279
|
+
let gv = builder.ins().global_value(self.pointer_type(), gv);
|
2280
|
+
let src = builder.ins().iadd_imm(gv, i64::from(offset));
|
2281
|
+
|
2282
|
+
gc::gc_compiler(self)?.translate_read_gc_reference(
|
2283
|
+
self,
|
2284
|
+
builder,
|
2285
|
+
ty,
|
2286
|
+
src,
|
2287
|
+
ir::MemFlags::trusted(),
|
2288
|
+
)
|
2289
|
+
}
|
2290
|
+
|
2291
|
+
pub fn translate_custom_global_set(
|
2292
|
+
&mut self,
|
2293
|
+
builder: &mut FunctionBuilder,
|
2294
|
+
index: GlobalIndex,
|
2295
|
+
value: ir::Value,
|
2296
|
+
) -> WasmResult<()> {
|
2297
|
+
let ty = self.module.globals[index].wasm_ty;
|
2298
|
+
debug_assert!(
|
2299
|
+
ty.is_vmgcref_type(),
|
2300
|
+
"We only use GlobalVariable::Custom for VMGcRef types"
|
2301
|
+
);
|
2302
|
+
let WasmValType::Ref(ty) = ty else {
|
2303
|
+
unreachable!()
|
2304
|
+
};
|
2305
|
+
|
2306
|
+
let (gv, offset) = self.get_global_location(builder.func, index);
|
2307
|
+
let gv = builder.ins().global_value(self.pointer_type(), gv);
|
2308
|
+
let src = builder.ins().iadd_imm(gv, i64::from(offset));
|
2309
|
+
|
2310
|
+
gc::gc_compiler(self)?.translate_write_gc_reference(
|
2311
|
+
self,
|
2312
|
+
builder,
|
2313
|
+
ty,
|
2314
|
+
src,
|
2315
|
+
value,
|
2316
|
+
ir::MemFlags::trusted(),
|
2317
|
+
)
|
2318
|
+
}
|
2319
|
+
|
2320
|
+
pub fn make_heap(&mut self, func: &mut ir::Function, index: MemoryIndex) -> WasmResult<Heap> {
|
2321
|
+
let pointer_type = self.pointer_type();
|
2322
|
+
let memory = self.module.memories[index];
|
2323
|
+
let is_shared = memory.shared;
|
2324
|
+
|
2325
|
+
let (ptr, base_offset, current_length_offset, ptr_memtype) = {
|
2326
|
+
let vmctx = self.vmctx(func);
|
2327
|
+
if let Some(def_index) = self.module.defined_memory_index(index) {
|
2328
|
+
if is_shared {
|
2329
|
+
// As with imported memory, the `VMMemoryDefinition` for a
|
2330
|
+
// shared memory is stored elsewhere. We store a `*mut
|
2331
|
+
// VMMemoryDefinition` to it and dereference that when
|
2332
|
+
// atomically growing it.
|
2333
|
+
let from_offset = self.offsets.vmctx_vmmemory_pointer(def_index);
|
2334
|
+
let (memory, def_mt) = self.load_pointer_with_memtypes(
|
2335
|
+
func,
|
2336
|
+
vmctx,
|
2337
|
+
from_offset,
|
2338
|
+
true,
|
2339
|
+
self.pcc_vmctx_memtype,
|
2340
|
+
);
|
2341
|
+
let base_offset = i32::from(self.offsets.ptr.vmmemory_definition_base());
|
2342
|
+
let current_length_offset =
|
2343
|
+
i32::from(self.offsets.ptr.vmmemory_definition_current_length());
|
2344
|
+
(memory, base_offset, current_length_offset, def_mt)
|
2345
|
+
} else {
|
2346
|
+
let owned_index = self.module.owned_memory_index(def_index);
|
2347
|
+
let owned_base_offset =
|
2348
|
+
self.offsets.vmctx_vmmemory_definition_base(owned_index);
|
2349
|
+
let owned_length_offset = self
|
2350
|
+
.offsets
|
2351
|
+
.vmctx_vmmemory_definition_current_length(owned_index);
|
2352
|
+
let current_base_offset = i32::try_from(owned_base_offset).unwrap();
|
2353
|
+
let current_length_offset = i32::try_from(owned_length_offset).unwrap();
|
2354
|
+
(
|
2355
|
+
vmctx,
|
2356
|
+
current_base_offset,
|
2357
|
+
current_length_offset,
|
2358
|
+
self.pcc_vmctx_memtype,
|
2359
|
+
)
|
2360
|
+
}
|
2361
|
+
} else {
|
2362
|
+
let from_offset = self.offsets.vmctx_vmmemory_import_from(index);
|
2363
|
+
let (memory, def_mt) = self.load_pointer_with_memtypes(
|
2364
|
+
func,
|
2365
|
+
vmctx,
|
2366
|
+
from_offset,
|
2367
|
+
true,
|
2368
|
+
self.pcc_vmctx_memtype,
|
2369
|
+
);
|
2370
|
+
let base_offset = i32::from(self.offsets.ptr.vmmemory_definition_base());
|
2371
|
+
let current_length_offset =
|
2372
|
+
i32::from(self.offsets.ptr.vmmemory_definition_current_length());
|
2373
|
+
(memory, base_offset, current_length_offset, def_mt)
|
2374
|
+
}
|
2375
|
+
};
|
2376
|
+
|
2377
|
+
let heap_bound = func.create_global_value(ir::GlobalValueData::Load {
|
2378
|
+
base: ptr,
|
2379
|
+
offset: Offset32::new(current_length_offset),
|
2380
|
+
global_type: pointer_type,
|
2381
|
+
flags: MemFlags::trusted(),
|
2382
|
+
});
|
2383
|
+
|
2384
|
+
// If we have a declared maximum, we can make this a "static" heap, which is
|
2385
|
+
// allocated up front and never moved.
|
2386
|
+
let host_page_size_log2 = self.target_config().page_size_align_log2;
|
2387
|
+
let (base_fact, memory_type) = if !memory
|
2388
|
+
.can_elide_bounds_check(self.tunables, host_page_size_log2)
|
2389
|
+
{
|
2390
|
+
if let Some(ptr_memtype) = ptr_memtype {
|
2391
|
+
// Create a memtype representing the untyped memory region.
|
2392
|
+
let data_mt = func.create_memory_type(ir::MemoryTypeData::DynamicMemory {
|
2393
|
+
gv: heap_bound,
|
2394
|
+
size: self.tunables.memory_guard_size,
|
2395
|
+
});
|
2396
|
+
// This fact applies to any pointer to the start of the memory.
|
2397
|
+
let base_fact = ir::Fact::dynamic_base_ptr(data_mt);
|
2398
|
+
// This fact applies to the length.
|
2399
|
+
let length_fact = ir::Fact::global_value(
|
2400
|
+
u16::try_from(self.isa.pointer_type().bits()).unwrap(),
|
2401
|
+
heap_bound,
|
2402
|
+
);
|
2403
|
+
// Create a field in the vmctx for the base pointer.
|
2404
|
+
match &mut func.memory_types[ptr_memtype] {
|
2405
|
+
ir::MemoryTypeData::Struct { size, fields } => {
|
2406
|
+
let base_offset = u64::try_from(base_offset).unwrap();
|
2407
|
+
fields.push(ir::MemoryTypeField {
|
2408
|
+
offset: base_offset,
|
2409
|
+
ty: self.isa.pointer_type(),
|
2410
|
+
// Read-only field from the PoV of PCC checks:
|
2411
|
+
// don't allow stores to this field. (Even if
|
2412
|
+
// it is a dynamic memory whose base can
|
2413
|
+
// change, that update happens inside the
|
2414
|
+
// runtime, not in generated code.)
|
2415
|
+
readonly: true,
|
2416
|
+
fact: Some(base_fact.clone()),
|
2417
|
+
});
|
2418
|
+
let current_length_offset = u64::try_from(current_length_offset).unwrap();
|
2419
|
+
fields.push(ir::MemoryTypeField {
|
2420
|
+
offset: current_length_offset,
|
2421
|
+
ty: self.isa.pointer_type(),
|
2422
|
+
// As above, read-only; only the runtime modifies it.
|
2423
|
+
readonly: true,
|
2424
|
+
fact: Some(length_fact),
|
2425
|
+
});
|
2426
|
+
|
2427
|
+
let pointer_size = u64::from(self.isa.pointer_type().bytes());
|
2428
|
+
let fields_end = std::cmp::max(
|
2429
|
+
base_offset + pointer_size,
|
2430
|
+
current_length_offset + pointer_size,
|
2431
|
+
);
|
2432
|
+
*size = std::cmp::max(*size, fields_end);
|
2433
|
+
}
|
2434
|
+
_ => {
|
2435
|
+
panic!("Bad memtype");
|
2436
|
+
}
|
2437
|
+
}
|
2438
|
+
// Apply a fact to the base pointer.
|
2439
|
+
(Some(base_fact), Some(data_mt))
|
2440
|
+
} else {
|
2441
|
+
(None, None)
|
2442
|
+
}
|
2443
|
+
} else {
|
2444
|
+
if let Some(ptr_memtype) = ptr_memtype {
|
2445
|
+
// Create a memtype representing the untyped memory region.
|
2446
|
+
let data_mt = func.create_memory_type(ir::MemoryTypeData::Memory {
|
2447
|
+
size: self
|
2448
|
+
.tunables
|
2449
|
+
.memory_reservation
|
2450
|
+
.checked_add(self.tunables.memory_guard_size)
|
2451
|
+
.expect("Memory plan has overflowing size plus guard"),
|
2452
|
+
});
|
2453
|
+
// This fact applies to any pointer to the start of the memory.
|
2454
|
+
let base_fact = Fact::Mem {
|
2455
|
+
ty: data_mt,
|
2456
|
+
min_offset: 0,
|
2457
|
+
max_offset: 0,
|
2458
|
+
nullable: false,
|
2459
|
+
};
|
2460
|
+
// Create a field in the vmctx for the base pointer.
|
2461
|
+
match &mut func.memory_types[ptr_memtype] {
|
2462
|
+
ir::MemoryTypeData::Struct { size, fields } => {
|
2463
|
+
let offset = u64::try_from(base_offset).unwrap();
|
2464
|
+
fields.push(ir::MemoryTypeField {
|
2465
|
+
offset,
|
2466
|
+
ty: self.isa.pointer_type(),
|
2467
|
+
// Read-only field from the PoV of PCC checks:
|
2468
|
+
// don't allow stores to this field. (Even if
|
2469
|
+
// it is a dynamic memory whose base can
|
2470
|
+
// change, that update happens inside the
|
2471
|
+
// runtime, not in generated code.)
|
2472
|
+
readonly: true,
|
2473
|
+
fact: Some(base_fact.clone()),
|
2474
|
+
});
|
2475
|
+
*size = std::cmp::max(
|
2476
|
+
*size,
|
2477
|
+
offset + u64::from(self.isa.pointer_type().bytes()),
|
2478
|
+
);
|
2479
|
+
}
|
2480
|
+
_ => {
|
2481
|
+
panic!("Bad memtype");
|
2482
|
+
}
|
2483
|
+
}
|
2484
|
+
// Apply a fact to the base pointer.
|
2485
|
+
(Some(base_fact), Some(data_mt))
|
2486
|
+
} else {
|
2487
|
+
(None, None)
|
2488
|
+
}
|
2489
|
+
};
|
2490
|
+
|
2491
|
+
let mut flags = MemFlags::trusted().with_checked();
|
2492
|
+
if !memory.memory_may_move(self.tunables) {
|
2493
|
+
flags.set_readonly();
|
2494
|
+
}
|
2495
|
+
let heap_base = func.create_global_value(ir::GlobalValueData::Load {
|
2496
|
+
base: ptr,
|
2497
|
+
offset: Offset32::new(base_offset),
|
2498
|
+
global_type: pointer_type,
|
2499
|
+
flags,
|
2500
|
+
});
|
2501
|
+
func.global_value_facts[heap_base] = base_fact;
|
2502
|
+
|
2503
|
+
Ok(self.heaps.push(HeapData {
|
2504
|
+
base: heap_base,
|
2505
|
+
bound: heap_bound,
|
2506
|
+
pcc_memory_type: memory_type,
|
2507
|
+
memory,
|
2508
|
+
}))
|
2509
|
+
}
|
2510
|
+
|
2511
|
+
pub fn make_global(
|
2512
|
+
&mut self,
|
2513
|
+
func: &mut ir::Function,
|
2514
|
+
index: GlobalIndex,
|
2515
|
+
) -> WasmResult<GlobalVariable> {
|
2516
|
+
let ty = self.module.globals[index].wasm_ty;
|
2517
|
+
|
2518
|
+
if ty.is_vmgcref_type() {
|
2519
|
+
// Although reference-typed globals live at the same memory location as
|
2520
|
+
// any other type of global at the same index would, getting or
|
2521
|
+
// setting them requires ref counting barriers. Therefore, we need
|
2522
|
+
// to use `GlobalVariable::Custom`, as that is the only kind of
|
2523
|
+
// `GlobalVariable` for which translation supports custom
|
2524
|
+
// access translation.
|
2525
|
+
return Ok(GlobalVariable::Custom);
|
2526
|
+
}
|
2527
|
+
|
2528
|
+
let (gv, offset) = self.get_global_location(func, index);
|
2529
|
+
Ok(GlobalVariable::Memory {
|
2530
|
+
gv,
|
2531
|
+
offset: offset.into(),
|
2532
|
+
ty: super::value_type(self.isa, ty),
|
2533
|
+
})
|
2534
|
+
}
|
2535
|
+
|
2536
|
+
pub fn make_indirect_sig(
|
2537
|
+
&mut self,
|
2538
|
+
func: &mut ir::Function,
|
2539
|
+
index: TypeIndex,
|
2540
|
+
) -> WasmResult<ir::SigRef> {
|
2541
|
+
let interned_index = self.module.types[index];
|
2542
|
+
let wasm_func_ty = self.types[interned_index].unwrap_func();
|
2543
|
+
let sig = crate::wasm_call_signature(self.isa, wasm_func_ty, &self.tunables);
|
2544
|
+
let sig_ref = func.import_signature(sig);
|
2545
|
+
self.sig_ref_to_ty[sig_ref] = Some(wasm_func_ty);
|
2546
|
+
Ok(sig_ref)
|
2547
|
+
}
|
2548
|
+
|
2549
|
+
pub fn make_direct_func(
|
2550
|
+
&mut self,
|
2551
|
+
func: &mut ir::Function,
|
2552
|
+
index: FuncIndex,
|
2553
|
+
) -> WasmResult<ir::FuncRef> {
|
2554
|
+
let sig = self.module.functions[index].signature;
|
2555
|
+
let wasm_func_ty = self.types[sig].unwrap_func();
|
2556
|
+
let sig = crate::wasm_call_signature(self.isa, wasm_func_ty, &self.tunables);
|
2557
|
+
let signature = func.import_signature(sig);
|
2558
|
+
self.sig_ref_to_ty[signature] = Some(wasm_func_ty);
|
2559
|
+
let name =
|
2560
|
+
ir::ExternalName::User(func.declare_imported_user_function(ir::UserExternalName {
|
2561
|
+
namespace: crate::NS_WASM_FUNC,
|
2562
|
+
index: index.as_u32(),
|
2563
|
+
}));
|
2564
|
+
Ok(func.import_function(ir::ExtFuncData {
|
2565
|
+
name,
|
2566
|
+
signature,
|
2567
|
+
|
2568
|
+
// the value of this flag determines the codegen for calls to this
|
2569
|
+
// function. if this flag is `false` then absolute relocations will
|
2570
|
+
// be generated for references to the function, which requires
|
2571
|
+
// load-time relocation resolution. if this flag is set to `true`
|
2572
|
+
// then relative relocations are emitted which can be resolved at
|
2573
|
+
// object-link-time, just after all functions are compiled.
|
2574
|
+
//
|
2575
|
+
// this flag is set to `true` for functions defined in the object
|
2576
|
+
// we'll be defining in this compilation unit, or everything local
|
2577
|
+
// to the wasm module. this means that between functions in a wasm
|
2578
|
+
// module there's relative calls encoded. all calls external to a
|
2579
|
+
// wasm module (e.g. imports or libcalls) are either encoded through
|
2580
|
+
// the `vmcontext` as relative jumps (hence no relocations) or
|
2581
|
+
// they're libcalls with absolute relocations.
|
2582
|
+
colocated: self.module.defined_func_index(index).is_some(),
|
2583
|
+
}))
|
2584
|
+
}
|
2585
|
+
|
2586
|
+
pub fn translate_call_indirect(
|
2587
|
+
&mut self,
|
2588
|
+
builder: &mut FunctionBuilder,
|
2589
|
+
features: &WasmFeatures,
|
2590
|
+
table_index: TableIndex,
|
2591
|
+
ty_index: TypeIndex,
|
2592
|
+
sig_ref: ir::SigRef,
|
2593
|
+
callee: ir::Value,
|
2594
|
+
call_args: &[ir::Value],
|
2595
|
+
) -> WasmResult<Option<ir::Inst>> {
|
2596
|
+
Call::new(builder, self).indirect_call(
|
2597
|
+
features,
|
2598
|
+
table_index,
|
2599
|
+
ty_index,
|
2600
|
+
sig_ref,
|
2601
|
+
callee,
|
2602
|
+
call_args,
|
2603
|
+
)
|
2604
|
+
}
|
2605
|
+
|
2606
|
+
pub fn translate_call(
|
2607
|
+
&mut self,
|
2608
|
+
builder: &mut FunctionBuilder,
|
2609
|
+
callee_index: FuncIndex,
|
2610
|
+
callee: ir::FuncRef,
|
2611
|
+
call_args: &[ir::Value],
|
2612
|
+
) -> WasmResult<ir::Inst> {
|
2613
|
+
Call::new(builder, self).direct_call(callee_index, callee, call_args)
|
2614
|
+
}
|
2615
|
+
|
2616
|
+
pub fn translate_call_ref(
|
2617
|
+
&mut self,
|
2618
|
+
builder: &mut FunctionBuilder,
|
2619
|
+
sig_ref: ir::SigRef,
|
2620
|
+
callee: ir::Value,
|
2621
|
+
call_args: &[ir::Value],
|
2622
|
+
) -> WasmResult<ir::Inst> {
|
2623
|
+
Call::new(builder, self).call_ref(sig_ref, callee, call_args)
|
2624
|
+
}
|
2625
|
+
|
2626
|
+
pub fn translate_return_call(
|
2627
|
+
&mut self,
|
2628
|
+
builder: &mut FunctionBuilder,
|
2629
|
+
callee_index: FuncIndex,
|
2630
|
+
callee: ir::FuncRef,
|
2631
|
+
call_args: &[ir::Value],
|
2632
|
+
) -> WasmResult<()> {
|
2633
|
+
Call::new_tail(builder, self).direct_call(callee_index, callee, call_args)?;
|
2634
|
+
Ok(())
|
2635
|
+
}
|
2636
|
+
|
2637
|
+
pub fn translate_return_call_indirect(
|
2638
|
+
&mut self,
|
2639
|
+
builder: &mut FunctionBuilder,
|
2640
|
+
features: &WasmFeatures,
|
2641
|
+
table_index: TableIndex,
|
2642
|
+
ty_index: TypeIndex,
|
2643
|
+
sig_ref: ir::SigRef,
|
2644
|
+
callee: ir::Value,
|
2645
|
+
call_args: &[ir::Value],
|
2646
|
+
) -> WasmResult<()> {
|
2647
|
+
Call::new_tail(builder, self).indirect_call(
|
2648
|
+
features,
|
2649
|
+
table_index,
|
2650
|
+
ty_index,
|
2651
|
+
sig_ref,
|
2652
|
+
callee,
|
2653
|
+
call_args,
|
2654
|
+
)?;
|
2655
|
+
Ok(())
|
2656
|
+
}
|
2657
|
+
|
2658
|
+
pub fn translate_return_call_ref(
|
2659
|
+
&mut self,
|
2660
|
+
builder: &mut FunctionBuilder,
|
2661
|
+
sig_ref: ir::SigRef,
|
2662
|
+
callee: ir::Value,
|
2663
|
+
call_args: &[ir::Value],
|
2664
|
+
) -> WasmResult<()> {
|
2665
|
+
Call::new_tail(builder, self).call_ref(sig_ref, callee, call_args)?;
|
2666
|
+
Ok(())
|
2667
|
+
}
|
2668
|
+
|
2669
|
+
pub fn translate_memory_grow(
|
2670
|
+
&mut self,
|
2671
|
+
builder: &mut FunctionBuilder<'_>,
|
2672
|
+
index: MemoryIndex,
|
2673
|
+
_heap: Heap,
|
2674
|
+
val: ir::Value,
|
2675
|
+
) -> WasmResult<ir::Value> {
|
2676
|
+
let mut pos = builder.cursor();
|
2677
|
+
let memory_grow = self.builtin_functions.memory32_grow(&mut pos.func);
|
2678
|
+
let index_arg = index.index();
|
2679
|
+
|
2680
|
+
let memory_index = pos.ins().iconst(I32, index_arg as i64);
|
2681
|
+
let vmctx = self.vmctx_val(&mut pos);
|
2682
|
+
|
2683
|
+
let index_type = self.memory(index).idx_type;
|
2684
|
+
let val = self.cast_index_to_i64(&mut pos, val, index_type);
|
2685
|
+
let call_inst = pos.ins().call(memory_grow, &[vmctx, val, memory_index]);
|
2686
|
+
let result = *pos.func.dfg.inst_results(call_inst).first().unwrap();
|
2687
|
+
let single_byte_pages = match self.memory(index).page_size_log2 {
|
2688
|
+
16 => false,
|
2689
|
+
0 => true,
|
2690
|
+
_ => unreachable!("only page sizes 2**0 and 2**16 are currently valid"),
|
2691
|
+
};
|
2692
|
+
Ok(self.convert_pointer_to_index_type(
|
2693
|
+
builder.cursor(),
|
2694
|
+
result,
|
2695
|
+
index_type,
|
2696
|
+
single_byte_pages,
|
2697
|
+
))
|
2698
|
+
}
|
2699
|
+
|
2700
|
+
pub fn translate_memory_size(
|
2701
|
+
&mut self,
|
2702
|
+
mut pos: FuncCursor<'_>,
|
2703
|
+
index: MemoryIndex,
|
2704
|
+
_heap: Heap,
|
2705
|
+
) -> WasmResult<ir::Value> {
|
2706
|
+
let pointer_type = self.pointer_type();
|
2707
|
+
let vmctx = self.vmctx(&mut pos.func);
|
2708
|
+
let is_shared = self.module.memories[index].shared;
|
2709
|
+
let base = pos.ins().global_value(pointer_type, vmctx);
|
2710
|
+
let current_length_in_bytes = match self.module.defined_memory_index(index) {
|
2711
|
+
Some(def_index) => {
|
2712
|
+
if is_shared {
|
2713
|
+
let offset =
|
2714
|
+
i32::try_from(self.offsets.vmctx_vmmemory_pointer(def_index)).unwrap();
|
2715
|
+
let vmmemory_ptr =
|
2716
|
+
pos.ins()
|
2717
|
+
.load(pointer_type, ir::MemFlags::trusted(), base, offset);
|
2718
|
+
let vmmemory_definition_offset =
|
2719
|
+
i64::from(self.offsets.ptr.vmmemory_definition_current_length());
|
2720
|
+
let vmmemory_definition_ptr =
|
2721
|
+
pos.ins().iadd_imm(vmmemory_ptr, vmmemory_definition_offset);
|
2722
|
+
// This atomic access of the
|
2723
|
+
// `VMMemoryDefinition::current_length` is direct; no bounds
|
2724
|
+
// check is needed. This is possible because shared memory
|
2725
|
+
// has a static size (the maximum is always known). Shared
|
2726
|
+
// memory is thus built with a static memory plan and no
|
2727
|
+
// bounds-checked version of this is implemented.
|
2728
|
+
pos.ins().atomic_load(
|
2729
|
+
pointer_type,
|
2730
|
+
ir::MemFlags::trusted(),
|
2731
|
+
vmmemory_definition_ptr,
|
2732
|
+
)
|
2733
|
+
} else {
|
2734
|
+
let owned_index = self.module.owned_memory_index(def_index);
|
2735
|
+
let offset = i32::try_from(
|
2736
|
+
self.offsets
|
2737
|
+
.vmctx_vmmemory_definition_current_length(owned_index),
|
2738
|
+
)
|
2739
|
+
.unwrap();
|
2740
|
+
pos.ins()
|
2741
|
+
.load(pointer_type, ir::MemFlags::trusted(), base, offset)
|
2742
|
+
}
|
2743
|
+
}
|
2744
|
+
None => {
|
2745
|
+
let offset = i32::try_from(self.offsets.vmctx_vmmemory_import_from(index)).unwrap();
|
2746
|
+
let vmmemory_ptr =
|
2747
|
+
pos.ins()
|
2748
|
+
.load(pointer_type, ir::MemFlags::trusted(), base, offset);
|
2749
|
+
if is_shared {
|
2750
|
+
let vmmemory_definition_offset =
|
2751
|
+
i64::from(self.offsets.ptr.vmmemory_definition_current_length());
|
2752
|
+
let vmmemory_definition_ptr =
|
2753
|
+
pos.ins().iadd_imm(vmmemory_ptr, vmmemory_definition_offset);
|
2754
|
+
pos.ins().atomic_load(
|
2755
|
+
pointer_type,
|
2756
|
+
ir::MemFlags::trusted(),
|
2757
|
+
vmmemory_definition_ptr,
|
2758
|
+
)
|
2759
|
+
} else {
|
2760
|
+
pos.ins().load(
|
2761
|
+
pointer_type,
|
2762
|
+
ir::MemFlags::trusted(),
|
2763
|
+
vmmemory_ptr,
|
2764
|
+
i32::from(self.offsets.ptr.vmmemory_definition_current_length()),
|
2765
|
+
)
|
2766
|
+
}
|
2767
|
+
}
|
2768
|
+
};
|
2769
|
+
|
2770
|
+
let page_size_log2 = i64::from(self.module.memories[index].page_size_log2);
|
2771
|
+
let current_length_in_pages = pos.ins().ushr_imm(current_length_in_bytes, page_size_log2);
|
2772
|
+
let single_byte_pages = match page_size_log2 {
|
2773
|
+
16 => false,
|
2774
|
+
0 => true,
|
2775
|
+
_ => unreachable!("only page sizes 2**0 and 2**16 are currently valid"),
|
2776
|
+
};
|
2777
|
+
Ok(self.convert_pointer_to_index_type(
|
2778
|
+
pos,
|
2779
|
+
current_length_in_pages,
|
2780
|
+
self.memory(index).idx_type,
|
2781
|
+
single_byte_pages,
|
2782
|
+
))
|
2783
|
+
}
|
2784
|
+
|
2785
|
+
pub fn translate_memory_copy(
|
2786
|
+
&mut self,
|
2787
|
+
builder: &mut FunctionBuilder<'_>,
|
2788
|
+
src_index: MemoryIndex,
|
2789
|
+
_src_heap: Heap,
|
2790
|
+
dst_index: MemoryIndex,
|
2791
|
+
_dst_heap: Heap,
|
2792
|
+
dst: ir::Value,
|
2793
|
+
src: ir::Value,
|
2794
|
+
len: ir::Value,
|
2795
|
+
) -> WasmResult<()> {
|
2796
|
+
let mut pos = builder.cursor();
|
2797
|
+
let vmctx = self.vmctx_val(&mut pos);
|
2798
|
+
|
2799
|
+
let memory_copy = self.builtin_functions.memory_copy(&mut pos.func);
|
2800
|
+
let dst = self.cast_index_to_i64(&mut pos, dst, self.memory(dst_index).idx_type);
|
2801
|
+
let src = self.cast_index_to_i64(&mut pos, src, self.memory(src_index).idx_type);
|
2802
|
+
// The length is 32-bit if either memory is 32-bit, but if they're both
|
2803
|
+
// 64-bit then it's 64-bit. Our intrinsic takes a 64-bit length for
|
2804
|
+
// compatibility across all memories, so make sure that it's cast
|
2805
|
+
// correctly here (this is a bit special so no generic helper unlike for
|
2806
|
+
// `dst`/`src` above)
|
2807
|
+
let len = if index_type_to_ir_type(self.memory(dst_index).idx_type) == I64
|
2808
|
+
&& index_type_to_ir_type(self.memory(src_index).idx_type) == I64
|
2809
|
+
{
|
2810
|
+
len
|
2811
|
+
} else {
|
2812
|
+
pos.ins().uextend(I64, len)
|
2813
|
+
};
|
2814
|
+
let src_index = pos.ins().iconst(I32, i64::from(src_index.as_u32()));
|
2815
|
+
let dst_index = pos.ins().iconst(I32, i64::from(dst_index.as_u32()));
|
2816
|
+
pos.ins()
|
2817
|
+
.call(memory_copy, &[vmctx, dst_index, dst, src_index, src, len]);
|
2818
|
+
|
2819
|
+
Ok(())
|
2820
|
+
}
|
2821
|
+
|
2822
|
+
pub fn translate_memory_fill(
|
2823
|
+
&mut self,
|
2824
|
+
builder: &mut FunctionBuilder<'_>,
|
2825
|
+
memory_index: MemoryIndex,
|
2826
|
+
_heap: Heap,
|
2827
|
+
dst: ir::Value,
|
2828
|
+
val: ir::Value,
|
2829
|
+
len: ir::Value,
|
2830
|
+
) -> WasmResult<()> {
|
2831
|
+
let mut pos = builder.cursor();
|
2832
|
+
let memory_fill = self.builtin_functions.memory_fill(&mut pos.func);
|
2833
|
+
let dst = self.cast_index_to_i64(&mut pos, dst, self.memory(memory_index).idx_type);
|
2834
|
+
let len = self.cast_index_to_i64(&mut pos, len, self.memory(memory_index).idx_type);
|
2835
|
+
let memory_index_arg = pos.ins().iconst(I32, i64::from(memory_index.as_u32()));
|
2836
|
+
|
2837
|
+
let vmctx = self.vmctx_val(&mut pos);
|
2838
|
+
|
2839
|
+
pos.ins()
|
2840
|
+
.call(memory_fill, &[vmctx, memory_index_arg, dst, val, len]);
|
2841
|
+
|
2842
|
+
Ok(())
|
2843
|
+
}
|
2844
|
+
|
2845
|
+
pub fn translate_memory_init(
|
2846
|
+
&mut self,
|
2847
|
+
builder: &mut FunctionBuilder<'_>,
|
2848
|
+
memory_index: MemoryIndex,
|
2849
|
+
_heap: Heap,
|
2850
|
+
seg_index: u32,
|
2851
|
+
dst: ir::Value,
|
2852
|
+
src: ir::Value,
|
2853
|
+
len: ir::Value,
|
2854
|
+
) -> WasmResult<()> {
|
2855
|
+
let mut pos = builder.cursor();
|
2856
|
+
let memory_init = self.builtin_functions.memory_init(&mut pos.func);
|
2857
|
+
|
2858
|
+
let memory_index_arg = pos.ins().iconst(I32, memory_index.index() as i64);
|
2859
|
+
let seg_index_arg = pos.ins().iconst(I32, seg_index as i64);
|
2860
|
+
|
2861
|
+
let vmctx = self.vmctx_val(&mut pos);
|
2862
|
+
|
2863
|
+
let dst = self.cast_index_to_i64(&mut pos, dst, self.memory(memory_index).idx_type);
|
2864
|
+
|
2865
|
+
pos.ins().call(
|
2866
|
+
memory_init,
|
2867
|
+
&[vmctx, memory_index_arg, seg_index_arg, dst, src, len],
|
2868
|
+
);
|
2869
|
+
|
2870
|
+
Ok(())
|
2871
|
+
}
|
2872
|
+
|
2873
|
+
pub fn translate_data_drop(&mut self, mut pos: FuncCursor, seg_index: u32) -> WasmResult<()> {
|
2874
|
+
let data_drop = self.builtin_functions.data_drop(&mut pos.func);
|
2875
|
+
let seg_index_arg = pos.ins().iconst(I32, seg_index as i64);
|
2876
|
+
let vmctx = self.vmctx_val(&mut pos);
|
2877
|
+
pos.ins().call(data_drop, &[vmctx, seg_index_arg]);
|
2878
|
+
Ok(())
|
2879
|
+
}
|
2880
|
+
|
2881
|
+
pub fn translate_table_size(
|
2882
|
+
&mut self,
|
2883
|
+
pos: FuncCursor,
|
2884
|
+
table_index: TableIndex,
|
2885
|
+
) -> WasmResult<ir::Value> {
|
2886
|
+
self.ensure_table_exists(pos.func, table_index);
|
2887
|
+
let table_data = self.tables[table_index].as_ref().unwrap();
|
2888
|
+
let index_type = index_type_to_ir_type(self.table(table_index).idx_type);
|
2889
|
+
Ok(table_data.bound.bound(&*self.isa, pos, index_type))
|
2890
|
+
}
|
2891
|
+
|
2892
|
+
pub fn translate_table_copy(
|
2893
|
+
&mut self,
|
2894
|
+
builder: &mut FunctionBuilder<'_>,
|
2895
|
+
dst_table_index: TableIndex,
|
2896
|
+
src_table_index: TableIndex,
|
2897
|
+
dst: ir::Value,
|
2898
|
+
src: ir::Value,
|
2899
|
+
len: ir::Value,
|
2900
|
+
) -> WasmResult<()> {
|
2901
|
+
let (table_copy, dst_table_index_arg, src_table_index_arg) =
|
2902
|
+
self.get_table_copy_func(&mut builder.func, dst_table_index, src_table_index);
|
2903
|
+
|
2904
|
+
let mut pos = builder.cursor();
|
2905
|
+
let dst = self.cast_index_to_i64(&mut pos, dst, self.table(dst_table_index).idx_type);
|
2906
|
+
let src = self.cast_index_to_i64(&mut pos, src, self.table(src_table_index).idx_type);
|
2907
|
+
let len = if index_type_to_ir_type(self.table(dst_table_index).idx_type) == I64
|
2908
|
+
&& index_type_to_ir_type(self.table(src_table_index).idx_type) == I64
|
2909
|
+
{
|
2910
|
+
len
|
2911
|
+
} else {
|
2912
|
+
pos.ins().uextend(I64, len)
|
2913
|
+
};
|
2914
|
+
let dst_table_index_arg = pos.ins().iconst(I32, dst_table_index_arg as i64);
|
2915
|
+
let src_table_index_arg = pos.ins().iconst(I32, src_table_index_arg as i64);
|
2916
|
+
let vmctx = self.vmctx_val(&mut pos);
|
2917
|
+
pos.ins().call(
|
2918
|
+
table_copy,
|
2919
|
+
&[
|
2920
|
+
vmctx,
|
2921
|
+
dst_table_index_arg,
|
2922
|
+
src_table_index_arg,
|
2923
|
+
dst,
|
2924
|
+
src,
|
2925
|
+
len,
|
2926
|
+
],
|
2927
|
+
);
|
2928
|
+
|
2929
|
+
Ok(())
|
2930
|
+
}
|
2931
|
+
|
2932
|
+
pub fn translate_table_init(
|
2933
|
+
&mut self,
|
2934
|
+
builder: &mut FunctionBuilder<'_>,
|
2935
|
+
seg_index: u32,
|
2936
|
+
table_index: TableIndex,
|
2937
|
+
dst: ir::Value,
|
2938
|
+
src: ir::Value,
|
2939
|
+
len: ir::Value,
|
2940
|
+
) -> WasmResult<()> {
|
2941
|
+
let mut pos = builder.cursor();
|
2942
|
+
let table_init = self.builtin_functions.table_init(&mut pos.func);
|
2943
|
+
let table_index_arg = pos.ins().iconst(I32, i64::from(table_index.as_u32()));
|
2944
|
+
let seg_index_arg = pos.ins().iconst(I32, i64::from(seg_index));
|
2945
|
+
let vmctx = self.vmctx_val(&mut pos);
|
2946
|
+
let index_type = self.table(table_index).idx_type;
|
2947
|
+
let dst = self.cast_index_to_i64(&mut pos, dst, index_type);
|
2948
|
+
let src = pos.ins().uextend(I64, src);
|
2949
|
+
let len = pos.ins().uextend(I64, len);
|
2950
|
+
|
2951
|
+
pos.ins().call(
|
2952
|
+
table_init,
|
2953
|
+
&[vmctx, table_index_arg, seg_index_arg, dst, src, len],
|
2954
|
+
);
|
2955
|
+
|
2956
|
+
Ok(())
|
2957
|
+
}
|
2958
|
+
|
2959
|
+
pub fn translate_elem_drop(&mut self, mut pos: FuncCursor, elem_index: u32) -> WasmResult<()> {
|
2960
|
+
let elem_drop = self.builtin_functions.elem_drop(&mut pos.func);
|
2961
|
+
let elem_index_arg = pos.ins().iconst(I32, elem_index as i64);
|
2962
|
+
let vmctx = self.vmctx_val(&mut pos);
|
2963
|
+
pos.ins().call(elem_drop, &[vmctx, elem_index_arg]);
|
2964
|
+
Ok(())
|
2965
|
+
}
|
2966
|
+
|
2967
|
+
pub fn translate_atomic_wait(
|
2968
|
+
&mut self,
|
2969
|
+
builder: &mut FunctionBuilder<'_>,
|
2970
|
+
memory_index: MemoryIndex,
|
2971
|
+
_heap: Heap,
|
2972
|
+
addr: ir::Value,
|
2973
|
+
expected: ir::Value,
|
2974
|
+
timeout: ir::Value,
|
2975
|
+
) -> WasmResult<ir::Value> {
|
2976
|
+
#[cfg(feature = "threads")]
|
2977
|
+
{
|
2978
|
+
let mut pos = builder.cursor();
|
2979
|
+
let addr = self.cast_index_to_i64(&mut pos, addr, self.memory(memory_index).idx_type);
|
2980
|
+
let implied_ty = pos.func.dfg.value_type(expected);
|
2981
|
+
let (wait_func, memory_index) =
|
2982
|
+
self.get_memory_atomic_wait(&mut pos.func, memory_index, implied_ty);
|
2983
|
+
|
2984
|
+
let memory_index_arg = pos.ins().iconst(I32, memory_index as i64);
|
2985
|
+
|
2986
|
+
let vmctx = self.vmctx_val(&mut pos);
|
2987
|
+
|
2988
|
+
let call_inst = pos.ins().call(
|
2989
|
+
wait_func,
|
2990
|
+
&[vmctx, memory_index_arg, addr, expected, timeout],
|
2991
|
+
);
|
2992
|
+
let ret = pos.func.dfg.inst_results(call_inst)[0];
|
2993
|
+
Ok(builder.ins().ireduce(ir::types::I32, ret))
|
2994
|
+
}
|
2995
|
+
#[cfg(not(feature = "threads"))]
|
2996
|
+
{
|
2997
|
+
let _ = (builder, memory_index, addr, expected, timeout);
|
2998
|
+
Err(wasmtime_environ::WasmError::Unsupported(
|
2999
|
+
"threads support disabled at compile time".to_string(),
|
3000
|
+
))
|
3001
|
+
}
|
3002
|
+
}
|
3003
|
+
|
3004
|
+
pub fn translate_atomic_notify(
|
3005
|
+
&mut self,
|
3006
|
+
builder: &mut FunctionBuilder<'_>,
|
3007
|
+
memory_index: MemoryIndex,
|
3008
|
+
_heap: Heap,
|
3009
|
+
addr: ir::Value,
|
3010
|
+
count: ir::Value,
|
3011
|
+
) -> WasmResult<ir::Value> {
|
3012
|
+
#[cfg(feature = "threads")]
|
3013
|
+
{
|
3014
|
+
let mut pos = builder.cursor();
|
3015
|
+
let addr = self.cast_index_to_i64(&mut pos, addr, self.memory(memory_index).idx_type);
|
3016
|
+
let atomic_notify = self.builtin_functions.memory_atomic_notify(&mut pos.func);
|
3017
|
+
|
3018
|
+
let memory_index_arg = pos.ins().iconst(I32, memory_index.index() as i64);
|
3019
|
+
let vmctx = self.vmctx_val(&mut pos);
|
3020
|
+
let call_inst = pos
|
3021
|
+
.ins()
|
3022
|
+
.call(atomic_notify, &[vmctx, memory_index_arg, addr, count]);
|
3023
|
+
let ret = pos.func.dfg.inst_results(call_inst)[0];
|
3024
|
+
Ok(builder.ins().ireduce(ir::types::I32, ret))
|
3025
|
+
}
|
3026
|
+
#[cfg(not(feature = "threads"))]
|
3027
|
+
{
|
3028
|
+
let _ = (builder, memory_index, addr, count);
|
3029
|
+
Err(wasmtime_environ::WasmError::Unsupported(
|
3030
|
+
"threads support disabled at compile time".to_string(),
|
3031
|
+
))
|
3032
|
+
}
|
3033
|
+
}
|
3034
|
+
|
3035
|
+
pub fn translate_loop_header(&mut self, builder: &mut FunctionBuilder) -> WasmResult<()> {
|
3036
|
+
// Additionally if enabled check how much fuel we have remaining to see
|
3037
|
+
// if we've run out by this point.
|
3038
|
+
if self.tunables.consume_fuel {
|
3039
|
+
self.fuel_check(builder);
|
3040
|
+
}
|
3041
|
+
|
3042
|
+
// If we are performing epoch-based interruption, check to see
|
3043
|
+
// if the epoch counter has changed.
|
3044
|
+
if self.tunables.epoch_interruption {
|
3045
|
+
self.epoch_check(builder);
|
3046
|
+
}
|
3047
|
+
|
3048
|
+
Ok(())
|
3049
|
+
}
|
3050
|
+
|
3051
|
+
pub fn before_translate_operator(
|
3052
|
+
&mut self,
|
3053
|
+
op: &Operator,
|
3054
|
+
builder: &mut FunctionBuilder,
|
3055
|
+
state: &FuncTranslationState,
|
3056
|
+
) -> WasmResult<()> {
|
3057
|
+
if self.tunables.consume_fuel {
|
3058
|
+
self.fuel_before_op(op, builder, state.reachable());
|
3059
|
+
}
|
3060
|
+
Ok(())
|
3061
|
+
}
|
3062
|
+
|
3063
|
+
pub fn after_translate_operator(
|
3064
|
+
&mut self,
|
3065
|
+
op: &Operator,
|
3066
|
+
builder: &mut FunctionBuilder,
|
3067
|
+
state: &FuncTranslationState,
|
3068
|
+
) -> WasmResult<()> {
|
3069
|
+
if self.tunables.consume_fuel && state.reachable() {
|
3070
|
+
self.fuel_after_op(op, builder);
|
3071
|
+
}
|
3072
|
+
Ok(())
|
3073
|
+
}
|
3074
|
+
|
3075
|
+
pub fn before_unconditionally_trapping_memory_access(
|
3076
|
+
&mut self,
|
3077
|
+
builder: &mut FunctionBuilder,
|
3078
|
+
) -> WasmResult<()> {
|
3079
|
+
if self.tunables.consume_fuel {
|
3080
|
+
self.fuel_increment_var(builder);
|
3081
|
+
self.fuel_save_from_var(builder);
|
3082
|
+
}
|
3083
|
+
Ok(())
|
3084
|
+
}
|
3085
|
+
|
3086
|
+
pub fn before_translate_function(
|
3087
|
+
&mut self,
|
3088
|
+
builder: &mut FunctionBuilder,
|
3089
|
+
_state: &FuncTranslationState,
|
3090
|
+
) -> WasmResult<()> {
|
3091
|
+
// If an explicit stack limit is requested, emit one here at the start
|
3092
|
+
// of the function.
|
3093
|
+
if let Some(gv) = self.stack_limit_at_function_entry {
|
3094
|
+
let limit = builder.ins().global_value(self.pointer_type(), gv);
|
3095
|
+
let sp = builder.ins().get_stack_pointer(self.pointer_type());
|
3096
|
+
let overflow = builder.ins().icmp(IntCC::UnsignedLessThan, sp, limit);
|
3097
|
+
self.conditionally_trap(builder, overflow, ir::TrapCode::STACK_OVERFLOW);
|
3098
|
+
}
|
3099
|
+
|
3100
|
+
// If the `vmruntime_limits_ptr` variable will get used then we initialize
|
3101
|
+
// it here.
|
3102
|
+
if self.tunables.consume_fuel || self.tunables.epoch_interruption {
|
3103
|
+
self.declare_vmruntime_limits_ptr(builder);
|
3104
|
+
}
|
3105
|
+
// Additionally we initialize `fuel_var` if it will get used.
|
3106
|
+
if self.tunables.consume_fuel {
|
3107
|
+
self.fuel_function_entry(builder);
|
3108
|
+
}
|
3109
|
+
// Initialize `epoch_var` with the current epoch.
|
3110
|
+
if self.tunables.epoch_interruption {
|
3111
|
+
self.epoch_function_entry(builder);
|
3112
|
+
}
|
3113
|
+
|
3114
|
+
#[cfg(feature = "wmemcheck")]
|
3115
|
+
if self.compiler.wmemcheck {
|
3116
|
+
let func_name = self.current_func_name(builder);
|
3117
|
+
if func_name == Some("malloc") {
|
3118
|
+
self.check_malloc_start(builder);
|
3119
|
+
} else if func_name == Some("free") {
|
3120
|
+
self.check_free_start(builder);
|
3121
|
+
}
|
3122
|
+
}
|
3123
|
+
|
3124
|
+
Ok(())
|
3125
|
+
}
|
3126
|
+
|
3127
|
+
pub fn after_translate_function(
|
3128
|
+
&mut self,
|
3129
|
+
builder: &mut FunctionBuilder,
|
3130
|
+
state: &FuncTranslationState,
|
3131
|
+
) -> WasmResult<()> {
|
3132
|
+
if self.tunables.consume_fuel && state.reachable() {
|
3133
|
+
self.fuel_function_exit(builder);
|
3134
|
+
}
|
3135
|
+
Ok(())
|
3136
|
+
}
|
3137
|
+
|
3138
|
+
pub fn relaxed_simd_deterministic(&self) -> bool {
|
3139
|
+
self.tunables.relaxed_simd_deterministic
|
3140
|
+
}
|
3141
|
+
|
3142
|
+
pub fn has_native_fma(&self) -> bool {
|
3143
|
+
self.isa.has_native_fma()
|
3144
|
+
}
|
3145
|
+
|
3146
|
+
pub fn is_x86(&self) -> bool {
|
3147
|
+
self.isa.triple().architecture == target_lexicon::Architecture::X86_64
|
3148
|
+
}
|
3149
|
+
|
3150
|
+
pub fn use_x86_blendv_for_relaxed_laneselect(&self, ty: Type) -> bool {
|
3151
|
+
self.isa.has_x86_blendv_lowering(ty)
|
3152
|
+
}
|
3153
|
+
|
3154
|
+
pub fn use_x86_pshufb_for_relaxed_swizzle(&self) -> bool {
|
3155
|
+
self.isa.has_x86_pshufb_lowering()
|
3156
|
+
}
|
3157
|
+
|
3158
|
+
pub fn use_x86_pmulhrsw_for_relaxed_q15mul(&self) -> bool {
|
3159
|
+
self.isa.has_x86_pmulhrsw_lowering()
|
3160
|
+
}
|
3161
|
+
|
3162
|
+
pub fn use_x86_pmaddubsw_for_dot(&self) -> bool {
|
3163
|
+
self.isa.has_x86_pmaddubsw_lowering()
|
3164
|
+
}
|
3165
|
+
|
3166
|
+
pub fn handle_before_return(&mut self, retvals: &[ir::Value], builder: &mut FunctionBuilder) {
|
3167
|
+
#[cfg(feature = "wmemcheck")]
|
3168
|
+
if self.compiler.wmemcheck {
|
3169
|
+
let func_name = self.current_func_name(builder);
|
3170
|
+
if func_name == Some("malloc") {
|
3171
|
+
self.hook_malloc_exit(builder, retvals);
|
3172
|
+
} else if func_name == Some("free") {
|
3173
|
+
self.hook_free_exit(builder);
|
3174
|
+
}
|
3175
|
+
}
|
3176
|
+
#[cfg(not(feature = "wmemcheck"))]
|
3177
|
+
let _ = (retvals, builder);
|
3178
|
+
}
|
3179
|
+
|
3180
|
+
pub fn before_load(
|
3181
|
+
&mut self,
|
3182
|
+
builder: &mut FunctionBuilder,
|
3183
|
+
val_size: u8,
|
3184
|
+
addr: ir::Value,
|
3185
|
+
offset: u64,
|
3186
|
+
) {
|
3187
|
+
#[cfg(feature = "wmemcheck")]
|
3188
|
+
if self.compiler.wmemcheck {
|
3189
|
+
let check_load = self.builtin_functions.check_load(builder.func);
|
3190
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
3191
|
+
let num_bytes = builder.ins().iconst(I32, val_size as i64);
|
3192
|
+
let offset_val = builder.ins().iconst(I64, offset as i64);
|
3193
|
+
builder
|
3194
|
+
.ins()
|
3195
|
+
.call(check_load, &[vmctx, num_bytes, addr, offset_val]);
|
3196
|
+
}
|
3197
|
+
#[cfg(not(feature = "wmemcheck"))]
|
3198
|
+
let _ = (builder, val_size, addr, offset);
|
3199
|
+
}
|
3200
|
+
|
3201
|
+
pub fn before_store(
|
3202
|
+
&mut self,
|
3203
|
+
builder: &mut FunctionBuilder,
|
3204
|
+
val_size: u8,
|
3205
|
+
addr: ir::Value,
|
3206
|
+
offset: u64,
|
3207
|
+
) {
|
3208
|
+
#[cfg(feature = "wmemcheck")]
|
3209
|
+
if self.compiler.wmemcheck {
|
3210
|
+
let check_store = self.builtin_functions.check_store(builder.func);
|
3211
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
3212
|
+
let num_bytes = builder.ins().iconst(I32, val_size as i64);
|
3213
|
+
let offset_val = builder.ins().iconst(I64, offset as i64);
|
3214
|
+
builder
|
3215
|
+
.ins()
|
3216
|
+
.call(check_store, &[vmctx, num_bytes, addr, offset_val]);
|
3217
|
+
}
|
3218
|
+
#[cfg(not(feature = "wmemcheck"))]
|
3219
|
+
let _ = (builder, val_size, addr, offset);
|
3220
|
+
}
|
3221
|
+
|
3222
|
+
pub fn update_global(
|
3223
|
+
&mut self,
|
3224
|
+
builder: &mut FunctionBuilder,
|
3225
|
+
global_index: u32,
|
3226
|
+
value: ir::Value,
|
3227
|
+
) {
|
3228
|
+
#[cfg(feature = "wmemcheck")]
|
3229
|
+
if self.compiler.wmemcheck {
|
3230
|
+
if global_index == 0 {
|
3231
|
+
// We are making the assumption that global 0 is the auxiliary stack pointer.
|
3232
|
+
let update_stack_pointer =
|
3233
|
+
self.builtin_functions.update_stack_pointer(builder.func);
|
3234
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
3235
|
+
builder.ins().call(update_stack_pointer, &[vmctx, value]);
|
3236
|
+
}
|
3237
|
+
}
|
3238
|
+
#[cfg(not(feature = "wmemcheck"))]
|
3239
|
+
let _ = (builder, global_index, value);
|
3240
|
+
}
|
3241
|
+
|
3242
|
+
pub fn before_memory_grow(
|
3243
|
+
&mut self,
|
3244
|
+
builder: &mut FunctionBuilder,
|
3245
|
+
num_pages: ir::Value,
|
3246
|
+
mem_index: MemoryIndex,
|
3247
|
+
) {
|
3248
|
+
#[cfg(feature = "wmemcheck")]
|
3249
|
+
if self.compiler.wmemcheck && mem_index.as_u32() == 0 {
|
3250
|
+
let update_mem_size = self.builtin_functions.update_mem_size(builder.func);
|
3251
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
3252
|
+
builder.ins().call(update_mem_size, &[vmctx, num_pages]);
|
3253
|
+
}
|
3254
|
+
#[cfg(not(feature = "wmemcheck"))]
|
3255
|
+
let _ = (builder, num_pages, mem_index);
|
3256
|
+
}
|
3257
|
+
|
3258
|
+
pub fn isa(&self) -> &dyn TargetIsa {
|
3259
|
+
&*self.isa
|
3260
|
+
}
|
3261
|
+
|
3262
|
+
pub fn trap(&mut self, builder: &mut FunctionBuilder, trap: ir::TrapCode) {
|
3263
|
+
match (
|
3264
|
+
self.clif_instruction_traps_enabled(),
|
3265
|
+
crate::clif_trap_to_env_trap(trap),
|
3266
|
+
) {
|
3267
|
+
// If libcall traps are disabled or there's no wasmtime-defined trap
|
3268
|
+
// code for this, then emit a native trap instruction.
|
3269
|
+
(true, _) | (_, None) => {
|
3270
|
+
builder.ins().trap(trap);
|
3271
|
+
}
|
3272
|
+
// ... otherwise with libcall traps explicitly enabled and a
|
3273
|
+
// wasmtime-based trap code invoke the libcall to raise a trap and
|
3274
|
+
// pass in our trap code. Leave a debug `unreachable` in place
|
3275
|
+
// afterwards as a defense-in-depth measure.
|
3276
|
+
(false, Some(trap)) => {
|
3277
|
+
let libcall = self.builtin_functions.trap(&mut builder.func);
|
3278
|
+
let vmctx = self.vmctx_val(&mut builder.cursor());
|
3279
|
+
let trap_code = builder.ins().iconst(I8, i64::from(trap as u8));
|
3280
|
+
builder.ins().call(libcall, &[vmctx, trap_code]);
|
3281
|
+
let raise = self.builtin_functions.raise(&mut builder.func);
|
3282
|
+
builder.ins().call(raise, &[vmctx]);
|
3283
|
+
builder.ins().trap(TRAP_INTERNAL_ASSERT);
|
3284
|
+
}
|
3285
|
+
}
|
3286
|
+
}
|
3287
|
+
|
3288
|
+
pub fn trapz(&mut self, builder: &mut FunctionBuilder, value: ir::Value, trap: ir::TrapCode) {
|
3289
|
+
if self.clif_instruction_traps_enabled() {
|
3290
|
+
builder.ins().trapz(value, trap);
|
3291
|
+
} else {
|
3292
|
+
let ty = builder.func.dfg.value_type(value);
|
3293
|
+
let zero = builder.ins().iconst(ty, 0);
|
3294
|
+
let cmp = builder.ins().icmp(IntCC::Equal, value, zero);
|
3295
|
+
self.conditionally_trap(builder, cmp, trap);
|
3296
|
+
}
|
3297
|
+
}
|
3298
|
+
|
3299
|
+
pub fn trapnz(&mut self, builder: &mut FunctionBuilder, value: ir::Value, trap: ir::TrapCode) {
|
3300
|
+
if self.clif_instruction_traps_enabled() {
|
3301
|
+
builder.ins().trapnz(value, trap);
|
3302
|
+
} else {
|
3303
|
+
let ty = builder.func.dfg.value_type(value);
|
3304
|
+
let zero = builder.ins().iconst(ty, 0);
|
3305
|
+
let cmp = builder.ins().icmp(IntCC::NotEqual, value, zero);
|
3306
|
+
self.conditionally_trap(builder, cmp, trap);
|
3307
|
+
}
|
3308
|
+
}
|
3309
|
+
|
3310
|
+
pub fn uadd_overflow_trap(
|
3311
|
+
&mut self,
|
3312
|
+
builder: &mut FunctionBuilder,
|
3313
|
+
lhs: ir::Value,
|
3314
|
+
rhs: ir::Value,
|
3315
|
+
trap: ir::TrapCode,
|
3316
|
+
) -> ir::Value {
|
3317
|
+
if self.clif_instruction_traps_enabled() {
|
3318
|
+
builder.ins().uadd_overflow_trap(lhs, rhs, trap)
|
3319
|
+
} else {
|
3320
|
+
let (ret, overflow) = builder.ins().uadd_overflow(lhs, rhs);
|
3321
|
+
self.conditionally_trap(builder, overflow, trap);
|
3322
|
+
ret
|
3323
|
+
}
|
3324
|
+
}
|
3325
|
+
|
3326
|
+
pub fn translate_sdiv(
|
3327
|
+
&mut self,
|
3328
|
+
builder: &mut FunctionBuilder,
|
3329
|
+
lhs: ir::Value,
|
3330
|
+
rhs: ir::Value,
|
3331
|
+
) -> ir::Value {
|
3332
|
+
self.guard_signed_divide(builder, lhs, rhs);
|
3333
|
+
builder.ins().sdiv(lhs, rhs)
|
3334
|
+
}
|
3335
|
+
|
3336
|
+
pub fn translate_udiv(
|
3337
|
+
&mut self,
|
3338
|
+
builder: &mut FunctionBuilder,
|
3339
|
+
lhs: ir::Value,
|
3340
|
+
rhs: ir::Value,
|
3341
|
+
) -> ir::Value {
|
3342
|
+
self.guard_zero_divisor(builder, rhs);
|
3343
|
+
builder.ins().udiv(lhs, rhs)
|
3344
|
+
}
|
3345
|
+
|
3346
|
+
pub fn translate_srem(
|
3347
|
+
&mut self,
|
3348
|
+
builder: &mut FunctionBuilder,
|
3349
|
+
lhs: ir::Value,
|
3350
|
+
rhs: ir::Value,
|
3351
|
+
) -> ir::Value {
|
3352
|
+
self.guard_zero_divisor(builder, rhs);
|
3353
|
+
builder.ins().srem(lhs, rhs)
|
3354
|
+
}
|
3355
|
+
|
3356
|
+
pub fn translate_urem(
|
3357
|
+
&mut self,
|
3358
|
+
builder: &mut FunctionBuilder,
|
3359
|
+
lhs: ir::Value,
|
3360
|
+
rhs: ir::Value,
|
3361
|
+
) -> ir::Value {
|
3362
|
+
self.guard_zero_divisor(builder, rhs);
|
3363
|
+
builder.ins().urem(lhs, rhs)
|
3364
|
+
}
|
3365
|
+
|
3366
|
+
pub fn translate_fcvt_to_sint(
|
3367
|
+
&mut self,
|
3368
|
+
builder: &mut FunctionBuilder,
|
3369
|
+
ty: ir::Type,
|
3370
|
+
val: ir::Value,
|
3371
|
+
) -> ir::Value {
|
3372
|
+
// NB: for now avoid translating this entire instruction to CLIF and
|
3373
|
+
// just do it in a libcall.
|
3374
|
+
if !self.clif_instruction_traps_enabled() {
|
3375
|
+
self.guard_fcvt_to_int(
|
3376
|
+
builder,
|
3377
|
+
ty,
|
3378
|
+
val,
|
3379
|
+
(-2147483649.0, 2147483648.0),
|
3380
|
+
(-9223372036854777856.0, 9223372036854775808.0),
|
3381
|
+
);
|
3382
|
+
}
|
3383
|
+
builder.ins().fcvt_to_sint(ty, val)
|
3384
|
+
}
|
3385
|
+
|
3386
|
+
pub fn translate_fcvt_to_uint(
|
3387
|
+
&mut self,
|
3388
|
+
builder: &mut FunctionBuilder,
|
3389
|
+
ty: ir::Type,
|
3390
|
+
val: ir::Value,
|
3391
|
+
) -> ir::Value {
|
3392
|
+
if !self.clif_instruction_traps_enabled() {
|
3393
|
+
self.guard_fcvt_to_int(
|
3394
|
+
builder,
|
3395
|
+
ty,
|
3396
|
+
val,
|
3397
|
+
(-1.0, 4294967296.0),
|
3398
|
+
(-1.0, 18446744073709551616.0),
|
3399
|
+
);
|
3400
|
+
}
|
3401
|
+
builder.ins().fcvt_to_uint(ty, val)
|
3402
|
+
}
|
3403
|
+
|
3404
|
+
/// Returns whether it's acceptable to rely on traps in CLIF memory-related
|
3405
|
+
/// instructions (e.g. loads and stores).
|
3406
|
+
///
|
3407
|
+
/// This is enabled if `signals_based_traps` is `true` since signal handlers
|
3408
|
+
/// are available, but this is additionally forcibly disabled if Pulley is
|
3409
|
+
/// being targeted since the Pulley runtime doesn't catch segfaults for
|
3410
|
+
/// itself.
|
3411
|
+
pub fn clif_memory_traps_enabled(&self) -> bool {
|
3412
|
+
self.tunables.signals_based_traps && !self.isa.triple().is_pulley()
|
3413
|
+
}
|
3414
|
+
|
3415
|
+
/// Returns whether it's acceptable to have CLIF instructions natively trap,
|
3416
|
+
/// such as division-by-zero.
|
3417
|
+
///
|
3418
|
+
/// This enabled if `signals_based_traps` is `true` or on Pulley
|
3419
|
+
/// unconditionally since Pulley doesn't use hardware-based traps in its
|
3420
|
+
/// runtime.
|
3421
|
+
pub fn clif_instruction_traps_enabled(&self) -> bool {
|
3422
|
+
self.tunables.signals_based_traps || self.isa.triple().is_pulley()
|
3423
|
+
}
|
3424
|
+
}
|
3425
|
+
|
3426
|
+
// Helper function to convert an `IndexType` to an `ir::Type`.
|
3427
|
+
//
|
3428
|
+
// Implementing From/Into trait for `IndexType` or `ir::Type` would
|
3429
|
+
// introduce an extra dependency between `wasmtime_types` and `cranelift_codegen`.
|
3430
|
+
fn index_type_to_ir_type(index_type: IndexType) -> ir::Type {
|
3431
|
+
match index_type {
|
3432
|
+
IndexType::I32 => I32,
|
3433
|
+
IndexType::I64 => I64,
|
3434
|
+
}
|
3435
|
+
}
|