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,3426 +0,0 @@
|
|
1
|
-
//! S390x ISA: binary code emission.
|
2
|
-
|
3
|
-
use crate::ir::{self, LibCall, MemFlags, TrapCode};
|
4
|
-
use crate::isa::s390x::inst::*;
|
5
|
-
use crate::isa::s390x::settings as s390x_settings;
|
6
|
-
use cranelift_control::ControlPlane;
|
7
|
-
|
8
|
-
/// Debug macro for testing that a regpair is valid: that the high register is even, and the low
|
9
|
-
/// register is one higher than the high register.
|
10
|
-
macro_rules! debug_assert_valid_regpair {
|
11
|
-
($hi:expr, $lo:expr) => {
|
12
|
-
if cfg!(debug_assertions) {
|
13
|
-
match ($hi.to_real_reg(), $lo.to_real_reg()) {
|
14
|
-
(Some(hi), Some(lo)) => {
|
15
|
-
assert!(
|
16
|
-
hi.hw_enc() % 2 == 0,
|
17
|
-
"High register is not even: {}",
|
18
|
-
show_reg($hi)
|
19
|
-
);
|
20
|
-
assert_eq!(
|
21
|
-
hi.hw_enc() + 1,
|
22
|
-
lo.hw_enc(),
|
23
|
-
"Low register is not valid: {}, {}",
|
24
|
-
show_reg($hi),
|
25
|
-
show_reg($lo)
|
26
|
-
);
|
27
|
-
}
|
28
|
-
|
29
|
-
_ => {
|
30
|
-
panic!(
|
31
|
-
"Expected real registers for {} {}",
|
32
|
-
show_reg($hi),
|
33
|
-
show_reg($lo)
|
34
|
-
);
|
35
|
-
}
|
36
|
-
}
|
37
|
-
}
|
38
|
-
};
|
39
|
-
}
|
40
|
-
|
41
|
-
/// Type(s) of memory instructions available for mem_finalize.
|
42
|
-
pub struct MemInstType {
|
43
|
-
/// True if 12-bit unsigned displacement is supported.
|
44
|
-
pub have_d12: bool,
|
45
|
-
/// True if 20-bit signed displacement is supported.
|
46
|
-
pub have_d20: bool,
|
47
|
-
/// True if PC-relative addressing is supported (memory access).
|
48
|
-
pub have_pcrel: bool,
|
49
|
-
/// True if PC-relative addressing is supported (load address).
|
50
|
-
pub have_unaligned_pcrel: bool,
|
51
|
-
/// True if an index register is supported.
|
52
|
-
pub have_index: bool,
|
53
|
-
}
|
54
|
-
|
55
|
-
/// Memory addressing mode finalization: convert "special" modes (e.g.,
|
56
|
-
/// generic arbitrary stack offset) into real addressing modes, possibly by
|
57
|
-
/// emitting some helper instructions that come immediately before the use
|
58
|
-
/// of this amode.
|
59
|
-
pub fn mem_finalize(
|
60
|
-
mem: &MemArg,
|
61
|
-
state: &EmitState,
|
62
|
-
mi: MemInstType,
|
63
|
-
) -> (SmallVec<[Inst; 4]>, MemArg) {
|
64
|
-
let mut insts = SmallVec::new();
|
65
|
-
|
66
|
-
// Resolve virtual addressing modes.
|
67
|
-
let mem = match mem {
|
68
|
-
&MemArg::RegOffset { off, .. }
|
69
|
-
| &MemArg::InitialSPOffset { off }
|
70
|
-
| &MemArg::NominalSPOffset { off }
|
71
|
-
| &MemArg::SlotOffset { off } => {
|
72
|
-
let base = match mem {
|
73
|
-
&MemArg::RegOffset { reg, .. } => reg,
|
74
|
-
&MemArg::InitialSPOffset { .. }
|
75
|
-
| &MemArg::NominalSPOffset { .. }
|
76
|
-
| &MemArg::SlotOffset { .. } => stack_reg(),
|
77
|
-
_ => unreachable!(),
|
78
|
-
};
|
79
|
-
let adj = match mem {
|
80
|
-
&MemArg::InitialSPOffset { .. } => i64::from(
|
81
|
-
state.frame_layout().clobber_size
|
82
|
-
+ state.frame_layout().fixed_frame_storage_size
|
83
|
-
+ state.frame_layout().outgoing_args_size
|
84
|
-
+ state.nominal_sp_offset,
|
85
|
-
),
|
86
|
-
&MemArg::SlotOffset { .. } => {
|
87
|
-
i64::from(state.frame_layout().outgoing_args_size + state.nominal_sp_offset)
|
88
|
-
}
|
89
|
-
&MemArg::NominalSPOffset { .. } => i64::from(state.nominal_sp_offset),
|
90
|
-
_ => 0,
|
91
|
-
};
|
92
|
-
let off = off + adj;
|
93
|
-
|
94
|
-
if let Some(disp) = UImm12::maybe_from_u64(off as u64) {
|
95
|
-
MemArg::BXD12 {
|
96
|
-
base,
|
97
|
-
index: zero_reg(),
|
98
|
-
disp,
|
99
|
-
flags: mem.get_flags(),
|
100
|
-
}
|
101
|
-
} else if let Some(disp) = SImm20::maybe_from_i64(off) {
|
102
|
-
MemArg::BXD20 {
|
103
|
-
base,
|
104
|
-
index: zero_reg(),
|
105
|
-
disp,
|
106
|
-
flags: mem.get_flags(),
|
107
|
-
}
|
108
|
-
} else {
|
109
|
-
let tmp = writable_spilltmp_reg();
|
110
|
-
assert!(base != tmp.to_reg());
|
111
|
-
if let Ok(imm) = i16::try_from(off) {
|
112
|
-
insts.push(Inst::Mov64SImm16 { rd: tmp, imm });
|
113
|
-
} else if let Ok(imm) = i32::try_from(off) {
|
114
|
-
insts.push(Inst::Mov64SImm32 { rd: tmp, imm });
|
115
|
-
} else {
|
116
|
-
// The offset must be smaller than the stack frame size,
|
117
|
-
// which the ABI code limits to 128 MB.
|
118
|
-
unreachable!();
|
119
|
-
}
|
120
|
-
MemArg::reg_plus_reg(base, tmp.to_reg(), mem.get_flags())
|
121
|
-
}
|
122
|
-
}
|
123
|
-
_ => mem.clone(),
|
124
|
-
};
|
125
|
-
|
126
|
-
// If this addressing mode cannot be handled by the instruction, use load-address.
|
127
|
-
let need_load_address = match &mem {
|
128
|
-
&MemArg::Label { .. } | &MemArg::Symbol { .. } if !mi.have_pcrel => true,
|
129
|
-
&MemArg::Symbol { flags, .. } if !mi.have_unaligned_pcrel && !flags.aligned() => true,
|
130
|
-
&MemArg::BXD20 { .. } if !mi.have_d20 => true,
|
131
|
-
&MemArg::BXD12 { index, .. } | &MemArg::BXD20 { index, .. } if !mi.have_index => {
|
132
|
-
index != zero_reg()
|
133
|
-
}
|
134
|
-
_ => false,
|
135
|
-
};
|
136
|
-
let mem = if need_load_address {
|
137
|
-
let flags = mem.get_flags();
|
138
|
-
let tmp = writable_spilltmp_reg();
|
139
|
-
insts.push(Inst::LoadAddr { rd: tmp, mem });
|
140
|
-
MemArg::reg(tmp.to_reg(), flags)
|
141
|
-
} else {
|
142
|
-
mem
|
143
|
-
};
|
144
|
-
|
145
|
-
// Convert 12-bit displacement to 20-bit if required.
|
146
|
-
let mem = match &mem {
|
147
|
-
&MemArg::BXD12 {
|
148
|
-
base,
|
149
|
-
index,
|
150
|
-
disp,
|
151
|
-
flags,
|
152
|
-
} if !mi.have_d12 => {
|
153
|
-
assert!(mi.have_d20);
|
154
|
-
MemArg::BXD20 {
|
155
|
-
base,
|
156
|
-
index,
|
157
|
-
disp: SImm20::from_uimm12(disp),
|
158
|
-
flags,
|
159
|
-
}
|
160
|
-
}
|
161
|
-
_ => mem,
|
162
|
-
};
|
163
|
-
|
164
|
-
(insts, mem)
|
165
|
-
}
|
166
|
-
|
167
|
-
pub fn mem_emit(
|
168
|
-
rd: Reg,
|
169
|
-
mem: &MemArg,
|
170
|
-
opcode_rx: Option<u16>,
|
171
|
-
opcode_rxy: Option<u16>,
|
172
|
-
opcode_ril: Option<u16>,
|
173
|
-
add_trap: bool,
|
174
|
-
sink: &mut MachBuffer<Inst>,
|
175
|
-
emit_info: &EmitInfo,
|
176
|
-
state: &mut EmitState,
|
177
|
-
) {
|
178
|
-
let (mem_insts, mem) = mem_finalize(
|
179
|
-
mem,
|
180
|
-
state,
|
181
|
-
MemInstType {
|
182
|
-
have_d12: opcode_rx.is_some(),
|
183
|
-
have_d20: opcode_rxy.is_some(),
|
184
|
-
have_pcrel: opcode_ril.is_some(),
|
185
|
-
have_unaligned_pcrel: opcode_ril.is_some() && !add_trap,
|
186
|
-
have_index: true,
|
187
|
-
},
|
188
|
-
);
|
189
|
-
for inst in mem_insts.into_iter() {
|
190
|
-
inst.emit(sink, emit_info, state);
|
191
|
-
}
|
192
|
-
|
193
|
-
if add_trap {
|
194
|
-
if let Some(trap_code) = mem.get_flags().trap_code() {
|
195
|
-
sink.add_trap(trap_code);
|
196
|
-
}
|
197
|
-
}
|
198
|
-
|
199
|
-
match &mem {
|
200
|
-
&MemArg::BXD12 {
|
201
|
-
base, index, disp, ..
|
202
|
-
} => {
|
203
|
-
put(
|
204
|
-
sink,
|
205
|
-
&enc_rx(opcode_rx.unwrap(), rd, base, index, disp.bits()),
|
206
|
-
);
|
207
|
-
}
|
208
|
-
&MemArg::BXD20 {
|
209
|
-
base, index, disp, ..
|
210
|
-
} => {
|
211
|
-
put(
|
212
|
-
sink,
|
213
|
-
&enc_rxy(opcode_rxy.unwrap(), rd, base, index, disp.bits()),
|
214
|
-
);
|
215
|
-
}
|
216
|
-
&MemArg::Label { target } => {
|
217
|
-
sink.use_label_at_offset(sink.cur_offset(), target, LabelUse::BranchRIL);
|
218
|
-
put(sink, &enc_ril_b(opcode_ril.unwrap(), rd, 0));
|
219
|
-
}
|
220
|
-
&MemArg::Symbol {
|
221
|
-
ref name, offset, ..
|
222
|
-
} => {
|
223
|
-
sink.add_reloc_at_offset(2, Reloc::S390xPCRel32Dbl, &**name, (offset + 2).into());
|
224
|
-
put(sink, &enc_ril_b(opcode_ril.unwrap(), rd, 0));
|
225
|
-
}
|
226
|
-
_ => unreachable!(),
|
227
|
-
}
|
228
|
-
}
|
229
|
-
|
230
|
-
pub fn mem_rs_emit(
|
231
|
-
rd: Reg,
|
232
|
-
rn: Reg,
|
233
|
-
mem: &MemArg,
|
234
|
-
opcode_rs: Option<u16>,
|
235
|
-
opcode_rsy: Option<u16>,
|
236
|
-
add_trap: bool,
|
237
|
-
sink: &mut MachBuffer<Inst>,
|
238
|
-
emit_info: &EmitInfo,
|
239
|
-
state: &mut EmitState,
|
240
|
-
) {
|
241
|
-
let (mem_insts, mem) = mem_finalize(
|
242
|
-
mem,
|
243
|
-
state,
|
244
|
-
MemInstType {
|
245
|
-
have_d12: opcode_rs.is_some(),
|
246
|
-
have_d20: opcode_rsy.is_some(),
|
247
|
-
have_pcrel: false,
|
248
|
-
have_unaligned_pcrel: false,
|
249
|
-
have_index: false,
|
250
|
-
},
|
251
|
-
);
|
252
|
-
for inst in mem_insts.into_iter() {
|
253
|
-
inst.emit(sink, emit_info, state);
|
254
|
-
}
|
255
|
-
|
256
|
-
if add_trap {
|
257
|
-
if let Some(trap_code) = mem.get_flags().trap_code() {
|
258
|
-
sink.add_trap(trap_code);
|
259
|
-
}
|
260
|
-
}
|
261
|
-
|
262
|
-
match &mem {
|
263
|
-
&MemArg::BXD12 {
|
264
|
-
base, index, disp, ..
|
265
|
-
} => {
|
266
|
-
assert!(index == zero_reg());
|
267
|
-
put(sink, &enc_rs(opcode_rs.unwrap(), rd, rn, base, disp.bits()));
|
268
|
-
}
|
269
|
-
&MemArg::BXD20 {
|
270
|
-
base, index, disp, ..
|
271
|
-
} => {
|
272
|
-
assert!(index == zero_reg());
|
273
|
-
put(
|
274
|
-
sink,
|
275
|
-
&enc_rsy(opcode_rsy.unwrap(), rd, rn, base, disp.bits()),
|
276
|
-
);
|
277
|
-
}
|
278
|
-
_ => unreachable!(),
|
279
|
-
}
|
280
|
-
}
|
281
|
-
|
282
|
-
pub fn mem_imm8_emit(
|
283
|
-
imm: u8,
|
284
|
-
mem: &MemArg,
|
285
|
-
opcode_si: u16,
|
286
|
-
opcode_siy: u16,
|
287
|
-
add_trap: bool,
|
288
|
-
sink: &mut MachBuffer<Inst>,
|
289
|
-
emit_info: &EmitInfo,
|
290
|
-
state: &mut EmitState,
|
291
|
-
) {
|
292
|
-
let (mem_insts, mem) = mem_finalize(
|
293
|
-
mem,
|
294
|
-
state,
|
295
|
-
MemInstType {
|
296
|
-
have_d12: true,
|
297
|
-
have_d20: true,
|
298
|
-
have_pcrel: false,
|
299
|
-
have_unaligned_pcrel: false,
|
300
|
-
have_index: false,
|
301
|
-
},
|
302
|
-
);
|
303
|
-
for inst in mem_insts.into_iter() {
|
304
|
-
inst.emit(sink, emit_info, state);
|
305
|
-
}
|
306
|
-
|
307
|
-
if add_trap {
|
308
|
-
if let Some(trap_code) = mem.get_flags().trap_code() {
|
309
|
-
sink.add_trap(trap_code);
|
310
|
-
}
|
311
|
-
}
|
312
|
-
|
313
|
-
match &mem {
|
314
|
-
&MemArg::BXD12 {
|
315
|
-
base, index, disp, ..
|
316
|
-
} => {
|
317
|
-
assert!(index == zero_reg());
|
318
|
-
put(sink, &enc_si(opcode_si, base, disp.bits(), imm));
|
319
|
-
}
|
320
|
-
&MemArg::BXD20 {
|
321
|
-
base, index, disp, ..
|
322
|
-
} => {
|
323
|
-
assert!(index == zero_reg());
|
324
|
-
put(sink, &enc_siy(opcode_siy, base, disp.bits(), imm));
|
325
|
-
}
|
326
|
-
_ => unreachable!(),
|
327
|
-
}
|
328
|
-
}
|
329
|
-
|
330
|
-
pub fn mem_imm16_emit(
|
331
|
-
imm: i16,
|
332
|
-
mem: &MemArg,
|
333
|
-
opcode_sil: u16,
|
334
|
-
add_trap: bool,
|
335
|
-
sink: &mut MachBuffer<Inst>,
|
336
|
-
emit_info: &EmitInfo,
|
337
|
-
state: &mut EmitState,
|
338
|
-
) {
|
339
|
-
let (mem_insts, mem) = mem_finalize(
|
340
|
-
mem,
|
341
|
-
state,
|
342
|
-
MemInstType {
|
343
|
-
have_d12: true,
|
344
|
-
have_d20: false,
|
345
|
-
have_pcrel: false,
|
346
|
-
have_unaligned_pcrel: false,
|
347
|
-
have_index: false,
|
348
|
-
},
|
349
|
-
);
|
350
|
-
for inst in mem_insts.into_iter() {
|
351
|
-
inst.emit(sink, emit_info, state);
|
352
|
-
}
|
353
|
-
|
354
|
-
if add_trap {
|
355
|
-
if let Some(trap_code) = mem.get_flags().trap_code() {
|
356
|
-
sink.add_trap(trap_code);
|
357
|
-
}
|
358
|
-
}
|
359
|
-
|
360
|
-
match &mem {
|
361
|
-
&MemArg::BXD12 {
|
362
|
-
base, index, disp, ..
|
363
|
-
} => {
|
364
|
-
assert!(index == zero_reg());
|
365
|
-
put(sink, &enc_sil(opcode_sil, base, disp.bits(), imm));
|
366
|
-
}
|
367
|
-
_ => unreachable!(),
|
368
|
-
}
|
369
|
-
}
|
370
|
-
|
371
|
-
pub fn mem_vrx_emit(
|
372
|
-
rd: Reg,
|
373
|
-
mem: &MemArg,
|
374
|
-
opcode: u16,
|
375
|
-
m3: u8,
|
376
|
-
add_trap: bool,
|
377
|
-
sink: &mut MachBuffer<Inst>,
|
378
|
-
emit_info: &EmitInfo,
|
379
|
-
state: &mut EmitState,
|
380
|
-
) {
|
381
|
-
let (mem_insts, mem) = mem_finalize(
|
382
|
-
mem,
|
383
|
-
state,
|
384
|
-
MemInstType {
|
385
|
-
have_d12: true,
|
386
|
-
have_d20: false,
|
387
|
-
have_pcrel: false,
|
388
|
-
have_unaligned_pcrel: false,
|
389
|
-
have_index: true,
|
390
|
-
},
|
391
|
-
);
|
392
|
-
for inst in mem_insts.into_iter() {
|
393
|
-
inst.emit(sink, emit_info, state);
|
394
|
-
}
|
395
|
-
|
396
|
-
if add_trap {
|
397
|
-
if let Some(trap_code) = mem.get_flags().trap_code() {
|
398
|
-
sink.add_trap(trap_code);
|
399
|
-
}
|
400
|
-
}
|
401
|
-
|
402
|
-
match &mem {
|
403
|
-
&MemArg::BXD12 {
|
404
|
-
base, index, disp, ..
|
405
|
-
} => {
|
406
|
-
put(sink, &enc_vrx(opcode, rd, base, index, disp.bits(), m3));
|
407
|
-
}
|
408
|
-
_ => unreachable!(),
|
409
|
-
}
|
410
|
-
}
|
411
|
-
|
412
|
-
//=============================================================================
|
413
|
-
// Instructions and subcomponents: emission
|
414
|
-
|
415
|
-
fn machreg_to_gpr(m: Reg) -> u8 {
|
416
|
-
assert_eq!(m.class(), RegClass::Int);
|
417
|
-
u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap()
|
418
|
-
}
|
419
|
-
|
420
|
-
fn machreg_to_vr(m: Reg) -> u8 {
|
421
|
-
assert_eq!(m.class(), RegClass::Float);
|
422
|
-
u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap()
|
423
|
-
}
|
424
|
-
|
425
|
-
fn machreg_to_fpr(m: Reg) -> u8 {
|
426
|
-
assert!(is_fpr(m));
|
427
|
-
u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap()
|
428
|
-
}
|
429
|
-
|
430
|
-
fn machreg_to_gpr_or_fpr(m: Reg) -> u8 {
|
431
|
-
let reg = u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap();
|
432
|
-
assert!(reg < 16);
|
433
|
-
reg
|
434
|
-
}
|
435
|
-
|
436
|
-
fn rxb(v1: Option<Reg>, v2: Option<Reg>, v3: Option<Reg>, v4: Option<Reg>) -> u8 {
|
437
|
-
let mut rxb = 0;
|
438
|
-
|
439
|
-
let is_high_vr = |reg| -> bool {
|
440
|
-
if let Some(reg) = reg {
|
441
|
-
if !is_fpr(reg) {
|
442
|
-
return true;
|
443
|
-
}
|
444
|
-
}
|
445
|
-
false
|
446
|
-
};
|
447
|
-
|
448
|
-
if is_high_vr(v1) {
|
449
|
-
rxb = rxb | 8;
|
450
|
-
}
|
451
|
-
if is_high_vr(v2) {
|
452
|
-
rxb = rxb | 4;
|
453
|
-
}
|
454
|
-
if is_high_vr(v3) {
|
455
|
-
rxb = rxb | 2;
|
456
|
-
}
|
457
|
-
if is_high_vr(v4) {
|
458
|
-
rxb = rxb | 1;
|
459
|
-
}
|
460
|
-
|
461
|
-
rxb
|
462
|
-
}
|
463
|
-
|
464
|
-
/// E-type instructions.
|
465
|
-
///
|
466
|
-
/// 15
|
467
|
-
/// opcode
|
468
|
-
/// 0
|
469
|
-
///
|
470
|
-
fn enc_e(opcode: u16) -> [u8; 2] {
|
471
|
-
let mut enc: [u8; 2] = [0; 2];
|
472
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
473
|
-
let opcode2 = (opcode & 0xff) as u8;
|
474
|
-
|
475
|
-
enc[0] = opcode1;
|
476
|
-
enc[1] = opcode2;
|
477
|
-
enc
|
478
|
-
}
|
479
|
-
|
480
|
-
/// RIa-type instructions.
|
481
|
-
///
|
482
|
-
/// 31 23 19 15
|
483
|
-
/// opcode1 r1 opcode2 i2
|
484
|
-
/// 24 20 16 0
|
485
|
-
///
|
486
|
-
fn enc_ri_a(opcode: u16, r1: Reg, i2: u16) -> [u8; 4] {
|
487
|
-
let mut enc: [u8; 4] = [0; 4];
|
488
|
-
let opcode1 = ((opcode >> 4) & 0xff) as u8;
|
489
|
-
let opcode2 = (opcode & 0xf) as u8;
|
490
|
-
let r1 = machreg_to_gpr(r1) & 0x0f;
|
491
|
-
|
492
|
-
enc[0] = opcode1;
|
493
|
-
enc[1] = r1 << 4 | opcode2;
|
494
|
-
enc[2..].copy_from_slice(&i2.to_be_bytes());
|
495
|
-
enc
|
496
|
-
}
|
497
|
-
|
498
|
-
/// RIb-type instructions.
|
499
|
-
///
|
500
|
-
/// 31 23 19 15
|
501
|
-
/// opcode1 r1 opcode2 ri2
|
502
|
-
/// 24 20 16 0
|
503
|
-
///
|
504
|
-
fn enc_ri_b(opcode: u16, r1: Reg, ri2: i32) -> [u8; 4] {
|
505
|
-
let mut enc: [u8; 4] = [0; 4];
|
506
|
-
let opcode1 = ((opcode >> 4) & 0xff) as u8;
|
507
|
-
let opcode2 = (opcode & 0xf) as u8;
|
508
|
-
let r1 = machreg_to_gpr(r1) & 0x0f;
|
509
|
-
let ri2 = ((ri2 >> 1) & 0xffff) as u16;
|
510
|
-
|
511
|
-
enc[0] = opcode1;
|
512
|
-
enc[1] = r1 << 4 | opcode2;
|
513
|
-
enc[2..].copy_from_slice(&ri2.to_be_bytes());
|
514
|
-
enc
|
515
|
-
}
|
516
|
-
|
517
|
-
/// RIc-type instructions.
|
518
|
-
///
|
519
|
-
/// 31 23 19 15
|
520
|
-
/// opcode1 m1 opcode2 ri2
|
521
|
-
/// 24 20 16 0
|
522
|
-
///
|
523
|
-
fn enc_ri_c(opcode: u16, m1: u8, ri2: i32) -> [u8; 4] {
|
524
|
-
let mut enc: [u8; 4] = [0; 4];
|
525
|
-
let opcode1 = ((opcode >> 4) & 0xff) as u8;
|
526
|
-
let opcode2 = (opcode & 0xf) as u8;
|
527
|
-
let m1 = m1 & 0x0f;
|
528
|
-
let ri2 = ((ri2 >> 1) & 0xffff) as u16;
|
529
|
-
|
530
|
-
enc[0] = opcode1;
|
531
|
-
enc[1] = m1 << 4 | opcode2;
|
532
|
-
enc[2..].copy_from_slice(&ri2.to_be_bytes());
|
533
|
-
enc
|
534
|
-
}
|
535
|
-
|
536
|
-
/// RIEa-type instructions.
|
537
|
-
///
|
538
|
-
/// 47 39 35 31 15 11 7
|
539
|
-
/// opcode1 r1 -- i2 m3 -- opcode2
|
540
|
-
/// 40 36 32 16 12 8 0
|
541
|
-
///
|
542
|
-
fn enc_rie_a(opcode: u16, r1: Reg, i2: u16, m3: u8) -> [u8; 6] {
|
543
|
-
let mut enc: [u8; 6] = [0; 6];
|
544
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
545
|
-
let opcode2 = (opcode & 0xff) as u8;
|
546
|
-
let r1 = machreg_to_gpr(r1) & 0x0f;
|
547
|
-
let m3 = m3 & 0x0f;
|
548
|
-
|
549
|
-
enc[0] = opcode1;
|
550
|
-
enc[1] = r1 << 4;
|
551
|
-
enc[2..4].copy_from_slice(&i2.to_be_bytes());
|
552
|
-
enc[4] = m3 << 4;
|
553
|
-
enc[5] = opcode2;
|
554
|
-
enc
|
555
|
-
}
|
556
|
-
|
557
|
-
/// RIEd-type instructions.
|
558
|
-
///
|
559
|
-
/// 47 39 35 31 15 7
|
560
|
-
/// opcode1 r1 r3 i2 -- opcode2
|
561
|
-
/// 40 36 32 16 8 0
|
562
|
-
///
|
563
|
-
fn enc_rie_d(opcode: u16, r1: Reg, r3: Reg, i2: u16) -> [u8; 6] {
|
564
|
-
let mut enc: [u8; 6] = [0; 6];
|
565
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
566
|
-
let opcode2 = (opcode & 0xff) as u8;
|
567
|
-
let r1 = machreg_to_gpr(r1) & 0x0f;
|
568
|
-
let r3 = machreg_to_gpr(r3) & 0x0f;
|
569
|
-
|
570
|
-
enc[0] = opcode1;
|
571
|
-
enc[1] = r1 << 4 | r3;
|
572
|
-
enc[2..4].copy_from_slice(&i2.to_be_bytes());
|
573
|
-
enc[5] = opcode2;
|
574
|
-
enc
|
575
|
-
}
|
576
|
-
|
577
|
-
/// RIEf-type instructions.
|
578
|
-
///
|
579
|
-
/// 47 39 35 31 23 15 7
|
580
|
-
/// opcode1 r1 r2 i3 i4 i5 opcode2
|
581
|
-
/// 40 36 32 24 16 8 0
|
582
|
-
///
|
583
|
-
fn enc_rie_f(opcode: u16, r1: Reg, r2: Reg, i3: u8, i4: u8, i5: u8) -> [u8; 6] {
|
584
|
-
let mut enc: [u8; 6] = [0; 6];
|
585
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
586
|
-
let opcode2 = (opcode & 0xff) as u8;
|
587
|
-
let r1 = machreg_to_gpr(r1) & 0x0f;
|
588
|
-
let r2 = machreg_to_gpr(r2) & 0x0f;
|
589
|
-
|
590
|
-
enc[0] = opcode1;
|
591
|
-
enc[1] = r1 << 4 | r2;
|
592
|
-
enc[2] = i3;
|
593
|
-
enc[3] = i4;
|
594
|
-
enc[4] = i5;
|
595
|
-
enc[5] = opcode2;
|
596
|
-
enc
|
597
|
-
}
|
598
|
-
|
599
|
-
/// RIEg-type instructions.
|
600
|
-
///
|
601
|
-
/// 47 39 35 31 15 7
|
602
|
-
/// opcode1 r1 m3 i2 -- opcode2
|
603
|
-
/// 40 36 32 16 8 0
|
604
|
-
///
|
605
|
-
fn enc_rie_g(opcode: u16, r1: Reg, i2: u16, m3: u8) -> [u8; 6] {
|
606
|
-
let mut enc: [u8; 6] = [0; 6];
|
607
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
608
|
-
let opcode2 = (opcode & 0xff) as u8;
|
609
|
-
let r1 = machreg_to_gpr(r1) & 0x0f;
|
610
|
-
let m3 = m3 & 0x0f;
|
611
|
-
|
612
|
-
enc[0] = opcode1;
|
613
|
-
enc[1] = r1 << 4 | m3;
|
614
|
-
enc[2..4].copy_from_slice(&i2.to_be_bytes());
|
615
|
-
enc[5] = opcode2;
|
616
|
-
enc
|
617
|
-
}
|
618
|
-
|
619
|
-
/// RILa-type instructions.
|
620
|
-
///
|
621
|
-
/// 47 39 35 31
|
622
|
-
/// opcode1 r1 opcode2 i2
|
623
|
-
/// 40 36 32 0
|
624
|
-
///
|
625
|
-
fn enc_ril_a(opcode: u16, r1: Reg, i2: u32) -> [u8; 6] {
|
626
|
-
let mut enc: [u8; 6] = [0; 6];
|
627
|
-
let opcode1 = ((opcode >> 4) & 0xff) as u8;
|
628
|
-
let opcode2 = (opcode & 0xf) as u8;
|
629
|
-
let r1 = machreg_to_gpr(r1) & 0x0f;
|
630
|
-
|
631
|
-
enc[0] = opcode1;
|
632
|
-
enc[1] = r1 << 4 | opcode2;
|
633
|
-
enc[2..].copy_from_slice(&i2.to_be_bytes());
|
634
|
-
enc
|
635
|
-
}
|
636
|
-
|
637
|
-
/// RILb-type instructions.
|
638
|
-
///
|
639
|
-
/// 47 39 35 31
|
640
|
-
/// opcode1 r1 opcode2 ri2
|
641
|
-
/// 40 36 32 0
|
642
|
-
///
|
643
|
-
fn enc_ril_b(opcode: u16, r1: Reg, ri2: u32) -> [u8; 6] {
|
644
|
-
let mut enc: [u8; 6] = [0; 6];
|
645
|
-
let opcode1 = ((opcode >> 4) & 0xff) as u8;
|
646
|
-
let opcode2 = (opcode & 0xf) as u8;
|
647
|
-
let r1 = machreg_to_gpr(r1) & 0x0f;
|
648
|
-
let ri2 = ri2 >> 1;
|
649
|
-
|
650
|
-
enc[0] = opcode1;
|
651
|
-
enc[1] = r1 << 4 | opcode2;
|
652
|
-
enc[2..].copy_from_slice(&ri2.to_be_bytes());
|
653
|
-
enc
|
654
|
-
}
|
655
|
-
|
656
|
-
/// RILc-type instructions.
|
657
|
-
///
|
658
|
-
/// 47 39 35 31
|
659
|
-
/// opcode1 m1 opcode2 i2
|
660
|
-
/// 40 36 32 0
|
661
|
-
///
|
662
|
-
fn enc_ril_c(opcode: u16, m1: u8, ri2: u32) -> [u8; 6] {
|
663
|
-
let mut enc: [u8; 6] = [0; 6];
|
664
|
-
let opcode1 = ((opcode >> 4) & 0xff) as u8;
|
665
|
-
let opcode2 = (opcode & 0xf) as u8;
|
666
|
-
let m1 = m1 & 0x0f;
|
667
|
-
let ri2 = ri2 >> 1;
|
668
|
-
|
669
|
-
enc[0] = opcode1;
|
670
|
-
enc[1] = m1 << 4 | opcode2;
|
671
|
-
enc[2..].copy_from_slice(&ri2.to_be_bytes());
|
672
|
-
enc
|
673
|
-
}
|
674
|
-
|
675
|
-
/// RR-type instructions.
|
676
|
-
///
|
677
|
-
/// 15 7 3
|
678
|
-
/// opcode r1 r2
|
679
|
-
/// 8 4 0
|
680
|
-
///
|
681
|
-
fn enc_rr(opcode: u16, r1: Reg, r2: Reg) -> [u8; 2] {
|
682
|
-
let mut enc: [u8; 2] = [0; 2];
|
683
|
-
let opcode = (opcode & 0xff) as u8;
|
684
|
-
let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
|
685
|
-
let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
|
686
|
-
|
687
|
-
enc[0] = opcode;
|
688
|
-
enc[1] = r1 << 4 | r2;
|
689
|
-
enc
|
690
|
-
}
|
691
|
-
|
692
|
-
/// RRD-type instructions.
|
693
|
-
///
|
694
|
-
/// 31 15 11 7 3
|
695
|
-
/// opcode r1 -- r3 r2
|
696
|
-
/// 16 12 8 4 0
|
697
|
-
///
|
698
|
-
fn enc_rrd(opcode: u16, r1: Reg, r2: Reg, r3: Reg) -> [u8; 4] {
|
699
|
-
let mut enc: [u8; 4] = [0; 4];
|
700
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
701
|
-
let opcode2 = (opcode & 0xff) as u8;
|
702
|
-
let r1 = machreg_to_fpr(r1) & 0x0f;
|
703
|
-
let r2 = machreg_to_fpr(r2) & 0x0f;
|
704
|
-
let r3 = machreg_to_fpr(r3) & 0x0f;
|
705
|
-
|
706
|
-
enc[0] = opcode1;
|
707
|
-
enc[1] = opcode2;
|
708
|
-
enc[2] = r1 << 4;
|
709
|
-
enc[3] = r3 << 4 | r2;
|
710
|
-
enc
|
711
|
-
}
|
712
|
-
|
713
|
-
/// RRE-type instructions.
|
714
|
-
///
|
715
|
-
/// 31 15 7 3
|
716
|
-
/// opcode -- r1 r2
|
717
|
-
/// 16 8 4 0
|
718
|
-
///
|
719
|
-
fn enc_rre(opcode: u16, r1: Reg, r2: Reg) -> [u8; 4] {
|
720
|
-
let mut enc: [u8; 4] = [0; 4];
|
721
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
722
|
-
let opcode2 = (opcode & 0xff) as u8;
|
723
|
-
let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
|
724
|
-
let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
|
725
|
-
|
726
|
-
enc[0] = opcode1;
|
727
|
-
enc[1] = opcode2;
|
728
|
-
enc[3] = r1 << 4 | r2;
|
729
|
-
enc
|
730
|
-
}
|
731
|
-
|
732
|
-
/// RRFa/b-type instructions.
|
733
|
-
///
|
734
|
-
/// 31 15 11 7 3
|
735
|
-
/// opcode r3 m4 r1 r2
|
736
|
-
/// 16 12 8 4 0
|
737
|
-
///
|
738
|
-
fn enc_rrf_ab(opcode: u16, r1: Reg, r2: Reg, r3: Reg, m4: u8) -> [u8; 4] {
|
739
|
-
let mut enc: [u8; 4] = [0; 4];
|
740
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
741
|
-
let opcode2 = (opcode & 0xff) as u8;
|
742
|
-
let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
|
743
|
-
let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
|
744
|
-
let r3 = machreg_to_gpr_or_fpr(r3) & 0x0f;
|
745
|
-
let m4 = m4 & 0x0f;
|
746
|
-
|
747
|
-
enc[0] = opcode1;
|
748
|
-
enc[1] = opcode2;
|
749
|
-
enc[2] = r3 << 4 | m4;
|
750
|
-
enc[3] = r1 << 4 | r2;
|
751
|
-
enc
|
752
|
-
}
|
753
|
-
|
754
|
-
/// RRFc/d/e-type instructions.
|
755
|
-
///
|
756
|
-
/// 31 15 11 7 3
|
757
|
-
/// opcode m3 m4 r1 r2
|
758
|
-
/// 16 12 8 4 0
|
759
|
-
///
|
760
|
-
fn enc_rrf_cde(opcode: u16, r1: Reg, r2: Reg, m3: u8, m4: u8) -> [u8; 4] {
|
761
|
-
let mut enc: [u8; 4] = [0; 4];
|
762
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
763
|
-
let opcode2 = (opcode & 0xff) as u8;
|
764
|
-
let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
|
765
|
-
let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
|
766
|
-
let m3 = m3 & 0x0f;
|
767
|
-
let m4 = m4 & 0x0f;
|
768
|
-
|
769
|
-
enc[0] = opcode1;
|
770
|
-
enc[1] = opcode2;
|
771
|
-
enc[2] = m3 << 4 | m4;
|
772
|
-
enc[3] = r1 << 4 | r2;
|
773
|
-
enc
|
774
|
-
}
|
775
|
-
|
776
|
-
/// RS-type instructions.
|
777
|
-
///
|
778
|
-
/// 31 23 19 15 11
|
779
|
-
/// opcode r1 r3 b2 d2
|
780
|
-
/// 24 20 16 12 0
|
781
|
-
///
|
782
|
-
fn enc_rs(opcode: u16, r1: Reg, r3: Reg, b2: Reg, d2: u32) -> [u8; 4] {
|
783
|
-
let opcode = (opcode & 0xff) as u8;
|
784
|
-
let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
|
785
|
-
let r3 = machreg_to_gpr_or_fpr(r3) & 0x0f;
|
786
|
-
let b2 = machreg_to_gpr(b2) & 0x0f;
|
787
|
-
let d2_lo = (d2 & 0xff) as u8;
|
788
|
-
let d2_hi = ((d2 >> 8) & 0x0f) as u8;
|
789
|
-
|
790
|
-
let mut enc: [u8; 4] = [0; 4];
|
791
|
-
enc[0] = opcode;
|
792
|
-
enc[1] = r1 << 4 | r3;
|
793
|
-
enc[2] = b2 << 4 | d2_hi;
|
794
|
-
enc[3] = d2_lo;
|
795
|
-
enc
|
796
|
-
}
|
797
|
-
|
798
|
-
/// RSY-type instructions.
|
799
|
-
///
|
800
|
-
/// 47 39 35 31 27 15 7
|
801
|
-
/// opcode1 r1 r3 b2 dl2 dh2 opcode2
|
802
|
-
/// 40 36 32 28 16 8 0
|
803
|
-
///
|
804
|
-
fn enc_rsy(opcode: u16, r1: Reg, r3: Reg, b2: Reg, d2: u32) -> [u8; 6] {
|
805
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
806
|
-
let opcode2 = (opcode & 0xff) as u8;
|
807
|
-
let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
|
808
|
-
let r3 = machreg_to_gpr_or_fpr(r3) & 0x0f;
|
809
|
-
let b2 = machreg_to_gpr(b2) & 0x0f;
|
810
|
-
let dl2_lo = (d2 & 0xff) as u8;
|
811
|
-
let dl2_hi = ((d2 >> 8) & 0x0f) as u8;
|
812
|
-
let dh2 = ((d2 >> 12) & 0xff) as u8;
|
813
|
-
|
814
|
-
let mut enc: [u8; 6] = [0; 6];
|
815
|
-
enc[0] = opcode1;
|
816
|
-
enc[1] = r1 << 4 | r3;
|
817
|
-
enc[2] = b2 << 4 | dl2_hi;
|
818
|
-
enc[3] = dl2_lo;
|
819
|
-
enc[4] = dh2;
|
820
|
-
enc[5] = opcode2;
|
821
|
-
enc
|
822
|
-
}
|
823
|
-
|
824
|
-
/// RX-type instructions.
|
825
|
-
///
|
826
|
-
/// 31 23 19 15 11
|
827
|
-
/// opcode r1 x2 b2 d2
|
828
|
-
/// 24 20 16 12 0
|
829
|
-
///
|
830
|
-
fn enc_rx(opcode: u16, r1: Reg, b2: Reg, x2: Reg, d2: u32) -> [u8; 4] {
|
831
|
-
let opcode = (opcode & 0xff) as u8;
|
832
|
-
let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
|
833
|
-
let b2 = machreg_to_gpr(b2) & 0x0f;
|
834
|
-
let x2 = machreg_to_gpr(x2) & 0x0f;
|
835
|
-
let d2_lo = (d2 & 0xff) as u8;
|
836
|
-
let d2_hi = ((d2 >> 8) & 0x0f) as u8;
|
837
|
-
|
838
|
-
let mut enc: [u8; 4] = [0; 4];
|
839
|
-
enc[0] = opcode;
|
840
|
-
enc[1] = r1 << 4 | x2;
|
841
|
-
enc[2] = b2 << 4 | d2_hi;
|
842
|
-
enc[3] = d2_lo;
|
843
|
-
enc
|
844
|
-
}
|
845
|
-
|
846
|
-
/// RXY-type instructions.
|
847
|
-
///
|
848
|
-
/// 47 39 35 31 27 15 7
|
849
|
-
/// opcode1 r1 x2 b2 dl2 dh2 opcode2
|
850
|
-
/// 40 36 32 28 16 8 0
|
851
|
-
///
|
852
|
-
fn enc_rxy(opcode: u16, r1: Reg, b2: Reg, x2: Reg, d2: u32) -> [u8; 6] {
|
853
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
854
|
-
let opcode2 = (opcode & 0xff) as u8;
|
855
|
-
let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
|
856
|
-
let b2 = machreg_to_gpr(b2) & 0x0f;
|
857
|
-
let x2 = machreg_to_gpr(x2) & 0x0f;
|
858
|
-
let dl2_lo = (d2 & 0xff) as u8;
|
859
|
-
let dl2_hi = ((d2 >> 8) & 0x0f) as u8;
|
860
|
-
let dh2 = ((d2 >> 12) & 0xff) as u8;
|
861
|
-
|
862
|
-
let mut enc: [u8; 6] = [0; 6];
|
863
|
-
enc[0] = opcode1;
|
864
|
-
enc[1] = r1 << 4 | x2;
|
865
|
-
enc[2] = b2 << 4 | dl2_hi;
|
866
|
-
enc[3] = dl2_lo;
|
867
|
-
enc[4] = dh2;
|
868
|
-
enc[5] = opcode2;
|
869
|
-
enc
|
870
|
-
}
|
871
|
-
|
872
|
-
/// SI-type instructions.
|
873
|
-
///
|
874
|
-
/// 31 23 15 11
|
875
|
-
/// opcode i2 b1 d1
|
876
|
-
/// 24 16 12 0
|
877
|
-
///
|
878
|
-
fn enc_si(opcode: u16, b1: Reg, d1: u32, i2: u8) -> [u8; 4] {
|
879
|
-
let opcode = (opcode & 0xff) as u8;
|
880
|
-
let b1 = machreg_to_gpr(b1) & 0x0f;
|
881
|
-
let d1_lo = (d1 & 0xff) as u8;
|
882
|
-
let d1_hi = ((d1 >> 8) & 0x0f) as u8;
|
883
|
-
|
884
|
-
let mut enc: [u8; 4] = [0; 4];
|
885
|
-
enc[0] = opcode;
|
886
|
-
enc[1] = i2;
|
887
|
-
enc[2] = b1 << 4 | d1_hi;
|
888
|
-
enc[3] = d1_lo;
|
889
|
-
enc
|
890
|
-
}
|
891
|
-
|
892
|
-
/// SIL-type instructions.
|
893
|
-
///
|
894
|
-
/// 47 31 27 15
|
895
|
-
/// opcode b1 d1 i2
|
896
|
-
/// 32 28 16 0
|
897
|
-
///
|
898
|
-
fn enc_sil(opcode: u16, b1: Reg, d1: u32, i2: i16) -> [u8; 6] {
|
899
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
900
|
-
let opcode2 = (opcode & 0xff) as u8;
|
901
|
-
let b1 = machreg_to_gpr(b1) & 0x0f;
|
902
|
-
let d1_lo = (d1 & 0xff) as u8;
|
903
|
-
let d1_hi = ((d1 >> 8) & 0x0f) as u8;
|
904
|
-
|
905
|
-
let mut enc: [u8; 6] = [0; 6];
|
906
|
-
enc[0] = opcode1;
|
907
|
-
enc[1] = opcode2;
|
908
|
-
enc[2] = b1 << 4 | d1_hi;
|
909
|
-
enc[3] = d1_lo;
|
910
|
-
enc[4..].copy_from_slice(&i2.to_be_bytes());
|
911
|
-
enc
|
912
|
-
}
|
913
|
-
|
914
|
-
/// SIY-type instructions.
|
915
|
-
///
|
916
|
-
/// 47 39 31 27 15 7
|
917
|
-
/// opcode1 i2 b1 dl1 dh1 opcode2
|
918
|
-
/// 40 32 28 16 8 0
|
919
|
-
///
|
920
|
-
fn enc_siy(opcode: u16, b1: Reg, d1: u32, i2: u8) -> [u8; 6] {
|
921
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
922
|
-
let opcode2 = (opcode & 0xff) as u8;
|
923
|
-
let b1 = machreg_to_gpr(b1) & 0x0f;
|
924
|
-
let dl1_lo = (d1 & 0xff) as u8;
|
925
|
-
let dl1_hi = ((d1 >> 8) & 0x0f) as u8;
|
926
|
-
let dh1 = ((d1 >> 12) & 0xff) as u8;
|
927
|
-
|
928
|
-
let mut enc: [u8; 6] = [0; 6];
|
929
|
-
enc[0] = opcode1;
|
930
|
-
enc[1] = i2;
|
931
|
-
enc[2] = b1 << 4 | dl1_hi;
|
932
|
-
enc[3] = dl1_lo;
|
933
|
-
enc[4] = dh1;
|
934
|
-
enc[5] = opcode2;
|
935
|
-
enc
|
936
|
-
}
|
937
|
-
|
938
|
-
/// VRIa-type instructions.
|
939
|
-
///
|
940
|
-
/// 47 39 35 31 15 11 7
|
941
|
-
/// opcode1 v1 - i2 m3 rxb opcode2
|
942
|
-
/// 40 36 32 16 12 8 0
|
943
|
-
///
|
944
|
-
fn enc_vri_a(opcode: u16, v1: Reg, i2: u16, m3: u8) -> [u8; 6] {
|
945
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
946
|
-
let opcode2 = (opcode & 0xff) as u8;
|
947
|
-
let rxb = rxb(Some(v1), None, None, None);
|
948
|
-
let v1 = machreg_to_vr(v1) & 0x0f;
|
949
|
-
let m3 = m3 & 0x0f;
|
950
|
-
|
951
|
-
let mut enc: [u8; 6] = [0; 6];
|
952
|
-
enc[0] = opcode1;
|
953
|
-
enc[1] = v1 << 4;
|
954
|
-
enc[2..4].copy_from_slice(&i2.to_be_bytes());
|
955
|
-
enc[4] = m3 << 4 | rxb;
|
956
|
-
enc[5] = opcode2;
|
957
|
-
enc
|
958
|
-
}
|
959
|
-
|
960
|
-
/// VRIb-type instructions.
|
961
|
-
///
|
962
|
-
/// 47 39 35 31 23 15 11 7
|
963
|
-
/// opcode1 v1 - i2 i3 m4 rxb opcode2
|
964
|
-
/// 40 36 32 24 16 12 8 0
|
965
|
-
///
|
966
|
-
fn enc_vri_b(opcode: u16, v1: Reg, i2: u8, i3: u8, m4: u8) -> [u8; 6] {
|
967
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
968
|
-
let opcode2 = (opcode & 0xff) as u8;
|
969
|
-
let rxb = rxb(Some(v1), None, None, None);
|
970
|
-
let v1 = machreg_to_vr(v1) & 0x0f;
|
971
|
-
let m4 = m4 & 0x0f;
|
972
|
-
|
973
|
-
let mut enc: [u8; 6] = [0; 6];
|
974
|
-
enc[0] = opcode1;
|
975
|
-
enc[1] = v1 << 4;
|
976
|
-
enc[2] = i2;
|
977
|
-
enc[3] = i3;
|
978
|
-
enc[4] = m4 << 4 | rxb;
|
979
|
-
enc[5] = opcode2;
|
980
|
-
enc
|
981
|
-
}
|
982
|
-
|
983
|
-
/// VRIc-type instructions.
|
984
|
-
///
|
985
|
-
/// 47 39 35 31 15 11 7
|
986
|
-
/// opcode1 v1 v3 i2 m4 rxb opcode2
|
987
|
-
/// 40 36 32 16 12 8 0
|
988
|
-
///
|
989
|
-
fn enc_vri_c(opcode: u16, v1: Reg, i2: u16, v3: Reg, m4: u8) -> [u8; 6] {
|
990
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
991
|
-
let opcode2 = (opcode & 0xff) as u8;
|
992
|
-
let rxb = rxb(Some(v1), Some(v3), None, None);
|
993
|
-
let v1 = machreg_to_vr(v1) & 0x0f;
|
994
|
-
let v3 = machreg_to_vr(v3) & 0x0f;
|
995
|
-
let m4 = m4 & 0x0f;
|
996
|
-
|
997
|
-
let mut enc: [u8; 6] = [0; 6];
|
998
|
-
enc[0] = opcode1;
|
999
|
-
enc[1] = v1 << 4 | v3;
|
1000
|
-
enc[2..4].copy_from_slice(&i2.to_be_bytes());
|
1001
|
-
enc[4] = m4 << 4 | rxb;
|
1002
|
-
enc[5] = opcode2;
|
1003
|
-
enc
|
1004
|
-
}
|
1005
|
-
|
1006
|
-
/// VRRa-type instructions.
|
1007
|
-
///
|
1008
|
-
/// 47 39 35 31 23 19 15 11 7
|
1009
|
-
/// opcode1 v1 v2 - m5 m3 m2 rxb opcode2
|
1010
|
-
/// 40 36 32 24 20 16 12 8 0
|
1011
|
-
///
|
1012
|
-
fn enc_vrr_a(opcode: u16, v1: Reg, v2: Reg, m3: u8, m4: u8, m5: u8) -> [u8; 6] {
|
1013
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
1014
|
-
let opcode2 = (opcode & 0xff) as u8;
|
1015
|
-
let rxb = rxb(Some(v1), Some(v2), None, None);
|
1016
|
-
let v1 = machreg_to_vr(v1) & 0x0f;
|
1017
|
-
let v2 = machreg_to_vr(v2) & 0x0f;
|
1018
|
-
let m3 = m3 & 0x0f;
|
1019
|
-
let m4 = m4 & 0x0f;
|
1020
|
-
let m5 = m5 & 0x0f;
|
1021
|
-
|
1022
|
-
let mut enc: [u8; 6] = [0; 6];
|
1023
|
-
enc[0] = opcode1;
|
1024
|
-
enc[1] = v1 << 4 | v2;
|
1025
|
-
enc[2] = 0;
|
1026
|
-
enc[3] = m5 << 4 | m4;
|
1027
|
-
enc[4] = m3 << 4 | rxb;
|
1028
|
-
enc[5] = opcode2;
|
1029
|
-
enc
|
1030
|
-
}
|
1031
|
-
|
1032
|
-
/// VRRb-type instructions.
|
1033
|
-
///
|
1034
|
-
/// 47 39 35 31 27 23 19 15 11 7
|
1035
|
-
/// opcode1 v1 v2 v3 - m5 - m4 rxb opcode2
|
1036
|
-
/// 40 36 32 28 24 20 16 12 8 0
|
1037
|
-
///
|
1038
|
-
fn enc_vrr_b(opcode: u16, v1: Reg, v2: Reg, v3: Reg, m4: u8, m5: u8) -> [u8; 6] {
|
1039
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
1040
|
-
let opcode2 = (opcode & 0xff) as u8;
|
1041
|
-
let rxb = rxb(Some(v1), Some(v2), Some(v3), None);
|
1042
|
-
let v1 = machreg_to_vr(v1) & 0x0f;
|
1043
|
-
let v2 = machreg_to_vr(v2) & 0x0f;
|
1044
|
-
let v3 = machreg_to_vr(v3) & 0x0f;
|
1045
|
-
let m4 = m4 & 0x0f;
|
1046
|
-
let m5 = m5 & 0x0f;
|
1047
|
-
|
1048
|
-
let mut enc: [u8; 6] = [0; 6];
|
1049
|
-
enc[0] = opcode1;
|
1050
|
-
enc[1] = v1 << 4 | v2;
|
1051
|
-
enc[2] = v3 << 4;
|
1052
|
-
enc[3] = m5 << 4;
|
1053
|
-
enc[4] = m4 << 4 | rxb;
|
1054
|
-
enc[5] = opcode2;
|
1055
|
-
enc
|
1056
|
-
}
|
1057
|
-
|
1058
|
-
/// VRRc-type instructions.
|
1059
|
-
///
|
1060
|
-
/// 47 39 35 31 27 23 19 15 11 7
|
1061
|
-
/// opcode1 v1 v2 v3 - m6 m5 m4 rxb opcode2
|
1062
|
-
/// 40 36 32 28 24 20 16 12 8 0
|
1063
|
-
///
|
1064
|
-
fn enc_vrr_c(opcode: u16, v1: Reg, v2: Reg, v3: Reg, m4: u8, m5: u8, m6: u8) -> [u8; 6] {
|
1065
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
1066
|
-
let opcode2 = (opcode & 0xff) as u8;
|
1067
|
-
let rxb = rxb(Some(v1), Some(v2), Some(v3), None);
|
1068
|
-
let v1 = machreg_to_vr(v1) & 0x0f;
|
1069
|
-
let v2 = machreg_to_vr(v2) & 0x0f;
|
1070
|
-
let v3 = machreg_to_vr(v3) & 0x0f;
|
1071
|
-
let m4 = m4 & 0x0f;
|
1072
|
-
let m5 = m5 & 0x0f;
|
1073
|
-
let m6 = m6 & 0x0f;
|
1074
|
-
|
1075
|
-
let mut enc: [u8; 6] = [0; 6];
|
1076
|
-
enc[0] = opcode1;
|
1077
|
-
enc[1] = v1 << 4 | v2;
|
1078
|
-
enc[2] = v3 << 4;
|
1079
|
-
enc[3] = m6 << 4 | m5;
|
1080
|
-
enc[4] = m4 << 4 | rxb;
|
1081
|
-
enc[5] = opcode2;
|
1082
|
-
enc
|
1083
|
-
}
|
1084
|
-
|
1085
|
-
/// VRRe-type instructions.
|
1086
|
-
///
|
1087
|
-
/// 47 39 35 31 27 23 19 15 11 7
|
1088
|
-
/// opcode1 v1 v2 v3 m6 - m5 v4 rxb opcode2
|
1089
|
-
/// 40 36 32 28 24 20 16 12 8 0
|
1090
|
-
///
|
1091
|
-
fn enc_vrr_e(opcode: u16, v1: Reg, v2: Reg, v3: Reg, v4: Reg, m5: u8, m6: u8) -> [u8; 6] {
|
1092
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
1093
|
-
let opcode2 = (opcode & 0xff) as u8;
|
1094
|
-
let rxb = rxb(Some(v1), Some(v2), Some(v3), Some(v4));
|
1095
|
-
let v1 = machreg_to_vr(v1) & 0x0f;
|
1096
|
-
let v2 = machreg_to_vr(v2) & 0x0f;
|
1097
|
-
let v3 = machreg_to_vr(v3) & 0x0f;
|
1098
|
-
let v4 = machreg_to_vr(v4) & 0x0f;
|
1099
|
-
let m5 = m5 & 0x0f;
|
1100
|
-
let m6 = m6 & 0x0f;
|
1101
|
-
|
1102
|
-
let mut enc: [u8; 6] = [0; 6];
|
1103
|
-
enc[0] = opcode1;
|
1104
|
-
enc[1] = v1 << 4 | v2;
|
1105
|
-
enc[2] = v3 << 4 | m6;
|
1106
|
-
enc[3] = m5;
|
1107
|
-
enc[4] = v4 << 4 | rxb;
|
1108
|
-
enc[5] = opcode2;
|
1109
|
-
enc
|
1110
|
-
}
|
1111
|
-
|
1112
|
-
/// VRRf-type instructions.
|
1113
|
-
///
|
1114
|
-
/// 47 39 35 31 27 11 7
|
1115
|
-
/// opcode1 v1 r2 r3 - rxb opcode2
|
1116
|
-
/// 40 36 32 28 12 8 0
|
1117
|
-
///
|
1118
|
-
fn enc_vrr_f(opcode: u16, v1: Reg, r2: Reg, r3: Reg) -> [u8; 6] {
|
1119
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
1120
|
-
let opcode2 = (opcode & 0xff) as u8;
|
1121
|
-
let rxb = rxb(Some(v1), None, None, None);
|
1122
|
-
let v1 = machreg_to_vr(v1) & 0x0f;
|
1123
|
-
let r2 = machreg_to_gpr(r2) & 0x0f;
|
1124
|
-
let r3 = machreg_to_gpr(r3) & 0x0f;
|
1125
|
-
|
1126
|
-
let mut enc: [u8; 6] = [0; 6];
|
1127
|
-
enc[0] = opcode1;
|
1128
|
-
enc[1] = v1 << 4 | r2;
|
1129
|
-
enc[2] = r3 << 4;
|
1130
|
-
enc[4] = rxb;
|
1131
|
-
enc[5] = opcode2;
|
1132
|
-
enc
|
1133
|
-
}
|
1134
|
-
|
1135
|
-
/// VRSa-type instructions.
|
1136
|
-
///
|
1137
|
-
/// 47 39 35 31 27 15 11 7
|
1138
|
-
/// opcode1 v1 v3 b2 d2 m4 rxb opcode2
|
1139
|
-
/// 40 36 32 28 16 12 8 0
|
1140
|
-
///
|
1141
|
-
fn enc_vrs_a(opcode: u16, v1: Reg, b2: Reg, d2: u32, v3: Reg, m4: u8) -> [u8; 6] {
|
1142
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
1143
|
-
let opcode2 = (opcode & 0xff) as u8;
|
1144
|
-
let rxb = rxb(Some(v1), Some(v3), None, None);
|
1145
|
-
let v1 = machreg_to_vr(v1) & 0x0f;
|
1146
|
-
let b2 = machreg_to_gpr(b2) & 0x0f;
|
1147
|
-
let v3 = machreg_to_vr(v3) & 0x0f;
|
1148
|
-
let d2_lo = (d2 & 0xff) as u8;
|
1149
|
-
let d2_hi = ((d2 >> 8) & 0x0f) as u8;
|
1150
|
-
let m4 = m4 & 0x0f;
|
1151
|
-
|
1152
|
-
let mut enc: [u8; 6] = [0; 6];
|
1153
|
-
enc[0] = opcode1;
|
1154
|
-
enc[1] = v1 << 4 | v3;
|
1155
|
-
enc[2] = b2 << 4 | d2_hi;
|
1156
|
-
enc[3] = d2_lo;
|
1157
|
-
enc[4] = m4 << 4 | rxb;
|
1158
|
-
enc[5] = opcode2;
|
1159
|
-
enc
|
1160
|
-
}
|
1161
|
-
|
1162
|
-
/// VRSb-type instructions.
|
1163
|
-
///
|
1164
|
-
/// 47 39 35 31 27 15 11 7
|
1165
|
-
/// opcode1 v1 r3 b2 d2 m4 rxb opcode2
|
1166
|
-
/// 40 36 32 28 16 12 8 0
|
1167
|
-
///
|
1168
|
-
fn enc_vrs_b(opcode: u16, v1: Reg, b2: Reg, d2: u32, r3: Reg, m4: u8) -> [u8; 6] {
|
1169
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
1170
|
-
let opcode2 = (opcode & 0xff) as u8;
|
1171
|
-
let rxb = rxb(Some(v1), None, None, None);
|
1172
|
-
let v1 = machreg_to_vr(v1) & 0x0f;
|
1173
|
-
let b2 = machreg_to_gpr(b2) & 0x0f;
|
1174
|
-
let r3 = machreg_to_gpr(r3) & 0x0f;
|
1175
|
-
let d2_lo = (d2 & 0xff) as u8;
|
1176
|
-
let d2_hi = ((d2 >> 8) & 0x0f) as u8;
|
1177
|
-
let m4 = m4 & 0x0f;
|
1178
|
-
|
1179
|
-
let mut enc: [u8; 6] = [0; 6];
|
1180
|
-
enc[0] = opcode1;
|
1181
|
-
enc[1] = v1 << 4 | r3;
|
1182
|
-
enc[2] = b2 << 4 | d2_hi;
|
1183
|
-
enc[3] = d2_lo;
|
1184
|
-
enc[4] = m4 << 4 | rxb;
|
1185
|
-
enc[5] = opcode2;
|
1186
|
-
enc
|
1187
|
-
}
|
1188
|
-
|
1189
|
-
/// VRSc-type instructions.
|
1190
|
-
///
|
1191
|
-
/// 47 39 35 31 27 15 11 7
|
1192
|
-
/// opcode1 r1 v3 b2 d2 m4 rxb opcode2
|
1193
|
-
/// 40 36 32 28 16 12 8 0
|
1194
|
-
///
|
1195
|
-
fn enc_vrs_c(opcode: u16, r1: Reg, b2: Reg, d2: u32, v3: Reg, m4: u8) -> [u8; 6] {
|
1196
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
1197
|
-
let opcode2 = (opcode & 0xff) as u8;
|
1198
|
-
let rxb = rxb(None, Some(v3), None, None);
|
1199
|
-
let r1 = machreg_to_gpr(r1) & 0x0f;
|
1200
|
-
let b2 = machreg_to_gpr(b2) & 0x0f;
|
1201
|
-
let v3 = machreg_to_vr(v3) & 0x0f;
|
1202
|
-
let d2_lo = (d2 & 0xff) as u8;
|
1203
|
-
let d2_hi = ((d2 >> 8) & 0x0f) as u8;
|
1204
|
-
let m4 = m4 & 0x0f;
|
1205
|
-
|
1206
|
-
let mut enc: [u8; 6] = [0; 6];
|
1207
|
-
enc[0] = opcode1;
|
1208
|
-
enc[1] = r1 << 4 | v3;
|
1209
|
-
enc[2] = b2 << 4 | d2_hi;
|
1210
|
-
enc[3] = d2_lo;
|
1211
|
-
enc[4] = m4 << 4 | rxb;
|
1212
|
-
enc[5] = opcode2;
|
1213
|
-
enc
|
1214
|
-
}
|
1215
|
-
|
1216
|
-
/// VRX-type instructions.
|
1217
|
-
///
|
1218
|
-
/// 47 39 35 31 27 15 11 7
|
1219
|
-
/// opcode1 v1 x2 b2 d2 m3 rxb opcode2
|
1220
|
-
/// 40 36 32 28 16 12 8 0
|
1221
|
-
///
|
1222
|
-
fn enc_vrx(opcode: u16, v1: Reg, b2: Reg, x2: Reg, d2: u32, m3: u8) -> [u8; 6] {
|
1223
|
-
let opcode1 = ((opcode >> 8) & 0xff) as u8;
|
1224
|
-
let opcode2 = (opcode & 0xff) as u8;
|
1225
|
-
let rxb = rxb(Some(v1), None, None, None);
|
1226
|
-
let v1 = machreg_to_vr(v1) & 0x0f;
|
1227
|
-
let b2 = machreg_to_gpr(b2) & 0x0f;
|
1228
|
-
let x2 = machreg_to_gpr(x2) & 0x0f;
|
1229
|
-
let d2_lo = (d2 & 0xff) as u8;
|
1230
|
-
let d2_hi = ((d2 >> 8) & 0x0f) as u8;
|
1231
|
-
let m3 = m3 & 0x0f;
|
1232
|
-
|
1233
|
-
let mut enc: [u8; 6] = [0; 6];
|
1234
|
-
enc[0] = opcode1;
|
1235
|
-
enc[1] = v1 << 4 | x2;
|
1236
|
-
enc[2] = b2 << 4 | d2_hi;
|
1237
|
-
enc[3] = d2_lo;
|
1238
|
-
enc[4] = m3 << 4 | rxb;
|
1239
|
-
enc[5] = opcode2;
|
1240
|
-
enc
|
1241
|
-
}
|
1242
|
-
|
1243
|
-
/// Emit encoding to sink.
|
1244
|
-
fn put(sink: &mut MachBuffer<Inst>, enc: &[u8]) {
|
1245
|
-
for byte in enc {
|
1246
|
-
sink.put1(*byte);
|
1247
|
-
}
|
1248
|
-
}
|
1249
|
-
|
1250
|
-
/// Emit encoding to sink, adding a trap on the last byte.
|
1251
|
-
fn put_with_trap(sink: &mut MachBuffer<Inst>, enc: &[u8], trap_code: TrapCode) {
|
1252
|
-
let len = enc.len();
|
1253
|
-
for i in 0..len - 1 {
|
1254
|
-
sink.put1(enc[i]);
|
1255
|
-
}
|
1256
|
-
sink.add_trap(trap_code);
|
1257
|
-
sink.put1(enc[len - 1]);
|
1258
|
-
}
|
1259
|
-
|
1260
|
-
/// State carried between emissions of a sequence of instructions.
|
1261
|
-
#[derive(Default, Clone, Debug)]
|
1262
|
-
pub struct EmitState {
|
1263
|
-
/// Offset from the actual SP to the "nominal SP". The latter is defined
|
1264
|
-
/// as the value the stack pointer has after the prolog. This offset is
|
1265
|
-
/// normally always zero, except during a call sequence using the tail-call
|
1266
|
-
/// ABI, between the AllocateArgs and the actual call instruction.
|
1267
|
-
pub(crate) nominal_sp_offset: u32,
|
1268
|
-
|
1269
|
-
/// The user stack map for the upcoming instruction, as provided to
|
1270
|
-
/// `pre_safepoint()`.
|
1271
|
-
user_stack_map: Option<ir::UserStackMap>,
|
1272
|
-
|
1273
|
-
/// Only used during fuzz-testing. Otherwise, it is a zero-sized struct and
|
1274
|
-
/// optimized away at compiletime. See [cranelift_control].
|
1275
|
-
ctrl_plane: ControlPlane,
|
1276
|
-
|
1277
|
-
frame_layout: FrameLayout,
|
1278
|
-
}
|
1279
|
-
|
1280
|
-
impl MachInstEmitState<Inst> for EmitState {
|
1281
|
-
fn new(abi: &Callee<S390xMachineDeps>, ctrl_plane: ControlPlane) -> Self {
|
1282
|
-
EmitState {
|
1283
|
-
nominal_sp_offset: 0,
|
1284
|
-
user_stack_map: None,
|
1285
|
-
ctrl_plane,
|
1286
|
-
frame_layout: abi.frame_layout().clone(),
|
1287
|
-
}
|
1288
|
-
}
|
1289
|
-
|
1290
|
-
fn pre_safepoint(&mut self, user_stack_map: Option<ir::UserStackMap>) {
|
1291
|
-
self.user_stack_map = user_stack_map;
|
1292
|
-
}
|
1293
|
-
|
1294
|
-
fn ctrl_plane_mut(&mut self) -> &mut ControlPlane {
|
1295
|
-
&mut self.ctrl_plane
|
1296
|
-
}
|
1297
|
-
|
1298
|
-
fn take_ctrl_plane(self) -> ControlPlane {
|
1299
|
-
self.ctrl_plane
|
1300
|
-
}
|
1301
|
-
|
1302
|
-
fn frame_layout(&self) -> &FrameLayout {
|
1303
|
-
&self.frame_layout
|
1304
|
-
}
|
1305
|
-
}
|
1306
|
-
|
1307
|
-
impl EmitState {
|
1308
|
-
fn take_stack_map(&mut self) -> Option<ir::UserStackMap> {
|
1309
|
-
self.user_stack_map.take()
|
1310
|
-
}
|
1311
|
-
|
1312
|
-
fn clear_post_insn(&mut self) {
|
1313
|
-
self.user_stack_map = None;
|
1314
|
-
}
|
1315
|
-
}
|
1316
|
-
|
1317
|
-
/// Constant state used during function compilation.
|
1318
|
-
pub struct EmitInfo {
|
1319
|
-
isa_flags: s390x_settings::Flags,
|
1320
|
-
}
|
1321
|
-
|
1322
|
-
impl EmitInfo {
|
1323
|
-
pub(crate) fn new(isa_flags: s390x_settings::Flags) -> Self {
|
1324
|
-
Self { isa_flags }
|
1325
|
-
}
|
1326
|
-
}
|
1327
|
-
|
1328
|
-
impl MachInstEmit for Inst {
|
1329
|
-
type State = EmitState;
|
1330
|
-
type Info = EmitInfo;
|
1331
|
-
|
1332
|
-
fn emit(&self, sink: &mut MachBuffer<Inst>, emit_info: &Self::Info, state: &mut EmitState) {
|
1333
|
-
self.emit_with_alloc_consumer(sink, emit_info, state)
|
1334
|
-
}
|
1335
|
-
|
1336
|
-
fn pretty_print_inst(&self, state: &mut EmitState) -> String {
|
1337
|
-
self.print_with_state(state)
|
1338
|
-
}
|
1339
|
-
}
|
1340
|
-
|
1341
|
-
impl Inst {
|
1342
|
-
fn emit_with_alloc_consumer(
|
1343
|
-
&self,
|
1344
|
-
sink: &mut MachBuffer<Inst>,
|
1345
|
-
emit_info: &EmitInfo,
|
1346
|
-
state: &mut EmitState,
|
1347
|
-
) {
|
1348
|
-
// Verify that we can emit this Inst in the current ISA
|
1349
|
-
let matches_isa_flags = |iset_requirement: &InstructionSet| -> bool {
|
1350
|
-
match iset_requirement {
|
1351
|
-
// Baseline ISA is z14
|
1352
|
-
InstructionSet::Base => true,
|
1353
|
-
// Miscellaneous-Instruction-Extensions Facility 2 (z15)
|
1354
|
-
InstructionSet::MIE2 => emit_info.isa_flags.has_mie2(),
|
1355
|
-
// Vector-Enhancements Facility 2 (z15)
|
1356
|
-
InstructionSet::VXRS_EXT2 => emit_info.isa_flags.has_vxrs_ext2(),
|
1357
|
-
}
|
1358
|
-
};
|
1359
|
-
let isa_requirements = self.available_in_isa();
|
1360
|
-
if !matches_isa_flags(&isa_requirements) {
|
1361
|
-
panic!(
|
1362
|
-
"Cannot emit inst '{self:?}' for target; failed to match ISA requirements: {isa_requirements:?}"
|
1363
|
-
)
|
1364
|
-
}
|
1365
|
-
|
1366
|
-
// N.B.: we *must* not exceed the "worst-case size" used to compute
|
1367
|
-
// where to insert islands, except when islands are explicitly triggered
|
1368
|
-
// (with an `EmitIsland`). We check this in debug builds. This is `mut`
|
1369
|
-
// to allow disabling the check for `JTSequence`, which is always
|
1370
|
-
// emitted following an `EmitIsland`.
|
1371
|
-
let mut start_off = sink.cur_offset();
|
1372
|
-
|
1373
|
-
match self {
|
1374
|
-
&Inst::AluRRR { alu_op, rd, rn, rm } => {
|
1375
|
-
let (opcode, have_rr) = match alu_op {
|
1376
|
-
ALUOp::Add32 => (0xb9f8, true), // ARK
|
1377
|
-
ALUOp::Add64 => (0xb9e8, true), // AGRK
|
1378
|
-
ALUOp::AddLogical32 => (0xb9fa, true), // ALRK
|
1379
|
-
ALUOp::AddLogical64 => (0xb9ea, true), // ALGRK
|
1380
|
-
ALUOp::Sub32 => (0xb9f9, true), // SRK
|
1381
|
-
ALUOp::Sub64 => (0xb9e9, true), // SGRK
|
1382
|
-
ALUOp::SubLogical32 => (0xb9fb, true), // SLRK
|
1383
|
-
ALUOp::SubLogical64 => (0xb9eb, true), // SLGRK
|
1384
|
-
ALUOp::Mul32 => (0xb9fd, true), // MSRKC
|
1385
|
-
ALUOp::Mul64 => (0xb9ed, true), // MSGRKC
|
1386
|
-
ALUOp::And32 => (0xb9f4, true), // NRK
|
1387
|
-
ALUOp::And64 => (0xb9e4, true), // NGRK
|
1388
|
-
ALUOp::Orr32 => (0xb9f6, true), // ORK
|
1389
|
-
ALUOp::Orr64 => (0xb9e6, true), // OGRK
|
1390
|
-
ALUOp::Xor32 => (0xb9f7, true), // XRK
|
1391
|
-
ALUOp::Xor64 => (0xb9e7, true), // XGRK
|
1392
|
-
ALUOp::NotAnd32 => (0xb974, false), // NNRK
|
1393
|
-
ALUOp::NotAnd64 => (0xb964, false), // NNGRK
|
1394
|
-
ALUOp::NotOrr32 => (0xb976, false), // NORK
|
1395
|
-
ALUOp::NotOrr64 => (0xb966, false), // NOGRK
|
1396
|
-
ALUOp::NotXor32 => (0xb977, false), // NXRK
|
1397
|
-
ALUOp::NotXor64 => (0xb967, false), // NXGRK
|
1398
|
-
ALUOp::AndNot32 => (0xb9f5, false), // NCRK
|
1399
|
-
ALUOp::AndNot64 => (0xb9e5, false), // NCGRK
|
1400
|
-
ALUOp::OrrNot32 => (0xb975, false), // OCRK
|
1401
|
-
ALUOp::OrrNot64 => (0xb965, false), // OCGRK
|
1402
|
-
_ => unreachable!(),
|
1403
|
-
};
|
1404
|
-
if have_rr && rd.to_reg() == rn {
|
1405
|
-
let inst = Inst::AluRR {
|
1406
|
-
alu_op,
|
1407
|
-
rd,
|
1408
|
-
ri: rn,
|
1409
|
-
rm,
|
1410
|
-
};
|
1411
|
-
inst.emit(sink, emit_info, state);
|
1412
|
-
} else {
|
1413
|
-
put(sink, &enc_rrf_ab(opcode, rd.to_reg(), rn, rm, 0));
|
1414
|
-
}
|
1415
|
-
}
|
1416
|
-
&Inst::AluRRSImm16 {
|
1417
|
-
alu_op,
|
1418
|
-
rd,
|
1419
|
-
rn,
|
1420
|
-
imm,
|
1421
|
-
} => {
|
1422
|
-
if rd.to_reg() == rn {
|
1423
|
-
let inst = Inst::AluRSImm16 {
|
1424
|
-
alu_op,
|
1425
|
-
rd,
|
1426
|
-
ri: rn,
|
1427
|
-
imm,
|
1428
|
-
};
|
1429
|
-
inst.emit(sink, emit_info, state);
|
1430
|
-
} else {
|
1431
|
-
let opcode = match alu_op {
|
1432
|
-
ALUOp::Add32 => 0xecd8, // AHIK
|
1433
|
-
ALUOp::Add64 => 0xecd9, // AGHIK
|
1434
|
-
_ => unreachable!(),
|
1435
|
-
};
|
1436
|
-
put(sink, &enc_rie_d(opcode, rd.to_reg(), rn, imm as u16));
|
1437
|
-
}
|
1438
|
-
}
|
1439
|
-
&Inst::AluRR { alu_op, rd, ri, rm } => {
|
1440
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
1441
|
-
|
1442
|
-
let (opcode, is_rre) = match alu_op {
|
1443
|
-
ALUOp::Add32 => (0x1a, false), // AR
|
1444
|
-
ALUOp::Add64 => (0xb908, true), // AGR
|
1445
|
-
ALUOp::Add64Ext32 => (0xb918, true), // AGFR
|
1446
|
-
ALUOp::AddLogical32 => (0x1e, false), // ALR
|
1447
|
-
ALUOp::AddLogical64 => (0xb90a, true), // ALGR
|
1448
|
-
ALUOp::AddLogical64Ext32 => (0xb91a, true), // ALGFR
|
1449
|
-
ALUOp::Sub32 => (0x1b, false), // SR
|
1450
|
-
ALUOp::Sub64 => (0xb909, true), // SGR
|
1451
|
-
ALUOp::Sub64Ext32 => (0xb919, true), // SGFR
|
1452
|
-
ALUOp::SubLogical32 => (0x1f, false), // SLR
|
1453
|
-
ALUOp::SubLogical64 => (0xb90b, true), // SLGR
|
1454
|
-
ALUOp::SubLogical64Ext32 => (0xb91b, true), // SLGFR
|
1455
|
-
ALUOp::Mul32 => (0xb252, true), // MSR
|
1456
|
-
ALUOp::Mul64 => (0xb90c, true), // MSGR
|
1457
|
-
ALUOp::Mul64Ext32 => (0xb91c, true), // MSGFR
|
1458
|
-
ALUOp::And32 => (0x14, false), // NR
|
1459
|
-
ALUOp::And64 => (0xb980, true), // NGR
|
1460
|
-
ALUOp::Orr32 => (0x16, false), // OR
|
1461
|
-
ALUOp::Orr64 => (0xb981, true), // OGR
|
1462
|
-
ALUOp::Xor32 => (0x17, false), // XR
|
1463
|
-
ALUOp::Xor64 => (0xb982, true), // XGR
|
1464
|
-
_ => unreachable!(),
|
1465
|
-
};
|
1466
|
-
if is_rre {
|
1467
|
-
put(sink, &enc_rre(opcode, rd.to_reg(), rm));
|
1468
|
-
} else {
|
1469
|
-
put(sink, &enc_rr(opcode, rd.to_reg(), rm));
|
1470
|
-
}
|
1471
|
-
}
|
1472
|
-
&Inst::AluRX {
|
1473
|
-
alu_op,
|
1474
|
-
rd,
|
1475
|
-
ri,
|
1476
|
-
ref mem,
|
1477
|
-
} => {
|
1478
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
1479
|
-
let mem = mem.clone();
|
1480
|
-
|
1481
|
-
let (opcode_rx, opcode_rxy) = match alu_op {
|
1482
|
-
ALUOp::Add32 => (Some(0x5a), Some(0xe35a)), // A(Y)
|
1483
|
-
ALUOp::Add32Ext16 => (Some(0x4a), Some(0xe37a)), // AH(Y)
|
1484
|
-
ALUOp::Add64 => (None, Some(0xe308)), // AG
|
1485
|
-
ALUOp::Add64Ext16 => (None, Some(0xe338)), // AGH
|
1486
|
-
ALUOp::Add64Ext32 => (None, Some(0xe318)), // AGF
|
1487
|
-
ALUOp::AddLogical32 => (Some(0x5e), Some(0xe35e)), // AL(Y)
|
1488
|
-
ALUOp::AddLogical64 => (None, Some(0xe30a)), // ALG
|
1489
|
-
ALUOp::AddLogical64Ext32 => (None, Some(0xe31a)), // ALGF
|
1490
|
-
ALUOp::Sub32 => (Some(0x5b), Some(0xe35b)), // S(Y)
|
1491
|
-
ALUOp::Sub32Ext16 => (Some(0x4b), Some(0xe37b)), // SH(Y)
|
1492
|
-
ALUOp::Sub64 => (None, Some(0xe309)), // SG
|
1493
|
-
ALUOp::Sub64Ext16 => (None, Some(0xe339)), // SGH
|
1494
|
-
ALUOp::Sub64Ext32 => (None, Some(0xe319)), // SGF
|
1495
|
-
ALUOp::SubLogical32 => (Some(0x5f), Some(0xe35f)), // SL(Y)
|
1496
|
-
ALUOp::SubLogical64 => (None, Some(0xe30b)), // SLG
|
1497
|
-
ALUOp::SubLogical64Ext32 => (None, Some(0xe31b)), // SLGF
|
1498
|
-
ALUOp::Mul32 => (Some(0x71), Some(0xe351)), // MS(Y)
|
1499
|
-
ALUOp::Mul32Ext16 => (Some(0x4c), Some(0xe37c)), // MH(Y)
|
1500
|
-
ALUOp::Mul64 => (None, Some(0xe30c)), // MSG
|
1501
|
-
ALUOp::Mul64Ext16 => (None, Some(0xe33c)), // MSH
|
1502
|
-
ALUOp::Mul64Ext32 => (None, Some(0xe31c)), // MSGF
|
1503
|
-
ALUOp::And32 => (Some(0x54), Some(0xe354)), // N(Y)
|
1504
|
-
ALUOp::And64 => (None, Some(0xe380)), // NG
|
1505
|
-
ALUOp::Orr32 => (Some(0x56), Some(0xe356)), // O(Y)
|
1506
|
-
ALUOp::Orr64 => (None, Some(0xe381)), // OG
|
1507
|
-
ALUOp::Xor32 => (Some(0x57), Some(0xe357)), // X(Y)
|
1508
|
-
ALUOp::Xor64 => (None, Some(0xe382)), // XG
|
1509
|
-
_ => unreachable!(),
|
1510
|
-
};
|
1511
|
-
let rd = rd.to_reg();
|
1512
|
-
mem_emit(
|
1513
|
-
rd, &mem, opcode_rx, opcode_rxy, None, true, sink, emit_info, state,
|
1514
|
-
);
|
1515
|
-
}
|
1516
|
-
&Inst::AluRSImm16 {
|
1517
|
-
alu_op,
|
1518
|
-
rd,
|
1519
|
-
ri,
|
1520
|
-
imm,
|
1521
|
-
} => {
|
1522
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
1523
|
-
|
1524
|
-
let opcode = match alu_op {
|
1525
|
-
ALUOp::Add32 => 0xa7a, // AHI
|
1526
|
-
ALUOp::Add64 => 0xa7b, // AGHI
|
1527
|
-
ALUOp::Mul32 => 0xa7c, // MHI
|
1528
|
-
ALUOp::Mul64 => 0xa7d, // MGHI
|
1529
|
-
_ => unreachable!(),
|
1530
|
-
};
|
1531
|
-
put(sink, &enc_ri_a(opcode, rd.to_reg(), imm as u16));
|
1532
|
-
}
|
1533
|
-
&Inst::AluRSImm32 {
|
1534
|
-
alu_op,
|
1535
|
-
rd,
|
1536
|
-
ri,
|
1537
|
-
imm,
|
1538
|
-
} => {
|
1539
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
1540
|
-
|
1541
|
-
let opcode = match alu_op {
|
1542
|
-
ALUOp::Add32 => 0xc29, // AFI
|
1543
|
-
ALUOp::Add64 => 0xc28, // AGFI
|
1544
|
-
ALUOp::Mul32 => 0xc21, // MSFI
|
1545
|
-
ALUOp::Mul64 => 0xc20, // MSGFI
|
1546
|
-
_ => unreachable!(),
|
1547
|
-
};
|
1548
|
-
put(sink, &enc_ril_a(opcode, rd.to_reg(), imm as u32));
|
1549
|
-
}
|
1550
|
-
&Inst::AluRUImm32 {
|
1551
|
-
alu_op,
|
1552
|
-
rd,
|
1553
|
-
ri,
|
1554
|
-
imm,
|
1555
|
-
} => {
|
1556
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
1557
|
-
|
1558
|
-
let opcode = match alu_op {
|
1559
|
-
ALUOp::AddLogical32 => 0xc2b, // ALFI
|
1560
|
-
ALUOp::AddLogical64 => 0xc2a, // ALGFI
|
1561
|
-
ALUOp::SubLogical32 => 0xc25, // SLFI
|
1562
|
-
ALUOp::SubLogical64 => 0xc24, // SLGFI
|
1563
|
-
_ => unreachable!(),
|
1564
|
-
};
|
1565
|
-
put(sink, &enc_ril_a(opcode, rd.to_reg(), imm));
|
1566
|
-
}
|
1567
|
-
&Inst::AluRUImm16Shifted {
|
1568
|
-
alu_op,
|
1569
|
-
rd,
|
1570
|
-
ri,
|
1571
|
-
imm,
|
1572
|
-
} => {
|
1573
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
1574
|
-
|
1575
|
-
let opcode = match (alu_op, imm.shift) {
|
1576
|
-
(ALUOp::And32, 0) => 0xa57, // NILL
|
1577
|
-
(ALUOp::And32, 1) => 0xa56, // NILH
|
1578
|
-
(ALUOp::And64, 0) => 0xa57, // NILL
|
1579
|
-
(ALUOp::And64, 1) => 0xa56, // NILH
|
1580
|
-
(ALUOp::And64, 2) => 0xa55, // NIHL
|
1581
|
-
(ALUOp::And64, 3) => 0xa54, // NIHL
|
1582
|
-
(ALUOp::Orr32, 0) => 0xa5b, // OILL
|
1583
|
-
(ALUOp::Orr32, 1) => 0xa5a, // OILH
|
1584
|
-
(ALUOp::Orr64, 0) => 0xa5b, // OILL
|
1585
|
-
(ALUOp::Orr64, 1) => 0xa5a, // OILH
|
1586
|
-
(ALUOp::Orr64, 2) => 0xa59, // OIHL
|
1587
|
-
(ALUOp::Orr64, 3) => 0xa58, // OIHH
|
1588
|
-
_ => unreachable!(),
|
1589
|
-
};
|
1590
|
-
put(sink, &enc_ri_a(opcode, rd.to_reg(), imm.bits));
|
1591
|
-
}
|
1592
|
-
&Inst::AluRUImm32Shifted {
|
1593
|
-
alu_op,
|
1594
|
-
rd,
|
1595
|
-
ri,
|
1596
|
-
imm,
|
1597
|
-
} => {
|
1598
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
1599
|
-
|
1600
|
-
let opcode = match (alu_op, imm.shift) {
|
1601
|
-
(ALUOp::And32, 0) => 0xc0b, // NILF
|
1602
|
-
(ALUOp::And64, 0) => 0xc0b, // NILF
|
1603
|
-
(ALUOp::And64, 1) => 0xc0a, // NIHF
|
1604
|
-
(ALUOp::Orr32, 0) => 0xc0d, // OILF
|
1605
|
-
(ALUOp::Orr64, 0) => 0xc0d, // OILF
|
1606
|
-
(ALUOp::Orr64, 1) => 0xc0c, // OILF
|
1607
|
-
(ALUOp::Xor32, 0) => 0xc07, // XILF
|
1608
|
-
(ALUOp::Xor64, 0) => 0xc07, // XILF
|
1609
|
-
(ALUOp::Xor64, 1) => 0xc06, // XILH
|
1610
|
-
_ => unreachable!(),
|
1611
|
-
};
|
1612
|
-
put(sink, &enc_ril_a(opcode, rd.to_reg(), imm.bits));
|
1613
|
-
}
|
1614
|
-
|
1615
|
-
&Inst::SMulWide { rd, rn, rm } => {
|
1616
|
-
let rd1 = rd.hi;
|
1617
|
-
let rd2 = rd.lo;
|
1618
|
-
debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
|
1619
|
-
|
1620
|
-
let opcode = 0xb9ec; // MGRK
|
1621
|
-
put(sink, &enc_rrf_ab(opcode, rd1.to_reg(), rn, rm, 0));
|
1622
|
-
}
|
1623
|
-
&Inst::UMulWide { rd, ri, rn } => {
|
1624
|
-
let rd1 = rd.hi;
|
1625
|
-
let rd2 = rd.lo;
|
1626
|
-
debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
|
1627
|
-
debug_assert_eq!(rd2.to_reg(), ri);
|
1628
|
-
|
1629
|
-
let opcode = 0xb986; // MLGR
|
1630
|
-
put(sink, &enc_rre(opcode, rd1.to_reg(), rn));
|
1631
|
-
}
|
1632
|
-
&Inst::SDivMod32 { rd, ri, rn } => {
|
1633
|
-
let rd1 = rd.hi;
|
1634
|
-
let rd2 = rd.lo;
|
1635
|
-
debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
|
1636
|
-
debug_assert_eq!(rd2.to_reg(), ri);
|
1637
|
-
|
1638
|
-
let opcode = 0xb91d; // DSGFR
|
1639
|
-
let trap_code = TrapCode::INTEGER_DIVISION_BY_ZERO;
|
1640
|
-
put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
|
1641
|
-
}
|
1642
|
-
&Inst::SDivMod64 { rd, ri, rn } => {
|
1643
|
-
let rd1 = rd.hi;
|
1644
|
-
let rd2 = rd.lo;
|
1645
|
-
debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
|
1646
|
-
debug_assert_eq!(rd2.to_reg(), ri);
|
1647
|
-
|
1648
|
-
let opcode = 0xb90d; // DSGR
|
1649
|
-
let trap_code = TrapCode::INTEGER_DIVISION_BY_ZERO;
|
1650
|
-
put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
|
1651
|
-
}
|
1652
|
-
&Inst::UDivMod32 { rd, ri, rn } => {
|
1653
|
-
let rd1 = rd.hi;
|
1654
|
-
let rd2 = rd.lo;
|
1655
|
-
debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
|
1656
|
-
let ri1 = ri.hi;
|
1657
|
-
let ri2 = ri.lo;
|
1658
|
-
debug_assert_eq!(rd1.to_reg(), ri1);
|
1659
|
-
debug_assert_eq!(rd2.to_reg(), ri2);
|
1660
|
-
|
1661
|
-
let opcode = 0xb997; // DLR
|
1662
|
-
let trap_code = TrapCode::INTEGER_DIVISION_BY_ZERO;
|
1663
|
-
put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
|
1664
|
-
}
|
1665
|
-
&Inst::UDivMod64 { rd, ri, rn } => {
|
1666
|
-
let rd1 = rd.hi;
|
1667
|
-
let rd2 = rd.lo;
|
1668
|
-
debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
|
1669
|
-
let ri1 = ri.hi;
|
1670
|
-
let ri2 = ri.lo;
|
1671
|
-
debug_assert_eq!(rd1.to_reg(), ri1);
|
1672
|
-
debug_assert_eq!(rd2.to_reg(), ri2);
|
1673
|
-
|
1674
|
-
let opcode = 0xb987; // DLGR
|
1675
|
-
let trap_code = TrapCode::INTEGER_DIVISION_BY_ZERO;
|
1676
|
-
put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
|
1677
|
-
}
|
1678
|
-
&Inst::Flogr { rd, rn } => {
|
1679
|
-
let rd1 = rd.hi;
|
1680
|
-
let rd2 = rd.lo;
|
1681
|
-
debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
|
1682
|
-
|
1683
|
-
let opcode = 0xb983; // FLOGR
|
1684
|
-
put(sink, &enc_rre(opcode, rd1.to_reg(), rn));
|
1685
|
-
}
|
1686
|
-
|
1687
|
-
&Inst::ShiftRR {
|
1688
|
-
shift_op,
|
1689
|
-
rd,
|
1690
|
-
rn,
|
1691
|
-
shift_imm,
|
1692
|
-
shift_reg,
|
1693
|
-
} => {
|
1694
|
-
let opcode = match shift_op {
|
1695
|
-
ShiftOp::RotL32 => 0xeb1d, // RLL
|
1696
|
-
ShiftOp::RotL64 => 0xeb1c, // RLLG
|
1697
|
-
ShiftOp::LShL32 => 0xebdf, // SLLK (SLL ?)
|
1698
|
-
ShiftOp::LShL64 => 0xeb0d, // SLLG
|
1699
|
-
ShiftOp::LShR32 => 0xebde, // SRLK (SRL ?)
|
1700
|
-
ShiftOp::LShR64 => 0xeb0c, // SRLG
|
1701
|
-
ShiftOp::AShR32 => 0xebdc, // SRAK (SRA ?)
|
1702
|
-
ShiftOp::AShR64 => 0xeb0a, // SRAG
|
1703
|
-
};
|
1704
|
-
put(
|
1705
|
-
sink,
|
1706
|
-
&enc_rsy(opcode, rd.to_reg(), rn, shift_reg, shift_imm.into()),
|
1707
|
-
);
|
1708
|
-
}
|
1709
|
-
|
1710
|
-
&Inst::RxSBG {
|
1711
|
-
op,
|
1712
|
-
rd,
|
1713
|
-
ri,
|
1714
|
-
rn,
|
1715
|
-
start_bit,
|
1716
|
-
end_bit,
|
1717
|
-
rotate_amt,
|
1718
|
-
} => {
|
1719
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
1720
|
-
|
1721
|
-
let opcode = match op {
|
1722
|
-
RxSBGOp::Insert => 0xec59, // RISBGN
|
1723
|
-
RxSBGOp::And => 0xec54, // RNSBG
|
1724
|
-
RxSBGOp::Or => 0xec56, // ROSBG
|
1725
|
-
RxSBGOp::Xor => 0xec57, // RXSBG
|
1726
|
-
};
|
1727
|
-
put(
|
1728
|
-
sink,
|
1729
|
-
&enc_rie_f(
|
1730
|
-
opcode,
|
1731
|
-
rd.to_reg(),
|
1732
|
-
rn,
|
1733
|
-
start_bit,
|
1734
|
-
end_bit,
|
1735
|
-
(rotate_amt as u8) & 63,
|
1736
|
-
),
|
1737
|
-
);
|
1738
|
-
}
|
1739
|
-
|
1740
|
-
&Inst::RxSBGTest {
|
1741
|
-
op,
|
1742
|
-
rd,
|
1743
|
-
rn,
|
1744
|
-
start_bit,
|
1745
|
-
end_bit,
|
1746
|
-
rotate_amt,
|
1747
|
-
} => {
|
1748
|
-
let opcode = match op {
|
1749
|
-
RxSBGOp::And => 0xec54, // RNSBG
|
1750
|
-
RxSBGOp::Or => 0xec56, // ROSBG
|
1751
|
-
RxSBGOp::Xor => 0xec57, // RXSBG
|
1752
|
-
_ => unreachable!(),
|
1753
|
-
};
|
1754
|
-
put(
|
1755
|
-
sink,
|
1756
|
-
&enc_rie_f(
|
1757
|
-
opcode,
|
1758
|
-
rd,
|
1759
|
-
rn,
|
1760
|
-
start_bit | 0x80,
|
1761
|
-
end_bit,
|
1762
|
-
(rotate_amt as u8) & 63,
|
1763
|
-
),
|
1764
|
-
);
|
1765
|
-
}
|
1766
|
-
|
1767
|
-
&Inst::UnaryRR { op, rd, rn } => {
|
1768
|
-
match op {
|
1769
|
-
UnaryOp::Abs32 => {
|
1770
|
-
let opcode = 0x10; // LPR
|
1771
|
-
put(sink, &enc_rr(opcode, rd.to_reg(), rn));
|
1772
|
-
}
|
1773
|
-
UnaryOp::Abs64 => {
|
1774
|
-
let opcode = 0xb900; // LPGR
|
1775
|
-
put(sink, &enc_rre(opcode, rd.to_reg(), rn));
|
1776
|
-
}
|
1777
|
-
UnaryOp::Abs64Ext32 => {
|
1778
|
-
let opcode = 0xb910; // LPGFR
|
1779
|
-
put(sink, &enc_rre(opcode, rd.to_reg(), rn));
|
1780
|
-
}
|
1781
|
-
UnaryOp::Neg32 => {
|
1782
|
-
let opcode = 0x13; // LCR
|
1783
|
-
put(sink, &enc_rr(opcode, rd.to_reg(), rn));
|
1784
|
-
}
|
1785
|
-
UnaryOp::Neg64 => {
|
1786
|
-
let opcode = 0xb903; // LCGR
|
1787
|
-
put(sink, &enc_rre(opcode, rd.to_reg(), rn));
|
1788
|
-
}
|
1789
|
-
UnaryOp::Neg64Ext32 => {
|
1790
|
-
let opcode = 0xb913; // LCGFR
|
1791
|
-
put(sink, &enc_rre(opcode, rd.to_reg(), rn));
|
1792
|
-
}
|
1793
|
-
UnaryOp::PopcntByte => {
|
1794
|
-
let opcode = 0xb9e1; // POPCNT
|
1795
|
-
put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rn, 0, 0));
|
1796
|
-
}
|
1797
|
-
UnaryOp::PopcntReg => {
|
1798
|
-
let opcode = 0xb9e1; // POPCNT
|
1799
|
-
put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rn, 8, 0));
|
1800
|
-
}
|
1801
|
-
UnaryOp::BSwap32 => {
|
1802
|
-
let opcode = 0xb91f; // LRVR
|
1803
|
-
put(sink, &enc_rre(opcode, rd.to_reg(), rn));
|
1804
|
-
}
|
1805
|
-
UnaryOp::BSwap64 => {
|
1806
|
-
let opcode = 0xb90f; // LRVRG
|
1807
|
-
put(sink, &enc_rre(opcode, rd.to_reg(), rn));
|
1808
|
-
}
|
1809
|
-
}
|
1810
|
-
}
|
1811
|
-
|
1812
|
-
&Inst::Extend {
|
1813
|
-
rd,
|
1814
|
-
rn,
|
1815
|
-
signed,
|
1816
|
-
from_bits,
|
1817
|
-
to_bits,
|
1818
|
-
} => {
|
1819
|
-
let opcode = match (signed, from_bits, to_bits) {
|
1820
|
-
(_, 1, 32) => 0xb926, // LBR
|
1821
|
-
(_, 1, 64) => 0xb906, // LGBR
|
1822
|
-
(false, 8, 32) => 0xb994, // LLCR
|
1823
|
-
(false, 8, 64) => 0xb984, // LLGCR
|
1824
|
-
(true, 8, 32) => 0xb926, // LBR
|
1825
|
-
(true, 8, 64) => 0xb906, // LGBR
|
1826
|
-
(false, 16, 32) => 0xb995, // LLHR
|
1827
|
-
(false, 16, 64) => 0xb985, // LLGHR
|
1828
|
-
(true, 16, 32) => 0xb927, // LHR
|
1829
|
-
(true, 16, 64) => 0xb907, // LGHR
|
1830
|
-
(false, 32, 64) => 0xb916, // LLGFR
|
1831
|
-
(true, 32, 64) => 0xb914, // LGFR
|
1832
|
-
_ => panic!(
|
1833
|
-
"Unsupported extend combination: signed = {signed}, from_bits = {from_bits}, to_bits = {to_bits}"
|
1834
|
-
),
|
1835
|
-
};
|
1836
|
-
put(sink, &enc_rre(opcode, rd.to_reg(), rn));
|
1837
|
-
}
|
1838
|
-
|
1839
|
-
&Inst::CmpRR { op, rn, rm } => {
|
1840
|
-
let (opcode, is_rre) = match op {
|
1841
|
-
CmpOp::CmpS32 => (0x19, false), // CR
|
1842
|
-
CmpOp::CmpS64 => (0xb920, true), // CGR
|
1843
|
-
CmpOp::CmpS64Ext32 => (0xb930, true), // CGFR
|
1844
|
-
CmpOp::CmpL32 => (0x15, false), // CLR
|
1845
|
-
CmpOp::CmpL64 => (0xb921, true), // CLGR
|
1846
|
-
CmpOp::CmpL64Ext32 => (0xb931, true), // CLGFR
|
1847
|
-
_ => unreachable!(),
|
1848
|
-
};
|
1849
|
-
if is_rre {
|
1850
|
-
put(sink, &enc_rre(opcode, rn, rm));
|
1851
|
-
} else {
|
1852
|
-
put(sink, &enc_rr(opcode, rn, rm));
|
1853
|
-
}
|
1854
|
-
}
|
1855
|
-
&Inst::CmpRX { op, rn, ref mem } => {
|
1856
|
-
let mem = mem.clone();
|
1857
|
-
|
1858
|
-
let (opcode_rx, opcode_rxy, opcode_ril) = match op {
|
1859
|
-
CmpOp::CmpS32 => (Some(0x59), Some(0xe359), Some(0xc6d)), // C(Y), CRL
|
1860
|
-
CmpOp::CmpS32Ext16 => (Some(0x49), Some(0xe379), Some(0xc65)), // CH(Y), CHRL
|
1861
|
-
CmpOp::CmpS64 => (None, Some(0xe320), Some(0xc68)), // CG, CGRL
|
1862
|
-
CmpOp::CmpS64Ext16 => (None, Some(0xe334), Some(0xc64)), // CGH, CGHRL
|
1863
|
-
CmpOp::CmpS64Ext32 => (None, Some(0xe330), Some(0xc6c)), // CGF, CGFRL
|
1864
|
-
CmpOp::CmpL32 => (Some(0x55), Some(0xe355), Some(0xc6f)), // CL(Y), CLRL
|
1865
|
-
CmpOp::CmpL32Ext16 => (None, None, Some(0xc67)), // CLHRL
|
1866
|
-
CmpOp::CmpL64 => (None, Some(0xe321), Some(0xc6a)), // CLG, CLGRL
|
1867
|
-
CmpOp::CmpL64Ext16 => (None, None, Some(0xc66)), // CLGHRL
|
1868
|
-
CmpOp::CmpL64Ext32 => (None, Some(0xe331), Some(0xc6e)), // CLGF, CLGFRL
|
1869
|
-
};
|
1870
|
-
mem_emit(
|
1871
|
-
rn, &mem, opcode_rx, opcode_rxy, opcode_ril, true, sink, emit_info, state,
|
1872
|
-
);
|
1873
|
-
}
|
1874
|
-
&Inst::CmpRSImm16 { op, rn, imm } => {
|
1875
|
-
let opcode = match op {
|
1876
|
-
CmpOp::CmpS32 => 0xa7e, // CHI
|
1877
|
-
CmpOp::CmpS64 => 0xa7f, // CGHI
|
1878
|
-
_ => unreachable!(),
|
1879
|
-
};
|
1880
|
-
put(sink, &enc_ri_a(opcode, rn, imm as u16));
|
1881
|
-
}
|
1882
|
-
&Inst::CmpRSImm32 { op, rn, imm } => {
|
1883
|
-
let opcode = match op {
|
1884
|
-
CmpOp::CmpS32 => 0xc2d, // CFI
|
1885
|
-
CmpOp::CmpS64 => 0xc2c, // CGFI
|
1886
|
-
_ => unreachable!(),
|
1887
|
-
};
|
1888
|
-
put(sink, &enc_ril_a(opcode, rn, imm as u32));
|
1889
|
-
}
|
1890
|
-
&Inst::CmpRUImm32 { op, rn, imm } => {
|
1891
|
-
let opcode = match op {
|
1892
|
-
CmpOp::CmpL32 => 0xc2f, // CLFI
|
1893
|
-
CmpOp::CmpL64 => 0xc2e, // CLGFI
|
1894
|
-
_ => unreachable!(),
|
1895
|
-
};
|
1896
|
-
put(sink, &enc_ril_a(opcode, rn, imm));
|
1897
|
-
}
|
1898
|
-
&Inst::CmpTrapRR {
|
1899
|
-
op,
|
1900
|
-
rn,
|
1901
|
-
rm,
|
1902
|
-
cond,
|
1903
|
-
trap_code,
|
1904
|
-
} => {
|
1905
|
-
let opcode = match op {
|
1906
|
-
CmpOp::CmpS32 => 0xb972, // CRT
|
1907
|
-
CmpOp::CmpS64 => 0xb960, // CGRT
|
1908
|
-
CmpOp::CmpL32 => 0xb973, // CLRT
|
1909
|
-
CmpOp::CmpL64 => 0xb961, // CLGRT
|
1910
|
-
_ => unreachable!(),
|
1911
|
-
};
|
1912
|
-
put_with_trap(
|
1913
|
-
sink,
|
1914
|
-
&enc_rrf_cde(opcode, rn, rm, cond.bits(), 0),
|
1915
|
-
trap_code,
|
1916
|
-
);
|
1917
|
-
}
|
1918
|
-
&Inst::CmpTrapRSImm16 {
|
1919
|
-
op,
|
1920
|
-
rn,
|
1921
|
-
imm,
|
1922
|
-
cond,
|
1923
|
-
trap_code,
|
1924
|
-
} => {
|
1925
|
-
let opcode = match op {
|
1926
|
-
CmpOp::CmpS32 => 0xec72, // CIT
|
1927
|
-
CmpOp::CmpS64 => 0xec70, // CGIT
|
1928
|
-
_ => unreachable!(),
|
1929
|
-
};
|
1930
|
-
put_with_trap(
|
1931
|
-
sink,
|
1932
|
-
&enc_rie_a(opcode, rn, imm as u16, cond.bits()),
|
1933
|
-
trap_code,
|
1934
|
-
);
|
1935
|
-
}
|
1936
|
-
&Inst::CmpTrapRUImm16 {
|
1937
|
-
op,
|
1938
|
-
rn,
|
1939
|
-
imm,
|
1940
|
-
cond,
|
1941
|
-
trap_code,
|
1942
|
-
} => {
|
1943
|
-
let opcode = match op {
|
1944
|
-
CmpOp::CmpL32 => 0xec73, // CLFIT
|
1945
|
-
CmpOp::CmpL64 => 0xec71, // CLGIT
|
1946
|
-
_ => unreachable!(),
|
1947
|
-
};
|
1948
|
-
put_with_trap(sink, &enc_rie_a(opcode, rn, imm, cond.bits()), trap_code);
|
1949
|
-
}
|
1950
|
-
|
1951
|
-
&Inst::AtomicRmw {
|
1952
|
-
alu_op,
|
1953
|
-
rd,
|
1954
|
-
rn,
|
1955
|
-
ref mem,
|
1956
|
-
} => {
|
1957
|
-
let mem = mem.clone();
|
1958
|
-
|
1959
|
-
let opcode = match alu_op {
|
1960
|
-
ALUOp::Add32 => 0xebf8, // LAA
|
1961
|
-
ALUOp::Add64 => 0xebe8, // LAAG
|
1962
|
-
ALUOp::AddLogical32 => 0xebfa, // LAAL
|
1963
|
-
ALUOp::AddLogical64 => 0xebea, // LAALG
|
1964
|
-
ALUOp::And32 => 0xebf4, // LAN
|
1965
|
-
ALUOp::And64 => 0xebe4, // LANG
|
1966
|
-
ALUOp::Orr32 => 0xebf6, // LAO
|
1967
|
-
ALUOp::Orr64 => 0xebe6, // LAOG
|
1968
|
-
ALUOp::Xor32 => 0xebf7, // LAX
|
1969
|
-
ALUOp::Xor64 => 0xebe7, // LAXG
|
1970
|
-
_ => unreachable!(),
|
1971
|
-
};
|
1972
|
-
|
1973
|
-
let rd = rd.to_reg();
|
1974
|
-
mem_rs_emit(
|
1975
|
-
rd,
|
1976
|
-
rn,
|
1977
|
-
&mem,
|
1978
|
-
None,
|
1979
|
-
Some(opcode),
|
1980
|
-
true,
|
1981
|
-
sink,
|
1982
|
-
emit_info,
|
1983
|
-
state,
|
1984
|
-
);
|
1985
|
-
}
|
1986
|
-
&Inst::Loop { ref body, cond } => {
|
1987
|
-
// This sequence is *one* instruction in the vcode, and is expanded only here at
|
1988
|
-
// emission time, because it requires branching to internal labels.
|
1989
|
-
let loop_label = sink.get_label();
|
1990
|
-
let done_label = sink.get_label();
|
1991
|
-
|
1992
|
-
// Emit label at the start of the loop.
|
1993
|
-
sink.bind_label(loop_label, &mut state.ctrl_plane);
|
1994
|
-
|
1995
|
-
for inst in (&body).into_iter() {
|
1996
|
-
match &inst {
|
1997
|
-
// Replace a CondBreak with a branch to done_label.
|
1998
|
-
&Inst::CondBreak { cond } => {
|
1999
|
-
let inst = Inst::OneWayCondBr {
|
2000
|
-
target: done_label,
|
2001
|
-
cond: *cond,
|
2002
|
-
};
|
2003
|
-
inst.emit_with_alloc_consumer(sink, emit_info, state);
|
2004
|
-
}
|
2005
|
-
_ => inst.emit_with_alloc_consumer(sink, emit_info, state),
|
2006
|
-
};
|
2007
|
-
}
|
2008
|
-
|
2009
|
-
let inst = Inst::OneWayCondBr {
|
2010
|
-
target: loop_label,
|
2011
|
-
cond,
|
2012
|
-
};
|
2013
|
-
inst.emit(sink, emit_info, state);
|
2014
|
-
|
2015
|
-
// Emit label at the end of the loop.
|
2016
|
-
sink.bind_label(done_label, &mut state.ctrl_plane);
|
2017
|
-
}
|
2018
|
-
&Inst::CondBreak { .. } => unreachable!(), // Only valid inside a Loop.
|
2019
|
-
&Inst::AtomicCas32 {
|
2020
|
-
rd,
|
2021
|
-
ri,
|
2022
|
-
rn,
|
2023
|
-
ref mem,
|
2024
|
-
}
|
2025
|
-
| &Inst::AtomicCas64 {
|
2026
|
-
rd,
|
2027
|
-
ri,
|
2028
|
-
rn,
|
2029
|
-
ref mem,
|
2030
|
-
} => {
|
2031
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
2032
|
-
let mem = mem.clone();
|
2033
|
-
|
2034
|
-
let (opcode_rs, opcode_rsy) = match self {
|
2035
|
-
&Inst::AtomicCas32 { .. } => (Some(0xba), Some(0xeb14)), // CS(Y)
|
2036
|
-
&Inst::AtomicCas64 { .. } => (None, Some(0xeb30)), // CSG
|
2037
|
-
_ => unreachable!(),
|
2038
|
-
};
|
2039
|
-
|
2040
|
-
let rd = rd.to_reg();
|
2041
|
-
mem_rs_emit(
|
2042
|
-
rd, rn, &mem, opcode_rs, opcode_rsy, true, sink, emit_info, state,
|
2043
|
-
);
|
2044
|
-
}
|
2045
|
-
&Inst::Fence => {
|
2046
|
-
put(sink, &enc_e(0x07e0));
|
2047
|
-
}
|
2048
|
-
|
2049
|
-
&Inst::Load32 { rd, ref mem }
|
2050
|
-
| &Inst::Load32ZExt8 { rd, ref mem }
|
2051
|
-
| &Inst::Load32SExt8 { rd, ref mem }
|
2052
|
-
| &Inst::Load32ZExt16 { rd, ref mem }
|
2053
|
-
| &Inst::Load32SExt16 { rd, ref mem }
|
2054
|
-
| &Inst::Load64 { rd, ref mem }
|
2055
|
-
| &Inst::Load64ZExt8 { rd, ref mem }
|
2056
|
-
| &Inst::Load64SExt8 { rd, ref mem }
|
2057
|
-
| &Inst::Load64ZExt16 { rd, ref mem }
|
2058
|
-
| &Inst::Load64SExt16 { rd, ref mem }
|
2059
|
-
| &Inst::Load64ZExt32 { rd, ref mem }
|
2060
|
-
| &Inst::Load64SExt32 { rd, ref mem }
|
2061
|
-
| &Inst::LoadRev16 { rd, ref mem }
|
2062
|
-
| &Inst::LoadRev32 { rd, ref mem }
|
2063
|
-
| &Inst::LoadRev64 { rd, ref mem } => {
|
2064
|
-
let mem = mem.clone();
|
2065
|
-
|
2066
|
-
let (opcode_rx, opcode_rxy, opcode_ril) = match self {
|
2067
|
-
&Inst::Load32 { .. } => (Some(0x58), Some(0xe358), Some(0xc4d)), // L(Y), LRL
|
2068
|
-
&Inst::Load32ZExt8 { .. } => (None, Some(0xe394), None), // LLC
|
2069
|
-
&Inst::Load32SExt8 { .. } => (None, Some(0xe376), None), // LB
|
2070
|
-
&Inst::Load32ZExt16 { .. } => (None, Some(0xe395), Some(0xc42)), // LLH, LLHRL
|
2071
|
-
&Inst::Load32SExt16 { .. } => (Some(0x48), Some(0xe378), Some(0xc45)), // LH(Y), LHRL
|
2072
|
-
&Inst::Load64 { .. } => (None, Some(0xe304), Some(0xc48)), // LG, LGRL
|
2073
|
-
&Inst::Load64ZExt8 { .. } => (None, Some(0xe390), None), // LLGC
|
2074
|
-
&Inst::Load64SExt8 { .. } => (None, Some(0xe377), None), // LGB
|
2075
|
-
&Inst::Load64ZExt16 { .. } => (None, Some(0xe391), Some(0xc46)), // LLGH, LLGHRL
|
2076
|
-
&Inst::Load64SExt16 { .. } => (None, Some(0xe315), Some(0xc44)), // LGH, LGHRL
|
2077
|
-
&Inst::Load64ZExt32 { .. } => (None, Some(0xe316), Some(0xc4e)), // LLGF, LLGFRL
|
2078
|
-
&Inst::Load64SExt32 { .. } => (None, Some(0xe314), Some(0xc4c)), // LGF, LGFRL
|
2079
|
-
&Inst::LoadRev16 { .. } => (None, Some(0xe31f), None), // LRVH
|
2080
|
-
&Inst::LoadRev32 { .. } => (None, Some(0xe31e), None), // LRV
|
2081
|
-
&Inst::LoadRev64 { .. } => (None, Some(0xe30f), None), // LRVG
|
2082
|
-
_ => unreachable!(),
|
2083
|
-
};
|
2084
|
-
let rd = rd.to_reg();
|
2085
|
-
mem_emit(
|
2086
|
-
rd, &mem, opcode_rx, opcode_rxy, opcode_ril, true, sink, emit_info, state,
|
2087
|
-
);
|
2088
|
-
}
|
2089
|
-
|
2090
|
-
&Inst::Store8 { rd, ref mem }
|
2091
|
-
| &Inst::Store16 { rd, ref mem }
|
2092
|
-
| &Inst::Store32 { rd, ref mem }
|
2093
|
-
| &Inst::Store64 { rd, ref mem }
|
2094
|
-
| &Inst::StoreRev16 { rd, ref mem }
|
2095
|
-
| &Inst::StoreRev32 { rd, ref mem }
|
2096
|
-
| &Inst::StoreRev64 { rd, ref mem } => {
|
2097
|
-
let mem = mem.clone();
|
2098
|
-
|
2099
|
-
let (opcode_rx, opcode_rxy, opcode_ril) = match self {
|
2100
|
-
&Inst::Store8 { .. } => (Some(0x42), Some(0xe372), None), // STC(Y)
|
2101
|
-
&Inst::Store16 { .. } => (Some(0x40), Some(0xe370), Some(0xc47)), // STH(Y), STHRL
|
2102
|
-
&Inst::Store32 { .. } => (Some(0x50), Some(0xe350), Some(0xc4f)), // ST(Y), STRL
|
2103
|
-
&Inst::Store64 { .. } => (None, Some(0xe324), Some(0xc4b)), // STG, STGRL
|
2104
|
-
&Inst::StoreRev16 { .. } => (None, Some(0xe33f), None), // STRVH
|
2105
|
-
&Inst::StoreRev32 { .. } => (None, Some(0xe33e), None), // STRV
|
2106
|
-
&Inst::StoreRev64 { .. } => (None, Some(0xe32f), None), // STRVG
|
2107
|
-
_ => unreachable!(),
|
2108
|
-
};
|
2109
|
-
mem_emit(
|
2110
|
-
rd, &mem, opcode_rx, opcode_rxy, opcode_ril, true, sink, emit_info, state,
|
2111
|
-
);
|
2112
|
-
}
|
2113
|
-
&Inst::StoreImm8 { imm, ref mem } => {
|
2114
|
-
let mem = mem.clone();
|
2115
|
-
|
2116
|
-
let opcode_si = 0x92; // MVI
|
2117
|
-
let opcode_siy = 0xeb52; // MVIY
|
2118
|
-
mem_imm8_emit(
|
2119
|
-
imm, &mem, opcode_si, opcode_siy, true, sink, emit_info, state,
|
2120
|
-
);
|
2121
|
-
}
|
2122
|
-
&Inst::StoreImm16 { imm, ref mem }
|
2123
|
-
| &Inst::StoreImm32SExt16 { imm, ref mem }
|
2124
|
-
| &Inst::StoreImm64SExt16 { imm, ref mem } => {
|
2125
|
-
let mem = mem.clone();
|
2126
|
-
|
2127
|
-
let opcode = match self {
|
2128
|
-
&Inst::StoreImm16 { .. } => 0xe544, // MVHHI
|
2129
|
-
&Inst::StoreImm32SExt16 { .. } => 0xe54c, // MVHI
|
2130
|
-
&Inst::StoreImm64SExt16 { .. } => 0xe548, // MVGHI
|
2131
|
-
_ => unreachable!(),
|
2132
|
-
};
|
2133
|
-
mem_imm16_emit(imm, &mem, opcode, true, sink, emit_info, state);
|
2134
|
-
}
|
2135
|
-
|
2136
|
-
&Inst::LoadMultiple64 { rt, rt2, ref mem } => {
|
2137
|
-
let mem = mem.clone();
|
2138
|
-
|
2139
|
-
let opcode = 0xeb04; // LMG
|
2140
|
-
let rt = rt.to_reg();
|
2141
|
-
let rt2 = rt2.to_reg();
|
2142
|
-
mem_rs_emit(
|
2143
|
-
rt,
|
2144
|
-
rt2,
|
2145
|
-
&mem,
|
2146
|
-
None,
|
2147
|
-
Some(opcode),
|
2148
|
-
true,
|
2149
|
-
sink,
|
2150
|
-
emit_info,
|
2151
|
-
state,
|
2152
|
-
);
|
2153
|
-
}
|
2154
|
-
&Inst::StoreMultiple64 { rt, rt2, ref mem } => {
|
2155
|
-
let mem = mem.clone();
|
2156
|
-
|
2157
|
-
let opcode = 0xeb24; // STMG
|
2158
|
-
mem_rs_emit(
|
2159
|
-
rt,
|
2160
|
-
rt2,
|
2161
|
-
&mem,
|
2162
|
-
None,
|
2163
|
-
Some(opcode),
|
2164
|
-
true,
|
2165
|
-
sink,
|
2166
|
-
emit_info,
|
2167
|
-
state,
|
2168
|
-
);
|
2169
|
-
}
|
2170
|
-
|
2171
|
-
&Inst::LoadAddr { rd, ref mem } => {
|
2172
|
-
let mem = mem.clone();
|
2173
|
-
|
2174
|
-
let opcode_rx = Some(0x41); // LA
|
2175
|
-
let opcode_rxy = Some(0xe371); // LAY
|
2176
|
-
let opcode_ril = Some(0xc00); // LARL
|
2177
|
-
let rd = rd.to_reg();
|
2178
|
-
mem_emit(
|
2179
|
-
rd, &mem, opcode_rx, opcode_rxy, opcode_ril, false, sink, emit_info, state,
|
2180
|
-
);
|
2181
|
-
}
|
2182
|
-
|
2183
|
-
&Inst::Mov64 { rd, rm } => {
|
2184
|
-
let opcode = 0xb904; // LGR
|
2185
|
-
put(sink, &enc_rre(opcode, rd.to_reg(), rm));
|
2186
|
-
}
|
2187
|
-
&Inst::MovPReg { rd, rm } => {
|
2188
|
-
Inst::Mov64 { rd, rm: rm.into() }.emit(sink, emit_info, state);
|
2189
|
-
}
|
2190
|
-
&Inst::Mov32 { rd, rm } => {
|
2191
|
-
let opcode = 0x18; // LR
|
2192
|
-
put(sink, &enc_rr(opcode, rd.to_reg(), rm));
|
2193
|
-
}
|
2194
|
-
&Inst::Mov32Imm { rd, imm } => {
|
2195
|
-
let opcode = 0xc09; // IILF
|
2196
|
-
put(sink, &enc_ril_a(opcode, rd.to_reg(), imm));
|
2197
|
-
}
|
2198
|
-
&Inst::Mov32SImm16 { rd, imm } => {
|
2199
|
-
let opcode = 0xa78; // LHI
|
2200
|
-
put(sink, &enc_ri_a(opcode, rd.to_reg(), imm as u16));
|
2201
|
-
}
|
2202
|
-
&Inst::Mov64SImm16 { rd, imm } => {
|
2203
|
-
let opcode = 0xa79; // LGHI
|
2204
|
-
put(sink, &enc_ri_a(opcode, rd.to_reg(), imm as u16));
|
2205
|
-
}
|
2206
|
-
&Inst::Mov64SImm32 { rd, imm } => {
|
2207
|
-
let opcode = 0xc01; // LGFI
|
2208
|
-
put(sink, &enc_ril_a(opcode, rd.to_reg(), imm as u32));
|
2209
|
-
}
|
2210
|
-
&Inst::CMov32 { rd, cond, ri, rm } => {
|
2211
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
2212
|
-
|
2213
|
-
let opcode = 0xb9f2; // LOCR
|
2214
|
-
put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rm, cond.bits(), 0));
|
2215
|
-
}
|
2216
|
-
&Inst::CMov64 { rd, cond, ri, rm } => {
|
2217
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
2218
|
-
|
2219
|
-
let opcode = 0xb9e2; // LOCGR
|
2220
|
-
put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rm, cond.bits(), 0));
|
2221
|
-
}
|
2222
|
-
&Inst::CMov32SImm16 { rd, cond, ri, imm } => {
|
2223
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
2224
|
-
|
2225
|
-
let opcode = 0xec42; // LOCHI
|
2226
|
-
put(
|
2227
|
-
sink,
|
2228
|
-
&enc_rie_g(opcode, rd.to_reg(), imm as u16, cond.bits()),
|
2229
|
-
);
|
2230
|
-
}
|
2231
|
-
&Inst::CMov64SImm16 { rd, cond, ri, imm } => {
|
2232
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
2233
|
-
|
2234
|
-
let opcode = 0xec46; // LOCGHI
|
2235
|
-
put(
|
2236
|
-
sink,
|
2237
|
-
&enc_rie_g(opcode, rd.to_reg(), imm as u16, cond.bits()),
|
2238
|
-
);
|
2239
|
-
}
|
2240
|
-
&Inst::Mov64UImm16Shifted { rd, imm } => {
|
2241
|
-
let opcode = match imm.shift {
|
2242
|
-
0 => 0xa5f, // LLILL
|
2243
|
-
1 => 0xa5e, // LLILH
|
2244
|
-
2 => 0xa5d, // LLIHL
|
2245
|
-
3 => 0xa5c, // LLIHH
|
2246
|
-
_ => unreachable!(),
|
2247
|
-
};
|
2248
|
-
put(sink, &enc_ri_a(opcode, rd.to_reg(), imm.bits));
|
2249
|
-
}
|
2250
|
-
&Inst::Mov64UImm32Shifted { rd, imm } => {
|
2251
|
-
let opcode = match imm.shift {
|
2252
|
-
0 => 0xc0f, // LLILF
|
2253
|
-
1 => 0xc0e, // LLIHF
|
2254
|
-
_ => unreachable!(),
|
2255
|
-
};
|
2256
|
-
put(sink, &enc_ril_a(opcode, rd.to_reg(), imm.bits));
|
2257
|
-
}
|
2258
|
-
&Inst::Insert64UImm16Shifted { rd, ri, imm } => {
|
2259
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
2260
|
-
|
2261
|
-
let opcode = match imm.shift {
|
2262
|
-
0 => 0xa53, // IILL
|
2263
|
-
1 => 0xa52, // IILH
|
2264
|
-
2 => 0xa51, // IIHL
|
2265
|
-
3 => 0xa50, // IIHH
|
2266
|
-
_ => unreachable!(),
|
2267
|
-
};
|
2268
|
-
put(sink, &enc_ri_a(opcode, rd.to_reg(), imm.bits));
|
2269
|
-
}
|
2270
|
-
&Inst::Insert64UImm32Shifted { rd, ri, imm } => {
|
2271
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
2272
|
-
|
2273
|
-
let opcode = match imm.shift {
|
2274
|
-
0 => 0xc09, // IILF
|
2275
|
-
1 => 0xc08, // IIHF
|
2276
|
-
_ => unreachable!(),
|
2277
|
-
};
|
2278
|
-
put(sink, &enc_ril_a(opcode, rd.to_reg(), imm.bits));
|
2279
|
-
}
|
2280
|
-
&Inst::LoadAR { rd, ar } => {
|
2281
|
-
let opcode = 0xb24f; // EAR
|
2282
|
-
put(sink, &enc_rre(opcode, rd.to_reg(), gpr(ar)));
|
2283
|
-
}
|
2284
|
-
|
2285
|
-
&Inst::InsertAR { rd, ri, ar } => {
|
2286
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
2287
|
-
|
2288
|
-
let opcode = 0xb24f; // EAR
|
2289
|
-
put(sink, &enc_rre(opcode, rd.to_reg(), gpr(ar)));
|
2290
|
-
}
|
2291
|
-
&Inst::LoadSymbolReloc {
|
2292
|
-
rd,
|
2293
|
-
ref symbol_reloc,
|
2294
|
-
} => {
|
2295
|
-
let opcode = 0xa75; // BRAS
|
2296
|
-
let reg = writable_spilltmp_reg().to_reg();
|
2297
|
-
put(sink, &enc_ri_b(opcode, reg, 12));
|
2298
|
-
let (reloc, name, offset) = match &**symbol_reloc {
|
2299
|
-
SymbolReloc::Absolute { name, offset } => (Reloc::Abs8, name, *offset),
|
2300
|
-
SymbolReloc::TlsGd { name } => (Reloc::S390xTlsGd64, name, 0),
|
2301
|
-
};
|
2302
|
-
sink.add_reloc(reloc, name, offset);
|
2303
|
-
sink.put8(0);
|
2304
|
-
let inst = Inst::Load64 {
|
2305
|
-
rd,
|
2306
|
-
mem: MemArg::reg(reg, MemFlags::trusted()),
|
2307
|
-
};
|
2308
|
-
inst.emit(sink, emit_info, state);
|
2309
|
-
}
|
2310
|
-
|
2311
|
-
&Inst::FpuMove32 { rd, rn } => {
|
2312
|
-
if is_fpr(rd.to_reg()) && is_fpr(rn) {
|
2313
|
-
let opcode = 0x38; // LER
|
2314
|
-
put(sink, &enc_rr(opcode, rd.to_reg(), rn));
|
2315
|
-
} else {
|
2316
|
-
let opcode = 0xe756; // VLR
|
2317
|
-
put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, 0, 0, 0));
|
2318
|
-
}
|
2319
|
-
}
|
2320
|
-
&Inst::FpuMove64 { rd, rn } => {
|
2321
|
-
if is_fpr(rd.to_reg()) && is_fpr(rn) {
|
2322
|
-
let opcode = 0x28; // LDR
|
2323
|
-
put(sink, &enc_rr(opcode, rd.to_reg(), rn));
|
2324
|
-
} else {
|
2325
|
-
let opcode = 0xe756; // VLR
|
2326
|
-
put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, 0, 0, 0));
|
2327
|
-
}
|
2328
|
-
}
|
2329
|
-
&Inst::FpuCMov32 { rd, cond, ri, rm } => {
|
2330
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
2331
|
-
|
2332
|
-
if is_fpr(rd.to_reg()) && is_fpr(rm) {
|
2333
|
-
let opcode = 0xa74; // BCR
|
2334
|
-
put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 2));
|
2335
|
-
let opcode = 0x38; // LER
|
2336
|
-
put(sink, &enc_rr(opcode, rd.to_reg(), rm));
|
2337
|
-
} else {
|
2338
|
-
let opcode = 0xa74; // BCR
|
2339
|
-
put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 6));
|
2340
|
-
let opcode = 0xe756; // VLR
|
2341
|
-
put(sink, &enc_vrr_a(opcode, rd.to_reg(), rm, 0, 0, 0));
|
2342
|
-
}
|
2343
|
-
}
|
2344
|
-
&Inst::FpuCMov64 { rd, cond, ri, rm } => {
|
2345
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
2346
|
-
|
2347
|
-
if is_fpr(rd.to_reg()) && is_fpr(rm) {
|
2348
|
-
let opcode = 0xa74; // BCR
|
2349
|
-
put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 2));
|
2350
|
-
let opcode = 0x28; // LDR
|
2351
|
-
put(sink, &enc_rr(opcode, rd.to_reg(), rm));
|
2352
|
-
} else {
|
2353
|
-
let opcode = 0xa74; // BCR
|
2354
|
-
put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 6));
|
2355
|
-
let opcode = 0xe756; // VLR
|
2356
|
-
put(sink, &enc_vrr_a(opcode, rd.to_reg(), rm, 0, 0, 0));
|
2357
|
-
}
|
2358
|
-
}
|
2359
|
-
&Inst::LoadFpuConst32 { rd, const_data } => {
|
2360
|
-
let opcode = 0xa75; // BRAS
|
2361
|
-
let reg = writable_spilltmp_reg().to_reg();
|
2362
|
-
put(sink, &enc_ri_b(opcode, reg, 8));
|
2363
|
-
sink.put4(const_data.swap_bytes());
|
2364
|
-
let inst = Inst::VecLoadLaneUndef {
|
2365
|
-
size: 32,
|
2366
|
-
rd,
|
2367
|
-
mem: MemArg::reg(reg, MemFlags::trusted()),
|
2368
|
-
lane_imm: 0,
|
2369
|
-
};
|
2370
|
-
inst.emit(sink, emit_info, state);
|
2371
|
-
}
|
2372
|
-
&Inst::LoadFpuConst64 { rd, const_data } => {
|
2373
|
-
let opcode = 0xa75; // BRAS
|
2374
|
-
let reg = writable_spilltmp_reg().to_reg();
|
2375
|
-
put(sink, &enc_ri_b(opcode, reg, 12));
|
2376
|
-
sink.put8(const_data.swap_bytes());
|
2377
|
-
let inst = Inst::VecLoadLaneUndef {
|
2378
|
-
size: 64,
|
2379
|
-
rd,
|
2380
|
-
mem: MemArg::reg(reg, MemFlags::trusted()),
|
2381
|
-
lane_imm: 0,
|
2382
|
-
};
|
2383
|
-
inst.emit(sink, emit_info, state);
|
2384
|
-
}
|
2385
|
-
&Inst::FpuRR { fpu_op, rd, rn } => {
|
2386
|
-
let (opcode, m3, m4, m5, opcode_fpr) = match fpu_op {
|
2387
|
-
FPUOp1::Abs32 => (0xe7cc, 2, 8, 2, Some(0xb300)), // WFPSO, LPEBR
|
2388
|
-
FPUOp1::Abs64 => (0xe7cc, 3, 8, 2, Some(0xb310)), // WFPSO, LPDBR
|
2389
|
-
FPUOp1::Abs32x4 => (0xe7cc, 2, 0, 2, None), // VFPSO
|
2390
|
-
FPUOp1::Abs64x2 => (0xe7cc, 3, 0, 2, None), // VFPSO
|
2391
|
-
FPUOp1::Neg32 => (0xe7cc, 2, 8, 0, Some(0xb303)), // WFPSO, LCEBR
|
2392
|
-
FPUOp1::Neg64 => (0xe7cc, 3, 8, 0, Some(0xb313)), // WFPSO, LCDBR
|
2393
|
-
FPUOp1::Neg32x4 => (0xe7cc, 2, 0, 0, None), // VFPSO
|
2394
|
-
FPUOp1::Neg64x2 => (0xe7cc, 3, 0, 0, None), // VFPSO
|
2395
|
-
FPUOp1::NegAbs32 => (0xe7cc, 2, 8, 1, Some(0xb301)), // WFPSO, LNEBR
|
2396
|
-
FPUOp1::NegAbs64 => (0xe7cc, 3, 8, 1, Some(0xb311)), // WFPSO, LNDBR
|
2397
|
-
FPUOp1::NegAbs32x4 => (0xe7cc, 2, 0, 1, None), // VFPSO
|
2398
|
-
FPUOp1::NegAbs64x2 => (0xe7cc, 3, 0, 1, None), // VFPSO
|
2399
|
-
FPUOp1::Sqrt32 => (0xe7ce, 2, 8, 0, Some(0xb314)), // WFSQ, SQEBR
|
2400
|
-
FPUOp1::Sqrt64 => (0xe7ce, 3, 8, 0, Some(0xb315)), // WFSQ, SQDBR
|
2401
|
-
FPUOp1::Sqrt32x4 => (0xe7ce, 2, 0, 0, None), // VFSQ
|
2402
|
-
FPUOp1::Sqrt64x2 => (0xe7ce, 3, 0, 0, None), // VFSQ
|
2403
|
-
FPUOp1::Cvt32To64 => (0xe7c4, 2, 8, 0, Some(0xb304)), // WFLL, LDEBR
|
2404
|
-
FPUOp1::Cvt32x4To64x2 => (0xe7c4, 2, 0, 0, None), // VFLL
|
2405
|
-
};
|
2406
|
-
if m4 == 8 && is_fpr(rd.to_reg()) && is_fpr(rn) {
|
2407
|
-
put(sink, &enc_rre(opcode_fpr.unwrap(), rd.to_reg(), rn));
|
2408
|
-
} else {
|
2409
|
-
put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, m3, m4, m5));
|
2410
|
-
}
|
2411
|
-
}
|
2412
|
-
&Inst::FpuRRR { fpu_op, rd, rn, rm } => {
|
2413
|
-
let (opcode, m4, m5, m6, opcode_fpr) = match fpu_op {
|
2414
|
-
FPUOp2::Add32 => (0xe7e3, 2, 8, 0, Some(0xb30a)), // WFA, AEBR
|
2415
|
-
FPUOp2::Add64 => (0xe7e3, 3, 8, 0, Some(0xb31a)), // WFA, ADBR
|
2416
|
-
FPUOp2::Add32x4 => (0xe7e3, 2, 0, 0, None), // VFA
|
2417
|
-
FPUOp2::Add64x2 => (0xe7e3, 3, 0, 0, None), // VFA
|
2418
|
-
FPUOp2::Sub32 => (0xe7e2, 2, 8, 0, Some(0xb30b)), // WFS, SEBR
|
2419
|
-
FPUOp2::Sub64 => (0xe7e2, 3, 8, 0, Some(0xb31b)), // WFS, SDBR
|
2420
|
-
FPUOp2::Sub32x4 => (0xe7e2, 2, 0, 0, None), // VFS
|
2421
|
-
FPUOp2::Sub64x2 => (0xe7e2, 3, 0, 0, None), // VFS
|
2422
|
-
FPUOp2::Mul32 => (0xe7e7, 2, 8, 0, Some(0xb317)), // WFM, MEEBR
|
2423
|
-
FPUOp2::Mul64 => (0xe7e7, 3, 8, 0, Some(0xb31c)), // WFM, MDBR
|
2424
|
-
FPUOp2::Mul32x4 => (0xe7e7, 2, 0, 0, None), // VFM
|
2425
|
-
FPUOp2::Mul64x2 => (0xe7e7, 3, 0, 0, None), // VFM
|
2426
|
-
FPUOp2::Div32 => (0xe7e5, 2, 8, 0, Some(0xb30d)), // WFD, DEBR
|
2427
|
-
FPUOp2::Div64 => (0xe7e5, 3, 8, 0, Some(0xb31d)), // WFD, DDBR
|
2428
|
-
FPUOp2::Div32x4 => (0xe7e5, 2, 0, 0, None), // VFD
|
2429
|
-
FPUOp2::Div64x2 => (0xe7e5, 3, 0, 0, None), // VFD
|
2430
|
-
FPUOp2::Max32 => (0xe7ef, 2, 8, 1, None), // WFMAX
|
2431
|
-
FPUOp2::Max64 => (0xe7ef, 3, 8, 1, None), // WFMAX
|
2432
|
-
FPUOp2::Max32x4 => (0xe7ef, 2, 0, 1, None), // VFMAX
|
2433
|
-
FPUOp2::Max64x2 => (0xe7ef, 3, 0, 1, None), // VFMAX
|
2434
|
-
FPUOp2::Min32 => (0xe7ee, 2, 8, 1, None), // WFMIN
|
2435
|
-
FPUOp2::Min64 => (0xe7ee, 3, 8, 1, None), // WFMIN
|
2436
|
-
FPUOp2::Min32x4 => (0xe7ee, 2, 0, 1, None), // VFMIN
|
2437
|
-
FPUOp2::Min64x2 => (0xe7ee, 3, 0, 1, None), // VFMIN
|
2438
|
-
FPUOp2::MaxPseudo32 => (0xe7ef, 2, 8, 3, None), // WFMAX
|
2439
|
-
FPUOp2::MaxPseudo64 => (0xe7ef, 3, 8, 3, None), // WFMAX
|
2440
|
-
FPUOp2::MaxPseudo32x4 => (0xe7ef, 2, 0, 3, None), // VFMAX
|
2441
|
-
FPUOp2::MaxPseudo64x2 => (0xe7ef, 3, 0, 3, None), // VFMAX
|
2442
|
-
FPUOp2::MinPseudo32 => (0xe7ee, 2, 8, 3, None), // WFMIN
|
2443
|
-
FPUOp2::MinPseudo64 => (0xe7ee, 3, 8, 3, None), // WFMIN
|
2444
|
-
FPUOp2::MinPseudo32x4 => (0xe7ee, 2, 0, 3, None), // VFMIN
|
2445
|
-
FPUOp2::MinPseudo64x2 => (0xe7ee, 3, 0, 3, None), // VFMIN
|
2446
|
-
};
|
2447
|
-
if m5 == 8 && opcode_fpr.is_some() && rd.to_reg() == rn && is_fpr(rn) && is_fpr(rm)
|
2448
|
-
{
|
2449
|
-
put(sink, &enc_rre(opcode_fpr.unwrap(), rd.to_reg(), rm));
|
2450
|
-
} else {
|
2451
|
-
put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, m5, m6));
|
2452
|
-
}
|
2453
|
-
}
|
2454
|
-
&Inst::FpuRRRR {
|
2455
|
-
fpu_op,
|
2456
|
-
rd,
|
2457
|
-
rn,
|
2458
|
-
rm,
|
2459
|
-
ra,
|
2460
|
-
} => {
|
2461
|
-
let (opcode, m5, m6, opcode_fpr) = match fpu_op {
|
2462
|
-
FPUOp3::MAdd32 => (0xe78f, 8, 2, Some(0xb30e)), // WFMA, MAEBR
|
2463
|
-
FPUOp3::MAdd64 => (0xe78f, 8, 3, Some(0xb31e)), // WFMA, MADBR
|
2464
|
-
FPUOp3::MAdd32x4 => (0xe78f, 0, 2, None), // VFMA
|
2465
|
-
FPUOp3::MAdd64x2 => (0xe78f, 0, 3, None), // VFMA
|
2466
|
-
FPUOp3::MSub32 => (0xe78e, 8, 2, Some(0xb30f)), // WFMS, MSEBR
|
2467
|
-
FPUOp3::MSub64 => (0xe78e, 8, 3, Some(0xb31f)), // WFMS, MSDBR
|
2468
|
-
FPUOp3::MSub32x4 => (0xe78e, 0, 2, None), // VFMS
|
2469
|
-
FPUOp3::MSub64x2 => (0xe78e, 0, 3, None), // VFMS
|
2470
|
-
};
|
2471
|
-
if m5 == 8 && rd.to_reg() == ra && is_fpr(rn) && is_fpr(rm) && is_fpr(ra) {
|
2472
|
-
put(sink, &enc_rrd(opcode_fpr.unwrap(), rd.to_reg(), rm, rn));
|
2473
|
-
} else {
|
2474
|
-
put(sink, &enc_vrr_e(opcode, rd.to_reg(), rn, rm, ra, m5, m6));
|
2475
|
-
}
|
2476
|
-
}
|
2477
|
-
&Inst::FpuRound { op, mode, rd, rn } => {
|
2478
|
-
let mode = match mode {
|
2479
|
-
FpuRoundMode::Current => 0,
|
2480
|
-
FpuRoundMode::ToNearest => 1,
|
2481
|
-
FpuRoundMode::ShorterPrecision => 3,
|
2482
|
-
FpuRoundMode::ToNearestTiesToEven => 4,
|
2483
|
-
FpuRoundMode::ToZero => 5,
|
2484
|
-
FpuRoundMode::ToPosInfinity => 6,
|
2485
|
-
FpuRoundMode::ToNegInfinity => 7,
|
2486
|
-
};
|
2487
|
-
let (opcode, m3, m4, opcode_fpr) = match op {
|
2488
|
-
FpuRoundOp::Cvt64To32 => (0xe7c5, 3, 8, Some(0xb344)), // WFLR, LEDBR(A)
|
2489
|
-
FpuRoundOp::Cvt64x2To32x4 => (0xe7c5, 3, 0, None), // VFLR
|
2490
|
-
FpuRoundOp::Round32 => (0xe7c7, 2, 8, Some(0xb357)), // WFI, FIEBR
|
2491
|
-
FpuRoundOp::Round64 => (0xe7c7, 3, 8, Some(0xb35f)), // WFI, FIDBR
|
2492
|
-
FpuRoundOp::Round32x4 => (0xe7c7, 2, 0, None), // VFI
|
2493
|
-
FpuRoundOp::Round64x2 => (0xe7c7, 3, 0, None), // VFI
|
2494
|
-
FpuRoundOp::ToSInt32 => (0xe7c2, 2, 8, None), // WCSFP
|
2495
|
-
FpuRoundOp::ToSInt64 => (0xe7c2, 3, 8, None), // WCSFP
|
2496
|
-
FpuRoundOp::ToUInt32 => (0xe7c0, 2, 8, None), // WCLFP
|
2497
|
-
FpuRoundOp::ToUInt64 => (0xe7c0, 3, 8, None), // WCLFP
|
2498
|
-
FpuRoundOp::ToSInt32x4 => (0xe7c2, 2, 0, None), // VCSFP
|
2499
|
-
FpuRoundOp::ToSInt64x2 => (0xe7c2, 3, 0, None), // VCSFP
|
2500
|
-
FpuRoundOp::ToUInt32x4 => (0xe7c0, 2, 0, None), // VCLFP
|
2501
|
-
FpuRoundOp::ToUInt64x2 => (0xe7c0, 3, 0, None), // VCLFP
|
2502
|
-
FpuRoundOp::FromSInt32 => (0xe7c3, 2, 8, None), // WCFPS
|
2503
|
-
FpuRoundOp::FromSInt64 => (0xe7c3, 3, 8, None), // WCFPS
|
2504
|
-
FpuRoundOp::FromUInt32 => (0xe7c1, 2, 8, None), // WCFPL
|
2505
|
-
FpuRoundOp::FromUInt64 => (0xe7c1, 3, 8, None), // WCFPL
|
2506
|
-
FpuRoundOp::FromSInt32x4 => (0xe7c3, 2, 0, None), // VCFPS
|
2507
|
-
FpuRoundOp::FromSInt64x2 => (0xe7c3, 3, 0, None), // VCFPS
|
2508
|
-
FpuRoundOp::FromUInt32x4 => (0xe7c1, 2, 0, None), // VCFPL
|
2509
|
-
FpuRoundOp::FromUInt64x2 => (0xe7c1, 3, 0, None), // VCFPL
|
2510
|
-
};
|
2511
|
-
if m4 == 8 && opcode_fpr.is_some() && is_fpr(rd.to_reg()) && is_fpr(rn) {
|
2512
|
-
put(
|
2513
|
-
sink,
|
2514
|
-
&enc_rrf_cde(opcode_fpr.unwrap(), rd.to_reg(), rn, mode, 0),
|
2515
|
-
);
|
2516
|
-
} else {
|
2517
|
-
put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, m3, m4, mode));
|
2518
|
-
}
|
2519
|
-
}
|
2520
|
-
&Inst::FpuCmp32 { rn, rm } => {
|
2521
|
-
if is_fpr(rn) && is_fpr(rm) {
|
2522
|
-
let opcode = 0xb309; // CEBR
|
2523
|
-
put(sink, &enc_rre(opcode, rn, rm));
|
2524
|
-
} else {
|
2525
|
-
let opcode = 0xe7cb; // WFC
|
2526
|
-
put(sink, &enc_vrr_a(opcode, rn, rm, 2, 0, 0));
|
2527
|
-
}
|
2528
|
-
}
|
2529
|
-
&Inst::FpuCmp64 { rn, rm } => {
|
2530
|
-
if is_fpr(rn) && is_fpr(rm) {
|
2531
|
-
let opcode = 0xb319; // CDBR
|
2532
|
-
put(sink, &enc_rre(opcode, rn, rm));
|
2533
|
-
} else {
|
2534
|
-
let opcode = 0xe7cb; // WFC
|
2535
|
-
put(sink, &enc_vrr_a(opcode, rn, rm, 3, 0, 0));
|
2536
|
-
}
|
2537
|
-
}
|
2538
|
-
|
2539
|
-
&Inst::VecRRR { op, rd, rn, rm } => {
|
2540
|
-
let (opcode, m4) = match op {
|
2541
|
-
VecBinaryOp::Add8x16 => (0xe7f3, 0), // VAB
|
2542
|
-
VecBinaryOp::Add16x8 => (0xe7f3, 1), // VAH
|
2543
|
-
VecBinaryOp::Add32x4 => (0xe7f3, 2), // VAF
|
2544
|
-
VecBinaryOp::Add64x2 => (0xe7f3, 3), // VAG
|
2545
|
-
VecBinaryOp::Add128 => (0xe7f3, 4), // VAQ
|
2546
|
-
VecBinaryOp::Sub8x16 => (0xe7f7, 0), // VSB
|
2547
|
-
VecBinaryOp::Sub16x8 => (0xe7f7, 1), // VSH
|
2548
|
-
VecBinaryOp::Sub32x4 => (0xe7f7, 2), // VSF
|
2549
|
-
VecBinaryOp::Sub64x2 => (0xe7f7, 3), // VSG
|
2550
|
-
VecBinaryOp::Sub128 => (0xe7f7, 4), // VSQ
|
2551
|
-
VecBinaryOp::Mul8x16 => (0xe7a2, 0), // VMLB
|
2552
|
-
VecBinaryOp::Mul16x8 => (0xe7a2, 1), // VMLHW
|
2553
|
-
VecBinaryOp::Mul32x4 => (0xe7a2, 2), // VMLF
|
2554
|
-
VecBinaryOp::UMulHi8x16 => (0xe7a1, 0), // VMLHB
|
2555
|
-
VecBinaryOp::UMulHi16x8 => (0xe7a1, 1), // VMLHH
|
2556
|
-
VecBinaryOp::UMulHi32x4 => (0xe7a1, 2), // VMLHF
|
2557
|
-
VecBinaryOp::SMulHi8x16 => (0xe7a3, 0), // VMHB
|
2558
|
-
VecBinaryOp::SMulHi16x8 => (0xe7a3, 1), // VMHH
|
2559
|
-
VecBinaryOp::SMulHi32x4 => (0xe7a3, 2), // VMHF
|
2560
|
-
VecBinaryOp::UMulEven8x16 => (0xe7a4, 0), // VMLEB
|
2561
|
-
VecBinaryOp::UMulEven16x8 => (0xe7a4, 1), // VMLEH
|
2562
|
-
VecBinaryOp::UMulEven32x4 => (0xe7a4, 2), // VMLEF
|
2563
|
-
VecBinaryOp::SMulEven8x16 => (0xe7a6, 0), // VMEB
|
2564
|
-
VecBinaryOp::SMulEven16x8 => (0xe7a6, 1), // VMEH
|
2565
|
-
VecBinaryOp::SMulEven32x4 => (0xe7a6, 2), // VMEF
|
2566
|
-
VecBinaryOp::UMulOdd8x16 => (0xe7a5, 0), // VMLOB
|
2567
|
-
VecBinaryOp::UMulOdd16x8 => (0xe7a5, 1), // VMLOH
|
2568
|
-
VecBinaryOp::UMulOdd32x4 => (0xe7a5, 2), // VMLOF
|
2569
|
-
VecBinaryOp::SMulOdd8x16 => (0xe7a7, 0), // VMOB
|
2570
|
-
VecBinaryOp::SMulOdd16x8 => (0xe7a7, 1), // VMOH
|
2571
|
-
VecBinaryOp::SMulOdd32x4 => (0xe7a7, 2), // VMOF
|
2572
|
-
VecBinaryOp::UMax8x16 => (0xe7fd, 0), // VMXLB
|
2573
|
-
VecBinaryOp::UMax16x8 => (0xe7fd, 1), // VMXLH
|
2574
|
-
VecBinaryOp::UMax32x4 => (0xe7fd, 2), // VMXLF
|
2575
|
-
VecBinaryOp::UMax64x2 => (0xe7fd, 3), // VMXLG
|
2576
|
-
VecBinaryOp::SMax8x16 => (0xe7ff, 0), // VMXB
|
2577
|
-
VecBinaryOp::SMax16x8 => (0xe7ff, 1), // VMXH
|
2578
|
-
VecBinaryOp::SMax32x4 => (0xe7ff, 2), // VMXF
|
2579
|
-
VecBinaryOp::SMax64x2 => (0xe7ff, 3), // VMXG
|
2580
|
-
VecBinaryOp::UMin8x16 => (0xe7fc, 0), // VMNLB
|
2581
|
-
VecBinaryOp::UMin16x8 => (0xe7fc, 1), // VMNLH
|
2582
|
-
VecBinaryOp::UMin32x4 => (0xe7fc, 2), // VMNLF
|
2583
|
-
VecBinaryOp::UMin64x2 => (0xe7fc, 3), // VMNLG
|
2584
|
-
VecBinaryOp::SMin8x16 => (0xe7fe, 0), // VMNB
|
2585
|
-
VecBinaryOp::SMin16x8 => (0xe7fe, 1), // VMNH
|
2586
|
-
VecBinaryOp::SMin32x4 => (0xe7fe, 2), // VMNF
|
2587
|
-
VecBinaryOp::SMin64x2 => (0xe7fe, 3), // VMNG
|
2588
|
-
VecBinaryOp::UAvg8x16 => (0xe7f0, 0), // VAVGLB
|
2589
|
-
VecBinaryOp::UAvg16x8 => (0xe7f0, 1), // VAVGLH
|
2590
|
-
VecBinaryOp::UAvg32x4 => (0xe7f0, 2), // VAVGLF
|
2591
|
-
VecBinaryOp::UAvg64x2 => (0xe7f0, 3), // VAVGLG
|
2592
|
-
VecBinaryOp::SAvg8x16 => (0xe7f2, 0), // VAVGB
|
2593
|
-
VecBinaryOp::SAvg16x8 => (0xe7f2, 1), // VAVGH
|
2594
|
-
VecBinaryOp::SAvg32x4 => (0xe7f2, 2), // VAVGF
|
2595
|
-
VecBinaryOp::SAvg64x2 => (0xe7f2, 3), // VAVGG
|
2596
|
-
VecBinaryOp::And128 => (0xe768, 0), // VN
|
2597
|
-
VecBinaryOp::Orr128 => (0xe76a, 0), // VO
|
2598
|
-
VecBinaryOp::Xor128 => (0xe76d, 0), // VX
|
2599
|
-
VecBinaryOp::NotAnd128 => (0xe76e, 0), // VNN
|
2600
|
-
VecBinaryOp::NotOrr128 => (0xe76b, 0), // VNO
|
2601
|
-
VecBinaryOp::NotXor128 => (0xe76c, 0), // VNX
|
2602
|
-
VecBinaryOp::AndNot128 => (0xe769, 0), // VNC
|
2603
|
-
VecBinaryOp::OrrNot128 => (0xe76f, 0), // VOC
|
2604
|
-
VecBinaryOp::BitPermute128 => (0xe785, 0), // VBPERM
|
2605
|
-
VecBinaryOp::LShLByByte128 => (0xe775, 0), // VSLB
|
2606
|
-
VecBinaryOp::LShRByByte128 => (0xe77d, 0), // VSRLB
|
2607
|
-
VecBinaryOp::AShRByByte128 => (0xe77f, 0), // VSRAB
|
2608
|
-
VecBinaryOp::LShLByBit128 => (0xe774, 0), // VSL
|
2609
|
-
VecBinaryOp::LShRByBit128 => (0xe77c, 0), // VSRL
|
2610
|
-
VecBinaryOp::AShRByBit128 => (0xe77e, 0), // VSRA
|
2611
|
-
VecBinaryOp::Pack16x8 => (0xe794, 1), // VPKH
|
2612
|
-
VecBinaryOp::Pack32x4 => (0xe794, 2), // VPKF
|
2613
|
-
VecBinaryOp::Pack64x2 => (0xe794, 3), // VPKG
|
2614
|
-
VecBinaryOp::PackUSat16x8 => (0xe795, 1), // VPKLSH
|
2615
|
-
VecBinaryOp::PackUSat32x4 => (0xe795, 2), // VPKLSF
|
2616
|
-
VecBinaryOp::PackUSat64x2 => (0xe795, 3), // VPKLSG
|
2617
|
-
VecBinaryOp::PackSSat16x8 => (0xe797, 1), // VPKSH
|
2618
|
-
VecBinaryOp::PackSSat32x4 => (0xe797, 2), // VPKSF
|
2619
|
-
VecBinaryOp::PackSSat64x2 => (0xe797, 3), // VPKSG
|
2620
|
-
VecBinaryOp::MergeLow8x16 => (0xe760, 0), // VMRLB
|
2621
|
-
VecBinaryOp::MergeLow16x8 => (0xe760, 1), // VMRLH
|
2622
|
-
VecBinaryOp::MergeLow32x4 => (0xe760, 2), // VMRLF
|
2623
|
-
VecBinaryOp::MergeLow64x2 => (0xe760, 3), // VMRLG
|
2624
|
-
VecBinaryOp::MergeHigh8x16 => (0xe761, 0), // VMRHB
|
2625
|
-
VecBinaryOp::MergeHigh16x8 => (0xe761, 1), // VMRHH
|
2626
|
-
VecBinaryOp::MergeHigh32x4 => (0xe761, 2), // VMRHF
|
2627
|
-
VecBinaryOp::MergeHigh64x2 => (0xe761, 3), // VMRHG
|
2628
|
-
};
|
2629
|
-
|
2630
|
-
put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, 0, 0));
|
2631
|
-
}
|
2632
|
-
&Inst::VecRR { op, rd, rn } => {
|
2633
|
-
let (opcode, m3) = match op {
|
2634
|
-
VecUnaryOp::Abs8x16 => (0xe7df, 0), // VLPB
|
2635
|
-
VecUnaryOp::Abs16x8 => (0xe7df, 1), // VLPH
|
2636
|
-
VecUnaryOp::Abs32x4 => (0xe7df, 2), // VLPF
|
2637
|
-
VecUnaryOp::Abs64x2 => (0xe7df, 3), // VLPG
|
2638
|
-
VecUnaryOp::Neg8x16 => (0xe7de, 0), // VLCB
|
2639
|
-
VecUnaryOp::Neg16x8 => (0xe7de, 1), // VLCH
|
2640
|
-
VecUnaryOp::Neg32x4 => (0xe7de, 2), // VLCF
|
2641
|
-
VecUnaryOp::Neg64x2 => (0xe7de, 3), // VLCG
|
2642
|
-
VecUnaryOp::Popcnt8x16 => (0xe750, 0), // VPOPCTB
|
2643
|
-
VecUnaryOp::Popcnt16x8 => (0xe750, 1), // VPOPCTH
|
2644
|
-
VecUnaryOp::Popcnt32x4 => (0xe750, 2), // VPOPCTF
|
2645
|
-
VecUnaryOp::Popcnt64x2 => (0xe750, 3), // VPOPCTG
|
2646
|
-
VecUnaryOp::Clz8x16 => (0xe753, 0), // VCLZB
|
2647
|
-
VecUnaryOp::Clz16x8 => (0xe753, 1), // VCLZH
|
2648
|
-
VecUnaryOp::Clz32x4 => (0xe753, 2), // VCLZF
|
2649
|
-
VecUnaryOp::Clz64x2 => (0xe753, 3), // VCLZG
|
2650
|
-
VecUnaryOp::Ctz8x16 => (0xe752, 0), // VCTZB
|
2651
|
-
VecUnaryOp::Ctz16x8 => (0xe752, 1), // VCTZH
|
2652
|
-
VecUnaryOp::Ctz32x4 => (0xe752, 2), // VCTZF
|
2653
|
-
VecUnaryOp::Ctz64x2 => (0xe752, 3), // VCTZG
|
2654
|
-
VecUnaryOp::UnpackULow8x16 => (0xe7d4, 0), // VUPLLB
|
2655
|
-
VecUnaryOp::UnpackULow16x8 => (0xe7d4, 1), // VUPLLH
|
2656
|
-
VecUnaryOp::UnpackULow32x4 => (0xe7d4, 2), // VUPLLF
|
2657
|
-
VecUnaryOp::UnpackUHigh8x16 => (0xe7d5, 0), // VUPLHB
|
2658
|
-
VecUnaryOp::UnpackUHigh16x8 => (0xe7d5, 1), // VUPLHH
|
2659
|
-
VecUnaryOp::UnpackUHigh32x4 => (0xe7d5, 2), // VUPLHF
|
2660
|
-
VecUnaryOp::UnpackSLow8x16 => (0xe7d6, 0), // VUPLB
|
2661
|
-
VecUnaryOp::UnpackSLow16x8 => (0xe7d6, 1), // VUPLH
|
2662
|
-
VecUnaryOp::UnpackSLow32x4 => (0xe7d6, 2), // VUPLF
|
2663
|
-
VecUnaryOp::UnpackSHigh8x16 => (0xe7d7, 0), // VUPHB
|
2664
|
-
VecUnaryOp::UnpackSHigh16x8 => (0xe7d7, 1), // VUPHH
|
2665
|
-
VecUnaryOp::UnpackSHigh32x4 => (0xe7d7, 2), // VUPHF
|
2666
|
-
};
|
2667
|
-
|
2668
|
-
put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, m3, 0, 0));
|
2669
|
-
}
|
2670
|
-
&Inst::VecShiftRR {
|
2671
|
-
shift_op,
|
2672
|
-
rd,
|
2673
|
-
rn,
|
2674
|
-
shift_imm,
|
2675
|
-
shift_reg,
|
2676
|
-
} => {
|
2677
|
-
let (opcode, m4) = match shift_op {
|
2678
|
-
VecShiftOp::RotL8x16 => (0xe733, 0), // VERLLB
|
2679
|
-
VecShiftOp::RotL16x8 => (0xe733, 1), // VERLLH
|
2680
|
-
VecShiftOp::RotL32x4 => (0xe733, 2), // VERLLF
|
2681
|
-
VecShiftOp::RotL64x2 => (0xe733, 3), // VERLLG
|
2682
|
-
VecShiftOp::LShL8x16 => (0xe730, 0), // VESLB
|
2683
|
-
VecShiftOp::LShL16x8 => (0xe730, 1), // VESLH
|
2684
|
-
VecShiftOp::LShL32x4 => (0xe730, 2), // VESLF
|
2685
|
-
VecShiftOp::LShL64x2 => (0xe730, 3), // VESLG
|
2686
|
-
VecShiftOp::LShR8x16 => (0xe738, 0), // VESRLB
|
2687
|
-
VecShiftOp::LShR16x8 => (0xe738, 1), // VESRLH
|
2688
|
-
VecShiftOp::LShR32x4 => (0xe738, 2), // VESRLF
|
2689
|
-
VecShiftOp::LShR64x2 => (0xe738, 3), // VESRLG
|
2690
|
-
VecShiftOp::AShR8x16 => (0xe73a, 0), // VESRAB
|
2691
|
-
VecShiftOp::AShR16x8 => (0xe73a, 1), // VESRAH
|
2692
|
-
VecShiftOp::AShR32x4 => (0xe73a, 2), // VESRAF
|
2693
|
-
VecShiftOp::AShR64x2 => (0xe73a, 3), // VESRAG
|
2694
|
-
};
|
2695
|
-
put(
|
2696
|
-
sink,
|
2697
|
-
&enc_vrs_a(opcode, rd.to_reg(), shift_reg, shift_imm.into(), rn, m4),
|
2698
|
-
);
|
2699
|
-
}
|
2700
|
-
&Inst::VecSelect { rd, rn, rm, ra } => {
|
2701
|
-
let opcode = 0xe78d; // VSEL
|
2702
|
-
put(sink, &enc_vrr_e(opcode, rd.to_reg(), rn, rm, ra, 0, 0));
|
2703
|
-
}
|
2704
|
-
&Inst::VecPermute { rd, rn, rm, ra } => {
|
2705
|
-
let opcode = 0xe78c; // VPERM
|
2706
|
-
put(sink, &enc_vrr_e(opcode, rd.to_reg(), rn, rm, ra, 0, 0));
|
2707
|
-
}
|
2708
|
-
&Inst::VecPermuteDWImm {
|
2709
|
-
rd,
|
2710
|
-
rn,
|
2711
|
-
rm,
|
2712
|
-
idx1,
|
2713
|
-
idx2,
|
2714
|
-
} => {
|
2715
|
-
let m4 = (idx1 & 1) * 4 + (idx2 & 1);
|
2716
|
-
|
2717
|
-
let opcode = 0xe784; // VPDI
|
2718
|
-
put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, 0, 0));
|
2719
|
-
}
|
2720
|
-
&Inst::VecIntCmp { op, rd, rn, rm } | &Inst::VecIntCmpS { op, rd, rn, rm } => {
|
2721
|
-
let (opcode, m4) = match op {
|
2722
|
-
VecIntCmpOp::CmpEq8x16 => (0xe7f8, 0), // VCEQB
|
2723
|
-
VecIntCmpOp::CmpEq16x8 => (0xe7f8, 1), // VCEQH
|
2724
|
-
VecIntCmpOp::CmpEq32x4 => (0xe7f8, 2), // VCEQF
|
2725
|
-
VecIntCmpOp::CmpEq64x2 => (0xe7f8, 3), // VCEQG
|
2726
|
-
VecIntCmpOp::SCmpHi8x16 => (0xe7fb, 0), // VCHB
|
2727
|
-
VecIntCmpOp::SCmpHi16x8 => (0xe7fb, 1), // VCHH
|
2728
|
-
VecIntCmpOp::SCmpHi32x4 => (0xe7fb, 2), // VCHG
|
2729
|
-
VecIntCmpOp::SCmpHi64x2 => (0xe7fb, 3), // VCHG
|
2730
|
-
VecIntCmpOp::UCmpHi8x16 => (0xe7f9, 0), // VCHLB
|
2731
|
-
VecIntCmpOp::UCmpHi16x8 => (0xe7f9, 1), // VCHLH
|
2732
|
-
VecIntCmpOp::UCmpHi32x4 => (0xe7f9, 2), // VCHLG
|
2733
|
-
VecIntCmpOp::UCmpHi64x2 => (0xe7f9, 3), // VCHLG
|
2734
|
-
};
|
2735
|
-
let m5 = match self {
|
2736
|
-
&Inst::VecIntCmp { .. } => 0,
|
2737
|
-
&Inst::VecIntCmpS { .. } => 1,
|
2738
|
-
_ => unreachable!(),
|
2739
|
-
};
|
2740
|
-
|
2741
|
-
put(sink, &enc_vrr_b(opcode, rd.to_reg(), rn, rm, m4, m5));
|
2742
|
-
}
|
2743
|
-
&Inst::VecFloatCmp { op, rd, rn, rm } | &Inst::VecFloatCmpS { op, rd, rn, rm } => {
|
2744
|
-
let (opcode, m4) = match op {
|
2745
|
-
VecFloatCmpOp::CmpEq32x4 => (0xe7e8, 2), // VFCESB
|
2746
|
-
VecFloatCmpOp::CmpEq64x2 => (0xe7e8, 3), // VFCEDB
|
2747
|
-
VecFloatCmpOp::CmpHi32x4 => (0xe7eb, 2), // VFCHSB
|
2748
|
-
VecFloatCmpOp::CmpHi64x2 => (0xe7eb, 3), // VFCHDB
|
2749
|
-
VecFloatCmpOp::CmpHiEq32x4 => (0xe7ea, 2), // VFCHESB
|
2750
|
-
VecFloatCmpOp::CmpHiEq64x2 => (0xe7ea, 3), // VFCHEDB
|
2751
|
-
};
|
2752
|
-
let m6 = match self {
|
2753
|
-
&Inst::VecFloatCmp { .. } => 0,
|
2754
|
-
&Inst::VecFloatCmpS { .. } => 1,
|
2755
|
-
_ => unreachable!(),
|
2756
|
-
};
|
2757
|
-
|
2758
|
-
put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, 0, m6));
|
2759
|
-
}
|
2760
|
-
&Inst::VecInt128SCmpHi { tmp, rn, rm } | &Inst::VecInt128UCmpHi { tmp, rn, rm } => {
|
2761
|
-
// Synthetic instruction to compare 128-bit values.
|
2762
|
-
// Sets CC 1 if rn > rm, sets a different CC otherwise.
|
2763
|
-
|
2764
|
-
// Use VECTOR ELEMENT COMPARE to compare the high parts.
|
2765
|
-
// Swap the inputs to get:
|
2766
|
-
// CC 1 if high(rn) > high(rm)
|
2767
|
-
// CC 2 if high(rn) < high(rm)
|
2768
|
-
// CC 0 if high(rn) == high(rm)
|
2769
|
-
let (opcode, m3) = match self {
|
2770
|
-
&Inst::VecInt128SCmpHi { .. } => (0xe7db, 3), // VECG
|
2771
|
-
&Inst::VecInt128UCmpHi { .. } => (0xe7d9, 3), // VECLG
|
2772
|
-
_ => unreachable!(),
|
2773
|
-
};
|
2774
|
-
put(sink, &enc_vrr_a(opcode, rm, rn, m3, 0, 0));
|
2775
|
-
|
2776
|
-
// If CC != 0, we'd done, so jump over the next instruction.
|
2777
|
-
let opcode = 0xa74; // BCR
|
2778
|
-
put(sink, &enc_ri_c(opcode, 7, 4 + 6));
|
2779
|
-
|
2780
|
-
// Otherwise, use VECTOR COMPARE HIGH LOGICAL.
|
2781
|
-
// Since we already know the high parts are equal, the CC
|
2782
|
-
// result will only depend on the low parts:
|
2783
|
-
// CC 1 if low(rn) > low(rm)
|
2784
|
-
// CC 3 if low(rn) <= low(rm)
|
2785
|
-
let inst = Inst::VecIntCmpS {
|
2786
|
-
op: VecIntCmpOp::UCmpHi64x2,
|
2787
|
-
// N.B.: This is the first write to tmp, and it happens
|
2788
|
-
// after all uses of rn and rm. If this were to ever
|
2789
|
-
// change, tmp would have to become an early-def.
|
2790
|
-
rd: tmp,
|
2791
|
-
rn,
|
2792
|
-
rm,
|
2793
|
-
};
|
2794
|
-
inst.emit(sink, emit_info, state);
|
2795
|
-
}
|
2796
|
-
|
2797
|
-
&Inst::VecLoad { rd, ref mem }
|
2798
|
-
| &Inst::VecLoadRev { rd, ref mem }
|
2799
|
-
| &Inst::VecLoadByte16Rev { rd, ref mem }
|
2800
|
-
| &Inst::VecLoadByte32Rev { rd, ref mem }
|
2801
|
-
| &Inst::VecLoadByte64Rev { rd, ref mem }
|
2802
|
-
| &Inst::VecLoadElt16Rev { rd, ref mem }
|
2803
|
-
| &Inst::VecLoadElt32Rev { rd, ref mem }
|
2804
|
-
| &Inst::VecLoadElt64Rev { rd, ref mem } => {
|
2805
|
-
let mem = mem.clone();
|
2806
|
-
|
2807
|
-
let (opcode, m3) = match self {
|
2808
|
-
&Inst::VecLoad { .. } => (0xe706, 0), // VL
|
2809
|
-
&Inst::VecLoadRev { .. } => (0xe606, 4), // VLBRQ
|
2810
|
-
&Inst::VecLoadByte16Rev { .. } => (0xe606, 1), // VLBRH
|
2811
|
-
&Inst::VecLoadByte32Rev { .. } => (0xe606, 2), // VLBRF
|
2812
|
-
&Inst::VecLoadByte64Rev { .. } => (0xe606, 3), // VLBRG
|
2813
|
-
&Inst::VecLoadElt16Rev { .. } => (0xe607, 1), // VLERH
|
2814
|
-
&Inst::VecLoadElt32Rev { .. } => (0xe607, 2), // VLERF
|
2815
|
-
&Inst::VecLoadElt64Rev { .. } => (0xe607, 3), // VLERG
|
2816
|
-
_ => unreachable!(),
|
2817
|
-
};
|
2818
|
-
mem_vrx_emit(rd.to_reg(), &mem, opcode, m3, true, sink, emit_info, state);
|
2819
|
-
}
|
2820
|
-
&Inst::VecStore { rd, ref mem }
|
2821
|
-
| &Inst::VecStoreRev { rd, ref mem }
|
2822
|
-
| &Inst::VecStoreByte16Rev { rd, ref mem }
|
2823
|
-
| &Inst::VecStoreByte32Rev { rd, ref mem }
|
2824
|
-
| &Inst::VecStoreByte64Rev { rd, ref mem }
|
2825
|
-
| &Inst::VecStoreElt16Rev { rd, ref mem }
|
2826
|
-
| &Inst::VecStoreElt32Rev { rd, ref mem }
|
2827
|
-
| &Inst::VecStoreElt64Rev { rd, ref mem } => {
|
2828
|
-
let mem = mem.clone();
|
2829
|
-
|
2830
|
-
let (opcode, m3) = match self {
|
2831
|
-
&Inst::VecStore { .. } => (0xe70e, 0), // VST
|
2832
|
-
&Inst::VecStoreRev { .. } => (0xe60e, 4), // VSTBRQ
|
2833
|
-
&Inst::VecStoreByte16Rev { .. } => (0xe60e, 1), // VSTBRH
|
2834
|
-
&Inst::VecStoreByte32Rev { .. } => (0xe60e, 2), // VSTBRF
|
2835
|
-
&Inst::VecStoreByte64Rev { .. } => (0xe60e, 3), // VSTBRG
|
2836
|
-
&Inst::VecStoreElt16Rev { .. } => (0xe60f, 1), // VSTERH
|
2837
|
-
&Inst::VecStoreElt32Rev { .. } => (0xe60f, 2), // VSTERF
|
2838
|
-
&Inst::VecStoreElt64Rev { .. } => (0xe60f, 3), // VSTERG
|
2839
|
-
_ => unreachable!(),
|
2840
|
-
};
|
2841
|
-
mem_vrx_emit(rd, &mem, opcode, m3, true, sink, emit_info, state);
|
2842
|
-
}
|
2843
|
-
&Inst::VecLoadReplicate { size, rd, ref mem }
|
2844
|
-
| &Inst::VecLoadReplicateRev { size, rd, ref mem } => {
|
2845
|
-
let mem = mem.clone();
|
2846
|
-
|
2847
|
-
let (opcode, m3) = match (self, size) {
|
2848
|
-
(&Inst::VecLoadReplicate { .. }, 8) => (0xe705, 0), // VLREPB
|
2849
|
-
(&Inst::VecLoadReplicate { .. }, 16) => (0xe705, 1), // VLREPH
|
2850
|
-
(&Inst::VecLoadReplicate { .. }, 32) => (0xe705, 2), // VLREPF
|
2851
|
-
(&Inst::VecLoadReplicate { .. }, 64) => (0xe705, 3), // VLREPG
|
2852
|
-
(&Inst::VecLoadReplicateRev { .. }, 16) => (0xe605, 1), // VLREPBRH
|
2853
|
-
(&Inst::VecLoadReplicateRev { .. }, 32) => (0xe605, 2), // VLREPBRF
|
2854
|
-
(&Inst::VecLoadReplicateRev { .. }, 64) => (0xe605, 3), // VLREPBRG
|
2855
|
-
_ => unreachable!(),
|
2856
|
-
};
|
2857
|
-
mem_vrx_emit(rd.to_reg(), &mem, opcode, m3, true, sink, emit_info, state);
|
2858
|
-
}
|
2859
|
-
|
2860
|
-
&Inst::VecMov { rd, rn } => {
|
2861
|
-
let opcode = 0xe756; // VLR
|
2862
|
-
put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, 0, 0, 0));
|
2863
|
-
}
|
2864
|
-
&Inst::VecCMov { rd, cond, ri, rm } => {
|
2865
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
2866
|
-
|
2867
|
-
let opcode = 0xa74; // BCR
|
2868
|
-
put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 6));
|
2869
|
-
let opcode = 0xe756; // VLR
|
2870
|
-
put(sink, &enc_vrr_a(opcode, rd.to_reg(), rm, 0, 0, 0));
|
2871
|
-
}
|
2872
|
-
&Inst::MovToVec128 { rd, rn, rm } => {
|
2873
|
-
let opcode = 0xe762; // VLVGP
|
2874
|
-
put(sink, &enc_vrr_f(opcode, rd.to_reg(), rn, rm));
|
2875
|
-
}
|
2876
|
-
&Inst::VecLoadConst { rd, const_data } => {
|
2877
|
-
let opcode = 0xa75; // BRAS
|
2878
|
-
let reg = writable_spilltmp_reg().to_reg();
|
2879
|
-
put(sink, &enc_ri_b(opcode, reg, 20));
|
2880
|
-
for i in const_data.to_be_bytes().iter() {
|
2881
|
-
sink.put1(*i);
|
2882
|
-
}
|
2883
|
-
let inst = Inst::VecLoad {
|
2884
|
-
rd,
|
2885
|
-
mem: MemArg::reg(reg, MemFlags::trusted()),
|
2886
|
-
};
|
2887
|
-
inst.emit(sink, emit_info, state);
|
2888
|
-
}
|
2889
|
-
&Inst::VecLoadConstReplicate {
|
2890
|
-
size,
|
2891
|
-
rd,
|
2892
|
-
const_data,
|
2893
|
-
} => {
|
2894
|
-
let opcode = 0xa75; // BRAS
|
2895
|
-
let reg = writable_spilltmp_reg().to_reg();
|
2896
|
-
put(sink, &enc_ri_b(opcode, reg, (4 + size / 8) as i32));
|
2897
|
-
for i in 0..size / 8 {
|
2898
|
-
sink.put1((const_data >> (size - 8 - 8 * i)) as u8);
|
2899
|
-
}
|
2900
|
-
let inst = Inst::VecLoadReplicate {
|
2901
|
-
size,
|
2902
|
-
rd,
|
2903
|
-
mem: MemArg::reg(reg, MemFlags::trusted()),
|
2904
|
-
};
|
2905
|
-
inst.emit(sink, emit_info, state);
|
2906
|
-
}
|
2907
|
-
&Inst::VecImmByteMask { rd, mask } => {
|
2908
|
-
let opcode = 0xe744; // VGBM
|
2909
|
-
put(sink, &enc_vri_a(opcode, rd.to_reg(), mask, 0));
|
2910
|
-
}
|
2911
|
-
&Inst::VecImmBitMask {
|
2912
|
-
size,
|
2913
|
-
rd,
|
2914
|
-
start_bit,
|
2915
|
-
end_bit,
|
2916
|
-
} => {
|
2917
|
-
let (opcode, m4) = match size {
|
2918
|
-
8 => (0xe746, 0), // VGMB
|
2919
|
-
16 => (0xe746, 1), // VGMH
|
2920
|
-
32 => (0xe746, 2), // VGMF
|
2921
|
-
64 => (0xe746, 3), // VGMG
|
2922
|
-
_ => unreachable!(),
|
2923
|
-
};
|
2924
|
-
put(
|
2925
|
-
sink,
|
2926
|
-
&enc_vri_b(opcode, rd.to_reg(), start_bit, end_bit, m4),
|
2927
|
-
);
|
2928
|
-
}
|
2929
|
-
&Inst::VecImmReplicate { size, rd, imm } => {
|
2930
|
-
let (opcode, m3) = match size {
|
2931
|
-
8 => (0xe745, 0), // VREPIB
|
2932
|
-
16 => (0xe745, 1), // VREPIH
|
2933
|
-
32 => (0xe745, 2), // VREPIF
|
2934
|
-
64 => (0xe745, 3), // VREPIG
|
2935
|
-
_ => unreachable!(),
|
2936
|
-
};
|
2937
|
-
put(sink, &enc_vri_a(opcode, rd.to_reg(), imm as u16, m3));
|
2938
|
-
}
|
2939
|
-
&Inst::VecLoadLane {
|
2940
|
-
size,
|
2941
|
-
rd,
|
2942
|
-
ri,
|
2943
|
-
ref mem,
|
2944
|
-
lane_imm,
|
2945
|
-
}
|
2946
|
-
| &Inst::VecLoadLaneRev {
|
2947
|
-
size,
|
2948
|
-
rd,
|
2949
|
-
ri,
|
2950
|
-
ref mem,
|
2951
|
-
lane_imm,
|
2952
|
-
} => {
|
2953
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
2954
|
-
let mem = mem.clone();
|
2955
|
-
|
2956
|
-
let opcode_vrx = match (self, size) {
|
2957
|
-
(&Inst::VecLoadLane { .. }, 8) => 0xe700, // VLEB
|
2958
|
-
(&Inst::VecLoadLane { .. }, 16) => 0xe701, // VLEH
|
2959
|
-
(&Inst::VecLoadLane { .. }, 32) => 0xe703, // VLEF
|
2960
|
-
(&Inst::VecLoadLane { .. }, 64) => 0xe702, // VLEG
|
2961
|
-
(&Inst::VecLoadLaneRev { .. }, 16) => 0xe601, // VLEBRH
|
2962
|
-
(&Inst::VecLoadLaneRev { .. }, 32) => 0xe603, // VLEBRF
|
2963
|
-
(&Inst::VecLoadLaneRev { .. }, 64) => 0xe602, // VLEBRG
|
2964
|
-
_ => unreachable!(),
|
2965
|
-
};
|
2966
|
-
|
2967
|
-
let rd = rd.to_reg();
|
2968
|
-
mem_vrx_emit(
|
2969
|
-
rd,
|
2970
|
-
&mem,
|
2971
|
-
opcode_vrx,
|
2972
|
-
lane_imm.into(),
|
2973
|
-
true,
|
2974
|
-
sink,
|
2975
|
-
emit_info,
|
2976
|
-
state,
|
2977
|
-
);
|
2978
|
-
}
|
2979
|
-
&Inst::VecLoadLaneUndef {
|
2980
|
-
size,
|
2981
|
-
rd,
|
2982
|
-
ref mem,
|
2983
|
-
lane_imm,
|
2984
|
-
}
|
2985
|
-
| &Inst::VecLoadLaneRevUndef {
|
2986
|
-
size,
|
2987
|
-
rd,
|
2988
|
-
ref mem,
|
2989
|
-
lane_imm,
|
2990
|
-
} => {
|
2991
|
-
let mem = mem.clone();
|
2992
|
-
|
2993
|
-
let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
|
2994
|
-
(&Inst::VecLoadLaneUndef { .. }, 8) => (0xe700, None, None), // VLEB
|
2995
|
-
(&Inst::VecLoadLaneUndef { .. }, 16) => (0xe701, None, None), // VLEH
|
2996
|
-
(&Inst::VecLoadLaneUndef { .. }, 32) => (0xe703, Some(0x78), Some(0xed64)), // VLEF, LE(Y)
|
2997
|
-
(&Inst::VecLoadLaneUndef { .. }, 64) => (0xe702, Some(0x68), Some(0xed65)), // VLEG, LD(Y)
|
2998
|
-
(&Inst::VecLoadLaneRevUndef { .. }, 16) => (0xe601, None, None), // VLEBRH
|
2999
|
-
(&Inst::VecLoadLaneRevUndef { .. }, 32) => (0xe603, None, None), // VLEBRF
|
3000
|
-
(&Inst::VecLoadLaneRevUndef { .. }, 64) => (0xe602, None, None), // VLEBRG
|
3001
|
-
_ => unreachable!(),
|
3002
|
-
};
|
3003
|
-
|
3004
|
-
let rd = rd.to_reg();
|
3005
|
-
if lane_imm == 0 && is_fpr(rd) && opcode_rx.is_some() {
|
3006
|
-
mem_emit(
|
3007
|
-
rd, &mem, opcode_rx, opcode_rxy, None, true, sink, emit_info, state,
|
3008
|
-
);
|
3009
|
-
} else {
|
3010
|
-
mem_vrx_emit(
|
3011
|
-
rd,
|
3012
|
-
&mem,
|
3013
|
-
opcode_vrx,
|
3014
|
-
lane_imm.into(),
|
3015
|
-
true,
|
3016
|
-
sink,
|
3017
|
-
emit_info,
|
3018
|
-
state,
|
3019
|
-
);
|
3020
|
-
}
|
3021
|
-
}
|
3022
|
-
&Inst::VecStoreLane {
|
3023
|
-
size,
|
3024
|
-
rd,
|
3025
|
-
ref mem,
|
3026
|
-
lane_imm,
|
3027
|
-
}
|
3028
|
-
| &Inst::VecStoreLaneRev {
|
3029
|
-
size,
|
3030
|
-
rd,
|
3031
|
-
ref mem,
|
3032
|
-
lane_imm,
|
3033
|
-
} => {
|
3034
|
-
let mem = mem.clone();
|
3035
|
-
|
3036
|
-
let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
|
3037
|
-
(&Inst::VecStoreLane { .. }, 8) => (0xe708, None, None), // VSTEB
|
3038
|
-
(&Inst::VecStoreLane { .. }, 16) => (0xe709, None, None), // VSTEH
|
3039
|
-
(&Inst::VecStoreLane { .. }, 32) => (0xe70b, Some(0x70), Some(0xed66)), // VSTEF, STE(Y)
|
3040
|
-
(&Inst::VecStoreLane { .. }, 64) => (0xe70a, Some(0x60), Some(0xed67)), // VSTEG, STD(Y)
|
3041
|
-
(&Inst::VecStoreLaneRev { .. }, 16) => (0xe609, None, None), // VSTEBRH
|
3042
|
-
(&Inst::VecStoreLaneRev { .. }, 32) => (0xe60b, None, None), // VSTEBRF
|
3043
|
-
(&Inst::VecStoreLaneRev { .. }, 64) => (0xe60a, None, None), // VSTEBRG
|
3044
|
-
_ => unreachable!(),
|
3045
|
-
};
|
3046
|
-
|
3047
|
-
if lane_imm == 0 && is_fpr(rd) && opcode_rx.is_some() {
|
3048
|
-
mem_emit(
|
3049
|
-
rd, &mem, opcode_rx, opcode_rxy, None, true, sink, emit_info, state,
|
3050
|
-
);
|
3051
|
-
} else {
|
3052
|
-
mem_vrx_emit(
|
3053
|
-
rd,
|
3054
|
-
&mem,
|
3055
|
-
opcode_vrx,
|
3056
|
-
lane_imm.into(),
|
3057
|
-
true,
|
3058
|
-
sink,
|
3059
|
-
emit_info,
|
3060
|
-
state,
|
3061
|
-
);
|
3062
|
-
}
|
3063
|
-
}
|
3064
|
-
&Inst::VecInsertLane {
|
3065
|
-
size,
|
3066
|
-
rd,
|
3067
|
-
ri,
|
3068
|
-
rn,
|
3069
|
-
lane_imm,
|
3070
|
-
lane_reg,
|
3071
|
-
} => {
|
3072
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
3073
|
-
|
3074
|
-
let (opcode_vrs, m4) = match size {
|
3075
|
-
8 => (0xe722, 0), // VLVGB
|
3076
|
-
16 => (0xe722, 1), // VLVGH
|
3077
|
-
32 => (0xe722, 2), // VLVGF
|
3078
|
-
64 => (0xe722, 3), // VLVGG
|
3079
|
-
_ => unreachable!(),
|
3080
|
-
};
|
3081
|
-
put(
|
3082
|
-
sink,
|
3083
|
-
&enc_vrs_b(opcode_vrs, rd.to_reg(), lane_reg, lane_imm.into(), rn, m4),
|
3084
|
-
);
|
3085
|
-
}
|
3086
|
-
&Inst::VecInsertLaneUndef {
|
3087
|
-
size,
|
3088
|
-
rd,
|
3089
|
-
rn,
|
3090
|
-
lane_imm,
|
3091
|
-
lane_reg,
|
3092
|
-
} => {
|
3093
|
-
let (opcode_vrs, m4, opcode_rre) = match size {
|
3094
|
-
8 => (0xe722, 0, None), // VLVGB
|
3095
|
-
16 => (0xe722, 1, None), // VLVGH
|
3096
|
-
32 => (0xe722, 2, None), // VLVGF
|
3097
|
-
64 => (0xe722, 3, Some(0xb3c1)), // VLVGG, LDGR
|
3098
|
-
_ => unreachable!(),
|
3099
|
-
};
|
3100
|
-
if opcode_rre.is_some()
|
3101
|
-
&& lane_imm == 0
|
3102
|
-
&& lane_reg == zero_reg()
|
3103
|
-
&& is_fpr(rd.to_reg())
|
3104
|
-
{
|
3105
|
-
put(sink, &enc_rre(opcode_rre.unwrap(), rd.to_reg(), rn));
|
3106
|
-
} else {
|
3107
|
-
put(
|
3108
|
-
sink,
|
3109
|
-
&enc_vrs_b(opcode_vrs, rd.to_reg(), lane_reg, lane_imm.into(), rn, m4),
|
3110
|
-
);
|
3111
|
-
}
|
3112
|
-
}
|
3113
|
-
&Inst::VecExtractLane {
|
3114
|
-
size,
|
3115
|
-
rd,
|
3116
|
-
rn,
|
3117
|
-
lane_imm,
|
3118
|
-
lane_reg,
|
3119
|
-
} => {
|
3120
|
-
let (opcode_vrs, m4, opcode_rre) = match size {
|
3121
|
-
8 => (0xe721, 0, None), // VLGVB
|
3122
|
-
16 => (0xe721, 1, None), // VLGVH
|
3123
|
-
32 => (0xe721, 2, None), // VLGVF
|
3124
|
-
64 => (0xe721, 3, Some(0xb3cd)), // VLGVG, LGDR
|
3125
|
-
_ => unreachable!(),
|
3126
|
-
};
|
3127
|
-
if opcode_rre.is_some() && lane_imm == 0 && lane_reg == zero_reg() && is_fpr(rn) {
|
3128
|
-
put(sink, &enc_rre(opcode_rre.unwrap(), rd.to_reg(), rn));
|
3129
|
-
} else {
|
3130
|
-
put(
|
3131
|
-
sink,
|
3132
|
-
&enc_vrs_c(opcode_vrs, rd.to_reg(), lane_reg, lane_imm.into(), rn, m4),
|
3133
|
-
);
|
3134
|
-
}
|
3135
|
-
}
|
3136
|
-
&Inst::VecInsertLaneImm {
|
3137
|
-
size,
|
3138
|
-
rd,
|
3139
|
-
ri,
|
3140
|
-
imm,
|
3141
|
-
lane_imm,
|
3142
|
-
} => {
|
3143
|
-
debug_assert_eq!(rd.to_reg(), ri);
|
3144
|
-
|
3145
|
-
let opcode = match size {
|
3146
|
-
8 => 0xe740, // VLEIB
|
3147
|
-
16 => 0xe741, // LEIVH
|
3148
|
-
32 => 0xe743, // VLEIF
|
3149
|
-
64 => 0xe742, // VLEIG
|
3150
|
-
_ => unreachable!(),
|
3151
|
-
};
|
3152
|
-
put(
|
3153
|
-
sink,
|
3154
|
-
&enc_vri_a(opcode, rd.to_reg(), imm as u16, lane_imm.into()),
|
3155
|
-
);
|
3156
|
-
}
|
3157
|
-
&Inst::VecReplicateLane {
|
3158
|
-
size,
|
3159
|
-
rd,
|
3160
|
-
rn,
|
3161
|
-
lane_imm,
|
3162
|
-
} => {
|
3163
|
-
let (opcode, m4) = match size {
|
3164
|
-
8 => (0xe74d, 0), // VREPB
|
3165
|
-
16 => (0xe74d, 1), // VREPH
|
3166
|
-
32 => (0xe74d, 2), // VREPF
|
3167
|
-
64 => (0xe74d, 3), // VREPG
|
3168
|
-
_ => unreachable!(),
|
3169
|
-
};
|
3170
|
-
put(
|
3171
|
-
sink,
|
3172
|
-
&enc_vri_c(opcode, rd.to_reg(), lane_imm.into(), rn, m4),
|
3173
|
-
);
|
3174
|
-
}
|
3175
|
-
|
3176
|
-
&Inst::AllocateArgs { size } => {
|
3177
|
-
let inst = if let Ok(size) = i16::try_from(size) {
|
3178
|
-
Inst::AluRSImm16 {
|
3179
|
-
alu_op: ALUOp::Add64,
|
3180
|
-
rd: writable_stack_reg(),
|
3181
|
-
ri: stack_reg(),
|
3182
|
-
imm: -size,
|
3183
|
-
}
|
3184
|
-
} else {
|
3185
|
-
Inst::AluRUImm32 {
|
3186
|
-
alu_op: ALUOp::SubLogical64,
|
3187
|
-
rd: writable_stack_reg(),
|
3188
|
-
ri: stack_reg(),
|
3189
|
-
imm: size,
|
3190
|
-
}
|
3191
|
-
};
|
3192
|
-
inst.emit(sink, emit_info, state);
|
3193
|
-
state.nominal_sp_offset += size;
|
3194
|
-
}
|
3195
|
-
&Inst::Call { link, ref info } => {
|
3196
|
-
let opcode = 0xc05; // BRASL
|
3197
|
-
|
3198
|
-
// Add relocation for target function. This has to be done *before*
|
3199
|
-
// the S390xTlsGdCall relocation if any, to ensure linker relaxation
|
3200
|
-
// works correctly.
|
3201
|
-
sink.add_reloc_at_offset(2, Reloc::S390xPLTRel32Dbl, &info.dest, 2);
|
3202
|
-
|
3203
|
-
if let Some(s) = state.take_stack_map() {
|
3204
|
-
let offset = sink.cur_offset() + 6;
|
3205
|
-
sink.push_user_stack_map(state, offset, s);
|
3206
|
-
}
|
3207
|
-
|
3208
|
-
put(sink, &enc_ril_b(opcode, link.to_reg(), 0));
|
3209
|
-
sink.add_call_site();
|
3210
|
-
|
3211
|
-
state.nominal_sp_offset -= info.callee_pop_size;
|
3212
|
-
}
|
3213
|
-
&Inst::CallInd { link, ref info } => {
|
3214
|
-
if let Some(s) = state.take_stack_map() {
|
3215
|
-
let offset = sink.cur_offset() + 2;
|
3216
|
-
sink.push_user_stack_map(state, offset, s);
|
3217
|
-
}
|
3218
|
-
|
3219
|
-
let opcode = 0x0d; // BASR
|
3220
|
-
put(sink, &enc_rr(opcode, link.to_reg(), info.dest));
|
3221
|
-
sink.add_call_site();
|
3222
|
-
|
3223
|
-
state.nominal_sp_offset -= info.callee_pop_size;
|
3224
|
-
}
|
3225
|
-
&Inst::ReturnCall { ref info } => {
|
3226
|
-
for inst in S390xMachineDeps::gen_tail_epilogue(
|
3227
|
-
state.frame_layout(),
|
3228
|
-
info.callee_pop_size,
|
3229
|
-
None,
|
3230
|
-
) {
|
3231
|
-
inst.emit(sink, emit_info, state);
|
3232
|
-
}
|
3233
|
-
|
3234
|
-
let opcode = 0xc04; // BCRL
|
3235
|
-
sink.add_reloc_at_offset(2, Reloc::S390xPLTRel32Dbl, &info.dest, 2);
|
3236
|
-
put(sink, &enc_ril_c(opcode, 15, 0));
|
3237
|
-
sink.add_call_site();
|
3238
|
-
}
|
3239
|
-
&Inst::ReturnCallInd { ref info } => {
|
3240
|
-
let mut rn = info.dest;
|
3241
|
-
for inst in S390xMachineDeps::gen_tail_epilogue(
|
3242
|
-
state.frame_layout(),
|
3243
|
-
info.callee_pop_size,
|
3244
|
-
Some(&mut rn),
|
3245
|
-
) {
|
3246
|
-
inst.emit(sink, emit_info, state);
|
3247
|
-
}
|
3248
|
-
|
3249
|
-
let opcode = 0x07; // BCR
|
3250
|
-
put(sink, &enc_rr(opcode, gpr(15), rn));
|
3251
|
-
sink.add_call_site();
|
3252
|
-
}
|
3253
|
-
&Inst::ElfTlsGetOffset { ref symbol, .. } => {
|
3254
|
-
let opcode = 0xc05; // BRASL
|
3255
|
-
|
3256
|
-
// Add relocation for target function. This has to be done
|
3257
|
-
// *before* the S390xTlsGdCall, to ensure linker relaxation
|
3258
|
-
// works correctly.
|
3259
|
-
let dest = ExternalName::LibCall(LibCall::ElfTlsGetOffset);
|
3260
|
-
sink.add_reloc_at_offset(2, Reloc::S390xPLTRel32Dbl, &dest, 2);
|
3261
|
-
match &**symbol {
|
3262
|
-
SymbolReloc::TlsGd { name } => sink.add_reloc(Reloc::S390xTlsGdCall, name, 0),
|
3263
|
-
_ => unreachable!(),
|
3264
|
-
}
|
3265
|
-
|
3266
|
-
put(sink, &enc_ril_b(opcode, gpr(14), 0));
|
3267
|
-
sink.add_call_site();
|
3268
|
-
}
|
3269
|
-
&Inst::Args { .. } => {}
|
3270
|
-
&Inst::Rets { .. } => {}
|
3271
|
-
&Inst::Ret { link } => {
|
3272
|
-
let opcode = 0x07; // BCR
|
3273
|
-
put(sink, &enc_rr(opcode, gpr(15), link));
|
3274
|
-
}
|
3275
|
-
&Inst::Jump { dest } => {
|
3276
|
-
let off = sink.cur_offset();
|
3277
|
-
// Indicate that the jump uses a label, if so, so that a fixup can occur later.
|
3278
|
-
sink.use_label_at_offset(off, dest, LabelUse::BranchRIL);
|
3279
|
-
sink.add_uncond_branch(off, off + 6, dest);
|
3280
|
-
// Emit the jump itself.
|
3281
|
-
let opcode = 0xc04; // BCRL
|
3282
|
-
put(sink, &enc_ril_c(opcode, 15, 0));
|
3283
|
-
}
|
3284
|
-
&Inst::IndirectBr { rn, .. } => {
|
3285
|
-
let opcode = 0x07; // BCR
|
3286
|
-
put(sink, &enc_rr(opcode, gpr(15), rn));
|
3287
|
-
}
|
3288
|
-
&Inst::CondBr {
|
3289
|
-
taken,
|
3290
|
-
not_taken,
|
3291
|
-
cond,
|
3292
|
-
} => {
|
3293
|
-
let opcode = 0xc04; // BCRL
|
3294
|
-
|
3295
|
-
// Conditional part first.
|
3296
|
-
let cond_off = sink.cur_offset();
|
3297
|
-
sink.use_label_at_offset(cond_off, taken, LabelUse::BranchRIL);
|
3298
|
-
let inverted = &enc_ril_c(opcode, cond.invert().bits(), 0);
|
3299
|
-
sink.add_cond_branch(cond_off, cond_off + 6, taken, inverted);
|
3300
|
-
put(sink, &enc_ril_c(opcode, cond.bits(), 0));
|
3301
|
-
|
3302
|
-
// Unconditional part next.
|
3303
|
-
let uncond_off = sink.cur_offset();
|
3304
|
-
sink.use_label_at_offset(uncond_off, not_taken, LabelUse::BranchRIL);
|
3305
|
-
sink.add_uncond_branch(uncond_off, uncond_off + 6, not_taken);
|
3306
|
-
put(sink, &enc_ril_c(opcode, 15, 0));
|
3307
|
-
}
|
3308
|
-
&Inst::OneWayCondBr { target, cond } => {
|
3309
|
-
let opcode = 0xc04; // BCRL
|
3310
|
-
sink.use_label_at_offset(sink.cur_offset(), target, LabelUse::BranchRIL);
|
3311
|
-
put(sink, &enc_ril_c(opcode, cond.bits(), 0));
|
3312
|
-
}
|
3313
|
-
&Inst::Nop0 => {}
|
3314
|
-
&Inst::Nop2 => {
|
3315
|
-
put(sink, &enc_e(0x0707));
|
3316
|
-
}
|
3317
|
-
&Inst::Debugtrap => {
|
3318
|
-
put(sink, &enc_e(0x0001));
|
3319
|
-
}
|
3320
|
-
&Inst::Trap { trap_code } => {
|
3321
|
-
put_with_trap(sink, &enc_e(0x0000), trap_code);
|
3322
|
-
}
|
3323
|
-
&Inst::TrapIf { cond, trap_code } => {
|
3324
|
-
// We implement a TrapIf as a conditional branch into the middle
|
3325
|
-
// of the branch (BRCL) instruction itself - those middle two bytes
|
3326
|
-
// are zero, which matches the trap instruction itself.
|
3327
|
-
let opcode = 0xc04; // BCRL
|
3328
|
-
let enc = &enc_ril_c(opcode, cond.bits(), 2);
|
3329
|
-
debug_assert!(enc.len() == 6 && enc[2] == 0 && enc[3] == 0);
|
3330
|
-
// The trap must be placed on the last byte of the embedded trap
|
3331
|
-
// instruction, so we need to emit the encoding in two parts.
|
3332
|
-
put_with_trap(sink, &enc[0..4], trap_code);
|
3333
|
-
put(sink, &enc[4..6]);
|
3334
|
-
}
|
3335
|
-
&Inst::JTSequence { ridx, ref targets } => {
|
3336
|
-
let table_label = sink.get_label();
|
3337
|
-
|
3338
|
-
// This sequence is *one* instruction in the vcode, and is expanded only here at
|
3339
|
-
// emission time, because we cannot allow the regalloc to insert spills/reloads in
|
3340
|
-
// the middle; we depend on hardcoded PC-rel addressing below.
|
3341
|
-
|
3342
|
-
// Set temp register to address of jump table.
|
3343
|
-
let rtmp = writable_spilltmp_reg();
|
3344
|
-
let inst = Inst::LoadAddr {
|
3345
|
-
rd: rtmp,
|
3346
|
-
mem: MemArg::Label {
|
3347
|
-
target: table_label,
|
3348
|
-
},
|
3349
|
-
};
|
3350
|
-
inst.emit(sink, emit_info, state);
|
3351
|
-
|
3352
|
-
// Set temp to target address by adding the value of the jump table entry.
|
3353
|
-
let inst = Inst::AluRX {
|
3354
|
-
alu_op: ALUOp::Add64Ext32,
|
3355
|
-
rd: rtmp,
|
3356
|
-
ri: rtmp.to_reg(),
|
3357
|
-
mem: MemArg::reg_plus_reg(rtmp.to_reg(), ridx, MemFlags::trusted()),
|
3358
|
-
};
|
3359
|
-
inst.emit(sink, emit_info, state);
|
3360
|
-
|
3361
|
-
// Branch to computed address. (`targets` here is only used for successor queries
|
3362
|
-
// and is not needed for emission.)
|
3363
|
-
let inst = Inst::IndirectBr {
|
3364
|
-
rn: rtmp.to_reg(),
|
3365
|
-
targets: vec![],
|
3366
|
-
};
|
3367
|
-
inst.emit(sink, emit_info, state);
|
3368
|
-
|
3369
|
-
// Emit jump table (table of 32-bit offsets).
|
3370
|
-
sink.bind_label(table_label, &mut state.ctrl_plane);
|
3371
|
-
let jt_off = sink.cur_offset();
|
3372
|
-
for &target in targets.iter() {
|
3373
|
-
let word_off = sink.cur_offset();
|
3374
|
-
let off_into_table = word_off - jt_off;
|
3375
|
-
sink.use_label_at_offset(word_off, target, LabelUse::PCRel32);
|
3376
|
-
sink.put4(off_into_table.swap_bytes());
|
3377
|
-
}
|
3378
|
-
|
3379
|
-
// Lowering produces an EmitIsland before using a JTSequence, so we can safely
|
3380
|
-
// disable the worst-case-size check in this case.
|
3381
|
-
start_off = sink.cur_offset();
|
3382
|
-
}
|
3383
|
-
|
3384
|
-
Inst::StackProbeLoop {
|
3385
|
-
probe_count,
|
3386
|
-
guard_size,
|
3387
|
-
} => {
|
3388
|
-
// Emit the loop start label
|
3389
|
-
let loop_start = sink.get_label();
|
3390
|
-
sink.bind_label(loop_start, state.ctrl_plane_mut());
|
3391
|
-
|
3392
|
-
// aghi %r15, -GUARD_SIZE
|
3393
|
-
let inst = Inst::AluRSImm16 {
|
3394
|
-
alu_op: ALUOp::Add64,
|
3395
|
-
rd: writable_stack_reg(),
|
3396
|
-
ri: stack_reg(),
|
3397
|
-
imm: -guard_size,
|
3398
|
-
};
|
3399
|
-
inst.emit(sink, emit_info, state);
|
3400
|
-
|
3401
|
-
// mvi 0(%r15), 0
|
3402
|
-
let inst = Inst::StoreImm8 {
|
3403
|
-
imm: 0,
|
3404
|
-
mem: MemArg::reg(stack_reg(), MemFlags::trusted()),
|
3405
|
-
};
|
3406
|
-
inst.emit(sink, emit_info, state);
|
3407
|
-
|
3408
|
-
// brct PROBE_COUNT, LOOP_START
|
3409
|
-
let opcode = 0xa76; // BRCT
|
3410
|
-
sink.use_label_at_offset(sink.cur_offset(), loop_start, LabelUse::BranchRI);
|
3411
|
-
put(sink, &enc_ri_b(opcode, probe_count.to_reg(), 0));
|
3412
|
-
}
|
3413
|
-
|
3414
|
-
&Inst::Unwind { ref inst } => {
|
3415
|
-
sink.add_unwind(inst.clone());
|
3416
|
-
}
|
3417
|
-
|
3418
|
-
&Inst::DummyUse { .. } => {}
|
3419
|
-
}
|
3420
|
-
|
3421
|
-
let end_off = sink.cur_offset();
|
3422
|
-
debug_assert!((end_off - start_off) <= Inst::worst_case_size());
|
3423
|
-
|
3424
|
-
state.clear_post_insn();
|
3425
|
-
}
|
3426
|
-
}
|