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
@@ -1,3056 +0,0 @@
|
|
1
|
-
//! This module defines aarch64-specific machine instruction types.
|
2
|
-
|
3
|
-
use crate::binemit::{Addend, CodeOffset, Reloc};
|
4
|
-
use crate::ir::types::{F128, F16, F32, F64, I128, I16, I32, I64, I8, I8X16};
|
5
|
-
use crate::ir::{types, MemFlags, Type};
|
6
|
-
use crate::isa::{CallConv, FunctionAlignment};
|
7
|
-
use crate::machinst::*;
|
8
|
-
use crate::{settings, CodegenError, CodegenResult};
|
9
|
-
|
10
|
-
use crate::machinst::{PrettyPrint, Reg, RegClass, Writable};
|
11
|
-
|
12
|
-
use alloc::vec::Vec;
|
13
|
-
use smallvec::{smallvec, SmallVec};
|
14
|
-
use std::fmt::Write;
|
15
|
-
use std::string::{String, ToString};
|
16
|
-
|
17
|
-
pub(crate) mod regs;
|
18
|
-
pub(crate) use self::regs::*;
|
19
|
-
pub mod imms;
|
20
|
-
pub use self::imms::*;
|
21
|
-
pub mod args;
|
22
|
-
pub use self::args::*;
|
23
|
-
pub mod emit;
|
24
|
-
pub(crate) use self::emit::*;
|
25
|
-
use crate::isa::aarch64::abi::AArch64MachineDeps;
|
26
|
-
|
27
|
-
pub(crate) mod unwind;
|
28
|
-
|
29
|
-
#[cfg(test)]
|
30
|
-
mod emit_tests;
|
31
|
-
|
32
|
-
//=============================================================================
|
33
|
-
// Instructions (top level): definition
|
34
|
-
|
35
|
-
pub use crate::isa::aarch64::lower::isle::generated_code::{
|
36
|
-
ALUOp, ALUOp3, AMode, APIKey, AtomicRMWLoopOp, AtomicRMWOp, BitOp, BranchTargetType, FPUOp1,
|
37
|
-
FPUOp2, FPUOp3, FpuRoundMode, FpuToIntOp, IntToFpuOp, MInst as Inst, MoveWideOp, VecALUModOp,
|
38
|
-
VecALUOp, VecExtendOp, VecLanesOp, VecMisc2, VecPairOp, VecRRLongOp, VecRRNarrowOp,
|
39
|
-
VecRRPairLongOp, VecRRRLongModOp, VecRRRLongOp, VecShiftImmModOp, VecShiftImmOp,
|
40
|
-
};
|
41
|
-
|
42
|
-
/// A floating-point unit (FPU) operation with two args, a register and an immediate.
|
43
|
-
#[derive(Copy, Clone, Debug)]
|
44
|
-
pub enum FPUOpRI {
|
45
|
-
/// Unsigned right shift. Rd = Rn << #imm
|
46
|
-
UShr32(FPURightShiftImm),
|
47
|
-
/// Unsigned right shift. Rd = Rn << #imm
|
48
|
-
UShr64(FPURightShiftImm),
|
49
|
-
}
|
50
|
-
|
51
|
-
/// A floating-point unit (FPU) operation with two args, a register and
|
52
|
-
/// an immediate that modifies its dest (so takes that input value as a
|
53
|
-
/// separate virtual register).
|
54
|
-
#[derive(Copy, Clone, Debug)]
|
55
|
-
pub enum FPUOpRIMod {
|
56
|
-
/// Shift left and insert. Rd |= Rn << #imm
|
57
|
-
Sli32(FPULeftShiftImm),
|
58
|
-
/// Shift left and insert. Rd |= Rn << #imm
|
59
|
-
Sli64(FPULeftShiftImm),
|
60
|
-
}
|
61
|
-
|
62
|
-
impl BitOp {
|
63
|
-
/// Get the assembly mnemonic for this opcode.
|
64
|
-
pub fn op_str(&self) -> &'static str {
|
65
|
-
match self {
|
66
|
-
BitOp::RBit => "rbit",
|
67
|
-
BitOp::Clz => "clz",
|
68
|
-
BitOp::Cls => "cls",
|
69
|
-
BitOp::Rev16 => "rev16",
|
70
|
-
BitOp::Rev32 => "rev32",
|
71
|
-
BitOp::Rev64 => "rev64",
|
72
|
-
}
|
73
|
-
}
|
74
|
-
}
|
75
|
-
|
76
|
-
/// Additional information for `return_call[_ind]` instructions, left out of
|
77
|
-
/// line to lower the size of the `Inst` enum.
|
78
|
-
#[derive(Clone, Debug)]
|
79
|
-
pub struct ReturnCallInfo<T> {
|
80
|
-
/// Where this call is going to
|
81
|
-
pub dest: T,
|
82
|
-
/// Arguments to the call instruction.
|
83
|
-
pub uses: CallArgList,
|
84
|
-
/// The size of the new stack frame's stack arguments. This is necessary
|
85
|
-
/// for copying the frame over our current frame. It must already be
|
86
|
-
/// allocated on the stack.
|
87
|
-
pub new_stack_arg_size: u32,
|
88
|
-
/// API key to use to restore the return address, if any.
|
89
|
-
pub key: Option<APIKey>,
|
90
|
-
}
|
91
|
-
|
92
|
-
fn count_zero_half_words(mut value: u64, num_half_words: u8) -> usize {
|
93
|
-
let mut count = 0;
|
94
|
-
for _ in 0..num_half_words {
|
95
|
-
if value & 0xffff == 0 {
|
96
|
-
count += 1;
|
97
|
-
}
|
98
|
-
value >>= 16;
|
99
|
-
}
|
100
|
-
|
101
|
-
count
|
102
|
-
}
|
103
|
-
|
104
|
-
impl Inst {
|
105
|
-
/// Create an instruction that loads a constant, using one of several options (MOVZ, MOVN,
|
106
|
-
/// logical immediate, or constant pool).
|
107
|
-
pub fn load_constant<F: FnMut(Type) -> Writable<Reg>>(
|
108
|
-
rd: Writable<Reg>,
|
109
|
-
value: u64,
|
110
|
-
alloc_tmp: &mut F,
|
111
|
-
) -> SmallVec<[Inst; 4]> {
|
112
|
-
// NB: this is duplicated in `lower/isle.rs` and `inst.isle` right now,
|
113
|
-
// if modifications are made here before this is deleted after moving to
|
114
|
-
// ISLE then those locations should be updated as well.
|
115
|
-
|
116
|
-
if let Some(imm) = MoveWideConst::maybe_from_u64(value) {
|
117
|
-
// 16-bit immediate (shifted by 0, 16, 32 or 48 bits) in MOVZ
|
118
|
-
smallvec![Inst::MovWide {
|
119
|
-
op: MoveWideOp::MovZ,
|
120
|
-
rd,
|
121
|
-
imm,
|
122
|
-
size: OperandSize::Size64
|
123
|
-
}]
|
124
|
-
} else if let Some(imm) = MoveWideConst::maybe_from_u64(!value) {
|
125
|
-
// 16-bit immediate (shifted by 0, 16, 32 or 48 bits) in MOVN
|
126
|
-
smallvec![Inst::MovWide {
|
127
|
-
op: MoveWideOp::MovN,
|
128
|
-
rd,
|
129
|
-
imm,
|
130
|
-
size: OperandSize::Size64
|
131
|
-
}]
|
132
|
-
} else if let Some(imml) = ImmLogic::maybe_from_u64(value, I64) {
|
133
|
-
// Weird logical-instruction immediate in ORI using zero register
|
134
|
-
smallvec![Inst::AluRRImmLogic {
|
135
|
-
alu_op: ALUOp::Orr,
|
136
|
-
size: OperandSize::Size64,
|
137
|
-
rd,
|
138
|
-
rn: zero_reg(),
|
139
|
-
imml,
|
140
|
-
}]
|
141
|
-
} else {
|
142
|
-
let mut insts = smallvec![];
|
143
|
-
|
144
|
-
// If the top 32 bits are zero, use 32-bit `mov` operations.
|
145
|
-
let (num_half_words, size, negated) = if value >> 32 == 0 {
|
146
|
-
(2, OperandSize::Size32, (!value << 32) >> 32)
|
147
|
-
} else {
|
148
|
-
(4, OperandSize::Size64, !value)
|
149
|
-
};
|
150
|
-
|
151
|
-
// If the number of 0xffff half words is greater than the number of 0x0000 half words
|
152
|
-
// it is more efficient to use `movn` for the first instruction.
|
153
|
-
let first_is_inverted = count_zero_half_words(negated, num_half_words)
|
154
|
-
> count_zero_half_words(value, num_half_words);
|
155
|
-
|
156
|
-
// Either 0xffff or 0x0000 half words can be skipped, depending on the first
|
157
|
-
// instruction used.
|
158
|
-
let ignored_halfword = if first_is_inverted { 0xffff } else { 0 };
|
159
|
-
|
160
|
-
let halfwords: SmallVec<[_; 4]> = (0..num_half_words)
|
161
|
-
.filter_map(|i| {
|
162
|
-
let imm16 = (value >> (16 * i)) & 0xffff;
|
163
|
-
if imm16 == ignored_halfword {
|
164
|
-
None
|
165
|
-
} else {
|
166
|
-
Some((i, imm16))
|
167
|
-
}
|
168
|
-
})
|
169
|
-
.collect();
|
170
|
-
|
171
|
-
let mut prev_result = None;
|
172
|
-
let last_index = halfwords.last().unwrap().0;
|
173
|
-
for (i, imm16) in halfwords {
|
174
|
-
let shift = i * 16;
|
175
|
-
let rd = if i == last_index { rd } else { alloc_tmp(I16) };
|
176
|
-
|
177
|
-
if let Some(rn) = prev_result {
|
178
|
-
let imm = MoveWideConst::maybe_with_shift(imm16 as u16, shift).unwrap();
|
179
|
-
insts.push(Inst::MovK { rd, rn, imm, size });
|
180
|
-
} else {
|
181
|
-
if first_is_inverted {
|
182
|
-
let imm =
|
183
|
-
MoveWideConst::maybe_with_shift(((!imm16) & 0xffff) as u16, shift)
|
184
|
-
.unwrap();
|
185
|
-
insts.push(Inst::MovWide {
|
186
|
-
op: MoveWideOp::MovN,
|
187
|
-
rd,
|
188
|
-
imm,
|
189
|
-
size,
|
190
|
-
});
|
191
|
-
} else {
|
192
|
-
let imm = MoveWideConst::maybe_with_shift(imm16 as u16, shift).unwrap();
|
193
|
-
insts.push(Inst::MovWide {
|
194
|
-
op: MoveWideOp::MovZ,
|
195
|
-
rd,
|
196
|
-
imm,
|
197
|
-
size,
|
198
|
-
});
|
199
|
-
}
|
200
|
-
}
|
201
|
-
|
202
|
-
prev_result = Some(rd.to_reg());
|
203
|
-
}
|
204
|
-
|
205
|
-
assert!(prev_result.is_some());
|
206
|
-
|
207
|
-
insts
|
208
|
-
}
|
209
|
-
}
|
210
|
-
|
211
|
-
/// Generic constructor for a load (zero-extending where appropriate).
|
212
|
-
pub fn gen_load(into_reg: Writable<Reg>, mem: AMode, ty: Type, flags: MemFlags) -> Inst {
|
213
|
-
match ty {
|
214
|
-
I8 => Inst::ULoad8 {
|
215
|
-
rd: into_reg,
|
216
|
-
mem,
|
217
|
-
flags,
|
218
|
-
},
|
219
|
-
I16 => Inst::ULoad16 {
|
220
|
-
rd: into_reg,
|
221
|
-
mem,
|
222
|
-
flags,
|
223
|
-
},
|
224
|
-
I32 => Inst::ULoad32 {
|
225
|
-
rd: into_reg,
|
226
|
-
mem,
|
227
|
-
flags,
|
228
|
-
},
|
229
|
-
I64 => Inst::ULoad64 {
|
230
|
-
rd: into_reg,
|
231
|
-
mem,
|
232
|
-
flags,
|
233
|
-
},
|
234
|
-
F16 => Inst::FpuLoad16 {
|
235
|
-
rd: into_reg,
|
236
|
-
mem,
|
237
|
-
flags,
|
238
|
-
},
|
239
|
-
F32 => Inst::FpuLoad32 {
|
240
|
-
rd: into_reg,
|
241
|
-
mem,
|
242
|
-
flags,
|
243
|
-
},
|
244
|
-
F64 => Inst::FpuLoad64 {
|
245
|
-
rd: into_reg,
|
246
|
-
mem,
|
247
|
-
flags,
|
248
|
-
},
|
249
|
-
_ => {
|
250
|
-
if ty.is_vector() || ty.is_float() {
|
251
|
-
let bits = ty_bits(ty);
|
252
|
-
let rd = into_reg;
|
253
|
-
|
254
|
-
if bits == 128 {
|
255
|
-
Inst::FpuLoad128 { rd, mem, flags }
|
256
|
-
} else {
|
257
|
-
assert_eq!(bits, 64);
|
258
|
-
Inst::FpuLoad64 { rd, mem, flags }
|
259
|
-
}
|
260
|
-
} else {
|
261
|
-
unimplemented!("gen_load({})", ty);
|
262
|
-
}
|
263
|
-
}
|
264
|
-
}
|
265
|
-
}
|
266
|
-
|
267
|
-
/// Generic constructor for a store.
|
268
|
-
pub fn gen_store(mem: AMode, from_reg: Reg, ty: Type, flags: MemFlags) -> Inst {
|
269
|
-
match ty {
|
270
|
-
I8 => Inst::Store8 {
|
271
|
-
rd: from_reg,
|
272
|
-
mem,
|
273
|
-
flags,
|
274
|
-
},
|
275
|
-
I16 => Inst::Store16 {
|
276
|
-
rd: from_reg,
|
277
|
-
mem,
|
278
|
-
flags,
|
279
|
-
},
|
280
|
-
I32 => Inst::Store32 {
|
281
|
-
rd: from_reg,
|
282
|
-
mem,
|
283
|
-
flags,
|
284
|
-
},
|
285
|
-
I64 => Inst::Store64 {
|
286
|
-
rd: from_reg,
|
287
|
-
mem,
|
288
|
-
flags,
|
289
|
-
},
|
290
|
-
F16 => Inst::FpuStore16 {
|
291
|
-
rd: from_reg,
|
292
|
-
mem,
|
293
|
-
flags,
|
294
|
-
},
|
295
|
-
F32 => Inst::FpuStore32 {
|
296
|
-
rd: from_reg,
|
297
|
-
mem,
|
298
|
-
flags,
|
299
|
-
},
|
300
|
-
F64 => Inst::FpuStore64 {
|
301
|
-
rd: from_reg,
|
302
|
-
mem,
|
303
|
-
flags,
|
304
|
-
},
|
305
|
-
_ => {
|
306
|
-
if ty.is_vector() || ty.is_float() {
|
307
|
-
let bits = ty_bits(ty);
|
308
|
-
let rd = from_reg;
|
309
|
-
|
310
|
-
if bits == 128 {
|
311
|
-
Inst::FpuStore128 { rd, mem, flags }
|
312
|
-
} else {
|
313
|
-
assert_eq!(bits, 64);
|
314
|
-
Inst::FpuStore64 { rd, mem, flags }
|
315
|
-
}
|
316
|
-
} else {
|
317
|
-
unimplemented!("gen_store({})", ty);
|
318
|
-
}
|
319
|
-
}
|
320
|
-
}
|
321
|
-
}
|
322
|
-
|
323
|
-
/// What type does this load or store instruction access in memory? When
|
324
|
-
/// uimm12 encoding is used, the size of this type is the amount that
|
325
|
-
/// immediate offsets are scaled by.
|
326
|
-
pub fn mem_type(&self) -> Option<Type> {
|
327
|
-
match self {
|
328
|
-
Inst::ULoad8 { .. } => Some(I8),
|
329
|
-
Inst::SLoad8 { .. } => Some(I8),
|
330
|
-
Inst::ULoad16 { .. } => Some(I16),
|
331
|
-
Inst::SLoad16 { .. } => Some(I16),
|
332
|
-
Inst::ULoad32 { .. } => Some(I32),
|
333
|
-
Inst::SLoad32 { .. } => Some(I32),
|
334
|
-
Inst::ULoad64 { .. } => Some(I64),
|
335
|
-
Inst::FpuLoad16 { .. } => Some(F16),
|
336
|
-
Inst::FpuLoad32 { .. } => Some(F32),
|
337
|
-
Inst::FpuLoad64 { .. } => Some(F64),
|
338
|
-
Inst::FpuLoad128 { .. } => Some(I8X16),
|
339
|
-
Inst::Store8 { .. } => Some(I8),
|
340
|
-
Inst::Store16 { .. } => Some(I16),
|
341
|
-
Inst::Store32 { .. } => Some(I32),
|
342
|
-
Inst::Store64 { .. } => Some(I64),
|
343
|
-
Inst::FpuStore16 { .. } => Some(F16),
|
344
|
-
Inst::FpuStore32 { .. } => Some(F32),
|
345
|
-
Inst::FpuStore64 { .. } => Some(F64),
|
346
|
-
Inst::FpuStore128 { .. } => Some(I8X16),
|
347
|
-
_ => None,
|
348
|
-
}
|
349
|
-
}
|
350
|
-
}
|
351
|
-
|
352
|
-
//=============================================================================
|
353
|
-
// Instructions: get_regs
|
354
|
-
|
355
|
-
fn memarg_operands(memarg: &mut AMode, collector: &mut impl OperandVisitor) {
|
356
|
-
match memarg {
|
357
|
-
AMode::Unscaled { rn, .. } | AMode::UnsignedOffset { rn, .. } => {
|
358
|
-
collector.reg_use(rn);
|
359
|
-
}
|
360
|
-
AMode::RegReg { rn, rm, .. }
|
361
|
-
| AMode::RegScaled { rn, rm, .. }
|
362
|
-
| AMode::RegScaledExtended { rn, rm, .. }
|
363
|
-
| AMode::RegExtended { rn, rm, .. } => {
|
364
|
-
collector.reg_use(rn);
|
365
|
-
collector.reg_use(rm);
|
366
|
-
}
|
367
|
-
AMode::Label { .. } => {}
|
368
|
-
AMode::SPPreIndexed { .. } | AMode::SPPostIndexed { .. } => {}
|
369
|
-
AMode::FPOffset { .. } | AMode::IncomingArg { .. } => {}
|
370
|
-
AMode::SPOffset { .. } | AMode::SlotOffset { .. } => {}
|
371
|
-
AMode::RegOffset { rn, .. } => {
|
372
|
-
collector.reg_use(rn);
|
373
|
-
}
|
374
|
-
AMode::Const { .. } => {}
|
375
|
-
}
|
376
|
-
}
|
377
|
-
|
378
|
-
fn pairmemarg_operands(pairmemarg: &mut PairAMode, collector: &mut impl OperandVisitor) {
|
379
|
-
match pairmemarg {
|
380
|
-
PairAMode::SignedOffset { reg, .. } => {
|
381
|
-
collector.reg_use(reg);
|
382
|
-
}
|
383
|
-
PairAMode::SPPreIndexed { .. } | PairAMode::SPPostIndexed { .. } => {}
|
384
|
-
}
|
385
|
-
}
|
386
|
-
|
387
|
-
fn aarch64_get_operands(inst: &mut Inst, collector: &mut impl OperandVisitor) {
|
388
|
-
match inst {
|
389
|
-
Inst::AluRRR { rd, rn, rm, .. } => {
|
390
|
-
collector.reg_def(rd);
|
391
|
-
collector.reg_use(rn);
|
392
|
-
collector.reg_use(rm);
|
393
|
-
}
|
394
|
-
Inst::AluRRRR { rd, rn, rm, ra, .. } => {
|
395
|
-
collector.reg_def(rd);
|
396
|
-
collector.reg_use(rn);
|
397
|
-
collector.reg_use(rm);
|
398
|
-
collector.reg_use(ra);
|
399
|
-
}
|
400
|
-
Inst::AluRRImm12 { rd, rn, .. } => {
|
401
|
-
collector.reg_def(rd);
|
402
|
-
collector.reg_use(rn);
|
403
|
-
}
|
404
|
-
Inst::AluRRImmLogic { rd, rn, .. } => {
|
405
|
-
collector.reg_def(rd);
|
406
|
-
collector.reg_use(rn);
|
407
|
-
}
|
408
|
-
Inst::AluRRImmShift { rd, rn, .. } => {
|
409
|
-
collector.reg_def(rd);
|
410
|
-
collector.reg_use(rn);
|
411
|
-
}
|
412
|
-
Inst::AluRRRShift { rd, rn, rm, .. } => {
|
413
|
-
collector.reg_def(rd);
|
414
|
-
collector.reg_use(rn);
|
415
|
-
collector.reg_use(rm);
|
416
|
-
}
|
417
|
-
Inst::AluRRRExtend { rd, rn, rm, .. } => {
|
418
|
-
collector.reg_def(rd);
|
419
|
-
collector.reg_use(rn);
|
420
|
-
collector.reg_use(rm);
|
421
|
-
}
|
422
|
-
Inst::BitRR { rd, rn, .. } => {
|
423
|
-
collector.reg_def(rd);
|
424
|
-
collector.reg_use(rn);
|
425
|
-
}
|
426
|
-
Inst::ULoad8 { rd, mem, .. }
|
427
|
-
| Inst::SLoad8 { rd, mem, .. }
|
428
|
-
| Inst::ULoad16 { rd, mem, .. }
|
429
|
-
| Inst::SLoad16 { rd, mem, .. }
|
430
|
-
| Inst::ULoad32 { rd, mem, .. }
|
431
|
-
| Inst::SLoad32 { rd, mem, .. }
|
432
|
-
| Inst::ULoad64 { rd, mem, .. } => {
|
433
|
-
collector.reg_def(rd);
|
434
|
-
memarg_operands(mem, collector);
|
435
|
-
}
|
436
|
-
Inst::Store8 { rd, mem, .. }
|
437
|
-
| Inst::Store16 { rd, mem, .. }
|
438
|
-
| Inst::Store32 { rd, mem, .. }
|
439
|
-
| Inst::Store64 { rd, mem, .. } => {
|
440
|
-
collector.reg_use(rd);
|
441
|
-
memarg_operands(mem, collector);
|
442
|
-
}
|
443
|
-
Inst::StoreP64 { rt, rt2, mem, .. } => {
|
444
|
-
collector.reg_use(rt);
|
445
|
-
collector.reg_use(rt2);
|
446
|
-
pairmemarg_operands(mem, collector);
|
447
|
-
}
|
448
|
-
Inst::LoadP64 { rt, rt2, mem, .. } => {
|
449
|
-
collector.reg_def(rt);
|
450
|
-
collector.reg_def(rt2);
|
451
|
-
pairmemarg_operands(mem, collector);
|
452
|
-
}
|
453
|
-
Inst::Mov { rd, rm, .. } => {
|
454
|
-
collector.reg_def(rd);
|
455
|
-
collector.reg_use(rm);
|
456
|
-
}
|
457
|
-
Inst::MovFromPReg { rd, rm } => {
|
458
|
-
debug_assert!(rd.to_reg().is_virtual());
|
459
|
-
collector.reg_def(rd);
|
460
|
-
collector.reg_fixed_nonallocatable(*rm);
|
461
|
-
}
|
462
|
-
Inst::MovToPReg { rd, rm } => {
|
463
|
-
debug_assert!(rm.is_virtual());
|
464
|
-
collector.reg_fixed_nonallocatable(*rd);
|
465
|
-
collector.reg_use(rm);
|
466
|
-
}
|
467
|
-
Inst::MovK { rd, rn, .. } => {
|
468
|
-
collector.reg_use(rn);
|
469
|
-
collector.reg_reuse_def(rd, 0); // `rn` == `rd`.
|
470
|
-
}
|
471
|
-
Inst::MovWide { rd, .. } => {
|
472
|
-
collector.reg_def(rd);
|
473
|
-
}
|
474
|
-
Inst::CSel { rd, rn, rm, .. } => {
|
475
|
-
collector.reg_def(rd);
|
476
|
-
collector.reg_use(rn);
|
477
|
-
collector.reg_use(rm);
|
478
|
-
}
|
479
|
-
Inst::CSNeg { rd, rn, rm, .. } => {
|
480
|
-
collector.reg_def(rd);
|
481
|
-
collector.reg_use(rn);
|
482
|
-
collector.reg_use(rm);
|
483
|
-
}
|
484
|
-
Inst::CSet { rd, .. } | Inst::CSetm { rd, .. } => {
|
485
|
-
collector.reg_def(rd);
|
486
|
-
}
|
487
|
-
Inst::CCmp { rn, rm, .. } => {
|
488
|
-
collector.reg_use(rn);
|
489
|
-
collector.reg_use(rm);
|
490
|
-
}
|
491
|
-
Inst::CCmpImm { rn, .. } => {
|
492
|
-
collector.reg_use(rn);
|
493
|
-
}
|
494
|
-
Inst::AtomicRMWLoop {
|
495
|
-
op,
|
496
|
-
addr,
|
497
|
-
operand,
|
498
|
-
oldval,
|
499
|
-
scratch1,
|
500
|
-
scratch2,
|
501
|
-
..
|
502
|
-
} => {
|
503
|
-
collector.reg_fixed_use(addr, xreg(25));
|
504
|
-
collector.reg_fixed_use(operand, xreg(26));
|
505
|
-
collector.reg_fixed_def(oldval, xreg(27));
|
506
|
-
collector.reg_fixed_def(scratch1, xreg(24));
|
507
|
-
if *op != AtomicRMWLoopOp::Xchg {
|
508
|
-
collector.reg_fixed_def(scratch2, xreg(28));
|
509
|
-
}
|
510
|
-
}
|
511
|
-
Inst::AtomicRMW { rs, rt, rn, .. } => {
|
512
|
-
collector.reg_use(rs);
|
513
|
-
collector.reg_def(rt);
|
514
|
-
collector.reg_use(rn);
|
515
|
-
}
|
516
|
-
Inst::AtomicCAS { rd, rs, rt, rn, .. } => {
|
517
|
-
collector.reg_reuse_def(rd, 1); // reuse `rs`.
|
518
|
-
collector.reg_use(rs);
|
519
|
-
collector.reg_use(rt);
|
520
|
-
collector.reg_use(rn);
|
521
|
-
}
|
522
|
-
Inst::AtomicCASLoop {
|
523
|
-
addr,
|
524
|
-
expected,
|
525
|
-
replacement,
|
526
|
-
oldval,
|
527
|
-
scratch,
|
528
|
-
..
|
529
|
-
} => {
|
530
|
-
collector.reg_fixed_use(addr, xreg(25));
|
531
|
-
collector.reg_fixed_use(expected, xreg(26));
|
532
|
-
collector.reg_fixed_use(replacement, xreg(28));
|
533
|
-
collector.reg_fixed_def(oldval, xreg(27));
|
534
|
-
collector.reg_fixed_def(scratch, xreg(24));
|
535
|
-
}
|
536
|
-
Inst::LoadAcquire { rt, rn, .. } => {
|
537
|
-
collector.reg_use(rn);
|
538
|
-
collector.reg_def(rt);
|
539
|
-
}
|
540
|
-
Inst::StoreRelease { rt, rn, .. } => {
|
541
|
-
collector.reg_use(rn);
|
542
|
-
collector.reg_use(rt);
|
543
|
-
}
|
544
|
-
Inst::Fence {} | Inst::Csdb {} => {}
|
545
|
-
Inst::FpuMove32 { rd, rn } => {
|
546
|
-
collector.reg_def(rd);
|
547
|
-
collector.reg_use(rn);
|
548
|
-
}
|
549
|
-
Inst::FpuMove64 { rd, rn } => {
|
550
|
-
collector.reg_def(rd);
|
551
|
-
collector.reg_use(rn);
|
552
|
-
}
|
553
|
-
Inst::FpuMove128 { rd, rn } => {
|
554
|
-
collector.reg_def(rd);
|
555
|
-
collector.reg_use(rn);
|
556
|
-
}
|
557
|
-
Inst::FpuMoveFromVec { rd, rn, .. } => {
|
558
|
-
collector.reg_def(rd);
|
559
|
-
collector.reg_use(rn);
|
560
|
-
}
|
561
|
-
Inst::FpuExtend { rd, rn, .. } => {
|
562
|
-
collector.reg_def(rd);
|
563
|
-
collector.reg_use(rn);
|
564
|
-
}
|
565
|
-
Inst::FpuRR { rd, rn, .. } => {
|
566
|
-
collector.reg_def(rd);
|
567
|
-
collector.reg_use(rn);
|
568
|
-
}
|
569
|
-
Inst::FpuRRR { rd, rn, rm, .. } => {
|
570
|
-
collector.reg_def(rd);
|
571
|
-
collector.reg_use(rn);
|
572
|
-
collector.reg_use(rm);
|
573
|
-
}
|
574
|
-
Inst::FpuRRI { rd, rn, .. } => {
|
575
|
-
collector.reg_def(rd);
|
576
|
-
collector.reg_use(rn);
|
577
|
-
}
|
578
|
-
Inst::FpuRRIMod { rd, ri, rn, .. } => {
|
579
|
-
collector.reg_reuse_def(rd, 1); // reuse `ri`.
|
580
|
-
collector.reg_use(ri);
|
581
|
-
collector.reg_use(rn);
|
582
|
-
}
|
583
|
-
Inst::FpuRRRR { rd, rn, rm, ra, .. } => {
|
584
|
-
collector.reg_def(rd);
|
585
|
-
collector.reg_use(rn);
|
586
|
-
collector.reg_use(rm);
|
587
|
-
collector.reg_use(ra);
|
588
|
-
}
|
589
|
-
Inst::VecMisc { rd, rn, .. } => {
|
590
|
-
collector.reg_def(rd);
|
591
|
-
collector.reg_use(rn);
|
592
|
-
}
|
593
|
-
|
594
|
-
Inst::VecLanes { rd, rn, .. } => {
|
595
|
-
collector.reg_def(rd);
|
596
|
-
collector.reg_use(rn);
|
597
|
-
}
|
598
|
-
Inst::VecShiftImm { rd, rn, .. } => {
|
599
|
-
collector.reg_def(rd);
|
600
|
-
collector.reg_use(rn);
|
601
|
-
}
|
602
|
-
Inst::VecShiftImmMod { rd, ri, rn, .. } => {
|
603
|
-
collector.reg_reuse_def(rd, 1); // `rd` == `ri`.
|
604
|
-
collector.reg_use(ri);
|
605
|
-
collector.reg_use(rn);
|
606
|
-
}
|
607
|
-
Inst::VecExtract { rd, rn, rm, .. } => {
|
608
|
-
collector.reg_def(rd);
|
609
|
-
collector.reg_use(rn);
|
610
|
-
collector.reg_use(rm);
|
611
|
-
}
|
612
|
-
Inst::VecTbl { rd, rn, rm } => {
|
613
|
-
collector.reg_use(rn);
|
614
|
-
collector.reg_use(rm);
|
615
|
-
collector.reg_def(rd);
|
616
|
-
}
|
617
|
-
Inst::VecTblExt { rd, ri, rn, rm } => {
|
618
|
-
collector.reg_use(rn);
|
619
|
-
collector.reg_use(rm);
|
620
|
-
collector.reg_reuse_def(rd, 3); // `rd` == `ri`.
|
621
|
-
collector.reg_use(ri);
|
622
|
-
}
|
623
|
-
|
624
|
-
Inst::VecTbl2 { rd, rn, rn2, rm } => {
|
625
|
-
// Constrain to v30 / v31 so that we satisfy the "adjacent
|
626
|
-
// registers" constraint without use of pinned vregs in
|
627
|
-
// lowering.
|
628
|
-
collector.reg_fixed_use(rn, vreg(30));
|
629
|
-
collector.reg_fixed_use(rn2, vreg(31));
|
630
|
-
collector.reg_use(rm);
|
631
|
-
collector.reg_def(rd);
|
632
|
-
}
|
633
|
-
Inst::VecTbl2Ext {
|
634
|
-
rd,
|
635
|
-
ri,
|
636
|
-
rn,
|
637
|
-
rn2,
|
638
|
-
rm,
|
639
|
-
} => {
|
640
|
-
// Constrain to v30 / v31 so that we satisfy the "adjacent
|
641
|
-
// registers" constraint without use of pinned vregs in
|
642
|
-
// lowering.
|
643
|
-
collector.reg_fixed_use(rn, vreg(30));
|
644
|
-
collector.reg_fixed_use(rn2, vreg(31));
|
645
|
-
collector.reg_use(rm);
|
646
|
-
collector.reg_reuse_def(rd, 4); // `rd` == `ri`.
|
647
|
-
collector.reg_use(ri);
|
648
|
-
}
|
649
|
-
Inst::VecLoadReplicate { rd, rn, .. } => {
|
650
|
-
collector.reg_def(rd);
|
651
|
-
collector.reg_use(rn);
|
652
|
-
}
|
653
|
-
Inst::VecCSel { rd, rn, rm, .. } => {
|
654
|
-
collector.reg_def(rd);
|
655
|
-
collector.reg_use(rn);
|
656
|
-
collector.reg_use(rm);
|
657
|
-
}
|
658
|
-
Inst::FpuCmp { rn, rm, .. } => {
|
659
|
-
collector.reg_use(rn);
|
660
|
-
collector.reg_use(rm);
|
661
|
-
}
|
662
|
-
Inst::FpuLoad16 { rd, mem, .. } => {
|
663
|
-
collector.reg_def(rd);
|
664
|
-
memarg_operands(mem, collector);
|
665
|
-
}
|
666
|
-
Inst::FpuLoad32 { rd, mem, .. } => {
|
667
|
-
collector.reg_def(rd);
|
668
|
-
memarg_operands(mem, collector);
|
669
|
-
}
|
670
|
-
Inst::FpuLoad64 { rd, mem, .. } => {
|
671
|
-
collector.reg_def(rd);
|
672
|
-
memarg_operands(mem, collector);
|
673
|
-
}
|
674
|
-
Inst::FpuLoad128 { rd, mem, .. } => {
|
675
|
-
collector.reg_def(rd);
|
676
|
-
memarg_operands(mem, collector);
|
677
|
-
}
|
678
|
-
Inst::FpuStore16 { rd, mem, .. } => {
|
679
|
-
collector.reg_use(rd);
|
680
|
-
memarg_operands(mem, collector);
|
681
|
-
}
|
682
|
-
Inst::FpuStore32 { rd, mem, .. } => {
|
683
|
-
collector.reg_use(rd);
|
684
|
-
memarg_operands(mem, collector);
|
685
|
-
}
|
686
|
-
Inst::FpuStore64 { rd, mem, .. } => {
|
687
|
-
collector.reg_use(rd);
|
688
|
-
memarg_operands(mem, collector);
|
689
|
-
}
|
690
|
-
Inst::FpuStore128 { rd, mem, .. } => {
|
691
|
-
collector.reg_use(rd);
|
692
|
-
memarg_operands(mem, collector);
|
693
|
-
}
|
694
|
-
Inst::FpuLoadP64 { rt, rt2, mem, .. } => {
|
695
|
-
collector.reg_def(rt);
|
696
|
-
collector.reg_def(rt2);
|
697
|
-
pairmemarg_operands(mem, collector);
|
698
|
-
}
|
699
|
-
Inst::FpuStoreP64 { rt, rt2, mem, .. } => {
|
700
|
-
collector.reg_use(rt);
|
701
|
-
collector.reg_use(rt2);
|
702
|
-
pairmemarg_operands(mem, collector);
|
703
|
-
}
|
704
|
-
Inst::FpuLoadP128 { rt, rt2, mem, .. } => {
|
705
|
-
collector.reg_def(rt);
|
706
|
-
collector.reg_def(rt2);
|
707
|
-
pairmemarg_operands(mem, collector);
|
708
|
-
}
|
709
|
-
Inst::FpuStoreP128 { rt, rt2, mem, .. } => {
|
710
|
-
collector.reg_use(rt);
|
711
|
-
collector.reg_use(rt2);
|
712
|
-
pairmemarg_operands(mem, collector);
|
713
|
-
}
|
714
|
-
Inst::FpuToInt { rd, rn, .. } => {
|
715
|
-
collector.reg_def(rd);
|
716
|
-
collector.reg_use(rn);
|
717
|
-
}
|
718
|
-
Inst::IntToFpu { rd, rn, .. } => {
|
719
|
-
collector.reg_def(rd);
|
720
|
-
collector.reg_use(rn);
|
721
|
-
}
|
722
|
-
Inst::FpuCSel16 { rd, rn, rm, .. }
|
723
|
-
| Inst::FpuCSel32 { rd, rn, rm, .. }
|
724
|
-
| Inst::FpuCSel64 { rd, rn, rm, .. } => {
|
725
|
-
collector.reg_def(rd);
|
726
|
-
collector.reg_use(rn);
|
727
|
-
collector.reg_use(rm);
|
728
|
-
}
|
729
|
-
Inst::FpuRound { rd, rn, .. } => {
|
730
|
-
collector.reg_def(rd);
|
731
|
-
collector.reg_use(rn);
|
732
|
-
}
|
733
|
-
Inst::MovToFpu { rd, rn, .. } => {
|
734
|
-
collector.reg_def(rd);
|
735
|
-
collector.reg_use(rn);
|
736
|
-
}
|
737
|
-
Inst::FpuMoveFPImm { rd, .. } => {
|
738
|
-
collector.reg_def(rd);
|
739
|
-
}
|
740
|
-
Inst::MovToVec { rd, ri, rn, .. } => {
|
741
|
-
collector.reg_reuse_def(rd, 1); // `rd` == `ri`.
|
742
|
-
collector.reg_use(ri);
|
743
|
-
collector.reg_use(rn);
|
744
|
-
}
|
745
|
-
Inst::MovFromVec { rd, rn, .. } | Inst::MovFromVecSigned { rd, rn, .. } => {
|
746
|
-
collector.reg_def(rd);
|
747
|
-
collector.reg_use(rn);
|
748
|
-
}
|
749
|
-
Inst::VecDup { rd, rn, .. } => {
|
750
|
-
collector.reg_def(rd);
|
751
|
-
collector.reg_use(rn);
|
752
|
-
}
|
753
|
-
Inst::VecDupFromFpu { rd, rn, .. } => {
|
754
|
-
collector.reg_def(rd);
|
755
|
-
collector.reg_use(rn);
|
756
|
-
}
|
757
|
-
Inst::VecDupFPImm { rd, .. } => {
|
758
|
-
collector.reg_def(rd);
|
759
|
-
}
|
760
|
-
Inst::VecDupImm { rd, .. } => {
|
761
|
-
collector.reg_def(rd);
|
762
|
-
}
|
763
|
-
Inst::VecExtend { rd, rn, .. } => {
|
764
|
-
collector.reg_def(rd);
|
765
|
-
collector.reg_use(rn);
|
766
|
-
}
|
767
|
-
Inst::VecMovElement { rd, ri, rn, .. } => {
|
768
|
-
collector.reg_reuse_def(rd, 1); // `rd` == `ri`.
|
769
|
-
collector.reg_use(ri);
|
770
|
-
collector.reg_use(rn);
|
771
|
-
}
|
772
|
-
Inst::VecRRLong { rd, rn, .. } => {
|
773
|
-
collector.reg_def(rd);
|
774
|
-
collector.reg_use(rn);
|
775
|
-
}
|
776
|
-
Inst::VecRRNarrowLow { rd, rn, .. } => {
|
777
|
-
collector.reg_use(rn);
|
778
|
-
collector.reg_def(rd);
|
779
|
-
}
|
780
|
-
Inst::VecRRNarrowHigh { rd, ri, rn, .. } => {
|
781
|
-
collector.reg_use(rn);
|
782
|
-
collector.reg_reuse_def(rd, 2); // `rd` == `ri`.
|
783
|
-
collector.reg_use(ri);
|
784
|
-
}
|
785
|
-
Inst::VecRRPair { rd, rn, .. } => {
|
786
|
-
collector.reg_def(rd);
|
787
|
-
collector.reg_use(rn);
|
788
|
-
}
|
789
|
-
Inst::VecRRRLong { rd, rn, rm, .. } => {
|
790
|
-
collector.reg_def(rd);
|
791
|
-
collector.reg_use(rn);
|
792
|
-
collector.reg_use(rm);
|
793
|
-
}
|
794
|
-
Inst::VecRRRLongMod { rd, ri, rn, rm, .. } => {
|
795
|
-
collector.reg_reuse_def(rd, 1); // `rd` == `ri`.
|
796
|
-
collector.reg_use(ri);
|
797
|
-
collector.reg_use(rn);
|
798
|
-
collector.reg_use(rm);
|
799
|
-
}
|
800
|
-
Inst::VecRRPairLong { rd, rn, .. } => {
|
801
|
-
collector.reg_def(rd);
|
802
|
-
collector.reg_use(rn);
|
803
|
-
}
|
804
|
-
Inst::VecRRR { rd, rn, rm, .. } => {
|
805
|
-
collector.reg_def(rd);
|
806
|
-
collector.reg_use(rn);
|
807
|
-
collector.reg_use(rm);
|
808
|
-
}
|
809
|
-
Inst::VecRRRMod { rd, ri, rn, rm, .. } | Inst::VecFmlaElem { rd, ri, rn, rm, .. } => {
|
810
|
-
collector.reg_reuse_def(rd, 1); // `rd` == `ri`.
|
811
|
-
collector.reg_use(ri);
|
812
|
-
collector.reg_use(rn);
|
813
|
-
collector.reg_use(rm);
|
814
|
-
}
|
815
|
-
Inst::MovToNZCV { rn } => {
|
816
|
-
collector.reg_use(rn);
|
817
|
-
}
|
818
|
-
Inst::MovFromNZCV { rd } => {
|
819
|
-
collector.reg_def(rd);
|
820
|
-
}
|
821
|
-
Inst::Extend { rd, rn, .. } => {
|
822
|
-
collector.reg_def(rd);
|
823
|
-
collector.reg_use(rn);
|
824
|
-
}
|
825
|
-
Inst::Args { args } => {
|
826
|
-
for ArgPair { vreg, preg } in args {
|
827
|
-
collector.reg_fixed_def(vreg, *preg);
|
828
|
-
}
|
829
|
-
}
|
830
|
-
Inst::Rets { rets } => {
|
831
|
-
for RetPair { vreg, preg } in rets {
|
832
|
-
collector.reg_fixed_use(vreg, *preg);
|
833
|
-
}
|
834
|
-
}
|
835
|
-
Inst::Ret { .. } | Inst::AuthenticatedRet { .. } => {}
|
836
|
-
Inst::Jump { .. } => {}
|
837
|
-
Inst::Call { info, .. } => {
|
838
|
-
let CallInfo { uses, defs, .. } = &mut **info;
|
839
|
-
for CallArgPair { vreg, preg } in uses {
|
840
|
-
collector.reg_fixed_use(vreg, *preg);
|
841
|
-
}
|
842
|
-
for CallRetPair { vreg, preg } in defs {
|
843
|
-
collector.reg_fixed_def(vreg, *preg);
|
844
|
-
}
|
845
|
-
collector.reg_clobbers(info.clobbers);
|
846
|
-
}
|
847
|
-
Inst::CallInd { info, .. } => {
|
848
|
-
let CallInfo {
|
849
|
-
dest, uses, defs, ..
|
850
|
-
} = &mut **info;
|
851
|
-
collector.reg_use(dest);
|
852
|
-
for CallArgPair { vreg, preg } in uses {
|
853
|
-
collector.reg_fixed_use(vreg, *preg);
|
854
|
-
}
|
855
|
-
for CallRetPair { vreg, preg } in defs {
|
856
|
-
collector.reg_fixed_def(vreg, *preg);
|
857
|
-
}
|
858
|
-
collector.reg_clobbers(info.clobbers);
|
859
|
-
}
|
860
|
-
Inst::ReturnCall { info } => {
|
861
|
-
for CallArgPair { vreg, preg } in &mut info.uses {
|
862
|
-
collector.reg_fixed_use(vreg, *preg);
|
863
|
-
}
|
864
|
-
}
|
865
|
-
Inst::ReturnCallInd { info } => {
|
866
|
-
// TODO(https://github.com/bytecodealliance/regalloc2/issues/145):
|
867
|
-
// This shouldn't be a fixed register constraint, but it's not clear how to pick a
|
868
|
-
// register that won't be clobbered by the callee-save restore code emitted with a
|
869
|
-
// return_call_indirect.
|
870
|
-
collector.reg_fixed_use(&mut info.dest, xreg(1));
|
871
|
-
for CallArgPair { vreg, preg } in &mut info.uses {
|
872
|
-
collector.reg_fixed_use(vreg, *preg);
|
873
|
-
}
|
874
|
-
}
|
875
|
-
Inst::CondBr { kind, .. } => match kind {
|
876
|
-
CondBrKind::Zero(rt) | CondBrKind::NotZero(rt) => collector.reg_use(rt),
|
877
|
-
CondBrKind::Cond(_) => {}
|
878
|
-
},
|
879
|
-
Inst::TestBitAndBranch { rn, .. } => {
|
880
|
-
collector.reg_use(rn);
|
881
|
-
}
|
882
|
-
Inst::IndirectBr { rn, .. } => {
|
883
|
-
collector.reg_use(rn);
|
884
|
-
}
|
885
|
-
Inst::Nop0 | Inst::Nop4 => {}
|
886
|
-
Inst::Brk => {}
|
887
|
-
Inst::Udf { .. } => {}
|
888
|
-
Inst::TrapIf { kind, .. } => match kind {
|
889
|
-
CondBrKind::Zero(rt) | CondBrKind::NotZero(rt) => collector.reg_use(rt),
|
890
|
-
CondBrKind::Cond(_) => {}
|
891
|
-
},
|
892
|
-
Inst::Adr { rd, .. } | Inst::Adrp { rd, .. } => {
|
893
|
-
collector.reg_def(rd);
|
894
|
-
}
|
895
|
-
Inst::Word4 { .. } | Inst::Word8 { .. } => {}
|
896
|
-
Inst::JTSequence {
|
897
|
-
ridx, rtmp1, rtmp2, ..
|
898
|
-
} => {
|
899
|
-
collector.reg_use(ridx);
|
900
|
-
collector.reg_early_def(rtmp1);
|
901
|
-
collector.reg_early_def(rtmp2);
|
902
|
-
}
|
903
|
-
Inst::LoadExtName { rd, .. } => {
|
904
|
-
collector.reg_def(rd);
|
905
|
-
}
|
906
|
-
Inst::LoadAddr { rd, mem } => {
|
907
|
-
collector.reg_def(rd);
|
908
|
-
memarg_operands(mem, collector);
|
909
|
-
}
|
910
|
-
Inst::Paci { .. } | Inst::Xpaclri => {
|
911
|
-
// Neither LR nor SP is an allocatable register, so there is no need
|
912
|
-
// to do anything.
|
913
|
-
}
|
914
|
-
Inst::Bti { .. } => {}
|
915
|
-
|
916
|
-
Inst::ElfTlsGetAddr { rd, tmp, .. } => {
|
917
|
-
// TLSDESC has a very neat calling convention. It is required to preserve
|
918
|
-
// all registers except x0 and x30. X30 is non allocatable in cranelift since
|
919
|
-
// its the link register.
|
920
|
-
//
|
921
|
-
// Additionally we need a second register as a temporary register for the
|
922
|
-
// TLSDESC sequence. This register can be any register other than x0 (and x30).
|
923
|
-
collector.reg_fixed_def(rd, regs::xreg(0));
|
924
|
-
collector.reg_early_def(tmp);
|
925
|
-
}
|
926
|
-
Inst::MachOTlsGetAddr { rd, .. } => {
|
927
|
-
collector.reg_fixed_def(rd, regs::xreg(0));
|
928
|
-
let mut clobbers =
|
929
|
-
AArch64MachineDeps::get_regs_clobbered_by_call(CallConv::AppleAarch64);
|
930
|
-
clobbers.remove(regs::xreg_preg(0));
|
931
|
-
collector.reg_clobbers(clobbers);
|
932
|
-
}
|
933
|
-
Inst::Unwind { .. } => {}
|
934
|
-
Inst::EmitIsland { .. } => {}
|
935
|
-
Inst::DummyUse { reg } => {
|
936
|
-
collector.reg_use(reg);
|
937
|
-
}
|
938
|
-
Inst::StackProbeLoop { start, end, .. } => {
|
939
|
-
collector.reg_early_def(start);
|
940
|
-
collector.reg_use(end);
|
941
|
-
}
|
942
|
-
}
|
943
|
-
}
|
944
|
-
|
945
|
-
//=============================================================================
|
946
|
-
// Instructions: misc functions and external interface
|
947
|
-
|
948
|
-
impl MachInst for Inst {
|
949
|
-
type ABIMachineSpec = AArch64MachineDeps;
|
950
|
-
type LabelUse = LabelUse;
|
951
|
-
|
952
|
-
// "CLIF" in hex, to make the trap recognizable during
|
953
|
-
// debugging.
|
954
|
-
const TRAP_OPCODE: &'static [u8] = &0xc11f_u32.to_le_bytes();
|
955
|
-
|
956
|
-
fn get_operands(&mut self, collector: &mut impl OperandVisitor) {
|
957
|
-
aarch64_get_operands(self, collector);
|
958
|
-
}
|
959
|
-
|
960
|
-
fn is_move(&self) -> Option<(Writable<Reg>, Reg)> {
|
961
|
-
match self {
|
962
|
-
&Inst::Mov {
|
963
|
-
size: OperandSize::Size64,
|
964
|
-
rd,
|
965
|
-
rm,
|
966
|
-
} => Some((rd, rm)),
|
967
|
-
&Inst::FpuMove64 { rd, rn } => Some((rd, rn)),
|
968
|
-
&Inst::FpuMove128 { rd, rn } => Some((rd, rn)),
|
969
|
-
_ => None,
|
970
|
-
}
|
971
|
-
}
|
972
|
-
|
973
|
-
fn is_included_in_clobbers(&self) -> bool {
|
974
|
-
let (caller, callee) = match self {
|
975
|
-
Inst::Args { .. } => return false,
|
976
|
-
Inst::Call { info } => (info.caller_conv, info.callee_conv),
|
977
|
-
Inst::CallInd { info } => (info.caller_conv, info.callee_conv),
|
978
|
-
_ => return true,
|
979
|
-
};
|
980
|
-
|
981
|
-
// We exclude call instructions from the clobber-set when they are calls
|
982
|
-
// from caller to callee that both clobber the same register (such as
|
983
|
-
// using the same or similar ABIs). Such calls cannot possibly force any
|
984
|
-
// new registers to be saved in the prologue, because anything that the
|
985
|
-
// callee clobbers, the caller is also allowed to clobber. This both
|
986
|
-
// saves work and enables us to more precisely follow the
|
987
|
-
// half-caller-save, half-callee-save SysV ABI for some vector
|
988
|
-
// registers.
|
989
|
-
//
|
990
|
-
// See the note in [crate::isa::aarch64::abi::is_caller_save_reg] for
|
991
|
-
// more information on this ABI-implementation hack.
|
992
|
-
let caller_clobbers = AArch64MachineDeps::get_regs_clobbered_by_call(caller);
|
993
|
-
let callee_clobbers = AArch64MachineDeps::get_regs_clobbered_by_call(callee);
|
994
|
-
|
995
|
-
let mut all_clobbers = caller_clobbers;
|
996
|
-
all_clobbers.union_from(callee_clobbers);
|
997
|
-
all_clobbers != caller_clobbers
|
998
|
-
}
|
999
|
-
|
1000
|
-
fn is_trap(&self) -> bool {
|
1001
|
-
match self {
|
1002
|
-
Self::Udf { .. } => true,
|
1003
|
-
_ => false,
|
1004
|
-
}
|
1005
|
-
}
|
1006
|
-
|
1007
|
-
fn is_args(&self) -> bool {
|
1008
|
-
match self {
|
1009
|
-
Self::Args { .. } => true,
|
1010
|
-
_ => false,
|
1011
|
-
}
|
1012
|
-
}
|
1013
|
-
|
1014
|
-
fn is_term(&self) -> MachTerminator {
|
1015
|
-
match self {
|
1016
|
-
&Inst::Rets { .. } => MachTerminator::Ret,
|
1017
|
-
&Inst::ReturnCall { .. } | &Inst::ReturnCallInd { .. } => MachTerminator::RetCall,
|
1018
|
-
&Inst::Jump { .. } => MachTerminator::Uncond,
|
1019
|
-
&Inst::CondBr { .. } => MachTerminator::Cond,
|
1020
|
-
&Inst::TestBitAndBranch { .. } => MachTerminator::Cond,
|
1021
|
-
&Inst::IndirectBr { .. } => MachTerminator::Indirect,
|
1022
|
-
&Inst::JTSequence { .. } => MachTerminator::Indirect,
|
1023
|
-
_ => MachTerminator::None,
|
1024
|
-
}
|
1025
|
-
}
|
1026
|
-
|
1027
|
-
fn is_mem_access(&self) -> bool {
|
1028
|
-
match self {
|
1029
|
-
&Inst::ULoad8 { .. }
|
1030
|
-
| &Inst::SLoad8 { .. }
|
1031
|
-
| &Inst::ULoad16 { .. }
|
1032
|
-
| &Inst::SLoad16 { .. }
|
1033
|
-
| &Inst::ULoad32 { .. }
|
1034
|
-
| &Inst::SLoad32 { .. }
|
1035
|
-
| &Inst::ULoad64 { .. }
|
1036
|
-
| &Inst::LoadP64 { .. }
|
1037
|
-
| &Inst::FpuLoad16 { .. }
|
1038
|
-
| &Inst::FpuLoad32 { .. }
|
1039
|
-
| &Inst::FpuLoad64 { .. }
|
1040
|
-
| &Inst::FpuLoad128 { .. }
|
1041
|
-
| &Inst::FpuLoadP64 { .. }
|
1042
|
-
| &Inst::FpuLoadP128 { .. }
|
1043
|
-
| &Inst::Store8 { .. }
|
1044
|
-
| &Inst::Store16 { .. }
|
1045
|
-
| &Inst::Store32 { .. }
|
1046
|
-
| &Inst::Store64 { .. }
|
1047
|
-
| &Inst::StoreP64 { .. }
|
1048
|
-
| &Inst::FpuStore16 { .. }
|
1049
|
-
| &Inst::FpuStore32 { .. }
|
1050
|
-
| &Inst::FpuStore64 { .. }
|
1051
|
-
| &Inst::FpuStore128 { .. } => true,
|
1052
|
-
// TODO: verify this carefully
|
1053
|
-
_ => false,
|
1054
|
-
}
|
1055
|
-
}
|
1056
|
-
|
1057
|
-
fn gen_move(to_reg: Writable<Reg>, from_reg: Reg, ty: Type) -> Inst {
|
1058
|
-
let bits = ty.bits();
|
1059
|
-
|
1060
|
-
assert!(bits <= 128);
|
1061
|
-
assert!(to_reg.to_reg().class() == from_reg.class());
|
1062
|
-
match from_reg.class() {
|
1063
|
-
RegClass::Int => Inst::Mov {
|
1064
|
-
size: OperandSize::Size64,
|
1065
|
-
rd: to_reg,
|
1066
|
-
rm: from_reg,
|
1067
|
-
},
|
1068
|
-
RegClass::Float => {
|
1069
|
-
if bits > 64 {
|
1070
|
-
Inst::FpuMove128 {
|
1071
|
-
rd: to_reg,
|
1072
|
-
rn: from_reg,
|
1073
|
-
}
|
1074
|
-
} else {
|
1075
|
-
Inst::FpuMove64 {
|
1076
|
-
rd: to_reg,
|
1077
|
-
rn: from_reg,
|
1078
|
-
}
|
1079
|
-
}
|
1080
|
-
}
|
1081
|
-
RegClass::Vector => unreachable!(),
|
1082
|
-
}
|
1083
|
-
}
|
1084
|
-
|
1085
|
-
fn is_safepoint(&self) -> bool {
|
1086
|
-
match self {
|
1087
|
-
Inst::Call { .. } | Inst::CallInd { .. } => true,
|
1088
|
-
_ => false,
|
1089
|
-
}
|
1090
|
-
}
|
1091
|
-
|
1092
|
-
fn gen_dummy_use(reg: Reg) -> Inst {
|
1093
|
-
Inst::DummyUse { reg }
|
1094
|
-
}
|
1095
|
-
|
1096
|
-
fn gen_nop(preferred_size: usize) -> Inst {
|
1097
|
-
if preferred_size == 0 {
|
1098
|
-
return Inst::Nop0;
|
1099
|
-
}
|
1100
|
-
// We can't give a NOP (or any insn) < 4 bytes.
|
1101
|
-
assert!(preferred_size >= 4);
|
1102
|
-
Inst::Nop4
|
1103
|
-
}
|
1104
|
-
|
1105
|
-
fn rc_for_type(ty: Type) -> CodegenResult<(&'static [RegClass], &'static [Type])> {
|
1106
|
-
match ty {
|
1107
|
-
I8 => Ok((&[RegClass::Int], &[I8])),
|
1108
|
-
I16 => Ok((&[RegClass::Int], &[I16])),
|
1109
|
-
I32 => Ok((&[RegClass::Int], &[I32])),
|
1110
|
-
I64 => Ok((&[RegClass::Int], &[I64])),
|
1111
|
-
F16 => Ok((&[RegClass::Float], &[F16])),
|
1112
|
-
F32 => Ok((&[RegClass::Float], &[F32])),
|
1113
|
-
F64 => Ok((&[RegClass::Float], &[F64])),
|
1114
|
-
F128 => Ok((&[RegClass::Float], &[F128])),
|
1115
|
-
I128 => Ok((&[RegClass::Int, RegClass::Int], &[I64, I64])),
|
1116
|
-
_ if ty.is_vector() => {
|
1117
|
-
assert!(ty.bits() <= 128);
|
1118
|
-
Ok((&[RegClass::Float], &[I8X16]))
|
1119
|
-
}
|
1120
|
-
_ if ty.is_dynamic_vector() => Ok((&[RegClass::Float], &[I8X16])),
|
1121
|
-
_ => Err(CodegenError::Unsupported(format!(
|
1122
|
-
"Unexpected SSA-value type: {ty}"
|
1123
|
-
))),
|
1124
|
-
}
|
1125
|
-
}
|
1126
|
-
|
1127
|
-
fn canonical_type_for_rc(rc: RegClass) -> Type {
|
1128
|
-
match rc {
|
1129
|
-
RegClass::Float => types::I8X16,
|
1130
|
-
RegClass::Int => types::I64,
|
1131
|
-
RegClass::Vector => unreachable!(),
|
1132
|
-
}
|
1133
|
-
}
|
1134
|
-
|
1135
|
-
fn gen_jump(target: MachLabel) -> Inst {
|
1136
|
-
Inst::Jump {
|
1137
|
-
dest: BranchTarget::Label(target),
|
1138
|
-
}
|
1139
|
-
}
|
1140
|
-
|
1141
|
-
fn worst_case_size() -> CodeOffset {
|
1142
|
-
// The maximum size, in bytes, of any `Inst`'s emitted code. We have at least one case of
|
1143
|
-
// an 8-instruction sequence (saturating int-to-float conversions) with three embedded
|
1144
|
-
// 64-bit f64 constants.
|
1145
|
-
//
|
1146
|
-
// Note that inline jump-tables handle island/pool insertion separately, so we do not need
|
1147
|
-
// to account for them here (otherwise the worst case would be 2^31 * 4, clearly not
|
1148
|
-
// feasible for other reasons).
|
1149
|
-
44
|
1150
|
-
}
|
1151
|
-
|
1152
|
-
fn ref_type_regclass(_: &settings::Flags) -> RegClass {
|
1153
|
-
RegClass::Int
|
1154
|
-
}
|
1155
|
-
|
1156
|
-
fn gen_block_start(
|
1157
|
-
is_indirect_branch_target: bool,
|
1158
|
-
is_forward_edge_cfi_enabled: bool,
|
1159
|
-
) -> Option<Self> {
|
1160
|
-
if is_indirect_branch_target && is_forward_edge_cfi_enabled {
|
1161
|
-
Some(Inst::Bti {
|
1162
|
-
targets: BranchTargetType::J,
|
1163
|
-
})
|
1164
|
-
} else {
|
1165
|
-
None
|
1166
|
-
}
|
1167
|
-
}
|
1168
|
-
|
1169
|
-
fn function_alignment() -> FunctionAlignment {
|
1170
|
-
// We use 32-byte alignment for performance reasons, but for correctness
|
1171
|
-
// we would only need 4-byte alignment.
|
1172
|
-
FunctionAlignment {
|
1173
|
-
minimum: 4,
|
1174
|
-
preferred: 32,
|
1175
|
-
}
|
1176
|
-
}
|
1177
|
-
}
|
1178
|
-
|
1179
|
-
//=============================================================================
|
1180
|
-
// Pretty-printing of instructions.
|
1181
|
-
|
1182
|
-
fn mem_finalize_for_show(mem: &AMode, access_ty: Type, state: &EmitState) -> (String, String) {
|
1183
|
-
let (mem_insts, mem) = mem_finalize(None, mem, access_ty, state);
|
1184
|
-
let mut mem_str = mem_insts
|
1185
|
-
.into_iter()
|
1186
|
-
.map(|inst| inst.print_with_state(&mut EmitState::default()))
|
1187
|
-
.collect::<Vec<_>>()
|
1188
|
-
.join(" ; ");
|
1189
|
-
if !mem_str.is_empty() {
|
1190
|
-
mem_str += " ; ";
|
1191
|
-
}
|
1192
|
-
|
1193
|
-
let mem = mem.pretty_print(access_ty.bytes() as u8);
|
1194
|
-
(mem_str, mem)
|
1195
|
-
}
|
1196
|
-
|
1197
|
-
impl Inst {
|
1198
|
-
fn print_with_state(&self, state: &mut EmitState) -> String {
|
1199
|
-
fn op_name(alu_op: ALUOp) -> &'static str {
|
1200
|
-
match alu_op {
|
1201
|
-
ALUOp::Add => "add",
|
1202
|
-
ALUOp::Sub => "sub",
|
1203
|
-
ALUOp::Orr => "orr",
|
1204
|
-
ALUOp::And => "and",
|
1205
|
-
ALUOp::AndS => "ands",
|
1206
|
-
ALUOp::Eor => "eor",
|
1207
|
-
ALUOp::AddS => "adds",
|
1208
|
-
ALUOp::SubS => "subs",
|
1209
|
-
ALUOp::SMulH => "smulh",
|
1210
|
-
ALUOp::UMulH => "umulh",
|
1211
|
-
ALUOp::SDiv => "sdiv",
|
1212
|
-
ALUOp::UDiv => "udiv",
|
1213
|
-
ALUOp::AndNot => "bic",
|
1214
|
-
ALUOp::OrrNot => "orn",
|
1215
|
-
ALUOp::EorNot => "eon",
|
1216
|
-
ALUOp::RotR => "ror",
|
1217
|
-
ALUOp::Lsr => "lsr",
|
1218
|
-
ALUOp::Asr => "asr",
|
1219
|
-
ALUOp::Lsl => "lsl",
|
1220
|
-
ALUOp::Adc => "adc",
|
1221
|
-
ALUOp::AdcS => "adcs",
|
1222
|
-
ALUOp::Sbc => "sbc",
|
1223
|
-
ALUOp::SbcS => "sbcs",
|
1224
|
-
}
|
1225
|
-
}
|
1226
|
-
|
1227
|
-
match self {
|
1228
|
-
&Inst::Nop0 => "nop-zero-len".to_string(),
|
1229
|
-
&Inst::Nop4 => "nop".to_string(),
|
1230
|
-
&Inst::AluRRR {
|
1231
|
-
alu_op,
|
1232
|
-
size,
|
1233
|
-
rd,
|
1234
|
-
rn,
|
1235
|
-
rm,
|
1236
|
-
} => {
|
1237
|
-
let op = op_name(alu_op);
|
1238
|
-
let rd = pretty_print_ireg(rd.to_reg(), size);
|
1239
|
-
let rn = pretty_print_ireg(rn, size);
|
1240
|
-
let rm = pretty_print_ireg(rm, size);
|
1241
|
-
format!("{op} {rd}, {rn}, {rm}")
|
1242
|
-
}
|
1243
|
-
&Inst::AluRRRR {
|
1244
|
-
alu_op,
|
1245
|
-
size,
|
1246
|
-
rd,
|
1247
|
-
rn,
|
1248
|
-
rm,
|
1249
|
-
ra,
|
1250
|
-
} => {
|
1251
|
-
let (op, da_size) = match alu_op {
|
1252
|
-
ALUOp3::MAdd => ("madd", size),
|
1253
|
-
ALUOp3::MSub => ("msub", size),
|
1254
|
-
ALUOp3::UMAddL => ("umaddl", OperandSize::Size64),
|
1255
|
-
ALUOp3::SMAddL => ("smaddl", OperandSize::Size64),
|
1256
|
-
};
|
1257
|
-
let rd = pretty_print_ireg(rd.to_reg(), da_size);
|
1258
|
-
let rn = pretty_print_ireg(rn, size);
|
1259
|
-
let rm = pretty_print_ireg(rm, size);
|
1260
|
-
let ra = pretty_print_ireg(ra, da_size);
|
1261
|
-
|
1262
|
-
format!("{op} {rd}, {rn}, {rm}, {ra}")
|
1263
|
-
}
|
1264
|
-
&Inst::AluRRImm12 {
|
1265
|
-
alu_op,
|
1266
|
-
size,
|
1267
|
-
rd,
|
1268
|
-
rn,
|
1269
|
-
ref imm12,
|
1270
|
-
} => {
|
1271
|
-
let op = op_name(alu_op);
|
1272
|
-
let rd = pretty_print_ireg(rd.to_reg(), size);
|
1273
|
-
let rn = pretty_print_ireg(rn, size);
|
1274
|
-
|
1275
|
-
if imm12.bits == 0 && alu_op == ALUOp::Add && size.is64() {
|
1276
|
-
// special-case MOV (used for moving into SP).
|
1277
|
-
format!("mov {rd}, {rn}")
|
1278
|
-
} else {
|
1279
|
-
let imm12 = imm12.pretty_print(0);
|
1280
|
-
format!("{op} {rd}, {rn}, {imm12}")
|
1281
|
-
}
|
1282
|
-
}
|
1283
|
-
&Inst::AluRRImmLogic {
|
1284
|
-
alu_op,
|
1285
|
-
size,
|
1286
|
-
rd,
|
1287
|
-
rn,
|
1288
|
-
ref imml,
|
1289
|
-
} => {
|
1290
|
-
let op = op_name(alu_op);
|
1291
|
-
let rd = pretty_print_ireg(rd.to_reg(), size);
|
1292
|
-
let rn = pretty_print_ireg(rn, size);
|
1293
|
-
let imml = imml.pretty_print(0);
|
1294
|
-
format!("{op} {rd}, {rn}, {imml}")
|
1295
|
-
}
|
1296
|
-
&Inst::AluRRImmShift {
|
1297
|
-
alu_op,
|
1298
|
-
size,
|
1299
|
-
rd,
|
1300
|
-
rn,
|
1301
|
-
ref immshift,
|
1302
|
-
} => {
|
1303
|
-
let op = op_name(alu_op);
|
1304
|
-
let rd = pretty_print_ireg(rd.to_reg(), size);
|
1305
|
-
let rn = pretty_print_ireg(rn, size);
|
1306
|
-
let immshift = immshift.pretty_print(0);
|
1307
|
-
format!("{op} {rd}, {rn}, {immshift}")
|
1308
|
-
}
|
1309
|
-
&Inst::AluRRRShift {
|
1310
|
-
alu_op,
|
1311
|
-
size,
|
1312
|
-
rd,
|
1313
|
-
rn,
|
1314
|
-
rm,
|
1315
|
-
ref shiftop,
|
1316
|
-
} => {
|
1317
|
-
let op = op_name(alu_op);
|
1318
|
-
let rd = pretty_print_ireg(rd.to_reg(), size);
|
1319
|
-
let rn = pretty_print_ireg(rn, size);
|
1320
|
-
let rm = pretty_print_ireg(rm, size);
|
1321
|
-
let shiftop = shiftop.pretty_print(0);
|
1322
|
-
format!("{op} {rd}, {rn}, {rm}, {shiftop}")
|
1323
|
-
}
|
1324
|
-
&Inst::AluRRRExtend {
|
1325
|
-
alu_op,
|
1326
|
-
size,
|
1327
|
-
rd,
|
1328
|
-
rn,
|
1329
|
-
rm,
|
1330
|
-
ref extendop,
|
1331
|
-
} => {
|
1332
|
-
let op = op_name(alu_op);
|
1333
|
-
let rd = pretty_print_ireg(rd.to_reg(), size);
|
1334
|
-
let rn = pretty_print_ireg(rn, size);
|
1335
|
-
let rm = pretty_print_ireg(rm, size);
|
1336
|
-
let extendop = extendop.pretty_print(0);
|
1337
|
-
format!("{op} {rd}, {rn}, {rm}, {extendop}")
|
1338
|
-
}
|
1339
|
-
&Inst::BitRR { op, size, rd, rn } => {
|
1340
|
-
let op = op.op_str();
|
1341
|
-
let rd = pretty_print_ireg(rd.to_reg(), size);
|
1342
|
-
let rn = pretty_print_ireg(rn, size);
|
1343
|
-
format!("{op} {rd}, {rn}")
|
1344
|
-
}
|
1345
|
-
&Inst::ULoad8 { rd, ref mem, .. }
|
1346
|
-
| &Inst::SLoad8 { rd, ref mem, .. }
|
1347
|
-
| &Inst::ULoad16 { rd, ref mem, .. }
|
1348
|
-
| &Inst::SLoad16 { rd, ref mem, .. }
|
1349
|
-
| &Inst::ULoad32 { rd, ref mem, .. }
|
1350
|
-
| &Inst::SLoad32 { rd, ref mem, .. }
|
1351
|
-
| &Inst::ULoad64 { rd, ref mem, .. } => {
|
1352
|
-
let is_unscaled = match &mem {
|
1353
|
-
&AMode::Unscaled { .. } => true,
|
1354
|
-
_ => false,
|
1355
|
-
};
|
1356
|
-
let (op, size) = match (self, is_unscaled) {
|
1357
|
-
(&Inst::ULoad8 { .. }, false) => ("ldrb", OperandSize::Size32),
|
1358
|
-
(&Inst::ULoad8 { .. }, true) => ("ldurb", OperandSize::Size32),
|
1359
|
-
(&Inst::SLoad8 { .. }, false) => ("ldrsb", OperandSize::Size64),
|
1360
|
-
(&Inst::SLoad8 { .. }, true) => ("ldursb", OperandSize::Size64),
|
1361
|
-
(&Inst::ULoad16 { .. }, false) => ("ldrh", OperandSize::Size32),
|
1362
|
-
(&Inst::ULoad16 { .. }, true) => ("ldurh", OperandSize::Size32),
|
1363
|
-
(&Inst::SLoad16 { .. }, false) => ("ldrsh", OperandSize::Size64),
|
1364
|
-
(&Inst::SLoad16 { .. }, true) => ("ldursh", OperandSize::Size64),
|
1365
|
-
(&Inst::ULoad32 { .. }, false) => ("ldr", OperandSize::Size32),
|
1366
|
-
(&Inst::ULoad32 { .. }, true) => ("ldur", OperandSize::Size32),
|
1367
|
-
(&Inst::SLoad32 { .. }, false) => ("ldrsw", OperandSize::Size64),
|
1368
|
-
(&Inst::SLoad32 { .. }, true) => ("ldursw", OperandSize::Size64),
|
1369
|
-
(&Inst::ULoad64 { .. }, false) => ("ldr", OperandSize::Size64),
|
1370
|
-
(&Inst::ULoad64 { .. }, true) => ("ldur", OperandSize::Size64),
|
1371
|
-
_ => unreachable!(),
|
1372
|
-
};
|
1373
|
-
|
1374
|
-
let rd = pretty_print_ireg(rd.to_reg(), size);
|
1375
|
-
let mem = mem.clone();
|
1376
|
-
let access_ty = self.mem_type().unwrap();
|
1377
|
-
let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
|
1378
|
-
|
1379
|
-
format!("{mem_str}{op} {rd}, {mem}")
|
1380
|
-
}
|
1381
|
-
&Inst::Store8 { rd, ref mem, .. }
|
1382
|
-
| &Inst::Store16 { rd, ref mem, .. }
|
1383
|
-
| &Inst::Store32 { rd, ref mem, .. }
|
1384
|
-
| &Inst::Store64 { rd, ref mem, .. } => {
|
1385
|
-
let is_unscaled = match &mem {
|
1386
|
-
&AMode::Unscaled { .. } => true,
|
1387
|
-
_ => false,
|
1388
|
-
};
|
1389
|
-
let (op, size) = match (self, is_unscaled) {
|
1390
|
-
(&Inst::Store8 { .. }, false) => ("strb", OperandSize::Size32),
|
1391
|
-
(&Inst::Store8 { .. }, true) => ("sturb", OperandSize::Size32),
|
1392
|
-
(&Inst::Store16 { .. }, false) => ("strh", OperandSize::Size32),
|
1393
|
-
(&Inst::Store16 { .. }, true) => ("sturh", OperandSize::Size32),
|
1394
|
-
(&Inst::Store32 { .. }, false) => ("str", OperandSize::Size32),
|
1395
|
-
(&Inst::Store32 { .. }, true) => ("stur", OperandSize::Size32),
|
1396
|
-
(&Inst::Store64 { .. }, false) => ("str", OperandSize::Size64),
|
1397
|
-
(&Inst::Store64 { .. }, true) => ("stur", OperandSize::Size64),
|
1398
|
-
_ => unreachable!(),
|
1399
|
-
};
|
1400
|
-
|
1401
|
-
let rd = pretty_print_ireg(rd, size);
|
1402
|
-
let mem = mem.clone();
|
1403
|
-
let access_ty = self.mem_type().unwrap();
|
1404
|
-
let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
|
1405
|
-
|
1406
|
-
format!("{mem_str}{op} {rd}, {mem}")
|
1407
|
-
}
|
1408
|
-
&Inst::StoreP64 {
|
1409
|
-
rt, rt2, ref mem, ..
|
1410
|
-
} => {
|
1411
|
-
let rt = pretty_print_ireg(rt, OperandSize::Size64);
|
1412
|
-
let rt2 = pretty_print_ireg(rt2, OperandSize::Size64);
|
1413
|
-
let mem = mem.clone();
|
1414
|
-
let mem = mem.pretty_print_default();
|
1415
|
-
format!("stp {rt}, {rt2}, {mem}")
|
1416
|
-
}
|
1417
|
-
&Inst::LoadP64 {
|
1418
|
-
rt, rt2, ref mem, ..
|
1419
|
-
} => {
|
1420
|
-
let rt = pretty_print_ireg(rt.to_reg(), OperandSize::Size64);
|
1421
|
-
let rt2 = pretty_print_ireg(rt2.to_reg(), OperandSize::Size64);
|
1422
|
-
let mem = mem.clone();
|
1423
|
-
let mem = mem.pretty_print_default();
|
1424
|
-
format!("ldp {rt}, {rt2}, {mem}")
|
1425
|
-
}
|
1426
|
-
&Inst::Mov { size, rd, rm } => {
|
1427
|
-
let rd = pretty_print_ireg(rd.to_reg(), size);
|
1428
|
-
let rm = pretty_print_ireg(rm, size);
|
1429
|
-
format!("mov {rd}, {rm}")
|
1430
|
-
}
|
1431
|
-
&Inst::MovFromPReg { rd, rm } => {
|
1432
|
-
let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size64);
|
1433
|
-
let rm = show_ireg_sized(rm.into(), OperandSize::Size64);
|
1434
|
-
format!("mov {rd}, {rm}")
|
1435
|
-
}
|
1436
|
-
&Inst::MovToPReg { rd, rm } => {
|
1437
|
-
let rd = show_ireg_sized(rd.into(), OperandSize::Size64);
|
1438
|
-
let rm = pretty_print_ireg(rm, OperandSize::Size64);
|
1439
|
-
format!("mov {rd}, {rm}")
|
1440
|
-
}
|
1441
|
-
&Inst::MovWide {
|
1442
|
-
op,
|
1443
|
-
rd,
|
1444
|
-
ref imm,
|
1445
|
-
size,
|
1446
|
-
} => {
|
1447
|
-
let op_str = match op {
|
1448
|
-
MoveWideOp::MovZ => "movz",
|
1449
|
-
MoveWideOp::MovN => "movn",
|
1450
|
-
};
|
1451
|
-
let rd = pretty_print_ireg(rd.to_reg(), size);
|
1452
|
-
let imm = imm.pretty_print(0);
|
1453
|
-
format!("{op_str} {rd}, {imm}")
|
1454
|
-
}
|
1455
|
-
&Inst::MovK {
|
1456
|
-
rd,
|
1457
|
-
rn,
|
1458
|
-
ref imm,
|
1459
|
-
size,
|
1460
|
-
} => {
|
1461
|
-
let rn = pretty_print_ireg(rn, size);
|
1462
|
-
let rd = pretty_print_ireg(rd.to_reg(), size);
|
1463
|
-
let imm = imm.pretty_print(0);
|
1464
|
-
format!("movk {rd}, {rn}, {imm}")
|
1465
|
-
}
|
1466
|
-
&Inst::CSel { rd, rn, rm, cond } => {
|
1467
|
-
let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size64);
|
1468
|
-
let rn = pretty_print_ireg(rn, OperandSize::Size64);
|
1469
|
-
let rm = pretty_print_ireg(rm, OperandSize::Size64);
|
1470
|
-
let cond = cond.pretty_print(0);
|
1471
|
-
format!("csel {rd}, {rn}, {rm}, {cond}")
|
1472
|
-
}
|
1473
|
-
&Inst::CSNeg { rd, rn, rm, cond } => {
|
1474
|
-
let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size64);
|
1475
|
-
let rn = pretty_print_ireg(rn, OperandSize::Size64);
|
1476
|
-
let rm = pretty_print_ireg(rm, OperandSize::Size64);
|
1477
|
-
let cond = cond.pretty_print(0);
|
1478
|
-
format!("csneg {rd}, {rn}, {rm}, {cond}")
|
1479
|
-
}
|
1480
|
-
&Inst::CSet { rd, cond } => {
|
1481
|
-
let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size64);
|
1482
|
-
let cond = cond.pretty_print(0);
|
1483
|
-
format!("cset {rd}, {cond}")
|
1484
|
-
}
|
1485
|
-
&Inst::CSetm { rd, cond } => {
|
1486
|
-
let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size64);
|
1487
|
-
let cond = cond.pretty_print(0);
|
1488
|
-
format!("csetm {rd}, {cond}")
|
1489
|
-
}
|
1490
|
-
&Inst::CCmp {
|
1491
|
-
size,
|
1492
|
-
rn,
|
1493
|
-
rm,
|
1494
|
-
nzcv,
|
1495
|
-
cond,
|
1496
|
-
} => {
|
1497
|
-
let rn = pretty_print_ireg(rn, size);
|
1498
|
-
let rm = pretty_print_ireg(rm, size);
|
1499
|
-
let nzcv = nzcv.pretty_print(0);
|
1500
|
-
let cond = cond.pretty_print(0);
|
1501
|
-
format!("ccmp {rn}, {rm}, {nzcv}, {cond}")
|
1502
|
-
}
|
1503
|
-
&Inst::CCmpImm {
|
1504
|
-
size,
|
1505
|
-
rn,
|
1506
|
-
imm,
|
1507
|
-
nzcv,
|
1508
|
-
cond,
|
1509
|
-
} => {
|
1510
|
-
let rn = pretty_print_ireg(rn, size);
|
1511
|
-
let imm = imm.pretty_print(0);
|
1512
|
-
let nzcv = nzcv.pretty_print(0);
|
1513
|
-
let cond = cond.pretty_print(0);
|
1514
|
-
format!("ccmp {rn}, {imm}, {nzcv}, {cond}")
|
1515
|
-
}
|
1516
|
-
&Inst::AtomicRMW {
|
1517
|
-
rs, rt, rn, ty, op, ..
|
1518
|
-
} => {
|
1519
|
-
let op = match op {
|
1520
|
-
AtomicRMWOp::Add => "ldaddal",
|
1521
|
-
AtomicRMWOp::Clr => "ldclral",
|
1522
|
-
AtomicRMWOp::Eor => "ldeoral",
|
1523
|
-
AtomicRMWOp::Set => "ldsetal",
|
1524
|
-
AtomicRMWOp::Smax => "ldsmaxal",
|
1525
|
-
AtomicRMWOp::Umax => "ldumaxal",
|
1526
|
-
AtomicRMWOp::Smin => "ldsminal",
|
1527
|
-
AtomicRMWOp::Umin => "lduminal",
|
1528
|
-
AtomicRMWOp::Swp => "swpal",
|
1529
|
-
};
|
1530
|
-
|
1531
|
-
let size = OperandSize::from_ty(ty);
|
1532
|
-
let rs = pretty_print_ireg(rs, size);
|
1533
|
-
let rt = pretty_print_ireg(rt.to_reg(), size);
|
1534
|
-
let rn = pretty_print_ireg(rn, OperandSize::Size64);
|
1535
|
-
|
1536
|
-
let ty_suffix = match ty {
|
1537
|
-
I8 => "b",
|
1538
|
-
I16 => "h",
|
1539
|
-
_ => "",
|
1540
|
-
};
|
1541
|
-
format!("{op}{ty_suffix} {rs}, {rt}, [{rn}]")
|
1542
|
-
}
|
1543
|
-
&Inst::AtomicRMWLoop {
|
1544
|
-
ty,
|
1545
|
-
op,
|
1546
|
-
addr,
|
1547
|
-
operand,
|
1548
|
-
oldval,
|
1549
|
-
scratch1,
|
1550
|
-
scratch2,
|
1551
|
-
..
|
1552
|
-
} => {
|
1553
|
-
let op = match op {
|
1554
|
-
AtomicRMWLoopOp::Add => "add",
|
1555
|
-
AtomicRMWLoopOp::Sub => "sub",
|
1556
|
-
AtomicRMWLoopOp::Eor => "eor",
|
1557
|
-
AtomicRMWLoopOp::Orr => "orr",
|
1558
|
-
AtomicRMWLoopOp::And => "and",
|
1559
|
-
AtomicRMWLoopOp::Nand => "nand",
|
1560
|
-
AtomicRMWLoopOp::Smin => "smin",
|
1561
|
-
AtomicRMWLoopOp::Smax => "smax",
|
1562
|
-
AtomicRMWLoopOp::Umin => "umin",
|
1563
|
-
AtomicRMWLoopOp::Umax => "umax",
|
1564
|
-
AtomicRMWLoopOp::Xchg => "xchg",
|
1565
|
-
};
|
1566
|
-
let addr = pretty_print_ireg(addr, OperandSize::Size64);
|
1567
|
-
let operand = pretty_print_ireg(operand, OperandSize::Size64);
|
1568
|
-
let oldval = pretty_print_ireg(oldval.to_reg(), OperandSize::Size64);
|
1569
|
-
let scratch1 = pretty_print_ireg(scratch1.to_reg(), OperandSize::Size64);
|
1570
|
-
let scratch2 = pretty_print_ireg(scratch2.to_reg(), OperandSize::Size64);
|
1571
|
-
format!(
|
1572
|
-
"atomic_rmw_loop_{}_{} addr={} operand={} oldval={} scratch1={} scratch2={}",
|
1573
|
-
op,
|
1574
|
-
ty.bits(),
|
1575
|
-
addr,
|
1576
|
-
operand,
|
1577
|
-
oldval,
|
1578
|
-
scratch1,
|
1579
|
-
scratch2,
|
1580
|
-
)
|
1581
|
-
}
|
1582
|
-
&Inst::AtomicCAS {
|
1583
|
-
rd, rs, rt, rn, ty, ..
|
1584
|
-
} => {
|
1585
|
-
let op = match ty {
|
1586
|
-
I8 => "casalb",
|
1587
|
-
I16 => "casalh",
|
1588
|
-
I32 | I64 => "casal",
|
1589
|
-
_ => panic!("Unsupported type: {ty}"),
|
1590
|
-
};
|
1591
|
-
let size = OperandSize::from_ty(ty);
|
1592
|
-
let rd = pretty_print_ireg(rd.to_reg(), size);
|
1593
|
-
let rs = pretty_print_ireg(rs, size);
|
1594
|
-
let rt = pretty_print_ireg(rt, size);
|
1595
|
-
let rn = pretty_print_ireg(rn, OperandSize::Size64);
|
1596
|
-
|
1597
|
-
format!("{op} {rd}, {rs}, {rt}, [{rn}]")
|
1598
|
-
}
|
1599
|
-
&Inst::AtomicCASLoop {
|
1600
|
-
ty,
|
1601
|
-
addr,
|
1602
|
-
expected,
|
1603
|
-
replacement,
|
1604
|
-
oldval,
|
1605
|
-
scratch,
|
1606
|
-
..
|
1607
|
-
} => {
|
1608
|
-
let addr = pretty_print_ireg(addr, OperandSize::Size64);
|
1609
|
-
let expected = pretty_print_ireg(expected, OperandSize::Size64);
|
1610
|
-
let replacement = pretty_print_ireg(replacement, OperandSize::Size64);
|
1611
|
-
let oldval = pretty_print_ireg(oldval.to_reg(), OperandSize::Size64);
|
1612
|
-
let scratch = pretty_print_ireg(scratch.to_reg(), OperandSize::Size64);
|
1613
|
-
format!(
|
1614
|
-
"atomic_cas_loop_{} addr={}, expect={}, replacement={}, oldval={}, scratch={}",
|
1615
|
-
ty.bits(),
|
1616
|
-
addr,
|
1617
|
-
expected,
|
1618
|
-
replacement,
|
1619
|
-
oldval,
|
1620
|
-
scratch,
|
1621
|
-
)
|
1622
|
-
}
|
1623
|
-
&Inst::LoadAcquire {
|
1624
|
-
access_ty, rt, rn, ..
|
1625
|
-
} => {
|
1626
|
-
let (op, ty) = match access_ty {
|
1627
|
-
I8 => ("ldarb", I32),
|
1628
|
-
I16 => ("ldarh", I32),
|
1629
|
-
I32 => ("ldar", I32),
|
1630
|
-
I64 => ("ldar", I64),
|
1631
|
-
_ => panic!("Unsupported type: {access_ty}"),
|
1632
|
-
};
|
1633
|
-
let size = OperandSize::from_ty(ty);
|
1634
|
-
let rn = pretty_print_ireg(rn, OperandSize::Size64);
|
1635
|
-
let rt = pretty_print_ireg(rt.to_reg(), size);
|
1636
|
-
format!("{op} {rt}, [{rn}]")
|
1637
|
-
}
|
1638
|
-
&Inst::StoreRelease {
|
1639
|
-
access_ty, rt, rn, ..
|
1640
|
-
} => {
|
1641
|
-
let (op, ty) = match access_ty {
|
1642
|
-
I8 => ("stlrb", I32),
|
1643
|
-
I16 => ("stlrh", I32),
|
1644
|
-
I32 => ("stlr", I32),
|
1645
|
-
I64 => ("stlr", I64),
|
1646
|
-
_ => panic!("Unsupported type: {access_ty}"),
|
1647
|
-
};
|
1648
|
-
let size = OperandSize::from_ty(ty);
|
1649
|
-
let rn = pretty_print_ireg(rn, OperandSize::Size64);
|
1650
|
-
let rt = pretty_print_ireg(rt, size);
|
1651
|
-
format!("{op} {rt}, [{rn}]")
|
1652
|
-
}
|
1653
|
-
&Inst::Fence {} => {
|
1654
|
-
format!("dmb ish")
|
1655
|
-
}
|
1656
|
-
&Inst::Csdb {} => {
|
1657
|
-
format!("csdb")
|
1658
|
-
}
|
1659
|
-
&Inst::FpuMove32 { rd, rn } => {
|
1660
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size32);
|
1661
|
-
let rn = pretty_print_vreg_scalar(rn, ScalarSize::Size32);
|
1662
|
-
format!("fmov {rd}, {rn}")
|
1663
|
-
}
|
1664
|
-
&Inst::FpuMove64 { rd, rn } => {
|
1665
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64);
|
1666
|
-
let rn = pretty_print_vreg_scalar(rn, ScalarSize::Size64);
|
1667
|
-
format!("fmov {rd}, {rn}")
|
1668
|
-
}
|
1669
|
-
&Inst::FpuMove128 { rd, rn } => {
|
1670
|
-
let rd = pretty_print_reg(rd.to_reg());
|
1671
|
-
let rn = pretty_print_reg(rn);
|
1672
|
-
format!("mov {rd}.16b, {rn}.16b")
|
1673
|
-
}
|
1674
|
-
&Inst::FpuMoveFromVec { rd, rn, idx, size } => {
|
1675
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), size.lane_size());
|
1676
|
-
let rn = pretty_print_vreg_element(rn, idx as usize, size.lane_size());
|
1677
|
-
format!("mov {rd}, {rn}")
|
1678
|
-
}
|
1679
|
-
&Inst::FpuExtend { rd, rn, size } => {
|
1680
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), size);
|
1681
|
-
let rn = pretty_print_vreg_scalar(rn, size);
|
1682
|
-
format!("fmov {rd}, {rn}")
|
1683
|
-
}
|
1684
|
-
&Inst::FpuRR {
|
1685
|
-
fpu_op,
|
1686
|
-
size,
|
1687
|
-
rd,
|
1688
|
-
rn,
|
1689
|
-
} => {
|
1690
|
-
let op = match fpu_op {
|
1691
|
-
FPUOp1::Abs => "fabs",
|
1692
|
-
FPUOp1::Neg => "fneg",
|
1693
|
-
FPUOp1::Sqrt => "fsqrt",
|
1694
|
-
FPUOp1::Cvt32To64 | FPUOp1::Cvt64To32 => "fcvt",
|
1695
|
-
};
|
1696
|
-
let dst_size = match fpu_op {
|
1697
|
-
FPUOp1::Cvt32To64 => ScalarSize::Size64,
|
1698
|
-
FPUOp1::Cvt64To32 => ScalarSize::Size32,
|
1699
|
-
_ => size,
|
1700
|
-
};
|
1701
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), dst_size);
|
1702
|
-
let rn = pretty_print_vreg_scalar(rn, size);
|
1703
|
-
format!("{op} {rd}, {rn}")
|
1704
|
-
}
|
1705
|
-
&Inst::FpuRRR {
|
1706
|
-
fpu_op,
|
1707
|
-
size,
|
1708
|
-
rd,
|
1709
|
-
rn,
|
1710
|
-
rm,
|
1711
|
-
} => {
|
1712
|
-
let op = match fpu_op {
|
1713
|
-
FPUOp2::Add => "fadd",
|
1714
|
-
FPUOp2::Sub => "fsub",
|
1715
|
-
FPUOp2::Mul => "fmul",
|
1716
|
-
FPUOp2::Div => "fdiv",
|
1717
|
-
FPUOp2::Max => "fmax",
|
1718
|
-
FPUOp2::Min => "fmin",
|
1719
|
-
};
|
1720
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), size);
|
1721
|
-
let rn = pretty_print_vreg_scalar(rn, size);
|
1722
|
-
let rm = pretty_print_vreg_scalar(rm, size);
|
1723
|
-
format!("{op} {rd}, {rn}, {rm}")
|
1724
|
-
}
|
1725
|
-
&Inst::FpuRRI { fpu_op, rd, rn } => {
|
1726
|
-
let (op, imm, vector) = match fpu_op {
|
1727
|
-
FPUOpRI::UShr32(imm) => ("ushr", imm.pretty_print(0), true),
|
1728
|
-
FPUOpRI::UShr64(imm) => ("ushr", imm.pretty_print(0), false),
|
1729
|
-
};
|
1730
|
-
|
1731
|
-
let (rd, rn) = if vector {
|
1732
|
-
(
|
1733
|
-
pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size32x2),
|
1734
|
-
pretty_print_vreg_vector(rn, VectorSize::Size32x2),
|
1735
|
-
)
|
1736
|
-
} else {
|
1737
|
-
(
|
1738
|
-
pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64),
|
1739
|
-
pretty_print_vreg_scalar(rn, ScalarSize::Size64),
|
1740
|
-
)
|
1741
|
-
};
|
1742
|
-
format!("{op} {rd}, {rn}, {imm}")
|
1743
|
-
}
|
1744
|
-
&Inst::FpuRRIMod { fpu_op, rd, ri, rn } => {
|
1745
|
-
let (op, imm, vector) = match fpu_op {
|
1746
|
-
FPUOpRIMod::Sli32(imm) => ("sli", imm.pretty_print(0), true),
|
1747
|
-
FPUOpRIMod::Sli64(imm) => ("sli", imm.pretty_print(0), false),
|
1748
|
-
};
|
1749
|
-
|
1750
|
-
let (rd, ri, rn) = if vector {
|
1751
|
-
(
|
1752
|
-
pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size32x2),
|
1753
|
-
pretty_print_vreg_vector(ri, VectorSize::Size32x2),
|
1754
|
-
pretty_print_vreg_vector(rn, VectorSize::Size32x2),
|
1755
|
-
)
|
1756
|
-
} else {
|
1757
|
-
(
|
1758
|
-
pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64),
|
1759
|
-
pretty_print_vreg_scalar(ri, ScalarSize::Size64),
|
1760
|
-
pretty_print_vreg_scalar(rn, ScalarSize::Size64),
|
1761
|
-
)
|
1762
|
-
};
|
1763
|
-
format!("{op} {rd}, {ri}, {rn}, {imm}")
|
1764
|
-
}
|
1765
|
-
&Inst::FpuRRRR {
|
1766
|
-
fpu_op,
|
1767
|
-
size,
|
1768
|
-
rd,
|
1769
|
-
rn,
|
1770
|
-
rm,
|
1771
|
-
ra,
|
1772
|
-
} => {
|
1773
|
-
let op = match fpu_op {
|
1774
|
-
FPUOp3::MAdd => "fmadd",
|
1775
|
-
FPUOp3::MSub => "fmsub",
|
1776
|
-
FPUOp3::NMAdd => "fnmadd",
|
1777
|
-
FPUOp3::NMSub => "fnmsub",
|
1778
|
-
};
|
1779
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), size);
|
1780
|
-
let rn = pretty_print_vreg_scalar(rn, size);
|
1781
|
-
let rm = pretty_print_vreg_scalar(rm, size);
|
1782
|
-
let ra = pretty_print_vreg_scalar(ra, size);
|
1783
|
-
format!("{op} {rd}, {rn}, {rm}, {ra}")
|
1784
|
-
}
|
1785
|
-
&Inst::FpuCmp { size, rn, rm } => {
|
1786
|
-
let rn = pretty_print_vreg_scalar(rn, size);
|
1787
|
-
let rm = pretty_print_vreg_scalar(rm, size);
|
1788
|
-
format!("fcmp {rn}, {rm}")
|
1789
|
-
}
|
1790
|
-
&Inst::FpuLoad16 { rd, ref mem, .. } => {
|
1791
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size16);
|
1792
|
-
let mem = mem.clone();
|
1793
|
-
let access_ty = self.mem_type().unwrap();
|
1794
|
-
let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
|
1795
|
-
format!("{mem_str}ldr {rd}, {mem}")
|
1796
|
-
}
|
1797
|
-
&Inst::FpuLoad32 { rd, ref mem, .. } => {
|
1798
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size32);
|
1799
|
-
let mem = mem.clone();
|
1800
|
-
let access_ty = self.mem_type().unwrap();
|
1801
|
-
let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
|
1802
|
-
format!("{mem_str}ldr {rd}, {mem}")
|
1803
|
-
}
|
1804
|
-
&Inst::FpuLoad64 { rd, ref mem, .. } => {
|
1805
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64);
|
1806
|
-
let mem = mem.clone();
|
1807
|
-
let access_ty = self.mem_type().unwrap();
|
1808
|
-
let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
|
1809
|
-
format!("{mem_str}ldr {rd}, {mem}")
|
1810
|
-
}
|
1811
|
-
&Inst::FpuLoad128 { rd, ref mem, .. } => {
|
1812
|
-
let rd = pretty_print_reg(rd.to_reg());
|
1813
|
-
let rd = "q".to_string() + &rd[1..];
|
1814
|
-
let mem = mem.clone();
|
1815
|
-
let access_ty = self.mem_type().unwrap();
|
1816
|
-
let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
|
1817
|
-
format!("{mem_str}ldr {rd}, {mem}")
|
1818
|
-
}
|
1819
|
-
&Inst::FpuStore16 { rd, ref mem, .. } => {
|
1820
|
-
let rd = pretty_print_vreg_scalar(rd, ScalarSize::Size16);
|
1821
|
-
let mem = mem.clone();
|
1822
|
-
let access_ty = self.mem_type().unwrap();
|
1823
|
-
let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
|
1824
|
-
format!("{mem_str}str {rd}, {mem}")
|
1825
|
-
}
|
1826
|
-
&Inst::FpuStore32 { rd, ref mem, .. } => {
|
1827
|
-
let rd = pretty_print_vreg_scalar(rd, ScalarSize::Size32);
|
1828
|
-
let mem = mem.clone();
|
1829
|
-
let access_ty = self.mem_type().unwrap();
|
1830
|
-
let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
|
1831
|
-
format!("{mem_str}str {rd}, {mem}")
|
1832
|
-
}
|
1833
|
-
&Inst::FpuStore64 { rd, ref mem, .. } => {
|
1834
|
-
let rd = pretty_print_vreg_scalar(rd, ScalarSize::Size64);
|
1835
|
-
let mem = mem.clone();
|
1836
|
-
let access_ty = self.mem_type().unwrap();
|
1837
|
-
let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
|
1838
|
-
format!("{mem_str}str {rd}, {mem}")
|
1839
|
-
}
|
1840
|
-
&Inst::FpuStore128 { rd, ref mem, .. } => {
|
1841
|
-
let rd = pretty_print_reg(rd);
|
1842
|
-
let rd = "q".to_string() + &rd[1..];
|
1843
|
-
let mem = mem.clone();
|
1844
|
-
let access_ty = self.mem_type().unwrap();
|
1845
|
-
let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
|
1846
|
-
format!("{mem_str}str {rd}, {mem}")
|
1847
|
-
}
|
1848
|
-
&Inst::FpuLoadP64 {
|
1849
|
-
rt, rt2, ref mem, ..
|
1850
|
-
} => {
|
1851
|
-
let rt = pretty_print_vreg_scalar(rt.to_reg(), ScalarSize::Size64);
|
1852
|
-
let rt2 = pretty_print_vreg_scalar(rt2.to_reg(), ScalarSize::Size64);
|
1853
|
-
let mem = mem.clone();
|
1854
|
-
let mem = mem.pretty_print_default();
|
1855
|
-
|
1856
|
-
format!("ldp {rt}, {rt2}, {mem}")
|
1857
|
-
}
|
1858
|
-
&Inst::FpuStoreP64 {
|
1859
|
-
rt, rt2, ref mem, ..
|
1860
|
-
} => {
|
1861
|
-
let rt = pretty_print_vreg_scalar(rt, ScalarSize::Size64);
|
1862
|
-
let rt2 = pretty_print_vreg_scalar(rt2, ScalarSize::Size64);
|
1863
|
-
let mem = mem.clone();
|
1864
|
-
let mem = mem.pretty_print_default();
|
1865
|
-
|
1866
|
-
format!("stp {rt}, {rt2}, {mem}")
|
1867
|
-
}
|
1868
|
-
&Inst::FpuLoadP128 {
|
1869
|
-
rt, rt2, ref mem, ..
|
1870
|
-
} => {
|
1871
|
-
let rt = pretty_print_vreg_scalar(rt.to_reg(), ScalarSize::Size128);
|
1872
|
-
let rt2 = pretty_print_vreg_scalar(rt2.to_reg(), ScalarSize::Size128);
|
1873
|
-
let mem = mem.clone();
|
1874
|
-
let mem = mem.pretty_print_default();
|
1875
|
-
|
1876
|
-
format!("ldp {rt}, {rt2}, {mem}")
|
1877
|
-
}
|
1878
|
-
&Inst::FpuStoreP128 {
|
1879
|
-
rt, rt2, ref mem, ..
|
1880
|
-
} => {
|
1881
|
-
let rt = pretty_print_vreg_scalar(rt, ScalarSize::Size128);
|
1882
|
-
let rt2 = pretty_print_vreg_scalar(rt2, ScalarSize::Size128);
|
1883
|
-
let mem = mem.clone();
|
1884
|
-
let mem = mem.pretty_print_default();
|
1885
|
-
|
1886
|
-
format!("stp {rt}, {rt2}, {mem}")
|
1887
|
-
}
|
1888
|
-
&Inst::FpuToInt { op, rd, rn } => {
|
1889
|
-
let (op, sizesrc, sizedest) = match op {
|
1890
|
-
FpuToIntOp::F32ToI32 => ("fcvtzs", ScalarSize::Size32, OperandSize::Size32),
|
1891
|
-
FpuToIntOp::F32ToU32 => ("fcvtzu", ScalarSize::Size32, OperandSize::Size32),
|
1892
|
-
FpuToIntOp::F32ToI64 => ("fcvtzs", ScalarSize::Size32, OperandSize::Size64),
|
1893
|
-
FpuToIntOp::F32ToU64 => ("fcvtzu", ScalarSize::Size32, OperandSize::Size64),
|
1894
|
-
FpuToIntOp::F64ToI32 => ("fcvtzs", ScalarSize::Size64, OperandSize::Size32),
|
1895
|
-
FpuToIntOp::F64ToU32 => ("fcvtzu", ScalarSize::Size64, OperandSize::Size32),
|
1896
|
-
FpuToIntOp::F64ToI64 => ("fcvtzs", ScalarSize::Size64, OperandSize::Size64),
|
1897
|
-
FpuToIntOp::F64ToU64 => ("fcvtzu", ScalarSize::Size64, OperandSize::Size64),
|
1898
|
-
};
|
1899
|
-
let rd = pretty_print_ireg(rd.to_reg(), sizedest);
|
1900
|
-
let rn = pretty_print_vreg_scalar(rn, sizesrc);
|
1901
|
-
format!("{op} {rd}, {rn}")
|
1902
|
-
}
|
1903
|
-
&Inst::IntToFpu { op, rd, rn } => {
|
1904
|
-
let (op, sizesrc, sizedest) = match op {
|
1905
|
-
IntToFpuOp::I32ToF32 => ("scvtf", OperandSize::Size32, ScalarSize::Size32),
|
1906
|
-
IntToFpuOp::U32ToF32 => ("ucvtf", OperandSize::Size32, ScalarSize::Size32),
|
1907
|
-
IntToFpuOp::I64ToF32 => ("scvtf", OperandSize::Size64, ScalarSize::Size32),
|
1908
|
-
IntToFpuOp::U64ToF32 => ("ucvtf", OperandSize::Size64, ScalarSize::Size32),
|
1909
|
-
IntToFpuOp::I32ToF64 => ("scvtf", OperandSize::Size32, ScalarSize::Size64),
|
1910
|
-
IntToFpuOp::U32ToF64 => ("ucvtf", OperandSize::Size32, ScalarSize::Size64),
|
1911
|
-
IntToFpuOp::I64ToF64 => ("scvtf", OperandSize::Size64, ScalarSize::Size64),
|
1912
|
-
IntToFpuOp::U64ToF64 => ("ucvtf", OperandSize::Size64, ScalarSize::Size64),
|
1913
|
-
};
|
1914
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), sizedest);
|
1915
|
-
let rn = pretty_print_ireg(rn, sizesrc);
|
1916
|
-
format!("{op} {rd}, {rn}")
|
1917
|
-
}
|
1918
|
-
&Inst::FpuCSel16 { rd, rn, rm, cond } => {
|
1919
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size16);
|
1920
|
-
let rn = pretty_print_vreg_scalar(rn, ScalarSize::Size16);
|
1921
|
-
let rm = pretty_print_vreg_scalar(rm, ScalarSize::Size16);
|
1922
|
-
let cond = cond.pretty_print(0);
|
1923
|
-
format!("fcsel {rd}, {rn}, {rm}, {cond}")
|
1924
|
-
}
|
1925
|
-
&Inst::FpuCSel32 { rd, rn, rm, cond } => {
|
1926
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size32);
|
1927
|
-
let rn = pretty_print_vreg_scalar(rn, ScalarSize::Size32);
|
1928
|
-
let rm = pretty_print_vreg_scalar(rm, ScalarSize::Size32);
|
1929
|
-
let cond = cond.pretty_print(0);
|
1930
|
-
format!("fcsel {rd}, {rn}, {rm}, {cond}")
|
1931
|
-
}
|
1932
|
-
&Inst::FpuCSel64 { rd, rn, rm, cond } => {
|
1933
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64);
|
1934
|
-
let rn = pretty_print_vreg_scalar(rn, ScalarSize::Size64);
|
1935
|
-
let rm = pretty_print_vreg_scalar(rm, ScalarSize::Size64);
|
1936
|
-
let cond = cond.pretty_print(0);
|
1937
|
-
format!("fcsel {rd}, {rn}, {rm}, {cond}")
|
1938
|
-
}
|
1939
|
-
&Inst::FpuRound { op, rd, rn } => {
|
1940
|
-
let (inst, size) = match op {
|
1941
|
-
FpuRoundMode::Minus32 => ("frintm", ScalarSize::Size32),
|
1942
|
-
FpuRoundMode::Minus64 => ("frintm", ScalarSize::Size64),
|
1943
|
-
FpuRoundMode::Plus32 => ("frintp", ScalarSize::Size32),
|
1944
|
-
FpuRoundMode::Plus64 => ("frintp", ScalarSize::Size64),
|
1945
|
-
FpuRoundMode::Zero32 => ("frintz", ScalarSize::Size32),
|
1946
|
-
FpuRoundMode::Zero64 => ("frintz", ScalarSize::Size64),
|
1947
|
-
FpuRoundMode::Nearest32 => ("frintn", ScalarSize::Size32),
|
1948
|
-
FpuRoundMode::Nearest64 => ("frintn", ScalarSize::Size64),
|
1949
|
-
};
|
1950
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), size);
|
1951
|
-
let rn = pretty_print_vreg_scalar(rn, size);
|
1952
|
-
format!("{inst} {rd}, {rn}")
|
1953
|
-
}
|
1954
|
-
&Inst::MovToFpu { rd, rn, size } => {
|
1955
|
-
let operand_size = size.operand_size();
|
1956
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), size);
|
1957
|
-
let rn = pretty_print_ireg(rn, operand_size);
|
1958
|
-
format!("fmov {rd}, {rn}")
|
1959
|
-
}
|
1960
|
-
&Inst::FpuMoveFPImm { rd, imm, size } => {
|
1961
|
-
let imm = imm.pretty_print(0);
|
1962
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), size);
|
1963
|
-
|
1964
|
-
format!("fmov {rd}, {imm}")
|
1965
|
-
}
|
1966
|
-
&Inst::MovToVec {
|
1967
|
-
rd,
|
1968
|
-
ri,
|
1969
|
-
rn,
|
1970
|
-
idx,
|
1971
|
-
size,
|
1972
|
-
} => {
|
1973
|
-
let rd = pretty_print_vreg_element(rd.to_reg(), idx as usize, size.lane_size());
|
1974
|
-
let ri = pretty_print_vreg_element(ri, idx as usize, size.lane_size());
|
1975
|
-
let rn = pretty_print_ireg(rn, size.operand_size());
|
1976
|
-
format!("mov {rd}, {ri}, {rn}")
|
1977
|
-
}
|
1978
|
-
&Inst::MovFromVec { rd, rn, idx, size } => {
|
1979
|
-
let op = match size {
|
1980
|
-
ScalarSize::Size8 => "umov",
|
1981
|
-
ScalarSize::Size16 => "umov",
|
1982
|
-
ScalarSize::Size32 => "mov",
|
1983
|
-
ScalarSize::Size64 => "mov",
|
1984
|
-
_ => unimplemented!(),
|
1985
|
-
};
|
1986
|
-
let rd = pretty_print_ireg(rd.to_reg(), size.operand_size());
|
1987
|
-
let rn = pretty_print_vreg_element(rn, idx as usize, size);
|
1988
|
-
format!("{op} {rd}, {rn}")
|
1989
|
-
}
|
1990
|
-
&Inst::MovFromVecSigned {
|
1991
|
-
rd,
|
1992
|
-
rn,
|
1993
|
-
idx,
|
1994
|
-
size,
|
1995
|
-
scalar_size,
|
1996
|
-
} => {
|
1997
|
-
let rd = pretty_print_ireg(rd.to_reg(), scalar_size);
|
1998
|
-
let rn = pretty_print_vreg_element(rn, idx as usize, size.lane_size());
|
1999
|
-
format!("smov {rd}, {rn}")
|
2000
|
-
}
|
2001
|
-
&Inst::VecDup { rd, rn, size } => {
|
2002
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), size);
|
2003
|
-
let rn = pretty_print_ireg(rn, size.operand_size());
|
2004
|
-
format!("dup {rd}, {rn}")
|
2005
|
-
}
|
2006
|
-
&Inst::VecDupFromFpu { rd, rn, size, lane } => {
|
2007
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), size);
|
2008
|
-
let rn = pretty_print_vreg_element(rn, lane.into(), size.lane_size());
|
2009
|
-
format!("dup {rd}, {rn}")
|
2010
|
-
}
|
2011
|
-
&Inst::VecDupFPImm { rd, imm, size } => {
|
2012
|
-
let imm = imm.pretty_print(0);
|
2013
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), size);
|
2014
|
-
|
2015
|
-
format!("fmov {rd}, {imm}")
|
2016
|
-
}
|
2017
|
-
&Inst::VecDupImm {
|
2018
|
-
rd,
|
2019
|
-
imm,
|
2020
|
-
invert,
|
2021
|
-
size,
|
2022
|
-
} => {
|
2023
|
-
let imm = imm.pretty_print(0);
|
2024
|
-
let op = if invert { "mvni" } else { "movi" };
|
2025
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), size);
|
2026
|
-
|
2027
|
-
format!("{op} {rd}, {imm}")
|
2028
|
-
}
|
2029
|
-
&Inst::VecExtend {
|
2030
|
-
t,
|
2031
|
-
rd,
|
2032
|
-
rn,
|
2033
|
-
high_half,
|
2034
|
-
lane_size,
|
2035
|
-
} => {
|
2036
|
-
let vec64 = VectorSize::from_lane_size(lane_size.narrow(), false);
|
2037
|
-
let vec128 = VectorSize::from_lane_size(lane_size.narrow(), true);
|
2038
|
-
let rd_size = VectorSize::from_lane_size(lane_size, true);
|
2039
|
-
let (op, rn_size) = match (t, high_half) {
|
2040
|
-
(VecExtendOp::Sxtl, false) => ("sxtl", vec64),
|
2041
|
-
(VecExtendOp::Sxtl, true) => ("sxtl2", vec128),
|
2042
|
-
(VecExtendOp::Uxtl, false) => ("uxtl", vec64),
|
2043
|
-
(VecExtendOp::Uxtl, true) => ("uxtl2", vec128),
|
2044
|
-
};
|
2045
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), rd_size);
|
2046
|
-
let rn = pretty_print_vreg_vector(rn, rn_size);
|
2047
|
-
format!("{op} {rd}, {rn}")
|
2048
|
-
}
|
2049
|
-
&Inst::VecMovElement {
|
2050
|
-
rd,
|
2051
|
-
ri,
|
2052
|
-
rn,
|
2053
|
-
dest_idx,
|
2054
|
-
src_idx,
|
2055
|
-
size,
|
2056
|
-
} => {
|
2057
|
-
let rd =
|
2058
|
-
pretty_print_vreg_element(rd.to_reg(), dest_idx as usize, size.lane_size());
|
2059
|
-
let ri = pretty_print_vreg_element(ri, dest_idx as usize, size.lane_size());
|
2060
|
-
let rn = pretty_print_vreg_element(rn, src_idx as usize, size.lane_size());
|
2061
|
-
format!("mov {rd}, {ri}, {rn}")
|
2062
|
-
}
|
2063
|
-
&Inst::VecRRLong {
|
2064
|
-
op,
|
2065
|
-
rd,
|
2066
|
-
rn,
|
2067
|
-
high_half,
|
2068
|
-
} => {
|
2069
|
-
let (op, rd_size, size, suffix) = match (op, high_half) {
|
2070
|
-
(VecRRLongOp::Fcvtl16, false) => {
|
2071
|
-
("fcvtl", VectorSize::Size32x4, VectorSize::Size16x4, "")
|
2072
|
-
}
|
2073
|
-
(VecRRLongOp::Fcvtl16, true) => {
|
2074
|
-
("fcvtl2", VectorSize::Size32x4, VectorSize::Size16x8, "")
|
2075
|
-
}
|
2076
|
-
(VecRRLongOp::Fcvtl32, false) => {
|
2077
|
-
("fcvtl", VectorSize::Size64x2, VectorSize::Size32x2, "")
|
2078
|
-
}
|
2079
|
-
(VecRRLongOp::Fcvtl32, true) => {
|
2080
|
-
("fcvtl2", VectorSize::Size64x2, VectorSize::Size32x4, "")
|
2081
|
-
}
|
2082
|
-
(VecRRLongOp::Shll8, false) => {
|
2083
|
-
("shll", VectorSize::Size16x8, VectorSize::Size8x8, ", #8")
|
2084
|
-
}
|
2085
|
-
(VecRRLongOp::Shll8, true) => {
|
2086
|
-
("shll2", VectorSize::Size16x8, VectorSize::Size8x16, ", #8")
|
2087
|
-
}
|
2088
|
-
(VecRRLongOp::Shll16, false) => {
|
2089
|
-
("shll", VectorSize::Size32x4, VectorSize::Size16x4, ", #16")
|
2090
|
-
}
|
2091
|
-
(VecRRLongOp::Shll16, true) => {
|
2092
|
-
("shll2", VectorSize::Size32x4, VectorSize::Size16x8, ", #16")
|
2093
|
-
}
|
2094
|
-
(VecRRLongOp::Shll32, false) => {
|
2095
|
-
("shll", VectorSize::Size64x2, VectorSize::Size32x2, ", #32")
|
2096
|
-
}
|
2097
|
-
(VecRRLongOp::Shll32, true) => {
|
2098
|
-
("shll2", VectorSize::Size64x2, VectorSize::Size32x4, ", #32")
|
2099
|
-
}
|
2100
|
-
};
|
2101
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), rd_size);
|
2102
|
-
let rn = pretty_print_vreg_vector(rn, size);
|
2103
|
-
|
2104
|
-
format!("{op} {rd}, {rn}{suffix}")
|
2105
|
-
}
|
2106
|
-
&Inst::VecRRNarrowLow {
|
2107
|
-
op,
|
2108
|
-
rd,
|
2109
|
-
rn,
|
2110
|
-
lane_size,
|
2111
|
-
..
|
2112
|
-
}
|
2113
|
-
| &Inst::VecRRNarrowHigh {
|
2114
|
-
op,
|
2115
|
-
rd,
|
2116
|
-
rn,
|
2117
|
-
lane_size,
|
2118
|
-
..
|
2119
|
-
} => {
|
2120
|
-
let vec64 = VectorSize::from_lane_size(lane_size, false);
|
2121
|
-
let vec128 = VectorSize::from_lane_size(lane_size, true);
|
2122
|
-
let rn_size = VectorSize::from_lane_size(lane_size.widen(), true);
|
2123
|
-
let high_half = match self {
|
2124
|
-
&Inst::VecRRNarrowLow { .. } => false,
|
2125
|
-
&Inst::VecRRNarrowHigh { .. } => true,
|
2126
|
-
_ => unreachable!(),
|
2127
|
-
};
|
2128
|
-
let (op, rd_size) = match (op, high_half) {
|
2129
|
-
(VecRRNarrowOp::Xtn, false) => ("xtn", vec64),
|
2130
|
-
(VecRRNarrowOp::Xtn, true) => ("xtn2", vec128),
|
2131
|
-
(VecRRNarrowOp::Sqxtn, false) => ("sqxtn", vec64),
|
2132
|
-
(VecRRNarrowOp::Sqxtn, true) => ("sqxtn2", vec128),
|
2133
|
-
(VecRRNarrowOp::Sqxtun, false) => ("sqxtun", vec64),
|
2134
|
-
(VecRRNarrowOp::Sqxtun, true) => ("sqxtun2", vec128),
|
2135
|
-
(VecRRNarrowOp::Uqxtn, false) => ("uqxtn", vec64),
|
2136
|
-
(VecRRNarrowOp::Uqxtn, true) => ("uqxtn2", vec128),
|
2137
|
-
(VecRRNarrowOp::Fcvtn, false) => ("fcvtn", vec64),
|
2138
|
-
(VecRRNarrowOp::Fcvtn, true) => ("fcvtn2", vec128),
|
2139
|
-
};
|
2140
|
-
let rn = pretty_print_vreg_vector(rn, rn_size);
|
2141
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), rd_size);
|
2142
|
-
let ri = match self {
|
2143
|
-
&Inst::VecRRNarrowLow { .. } => "".to_string(),
|
2144
|
-
&Inst::VecRRNarrowHigh { ri, .. } => {
|
2145
|
-
format!("{}, ", pretty_print_vreg_vector(ri, rd_size))
|
2146
|
-
}
|
2147
|
-
_ => unreachable!(),
|
2148
|
-
};
|
2149
|
-
|
2150
|
-
format!("{op} {rd}, {ri}{rn}")
|
2151
|
-
}
|
2152
|
-
&Inst::VecRRPair { op, rd, rn } => {
|
2153
|
-
let op = match op {
|
2154
|
-
VecPairOp::Addp => "addp",
|
2155
|
-
};
|
2156
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64);
|
2157
|
-
let rn = pretty_print_vreg_vector(rn, VectorSize::Size64x2);
|
2158
|
-
|
2159
|
-
format!("{op} {rd}, {rn}")
|
2160
|
-
}
|
2161
|
-
&Inst::VecRRPairLong { op, rd, rn } => {
|
2162
|
-
let (op, dest, src) = match op {
|
2163
|
-
VecRRPairLongOp::Saddlp8 => {
|
2164
|
-
("saddlp", VectorSize::Size16x8, VectorSize::Size8x16)
|
2165
|
-
}
|
2166
|
-
VecRRPairLongOp::Saddlp16 => {
|
2167
|
-
("saddlp", VectorSize::Size32x4, VectorSize::Size16x8)
|
2168
|
-
}
|
2169
|
-
VecRRPairLongOp::Uaddlp8 => {
|
2170
|
-
("uaddlp", VectorSize::Size16x8, VectorSize::Size8x16)
|
2171
|
-
}
|
2172
|
-
VecRRPairLongOp::Uaddlp16 => {
|
2173
|
-
("uaddlp", VectorSize::Size32x4, VectorSize::Size16x8)
|
2174
|
-
}
|
2175
|
-
};
|
2176
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), dest);
|
2177
|
-
let rn = pretty_print_vreg_vector(rn, src);
|
2178
|
-
|
2179
|
-
format!("{op} {rd}, {rn}")
|
2180
|
-
}
|
2181
|
-
&Inst::VecRRR {
|
2182
|
-
rd,
|
2183
|
-
rn,
|
2184
|
-
rm,
|
2185
|
-
alu_op,
|
2186
|
-
size,
|
2187
|
-
} => {
|
2188
|
-
let (op, size) = match alu_op {
|
2189
|
-
VecALUOp::Sqadd => ("sqadd", size),
|
2190
|
-
VecALUOp::Uqadd => ("uqadd", size),
|
2191
|
-
VecALUOp::Sqsub => ("sqsub", size),
|
2192
|
-
VecALUOp::Uqsub => ("uqsub", size),
|
2193
|
-
VecALUOp::Cmeq => ("cmeq", size),
|
2194
|
-
VecALUOp::Cmge => ("cmge", size),
|
2195
|
-
VecALUOp::Cmgt => ("cmgt", size),
|
2196
|
-
VecALUOp::Cmhs => ("cmhs", size),
|
2197
|
-
VecALUOp::Cmhi => ("cmhi", size),
|
2198
|
-
VecALUOp::Fcmeq => ("fcmeq", size),
|
2199
|
-
VecALUOp::Fcmgt => ("fcmgt", size),
|
2200
|
-
VecALUOp::Fcmge => ("fcmge", size),
|
2201
|
-
VecALUOp::And => ("and", VectorSize::Size8x16),
|
2202
|
-
VecALUOp::Bic => ("bic", VectorSize::Size8x16),
|
2203
|
-
VecALUOp::Orr => ("orr", VectorSize::Size8x16),
|
2204
|
-
VecALUOp::Eor => ("eor", VectorSize::Size8x16),
|
2205
|
-
VecALUOp::Umaxp => ("umaxp", size),
|
2206
|
-
VecALUOp::Add => ("add", size),
|
2207
|
-
VecALUOp::Sub => ("sub", size),
|
2208
|
-
VecALUOp::Mul => ("mul", size),
|
2209
|
-
VecALUOp::Sshl => ("sshl", size),
|
2210
|
-
VecALUOp::Ushl => ("ushl", size),
|
2211
|
-
VecALUOp::Umin => ("umin", size),
|
2212
|
-
VecALUOp::Smin => ("smin", size),
|
2213
|
-
VecALUOp::Umax => ("umax", size),
|
2214
|
-
VecALUOp::Smax => ("smax", size),
|
2215
|
-
VecALUOp::Urhadd => ("urhadd", size),
|
2216
|
-
VecALUOp::Fadd => ("fadd", size),
|
2217
|
-
VecALUOp::Fsub => ("fsub", size),
|
2218
|
-
VecALUOp::Fdiv => ("fdiv", size),
|
2219
|
-
VecALUOp::Fmax => ("fmax", size),
|
2220
|
-
VecALUOp::Fmin => ("fmin", size),
|
2221
|
-
VecALUOp::Fmul => ("fmul", size),
|
2222
|
-
VecALUOp::Addp => ("addp", size),
|
2223
|
-
VecALUOp::Zip1 => ("zip1", size),
|
2224
|
-
VecALUOp::Zip2 => ("zip2", size),
|
2225
|
-
VecALUOp::Sqrdmulh => ("sqrdmulh", size),
|
2226
|
-
VecALUOp::Uzp1 => ("uzp1", size),
|
2227
|
-
VecALUOp::Uzp2 => ("uzp2", size),
|
2228
|
-
VecALUOp::Trn1 => ("trn1", size),
|
2229
|
-
VecALUOp::Trn2 => ("trn2", size),
|
2230
|
-
};
|
2231
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), size);
|
2232
|
-
let rn = pretty_print_vreg_vector(rn, size);
|
2233
|
-
let rm = pretty_print_vreg_vector(rm, size);
|
2234
|
-
format!("{op} {rd}, {rn}, {rm}")
|
2235
|
-
}
|
2236
|
-
&Inst::VecRRRMod {
|
2237
|
-
rd,
|
2238
|
-
ri,
|
2239
|
-
rn,
|
2240
|
-
rm,
|
2241
|
-
alu_op,
|
2242
|
-
size,
|
2243
|
-
} => {
|
2244
|
-
let (op, size) = match alu_op {
|
2245
|
-
VecALUModOp::Bsl => ("bsl", VectorSize::Size8x16),
|
2246
|
-
VecALUModOp::Fmla => ("fmla", size),
|
2247
|
-
VecALUModOp::Fmls => ("fmls", size),
|
2248
|
-
};
|
2249
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), size);
|
2250
|
-
let ri = pretty_print_vreg_vector(ri, size);
|
2251
|
-
let rn = pretty_print_vreg_vector(rn, size);
|
2252
|
-
let rm = pretty_print_vreg_vector(rm, size);
|
2253
|
-
format!("{op} {rd}, {ri}, {rn}, {rm}")
|
2254
|
-
}
|
2255
|
-
&Inst::VecFmlaElem {
|
2256
|
-
rd,
|
2257
|
-
ri,
|
2258
|
-
rn,
|
2259
|
-
rm,
|
2260
|
-
alu_op,
|
2261
|
-
size,
|
2262
|
-
idx,
|
2263
|
-
} => {
|
2264
|
-
let (op, size) = match alu_op {
|
2265
|
-
VecALUModOp::Fmla => ("fmla", size),
|
2266
|
-
VecALUModOp::Fmls => ("fmls", size),
|
2267
|
-
_ => unreachable!(),
|
2268
|
-
};
|
2269
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), size);
|
2270
|
-
let ri = pretty_print_vreg_vector(ri, size);
|
2271
|
-
let rn = pretty_print_vreg_vector(rn, size);
|
2272
|
-
let rm = pretty_print_vreg_element(rm, idx.into(), size.lane_size());
|
2273
|
-
format!("{op} {rd}, {ri}, {rn}, {rm}")
|
2274
|
-
}
|
2275
|
-
&Inst::VecRRRLong {
|
2276
|
-
rd,
|
2277
|
-
rn,
|
2278
|
-
rm,
|
2279
|
-
alu_op,
|
2280
|
-
high_half,
|
2281
|
-
} => {
|
2282
|
-
let (op, dest_size, src_size) = match (alu_op, high_half) {
|
2283
|
-
(VecRRRLongOp::Smull8, false) => {
|
2284
|
-
("smull", VectorSize::Size16x8, VectorSize::Size8x8)
|
2285
|
-
}
|
2286
|
-
(VecRRRLongOp::Smull8, true) => {
|
2287
|
-
("smull2", VectorSize::Size16x8, VectorSize::Size8x16)
|
2288
|
-
}
|
2289
|
-
(VecRRRLongOp::Smull16, false) => {
|
2290
|
-
("smull", VectorSize::Size32x4, VectorSize::Size16x4)
|
2291
|
-
}
|
2292
|
-
(VecRRRLongOp::Smull16, true) => {
|
2293
|
-
("smull2", VectorSize::Size32x4, VectorSize::Size16x8)
|
2294
|
-
}
|
2295
|
-
(VecRRRLongOp::Smull32, false) => {
|
2296
|
-
("smull", VectorSize::Size64x2, VectorSize::Size32x2)
|
2297
|
-
}
|
2298
|
-
(VecRRRLongOp::Smull32, true) => {
|
2299
|
-
("smull2", VectorSize::Size64x2, VectorSize::Size32x4)
|
2300
|
-
}
|
2301
|
-
(VecRRRLongOp::Umull8, false) => {
|
2302
|
-
("umull", VectorSize::Size16x8, VectorSize::Size8x8)
|
2303
|
-
}
|
2304
|
-
(VecRRRLongOp::Umull8, true) => {
|
2305
|
-
("umull2", VectorSize::Size16x8, VectorSize::Size8x16)
|
2306
|
-
}
|
2307
|
-
(VecRRRLongOp::Umull16, false) => {
|
2308
|
-
("umull", VectorSize::Size32x4, VectorSize::Size16x4)
|
2309
|
-
}
|
2310
|
-
(VecRRRLongOp::Umull16, true) => {
|
2311
|
-
("umull2", VectorSize::Size32x4, VectorSize::Size16x8)
|
2312
|
-
}
|
2313
|
-
(VecRRRLongOp::Umull32, false) => {
|
2314
|
-
("umull", VectorSize::Size64x2, VectorSize::Size32x2)
|
2315
|
-
}
|
2316
|
-
(VecRRRLongOp::Umull32, true) => {
|
2317
|
-
("umull2", VectorSize::Size64x2, VectorSize::Size32x4)
|
2318
|
-
}
|
2319
|
-
};
|
2320
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), dest_size);
|
2321
|
-
let rn = pretty_print_vreg_vector(rn, src_size);
|
2322
|
-
let rm = pretty_print_vreg_vector(rm, src_size);
|
2323
|
-
format!("{op} {rd}, {rn}, {rm}")
|
2324
|
-
}
|
2325
|
-
&Inst::VecRRRLongMod {
|
2326
|
-
rd,
|
2327
|
-
ri,
|
2328
|
-
rn,
|
2329
|
-
rm,
|
2330
|
-
alu_op,
|
2331
|
-
high_half,
|
2332
|
-
} => {
|
2333
|
-
let (op, dest_size, src_size) = match (alu_op, high_half) {
|
2334
|
-
(VecRRRLongModOp::Umlal8, false) => {
|
2335
|
-
("umlal", VectorSize::Size16x8, VectorSize::Size8x8)
|
2336
|
-
}
|
2337
|
-
(VecRRRLongModOp::Umlal8, true) => {
|
2338
|
-
("umlal2", VectorSize::Size16x8, VectorSize::Size8x16)
|
2339
|
-
}
|
2340
|
-
(VecRRRLongModOp::Umlal16, false) => {
|
2341
|
-
("umlal", VectorSize::Size32x4, VectorSize::Size16x4)
|
2342
|
-
}
|
2343
|
-
(VecRRRLongModOp::Umlal16, true) => {
|
2344
|
-
("umlal2", VectorSize::Size32x4, VectorSize::Size16x8)
|
2345
|
-
}
|
2346
|
-
(VecRRRLongModOp::Umlal32, false) => {
|
2347
|
-
("umlal", VectorSize::Size64x2, VectorSize::Size32x2)
|
2348
|
-
}
|
2349
|
-
(VecRRRLongModOp::Umlal32, true) => {
|
2350
|
-
("umlal2", VectorSize::Size64x2, VectorSize::Size32x4)
|
2351
|
-
}
|
2352
|
-
};
|
2353
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), dest_size);
|
2354
|
-
let ri = pretty_print_vreg_vector(ri, dest_size);
|
2355
|
-
let rn = pretty_print_vreg_vector(rn, src_size);
|
2356
|
-
let rm = pretty_print_vreg_vector(rm, src_size);
|
2357
|
-
format!("{op} {rd}, {ri}, {rn}, {rm}")
|
2358
|
-
}
|
2359
|
-
&Inst::VecMisc { op, rd, rn, size } => {
|
2360
|
-
let (op, size, suffix) = match op {
|
2361
|
-
VecMisc2::Not => (
|
2362
|
-
"mvn",
|
2363
|
-
if size.is_128bits() {
|
2364
|
-
VectorSize::Size8x16
|
2365
|
-
} else {
|
2366
|
-
VectorSize::Size8x8
|
2367
|
-
},
|
2368
|
-
"",
|
2369
|
-
),
|
2370
|
-
VecMisc2::Neg => ("neg", size, ""),
|
2371
|
-
VecMisc2::Abs => ("abs", size, ""),
|
2372
|
-
VecMisc2::Fabs => ("fabs", size, ""),
|
2373
|
-
VecMisc2::Fneg => ("fneg", size, ""),
|
2374
|
-
VecMisc2::Fsqrt => ("fsqrt", size, ""),
|
2375
|
-
VecMisc2::Rev16 => ("rev16", size, ""),
|
2376
|
-
VecMisc2::Rev32 => ("rev32", size, ""),
|
2377
|
-
VecMisc2::Rev64 => ("rev64", size, ""),
|
2378
|
-
VecMisc2::Fcvtzs => ("fcvtzs", size, ""),
|
2379
|
-
VecMisc2::Fcvtzu => ("fcvtzu", size, ""),
|
2380
|
-
VecMisc2::Scvtf => ("scvtf", size, ""),
|
2381
|
-
VecMisc2::Ucvtf => ("ucvtf", size, ""),
|
2382
|
-
VecMisc2::Frintn => ("frintn", size, ""),
|
2383
|
-
VecMisc2::Frintz => ("frintz", size, ""),
|
2384
|
-
VecMisc2::Frintm => ("frintm", size, ""),
|
2385
|
-
VecMisc2::Frintp => ("frintp", size, ""),
|
2386
|
-
VecMisc2::Cnt => ("cnt", size, ""),
|
2387
|
-
VecMisc2::Cmeq0 => ("cmeq", size, ", #0"),
|
2388
|
-
VecMisc2::Cmge0 => ("cmge", size, ", #0"),
|
2389
|
-
VecMisc2::Cmgt0 => ("cmgt", size, ", #0"),
|
2390
|
-
VecMisc2::Cmle0 => ("cmle", size, ", #0"),
|
2391
|
-
VecMisc2::Cmlt0 => ("cmlt", size, ", #0"),
|
2392
|
-
VecMisc2::Fcmeq0 => ("fcmeq", size, ", #0.0"),
|
2393
|
-
VecMisc2::Fcmge0 => ("fcmge", size, ", #0.0"),
|
2394
|
-
VecMisc2::Fcmgt0 => ("fcmgt", size, ", #0.0"),
|
2395
|
-
VecMisc2::Fcmle0 => ("fcmle", size, ", #0.0"),
|
2396
|
-
VecMisc2::Fcmlt0 => ("fcmlt", size, ", #0.0"),
|
2397
|
-
};
|
2398
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), size);
|
2399
|
-
let rn = pretty_print_vreg_vector(rn, size);
|
2400
|
-
format!("{op} {rd}, {rn}{suffix}")
|
2401
|
-
}
|
2402
|
-
&Inst::VecLanes { op, rd, rn, size } => {
|
2403
|
-
let op = match op {
|
2404
|
-
VecLanesOp::Uminv => "uminv",
|
2405
|
-
VecLanesOp::Addv => "addv",
|
2406
|
-
};
|
2407
|
-
let rd = pretty_print_vreg_scalar(rd.to_reg(), size.lane_size());
|
2408
|
-
let rn = pretty_print_vreg_vector(rn, size);
|
2409
|
-
format!("{op} {rd}, {rn}")
|
2410
|
-
}
|
2411
|
-
&Inst::VecShiftImm {
|
2412
|
-
op,
|
2413
|
-
rd,
|
2414
|
-
rn,
|
2415
|
-
size,
|
2416
|
-
imm,
|
2417
|
-
} => {
|
2418
|
-
let op = match op {
|
2419
|
-
VecShiftImmOp::Shl => "shl",
|
2420
|
-
VecShiftImmOp::Ushr => "ushr",
|
2421
|
-
VecShiftImmOp::Sshr => "sshr",
|
2422
|
-
};
|
2423
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), size);
|
2424
|
-
let rn = pretty_print_vreg_vector(rn, size);
|
2425
|
-
format!("{op} {rd}, {rn}, #{imm}")
|
2426
|
-
}
|
2427
|
-
&Inst::VecShiftImmMod {
|
2428
|
-
op,
|
2429
|
-
rd,
|
2430
|
-
ri,
|
2431
|
-
rn,
|
2432
|
-
size,
|
2433
|
-
imm,
|
2434
|
-
} => {
|
2435
|
-
let op = match op {
|
2436
|
-
VecShiftImmModOp::Sli => "sli",
|
2437
|
-
};
|
2438
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), size);
|
2439
|
-
let ri = pretty_print_vreg_vector(ri, size);
|
2440
|
-
let rn = pretty_print_vreg_vector(rn, size);
|
2441
|
-
format!("{op} {rd}, {ri}, {rn}, #{imm}")
|
2442
|
-
}
|
2443
|
-
&Inst::VecExtract { rd, rn, rm, imm4 } => {
|
2444
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16);
|
2445
|
-
let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16);
|
2446
|
-
let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16);
|
2447
|
-
format!("ext {rd}, {rn}, {rm}, #{imm4}")
|
2448
|
-
}
|
2449
|
-
&Inst::VecTbl { rd, rn, rm } => {
|
2450
|
-
let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16);
|
2451
|
-
let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16);
|
2452
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16);
|
2453
|
-
format!("tbl {rd}, {{ {rn} }}, {rm}")
|
2454
|
-
}
|
2455
|
-
&Inst::VecTblExt { rd, ri, rn, rm } => {
|
2456
|
-
let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16);
|
2457
|
-
let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16);
|
2458
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16);
|
2459
|
-
let ri = pretty_print_vreg_vector(ri, VectorSize::Size8x16);
|
2460
|
-
format!("tbx {rd}, {ri}, {{ {rn} }}, {rm}")
|
2461
|
-
}
|
2462
|
-
&Inst::VecTbl2 { rd, rn, rn2, rm } => {
|
2463
|
-
let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16);
|
2464
|
-
let rn2 = pretty_print_vreg_vector(rn2, VectorSize::Size8x16);
|
2465
|
-
let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16);
|
2466
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16);
|
2467
|
-
format!("tbl {rd}, {{ {rn}, {rn2} }}, {rm}")
|
2468
|
-
}
|
2469
|
-
&Inst::VecTbl2Ext {
|
2470
|
-
rd,
|
2471
|
-
ri,
|
2472
|
-
rn,
|
2473
|
-
rn2,
|
2474
|
-
rm,
|
2475
|
-
} => {
|
2476
|
-
let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16);
|
2477
|
-
let rn2 = pretty_print_vreg_vector(rn2, VectorSize::Size8x16);
|
2478
|
-
let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16);
|
2479
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16);
|
2480
|
-
let ri = pretty_print_vreg_vector(ri, VectorSize::Size8x16);
|
2481
|
-
format!("tbx {rd}, {ri}, {{ {rn}, {rn2} }}, {rm}")
|
2482
|
-
}
|
2483
|
-
&Inst::VecLoadReplicate { rd, rn, size, .. } => {
|
2484
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), size);
|
2485
|
-
let rn = pretty_print_reg(rn);
|
2486
|
-
|
2487
|
-
format!("ld1r {{ {rd} }}, [{rn}]")
|
2488
|
-
}
|
2489
|
-
&Inst::VecCSel { rd, rn, rm, cond } => {
|
2490
|
-
let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16);
|
2491
|
-
let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16);
|
2492
|
-
let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16);
|
2493
|
-
let cond = cond.pretty_print(0);
|
2494
|
-
format!("vcsel {rd}, {rn}, {rm}, {cond} (if-then-else diamond)")
|
2495
|
-
}
|
2496
|
-
&Inst::MovToNZCV { rn } => {
|
2497
|
-
let rn = pretty_print_reg(rn);
|
2498
|
-
format!("msr nzcv, {rn}")
|
2499
|
-
}
|
2500
|
-
&Inst::MovFromNZCV { rd } => {
|
2501
|
-
let rd = pretty_print_reg(rd.to_reg());
|
2502
|
-
format!("mrs {rd}, nzcv")
|
2503
|
-
}
|
2504
|
-
&Inst::Extend {
|
2505
|
-
rd,
|
2506
|
-
rn,
|
2507
|
-
signed: false,
|
2508
|
-
from_bits: 1,
|
2509
|
-
..
|
2510
|
-
} => {
|
2511
|
-
let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size32);
|
2512
|
-
let rn = pretty_print_ireg(rn, OperandSize::Size32);
|
2513
|
-
format!("and {rd}, {rn}, #1")
|
2514
|
-
}
|
2515
|
-
&Inst::Extend {
|
2516
|
-
rd,
|
2517
|
-
rn,
|
2518
|
-
signed: false,
|
2519
|
-
from_bits: 32,
|
2520
|
-
to_bits: 64,
|
2521
|
-
} => {
|
2522
|
-
// The case of a zero extension from 32 to 64 bits, is implemented
|
2523
|
-
// with a "mov" to a 32-bit (W-reg) dest, because this zeroes
|
2524
|
-
// the top 32 bits.
|
2525
|
-
let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size32);
|
2526
|
-
let rn = pretty_print_ireg(rn, OperandSize::Size32);
|
2527
|
-
format!("mov {rd}, {rn}")
|
2528
|
-
}
|
2529
|
-
&Inst::Extend {
|
2530
|
-
rd,
|
2531
|
-
rn,
|
2532
|
-
signed,
|
2533
|
-
from_bits,
|
2534
|
-
to_bits,
|
2535
|
-
} => {
|
2536
|
-
assert!(from_bits <= to_bits);
|
2537
|
-
let op = match (signed, from_bits) {
|
2538
|
-
(false, 8) => "uxtb",
|
2539
|
-
(true, 8) => "sxtb",
|
2540
|
-
(false, 16) => "uxth",
|
2541
|
-
(true, 16) => "sxth",
|
2542
|
-
(true, 32) => "sxtw",
|
2543
|
-
(true, _) => "sbfx",
|
2544
|
-
(false, _) => "ubfx",
|
2545
|
-
};
|
2546
|
-
if op == "sbfx" || op == "ubfx" {
|
2547
|
-
let dest_size = OperandSize::from_bits(to_bits);
|
2548
|
-
let rd = pretty_print_ireg(rd.to_reg(), dest_size);
|
2549
|
-
let rn = pretty_print_ireg(rn, dest_size);
|
2550
|
-
format!("{op} {rd}, {rn}, #0, #{from_bits}")
|
2551
|
-
} else {
|
2552
|
-
let dest_size = if signed {
|
2553
|
-
OperandSize::from_bits(to_bits)
|
2554
|
-
} else {
|
2555
|
-
OperandSize::Size32
|
2556
|
-
};
|
2557
|
-
let rd = pretty_print_ireg(rd.to_reg(), dest_size);
|
2558
|
-
let rn = pretty_print_ireg(rn, OperandSize::from_bits(from_bits));
|
2559
|
-
format!("{op} {rd}, {rn}")
|
2560
|
-
}
|
2561
|
-
}
|
2562
|
-
&Inst::Call { .. } => format!("bl 0"),
|
2563
|
-
&Inst::CallInd { ref info } => {
|
2564
|
-
let rn = pretty_print_reg(info.dest);
|
2565
|
-
format!("blr {rn}")
|
2566
|
-
}
|
2567
|
-
&Inst::ReturnCall { ref info } => {
|
2568
|
-
let mut s = format!(
|
2569
|
-
"return_call {:?} new_stack_arg_size:{}",
|
2570
|
-
info.dest, info.new_stack_arg_size
|
2571
|
-
);
|
2572
|
-
for ret in &info.uses {
|
2573
|
-
let preg = pretty_print_reg(ret.preg);
|
2574
|
-
let vreg = pretty_print_reg(ret.vreg);
|
2575
|
-
write!(&mut s, " {vreg}={preg}").unwrap();
|
2576
|
-
}
|
2577
|
-
s
|
2578
|
-
}
|
2579
|
-
&Inst::ReturnCallInd { ref info } => {
|
2580
|
-
let callee = pretty_print_reg(info.dest);
|
2581
|
-
let mut s = format!(
|
2582
|
-
"return_call_ind {callee} new_stack_arg_size:{}",
|
2583
|
-
info.new_stack_arg_size
|
2584
|
-
);
|
2585
|
-
for ret in &info.uses {
|
2586
|
-
let preg = pretty_print_reg(ret.preg);
|
2587
|
-
let vreg = pretty_print_reg(ret.vreg);
|
2588
|
-
write!(&mut s, " {vreg}={preg}").unwrap();
|
2589
|
-
}
|
2590
|
-
s
|
2591
|
-
}
|
2592
|
-
&Inst::Args { ref args } => {
|
2593
|
-
let mut s = "args".to_string();
|
2594
|
-
for arg in args {
|
2595
|
-
let preg = pretty_print_reg(arg.preg);
|
2596
|
-
let def = pretty_print_reg(arg.vreg.to_reg());
|
2597
|
-
write!(&mut s, " {def}={preg}").unwrap();
|
2598
|
-
}
|
2599
|
-
s
|
2600
|
-
}
|
2601
|
-
&Inst::Rets { ref rets } => {
|
2602
|
-
let mut s = "rets".to_string();
|
2603
|
-
for ret in rets {
|
2604
|
-
let preg = pretty_print_reg(ret.preg);
|
2605
|
-
let vreg = pretty_print_reg(ret.vreg);
|
2606
|
-
write!(&mut s, " {vreg}={preg}").unwrap();
|
2607
|
-
}
|
2608
|
-
s
|
2609
|
-
}
|
2610
|
-
&Inst::Ret {} => "ret".to_string(),
|
2611
|
-
&Inst::AuthenticatedRet { key, is_hint } => {
|
2612
|
-
let key = match key {
|
2613
|
-
APIKey::AZ => "az",
|
2614
|
-
APIKey::BZ => "bz",
|
2615
|
-
APIKey::ASP => "asp",
|
2616
|
-
APIKey::BSP => "bsp",
|
2617
|
-
};
|
2618
|
-
match is_hint {
|
2619
|
-
false => format!("reta{key}"),
|
2620
|
-
true => format!("auti{key} ; ret"),
|
2621
|
-
}
|
2622
|
-
}
|
2623
|
-
&Inst::Jump { ref dest } => {
|
2624
|
-
let dest = dest.pretty_print(0);
|
2625
|
-
format!("b {dest}")
|
2626
|
-
}
|
2627
|
-
&Inst::CondBr {
|
2628
|
-
ref taken,
|
2629
|
-
ref not_taken,
|
2630
|
-
ref kind,
|
2631
|
-
} => {
|
2632
|
-
let taken = taken.pretty_print(0);
|
2633
|
-
let not_taken = not_taken.pretty_print(0);
|
2634
|
-
match kind {
|
2635
|
-
&CondBrKind::Zero(reg) => {
|
2636
|
-
let reg = pretty_print_reg(reg);
|
2637
|
-
format!("cbz {reg}, {taken} ; b {not_taken}")
|
2638
|
-
}
|
2639
|
-
&CondBrKind::NotZero(reg) => {
|
2640
|
-
let reg = pretty_print_reg(reg);
|
2641
|
-
format!("cbnz {reg}, {taken} ; b {not_taken}")
|
2642
|
-
}
|
2643
|
-
&CondBrKind::Cond(c) => {
|
2644
|
-
let c = c.pretty_print(0);
|
2645
|
-
format!("b.{c} {taken} ; b {not_taken}")
|
2646
|
-
}
|
2647
|
-
}
|
2648
|
-
}
|
2649
|
-
&Inst::TestBitAndBranch {
|
2650
|
-
kind,
|
2651
|
-
ref taken,
|
2652
|
-
ref not_taken,
|
2653
|
-
rn,
|
2654
|
-
bit,
|
2655
|
-
} => {
|
2656
|
-
let cond = match kind {
|
2657
|
-
TestBitAndBranchKind::Z => "z",
|
2658
|
-
TestBitAndBranchKind::NZ => "nz",
|
2659
|
-
};
|
2660
|
-
let taken = taken.pretty_print(0);
|
2661
|
-
let not_taken = not_taken.pretty_print(0);
|
2662
|
-
let rn = pretty_print_reg(rn);
|
2663
|
-
format!("tb{cond} {rn}, #{bit}, {taken} ; b {not_taken}")
|
2664
|
-
}
|
2665
|
-
&Inst::IndirectBr { rn, .. } => {
|
2666
|
-
let rn = pretty_print_reg(rn);
|
2667
|
-
format!("br {rn}")
|
2668
|
-
}
|
2669
|
-
&Inst::Brk => "brk #0".to_string(),
|
2670
|
-
&Inst::Udf { .. } => "udf #0xc11f".to_string(),
|
2671
|
-
&Inst::TrapIf {
|
2672
|
-
ref kind,
|
2673
|
-
trap_code,
|
2674
|
-
} => match kind {
|
2675
|
-
&CondBrKind::Zero(reg) => {
|
2676
|
-
let reg = pretty_print_reg(reg);
|
2677
|
-
format!("cbz {reg}, #trap={trap_code}")
|
2678
|
-
}
|
2679
|
-
&CondBrKind::NotZero(reg) => {
|
2680
|
-
let reg = pretty_print_reg(reg);
|
2681
|
-
format!("cbnz {reg}, #trap={trap_code}")
|
2682
|
-
}
|
2683
|
-
&CondBrKind::Cond(c) => {
|
2684
|
-
let c = c.pretty_print(0);
|
2685
|
-
format!("b.{c} #trap={trap_code}")
|
2686
|
-
}
|
2687
|
-
},
|
2688
|
-
&Inst::Adr { rd, off } => {
|
2689
|
-
let rd = pretty_print_reg(rd.to_reg());
|
2690
|
-
format!("adr {rd}, pc+{off}")
|
2691
|
-
}
|
2692
|
-
&Inst::Adrp { rd, off } => {
|
2693
|
-
let rd = pretty_print_reg(rd.to_reg());
|
2694
|
-
// This instruction addresses 4KiB pages, so multiply it by the page size.
|
2695
|
-
let byte_offset = off * 4096;
|
2696
|
-
format!("adrp {rd}, pc+{byte_offset}")
|
2697
|
-
}
|
2698
|
-
&Inst::Word4 { data } => format!("data.i32 {data}"),
|
2699
|
-
&Inst::Word8 { data } => format!("data.i64 {data}"),
|
2700
|
-
&Inst::JTSequence {
|
2701
|
-
default,
|
2702
|
-
ref targets,
|
2703
|
-
ridx,
|
2704
|
-
rtmp1,
|
2705
|
-
rtmp2,
|
2706
|
-
..
|
2707
|
-
} => {
|
2708
|
-
let ridx = pretty_print_reg(ridx);
|
2709
|
-
let rtmp1 = pretty_print_reg(rtmp1.to_reg());
|
2710
|
-
let rtmp2 = pretty_print_reg(rtmp2.to_reg());
|
2711
|
-
let default_target = BranchTarget::Label(default).pretty_print(0);
|
2712
|
-
format!(
|
2713
|
-
concat!(
|
2714
|
-
"b.hs {} ; ",
|
2715
|
-
"csel {}, xzr, {}, hs ; ",
|
2716
|
-
"csdb ; ",
|
2717
|
-
"adr {}, pc+16 ; ",
|
2718
|
-
"ldrsw {}, [{}, {}, uxtw #2] ; ",
|
2719
|
-
"add {}, {}, {} ; ",
|
2720
|
-
"br {} ; ",
|
2721
|
-
"jt_entries {:?}"
|
2722
|
-
),
|
2723
|
-
default_target,
|
2724
|
-
rtmp2,
|
2725
|
-
ridx,
|
2726
|
-
rtmp1,
|
2727
|
-
rtmp2,
|
2728
|
-
rtmp1,
|
2729
|
-
rtmp2,
|
2730
|
-
rtmp1,
|
2731
|
-
rtmp1,
|
2732
|
-
rtmp2,
|
2733
|
-
rtmp1,
|
2734
|
-
targets
|
2735
|
-
)
|
2736
|
-
}
|
2737
|
-
&Inst::LoadExtName {
|
2738
|
-
rd,
|
2739
|
-
ref name,
|
2740
|
-
offset,
|
2741
|
-
} => {
|
2742
|
-
let rd = pretty_print_reg(rd.to_reg());
|
2743
|
-
format!("load_ext_name {rd}, {name:?}+{offset}")
|
2744
|
-
}
|
2745
|
-
&Inst::LoadAddr { rd, ref mem } => {
|
2746
|
-
// TODO: we really should find a better way to avoid duplication of
|
2747
|
-
// this logic between `emit()` and `show_rru()` -- a separate 1-to-N
|
2748
|
-
// expansion stage (i.e., legalization, but without the slow edit-in-place
|
2749
|
-
// of the existing legalization framework).
|
2750
|
-
let mem = mem.clone();
|
2751
|
-
let (mem_insts, mem) = mem_finalize(None, &mem, I8, state);
|
2752
|
-
let mut ret = String::new();
|
2753
|
-
for inst in mem_insts.into_iter() {
|
2754
|
-
ret.push_str(&inst.print_with_state(&mut EmitState::default()));
|
2755
|
-
}
|
2756
|
-
let (reg, index_reg, offset) = match mem {
|
2757
|
-
AMode::RegExtended { rn, rm, extendop } => (rn, Some((rm, extendop)), 0),
|
2758
|
-
AMode::Unscaled { rn, simm9 } => (rn, None, simm9.value()),
|
2759
|
-
AMode::UnsignedOffset { rn, uimm12 } => (rn, None, uimm12.value() as i32),
|
2760
|
-
_ => panic!("Unsupported case for LoadAddr: {mem:?}"),
|
2761
|
-
};
|
2762
|
-
let abs_offset = if offset < 0 {
|
2763
|
-
-offset as u64
|
2764
|
-
} else {
|
2765
|
-
offset as u64
|
2766
|
-
};
|
2767
|
-
let alu_op = if offset < 0 { ALUOp::Sub } else { ALUOp::Add };
|
2768
|
-
|
2769
|
-
if let Some((idx, extendop)) = index_reg {
|
2770
|
-
let add = Inst::AluRRRExtend {
|
2771
|
-
alu_op: ALUOp::Add,
|
2772
|
-
size: OperandSize::Size64,
|
2773
|
-
rd,
|
2774
|
-
rn: reg,
|
2775
|
-
rm: idx,
|
2776
|
-
extendop,
|
2777
|
-
};
|
2778
|
-
|
2779
|
-
ret.push_str(&add.print_with_state(&mut EmitState::default()));
|
2780
|
-
} else if offset == 0 {
|
2781
|
-
let mov = Inst::gen_move(rd, reg, I64);
|
2782
|
-
ret.push_str(&mov.print_with_state(&mut EmitState::default()));
|
2783
|
-
} else if let Some(imm12) = Imm12::maybe_from_u64(abs_offset) {
|
2784
|
-
let add = Inst::AluRRImm12 {
|
2785
|
-
alu_op,
|
2786
|
-
size: OperandSize::Size64,
|
2787
|
-
rd,
|
2788
|
-
rn: reg,
|
2789
|
-
imm12,
|
2790
|
-
};
|
2791
|
-
ret.push_str(&add.print_with_state(&mut EmitState::default()));
|
2792
|
-
} else {
|
2793
|
-
let tmp = writable_spilltmp_reg();
|
2794
|
-
for inst in Inst::load_constant(tmp, abs_offset, &mut |_| tmp).into_iter() {
|
2795
|
-
ret.push_str(&inst.print_with_state(&mut EmitState::default()));
|
2796
|
-
}
|
2797
|
-
let add = Inst::AluRRR {
|
2798
|
-
alu_op,
|
2799
|
-
size: OperandSize::Size64,
|
2800
|
-
rd,
|
2801
|
-
rn: reg,
|
2802
|
-
rm: tmp.to_reg(),
|
2803
|
-
};
|
2804
|
-
ret.push_str(&add.print_with_state(&mut EmitState::default()));
|
2805
|
-
}
|
2806
|
-
ret
|
2807
|
-
}
|
2808
|
-
&Inst::Paci { key } => {
|
2809
|
-
let key = match key {
|
2810
|
-
APIKey::AZ => "az",
|
2811
|
-
APIKey::BZ => "bz",
|
2812
|
-
APIKey::ASP => "asp",
|
2813
|
-
APIKey::BSP => "bsp",
|
2814
|
-
};
|
2815
|
-
|
2816
|
-
"paci".to_string() + key
|
2817
|
-
}
|
2818
|
-
&Inst::Xpaclri => "xpaclri".to_string(),
|
2819
|
-
&Inst::Bti { targets } => {
|
2820
|
-
let targets = match targets {
|
2821
|
-
BranchTargetType::None => "",
|
2822
|
-
BranchTargetType::C => " c",
|
2823
|
-
BranchTargetType::J => " j",
|
2824
|
-
BranchTargetType::JC => " jc",
|
2825
|
-
};
|
2826
|
-
|
2827
|
-
"bti".to_string() + targets
|
2828
|
-
}
|
2829
|
-
&Inst::EmitIsland { needed_space } => format!("emit_island {needed_space}"),
|
2830
|
-
|
2831
|
-
&Inst::ElfTlsGetAddr {
|
2832
|
-
ref symbol,
|
2833
|
-
rd,
|
2834
|
-
tmp,
|
2835
|
-
} => {
|
2836
|
-
let rd = pretty_print_reg(rd.to_reg());
|
2837
|
-
let tmp = pretty_print_reg(tmp.to_reg());
|
2838
|
-
format!("elf_tls_get_addr {}, {}, {}", rd, tmp, symbol.display(None))
|
2839
|
-
}
|
2840
|
-
&Inst::MachOTlsGetAddr { ref symbol, rd } => {
|
2841
|
-
let rd = pretty_print_reg(rd.to_reg());
|
2842
|
-
format!("macho_tls_get_addr {}, {}", rd, symbol.display(None))
|
2843
|
-
}
|
2844
|
-
&Inst::Unwind { ref inst } => {
|
2845
|
-
format!("unwind {inst:?}")
|
2846
|
-
}
|
2847
|
-
&Inst::DummyUse { reg } => {
|
2848
|
-
let reg = pretty_print_reg(reg);
|
2849
|
-
format!("dummy_use {reg}")
|
2850
|
-
}
|
2851
|
-
&Inst::StackProbeLoop { start, end, step } => {
|
2852
|
-
let start = pretty_print_reg(start.to_reg());
|
2853
|
-
let end = pretty_print_reg(end);
|
2854
|
-
let step = step.pretty_print(0);
|
2855
|
-
format!("stack_probe_loop {start}, {end}, {step}")
|
2856
|
-
}
|
2857
|
-
}
|
2858
|
-
}
|
2859
|
-
}
|
2860
|
-
|
2861
|
-
//=============================================================================
|
2862
|
-
// Label fixups and jump veneers.
|
2863
|
-
|
2864
|
-
/// Different forms of label references for different instruction formats.
|
2865
|
-
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
2866
|
-
pub enum LabelUse {
|
2867
|
-
/// 14-bit branch offset (conditional branches). PC-rel, offset is imm <<
|
2868
|
-
/// 2. Immediate is 14 signed bits, in bits 18:5. Used by tbz and tbnz.
|
2869
|
-
Branch14,
|
2870
|
-
/// 19-bit branch offset (conditional branches). PC-rel, offset is imm << 2. Immediate is 19
|
2871
|
-
/// signed bits, in bits 23:5. Used by cbz, cbnz, b.cond.
|
2872
|
-
Branch19,
|
2873
|
-
/// 26-bit branch offset (unconditional branches). PC-rel, offset is imm << 2. Immediate is 26
|
2874
|
-
/// signed bits, in bits 25:0. Used by b, bl.
|
2875
|
-
Branch26,
|
2876
|
-
#[allow(dead_code)]
|
2877
|
-
/// 19-bit offset for LDR (load literal). PC-rel, offset is imm << 2. Immediate is 19 signed bits,
|
2878
|
-
/// in bits 23:5.
|
2879
|
-
Ldr19,
|
2880
|
-
#[allow(dead_code)]
|
2881
|
-
/// 21-bit offset for ADR (get address of label). PC-rel, offset is not shifted. Immediate is
|
2882
|
-
/// 21 signed bits, with high 19 bits in bits 23:5 and low 2 bits in bits 30:29.
|
2883
|
-
Adr21,
|
2884
|
-
/// 32-bit PC relative constant offset (from address of constant itself),
|
2885
|
-
/// signed. Used in jump tables.
|
2886
|
-
PCRel32,
|
2887
|
-
}
|
2888
|
-
|
2889
|
-
impl MachInstLabelUse for LabelUse {
|
2890
|
-
/// Alignment for veneer code. Every AArch64 instruction must be 4-byte-aligned.
|
2891
|
-
const ALIGN: CodeOffset = 4;
|
2892
|
-
|
2893
|
-
/// Maximum PC-relative range (positive), inclusive.
|
2894
|
-
fn max_pos_range(self) -> CodeOffset {
|
2895
|
-
match self {
|
2896
|
-
// N-bit immediate, left-shifted by 2, for (N+2) bits of total
|
2897
|
-
// range. Signed, so +2^(N+1) from zero. Likewise for two other
|
2898
|
-
// shifted cases below.
|
2899
|
-
LabelUse::Branch14 => (1 << 15) - 1,
|
2900
|
-
LabelUse::Branch19 => (1 << 20) - 1,
|
2901
|
-
LabelUse::Branch26 => (1 << 27) - 1,
|
2902
|
-
LabelUse::Ldr19 => (1 << 20) - 1,
|
2903
|
-
// Adr does not shift its immediate, so the 21-bit immediate gives 21 bits of total
|
2904
|
-
// range.
|
2905
|
-
LabelUse::Adr21 => (1 << 20) - 1,
|
2906
|
-
LabelUse::PCRel32 => 0x7fffffff,
|
2907
|
-
}
|
2908
|
-
}
|
2909
|
-
|
2910
|
-
/// Maximum PC-relative range (negative).
|
2911
|
-
fn max_neg_range(self) -> CodeOffset {
|
2912
|
-
// All forms are twos-complement signed offsets, so negative limit is one more than
|
2913
|
-
// positive limit.
|
2914
|
-
self.max_pos_range() + 1
|
2915
|
-
}
|
2916
|
-
|
2917
|
-
/// Size of window into code needed to do the patch.
|
2918
|
-
fn patch_size(self) -> CodeOffset {
|
2919
|
-
// Patch is on one instruction only for all of these label reference types.
|
2920
|
-
4
|
2921
|
-
}
|
2922
|
-
|
2923
|
-
/// Perform the patch.
|
2924
|
-
fn patch(self, buffer: &mut [u8], use_offset: CodeOffset, label_offset: CodeOffset) {
|
2925
|
-
let pc_rel = (label_offset as i64) - (use_offset as i64);
|
2926
|
-
debug_assert!(pc_rel <= self.max_pos_range() as i64);
|
2927
|
-
debug_assert!(pc_rel >= -(self.max_neg_range() as i64));
|
2928
|
-
let pc_rel = pc_rel as u32;
|
2929
|
-
let insn_word = u32::from_le_bytes([buffer[0], buffer[1], buffer[2], buffer[3]]);
|
2930
|
-
let mask = match self {
|
2931
|
-
LabelUse::Branch14 => 0x0007ffe0, // bits 18..5 inclusive
|
2932
|
-
LabelUse::Branch19 => 0x00ffffe0, // bits 23..5 inclusive
|
2933
|
-
LabelUse::Branch26 => 0x03ffffff, // bits 25..0 inclusive
|
2934
|
-
LabelUse::Ldr19 => 0x00ffffe0, // bits 23..5 inclusive
|
2935
|
-
LabelUse::Adr21 => 0x60ffffe0, // bits 30..29, 25..5 inclusive
|
2936
|
-
LabelUse::PCRel32 => 0xffffffff,
|
2937
|
-
};
|
2938
|
-
let pc_rel_shifted = match self {
|
2939
|
-
LabelUse::Adr21 | LabelUse::PCRel32 => pc_rel,
|
2940
|
-
_ => {
|
2941
|
-
debug_assert!(pc_rel & 3 == 0);
|
2942
|
-
pc_rel >> 2
|
2943
|
-
}
|
2944
|
-
};
|
2945
|
-
let pc_rel_inserted = match self {
|
2946
|
-
LabelUse::Branch14 => (pc_rel_shifted & 0x3fff) << 5,
|
2947
|
-
LabelUse::Branch19 | LabelUse::Ldr19 => (pc_rel_shifted & 0x7ffff) << 5,
|
2948
|
-
LabelUse::Branch26 => pc_rel_shifted & 0x3ffffff,
|
2949
|
-
LabelUse::Adr21 => (pc_rel_shifted & 0x7ffff) << 5 | (pc_rel_shifted & 0x180000) << 10,
|
2950
|
-
LabelUse::PCRel32 => pc_rel_shifted,
|
2951
|
-
};
|
2952
|
-
let is_add = match self {
|
2953
|
-
LabelUse::PCRel32 => true,
|
2954
|
-
_ => false,
|
2955
|
-
};
|
2956
|
-
let insn_word = if is_add {
|
2957
|
-
insn_word.wrapping_add(pc_rel_inserted)
|
2958
|
-
} else {
|
2959
|
-
(insn_word & !mask) | pc_rel_inserted
|
2960
|
-
};
|
2961
|
-
buffer[0..4].clone_from_slice(&u32::to_le_bytes(insn_word));
|
2962
|
-
}
|
2963
|
-
|
2964
|
-
/// Is a veneer supported for this label reference type?
|
2965
|
-
fn supports_veneer(self) -> bool {
|
2966
|
-
match self {
|
2967
|
-
LabelUse::Branch14 | LabelUse::Branch19 => true, // veneer is a Branch26
|
2968
|
-
LabelUse::Branch26 => true, // veneer is a PCRel32
|
2969
|
-
_ => false,
|
2970
|
-
}
|
2971
|
-
}
|
2972
|
-
|
2973
|
-
/// How large is the veneer, if supported?
|
2974
|
-
fn veneer_size(self) -> CodeOffset {
|
2975
|
-
match self {
|
2976
|
-
LabelUse::Branch14 | LabelUse::Branch19 => 4,
|
2977
|
-
LabelUse::Branch26 => 20,
|
2978
|
-
_ => unreachable!(),
|
2979
|
-
}
|
2980
|
-
}
|
2981
|
-
|
2982
|
-
fn worst_case_veneer_size() -> CodeOffset {
|
2983
|
-
20
|
2984
|
-
}
|
2985
|
-
|
2986
|
-
/// Generate a veneer into the buffer, given that this veneer is at `veneer_offset`, and return
|
2987
|
-
/// an offset and label-use for the veneer's use of the original label.
|
2988
|
-
fn generate_veneer(
|
2989
|
-
self,
|
2990
|
-
buffer: &mut [u8],
|
2991
|
-
veneer_offset: CodeOffset,
|
2992
|
-
) -> (CodeOffset, LabelUse) {
|
2993
|
-
match self {
|
2994
|
-
LabelUse::Branch14 | LabelUse::Branch19 => {
|
2995
|
-
// veneer is a Branch26 (unconditional branch). Just encode directly here -- don't
|
2996
|
-
// bother with constructing an Inst.
|
2997
|
-
let insn_word = 0b000101 << 26;
|
2998
|
-
buffer[0..4].clone_from_slice(&u32::to_le_bytes(insn_word));
|
2999
|
-
(veneer_offset, LabelUse::Branch26)
|
3000
|
-
}
|
3001
|
-
|
3002
|
-
// This is promoting a 26-bit call/jump to a 32-bit call/jump to
|
3003
|
-
// get a further range. This jump translates to a jump to a
|
3004
|
-
// relative location based on the address of the constant loaded
|
3005
|
-
// from here.
|
3006
|
-
//
|
3007
|
-
// If this path is taken from a call instruction then caller-saved
|
3008
|
-
// registers are available (minus arguments), so x16/x17 are
|
3009
|
-
// available. Otherwise for intra-function jumps we also reserve
|
3010
|
-
// x16/x17 as spill-style registers. In both cases these are
|
3011
|
-
// available for us to use.
|
3012
|
-
LabelUse::Branch26 => {
|
3013
|
-
let tmp1 = regs::spilltmp_reg();
|
3014
|
-
let tmp1_w = regs::writable_spilltmp_reg();
|
3015
|
-
let tmp2 = regs::tmp2_reg();
|
3016
|
-
let tmp2_w = regs::writable_tmp2_reg();
|
3017
|
-
// ldrsw x16, 16
|
3018
|
-
let ldr = emit::enc_ldst_imm19(0b1001_1000, 16 / 4, tmp1);
|
3019
|
-
// adr x17, 12
|
3020
|
-
let adr = emit::enc_adr(12, tmp2_w);
|
3021
|
-
// add x16, x16, x17
|
3022
|
-
let add = emit::enc_arith_rrr(0b10001011_000, 0, tmp1_w, tmp1, tmp2);
|
3023
|
-
// br x16
|
3024
|
-
let br = emit::enc_br(tmp1);
|
3025
|
-
buffer[0..4].clone_from_slice(&u32::to_le_bytes(ldr));
|
3026
|
-
buffer[4..8].clone_from_slice(&u32::to_le_bytes(adr));
|
3027
|
-
buffer[8..12].clone_from_slice(&u32::to_le_bytes(add));
|
3028
|
-
buffer[12..16].clone_from_slice(&u32::to_le_bytes(br));
|
3029
|
-
// the 4-byte signed immediate we'll load is after these
|
3030
|
-
// instructions, 16-bytes in.
|
3031
|
-
(veneer_offset + 16, LabelUse::PCRel32)
|
3032
|
-
}
|
3033
|
-
|
3034
|
-
_ => panic!("Unsupported label-reference type for veneer generation!"),
|
3035
|
-
}
|
3036
|
-
}
|
3037
|
-
|
3038
|
-
fn from_reloc(reloc: Reloc, addend: Addend) -> Option<LabelUse> {
|
3039
|
-
match (reloc, addend) {
|
3040
|
-
(Reloc::Arm64Call, 0) => Some(LabelUse::Branch26),
|
3041
|
-
_ => None,
|
3042
|
-
}
|
3043
|
-
}
|
3044
|
-
}
|
3045
|
-
|
3046
|
-
#[cfg(test)]
|
3047
|
-
mod tests {
|
3048
|
-
use super::*;
|
3049
|
-
|
3050
|
-
#[test]
|
3051
|
-
fn inst_size_test() {
|
3052
|
-
// This test will help with unintentionally growing the size
|
3053
|
-
// of the Inst enum.
|
3054
|
-
assert_eq!(32, std::mem::size_of::<Inst>());
|
3055
|
-
}
|
3056
|
-
}
|