wasmtime 22.0.0 → 23.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +127 -90
- data/ext/Cargo.toml +5 -5
- data/ext/cargo-vendor/cranelift-bforest-0.110.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.110.2/Cargo.toml +50 -0
- data/ext/cargo-vendor/cranelift-bitset-0.110.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bitset-0.110.2/Cargo.toml +60 -0
- data/ext/cargo-vendor/cranelift-bitset-0.110.2/src/compound.rs +508 -0
- data/ext/cargo-vendor/cranelift-bitset-0.110.2/src/lib.rs +19 -0
- data/ext/cargo-vendor/cranelift-bitset-0.110.2/src/scalar.rs +575 -0
- data/ext/cargo-vendor/cranelift-bitset-0.110.2/tests/bitset.rs +78 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/Cargo.toml +206 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/binemit/stack_map.rs +141 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/context.rs +390 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/data_value.rs +410 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/dfg.rs +1806 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/globalvalue.rs +147 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/immediates.rs +2109 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/instructions.rs +1015 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/jumptable.rs +168 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/mod.rs +110 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/trapcode.rs +148 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/types.rs +643 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/user_stack_maps.rs +101 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/emit.rs +3605 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/emit_tests.rs +7927 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/mod.rs +3058 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst.isle +4221 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/lower.isle +2969 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/mod.rs +259 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/mod.rs +462 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/emit.rs +2741 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/emit_tests.rs +2219 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/mod.rs +1935 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst.isle +3153 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/lower/isle.rs +654 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/lower.isle +2953 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/mod.rs +265 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/inst/emit.rs +3421 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/inst/mod.rs +3395 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/lower.isle +3983 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/mod.rs +220 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/emit.rs +4297 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/emit_state.rs +65 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/mod.rs +2818 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst.isle +5299 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/lower.isle +4819 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/mod.rs +239 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isle_prelude.rs +965 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/legalizer/mod.rs +343 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/lib.rs +106 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/abi.rs +2427 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/buffer.rs +2544 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/helpers.rs +23 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/isle.rs +908 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/lower.rs +1462 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/mod.rs +564 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/vcode.rs +1840 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/prelude.isle +654 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/prelude_lower.isle +1070 -0
- data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/write.rs +660 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/Cargo.toml +45 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/cdsl/types.rs +512 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/cdsl/typevar.rs +980 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/gen_inst.rs +1278 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/shared/instructions.rs +3760 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/shared/types.rs +143 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.110.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.110.2/Cargo.toml +31 -0
- data/ext/cargo-vendor/cranelift-control-0.110.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.110.2/Cargo.toml +39 -0
- data/ext/cargo-vendor/cranelift-entity-0.110.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.110.2/Cargo.toml +66 -0
- data/ext/cargo-vendor/cranelift-entity-0.110.2/src/set.rs +193 -0
- data/ext/cargo-vendor/cranelift-frontend-0.110.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.110.2/Cargo.toml +87 -0
- data/ext/cargo-vendor/cranelift-frontend-0.110.2/src/frontend.rs +2867 -0
- data/ext/cargo-vendor/cranelift-isle-0.110.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.110.2/Cargo.toml +60 -0
- data/ext/cargo-vendor/cranelift-isle-0.110.2/src/codegen.rs +920 -0
- data/ext/cargo-vendor/cranelift-isle-0.110.2/src/parser.rs +562 -0
- data/ext/cargo-vendor/cranelift-isle-0.110.2/src/sema.rs +2503 -0
- data/ext/cargo-vendor/cranelift-isle-0.110.2/src/trie_again.rs +695 -0
- data/ext/cargo-vendor/cranelift-native-0.110.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.110.2/Cargo.toml +52 -0
- data/ext/cargo-vendor/cranelift-native-0.110.2/src/lib.rs +188 -0
- data/ext/cargo-vendor/cranelift-wasm-0.110.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-wasm-0.110.2/Cargo.toml +119 -0
- data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/code_translator/bounds_checks.rs +731 -0
- data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/code_translator.rs +3694 -0
- data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/heap.rs +119 -0
- data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/sections_translator.rs +333 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.23/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.23/Cargo.toml +69 -0
- data/ext/cargo-vendor/termcolor-1.4.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/termcolor-1.4.1/COPYING +3 -0
- data/ext/cargo-vendor/termcolor-1.4.1/Cargo.toml +40 -0
- data/ext/cargo-vendor/termcolor-1.4.1/LICENSE-MIT +21 -0
- data/ext/cargo-vendor/termcolor-1.4.1/README.md +110 -0
- data/ext/cargo-vendor/termcolor-1.4.1/UNLICENSE +24 -0
- data/ext/cargo-vendor/termcolor-1.4.1/rustfmt.toml +2 -0
- data/ext/cargo-vendor/termcolor-1.4.1/src/lib.rs +2572 -0
- data/ext/cargo-vendor/wasi-common-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-23.0.2/Cargo.toml +234 -0
- data/ext/cargo-vendor/wasi-common-23.0.2/src/tokio/mod.rs +135 -0
- data/ext/cargo-vendor/wasi-common-23.0.2/tests/all/async_.rs +295 -0
- data/ext/cargo-vendor/wasi-common-23.0.2/tests/all/sync.rs +284 -0
- data/ext/cargo-vendor/wasm-encoder-0.212.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.212.0/Cargo.toml +49 -0
- data/ext/cargo-vendor/wasm-encoder-0.212.0/src/component/types.rs +771 -0
- data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/code.rs +3571 -0
- data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/exports.rs +85 -0
- data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/globals.rs +100 -0
- data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/imports.rs +143 -0
- data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/memories.rs +115 -0
- data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/tables.rs +121 -0
- data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/tags.rs +85 -0
- data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/types.rs +663 -0
- data/ext/cargo-vendor/wasm-encoder-0.212.0/src/lib.rs +218 -0
- data/ext/cargo-vendor/wasm-encoder-0.212.0/src/reencode.rs +1804 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/Cargo.toml +65 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/README.md +80 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/aliases.rs +160 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/builder.rs +455 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/canonicals.rs +159 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/components.rs +29 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/exports.rs +124 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/imports.rs +175 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/instances.rs +200 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/modules.rs +29 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/names.rs +149 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/start.rs +52 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/types.rs +802 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component.rs +168 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/code.rs +3947 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/custom.rs +73 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/data.rs +186 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/dump.rs +627 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/elements.rs +222 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/exports.rs +85 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/functions.rs +63 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/globals.rs +100 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/imports.rs +143 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/linking.rs +263 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/memories.rs +115 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/names.rs +298 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/producers.rs +181 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/start.rs +39 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/tables.rs +129 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/tags.rs +85 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/types.rs +678 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core.rs +168 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/lib.rs +218 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/raw.rs +30 -0
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/reencode.rs +2002 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/Cargo.lock +669 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/Cargo.toml +112 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/src/binary_reader.rs +1968 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/src/features.rs +166 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/src/lib.rs +814 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/src/parser.rs +1682 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/operators.rs +453 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/tables.rs +93 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/types.rs +1941 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/src/resources.rs +234 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/component.rs +3252 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/core.rs +1454 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/operators.rs +4230 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/types.rs +4598 -0
- data/ext/cargo-vendor/wasmparser-0.212.0/src/validator.rs +1632 -0
- data/ext/cargo-vendor/wasmprinter-0.212.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmprinter-0.212.0/Cargo.toml +54 -0
- data/ext/cargo-vendor/wasmprinter-0.212.0/src/lib.rs +3221 -0
- data/ext/cargo-vendor/wasmprinter-0.212.0/src/operator.rs +1189 -0
- data/ext/cargo-vendor/wasmprinter-0.212.0/src/print.rs +190 -0
- data/ext/cargo-vendor/wasmprinter-0.212.0/tests/all.rs +48 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/Cargo.toml +399 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/build.rs +38 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/compile/code_builder.rs +274 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/compile/runtime.rs +167 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/compile.rs +881 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/config.rs +2902 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/engine/serialization.rs +893 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/engine.rs +719 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/lib.rs +406 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent/jitdump.rs +65 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent/perfmap.rs +47 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent/vtune.rs +80 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent.rs +104 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/code_memory.rs +337 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/bindgen_examples/mod.rs +488 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/component.rs +811 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func/host.rs +439 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func/options.rs +552 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func/typed.rs +2497 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func.rs +688 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/instance.rs +846 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/linker.rs +673 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/matching.rs +216 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/mod.rs +663 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/resources.rs +1132 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/values.rs +979 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/coredump.rs +339 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/debug.rs +165 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/externals/global.rs +310 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/externals/table.rs +480 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/func/typed.rs +788 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/func.rs +2593 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc/disabled/rooting.rs +224 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc/enabled/externref.rs +591 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc/enabled/rooting.rs +1590 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/instance.rs +989 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/instantiate.rs +332 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/limits.rs +398 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/linker.rs +1498 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/memory.rs +1101 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/module/registry.rs +353 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/module.rs +1179 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/profiling.rs +280 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/stack.rs +72 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/store/data.rs +301 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/store.rs +2873 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline/func.rs +93 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline/memory.rs +295 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline/table.rs +28 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline.rs +75 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trap.rs +642 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/types/matching.rs +428 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/types.rs +2771 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/values.rs +966 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/arch/riscv64.rs +41 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/component/libcalls.rs +571 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/component/resources.rs +351 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/component.rs +857 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/const_expr.rs +102 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/cow.rs +988 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/disabled.rs +23 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/enabled/drc.rs +964 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/enabled/free_list.rs +770 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/gc_ref.rs +490 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/gc_runtime.rs +505 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc.rs +244 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/on_demand.rs +219 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +199 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +93 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +78 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +703 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +990 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/table_pool.rs +245 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +279 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling.rs +793 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator.rs +808 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance.rs +1518 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/libcalls.rs +832 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/memory.rs +815 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mmap.rs +217 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mmap_vec.rs +159 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/module_id.rs +19 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/disabled.rs +43 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/enabled.rs +213 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/mod.rs +59 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/sys.rs +113 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/mmap.rs +112 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/mod.rs +34 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/unwind.rs +17 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/vm.rs +105 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/miri/mmap.rs +98 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/miri/unwind.rs +17 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/unix/mmap.rs +159 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/unix/signals.rs +407 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/unix/unwind.rs +149 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/windows/mmap.rs +220 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/windows/unwind.rs +46 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/table.rs +898 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/threads/shared_memory.rs +235 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/threads/shared_memory_disabled.rs +104 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/traphandlers.rs +767 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/vmcontext/vm_host_func_context.rs +79 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/vmcontext.rs +1246 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm.rs +403 -0
- data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime.rs +113 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-23.0.2/Cargo.toml +32 -0
- data/ext/cargo-vendor/wasmtime-cache-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-23.0.2/Cargo.toml +103 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/Cargo.toml +106 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/src/bindgen.rs +500 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/codegen.rs +698 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/char.rs +268 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/char_async.rs +291 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/conventions.rs +706 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/conventions_async.rs +757 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/dead-code.rs +194 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/dead-code_async.rs +213 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/direct-import.rs +120 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/direct-import_async.rs +132 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/empty.rs +74 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/empty_async.rs +80 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/flags.rs +743 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/flags_async.rs +791 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/floats.rs +343 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/floats_async.rs +376 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/function-new.rs +94 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/function-new_async.rs +103 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/integers.rs +873 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/integers_async.rs +976 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/lists.rs +1924 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/lists_async.rs +2114 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/many-arguments.rs +614 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/many-arguments_async.rs +638 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multi-return.rs +357 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multi-return_async.rs +391 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multiversion.rs +354 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multiversion_async.rs +379 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/records.rs +940 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/records_async.rs +1008 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/rename.rs +183 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/rename_async.rs +202 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-export.rs +657 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-export_async.rs +712 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-import.rs +1088 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-import_async.rs +1166 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/share-types.rs +315 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/share-types_async.rs +337 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-functions.rs +399 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-functions_async.rs +439 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-lists.rs +427 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-lists_async.rs +464 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-wasi.rs +245 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-wasi_async.rs +264 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/small-anonymous.rs +338 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/small-anonymous_async.rs +356 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-default.rs +94 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-default_async.rs +103 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-export.rs +149 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-export_async.rs +158 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke.rs +133 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke_async.rs +146 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/strings.rs +316 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/strings_async.rs +344 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/unversioned-foo.rs +165 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/unversioned-foo_async.rs +178 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/use-paths.rs +317 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/use-paths_async.rs +349 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/variants.rs +1896 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/variants_async.rs +2019 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/wat.rs +145 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/wat_async.rs +151 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/worlds-with-types.rs +175 -0
- data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/worlds-with-types_async.rs +191 -0
- data/ext/cargo-vendor/wasmtime-component-util-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-23.0.2/Cargo.toml +35 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/Cargo.toml +125 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/compiler.rs +1029 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/gc.rs +257 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/address_transform.rs +841 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/attr.rs +328 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/expression.rs +1264 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/line_program.rs +287 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/mod.rs +273 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/range_info_builder.rs +234 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/simulate.rs +423 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/unit.rs +520 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/utils.rs +165 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/write_debuginfo.rs +176 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug.rs +178 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/func_environ.rs +2721 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/gc/enabled.rs +648 -0
- data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/lib.rs +458 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/Cargo.lock +792 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/Cargo.toml +185 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/compile/mod.rs +379 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/compile/module_environ.rs +1264 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/dfg.rs +718 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/info.rs +683 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/names.rs +275 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/translate/inline.rs +1333 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/translate.rs +993 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/types.rs +1041 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/types_builder.rs +976 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component.rs +109 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/lib.rs +64 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/module.rs +702 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/stack_map.rs +31 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/tunables.rs +165 -0
- data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/vmoffsets.rs +897 -0
- data/ext/cargo-vendor/wasmtime-fiber-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-23.0.2/Cargo.toml +75 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-23.0.2/Cargo.toml +77 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-23.0.2/Cargo.toml +62 -0
- data/ext/cargo-vendor/wasmtime-slab-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-slab-23.0.2/Cargo.toml +31 -0
- data/ext/cargo-vendor/wasmtime-types-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-types-23.0.2/Cargo.toml +71 -0
- data/ext/cargo-vendor/wasmtime-types-23.0.2/src/lib.rs +1760 -0
- data/ext/cargo-vendor/wasmtime-types-23.0.2/src/prelude.rs +86 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-23.0.2/Cargo.toml +40 -0
- data/ext/cargo-vendor/wasmtime-wasi-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-23.0.2/Cargo.toml +215 -0
- data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/bindings.rs +561 -0
- data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/filesystem.rs +448 -0
- data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/filesystem.rs +1091 -0
- data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/io.rs +391 -0
- data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/lib.rs +419 -0
- data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/preview1.rs +2801 -0
- data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/stdio.rs +596 -0
- data/ext/cargo-vendor/wasmtime-wasi-23.0.2/tests/all/api.rs +197 -0
- data/ext/cargo-vendor/wasmtime-wasi-23.0.2/tests/all/async_.rs +397 -0
- data/ext/cargo-vendor/wasmtime-wasi-23.0.2/tests/all/sync.rs +331 -0
- data/ext/cargo-vendor/wasmtime-winch-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-23.0.2/Cargo.toml +92 -0
- data/ext/cargo-vendor/wasmtime-winch-23.0.2/src/compiler.rs +242 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-23.0.2/Cargo.toml +57 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-23.0.2/src/lib.rs +2777 -0
- data/ext/cargo-vendor/wast-215.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wast-215.0.0/Cargo.toml +101 -0
- data/ext/cargo-vendor/wast-215.0.0/src/component/binary.rs +1014 -0
- data/ext/cargo-vendor/wast-215.0.0/src/component/component.rs +320 -0
- data/ext/cargo-vendor/wast-215.0.0/src/component/expand.rs +875 -0
- data/ext/cargo-vendor/wast-215.0.0/src/component/resolve.rs +988 -0
- data/ext/cargo-vendor/wast-215.0.0/src/component.rs +28 -0
- data/ext/cargo-vendor/wast-215.0.0/src/core/binary/dwarf.rs +610 -0
- data/ext/cargo-vendor/wast-215.0.0/src/core/binary/dwarf_disabled.rs +41 -0
- data/ext/cargo-vendor/wast-215.0.0/src/core/binary.rs +1542 -0
- data/ext/cargo-vendor/wast-215.0.0/src/core/expr.rs +2110 -0
- data/ext/cargo-vendor/wast-215.0.0/src/core/memory.rs +279 -0
- data/ext/cargo-vendor/wast-215.0.0/src/core/module.rs +215 -0
- data/ext/cargo-vendor/wast-215.0.0/src/core/resolve/deinline_import_export.rs +232 -0
- data/ext/cargo-vendor/wast-215.0.0/src/core/resolve/names.rs +791 -0
- data/ext/cargo-vendor/wast-215.0.0/src/core/resolve/types.rs +270 -0
- data/ext/cargo-vendor/wast-215.0.0/src/core/table.rs +308 -0
- data/ext/cargo-vendor/wast-215.0.0/src/core/types.rs +1057 -0
- data/ext/cargo-vendor/wast-215.0.0/src/core.rs +30 -0
- data/ext/cargo-vendor/wast-215.0.0/src/lib.rs +556 -0
- data/ext/cargo-vendor/wast-215.0.0/src/parser.rs +1434 -0
- data/ext/cargo-vendor/wast-215.0.0/src/wat.rs +68 -0
- data/ext/cargo-vendor/wat-1.215.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wat-1.215.0/Cargo.toml +56 -0
- data/ext/cargo-vendor/wat-1.215.0/src/lib.rs +469 -0
- data/ext/cargo-vendor/wiggle-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-23.0.2/Cargo.toml +110 -0
- data/ext/cargo-vendor/wiggle-generate-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-23.0.2/Cargo.toml +76 -0
- data/ext/cargo-vendor/wiggle-macro-23.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-23.0.2/Cargo.toml +59 -0
- data/ext/cargo-vendor/winapi-util-0.1.9/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winapi-util-0.1.9/COPYING +3 -0
- data/ext/cargo-vendor/winapi-util-0.1.9/Cargo.toml +53 -0
- data/ext/cargo-vendor/winapi-util-0.1.9/LICENSE-MIT +21 -0
- data/ext/cargo-vendor/winapi-util-0.1.9/README.md +64 -0
- data/ext/cargo-vendor/winapi-util-0.1.9/UNLICENSE +24 -0
- data/ext/cargo-vendor/winapi-util-0.1.9/rustfmt.toml +2 -0
- data/ext/cargo-vendor/winapi-util-0.1.9/src/console.rs +407 -0
- data/ext/cargo-vendor/winapi-util-0.1.9/src/file.rs +166 -0
- data/ext/cargo-vendor/winapi-util-0.1.9/src/lib.rs +35 -0
- data/ext/cargo-vendor/winapi-util-0.1.9/src/sysinfo.rs +161 -0
- data/ext/cargo-vendor/winapi-util-0.1.9/src/win.rs +246 -0
- data/ext/cargo-vendor/winch-codegen-0.21.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-0.21.2/Cargo.toml +87 -0
- data/ext/cargo-vendor/winch-codegen-0.21.2/src/codegen/env.rs +449 -0
- data/ext/cargo-vendor/winch-codegen-0.21.2/src/codegen/mod.rs +878 -0
- data/ext/cargo-vendor/winch-codegen-0.21.2/src/visitor.rs +2154 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/Cargo.toml +112 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/src/ast/lex.rs +751 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/src/ast/resolve.rs +1539 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/src/ast.rs +1851 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/src/decoding.rs +1798 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/src/lib.rs +888 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/src/resolve.rs +2740 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/feature-gates.wit.json +308 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-file-multi-package/a.wit +23 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-file-multi-package/b.wit +23 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-file-multi-package.wit.json +250 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps/deps/dep1/types.wit +2 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps/deps/dep2/types.wit +2 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps/packages.wit +13 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps.wit.json +83 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps/deps/dep1/types.wit +9 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps/deps/dep2/types.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps/packages.wit +11 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps.wit.json +116 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-colliding-decl-names.wit +23 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-colliding-decl-names.wit.json +130 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-internal-references.wit +15 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-internal-references.wit.json +87 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-with-semver.wit +23 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-with-semver.wit.json +130 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-multiple-explicit.wit +23 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-multiple-explicit.wit.json +130 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-single-explicit.wit +11 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-single-explicit.wit.json +70 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-colliding-names.wit +3 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-colliding-names.wit.result +1 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-with-error.wit +13 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-with-error.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-explicit-then-implicit-package.wit +23 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-explicit-then-implicit-package.wit.result +1 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-implicit-then-explicit-package.wit +23 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-implicit-then-explicit-package.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multi-file-missing-delimiter/observe.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multi-file-missing-delimiter/world.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multi-file-missing-delimiter.wit.result +9 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-package-inline-cycle.wit +11 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-package-inline-cycle.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-packages-no-scope-blocks.wit +15 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-packages-no-scope-blocks.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/since-and-unstable.wit.json +583 -0
- data/ext/src/ruby_api/memory.rs +2 -1
- data/lib/wasmtime/version.rb +1 -1
- metadata +1736 -1643
- data/ext/cargo-vendor/cranelift-bforest-0.109.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.109.0/Cargo.toml +0 -41
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/Cargo.toml +0 -193
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/binemit/stack_map.rs +0 -155
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/bitset.rs +0 -187
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/context.rs +0 -384
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/data_value.rs +0 -385
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/dfg.rs +0 -1777
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/globalvalue.rs +0 -147
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/immediates.rs +0 -1612
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/instructions.rs +0 -1020
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/jumptable.rs +0 -168
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/mod.rs +0 -108
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/trapcode.rs +0 -149
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/types.rs +0 -627
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/emit.rs +0 -3584
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/emit_tests.rs +0 -7901
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/mod.rs +0 -3060
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst.isle +0 -4218
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/lower.isle +0 -2933
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/mod.rs +0 -242
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/mod.rs +0 -449
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/emit.rs +0 -2682
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/emit_tests.rs +0 -2215
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/mod.rs +0 -1938
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst.isle +0 -3127
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/lower/isle.rs +0 -649
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/lower.isle +0 -2923
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/mod.rs +0 -260
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/inst/emit.rs +0 -3401
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/inst/mod.rs +0 -3401
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/lower.isle +0 -3995
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/mod.rs +0 -215
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/emit.rs +0 -4287
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/emit_state.rs +0 -52
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/mod.rs +0 -2821
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst.isle +0 -5289
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/lower.isle +0 -4810
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/mod.rs +0 -234
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isle_prelude.rs +0 -986
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/legalizer/mod.rs +0 -348
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/lib.rs +0 -106
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/abi.rs +0 -2419
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/buffer.rs +0 -2508
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/helpers.rs +0 -33
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/isle.rs +0 -909
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/lower.rs +0 -1432
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/mod.rs +0 -551
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/vcode.rs +0 -1741
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/prelude.isle +0 -664
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/prelude_lower.isle +0 -1073
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/write.rs +0 -638
- data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/Cargo.toml +0 -36
- data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/cdsl/types.rs +0 -496
- data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/cdsl/typevar.rs +0 -980
- data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/gen_inst.rs +0 -1278
- data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/shared/instructions.rs +0 -3791
- data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/shared/types.rs +0 -137
- data/ext/cargo-vendor/cranelift-codegen-shared-0.109.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.109.0/Cargo.toml +0 -22
- data/ext/cargo-vendor/cranelift-control-0.109.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.109.0/Cargo.toml +0 -30
- data/ext/cargo-vendor/cranelift-entity-0.109.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.109.0/Cargo.toml +0 -53
- data/ext/cargo-vendor/cranelift-entity-0.109.0/src/set.rs +0 -290
- data/ext/cargo-vendor/cranelift-frontend-0.109.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.109.0/Cargo.toml +0 -68
- data/ext/cargo-vendor/cranelift-frontend-0.109.0/src/frontend.rs +0 -1857
- data/ext/cargo-vendor/cranelift-isle-0.109.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.109.0/Cargo.toml +0 -47
- data/ext/cargo-vendor/cranelift-isle-0.109.0/src/codegen.rs +0 -886
- data/ext/cargo-vendor/cranelift-isle-0.109.0/src/parser.rs +0 -562
- data/ext/cargo-vendor/cranelift-isle-0.109.0/src/sema.rs +0 -2492
- data/ext/cargo-vendor/cranelift-isle-0.109.0/src/trie_again.rs +0 -684
- data/ext/cargo-vendor/cranelift-native-0.109.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.109.0/Cargo.toml +0 -43
- data/ext/cargo-vendor/cranelift-native-0.109.0/src/lib.rs +0 -188
- data/ext/cargo-vendor/cranelift-wasm-0.109.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-wasm-0.109.0/Cargo.toml +0 -110
- data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/code_translator/bounds_checks.rs +0 -713
- data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/code_translator.rs +0 -3695
- data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/heap.rs +0 -116
- data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/sections_translator.rs +0 -343
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.22/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.22/Cargo.toml +0 -48
- data/ext/cargo-vendor/memoffset-0.9.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/memoffset-0.9.0/Cargo.toml +0 -37
- data/ext/cargo-vendor/memoffset-0.9.0/LICENSE +0 -19
- data/ext/cargo-vendor/memoffset-0.9.0/README.md +0 -85
- data/ext/cargo-vendor/memoffset-0.9.0/build.rs +0 -25
- data/ext/cargo-vendor/memoffset-0.9.0/src/lib.rs +0 -94
- data/ext/cargo-vendor/memoffset-0.9.0/src/offset_of.rs +0 -400
- data/ext/cargo-vendor/memoffset-0.9.0/src/raw_field.rs +0 -226
- data/ext/cargo-vendor/memoffset-0.9.0/src/span_of.rs +0 -263
- data/ext/cargo-vendor/wasi-common-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-22.0.0/Cargo.toml +0 -224
- data/ext/cargo-vendor/wasi-common-22.0.0/src/tokio/mod.rs +0 -137
- data/ext/cargo-vendor/wasi-common-22.0.0/tests/all/async_.rs +0 -293
- data/ext/cargo-vendor/wasi-common-22.0.0/tests/all/sync.rs +0 -279
- data/ext/cargo-vendor/wasm-encoder-0.209.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-encoder-0.209.1/Cargo.toml +0 -46
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/types.rs +0 -792
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/code.rs +0 -3595
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/exports.rs +0 -98
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/globals.rs +0 -112
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/imports.rs +0 -157
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/memories.rs +0 -128
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/tables.rs +0 -134
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/tags.rs +0 -104
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/types.rs +0 -678
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/lib.rs +0 -215
- data/ext/cargo-vendor/wasmparser-0.209.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmparser-0.209.1/Cargo.lock +0 -662
- data/ext/cargo-vendor/wasmparser-0.209.1/Cargo.toml +0 -109
- data/ext/cargo-vendor/wasmparser-0.209.1/src/binary_reader.rs +0 -1929
- data/ext/cargo-vendor/wasmparser-0.209.1/src/features.rs +0 -164
- data/ext/cargo-vendor/wasmparser-0.209.1/src/lib.rs +0 -814
- data/ext/cargo-vendor/wasmparser-0.209.1/src/parser.rs +0 -1682
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/operators.rs +0 -423
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/tables.rs +0 -93
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/types.rs +0 -1788
- data/ext/cargo-vendor/wasmparser-0.209.1/src/resources.rs +0 -235
- data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/component.rs +0 -3236
- data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/core.rs +0 -1464
- data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/operators.rs +0 -4231
- data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/types.rs +0 -4550
- data/ext/cargo-vendor/wasmparser-0.209.1/src/validator.rs +0 -1633
- data/ext/cargo-vendor/wasmprinter-0.209.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmprinter-0.209.1/Cargo.toml +0 -51
- data/ext/cargo-vendor/wasmprinter-0.209.1/src/lib.rs +0 -3225
- data/ext/cargo-vendor/wasmprinter-0.209.1/src/operator.rs +0 -1171
- data/ext/cargo-vendor/wasmprinter-0.209.1/tests/all.rs +0 -293
- data/ext/cargo-vendor/wasmtime-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-22.0.0/Cargo.toml +0 -387
- data/ext/cargo-vendor/wasmtime-22.0.0/build.rs +0 -42
- data/ext/cargo-vendor/wasmtime-22.0.0/src/compile/code_builder.rs +0 -275
- data/ext/cargo-vendor/wasmtime-22.0.0/src/compile/runtime.rs +0 -167
- data/ext/cargo-vendor/wasmtime-22.0.0/src/compile.rs +0 -917
- data/ext/cargo-vendor/wasmtime-22.0.0/src/config.rs +0 -2943
- data/ext/cargo-vendor/wasmtime-22.0.0/src/engine/serialization.rs +0 -890
- data/ext/cargo-vendor/wasmtime-22.0.0/src/engine.rs +0 -728
- data/ext/cargo-vendor/wasmtime-22.0.0/src/lib.rs +0 -389
- data/ext/cargo-vendor/wasmtime-22.0.0/src/profiling_agent/jitdump.rs +0 -67
- data/ext/cargo-vendor/wasmtime-22.0.0/src/profiling_agent/perfmap.rs +0 -48
- data/ext/cargo-vendor/wasmtime-22.0.0/src/profiling_agent/vtune.rs +0 -81
- data/ext/cargo-vendor/wasmtime-22.0.0/src/profiling_agent.rs +0 -106
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/code_memory.rs +0 -338
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/bindgen_examples/mod.rs +0 -489
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/component.rs +0 -656
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/func/host.rs +0 -440
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/func/options.rs +0 -555
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/func/typed.rs +0 -2498
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/func.rs +0 -689
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/instance.rs +0 -810
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/linker.rs +0 -854
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/matching.rs +0 -217
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/mod.rs +0 -657
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/resources.rs +0 -1133
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/values.rs +0 -980
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/coredump.rs +0 -342
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/debug.rs +0 -166
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/externals/global.rs +0 -310
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/externals/table.rs +0 -481
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/func/typed.rs +0 -780
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/func.rs +0 -2564
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/gc/disabled/rooting.rs +0 -224
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/gc/enabled/externref.rs +0 -592
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/gc/enabled/rooting.rs +0 -1588
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/instance.rs +0 -992
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/instantiate.rs +0 -337
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/limits.rs +0 -399
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/linker.rs +0 -1499
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/memory.rs +0 -998
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/module/registry.rs +0 -353
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/module.rs +0 -1322
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/profiling.rs +0 -221
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/stack.rs +0 -73
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/store/data.rs +0 -301
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/store.rs +0 -2824
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trampoline/func.rs +0 -94
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trampoline/memory.rs +0 -287
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trampoline/table.rs +0 -29
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trampoline.rs +0 -78
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trap.rs +0 -642
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/types/matching.rs +0 -421
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/types.rs +0 -2580
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/values.rs +0 -966
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/arch/riscv64.rs +0 -41
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/component/libcalls.rs +0 -571
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/component/resources.rs +0 -352
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/component.rs +0 -857
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/const_expr.rs +0 -102
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/cow.rs +0 -972
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/disabled.rs +0 -24
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/enabled/drc.rs +0 -968
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/enabled/free_list.rs +0 -771
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/gc_ref.rs +0 -491
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/gc_runtime.rs +0 -506
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc.rs +0 -245
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/on_demand.rs +0 -220
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -194
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -94
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -78
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -707
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -975
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -245
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -278
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling.rs +0 -794
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator.rs +0 -801
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance.rs +0 -1514
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/libcalls.rs +0 -834
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/memory.rs +0 -736
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mmap.rs +0 -220
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mmap_vec.rs +0 -162
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/module_id.rs +0 -43
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mpk/disabled.rs +0 -43
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mpk/enabled.rs +0 -214
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mpk/mod.rs +0 -54
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mpk/sys.rs +0 -114
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/custom/mmap.rs +0 -112
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/custom/mod.rs +0 -34
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/custom/unwind.rs +0 -17
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/custom/vm.rs +0 -105
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/miri/mmap.rs +0 -95
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/miri/unwind.rs +0 -17
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/unix/mmap.rs +0 -162
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/unix/signals.rs +0 -407
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/unix/unwind.rs +0 -150
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/windows/mmap.rs +0 -221
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/windows/unwind.rs +0 -46
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/table.rs +0 -899
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/threads/shared_memory.rs +0 -233
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/threads/shared_memory_disabled.rs +0 -101
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/traphandlers.rs +0 -768
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -79
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/vmcontext.rs +0 -1302
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm.rs +0 -277
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime.rs +0 -113
- data/ext/cargo-vendor/wasmtime-asm-macros-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-22.0.0/Cargo.toml +0 -22
- data/ext/cargo-vendor/wasmtime-cache-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-22.0.0/Cargo.toml +0 -89
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/Cargo.toml +0 -86
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/src/bindgen.rs +0 -493
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/codegen.rs +0 -651
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/char.rs +0 -198
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/char_async.rs +0 -215
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/conventions.rs +0 -586
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/conventions_async.rs +0 -631
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/dead-code.rs +0 -165
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/dead-code_async.rs +0 -178
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/direct-import.rs +0 -91
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/direct-import_async.rs +0 -97
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/empty.rs +0 -45
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/empty_async.rs +0 -45
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/flags.rs +0 -637
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/flags_async.rs +0 -679
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/floats.rs +0 -255
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/floats_async.rs +0 -282
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/function-new.rs +0 -59
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/function-new_async.rs +0 -62
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/integers.rs +0 -722
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/integers_async.rs +0 -819
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/lists.rs +0 -1743
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/lists_async.rs +0 -1927
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/many-arguments.rs +0 -543
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/many-arguments_async.rs +0 -561
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multi-return.rs +0 -270
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multi-return_async.rs +0 -298
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multiversion.rs +0 -251
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multiversion_async.rs +0 -270
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/records.rs +0 -815
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/records_async.rs +0 -877
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/rename.rs +0 -154
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/rename_async.rs +0 -167
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-export.rs +0 -467
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-export_async.rs +0 -516
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-import.rs +0 -1014
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-import_async.rs +0 -1086
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/share-types.rs +0 -249
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/share-types_async.rs +0 -265
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-functions.rs +0 -313
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-functions_async.rs +0 -347
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-lists.rs +0 -350
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-lists_async.rs +0 -381
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-wasi.rs +0 -216
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-wasi_async.rs +0 -229
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/small-anonymous.rs +0 -275
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/small-anonymous_async.rs +0 -287
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-default.rs +0 -59
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-default_async.rs +0 -62
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-export.rs +0 -86
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-export_async.rs +0 -89
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke.rs +0 -104
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke_async.rs +0 -111
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/strings.rs +0 -247
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/strings_async.rs +0 -269
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/unversioned-foo.rs +0 -136
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/unversioned-foo_async.rs +0 -143
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/use-paths.rs +0 -288
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/use-paths_async.rs +0 -314
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/variants.rs +0 -1750
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/variants_async.rs +0 -1867
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/wat.rs +0 -84
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/wat_async.rs +0 -84
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/worlds-with-types.rs +0 -138
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/worlds-with-types_async.rs +0 -148
- data/ext/cargo-vendor/wasmtime-component-util-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-22.0.0/Cargo.toml +0 -25
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/Cargo.toml +0 -115
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/compiler.rs +0 -1067
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/gc.rs +0 -252
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/address_transform.rs +0 -783
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/attr.rs +0 -320
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/expression.rs +0 -1248
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/line_program.rs +0 -287
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/mod.rs +0 -256
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/range_info_builder.rs +0 -221
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/simulate.rs +0 -411
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/unit.rs +0 -529
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/utils.rs +0 -186
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/write_debuginfo.rs +0 -196
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug.rs +0 -18
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/func_environ.rs +0 -2910
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/gc/enabled.rs +0 -648
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/lib.rs +0 -462
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/Cargo.lock +0 -774
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/Cargo.toml +0 -161
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/compile/mod.rs +0 -374
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/compile/module_environ.rs +0 -1348
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/dfg.rs +0 -691
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/info.rs +0 -672
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/translate/inline.rs +0 -1332
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/translate.rs +0 -985
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/types.rs +0 -1038
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/types_builder.rs +0 -1004
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component.rs +0 -107
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/lib.rs +0 -151
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/module.rs +0 -704
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/stack_map.rs +0 -37
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/tunables.rs +0 -175
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/vmoffsets.rs +0 -989
- data/ext/cargo-vendor/wasmtime-fiber-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-22.0.0/Cargo.toml +0 -65
- data/ext/cargo-vendor/wasmtime-jit-debug-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-22.0.0/Cargo.toml +0 -68
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-22.0.0/Cargo.toml +0 -52
- data/ext/cargo-vendor/wasmtime-slab-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-slab-22.0.0/Cargo.toml +0 -21
- data/ext/cargo-vendor/wasmtime-types-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-types-22.0.0/Cargo.toml +0 -56
- data/ext/cargo-vendor/wasmtime-types-22.0.0/src/lib.rs +0 -1737
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-22.0.0/Cargo.toml +0 -32
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/Cargo.toml +0 -201
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/bindings.rs +0 -289
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/filesystem.rs +0 -446
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/filesystem.rs +0 -1091
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/io.rs +0 -388
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/lib.rs +0 -417
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/preview1.rs +0 -2801
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/stdio.rs +0 -533
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/tests/all/api.rs +0 -198
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/tests/all/async_.rs +0 -397
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/tests/all/sync.rs +0 -331
- data/ext/cargo-vendor/wasmtime-winch-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-22.0.0/Cargo.toml +0 -82
- data/ext/cargo-vendor/wasmtime-winch-22.0.0/src/compiler.rs +0 -239
- data/ext/cargo-vendor/wasmtime-wit-bindgen-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-22.0.0/Cargo.toml +0 -47
- data/ext/cargo-vendor/wasmtime-wit-bindgen-22.0.0/src/lib.rs +0 -2639
- data/ext/cargo-vendor/wast-209.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wast-209.0.1/Cargo.toml +0 -60
- data/ext/cargo-vendor/wast-209.0.1/src/component/binary.rs +0 -1000
- data/ext/cargo-vendor/wast-209.0.1/src/component/component.rs +0 -321
- data/ext/cargo-vendor/wast-209.0.1/src/component/expand.rs +0 -875
- data/ext/cargo-vendor/wast-209.0.1/src/component/resolve.rs +0 -999
- data/ext/cargo-vendor/wast-209.0.1/src/component.rs +0 -28
- data/ext/cargo-vendor/wast-209.0.1/src/core/binary.rs +0 -1396
- data/ext/cargo-vendor/wast-209.0.1/src/core/expr.rs +0 -2016
- data/ext/cargo-vendor/wast-209.0.1/src/core/memory.rs +0 -284
- data/ext/cargo-vendor/wast-209.0.1/src/core/module.rs +0 -218
- data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/deinline_import_export.rs +0 -235
- data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/names.rs +0 -751
- data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/types.rs +0 -267
- data/ext/cargo-vendor/wast-209.0.1/src/core/table.rs +0 -302
- data/ext/cargo-vendor/wast-209.0.1/src/core/types.rs +0 -901
- data/ext/cargo-vendor/wast-209.0.1/src/core.rs +0 -29
- data/ext/cargo-vendor/wast-209.0.1/src/lib.rs +0 -551
- data/ext/cargo-vendor/wast-209.0.1/src/parser.rs +0 -1414
- data/ext/cargo-vendor/wast-209.0.1/src/wat.rs +0 -71
- data/ext/cargo-vendor/wat-1.209.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wat-1.209.1/Cargo.toml +0 -34
- data/ext/cargo-vendor/wat-1.209.1/src/lib.rs +0 -401
- data/ext/cargo-vendor/wiggle-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-22.0.0/Cargo.toml +0 -124
- data/ext/cargo-vendor/wiggle-generate-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-22.0.0/Cargo.toml +0 -67
- data/ext/cargo-vendor/wiggle-generate-22.0.0/LICENSE +0 -220
- data/ext/cargo-vendor/wiggle-macro-22.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-22.0.0/Cargo.toml +0 -51
- data/ext/cargo-vendor/wiggle-macro-22.0.0/LICENSE +0 -220
- data/ext/cargo-vendor/winch-codegen-0.20.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-0.20.0/Cargo.toml +0 -77
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/codegen/env.rs +0 -448
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/codegen/mod.rs +0 -882
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/visitor.rs +0 -2149
- data/ext/cargo-vendor/wit-parser-0.209.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wit-parser-0.209.1/Cargo.toml +0 -112
- data/ext/cargo-vendor/wit-parser-0.209.1/src/ast/lex.rs +0 -747
- data/ext/cargo-vendor/wit-parser-0.209.1/src/ast/resolve.rs +0 -1524
- data/ext/cargo-vendor/wit-parser-0.209.1/src/ast.rs +0 -1668
- data/ext/cargo-vendor/wit-parser-0.209.1/src/decoding.rs +0 -1795
- data/ext/cargo-vendor/wit-parser-0.209.1/src/lib.rs +0 -873
- data/ext/cargo-vendor/wit-parser-0.209.1/src/resolve.rs +0 -2498
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/feature-gates.wit.json +0 -288
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/since-and-unstable.wit.json +0 -549
- /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/binemit/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/egraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/extfunc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/function.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/libcall.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/memtype.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/call_conv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/encode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/vector.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst_vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/rex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/reg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/cprop.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/extends.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/icmp.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/spaceship.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/spectre.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ranges.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/timing.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/traversals.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/unionfind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/verifier/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/gen_isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isa/arm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isa/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isa/x86.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.109.0 → cranelift-codegen-shared-0.110.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.109.0 → cranelift-codegen-shared-0.110.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.109.0 → cranelift-codegen-shared-0.110.2}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.109.0 → cranelift-codegen-shared-0.110.2}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.109.0 → cranelift-codegen-shared-0.110.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.109.0 → cranelift-control-0.110.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.109.0 → cranelift-control-0.110.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.109.0 → cranelift-control-0.110.2}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.109.0 → cranelift-control-0.110.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.109.0 → cranelift-control-0.110.2}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/sparse.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/unsigned.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/disjointsets.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/stablemapset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.109.0 → cranelift-native-0.110.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.109.0 → cranelift-native-0.110.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.109.0 → cranelift-native-0.110.2}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/environ/dummy.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/environ/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/environ/spec.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/func_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/module_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/README.md +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/src/noop_scheduler.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/random.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/witx/preview0/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/witx/preview1/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/components.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/modules.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/dump.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/benches/benchmark.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/examples/simple.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/hash.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/index_map/detail.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/index_map/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/index_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/index_set.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/map.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/set.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/branch_hinting.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/coredumps.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/dylink0.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/init.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/reloc.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/types/matches.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/validator/core/canonical.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/validator/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/validator/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/tests/big-module.rs +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.209.1 → wasmprinter-0.212.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.209.1 → wasmprinter-0.212.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/resource_table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/storage.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/disabled/anyref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/disabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/disabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/enabled/anyref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/enabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/noextern.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/trampoline/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/type_registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/uninhabited.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/v128.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/arch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/arch/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/arch/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/arch/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/async_yield.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/gc/host_data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/gc/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/helpers.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/mpk/pkru.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/custom/capi.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/miri/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/miri/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/unix/machports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/unix/macos_traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/unix/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/windows/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/windows/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/threads/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/threads/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/sync_nostd.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/sync_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-22.0.0 → wasmtime-asm-macros-23.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/dead-code.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/multiversion/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/resources-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/resources-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/unversioned-foo.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/wat.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen_no_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/expanded.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-22.0.0 → wasmtime-component-util-23.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/compiler/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/examples/factc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/builtin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/compile/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/compile/module_artifacts.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/compile/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/compile/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/component/artifacts.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/component/types_builder/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/component/vmcomponent_offsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact/signature.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/module_artifacts.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-22.0.0 → wasmtime-jit-debug-23.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-22.0.0 → wasmtime-jit-debug-23.0.2}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-22.0.0 → wasmtime-jit-debug-23.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-22.0.0 → wasmtime-jit-debug-23.0.2}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-22.0.0 → wasmtime-jit-icache-coherence-23.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-22.0.0 → wasmtime-jit-icache-coherence-23.0.2}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-22.0.0 → wasmtime-jit-icache-coherence-23.0.2}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-22.0.0 → wasmtime-jit-icache-coherence-23.0.2}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-slab-22.0.0 → wasmtime-slab-23.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-22.0.0 → wasmtime-types-23.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-22.0.0 → wasmtime-types-23.0.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-22.0.0 → wasmtime-versioned-export-macros-23.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/clocks/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/filesystem/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/instance_network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/tcp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/udp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/ip_name_lookup.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/poll.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/preview0.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/stdio/worker_thread_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/write_stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/tests/all/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/tests/process_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/command-extended.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/imports.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/run.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/terminal.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/clocks/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/filesystem/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/filesystem/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/filesystem/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/http/handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/http/proxy.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/http/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/io/error.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/io/poll.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/io/streams.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/io/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/random/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/tcp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/udp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/test.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/witx/preview0/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/witx/preview1/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-22.0.0 → wasmtime-winch-23.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-22.0.0 → wasmtime-winch-23.0.2}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-22.0.0 → wasmtime-winch-23.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-22.0.0 → wasmtime-wit-bindgen-23.0.2}/src/rust.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-22.0.0 → wasmtime-wit-bindgen-23.0.2}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-22.0.0 → wasmtime-wit-bindgen-23.0.2}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/alias.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/item_ref.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/global.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/resolve/mod.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/tag.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/encode.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/gensym.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/token.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/annotations.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-index.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name2.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name3.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block1.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block2.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block3.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/inline1.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/inline1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string10.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string10.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string11.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string11.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string12.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string12.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string13.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string13.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string14.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string14.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string15.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string15.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string16.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string16.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string9.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string9.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/unbalanced.wat +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail.rs +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/recursive.rs +0 -0
- /data/ext/cargo-vendor/{wat-1.209.1 → wat-1.215.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wast-209.0.1 → wiggle-23.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-23.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-23.0.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-23.0.2}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-23.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-23.0.2}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wat-1.209.1 → wiggle-generate-23.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-macro-23.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-22.0.0 → wiggle-macro-23.0.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-22.0.0 → wiggle-macro-23.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/abi/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/codegen/bounds.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/codegen/builtin.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/codegen/call.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/codegen/context.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/codegen/control.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/frame/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/abi.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/asm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/abi.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/asm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/regalloc.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/stack.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/abi.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/ast/toposort.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/live.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/metadata.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/serde_.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/sizealign.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/all.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/comments.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/comments.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/complex-include/deps/bar/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/complex-include/deps/baz/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/complex-include/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/complex-include.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/cross-package-resource/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/cross-package-resource.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/diamond1/join.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/diamond1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/disambiguate-diamond/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/disambiguate-diamond.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/empty.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/feature-gates.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/functions.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/ignore-files-deps/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/ignore-files-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/import-export-overlap1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/import-export-overlap1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/import-export-overlap2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/import-export-overlap2.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/include-reps.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/include-reps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kebab-name-include-with.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kebab-name-include-with.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/b/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/c.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/d.wat +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/e.wasm +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/many-names/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/many-names/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/many-names.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/multi-file/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/multi-file/cycle-a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/multi-file/cycle-b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/multi-file/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/multi-file.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/name-both-resource-and-type.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax3.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax4.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/alias-no-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/async.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/async1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-list.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-list.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource10.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource11.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource12.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource13.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource14.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource6.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-since1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-since1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-since3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-since3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/dangling-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-enum.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-variant1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/export-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/export-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-id.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/keyword.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/keyword.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/missing-package.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/missing-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/resources-multiple-returns-borrow.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/resources-multiple-returns-borrow.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/resources-return-borrow.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/resources-return-borrow.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow6.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow8/deps/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow8/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/undefined-typed.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unknown-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-shadow1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-world/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-world.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/random.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/random.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-empty.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-multiple-returns-own.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-multiple.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-multiple.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-return-own.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-return-own.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/same-name-import-export.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/same-name-import-export.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/shared-types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/shared-types.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/simple-wasm-text.wat +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/simple-wasm-text.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/since-and-unstable.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/stress-export-elaborate.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/stress-export-elaborate.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/type-then-eof.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/type-then-eof.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/types.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/union-fuzz-1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/union-fuzz-1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/union-fuzz-2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/union-fuzz-2.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/use-chain.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/use-chain.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/use.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/use.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/versions/deps/a1/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/versions/deps/a2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/versions/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/versions.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/wasi.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/wasi.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-diamond.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-diamond.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-iface-no-collide.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-iface-no-collide.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import2.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import3.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-same-fields4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-same-fields4.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-top-level-funcs.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-top-level-funcs.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-top-level-resources.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-top-level-resources.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/worlds-union-dedup.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/worlds-union-dedup.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/worlds-with-types.wit.json +0 -0
@@ -0,0 +1,2818 @@
|
|
1
|
+
//! This module defines x86_64-specific machine instruction types.
|
2
|
+
|
3
|
+
pub use emit_state::EmitState;
|
4
|
+
|
5
|
+
use crate::binemit::{Addend, CodeOffset, Reloc, StackMap};
|
6
|
+
use crate::ir::{types, ExternalName, LibCall, Opcode, TrapCode, Type};
|
7
|
+
use crate::isa::x64::abi::X64ABIMachineSpec;
|
8
|
+
use crate::isa::x64::inst::regs::{pretty_print_reg, show_ireg_sized};
|
9
|
+
use crate::isa::x64::settings as x64_settings;
|
10
|
+
use crate::isa::{CallConv, FunctionAlignment};
|
11
|
+
use crate::{machinst::*, trace};
|
12
|
+
use crate::{settings, CodegenError, CodegenResult};
|
13
|
+
use alloc::boxed::Box;
|
14
|
+
use regalloc2::PRegSet;
|
15
|
+
use smallvec::{smallvec, SmallVec};
|
16
|
+
use std::fmt::{self, Write};
|
17
|
+
use std::string::{String, ToString};
|
18
|
+
|
19
|
+
pub mod args;
|
20
|
+
mod emit;
|
21
|
+
mod emit_state;
|
22
|
+
#[cfg(test)]
|
23
|
+
mod emit_tests;
|
24
|
+
pub mod regs;
|
25
|
+
pub mod unwind;
|
26
|
+
|
27
|
+
use args::*;
|
28
|
+
|
29
|
+
//=============================================================================
|
30
|
+
// Instructions (top level): definition
|
31
|
+
|
32
|
+
// `Inst` is defined inside ISLE as `MInst`. We publicly re-export it here.
|
33
|
+
pub use super::lower::isle::generated_code::MInst as Inst;
|
34
|
+
|
35
|
+
/// Out-of-line data for calls, to keep the size of `Inst` down.
|
36
|
+
#[derive(Clone, Debug)]
|
37
|
+
pub struct CallInfo {
|
38
|
+
/// Register uses of this call.
|
39
|
+
pub uses: CallArgList,
|
40
|
+
/// Register defs of this call.
|
41
|
+
pub defs: CallRetList,
|
42
|
+
/// Registers clobbered by this call, as per its calling convention.
|
43
|
+
pub clobbers: PRegSet,
|
44
|
+
/// The number of bytes that the callee will pop from the stack for the
|
45
|
+
/// caller, if any. (Used for popping stack arguments with the `tail`
|
46
|
+
/// calling convention.)
|
47
|
+
pub callee_pop_size: u32,
|
48
|
+
/// The calling convention of the callee.
|
49
|
+
pub callee_conv: CallConv,
|
50
|
+
}
|
51
|
+
|
52
|
+
/// Out-of-line data for return-calls, to keep the size of `Inst` down.
|
53
|
+
#[derive(Clone, Debug)]
|
54
|
+
pub struct ReturnCallInfo {
|
55
|
+
/// The size of the argument area for this return-call, potentially smaller than that of the
|
56
|
+
/// caller, but never larger.
|
57
|
+
pub new_stack_arg_size: u32,
|
58
|
+
|
59
|
+
/// The in-register arguments and their constraints.
|
60
|
+
pub uses: CallArgList,
|
61
|
+
|
62
|
+
/// A temporary for use when moving the return address.
|
63
|
+
pub tmp: WritableGpr,
|
64
|
+
}
|
65
|
+
|
66
|
+
#[test]
|
67
|
+
#[cfg(target_pointer_width = "64")]
|
68
|
+
fn inst_size_test() {
|
69
|
+
// This test will help with unintentionally growing the size
|
70
|
+
// of the Inst enum.
|
71
|
+
assert_eq!(40, std::mem::size_of::<Inst>());
|
72
|
+
}
|
73
|
+
|
74
|
+
pub(crate) fn low32_will_sign_extend_to_64(x: u64) -> bool {
|
75
|
+
let xs = x as i64;
|
76
|
+
xs == ((xs << 32) >> 32)
|
77
|
+
}
|
78
|
+
|
79
|
+
impl Inst {
|
80
|
+
/// Retrieve a list of ISA feature sets in which the instruction is available. An empty list
|
81
|
+
/// indicates that the instruction is available in the baseline feature set (i.e. SSE2 and
|
82
|
+
/// below); more than one `InstructionSet` in the list indicates that the instruction is present
|
83
|
+
/// *any* of the included ISA feature sets.
|
84
|
+
fn available_in_any_isa(&self) -> SmallVec<[InstructionSet; 2]> {
|
85
|
+
match self {
|
86
|
+
// These instructions are part of SSE2, which is a basic requirement in Cranelift, and
|
87
|
+
// don't have to be checked.
|
88
|
+
Inst::AluRmiR { .. }
|
89
|
+
| Inst::AluRM { .. }
|
90
|
+
| Inst::AtomicRmwSeq { .. }
|
91
|
+
| Inst::Bswap { .. }
|
92
|
+
| Inst::CallKnown { .. }
|
93
|
+
| Inst::CallUnknown { .. }
|
94
|
+
| Inst::ReturnCallKnown { .. }
|
95
|
+
| Inst::ReturnCallUnknown { .. }
|
96
|
+
| Inst::CheckedSRemSeq { .. }
|
97
|
+
| Inst::CheckedSRemSeq8 { .. }
|
98
|
+
| Inst::Cmove { .. }
|
99
|
+
| Inst::CmpRmiR { .. }
|
100
|
+
| Inst::CvtFloatToSintSeq { .. }
|
101
|
+
| Inst::CvtFloatToUintSeq { .. }
|
102
|
+
| Inst::CvtUint64ToFloatSeq { .. }
|
103
|
+
| Inst::Div { .. }
|
104
|
+
| Inst::Div8 { .. }
|
105
|
+
| Inst::Fence { .. }
|
106
|
+
| Inst::Hlt
|
107
|
+
| Inst::Imm { .. }
|
108
|
+
| Inst::JmpCond { .. }
|
109
|
+
| Inst::JmpIf { .. }
|
110
|
+
| Inst::JmpKnown { .. }
|
111
|
+
| Inst::JmpTableSeq { .. }
|
112
|
+
| Inst::JmpUnknown { .. }
|
113
|
+
| Inst::LoadEffectiveAddress { .. }
|
114
|
+
| Inst::LoadExtName { .. }
|
115
|
+
| Inst::LockCmpxchg { .. }
|
116
|
+
| Inst::Mov64MR { .. }
|
117
|
+
| Inst::MovImmM { .. }
|
118
|
+
| Inst::MovRM { .. }
|
119
|
+
| Inst::MovRR { .. }
|
120
|
+
| Inst::MovFromPReg { .. }
|
121
|
+
| Inst::MovToPReg { .. }
|
122
|
+
| Inst::MovsxRmR { .. }
|
123
|
+
| Inst::MovzxRmR { .. }
|
124
|
+
| Inst::Mul { .. }
|
125
|
+
| Inst::Mul8 { .. }
|
126
|
+
| Inst::IMul { .. }
|
127
|
+
| Inst::IMulImm { .. }
|
128
|
+
| Inst::Neg { .. }
|
129
|
+
| Inst::Not { .. }
|
130
|
+
| Inst::Nop { .. }
|
131
|
+
| Inst::Pop64 { .. }
|
132
|
+
| Inst::Push64 { .. }
|
133
|
+
| Inst::StackProbeLoop { .. }
|
134
|
+
| Inst::Args { .. }
|
135
|
+
| Inst::Rets { .. }
|
136
|
+
| Inst::Ret { .. }
|
137
|
+
| Inst::Setcc { .. }
|
138
|
+
| Inst::ShiftR { .. }
|
139
|
+
| Inst::SignExtendData { .. }
|
140
|
+
| Inst::TrapIf { .. }
|
141
|
+
| Inst::TrapIfAnd { .. }
|
142
|
+
| Inst::TrapIfOr { .. }
|
143
|
+
| Inst::Ud2 { .. }
|
144
|
+
| Inst::XmmCmove { .. }
|
145
|
+
| Inst::XmmCmpRmR { .. }
|
146
|
+
| Inst::XmmMinMaxSeq { .. }
|
147
|
+
| Inst::XmmUninitializedValue { .. }
|
148
|
+
| Inst::ElfTlsGetAddr { .. }
|
149
|
+
| Inst::MachOTlsGetAddr { .. }
|
150
|
+
| Inst::CoffTlsGetAddr { .. }
|
151
|
+
| Inst::Unwind { .. }
|
152
|
+
| Inst::DummyUse { .. }
|
153
|
+
| Inst::AluConstOp { .. } => smallvec![],
|
154
|
+
|
155
|
+
Inst::AluRmRVex { op, .. } => op.available_from(),
|
156
|
+
Inst::UnaryRmR { op, .. } => op.available_from(),
|
157
|
+
Inst::UnaryRmRVex { op, .. } => op.available_from(),
|
158
|
+
Inst::UnaryRmRImmVex { op, .. } => op.available_from(),
|
159
|
+
|
160
|
+
// These use dynamic SSE opcodes.
|
161
|
+
Inst::GprToXmm { op, .. }
|
162
|
+
| Inst::XmmMovRM { op, .. }
|
163
|
+
| Inst::XmmMovRMImm { op, .. }
|
164
|
+
| Inst::XmmRmiReg { opcode: op, .. }
|
165
|
+
| Inst::XmmRmR { op, .. }
|
166
|
+
| Inst::XmmRmRUnaligned { op, .. }
|
167
|
+
| Inst::XmmRmRBlend { op, .. }
|
168
|
+
| Inst::XmmRmRImm { op, .. }
|
169
|
+
| Inst::XmmToGpr { op, .. }
|
170
|
+
| Inst::XmmToGprImm { op, .. }
|
171
|
+
| Inst::XmmUnaryRmRImm { op, .. }
|
172
|
+
| Inst::XmmUnaryRmRUnaligned { op, .. }
|
173
|
+
| Inst::XmmUnaryRmR { op, .. }
|
174
|
+
| Inst::CvtIntToFloat { op, .. } => smallvec![op.available_from()],
|
175
|
+
|
176
|
+
Inst::XmmUnaryRmREvex { op, .. }
|
177
|
+
| Inst::XmmRmREvex { op, .. }
|
178
|
+
| Inst::XmmRmREvex3 { op, .. }
|
179
|
+
| Inst::XmmUnaryRmRImmEvex { op, .. } => op.available_from(),
|
180
|
+
|
181
|
+
Inst::XmmRmiRVex { op, .. }
|
182
|
+
| Inst::XmmRmRVex3 { op, .. }
|
183
|
+
| Inst::XmmRmRImmVex { op, .. }
|
184
|
+
| Inst::XmmRmRBlendVex { op, .. }
|
185
|
+
| Inst::XmmVexPinsr { op, .. }
|
186
|
+
| Inst::XmmUnaryRmRVex { op, .. }
|
187
|
+
| Inst::XmmUnaryRmRImmVex { op, .. }
|
188
|
+
| Inst::XmmMovRMVex { op, .. }
|
189
|
+
| Inst::XmmMovRMImmVex { op, .. }
|
190
|
+
| Inst::XmmToGprImmVex { op, .. }
|
191
|
+
| Inst::XmmToGprVex { op, .. }
|
192
|
+
| Inst::GprToXmmVex { op, .. }
|
193
|
+
| Inst::CvtIntToFloatVex { op, .. }
|
194
|
+
| Inst::XmmCmpRmRVex { op, .. } => op.available_from(),
|
195
|
+
}
|
196
|
+
}
|
197
|
+
}
|
198
|
+
|
199
|
+
// Handy constructors for Insts.
|
200
|
+
|
201
|
+
impl Inst {
|
202
|
+
pub(crate) fn nop(len: u8) -> Self {
|
203
|
+
debug_assert!(len <= 15);
|
204
|
+
Self::Nop { len }
|
205
|
+
}
|
206
|
+
|
207
|
+
pub(crate) fn alu_rmi_r(
|
208
|
+
size: OperandSize,
|
209
|
+
op: AluRmiROpcode,
|
210
|
+
src: RegMemImm,
|
211
|
+
dst: Writable<Reg>,
|
212
|
+
) -> Self {
|
213
|
+
src.assert_regclass_is(RegClass::Int);
|
214
|
+
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
215
|
+
Self::AluRmiR {
|
216
|
+
size,
|
217
|
+
op,
|
218
|
+
src1: Gpr::new(dst.to_reg()).unwrap(),
|
219
|
+
src2: GprMemImm::new(src).unwrap(),
|
220
|
+
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
221
|
+
}
|
222
|
+
}
|
223
|
+
|
224
|
+
#[allow(dead_code)]
|
225
|
+
pub(crate) fn unary_rm_r(
|
226
|
+
size: OperandSize,
|
227
|
+
op: UnaryRmROpcode,
|
228
|
+
src: RegMem,
|
229
|
+
dst: Writable<Reg>,
|
230
|
+
) -> Self {
|
231
|
+
src.assert_regclass_is(RegClass::Int);
|
232
|
+
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
233
|
+
debug_assert!(size.is_one_of(&[
|
234
|
+
OperandSize::Size16,
|
235
|
+
OperandSize::Size32,
|
236
|
+
OperandSize::Size64
|
237
|
+
]));
|
238
|
+
Self::UnaryRmR {
|
239
|
+
size,
|
240
|
+
op,
|
241
|
+
src: GprMem::new(src).unwrap(),
|
242
|
+
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
243
|
+
}
|
244
|
+
}
|
245
|
+
|
246
|
+
pub(crate) fn not(size: OperandSize, src: Writable<Reg>) -> Inst {
|
247
|
+
debug_assert_eq!(src.to_reg().class(), RegClass::Int);
|
248
|
+
Inst::Not {
|
249
|
+
size,
|
250
|
+
src: Gpr::new(src.to_reg()).unwrap(),
|
251
|
+
dst: WritableGpr::from_writable_reg(src).unwrap(),
|
252
|
+
}
|
253
|
+
}
|
254
|
+
|
255
|
+
pub(crate) fn div(
|
256
|
+
size: OperandSize,
|
257
|
+
sign: DivSignedness,
|
258
|
+
trap: TrapCode,
|
259
|
+
divisor: RegMem,
|
260
|
+
dividend_lo: Gpr,
|
261
|
+
dividend_hi: Gpr,
|
262
|
+
dst_quotient: WritableGpr,
|
263
|
+
dst_remainder: WritableGpr,
|
264
|
+
) -> Inst {
|
265
|
+
divisor.assert_regclass_is(RegClass::Int);
|
266
|
+
Inst::Div {
|
267
|
+
size,
|
268
|
+
sign,
|
269
|
+
trap,
|
270
|
+
divisor: GprMem::new(divisor).unwrap(),
|
271
|
+
dividend_lo,
|
272
|
+
dividend_hi,
|
273
|
+
dst_quotient,
|
274
|
+
dst_remainder,
|
275
|
+
}
|
276
|
+
}
|
277
|
+
|
278
|
+
pub(crate) fn div8(
|
279
|
+
sign: DivSignedness,
|
280
|
+
trap: TrapCode,
|
281
|
+
divisor: RegMem,
|
282
|
+
dividend: Gpr,
|
283
|
+
dst: WritableGpr,
|
284
|
+
) -> Inst {
|
285
|
+
divisor.assert_regclass_is(RegClass::Int);
|
286
|
+
Inst::Div8 {
|
287
|
+
sign,
|
288
|
+
trap,
|
289
|
+
divisor: GprMem::new(divisor).unwrap(),
|
290
|
+
dividend,
|
291
|
+
dst,
|
292
|
+
}
|
293
|
+
}
|
294
|
+
|
295
|
+
pub(crate) fn imm(dst_size: OperandSize, simm64: u64, dst: Writable<Reg>) -> Inst {
|
296
|
+
debug_assert!(dst_size.is_one_of(&[OperandSize::Size32, OperandSize::Size64]));
|
297
|
+
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
298
|
+
// Try to generate a 32-bit immediate when the upper high bits are zeroed (which matches
|
299
|
+
// the semantics of movl).
|
300
|
+
let dst_size = match dst_size {
|
301
|
+
OperandSize::Size64 if simm64 > u32::max_value() as u64 => OperandSize::Size64,
|
302
|
+
_ => OperandSize::Size32,
|
303
|
+
};
|
304
|
+
Inst::Imm {
|
305
|
+
dst_size,
|
306
|
+
simm64,
|
307
|
+
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
308
|
+
}
|
309
|
+
}
|
310
|
+
|
311
|
+
pub(crate) fn mov_r_r(size: OperandSize, src: Reg, dst: Writable<Reg>) -> Inst {
|
312
|
+
debug_assert!(size.is_one_of(&[OperandSize::Size32, OperandSize::Size64]));
|
313
|
+
debug_assert!(src.class() == RegClass::Int);
|
314
|
+
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
315
|
+
let src = Gpr::new(src).unwrap();
|
316
|
+
let dst = WritableGpr::from_writable_reg(dst).unwrap();
|
317
|
+
Inst::MovRR { size, src, dst }
|
318
|
+
}
|
319
|
+
|
320
|
+
/// Convenient helper for unary float operations.
|
321
|
+
pub(crate) fn xmm_unary_rm_r(op: SseOpcode, src: RegMem, dst: Writable<Reg>) -> Inst {
|
322
|
+
src.assert_regclass_is(RegClass::Float);
|
323
|
+
debug_assert!(dst.to_reg().class() == RegClass::Float);
|
324
|
+
Inst::XmmUnaryRmR {
|
325
|
+
op,
|
326
|
+
src: XmmMemAligned::new(src).unwrap(),
|
327
|
+
dst: WritableXmm::from_writable_reg(dst).unwrap(),
|
328
|
+
}
|
329
|
+
}
|
330
|
+
|
331
|
+
pub(crate) fn xmm_rm_r(op: SseOpcode, src: RegMem, dst: Writable<Reg>) -> Self {
|
332
|
+
src.assert_regclass_is(RegClass::Float);
|
333
|
+
debug_assert!(dst.to_reg().class() == RegClass::Float);
|
334
|
+
Inst::XmmRmR {
|
335
|
+
op,
|
336
|
+
src1: Xmm::new(dst.to_reg()).unwrap(),
|
337
|
+
src2: XmmMemAligned::new(src).unwrap(),
|
338
|
+
dst: WritableXmm::from_writable_reg(dst).unwrap(),
|
339
|
+
}
|
340
|
+
}
|
341
|
+
|
342
|
+
#[cfg(test)]
|
343
|
+
pub(crate) fn xmm_rmr_vex3(op: AvxOpcode, src3: RegMem, src2: Reg, dst: Writable<Reg>) -> Self {
|
344
|
+
src3.assert_regclass_is(RegClass::Float);
|
345
|
+
debug_assert!(src2.class() == RegClass::Float);
|
346
|
+
debug_assert!(dst.to_reg().class() == RegClass::Float);
|
347
|
+
Inst::XmmRmRVex3 {
|
348
|
+
op,
|
349
|
+
src3: XmmMem::new(src3).unwrap(),
|
350
|
+
src2: Xmm::new(src2).unwrap(),
|
351
|
+
src1: Xmm::new(dst.to_reg()).unwrap(),
|
352
|
+
dst: WritableXmm::from_writable_reg(dst).unwrap(),
|
353
|
+
}
|
354
|
+
}
|
355
|
+
|
356
|
+
pub(crate) fn xmm_mov_r_m(op: SseOpcode, src: Reg, dst: impl Into<SyntheticAmode>) -> Inst {
|
357
|
+
debug_assert!(src.class() == RegClass::Float);
|
358
|
+
Inst::XmmMovRM {
|
359
|
+
op,
|
360
|
+
src: Xmm::new(src).unwrap(),
|
361
|
+
dst: dst.into(),
|
362
|
+
}
|
363
|
+
}
|
364
|
+
|
365
|
+
pub(crate) fn xmm_to_gpr(
|
366
|
+
op: SseOpcode,
|
367
|
+
src: Reg,
|
368
|
+
dst: Writable<Reg>,
|
369
|
+
dst_size: OperandSize,
|
370
|
+
) -> Inst {
|
371
|
+
debug_assert!(src.class() == RegClass::Float);
|
372
|
+
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
373
|
+
debug_assert!(dst_size.is_one_of(&[OperandSize::Size32, OperandSize::Size64]));
|
374
|
+
Inst::XmmToGpr {
|
375
|
+
op,
|
376
|
+
src: Xmm::new(src).unwrap(),
|
377
|
+
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
378
|
+
dst_size,
|
379
|
+
}
|
380
|
+
}
|
381
|
+
|
382
|
+
pub(crate) fn gpr_to_xmm(
|
383
|
+
op: SseOpcode,
|
384
|
+
src: RegMem,
|
385
|
+
src_size: OperandSize,
|
386
|
+
dst: Writable<Reg>,
|
387
|
+
) -> Inst {
|
388
|
+
src.assert_regclass_is(RegClass::Int);
|
389
|
+
debug_assert!(src_size.is_one_of(&[OperandSize::Size32, OperandSize::Size64]));
|
390
|
+
debug_assert!(dst.to_reg().class() == RegClass::Float);
|
391
|
+
Inst::GprToXmm {
|
392
|
+
op,
|
393
|
+
src: GprMem::new(src).unwrap(),
|
394
|
+
dst: WritableXmm::from_writable_reg(dst).unwrap(),
|
395
|
+
src_size,
|
396
|
+
}
|
397
|
+
}
|
398
|
+
|
399
|
+
pub(crate) fn xmm_cmp_rm_r(op: SseOpcode, src1: Reg, src2: RegMem) -> Inst {
|
400
|
+
src2.assert_regclass_is(RegClass::Float);
|
401
|
+
debug_assert!(src1.class() == RegClass::Float);
|
402
|
+
let src2 = XmmMemAligned::new(src2).unwrap();
|
403
|
+
let src1 = Xmm::new(src1).unwrap();
|
404
|
+
Inst::XmmCmpRmR { op, src1, src2 }
|
405
|
+
}
|
406
|
+
|
407
|
+
#[allow(dead_code)]
|
408
|
+
pub(crate) fn xmm_min_max_seq(
|
409
|
+
size: OperandSize,
|
410
|
+
is_min: bool,
|
411
|
+
lhs: Reg,
|
412
|
+
rhs: Reg,
|
413
|
+
dst: Writable<Reg>,
|
414
|
+
) -> Inst {
|
415
|
+
debug_assert!(size.is_one_of(&[OperandSize::Size32, OperandSize::Size64]));
|
416
|
+
debug_assert_eq!(lhs.class(), RegClass::Float);
|
417
|
+
debug_assert_eq!(rhs.class(), RegClass::Float);
|
418
|
+
debug_assert_eq!(dst.to_reg().class(), RegClass::Float);
|
419
|
+
Inst::XmmMinMaxSeq {
|
420
|
+
size,
|
421
|
+
is_min,
|
422
|
+
lhs: Xmm::new(lhs).unwrap(),
|
423
|
+
rhs: Xmm::new(rhs).unwrap(),
|
424
|
+
dst: WritableXmm::from_writable_reg(dst).unwrap(),
|
425
|
+
}
|
426
|
+
}
|
427
|
+
|
428
|
+
pub(crate) fn movzx_rm_r(ext_mode: ExtMode, src: RegMem, dst: Writable<Reg>) -> Inst {
|
429
|
+
src.assert_regclass_is(RegClass::Int);
|
430
|
+
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
431
|
+
let src = GprMem::new(src).unwrap();
|
432
|
+
let dst = WritableGpr::from_writable_reg(dst).unwrap();
|
433
|
+
Inst::MovzxRmR { ext_mode, src, dst }
|
434
|
+
}
|
435
|
+
|
436
|
+
pub(crate) fn movsx_rm_r(ext_mode: ExtMode, src: RegMem, dst: Writable<Reg>) -> Inst {
|
437
|
+
src.assert_regclass_is(RegClass::Int);
|
438
|
+
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
439
|
+
let src = GprMem::new(src).unwrap();
|
440
|
+
let dst = WritableGpr::from_writable_reg(dst).unwrap();
|
441
|
+
Inst::MovsxRmR { ext_mode, src, dst }
|
442
|
+
}
|
443
|
+
|
444
|
+
pub(crate) fn mov64_m_r(src: impl Into<SyntheticAmode>, dst: Writable<Reg>) -> Inst {
|
445
|
+
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
446
|
+
Inst::Mov64MR {
|
447
|
+
src: src.into(),
|
448
|
+
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
449
|
+
}
|
450
|
+
}
|
451
|
+
|
452
|
+
pub(crate) fn mov_r_m(size: OperandSize, src: Reg, dst: impl Into<SyntheticAmode>) -> Inst {
|
453
|
+
debug_assert!(src.class() == RegClass::Int);
|
454
|
+
Inst::MovRM {
|
455
|
+
size,
|
456
|
+
src: Gpr::new(src).unwrap(),
|
457
|
+
dst: dst.into(),
|
458
|
+
}
|
459
|
+
}
|
460
|
+
|
461
|
+
pub(crate) fn lea(addr: impl Into<SyntheticAmode>, dst: Writable<Reg>) -> Inst {
|
462
|
+
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
463
|
+
Inst::LoadEffectiveAddress {
|
464
|
+
addr: addr.into(),
|
465
|
+
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
466
|
+
size: OperandSize::Size64,
|
467
|
+
}
|
468
|
+
}
|
469
|
+
|
470
|
+
pub(crate) fn shift_r(
|
471
|
+
size: OperandSize,
|
472
|
+
kind: ShiftKind,
|
473
|
+
num_bits: Imm8Gpr,
|
474
|
+
src: Reg,
|
475
|
+
dst: Writable<Reg>,
|
476
|
+
) -> Inst {
|
477
|
+
if let &Imm8Reg::Imm8 { imm: num_bits } = num_bits.as_imm8_reg() {
|
478
|
+
debug_assert!(num_bits < size.to_bits());
|
479
|
+
}
|
480
|
+
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
481
|
+
Inst::ShiftR {
|
482
|
+
size,
|
483
|
+
kind,
|
484
|
+
src: Gpr::new(src).unwrap(),
|
485
|
+
num_bits,
|
486
|
+
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
487
|
+
}
|
488
|
+
}
|
489
|
+
|
490
|
+
/// Does a comparison of dst - src for operands of size `size`, as stated by the machine
|
491
|
+
/// instruction semantics. Be careful with the order of parameters!
|
492
|
+
pub(crate) fn cmp_rmi_r(size: OperandSize, src1: Reg, src2: RegMemImm) -> Inst {
|
493
|
+
src2.assert_regclass_is(RegClass::Int);
|
494
|
+
debug_assert_eq!(src1.class(), RegClass::Int);
|
495
|
+
Inst::CmpRmiR {
|
496
|
+
size,
|
497
|
+
src1: Gpr::new(src1).unwrap(),
|
498
|
+
src2: GprMemImm::new(src2).unwrap(),
|
499
|
+
opcode: CmpOpcode::Cmp,
|
500
|
+
}
|
501
|
+
}
|
502
|
+
|
503
|
+
pub(crate) fn trap(trap_code: TrapCode) -> Inst {
|
504
|
+
Inst::Ud2 { trap_code }
|
505
|
+
}
|
506
|
+
|
507
|
+
pub(crate) fn trap_if(cc: CC, trap_code: TrapCode) -> Inst {
|
508
|
+
Inst::TrapIf { cc, trap_code }
|
509
|
+
}
|
510
|
+
|
511
|
+
pub(crate) fn cmove(size: OperandSize, cc: CC, src: RegMem, dst: Writable<Reg>) -> Inst {
|
512
|
+
debug_assert!(size.is_one_of(&[
|
513
|
+
OperandSize::Size16,
|
514
|
+
OperandSize::Size32,
|
515
|
+
OperandSize::Size64
|
516
|
+
]));
|
517
|
+
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
518
|
+
Inst::Cmove {
|
519
|
+
size,
|
520
|
+
cc,
|
521
|
+
consequent: GprMem::new(src).unwrap(),
|
522
|
+
alternative: Gpr::new(dst.to_reg()).unwrap(),
|
523
|
+
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
524
|
+
}
|
525
|
+
}
|
526
|
+
|
527
|
+
pub(crate) fn push64(src: RegMemImm) -> Inst {
|
528
|
+
src.assert_regclass_is(RegClass::Int);
|
529
|
+
let src = GprMemImm::new(src).unwrap();
|
530
|
+
Inst::Push64 { src }
|
531
|
+
}
|
532
|
+
|
533
|
+
pub(crate) fn pop64(dst: Writable<Reg>) -> Inst {
|
534
|
+
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
535
|
+
let dst = WritableGpr::from_writable_reg(dst).unwrap();
|
536
|
+
Inst::Pop64 { dst }
|
537
|
+
}
|
538
|
+
|
539
|
+
pub(crate) fn call_known(
|
540
|
+
dest: ExternalName,
|
541
|
+
uses: CallArgList,
|
542
|
+
defs: CallRetList,
|
543
|
+
clobbers: PRegSet,
|
544
|
+
opcode: Opcode,
|
545
|
+
callee_pop_size: u32,
|
546
|
+
callee_conv: CallConv,
|
547
|
+
) -> Inst {
|
548
|
+
Inst::CallKnown {
|
549
|
+
dest,
|
550
|
+
opcode,
|
551
|
+
info: Some(Box::new(CallInfo {
|
552
|
+
uses,
|
553
|
+
defs,
|
554
|
+
clobbers,
|
555
|
+
callee_pop_size,
|
556
|
+
callee_conv,
|
557
|
+
})),
|
558
|
+
}
|
559
|
+
}
|
560
|
+
|
561
|
+
pub(crate) fn call_unknown(
|
562
|
+
dest: RegMem,
|
563
|
+
uses: CallArgList,
|
564
|
+
defs: CallRetList,
|
565
|
+
clobbers: PRegSet,
|
566
|
+
opcode: Opcode,
|
567
|
+
callee_pop_size: u32,
|
568
|
+
callee_conv: CallConv,
|
569
|
+
) -> Inst {
|
570
|
+
dest.assert_regclass_is(RegClass::Int);
|
571
|
+
Inst::CallUnknown {
|
572
|
+
dest,
|
573
|
+
opcode,
|
574
|
+
info: Some(Box::new(CallInfo {
|
575
|
+
uses,
|
576
|
+
defs,
|
577
|
+
clobbers,
|
578
|
+
callee_pop_size,
|
579
|
+
callee_conv,
|
580
|
+
})),
|
581
|
+
}
|
582
|
+
}
|
583
|
+
|
584
|
+
pub(crate) fn ret(stack_bytes_to_pop: u32) -> Inst {
|
585
|
+
Inst::Ret { stack_bytes_to_pop }
|
586
|
+
}
|
587
|
+
|
588
|
+
pub(crate) fn jmp_known(dst: MachLabel) -> Inst {
|
589
|
+
Inst::JmpKnown { dst }
|
590
|
+
}
|
591
|
+
|
592
|
+
pub(crate) fn jmp_unknown(target: RegMem) -> Inst {
|
593
|
+
target.assert_regclass_is(RegClass::Int);
|
594
|
+
Inst::JmpUnknown { target }
|
595
|
+
}
|
596
|
+
|
597
|
+
/// Choose which instruction to use for loading a register value from memory. For loads smaller
|
598
|
+
/// than 64 bits, this method expects a way to extend the value (i.e. [ExtKind::SignExtend],
|
599
|
+
/// [ExtKind::ZeroExtend]); loads with no extension necessary will ignore this.
|
600
|
+
pub(crate) fn load(
|
601
|
+
ty: Type,
|
602
|
+
from_addr: impl Into<SyntheticAmode>,
|
603
|
+
to_reg: Writable<Reg>,
|
604
|
+
ext_kind: ExtKind,
|
605
|
+
) -> Inst {
|
606
|
+
let rc = to_reg.to_reg().class();
|
607
|
+
match rc {
|
608
|
+
RegClass::Int => {
|
609
|
+
let ext_mode = match ty.bytes() {
|
610
|
+
1 => Some(ExtMode::BQ),
|
611
|
+
2 => Some(ExtMode::WQ),
|
612
|
+
4 => Some(ExtMode::LQ),
|
613
|
+
8 => None,
|
614
|
+
_ => unreachable!("the type should never use a scalar load: {}", ty),
|
615
|
+
};
|
616
|
+
if let Some(ext_mode) = ext_mode {
|
617
|
+
// Values smaller than 64 bits must be extended in some way.
|
618
|
+
match ext_kind {
|
619
|
+
ExtKind::SignExtend => {
|
620
|
+
Inst::movsx_rm_r(ext_mode, RegMem::mem(from_addr), to_reg)
|
621
|
+
}
|
622
|
+
ExtKind::ZeroExtend => {
|
623
|
+
Inst::movzx_rm_r(ext_mode, RegMem::mem(from_addr), to_reg)
|
624
|
+
}
|
625
|
+
ExtKind::None => panic!(
|
626
|
+
"expected an extension kind for extension mode: {:?}",
|
627
|
+
ext_mode
|
628
|
+
),
|
629
|
+
}
|
630
|
+
} else {
|
631
|
+
// 64-bit values can be moved directly.
|
632
|
+
Inst::mov64_m_r(from_addr, to_reg)
|
633
|
+
}
|
634
|
+
}
|
635
|
+
RegClass::Float => {
|
636
|
+
let opcode = match ty {
|
637
|
+
types::F32 => SseOpcode::Movss,
|
638
|
+
types::F64 => SseOpcode::Movsd,
|
639
|
+
types::F32X4 => SseOpcode::Movups,
|
640
|
+
types::F64X2 => SseOpcode::Movupd,
|
641
|
+
_ if ty.is_vector() && ty.bits() == 128 => SseOpcode::Movdqu,
|
642
|
+
_ => unimplemented!("unable to load type: {}", ty),
|
643
|
+
};
|
644
|
+
Inst::xmm_unary_rm_r(opcode, RegMem::mem(from_addr), to_reg)
|
645
|
+
}
|
646
|
+
RegClass::Vector => unreachable!(),
|
647
|
+
}
|
648
|
+
}
|
649
|
+
|
650
|
+
/// Choose which instruction to use for storing a register value to memory.
|
651
|
+
pub(crate) fn store(ty: Type, from_reg: Reg, to_addr: impl Into<SyntheticAmode>) -> Inst {
|
652
|
+
let rc = from_reg.class();
|
653
|
+
match rc {
|
654
|
+
RegClass::Int => Inst::mov_r_m(OperandSize::from_ty(ty), from_reg, to_addr),
|
655
|
+
RegClass::Float => {
|
656
|
+
let opcode = match ty {
|
657
|
+
types::F32 => SseOpcode::Movss,
|
658
|
+
types::F64 => SseOpcode::Movsd,
|
659
|
+
types::F32X4 => SseOpcode::Movups,
|
660
|
+
types::F64X2 => SseOpcode::Movupd,
|
661
|
+
_ if ty.is_vector() && ty.bits() == 128 => SseOpcode::Movdqu,
|
662
|
+
_ => unimplemented!("unable to store type: {}", ty),
|
663
|
+
};
|
664
|
+
Inst::xmm_mov_r_m(opcode, from_reg, to_addr)
|
665
|
+
}
|
666
|
+
RegClass::Vector => unreachable!(),
|
667
|
+
}
|
668
|
+
}
|
669
|
+
}
|
670
|
+
|
671
|
+
//=============================================================================
|
672
|
+
// Instructions: printing
|
673
|
+
|
674
|
+
impl PrettyPrint for Inst {
|
675
|
+
fn pretty_print(&self, _size: u8) -> String {
|
676
|
+
fn ljustify(s: String) -> String {
|
677
|
+
let w = 7;
|
678
|
+
if s.len() >= w {
|
679
|
+
s
|
680
|
+
} else {
|
681
|
+
let need = usize::min(w, w - s.len());
|
682
|
+
s + &format!("{nil: <width$}", nil = "", width = need)
|
683
|
+
}
|
684
|
+
}
|
685
|
+
|
686
|
+
fn ljustify2(s1: String, s2: String) -> String {
|
687
|
+
ljustify(s1 + &s2)
|
688
|
+
}
|
689
|
+
|
690
|
+
fn suffix_lq(size: OperandSize) -> String {
|
691
|
+
match size {
|
692
|
+
OperandSize::Size32 => "l",
|
693
|
+
OperandSize::Size64 => "q",
|
694
|
+
_ => unreachable!(),
|
695
|
+
}
|
696
|
+
.to_string()
|
697
|
+
}
|
698
|
+
|
699
|
+
#[allow(dead_code)]
|
700
|
+
fn suffix_lqb(size: OperandSize) -> String {
|
701
|
+
match size {
|
702
|
+
OperandSize::Size32 => "l",
|
703
|
+
OperandSize::Size64 => "q",
|
704
|
+
_ => unreachable!(),
|
705
|
+
}
|
706
|
+
.to_string()
|
707
|
+
}
|
708
|
+
|
709
|
+
fn suffix_bwlq(size: OperandSize) -> String {
|
710
|
+
match size {
|
711
|
+
OperandSize::Size8 => "b".to_string(),
|
712
|
+
OperandSize::Size16 => "w".to_string(),
|
713
|
+
OperandSize::Size32 => "l".to_string(),
|
714
|
+
OperandSize::Size64 => "q".to_string(),
|
715
|
+
}
|
716
|
+
}
|
717
|
+
|
718
|
+
match self {
|
719
|
+
Inst::Nop { len } => format!("{} len={}", ljustify("nop".to_string()), len),
|
720
|
+
|
721
|
+
Inst::AluRmiR {
|
722
|
+
size,
|
723
|
+
op,
|
724
|
+
src1,
|
725
|
+
src2,
|
726
|
+
dst,
|
727
|
+
} => {
|
728
|
+
let size_bytes = size.to_bytes();
|
729
|
+
let src1 = pretty_print_reg(src1.to_reg(), size_bytes);
|
730
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size_bytes);
|
731
|
+
let src2 = src2.pretty_print(size_bytes);
|
732
|
+
let op = ljustify2(op.to_string(), suffix_bwlq(*size));
|
733
|
+
format!("{op} {src1}, {src2}, {dst}")
|
734
|
+
}
|
735
|
+
Inst::AluConstOp { op, dst, size } => {
|
736
|
+
let size_bytes = size.to_bytes();
|
737
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size_bytes);
|
738
|
+
let op = ljustify2(op.to_string(), suffix_lqb(*size));
|
739
|
+
format!("{op} {dst}, {dst}, {dst}")
|
740
|
+
}
|
741
|
+
Inst::AluRM {
|
742
|
+
size,
|
743
|
+
op,
|
744
|
+
src1_dst,
|
745
|
+
src2,
|
746
|
+
} => {
|
747
|
+
let size_bytes = size.to_bytes();
|
748
|
+
let src2 = pretty_print_reg(src2.to_reg(), size_bytes);
|
749
|
+
let src1_dst = src1_dst.pretty_print(size_bytes);
|
750
|
+
let op = ljustify2(op.to_string(), suffix_bwlq(*size));
|
751
|
+
format!("{op} {src2}, {src1_dst}")
|
752
|
+
}
|
753
|
+
Inst::AluRmRVex {
|
754
|
+
size,
|
755
|
+
op,
|
756
|
+
src1,
|
757
|
+
src2,
|
758
|
+
dst,
|
759
|
+
} => {
|
760
|
+
let size_bytes = size.to_bytes();
|
761
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes());
|
762
|
+
let src1 = pretty_print_reg(src1.to_reg(), size_bytes);
|
763
|
+
let src2 = src2.pretty_print(size_bytes);
|
764
|
+
let op = ljustify2(op.to_string(), String::new());
|
765
|
+
format!("{op} {src2}, {src1}, {dst}")
|
766
|
+
}
|
767
|
+
Inst::UnaryRmR { src, dst, op, size } => {
|
768
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes());
|
769
|
+
let src = src.pretty_print(size.to_bytes());
|
770
|
+
let op = ljustify2(op.to_string(), suffix_bwlq(*size));
|
771
|
+
format!("{op} {src}, {dst}")
|
772
|
+
}
|
773
|
+
|
774
|
+
Inst::UnaryRmRVex { src, dst, op, size } => {
|
775
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes());
|
776
|
+
let src = src.pretty_print(size.to_bytes());
|
777
|
+
let op = ljustify2(op.to_string(), suffix_bwlq(*size));
|
778
|
+
format!("{op} {src}, {dst}")
|
779
|
+
}
|
780
|
+
|
781
|
+
Inst::UnaryRmRImmVex {
|
782
|
+
src,
|
783
|
+
dst,
|
784
|
+
op,
|
785
|
+
size,
|
786
|
+
imm,
|
787
|
+
} => {
|
788
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes());
|
789
|
+
let src = src.pretty_print(size.to_bytes());
|
790
|
+
format!(
|
791
|
+
"{} ${imm}, {src}, {dst}",
|
792
|
+
ljustify2(op.to_string(), suffix_bwlq(*size))
|
793
|
+
)
|
794
|
+
}
|
795
|
+
|
796
|
+
Inst::Not { size, src, dst } => {
|
797
|
+
let src = pretty_print_reg(src.to_reg(), size.to_bytes());
|
798
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes());
|
799
|
+
let op = ljustify2("not".to_string(), suffix_bwlq(*size));
|
800
|
+
format!("{op} {src}, {dst}")
|
801
|
+
}
|
802
|
+
|
803
|
+
Inst::Neg { size, src, dst } => {
|
804
|
+
let src = pretty_print_reg(src.to_reg(), size.to_bytes());
|
805
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes());
|
806
|
+
let op = ljustify2("neg".to_string(), suffix_bwlq(*size));
|
807
|
+
format!("{op} {src}, {dst}")
|
808
|
+
}
|
809
|
+
|
810
|
+
Inst::Div {
|
811
|
+
size,
|
812
|
+
sign,
|
813
|
+
trap,
|
814
|
+
divisor,
|
815
|
+
dividend_lo,
|
816
|
+
dividend_hi,
|
817
|
+
dst_quotient,
|
818
|
+
dst_remainder,
|
819
|
+
} => {
|
820
|
+
let divisor = divisor.pretty_print(size.to_bytes());
|
821
|
+
let dividend_lo = pretty_print_reg(dividend_lo.to_reg(), size.to_bytes());
|
822
|
+
let dividend_hi = pretty_print_reg(dividend_hi.to_reg(), size.to_bytes());
|
823
|
+
let dst_quotient =
|
824
|
+
pretty_print_reg(dst_quotient.to_reg().to_reg(), size.to_bytes());
|
825
|
+
let dst_remainder =
|
826
|
+
pretty_print_reg(dst_remainder.to_reg().to_reg(), size.to_bytes());
|
827
|
+
let op = ljustify(match sign {
|
828
|
+
DivSignedness::Signed => "idiv".to_string(),
|
829
|
+
DivSignedness::Unsigned => "div".to_string(),
|
830
|
+
});
|
831
|
+
format!(
|
832
|
+
"{op} {dividend_lo}, {dividend_hi}, {divisor}, {dst_quotient}, {dst_remainder} ; trap={trap}"
|
833
|
+
)
|
834
|
+
}
|
835
|
+
|
836
|
+
Inst::Div8 {
|
837
|
+
sign,
|
838
|
+
trap,
|
839
|
+
divisor,
|
840
|
+
dividend,
|
841
|
+
dst,
|
842
|
+
} => {
|
843
|
+
let divisor = divisor.pretty_print(1);
|
844
|
+
let dividend = pretty_print_reg(dividend.to_reg(), 1);
|
845
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 1);
|
846
|
+
let op = ljustify(match sign {
|
847
|
+
DivSignedness::Signed => "idiv".to_string(),
|
848
|
+
DivSignedness::Unsigned => "div".to_string(),
|
849
|
+
});
|
850
|
+
format!("{op} {dividend}, {divisor}, {dst} ; trap={trap}")
|
851
|
+
}
|
852
|
+
|
853
|
+
Inst::Mul {
|
854
|
+
size,
|
855
|
+
signed,
|
856
|
+
src1,
|
857
|
+
src2,
|
858
|
+
dst_lo,
|
859
|
+
dst_hi,
|
860
|
+
} => {
|
861
|
+
let src1 = pretty_print_reg(src1.to_reg(), size.to_bytes());
|
862
|
+
let dst_lo = pretty_print_reg(dst_lo.to_reg().to_reg(), size.to_bytes());
|
863
|
+
let dst_hi = pretty_print_reg(dst_hi.to_reg().to_reg(), size.to_bytes());
|
864
|
+
let src2 = src2.pretty_print(size.to_bytes());
|
865
|
+
let suffix = suffix_bwlq(*size);
|
866
|
+
let op = ljustify(if *signed {
|
867
|
+
format!("imul{suffix}")
|
868
|
+
} else {
|
869
|
+
format!("mul{suffix}")
|
870
|
+
});
|
871
|
+
format!("{op} {src1}, {src2}, {dst_lo}, {dst_hi}")
|
872
|
+
}
|
873
|
+
|
874
|
+
Inst::Mul8 {
|
875
|
+
signed,
|
876
|
+
src1,
|
877
|
+
src2,
|
878
|
+
dst,
|
879
|
+
} => {
|
880
|
+
let src1 = pretty_print_reg(src1.to_reg(), 1);
|
881
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 1);
|
882
|
+
let src2 = src2.pretty_print(1);
|
883
|
+
let op = ljustify(if *signed {
|
884
|
+
"imulb".to_string()
|
885
|
+
} else {
|
886
|
+
"mulb".to_string()
|
887
|
+
});
|
888
|
+
format!("{op} {src1}, {src2}, {dst}")
|
889
|
+
}
|
890
|
+
|
891
|
+
Inst::IMul {
|
892
|
+
size,
|
893
|
+
src1,
|
894
|
+
src2,
|
895
|
+
dst,
|
896
|
+
} => {
|
897
|
+
let src1 = pretty_print_reg(src1.to_reg(), size.to_bytes());
|
898
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes());
|
899
|
+
let src2 = src2.pretty_print(size.to_bytes());
|
900
|
+
let suffix = suffix_bwlq(*size);
|
901
|
+
let op = ljustify(format!("imul{suffix}"));
|
902
|
+
format!("{op} {src1}, {src2}, {dst}")
|
903
|
+
}
|
904
|
+
|
905
|
+
Inst::IMulImm {
|
906
|
+
size,
|
907
|
+
src1,
|
908
|
+
src2,
|
909
|
+
dst,
|
910
|
+
} => {
|
911
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes());
|
912
|
+
let src1 = src1.pretty_print(size.to_bytes());
|
913
|
+
let suffix = suffix_bwlq(*size);
|
914
|
+
let op = ljustify(format!("imul{suffix}"));
|
915
|
+
format!("{op} {src1}, {src2:#x}, {dst}")
|
916
|
+
}
|
917
|
+
|
918
|
+
Inst::CheckedSRemSeq {
|
919
|
+
size,
|
920
|
+
divisor,
|
921
|
+
dividend_lo,
|
922
|
+
dividend_hi,
|
923
|
+
dst_quotient,
|
924
|
+
dst_remainder,
|
925
|
+
} => {
|
926
|
+
let divisor = pretty_print_reg(divisor.to_reg(), size.to_bytes());
|
927
|
+
let dividend_lo = pretty_print_reg(dividend_lo.to_reg(), size.to_bytes());
|
928
|
+
let dividend_hi = pretty_print_reg(dividend_hi.to_reg(), size.to_bytes());
|
929
|
+
let dst_quotient =
|
930
|
+
pretty_print_reg(dst_quotient.to_reg().to_reg(), size.to_bytes());
|
931
|
+
let dst_remainder =
|
932
|
+
pretty_print_reg(dst_remainder.to_reg().to_reg(), size.to_bytes());
|
933
|
+
format!(
|
934
|
+
"checked_srem_seq {dividend_lo}, {dividend_hi}, \
|
935
|
+
{divisor}, {dst_quotient}, {dst_remainder}",
|
936
|
+
)
|
937
|
+
}
|
938
|
+
|
939
|
+
Inst::CheckedSRemSeq8 {
|
940
|
+
divisor,
|
941
|
+
dividend,
|
942
|
+
dst,
|
943
|
+
} => {
|
944
|
+
let divisor = pretty_print_reg(divisor.to_reg(), 1);
|
945
|
+
let dividend = pretty_print_reg(dividend.to_reg(), 1);
|
946
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 1);
|
947
|
+
format!("checked_srem_seq {dividend}, {divisor}, {dst}")
|
948
|
+
}
|
949
|
+
|
950
|
+
Inst::SignExtendData { size, src, dst } => {
|
951
|
+
let src = pretty_print_reg(src.to_reg(), size.to_bytes());
|
952
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes());
|
953
|
+
let op = match size {
|
954
|
+
OperandSize::Size8 => "cbw",
|
955
|
+
OperandSize::Size16 => "cwd",
|
956
|
+
OperandSize::Size32 => "cdq",
|
957
|
+
OperandSize::Size64 => "cqo",
|
958
|
+
};
|
959
|
+
format!("{op} {src}, {dst}")
|
960
|
+
}
|
961
|
+
|
962
|
+
Inst::XmmUnaryRmR { op, src, dst, .. } => {
|
963
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), op.src_size());
|
964
|
+
let src = src.pretty_print(op.src_size());
|
965
|
+
let op = ljustify(op.to_string());
|
966
|
+
format!("{op} {src}, {dst}")
|
967
|
+
}
|
968
|
+
|
969
|
+
Inst::XmmUnaryRmRUnaligned { op, src, dst, .. } => {
|
970
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), op.src_size());
|
971
|
+
let src = src.pretty_print(op.src_size());
|
972
|
+
let op = ljustify(op.to_string());
|
973
|
+
format!("{op} {src}, {dst}")
|
974
|
+
}
|
975
|
+
|
976
|
+
Inst::XmmUnaryRmRImm {
|
977
|
+
op, src, dst, imm, ..
|
978
|
+
} => {
|
979
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), op.src_size());
|
980
|
+
let src = src.pretty_print(op.src_size());
|
981
|
+
let op = ljustify(op.to_string());
|
982
|
+
format!("{op} ${imm}, {src}, {dst}")
|
983
|
+
}
|
984
|
+
|
985
|
+
Inst::XmmUnaryRmRVex { op, src, dst, .. } => {
|
986
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
987
|
+
let src = src.pretty_print(8);
|
988
|
+
let op = ljustify(op.to_string());
|
989
|
+
format!("{op} {src}, {dst}")
|
990
|
+
}
|
991
|
+
|
992
|
+
Inst::XmmUnaryRmRImmVex {
|
993
|
+
op, src, dst, imm, ..
|
994
|
+
} => {
|
995
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
996
|
+
let src = src.pretty_print(8);
|
997
|
+
let op = ljustify(op.to_string());
|
998
|
+
format!("{op} ${imm}, {src}, {dst}")
|
999
|
+
}
|
1000
|
+
|
1001
|
+
Inst::XmmUnaryRmREvex { op, src, dst, .. } => {
|
1002
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1003
|
+
let src = src.pretty_print(8);
|
1004
|
+
let op = ljustify(op.to_string());
|
1005
|
+
format!("{op} {src}, {dst}")
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
Inst::XmmUnaryRmRImmEvex {
|
1009
|
+
op, src, dst, imm, ..
|
1010
|
+
} => {
|
1011
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1012
|
+
let src = src.pretty_print(8);
|
1013
|
+
let op = ljustify(op.to_string());
|
1014
|
+
format!("{op} ${imm}, {src}, {dst}")
|
1015
|
+
}
|
1016
|
+
|
1017
|
+
Inst::XmmMovRM { op, src, dst, .. } => {
|
1018
|
+
let src = pretty_print_reg(src.to_reg(), 8);
|
1019
|
+
let dst = dst.pretty_print(8);
|
1020
|
+
let op = ljustify(op.to_string());
|
1021
|
+
format!("{op} {src}, {dst}")
|
1022
|
+
}
|
1023
|
+
|
1024
|
+
Inst::XmmMovRMVex { op, src, dst, .. } => {
|
1025
|
+
let src = pretty_print_reg(src.to_reg(), 8);
|
1026
|
+
let dst = dst.pretty_print(8);
|
1027
|
+
let op = ljustify(op.to_string());
|
1028
|
+
format!("{op} {src}, {dst}")
|
1029
|
+
}
|
1030
|
+
|
1031
|
+
Inst::XmmMovRMImm {
|
1032
|
+
op, src, dst, imm, ..
|
1033
|
+
} => {
|
1034
|
+
let src = pretty_print_reg(src.to_reg(), 8);
|
1035
|
+
let dst = dst.pretty_print(8);
|
1036
|
+
let op = ljustify(op.to_string());
|
1037
|
+
format!("{op} ${imm}, {src}, {dst}")
|
1038
|
+
}
|
1039
|
+
|
1040
|
+
Inst::XmmMovRMImmVex {
|
1041
|
+
op, src, dst, imm, ..
|
1042
|
+
} => {
|
1043
|
+
let src = pretty_print_reg(src.to_reg(), 8);
|
1044
|
+
let dst = dst.pretty_print(8);
|
1045
|
+
let op = ljustify(op.to_string());
|
1046
|
+
format!("{op} ${imm}, {src}, {dst}")
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
Inst::XmmRmR {
|
1050
|
+
op,
|
1051
|
+
src1,
|
1052
|
+
src2,
|
1053
|
+
dst,
|
1054
|
+
..
|
1055
|
+
} => {
|
1056
|
+
let src1 = pretty_print_reg(src1.to_reg(), 8);
|
1057
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1058
|
+
let src2 = src2.pretty_print(8);
|
1059
|
+
let op = ljustify(op.to_string());
|
1060
|
+
format!("{op} {src1}, {src2}, {dst}")
|
1061
|
+
}
|
1062
|
+
|
1063
|
+
Inst::XmmRmRUnaligned {
|
1064
|
+
op,
|
1065
|
+
src1,
|
1066
|
+
src2,
|
1067
|
+
dst,
|
1068
|
+
..
|
1069
|
+
} => {
|
1070
|
+
let src1 = pretty_print_reg(src1.to_reg(), 8);
|
1071
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1072
|
+
let src2 = src2.pretty_print(8);
|
1073
|
+
let op = ljustify(op.to_string());
|
1074
|
+
format!("{op} {src1}, {src2}, {dst}")
|
1075
|
+
}
|
1076
|
+
|
1077
|
+
Inst::XmmRmRBlend {
|
1078
|
+
op,
|
1079
|
+
src1,
|
1080
|
+
src2,
|
1081
|
+
mask,
|
1082
|
+
dst,
|
1083
|
+
} => {
|
1084
|
+
let src1 = pretty_print_reg(src1.to_reg(), 8);
|
1085
|
+
let mask = mask.to_reg();
|
1086
|
+
let mask = if mask.is_virtual() {
|
1087
|
+
format!(" <{}>", show_ireg_sized(mask, 8))
|
1088
|
+
} else {
|
1089
|
+
debug_assert_eq!(mask, regs::xmm0());
|
1090
|
+
String::new()
|
1091
|
+
};
|
1092
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1093
|
+
let src2 = src2.pretty_print(8);
|
1094
|
+
let op = ljustify(op.to_string());
|
1095
|
+
format!("{op} {src1}, {src2}, {dst}{mask}")
|
1096
|
+
}
|
1097
|
+
|
1098
|
+
Inst::XmmRmiRVex {
|
1099
|
+
op,
|
1100
|
+
src1,
|
1101
|
+
src2,
|
1102
|
+
dst,
|
1103
|
+
..
|
1104
|
+
} => {
|
1105
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1106
|
+
let src1 = pretty_print_reg(src1.to_reg(), 8);
|
1107
|
+
let src2 = src2.pretty_print(8);
|
1108
|
+
let op = ljustify(op.to_string());
|
1109
|
+
format!("{op} {src1}, {src2}, {dst}")
|
1110
|
+
}
|
1111
|
+
|
1112
|
+
Inst::XmmRmRImmVex {
|
1113
|
+
op,
|
1114
|
+
src1,
|
1115
|
+
src2,
|
1116
|
+
dst,
|
1117
|
+
imm,
|
1118
|
+
..
|
1119
|
+
} => {
|
1120
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1121
|
+
let src1 = pretty_print_reg(src1.to_reg(), 8);
|
1122
|
+
let src2 = src2.pretty_print(8);
|
1123
|
+
let op = ljustify(op.to_string());
|
1124
|
+
format!("{op} ${imm}, {src1}, {src2}, {dst}")
|
1125
|
+
}
|
1126
|
+
|
1127
|
+
Inst::XmmVexPinsr {
|
1128
|
+
op,
|
1129
|
+
src1,
|
1130
|
+
src2,
|
1131
|
+
dst,
|
1132
|
+
imm,
|
1133
|
+
..
|
1134
|
+
} => {
|
1135
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1136
|
+
let src1 = pretty_print_reg(src1.to_reg(), 8);
|
1137
|
+
let src2 = src2.pretty_print(8);
|
1138
|
+
let op = ljustify(op.to_string());
|
1139
|
+
format!("{op} ${imm}, {src1}, {src2}, {dst}")
|
1140
|
+
}
|
1141
|
+
|
1142
|
+
Inst::XmmRmRVex3 {
|
1143
|
+
op,
|
1144
|
+
src1,
|
1145
|
+
src2,
|
1146
|
+
src3,
|
1147
|
+
dst,
|
1148
|
+
..
|
1149
|
+
} => {
|
1150
|
+
let src1 = pretty_print_reg(src1.to_reg(), 8);
|
1151
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1152
|
+
let src2 = pretty_print_reg(src2.to_reg(), 8);
|
1153
|
+
let src3 = src3.pretty_print(8);
|
1154
|
+
let op = ljustify(op.to_string());
|
1155
|
+
format!("{op} {src1}, {src2}, {src3}, {dst}")
|
1156
|
+
}
|
1157
|
+
|
1158
|
+
Inst::XmmRmRBlendVex {
|
1159
|
+
op,
|
1160
|
+
src1,
|
1161
|
+
src2,
|
1162
|
+
mask,
|
1163
|
+
dst,
|
1164
|
+
..
|
1165
|
+
} => {
|
1166
|
+
let src1 = pretty_print_reg(src1.to_reg(), 8);
|
1167
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1168
|
+
let src2 = src2.pretty_print(8);
|
1169
|
+
let mask = pretty_print_reg(mask.to_reg(), 8);
|
1170
|
+
let op = ljustify(op.to_string());
|
1171
|
+
format!("{op} {src1}, {src2}, {mask}, {dst}")
|
1172
|
+
}
|
1173
|
+
|
1174
|
+
Inst::XmmRmREvex {
|
1175
|
+
op,
|
1176
|
+
src1,
|
1177
|
+
src2,
|
1178
|
+
dst,
|
1179
|
+
..
|
1180
|
+
} => {
|
1181
|
+
let src1 = pretty_print_reg(src1.to_reg(), 8);
|
1182
|
+
let src2 = src2.pretty_print(8);
|
1183
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1184
|
+
let op = ljustify(op.to_string());
|
1185
|
+
format!("{op} {src2}, {src1}, {dst}")
|
1186
|
+
}
|
1187
|
+
|
1188
|
+
Inst::XmmRmREvex3 {
|
1189
|
+
op,
|
1190
|
+
src1,
|
1191
|
+
src2,
|
1192
|
+
src3,
|
1193
|
+
dst,
|
1194
|
+
..
|
1195
|
+
} => {
|
1196
|
+
let src1 = pretty_print_reg(src1.to_reg(), 8);
|
1197
|
+
let src2 = pretty_print_reg(src2.to_reg(), 8);
|
1198
|
+
let src3 = src3.pretty_print(8);
|
1199
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1200
|
+
let op = ljustify(op.to_string());
|
1201
|
+
format!("{op} {src3}, {src2}, {src1}, {dst}")
|
1202
|
+
}
|
1203
|
+
|
1204
|
+
Inst::XmmMinMaxSeq {
|
1205
|
+
lhs,
|
1206
|
+
rhs,
|
1207
|
+
dst,
|
1208
|
+
is_min,
|
1209
|
+
size,
|
1210
|
+
} => {
|
1211
|
+
let rhs = pretty_print_reg(rhs.to_reg(), 8);
|
1212
|
+
let lhs = pretty_print_reg(lhs.to_reg(), 8);
|
1213
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1214
|
+
let op = ljustify2(
|
1215
|
+
if *is_min {
|
1216
|
+
"xmm min seq ".to_string()
|
1217
|
+
} else {
|
1218
|
+
"xmm max seq ".to_string()
|
1219
|
+
},
|
1220
|
+
format!("f{}", size.to_bits()),
|
1221
|
+
);
|
1222
|
+
format!("{op} {lhs}, {rhs}, {dst}")
|
1223
|
+
}
|
1224
|
+
|
1225
|
+
Inst::XmmRmRImm {
|
1226
|
+
op,
|
1227
|
+
src1,
|
1228
|
+
src2,
|
1229
|
+
dst,
|
1230
|
+
imm,
|
1231
|
+
size,
|
1232
|
+
..
|
1233
|
+
} => {
|
1234
|
+
let src1 = pretty_print_reg(*src1, 8);
|
1235
|
+
let dst = pretty_print_reg(dst.to_reg(), 8);
|
1236
|
+
let src2 = src2.pretty_print(8);
|
1237
|
+
let op = ljustify(format!(
|
1238
|
+
"{}{}",
|
1239
|
+
op.to_string(),
|
1240
|
+
if *size == OperandSize::Size64 {
|
1241
|
+
".w"
|
1242
|
+
} else {
|
1243
|
+
""
|
1244
|
+
}
|
1245
|
+
));
|
1246
|
+
format!("{op} ${imm}, {src1}, {src2}, {dst}")
|
1247
|
+
}
|
1248
|
+
|
1249
|
+
Inst::XmmUninitializedValue { dst } => {
|
1250
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1251
|
+
let op = ljustify("uninit".into());
|
1252
|
+
format!("{op} {dst}")
|
1253
|
+
}
|
1254
|
+
|
1255
|
+
Inst::XmmToGpr {
|
1256
|
+
op,
|
1257
|
+
src,
|
1258
|
+
dst,
|
1259
|
+
dst_size,
|
1260
|
+
} => {
|
1261
|
+
let dst_size = dst_size.to_bytes();
|
1262
|
+
let src = pretty_print_reg(src.to_reg(), 8);
|
1263
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), dst_size);
|
1264
|
+
let op = ljustify(op.to_string());
|
1265
|
+
format!("{op} {src}, {dst}")
|
1266
|
+
}
|
1267
|
+
|
1268
|
+
Inst::XmmToGprVex {
|
1269
|
+
op,
|
1270
|
+
src,
|
1271
|
+
dst,
|
1272
|
+
dst_size,
|
1273
|
+
} => {
|
1274
|
+
let dst_size = dst_size.to_bytes();
|
1275
|
+
let src = pretty_print_reg(src.to_reg(), 8);
|
1276
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), dst_size);
|
1277
|
+
let op = ljustify(op.to_string());
|
1278
|
+
format!("{op} {src}, {dst}")
|
1279
|
+
}
|
1280
|
+
|
1281
|
+
Inst::XmmToGprImm { op, src, dst, imm } => {
|
1282
|
+
let src = pretty_print_reg(src.to_reg(), 8);
|
1283
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1284
|
+
let op = ljustify(op.to_string());
|
1285
|
+
format!("{op} ${imm}, {src}, {dst}")
|
1286
|
+
}
|
1287
|
+
|
1288
|
+
Inst::XmmToGprImmVex { op, src, dst, imm } => {
|
1289
|
+
let src = pretty_print_reg(src.to_reg(), 8);
|
1290
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1291
|
+
let op = ljustify(op.to_string());
|
1292
|
+
format!("{op} ${imm}, {src}, {dst}")
|
1293
|
+
}
|
1294
|
+
|
1295
|
+
Inst::GprToXmm {
|
1296
|
+
op,
|
1297
|
+
src,
|
1298
|
+
src_size,
|
1299
|
+
dst,
|
1300
|
+
} => {
|
1301
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1302
|
+
let src = src.pretty_print(src_size.to_bytes());
|
1303
|
+
let op = ljustify(op.to_string());
|
1304
|
+
format!("{op} {src}, {dst}")
|
1305
|
+
}
|
1306
|
+
|
1307
|
+
Inst::GprToXmmVex {
|
1308
|
+
op,
|
1309
|
+
src,
|
1310
|
+
src_size,
|
1311
|
+
dst,
|
1312
|
+
} => {
|
1313
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1314
|
+
let src = src.pretty_print(src_size.to_bytes());
|
1315
|
+
let op = ljustify(op.to_string());
|
1316
|
+
format!("{op} {src}, {dst}")
|
1317
|
+
}
|
1318
|
+
|
1319
|
+
Inst::XmmCmpRmR { op, src1, src2 } => {
|
1320
|
+
let src1 = pretty_print_reg(src1.to_reg(), 8);
|
1321
|
+
let src2 = src2.pretty_print(8);
|
1322
|
+
let op = ljustify(op.to_string());
|
1323
|
+
format!("{op} {src2}, {src1}")
|
1324
|
+
}
|
1325
|
+
|
1326
|
+
Inst::CvtIntToFloat {
|
1327
|
+
op,
|
1328
|
+
src1,
|
1329
|
+
src2,
|
1330
|
+
dst,
|
1331
|
+
src2_size,
|
1332
|
+
} => {
|
1333
|
+
let src1 = pretty_print_reg(src1.to_reg(), 8);
|
1334
|
+
let dst = pretty_print_reg(*dst.to_reg(), 8);
|
1335
|
+
let src2 = src2.pretty_print(src2_size.to_bytes());
|
1336
|
+
let op = ljustify(op.to_string());
|
1337
|
+
format!("{op} {src1}, {src2}, {dst}")
|
1338
|
+
}
|
1339
|
+
|
1340
|
+
Inst::CvtIntToFloatVex {
|
1341
|
+
op,
|
1342
|
+
src1,
|
1343
|
+
src2,
|
1344
|
+
dst,
|
1345
|
+
src2_size,
|
1346
|
+
} => {
|
1347
|
+
let dst = pretty_print_reg(*dst.to_reg(), 8);
|
1348
|
+
let src1 = pretty_print_reg(src1.to_reg(), 8);
|
1349
|
+
let src2 = src2.pretty_print(src2_size.to_bytes());
|
1350
|
+
let op = ljustify(op.to_string());
|
1351
|
+
format!("{op} {src1}, {src2}, {dst}")
|
1352
|
+
}
|
1353
|
+
|
1354
|
+
Inst::XmmCmpRmRVex { op, src1, src2 } => {
|
1355
|
+
let src1 = pretty_print_reg(src1.to_reg(), 8);
|
1356
|
+
let src2 = src2.pretty_print(8);
|
1357
|
+
format!("{} {src2}, {src1}", ljustify(op.to_string()))
|
1358
|
+
}
|
1359
|
+
|
1360
|
+
Inst::CvtUint64ToFloatSeq {
|
1361
|
+
src,
|
1362
|
+
dst,
|
1363
|
+
dst_size,
|
1364
|
+
tmp_gpr1,
|
1365
|
+
tmp_gpr2,
|
1366
|
+
..
|
1367
|
+
} => {
|
1368
|
+
let src = pretty_print_reg(src.to_reg(), 8);
|
1369
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), dst_size.to_bytes());
|
1370
|
+
let tmp_gpr1 = pretty_print_reg(tmp_gpr1.to_reg().to_reg(), 8);
|
1371
|
+
let tmp_gpr2 = pretty_print_reg(tmp_gpr2.to_reg().to_reg(), 8);
|
1372
|
+
let op = ljustify(format!(
|
1373
|
+
"u64_to_{}_seq",
|
1374
|
+
if *dst_size == OperandSize::Size64 {
|
1375
|
+
"f64"
|
1376
|
+
} else {
|
1377
|
+
"f32"
|
1378
|
+
}
|
1379
|
+
));
|
1380
|
+
format!("{op} {src}, {dst}, {tmp_gpr1}, {tmp_gpr2}")
|
1381
|
+
}
|
1382
|
+
|
1383
|
+
Inst::CvtFloatToSintSeq {
|
1384
|
+
src,
|
1385
|
+
dst,
|
1386
|
+
src_size,
|
1387
|
+
dst_size,
|
1388
|
+
tmp_xmm,
|
1389
|
+
tmp_gpr,
|
1390
|
+
is_saturating,
|
1391
|
+
} => {
|
1392
|
+
let src = pretty_print_reg(src.to_reg(), src_size.to_bytes());
|
1393
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), dst_size.to_bytes());
|
1394
|
+
let tmp_gpr = pretty_print_reg(tmp_gpr.to_reg().to_reg(), 8);
|
1395
|
+
let tmp_xmm = pretty_print_reg(tmp_xmm.to_reg().to_reg(), 8);
|
1396
|
+
let op = ljustify(format!(
|
1397
|
+
"cvt_float{}_to_sint{}{}_seq",
|
1398
|
+
src_size.to_bits(),
|
1399
|
+
dst_size.to_bits(),
|
1400
|
+
if *is_saturating { "_sat" } else { "" },
|
1401
|
+
));
|
1402
|
+
format!("{op} {src}, {dst}, {tmp_gpr}, {tmp_xmm}")
|
1403
|
+
}
|
1404
|
+
|
1405
|
+
Inst::CvtFloatToUintSeq {
|
1406
|
+
src,
|
1407
|
+
dst,
|
1408
|
+
src_size,
|
1409
|
+
dst_size,
|
1410
|
+
tmp_gpr,
|
1411
|
+
tmp_xmm,
|
1412
|
+
tmp_xmm2,
|
1413
|
+
is_saturating,
|
1414
|
+
} => {
|
1415
|
+
let src = pretty_print_reg(src.to_reg(), src_size.to_bytes());
|
1416
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), dst_size.to_bytes());
|
1417
|
+
let tmp_gpr = pretty_print_reg(tmp_gpr.to_reg().to_reg(), 8);
|
1418
|
+
let tmp_xmm = pretty_print_reg(tmp_xmm.to_reg().to_reg(), 8);
|
1419
|
+
let tmp_xmm2 = pretty_print_reg(tmp_xmm2.to_reg().to_reg(), 8);
|
1420
|
+
let op = ljustify(format!(
|
1421
|
+
"cvt_float{}_to_uint{}{}_seq",
|
1422
|
+
src_size.to_bits(),
|
1423
|
+
dst_size.to_bits(),
|
1424
|
+
if *is_saturating { "_sat" } else { "" },
|
1425
|
+
));
|
1426
|
+
format!("{op} {src}, {dst}, {tmp_gpr}, {tmp_xmm}, {tmp_xmm2}")
|
1427
|
+
}
|
1428
|
+
|
1429
|
+
Inst::Imm {
|
1430
|
+
dst_size,
|
1431
|
+
simm64,
|
1432
|
+
dst,
|
1433
|
+
} => {
|
1434
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), dst_size.to_bytes());
|
1435
|
+
if *dst_size == OperandSize::Size64 {
|
1436
|
+
let op = ljustify("movabsq".to_string());
|
1437
|
+
let imm = *simm64 as i64;
|
1438
|
+
format!("{op} ${imm}, {dst}")
|
1439
|
+
} else {
|
1440
|
+
let op = ljustify("movl".to_string());
|
1441
|
+
let imm = (*simm64 as u32) as i32;
|
1442
|
+
format!("{op} ${imm}, {dst}")
|
1443
|
+
}
|
1444
|
+
}
|
1445
|
+
|
1446
|
+
Inst::MovImmM { size, simm32, dst } => {
|
1447
|
+
let dst = dst.pretty_print(size.to_bytes());
|
1448
|
+
let suffix = suffix_bwlq(*size);
|
1449
|
+
let imm = match *size {
|
1450
|
+
OperandSize::Size8 => ((*simm32 as u8) as i8).to_string(),
|
1451
|
+
OperandSize::Size16 => ((*simm32 as u16) as i16).to_string(),
|
1452
|
+
OperandSize::Size32 => simm32.to_string(),
|
1453
|
+
OperandSize::Size64 => (*simm32 as i64).to_string(),
|
1454
|
+
};
|
1455
|
+
let op = ljustify2("mov".to_string(), suffix);
|
1456
|
+
format!("{op} ${imm}, {dst}")
|
1457
|
+
}
|
1458
|
+
|
1459
|
+
Inst::MovRR { size, src, dst } => {
|
1460
|
+
let src = pretty_print_reg(src.to_reg(), size.to_bytes());
|
1461
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes());
|
1462
|
+
let op = ljustify2("mov".to_string(), suffix_lq(*size));
|
1463
|
+
format!("{op} {src}, {dst}")
|
1464
|
+
}
|
1465
|
+
|
1466
|
+
Inst::MovFromPReg { src, dst } => {
|
1467
|
+
let src: Reg = (*src).into();
|
1468
|
+
let src = regs::show_ireg_sized(src, 8);
|
1469
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1470
|
+
let op = ljustify("movq".to_string());
|
1471
|
+
format!("{op} {src}, {dst}")
|
1472
|
+
}
|
1473
|
+
|
1474
|
+
Inst::MovToPReg { src, dst } => {
|
1475
|
+
let src = pretty_print_reg(src.to_reg(), 8);
|
1476
|
+
let dst: Reg = (*dst).into();
|
1477
|
+
let dst = regs::show_ireg_sized(dst, 8);
|
1478
|
+
let op = ljustify("movq".to_string());
|
1479
|
+
format!("{op} {src}, {dst}")
|
1480
|
+
}
|
1481
|
+
|
1482
|
+
Inst::MovzxRmR {
|
1483
|
+
ext_mode, src, dst, ..
|
1484
|
+
} => {
|
1485
|
+
let dst_size = if *ext_mode == ExtMode::LQ {
|
1486
|
+
4
|
1487
|
+
} else {
|
1488
|
+
ext_mode.dst_size()
|
1489
|
+
};
|
1490
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), dst_size);
|
1491
|
+
let src = src.pretty_print(ext_mode.src_size());
|
1492
|
+
|
1493
|
+
if *ext_mode == ExtMode::LQ {
|
1494
|
+
let op = ljustify("movl".to_string());
|
1495
|
+
format!("{op} {src}, {dst}")
|
1496
|
+
} else {
|
1497
|
+
let op = ljustify2("movz".to_string(), ext_mode.to_string());
|
1498
|
+
format!("{op} {src}, {dst}")
|
1499
|
+
}
|
1500
|
+
}
|
1501
|
+
|
1502
|
+
Inst::Mov64MR { src, dst, .. } => {
|
1503
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1504
|
+
let src = src.pretty_print(8);
|
1505
|
+
let op = ljustify("movq".to_string());
|
1506
|
+
format!("{op} {src}, {dst}")
|
1507
|
+
}
|
1508
|
+
|
1509
|
+
Inst::LoadEffectiveAddress { addr, dst, size } => {
|
1510
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes());
|
1511
|
+
let addr = addr.pretty_print(8);
|
1512
|
+
let op = ljustify("lea".to_string());
|
1513
|
+
format!("{op} {addr}, {dst}")
|
1514
|
+
}
|
1515
|
+
|
1516
|
+
Inst::MovsxRmR {
|
1517
|
+
ext_mode, src, dst, ..
|
1518
|
+
} => {
|
1519
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), ext_mode.dst_size());
|
1520
|
+
let src = src.pretty_print(ext_mode.src_size());
|
1521
|
+
let op = ljustify2("movs".to_string(), ext_mode.to_string());
|
1522
|
+
format!("{op} {src}, {dst}")
|
1523
|
+
}
|
1524
|
+
|
1525
|
+
Inst::MovRM { size, src, dst, .. } => {
|
1526
|
+
let src = pretty_print_reg(src.to_reg(), size.to_bytes());
|
1527
|
+
let dst = dst.pretty_print(size.to_bytes());
|
1528
|
+
let op = ljustify2("mov".to_string(), suffix_bwlq(*size));
|
1529
|
+
format!("{op} {src}, {dst}")
|
1530
|
+
}
|
1531
|
+
|
1532
|
+
Inst::ShiftR {
|
1533
|
+
size,
|
1534
|
+
kind,
|
1535
|
+
num_bits,
|
1536
|
+
src,
|
1537
|
+
dst,
|
1538
|
+
..
|
1539
|
+
} => {
|
1540
|
+
let src = pretty_print_reg(src.to_reg(), size.to_bytes());
|
1541
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes());
|
1542
|
+
match num_bits.as_imm8_reg() {
|
1543
|
+
&Imm8Reg::Reg { reg } => {
|
1544
|
+
let reg = pretty_print_reg(reg, 1);
|
1545
|
+
let op = ljustify2(kind.to_string(), suffix_bwlq(*size));
|
1546
|
+
format!("{op} {reg}, {src}, {dst}")
|
1547
|
+
}
|
1548
|
+
|
1549
|
+
&Imm8Reg::Imm8 { imm: num_bits } => {
|
1550
|
+
let op = ljustify2(kind.to_string(), suffix_bwlq(*size));
|
1551
|
+
format!("{op} ${num_bits}, {src}, {dst}")
|
1552
|
+
}
|
1553
|
+
}
|
1554
|
+
}
|
1555
|
+
|
1556
|
+
Inst::XmmRmiReg {
|
1557
|
+
opcode,
|
1558
|
+
src1,
|
1559
|
+
src2,
|
1560
|
+
dst,
|
1561
|
+
..
|
1562
|
+
} => {
|
1563
|
+
let src1 = pretty_print_reg(src1.to_reg(), 8);
|
1564
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1565
|
+
let src2 = src2.pretty_print(8);
|
1566
|
+
let op = ljustify(opcode.to_string());
|
1567
|
+
format!("{op} {src1}, {src2}, {dst}")
|
1568
|
+
}
|
1569
|
+
|
1570
|
+
Inst::CmpRmiR {
|
1571
|
+
size,
|
1572
|
+
src1,
|
1573
|
+
src2,
|
1574
|
+
opcode,
|
1575
|
+
} => {
|
1576
|
+
let src1 = pretty_print_reg(src1.to_reg(), size.to_bytes());
|
1577
|
+
let src2 = src2.pretty_print(size.to_bytes());
|
1578
|
+
let op = match opcode {
|
1579
|
+
CmpOpcode::Cmp => "cmp",
|
1580
|
+
CmpOpcode::Test => "test",
|
1581
|
+
};
|
1582
|
+
let op = ljustify2(op.to_string(), suffix_bwlq(*size));
|
1583
|
+
format!("{op} {src2}, {src1}")
|
1584
|
+
}
|
1585
|
+
|
1586
|
+
Inst::Setcc { cc, dst } => {
|
1587
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 1);
|
1588
|
+
let op = ljustify2("set".to_string(), cc.to_string());
|
1589
|
+
format!("{op} {dst}")
|
1590
|
+
}
|
1591
|
+
|
1592
|
+
Inst::Bswap { size, src, dst } => {
|
1593
|
+
let src = pretty_print_reg(src.to_reg(), size.to_bytes());
|
1594
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes());
|
1595
|
+
let op = ljustify2("bswap".to_string(), suffix_bwlq(*size));
|
1596
|
+
format!("{op} {src}, {dst}")
|
1597
|
+
}
|
1598
|
+
|
1599
|
+
Inst::Cmove {
|
1600
|
+
size,
|
1601
|
+
cc,
|
1602
|
+
consequent,
|
1603
|
+
alternative,
|
1604
|
+
dst,
|
1605
|
+
} => {
|
1606
|
+
let alternative = pretty_print_reg(alternative.to_reg(), size.to_bytes());
|
1607
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes());
|
1608
|
+
let consequent = consequent.pretty_print(size.to_bytes());
|
1609
|
+
let op = ljustify(format!("cmov{}{}", cc.to_string(), suffix_bwlq(*size)));
|
1610
|
+
format!("{op} {consequent}, {alternative}, {dst}")
|
1611
|
+
}
|
1612
|
+
|
1613
|
+
Inst::XmmCmove {
|
1614
|
+
ty,
|
1615
|
+
cc,
|
1616
|
+
consequent,
|
1617
|
+
alternative,
|
1618
|
+
dst,
|
1619
|
+
..
|
1620
|
+
} => {
|
1621
|
+
let size = u8::try_from(ty.bytes()).unwrap();
|
1622
|
+
let alternative = pretty_print_reg(alternative.to_reg(), size);
|
1623
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), size);
|
1624
|
+
let consequent = pretty_print_reg(consequent.to_reg(), size);
|
1625
|
+
let suffix = match *ty {
|
1626
|
+
types::F64 => "sd",
|
1627
|
+
types::F32 => "ss",
|
1628
|
+
types::F32X4 => "aps",
|
1629
|
+
types::F64X2 => "apd",
|
1630
|
+
_ => "dqa",
|
1631
|
+
};
|
1632
|
+
let cc = cc.invert();
|
1633
|
+
format!(
|
1634
|
+
"mov{suffix} {alternative}, {dst}; \
|
1635
|
+
j{cc} $next; \
|
1636
|
+
mov{suffix} {consequent}, {dst}; \
|
1637
|
+
$next:"
|
1638
|
+
)
|
1639
|
+
}
|
1640
|
+
|
1641
|
+
Inst::Push64 { src } => {
|
1642
|
+
let src = src.pretty_print(8);
|
1643
|
+
let op = ljustify("pushq".to_string());
|
1644
|
+
format!("{op} {src}")
|
1645
|
+
}
|
1646
|
+
|
1647
|
+
Inst::StackProbeLoop {
|
1648
|
+
tmp,
|
1649
|
+
frame_size,
|
1650
|
+
guard_size,
|
1651
|
+
} => {
|
1652
|
+
let tmp = pretty_print_reg(tmp.to_reg(), 8);
|
1653
|
+
let op = ljustify("stack_probe_loop".to_string());
|
1654
|
+
format!("{op} {tmp}, frame_size={frame_size}, guard_size={guard_size}")
|
1655
|
+
}
|
1656
|
+
|
1657
|
+
Inst::Pop64 { dst } => {
|
1658
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1659
|
+
let op = ljustify("popq".to_string());
|
1660
|
+
format!("{op} {dst}")
|
1661
|
+
}
|
1662
|
+
|
1663
|
+
Inst::CallKnown { dest, .. } => {
|
1664
|
+
let op = ljustify("call".to_string());
|
1665
|
+
format!("{op} {dest:?}")
|
1666
|
+
}
|
1667
|
+
|
1668
|
+
Inst::CallUnknown { dest, .. } => {
|
1669
|
+
let dest = dest.pretty_print(8);
|
1670
|
+
let op = ljustify("call".to_string());
|
1671
|
+
format!("{op} *{dest}")
|
1672
|
+
}
|
1673
|
+
|
1674
|
+
Inst::ReturnCallKnown { callee, info } => {
|
1675
|
+
let ReturnCallInfo {
|
1676
|
+
uses,
|
1677
|
+
new_stack_arg_size,
|
1678
|
+
tmp,
|
1679
|
+
} = &**info;
|
1680
|
+
let tmp = pretty_print_reg(tmp.to_reg().to_reg(), 8);
|
1681
|
+
let mut s =
|
1682
|
+
format!("return_call_known {callee:?} ({new_stack_arg_size}) tmp={tmp}");
|
1683
|
+
for ret in uses {
|
1684
|
+
let preg = regs::show_reg(ret.preg);
|
1685
|
+
let vreg = pretty_print_reg(ret.vreg, 8);
|
1686
|
+
write!(&mut s, " {vreg}={preg}").unwrap();
|
1687
|
+
}
|
1688
|
+
s
|
1689
|
+
}
|
1690
|
+
|
1691
|
+
Inst::ReturnCallUnknown { callee, info } => {
|
1692
|
+
let ReturnCallInfo {
|
1693
|
+
uses,
|
1694
|
+
new_stack_arg_size,
|
1695
|
+
tmp,
|
1696
|
+
} = &**info;
|
1697
|
+
let callee = pretty_print_reg(*callee, 8);
|
1698
|
+
let tmp = pretty_print_reg(tmp.to_reg().to_reg(), 8);
|
1699
|
+
let mut s =
|
1700
|
+
format!("return_call_unknown {callee} ({new_stack_arg_size}) tmp={tmp}");
|
1701
|
+
for ret in uses {
|
1702
|
+
let preg = regs::show_reg(ret.preg);
|
1703
|
+
let vreg = pretty_print_reg(ret.vreg, 8);
|
1704
|
+
write!(&mut s, " {vreg}={preg}").unwrap();
|
1705
|
+
}
|
1706
|
+
s
|
1707
|
+
}
|
1708
|
+
|
1709
|
+
Inst::Args { args } => {
|
1710
|
+
let mut s = "args".to_string();
|
1711
|
+
for arg in args {
|
1712
|
+
let preg = regs::show_reg(arg.preg);
|
1713
|
+
let def = pretty_print_reg(arg.vreg.to_reg(), 8);
|
1714
|
+
write!(&mut s, " {def}={preg}").unwrap();
|
1715
|
+
}
|
1716
|
+
s
|
1717
|
+
}
|
1718
|
+
|
1719
|
+
Inst::Rets { rets } => {
|
1720
|
+
let mut s = "rets".to_string();
|
1721
|
+
for ret in rets {
|
1722
|
+
let preg = regs::show_reg(ret.preg);
|
1723
|
+
let vreg = pretty_print_reg(ret.vreg, 8);
|
1724
|
+
write!(&mut s, " {vreg}={preg}").unwrap();
|
1725
|
+
}
|
1726
|
+
s
|
1727
|
+
}
|
1728
|
+
|
1729
|
+
Inst::Ret { stack_bytes_to_pop } => {
|
1730
|
+
let mut s = "ret".to_string();
|
1731
|
+
if *stack_bytes_to_pop != 0 {
|
1732
|
+
write!(&mut s, " {stack_bytes_to_pop}").unwrap();
|
1733
|
+
}
|
1734
|
+
s
|
1735
|
+
}
|
1736
|
+
|
1737
|
+
Inst::JmpKnown { dst } => {
|
1738
|
+
let op = ljustify("jmp".to_string());
|
1739
|
+
let dst = dst.to_string();
|
1740
|
+
format!("{op} {dst}")
|
1741
|
+
}
|
1742
|
+
|
1743
|
+
Inst::JmpIf { cc, taken } => {
|
1744
|
+
let taken = taken.to_string();
|
1745
|
+
let op = ljustify2("j".to_string(), cc.to_string());
|
1746
|
+
format!("{op} {taken}")
|
1747
|
+
}
|
1748
|
+
|
1749
|
+
Inst::JmpCond {
|
1750
|
+
cc,
|
1751
|
+
taken,
|
1752
|
+
not_taken,
|
1753
|
+
} => {
|
1754
|
+
let taken = taken.to_string();
|
1755
|
+
let not_taken = not_taken.to_string();
|
1756
|
+
let op = ljustify2("j".to_string(), cc.to_string());
|
1757
|
+
format!("{op} {taken}; j {not_taken}")
|
1758
|
+
}
|
1759
|
+
|
1760
|
+
Inst::JmpTableSeq {
|
1761
|
+
idx, tmp1, tmp2, ..
|
1762
|
+
} => {
|
1763
|
+
let idx = pretty_print_reg(*idx, 8);
|
1764
|
+
let tmp1 = pretty_print_reg(tmp1.to_reg(), 8);
|
1765
|
+
let tmp2 = pretty_print_reg(tmp2.to_reg(), 8);
|
1766
|
+
let op = ljustify("br_table".into());
|
1767
|
+
format!("{op} {idx}, {tmp1}, {tmp2}")
|
1768
|
+
}
|
1769
|
+
|
1770
|
+
Inst::JmpUnknown { target } => {
|
1771
|
+
let target = target.pretty_print(8);
|
1772
|
+
let op = ljustify("jmp".to_string());
|
1773
|
+
format!("{op} *{target}")
|
1774
|
+
}
|
1775
|
+
|
1776
|
+
Inst::TrapIf { cc, trap_code, .. } => {
|
1777
|
+
format!("j{cc} #trap={trap_code}")
|
1778
|
+
}
|
1779
|
+
|
1780
|
+
Inst::TrapIfAnd {
|
1781
|
+
cc1,
|
1782
|
+
cc2,
|
1783
|
+
trap_code,
|
1784
|
+
..
|
1785
|
+
} => {
|
1786
|
+
let cc1 = cc1.invert();
|
1787
|
+
let cc2 = cc2.invert();
|
1788
|
+
format!("trap_if_and {cc1}, {cc2}, {trap_code}")
|
1789
|
+
}
|
1790
|
+
|
1791
|
+
Inst::TrapIfOr {
|
1792
|
+
cc1,
|
1793
|
+
cc2,
|
1794
|
+
trap_code,
|
1795
|
+
..
|
1796
|
+
} => {
|
1797
|
+
let cc2 = cc2.invert();
|
1798
|
+
format!("trap_if_or {cc1}, {cc2}, {trap_code}")
|
1799
|
+
}
|
1800
|
+
|
1801
|
+
Inst::LoadExtName {
|
1802
|
+
dst, name, offset, ..
|
1803
|
+
} => {
|
1804
|
+
let dst = pretty_print_reg(dst.to_reg(), 8);
|
1805
|
+
let name = name.display(None);
|
1806
|
+
let op = ljustify("load_ext_name".into());
|
1807
|
+
format!("{op} {name}+{offset}, {dst}")
|
1808
|
+
}
|
1809
|
+
|
1810
|
+
Inst::LockCmpxchg {
|
1811
|
+
ty,
|
1812
|
+
replacement,
|
1813
|
+
expected,
|
1814
|
+
mem,
|
1815
|
+
dst_old,
|
1816
|
+
..
|
1817
|
+
} => {
|
1818
|
+
let size = ty.bytes() as u8;
|
1819
|
+
let replacement = pretty_print_reg(*replacement, size);
|
1820
|
+
let expected = pretty_print_reg(*expected, size);
|
1821
|
+
let dst_old = pretty_print_reg(dst_old.to_reg(), size);
|
1822
|
+
let mem = mem.pretty_print(size);
|
1823
|
+
let suffix = suffix_bwlq(OperandSize::from_bytes(size as u32));
|
1824
|
+
format!(
|
1825
|
+
"lock cmpxchg{suffix} {replacement}, {mem}, expected={expected}, dst_old={dst_old}"
|
1826
|
+
)
|
1827
|
+
}
|
1828
|
+
|
1829
|
+
Inst::AtomicRmwSeq { ty, op, .. } => {
|
1830
|
+
let ty = ty.bits();
|
1831
|
+
format!(
|
1832
|
+
"atomically {{ {ty}_bits_at_[%r9]) {op:?}= %r10; %rax = old_value_at_[%r9]; %r11, %rflags = trash }}"
|
1833
|
+
)
|
1834
|
+
}
|
1835
|
+
|
1836
|
+
Inst::Fence { kind } => match kind {
|
1837
|
+
FenceKind::MFence => "mfence".to_string(),
|
1838
|
+
FenceKind::LFence => "lfence".to_string(),
|
1839
|
+
FenceKind::SFence => "sfence".to_string(),
|
1840
|
+
},
|
1841
|
+
|
1842
|
+
Inst::Hlt => "hlt".into(),
|
1843
|
+
|
1844
|
+
Inst::Ud2 { trap_code } => format!("ud2 {trap_code}"),
|
1845
|
+
|
1846
|
+
Inst::ElfTlsGetAddr { ref symbol, dst } => {
|
1847
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1848
|
+
format!("{dst} = elf_tls_get_addr {symbol:?}")
|
1849
|
+
}
|
1850
|
+
|
1851
|
+
Inst::MachOTlsGetAddr { ref symbol, dst } => {
|
1852
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1853
|
+
format!("{dst} = macho_tls_get_addr {symbol:?}")
|
1854
|
+
}
|
1855
|
+
|
1856
|
+
Inst::CoffTlsGetAddr {
|
1857
|
+
ref symbol,
|
1858
|
+
dst,
|
1859
|
+
tmp,
|
1860
|
+
} => {
|
1861
|
+
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8);
|
1862
|
+
let tmp = tmp.to_reg().to_reg();
|
1863
|
+
|
1864
|
+
let mut s = format!("{dst} = coff_tls_get_addr {symbol:?}");
|
1865
|
+
if tmp.is_virtual() {
|
1866
|
+
let tmp = show_ireg_sized(tmp, 8);
|
1867
|
+
write!(&mut s, ", {tmp}").unwrap();
|
1868
|
+
};
|
1869
|
+
|
1870
|
+
s
|
1871
|
+
}
|
1872
|
+
|
1873
|
+
Inst::Unwind { inst } => format!("unwind {inst:?}"),
|
1874
|
+
|
1875
|
+
Inst::DummyUse { reg } => {
|
1876
|
+
let reg = pretty_print_reg(*reg, 8);
|
1877
|
+
format!("dummy_use {reg}")
|
1878
|
+
}
|
1879
|
+
}
|
1880
|
+
}
|
1881
|
+
}
|
1882
|
+
|
1883
|
+
impl fmt::Debug for Inst {
|
1884
|
+
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
1885
|
+
write!(fmt, "{}", self.pretty_print_inst(&mut Default::default()))
|
1886
|
+
}
|
1887
|
+
}
|
1888
|
+
|
1889
|
+
fn x64_get_operands(inst: &mut Inst, collector: &mut impl OperandVisitor) {
|
1890
|
+
// Note: because we need to statically know the indices of each
|
1891
|
+
// reg in the operands list in order to fetch its allocation
|
1892
|
+
// later, we put the variable-operand-count bits (the RegMem,
|
1893
|
+
// RegMemImm, etc args) last. regalloc2 doesn't care what order
|
1894
|
+
// the operands come in; they can be freely reordered.
|
1895
|
+
|
1896
|
+
// N.B.: we MUST keep the below in careful sync with (i) emission,
|
1897
|
+
// in `emit.rs`, and (ii) pretty-printing, in the `pretty_print`
|
1898
|
+
// method above.
|
1899
|
+
match inst {
|
1900
|
+
Inst::AluRmiR {
|
1901
|
+
src1, src2, dst, ..
|
1902
|
+
} => {
|
1903
|
+
collector.reg_use(src1);
|
1904
|
+
collector.reg_reuse_def(dst, 0);
|
1905
|
+
src2.get_operands(collector);
|
1906
|
+
}
|
1907
|
+
Inst::AluConstOp { dst, .. } => collector.reg_def(dst),
|
1908
|
+
Inst::AluRM { src1_dst, src2, .. } => {
|
1909
|
+
collector.reg_use(src2);
|
1910
|
+
src1_dst.get_operands(collector);
|
1911
|
+
}
|
1912
|
+
Inst::AluRmRVex {
|
1913
|
+
src1, src2, dst, ..
|
1914
|
+
} => {
|
1915
|
+
collector.reg_def(dst);
|
1916
|
+
collector.reg_use(src1);
|
1917
|
+
src2.get_operands(collector);
|
1918
|
+
}
|
1919
|
+
Inst::Not { src, dst, .. } => {
|
1920
|
+
collector.reg_use(src);
|
1921
|
+
collector.reg_reuse_def(dst, 0);
|
1922
|
+
}
|
1923
|
+
Inst::Neg { src, dst, .. } => {
|
1924
|
+
collector.reg_use(src);
|
1925
|
+
collector.reg_reuse_def(dst, 0);
|
1926
|
+
}
|
1927
|
+
Inst::Div {
|
1928
|
+
divisor,
|
1929
|
+
dividend_lo,
|
1930
|
+
dividend_hi,
|
1931
|
+
dst_quotient,
|
1932
|
+
dst_remainder,
|
1933
|
+
..
|
1934
|
+
} => {
|
1935
|
+
divisor.get_operands(collector);
|
1936
|
+
collector.reg_fixed_use(dividend_lo, regs::rax());
|
1937
|
+
collector.reg_fixed_use(dividend_hi, regs::rdx());
|
1938
|
+
collector.reg_fixed_def(dst_quotient, regs::rax());
|
1939
|
+
collector.reg_fixed_def(dst_remainder, regs::rdx());
|
1940
|
+
}
|
1941
|
+
Inst::CheckedSRemSeq {
|
1942
|
+
divisor,
|
1943
|
+
dividend_lo,
|
1944
|
+
dividend_hi,
|
1945
|
+
dst_quotient,
|
1946
|
+
dst_remainder,
|
1947
|
+
..
|
1948
|
+
} => {
|
1949
|
+
collector.reg_use(divisor);
|
1950
|
+
collector.reg_fixed_use(dividend_lo, regs::rax());
|
1951
|
+
collector.reg_fixed_use(dividend_hi, regs::rdx());
|
1952
|
+
collector.reg_fixed_def(dst_quotient, regs::rax());
|
1953
|
+
collector.reg_fixed_def(dst_remainder, regs::rdx());
|
1954
|
+
}
|
1955
|
+
Inst::Div8 {
|
1956
|
+
divisor,
|
1957
|
+
dividend,
|
1958
|
+
dst,
|
1959
|
+
..
|
1960
|
+
} => {
|
1961
|
+
divisor.get_operands(collector);
|
1962
|
+
collector.reg_fixed_use(dividend, regs::rax());
|
1963
|
+
collector.reg_fixed_def(dst, regs::rax());
|
1964
|
+
}
|
1965
|
+
Inst::CheckedSRemSeq8 {
|
1966
|
+
divisor,
|
1967
|
+
dividend,
|
1968
|
+
dst,
|
1969
|
+
..
|
1970
|
+
} => {
|
1971
|
+
collector.reg_use(divisor);
|
1972
|
+
collector.reg_fixed_use(dividend, regs::rax());
|
1973
|
+
collector.reg_fixed_def(dst, regs::rax());
|
1974
|
+
}
|
1975
|
+
Inst::Mul {
|
1976
|
+
src1,
|
1977
|
+
src2,
|
1978
|
+
dst_lo,
|
1979
|
+
dst_hi,
|
1980
|
+
..
|
1981
|
+
} => {
|
1982
|
+
collector.reg_fixed_use(src1, regs::rax());
|
1983
|
+
collector.reg_fixed_def(dst_lo, regs::rax());
|
1984
|
+
collector.reg_fixed_def(dst_hi, regs::rdx());
|
1985
|
+
src2.get_operands(collector);
|
1986
|
+
}
|
1987
|
+
Inst::Mul8 {
|
1988
|
+
src1, src2, dst, ..
|
1989
|
+
} => {
|
1990
|
+
collector.reg_fixed_use(src1, regs::rax());
|
1991
|
+
collector.reg_fixed_def(dst, regs::rax());
|
1992
|
+
src2.get_operands(collector);
|
1993
|
+
}
|
1994
|
+
Inst::IMul {
|
1995
|
+
src1, src2, dst, ..
|
1996
|
+
} => {
|
1997
|
+
collector.reg_use(src1);
|
1998
|
+
collector.reg_reuse_def(dst, 0);
|
1999
|
+
src2.get_operands(collector);
|
2000
|
+
}
|
2001
|
+
Inst::IMulImm { src1, dst, .. } => {
|
2002
|
+
collector.reg_def(dst);
|
2003
|
+
src1.get_operands(collector);
|
2004
|
+
}
|
2005
|
+
Inst::SignExtendData { size, src, dst } => {
|
2006
|
+
match size {
|
2007
|
+
OperandSize::Size8 => {
|
2008
|
+
// Note `rax` on both src and dest: 8->16 extend
|
2009
|
+
// does AL -> AX.
|
2010
|
+
collector.reg_fixed_use(src, regs::rax());
|
2011
|
+
collector.reg_fixed_def(dst, regs::rax());
|
2012
|
+
}
|
2013
|
+
_ => {
|
2014
|
+
// All other widths do RAX -> RDX (AX -> DX:AX,
|
2015
|
+
// EAX -> EDX:EAX).
|
2016
|
+
collector.reg_fixed_use(src, regs::rax());
|
2017
|
+
collector.reg_fixed_def(dst, regs::rdx());
|
2018
|
+
}
|
2019
|
+
}
|
2020
|
+
}
|
2021
|
+
Inst::UnaryRmR { src, dst, .. }
|
2022
|
+
| Inst::UnaryRmRVex { src, dst, .. }
|
2023
|
+
| Inst::UnaryRmRImmVex { src, dst, .. } => {
|
2024
|
+
collector.reg_def(dst);
|
2025
|
+
src.get_operands(collector);
|
2026
|
+
}
|
2027
|
+
Inst::XmmUnaryRmR { src, dst, .. } | Inst::XmmUnaryRmRImm { src, dst, .. } => {
|
2028
|
+
collector.reg_def(dst);
|
2029
|
+
src.get_operands(collector);
|
2030
|
+
}
|
2031
|
+
Inst::XmmUnaryRmREvex { src, dst, .. }
|
2032
|
+
| Inst::XmmUnaryRmRImmEvex { src, dst, .. }
|
2033
|
+
| Inst::XmmUnaryRmRUnaligned { src, dst, .. }
|
2034
|
+
| Inst::XmmUnaryRmRVex { src, dst, .. }
|
2035
|
+
| Inst::XmmUnaryRmRImmVex { src, dst, .. } => {
|
2036
|
+
collector.reg_def(dst);
|
2037
|
+
src.get_operands(collector);
|
2038
|
+
}
|
2039
|
+
Inst::XmmRmR {
|
2040
|
+
src1, src2, dst, ..
|
2041
|
+
} => {
|
2042
|
+
collector.reg_use(src1);
|
2043
|
+
collector.reg_reuse_def(dst, 0);
|
2044
|
+
src2.get_operands(collector);
|
2045
|
+
}
|
2046
|
+
Inst::XmmRmRUnaligned {
|
2047
|
+
src1, src2, dst, ..
|
2048
|
+
} => {
|
2049
|
+
collector.reg_use(src1);
|
2050
|
+
collector.reg_reuse_def(dst, 0);
|
2051
|
+
src2.get_operands(collector);
|
2052
|
+
}
|
2053
|
+
Inst::XmmRmRBlend {
|
2054
|
+
src1,
|
2055
|
+
src2,
|
2056
|
+
mask,
|
2057
|
+
dst,
|
2058
|
+
op,
|
2059
|
+
} => {
|
2060
|
+
assert!(matches!(
|
2061
|
+
op,
|
2062
|
+
SseOpcode::Blendvpd | SseOpcode::Blendvps | SseOpcode::Pblendvb
|
2063
|
+
));
|
2064
|
+
collector.reg_use(src1);
|
2065
|
+
collector.reg_fixed_use(mask, regs::xmm0());
|
2066
|
+
collector.reg_reuse_def(dst, 0);
|
2067
|
+
src2.get_operands(collector);
|
2068
|
+
}
|
2069
|
+
Inst::XmmRmiRVex {
|
2070
|
+
src1, src2, dst, ..
|
2071
|
+
} => {
|
2072
|
+
collector.reg_def(dst);
|
2073
|
+
collector.reg_use(src1);
|
2074
|
+
src2.get_operands(collector);
|
2075
|
+
}
|
2076
|
+
Inst::XmmRmRImmVex {
|
2077
|
+
src1, src2, dst, ..
|
2078
|
+
} => {
|
2079
|
+
collector.reg_def(dst);
|
2080
|
+
collector.reg_use(src1);
|
2081
|
+
src2.get_operands(collector);
|
2082
|
+
}
|
2083
|
+
Inst::XmmVexPinsr {
|
2084
|
+
src1, src2, dst, ..
|
2085
|
+
} => {
|
2086
|
+
collector.reg_def(dst);
|
2087
|
+
collector.reg_use(src1);
|
2088
|
+
src2.get_operands(collector);
|
2089
|
+
}
|
2090
|
+
Inst::XmmRmRVex3 {
|
2091
|
+
src1,
|
2092
|
+
src2,
|
2093
|
+
src3,
|
2094
|
+
dst,
|
2095
|
+
..
|
2096
|
+
} => {
|
2097
|
+
collector.reg_use(src1);
|
2098
|
+
collector.reg_reuse_def(dst, 0);
|
2099
|
+
collector.reg_use(src2);
|
2100
|
+
src3.get_operands(collector);
|
2101
|
+
}
|
2102
|
+
Inst::XmmRmRBlendVex {
|
2103
|
+
src1,
|
2104
|
+
src2,
|
2105
|
+
mask,
|
2106
|
+
dst,
|
2107
|
+
..
|
2108
|
+
} => {
|
2109
|
+
collector.reg_def(dst);
|
2110
|
+
collector.reg_use(src1);
|
2111
|
+
src2.get_operands(collector);
|
2112
|
+
collector.reg_use(mask);
|
2113
|
+
}
|
2114
|
+
Inst::XmmRmREvex {
|
2115
|
+
op,
|
2116
|
+
src1,
|
2117
|
+
src2,
|
2118
|
+
dst,
|
2119
|
+
..
|
2120
|
+
} => {
|
2121
|
+
assert_ne!(*op, Avx512Opcode::Vpermi2b);
|
2122
|
+
collector.reg_use(src1);
|
2123
|
+
src2.get_operands(collector);
|
2124
|
+
collector.reg_def(dst);
|
2125
|
+
}
|
2126
|
+
Inst::XmmRmREvex3 {
|
2127
|
+
op,
|
2128
|
+
src1,
|
2129
|
+
src2,
|
2130
|
+
src3,
|
2131
|
+
dst,
|
2132
|
+
..
|
2133
|
+
} => {
|
2134
|
+
assert_eq!(*op, Avx512Opcode::Vpermi2b);
|
2135
|
+
collector.reg_use(src1);
|
2136
|
+
collector.reg_use(src2);
|
2137
|
+
src3.get_operands(collector);
|
2138
|
+
collector.reg_reuse_def(dst, 0); // Reuse `src1`.
|
2139
|
+
}
|
2140
|
+
Inst::XmmRmRImm {
|
2141
|
+
src1, src2, dst, ..
|
2142
|
+
} => {
|
2143
|
+
collector.reg_use(src1);
|
2144
|
+
collector.reg_reuse_def(dst, 0);
|
2145
|
+
src2.get_operands(collector);
|
2146
|
+
}
|
2147
|
+
Inst::XmmUninitializedValue { dst } => collector.reg_def(dst),
|
2148
|
+
Inst::XmmMinMaxSeq { lhs, rhs, dst, .. } => {
|
2149
|
+
collector.reg_use(rhs);
|
2150
|
+
collector.reg_use(lhs);
|
2151
|
+
collector.reg_reuse_def(dst, 0); // Reuse RHS.
|
2152
|
+
}
|
2153
|
+
Inst::XmmRmiReg {
|
2154
|
+
src1, src2, dst, ..
|
2155
|
+
} => {
|
2156
|
+
collector.reg_use(src1);
|
2157
|
+
collector.reg_reuse_def(dst, 0); // Reuse RHS.
|
2158
|
+
src2.get_operands(collector);
|
2159
|
+
}
|
2160
|
+
Inst::XmmMovRM { src, dst, .. }
|
2161
|
+
| Inst::XmmMovRMVex { src, dst, .. }
|
2162
|
+
| Inst::XmmMovRMImm { src, dst, .. }
|
2163
|
+
| Inst::XmmMovRMImmVex { src, dst, .. } => {
|
2164
|
+
collector.reg_use(src);
|
2165
|
+
dst.get_operands(collector);
|
2166
|
+
}
|
2167
|
+
Inst::XmmCmpRmR { src1, src2, .. } => {
|
2168
|
+
collector.reg_use(src1);
|
2169
|
+
src2.get_operands(collector);
|
2170
|
+
}
|
2171
|
+
Inst::XmmCmpRmRVex { src1, src2, .. } => {
|
2172
|
+
collector.reg_use(src1);
|
2173
|
+
src2.get_operands(collector);
|
2174
|
+
}
|
2175
|
+
Inst::Imm { dst, .. } => {
|
2176
|
+
collector.reg_def(dst);
|
2177
|
+
}
|
2178
|
+
Inst::MovRR { src, dst, .. } => {
|
2179
|
+
collector.reg_use(src);
|
2180
|
+
collector.reg_def(dst);
|
2181
|
+
}
|
2182
|
+
Inst::MovFromPReg { dst, src } => {
|
2183
|
+
debug_assert!(dst.to_reg().to_reg().is_virtual());
|
2184
|
+
collector.reg_fixed_nonallocatable(*src);
|
2185
|
+
collector.reg_def(dst);
|
2186
|
+
}
|
2187
|
+
Inst::MovToPReg { dst, src } => {
|
2188
|
+
debug_assert!(src.to_reg().is_virtual());
|
2189
|
+
collector.reg_use(src);
|
2190
|
+
collector.reg_fixed_nonallocatable(*dst);
|
2191
|
+
}
|
2192
|
+
Inst::XmmToGpr { src, dst, .. }
|
2193
|
+
| Inst::XmmToGprVex { src, dst, .. }
|
2194
|
+
| Inst::XmmToGprImm { src, dst, .. }
|
2195
|
+
| Inst::XmmToGprImmVex { src, dst, .. } => {
|
2196
|
+
collector.reg_use(src);
|
2197
|
+
collector.reg_def(dst);
|
2198
|
+
}
|
2199
|
+
Inst::GprToXmm { src, dst, .. } | Inst::GprToXmmVex { src, dst, .. } => {
|
2200
|
+
collector.reg_def(dst);
|
2201
|
+
src.get_operands(collector);
|
2202
|
+
}
|
2203
|
+
Inst::CvtIntToFloat {
|
2204
|
+
src1, src2, dst, ..
|
2205
|
+
} => {
|
2206
|
+
collector.reg_use(src1);
|
2207
|
+
collector.reg_reuse_def(dst, 0);
|
2208
|
+
src2.get_operands(collector);
|
2209
|
+
}
|
2210
|
+
Inst::CvtIntToFloatVex {
|
2211
|
+
src1, src2, dst, ..
|
2212
|
+
} => {
|
2213
|
+
collector.reg_def(dst);
|
2214
|
+
collector.reg_use(src1);
|
2215
|
+
src2.get_operands(collector);
|
2216
|
+
}
|
2217
|
+
Inst::CvtUint64ToFloatSeq {
|
2218
|
+
src,
|
2219
|
+
dst,
|
2220
|
+
tmp_gpr1,
|
2221
|
+
tmp_gpr2,
|
2222
|
+
..
|
2223
|
+
} => {
|
2224
|
+
collector.reg_use(src);
|
2225
|
+
collector.reg_early_def(dst);
|
2226
|
+
collector.reg_early_def(tmp_gpr1);
|
2227
|
+
collector.reg_early_def(tmp_gpr2);
|
2228
|
+
}
|
2229
|
+
Inst::CvtFloatToSintSeq {
|
2230
|
+
src,
|
2231
|
+
dst,
|
2232
|
+
tmp_xmm,
|
2233
|
+
tmp_gpr,
|
2234
|
+
..
|
2235
|
+
} => {
|
2236
|
+
collector.reg_use(src);
|
2237
|
+
collector.reg_early_def(dst);
|
2238
|
+
collector.reg_early_def(tmp_gpr);
|
2239
|
+
collector.reg_early_def(tmp_xmm);
|
2240
|
+
}
|
2241
|
+
Inst::CvtFloatToUintSeq {
|
2242
|
+
src,
|
2243
|
+
dst,
|
2244
|
+
tmp_gpr,
|
2245
|
+
tmp_xmm,
|
2246
|
+
tmp_xmm2,
|
2247
|
+
..
|
2248
|
+
} => {
|
2249
|
+
collector.reg_use(src);
|
2250
|
+
collector.reg_early_def(dst);
|
2251
|
+
collector.reg_early_def(tmp_gpr);
|
2252
|
+
collector.reg_early_def(tmp_xmm);
|
2253
|
+
collector.reg_early_def(tmp_xmm2);
|
2254
|
+
}
|
2255
|
+
|
2256
|
+
Inst::MovImmM { dst, .. } => {
|
2257
|
+
dst.get_operands(collector);
|
2258
|
+
}
|
2259
|
+
|
2260
|
+
Inst::MovzxRmR { src, dst, .. } => {
|
2261
|
+
collector.reg_def(dst);
|
2262
|
+
src.get_operands(collector);
|
2263
|
+
}
|
2264
|
+
Inst::Mov64MR { src, dst, .. } => {
|
2265
|
+
collector.reg_def(dst);
|
2266
|
+
src.get_operands(collector);
|
2267
|
+
}
|
2268
|
+
Inst::LoadEffectiveAddress { addr: src, dst, .. } => {
|
2269
|
+
collector.reg_def(dst);
|
2270
|
+
src.get_operands(collector);
|
2271
|
+
}
|
2272
|
+
Inst::MovsxRmR { src, dst, .. } => {
|
2273
|
+
collector.reg_def(dst);
|
2274
|
+
src.get_operands(collector);
|
2275
|
+
}
|
2276
|
+
Inst::MovRM { src, dst, .. } => {
|
2277
|
+
collector.reg_use(src);
|
2278
|
+
dst.get_operands(collector);
|
2279
|
+
}
|
2280
|
+
Inst::ShiftR {
|
2281
|
+
num_bits, src, dst, ..
|
2282
|
+
} => {
|
2283
|
+
collector.reg_use(src);
|
2284
|
+
collector.reg_reuse_def(dst, 0);
|
2285
|
+
if let Imm8Reg::Reg { reg } = num_bits.as_imm8_reg_mut() {
|
2286
|
+
collector.reg_fixed_use(reg, regs::rcx());
|
2287
|
+
}
|
2288
|
+
}
|
2289
|
+
Inst::CmpRmiR { src1, src2, .. } => {
|
2290
|
+
collector.reg_use(src1);
|
2291
|
+
src2.get_operands(collector);
|
2292
|
+
}
|
2293
|
+
Inst::Setcc { dst, .. } => {
|
2294
|
+
collector.reg_def(dst);
|
2295
|
+
}
|
2296
|
+
Inst::Bswap { src, dst, .. } => {
|
2297
|
+
collector.reg_use(src);
|
2298
|
+
collector.reg_reuse_def(dst, 0);
|
2299
|
+
}
|
2300
|
+
Inst::Cmove {
|
2301
|
+
consequent,
|
2302
|
+
alternative,
|
2303
|
+
dst,
|
2304
|
+
..
|
2305
|
+
} => {
|
2306
|
+
collector.reg_use(alternative);
|
2307
|
+
collector.reg_reuse_def(dst, 0);
|
2308
|
+
consequent.get_operands(collector);
|
2309
|
+
}
|
2310
|
+
Inst::XmmCmove {
|
2311
|
+
consequent,
|
2312
|
+
alternative,
|
2313
|
+
dst,
|
2314
|
+
..
|
2315
|
+
} => {
|
2316
|
+
collector.reg_use(alternative);
|
2317
|
+
collector.reg_reuse_def(dst, 0);
|
2318
|
+
collector.reg_use(consequent);
|
2319
|
+
}
|
2320
|
+
Inst::Push64 { src } => {
|
2321
|
+
src.get_operands(collector);
|
2322
|
+
}
|
2323
|
+
Inst::Pop64 { dst } => {
|
2324
|
+
collector.reg_def(dst);
|
2325
|
+
}
|
2326
|
+
Inst::StackProbeLoop { tmp, .. } => {
|
2327
|
+
collector.reg_early_def(tmp);
|
2328
|
+
}
|
2329
|
+
|
2330
|
+
Inst::CallKnown { dest, info, .. } => {
|
2331
|
+
// Probestack is special and is only inserted after
|
2332
|
+
// regalloc, so we do not need to represent its ABI to the
|
2333
|
+
// register allocator. Assert that we don't alter that
|
2334
|
+
// arrangement.
|
2335
|
+
let CallInfo {
|
2336
|
+
uses,
|
2337
|
+
defs,
|
2338
|
+
clobbers,
|
2339
|
+
..
|
2340
|
+
} = &mut **info.as_mut().expect("CallInfo is expected in this path");
|
2341
|
+
debug_assert_ne!(*dest, ExternalName::LibCall(LibCall::Probestack));
|
2342
|
+
for CallArgPair { vreg, preg } in uses {
|
2343
|
+
collector.reg_fixed_use(vreg, *preg);
|
2344
|
+
}
|
2345
|
+
for CallRetPair { vreg, preg } in defs {
|
2346
|
+
collector.reg_fixed_def(vreg, *preg);
|
2347
|
+
}
|
2348
|
+
collector.reg_clobbers(*clobbers);
|
2349
|
+
}
|
2350
|
+
|
2351
|
+
Inst::CallUnknown { info, dest, .. } => {
|
2352
|
+
let CallInfo {
|
2353
|
+
uses,
|
2354
|
+
defs,
|
2355
|
+
clobbers,
|
2356
|
+
callee_conv,
|
2357
|
+
..
|
2358
|
+
} = &mut **info.as_mut().expect("CallInfo is expected in this path");
|
2359
|
+
match dest {
|
2360
|
+
RegMem::Reg { reg } if *callee_conv == CallConv::Winch => {
|
2361
|
+
// TODO(https://github.com/bytecodealliance/regalloc2/issues/145):
|
2362
|
+
// This shouldn't be a fixed register constraint. r10 is caller-saved, so this
|
2363
|
+
// should be safe to use.
|
2364
|
+
collector.reg_fixed_use(reg, regs::r10())
|
2365
|
+
}
|
2366
|
+
_ => dest.get_operands(collector),
|
2367
|
+
}
|
2368
|
+
for CallArgPair { vreg, preg } in uses {
|
2369
|
+
collector.reg_fixed_use(vreg, *preg);
|
2370
|
+
}
|
2371
|
+
for CallRetPair { vreg, preg } in defs {
|
2372
|
+
collector.reg_fixed_def(vreg, *preg);
|
2373
|
+
}
|
2374
|
+
collector.reg_clobbers(*clobbers);
|
2375
|
+
}
|
2376
|
+
|
2377
|
+
Inst::ReturnCallKnown { callee, info } => {
|
2378
|
+
let ReturnCallInfo { uses, tmp, .. } = &mut **info;
|
2379
|
+
collector.reg_fixed_def(tmp, regs::r11());
|
2380
|
+
// Same as in the `Inst::CallKnown` branch.
|
2381
|
+
debug_assert_ne!(*callee, ExternalName::LibCall(LibCall::Probestack));
|
2382
|
+
for CallArgPair { vreg, preg } in uses {
|
2383
|
+
collector.reg_fixed_use(vreg, *preg);
|
2384
|
+
}
|
2385
|
+
}
|
2386
|
+
|
2387
|
+
Inst::ReturnCallUnknown { callee, info } => {
|
2388
|
+
let ReturnCallInfo { uses, tmp, .. } = &mut **info;
|
2389
|
+
|
2390
|
+
// TODO(https://github.com/bytecodealliance/regalloc2/issues/145):
|
2391
|
+
// This shouldn't be a fixed register constraint, but it's not clear how to
|
2392
|
+
// pick a register that won't be clobbered by the callee-save restore code
|
2393
|
+
// emitted with a return_call_indirect. r10 is caller-saved, so this should be
|
2394
|
+
// safe to use.
|
2395
|
+
collector.reg_fixed_use(callee, regs::r10());
|
2396
|
+
|
2397
|
+
collector.reg_fixed_def(tmp, regs::r11());
|
2398
|
+
for CallArgPair { vreg, preg } in uses {
|
2399
|
+
collector.reg_fixed_use(vreg, *preg);
|
2400
|
+
}
|
2401
|
+
}
|
2402
|
+
|
2403
|
+
Inst::JmpTableSeq {
|
2404
|
+
idx, tmp1, tmp2, ..
|
2405
|
+
} => {
|
2406
|
+
collector.reg_use(idx);
|
2407
|
+
collector.reg_early_def(tmp1);
|
2408
|
+
// In the sequence emitted for this pseudoinstruction in emit.rs,
|
2409
|
+
// tmp2 is only written after idx is read, so it doesn't need to be
|
2410
|
+
// an early def.
|
2411
|
+
collector.reg_def(tmp2);
|
2412
|
+
}
|
2413
|
+
|
2414
|
+
Inst::JmpUnknown { target } => {
|
2415
|
+
target.get_operands(collector);
|
2416
|
+
}
|
2417
|
+
|
2418
|
+
Inst::LoadExtName { dst, .. } => {
|
2419
|
+
collector.reg_def(dst);
|
2420
|
+
}
|
2421
|
+
|
2422
|
+
Inst::LockCmpxchg {
|
2423
|
+
replacement,
|
2424
|
+
expected,
|
2425
|
+
mem,
|
2426
|
+
dst_old,
|
2427
|
+
..
|
2428
|
+
} => {
|
2429
|
+
collector.reg_use(replacement);
|
2430
|
+
collector.reg_fixed_use(expected, regs::rax());
|
2431
|
+
collector.reg_fixed_def(dst_old, regs::rax());
|
2432
|
+
mem.get_operands(collector);
|
2433
|
+
}
|
2434
|
+
|
2435
|
+
Inst::AtomicRmwSeq {
|
2436
|
+
operand,
|
2437
|
+
temp,
|
2438
|
+
dst_old,
|
2439
|
+
mem,
|
2440
|
+
..
|
2441
|
+
} => {
|
2442
|
+
collector.reg_late_use(operand);
|
2443
|
+
collector.reg_early_def(temp);
|
2444
|
+
// This `fixed_def` is needed because `CMPXCHG` always uses this
|
2445
|
+
// register implicitly.
|
2446
|
+
collector.reg_fixed_def(dst_old, regs::rax());
|
2447
|
+
mem.get_operands_late(collector)
|
2448
|
+
}
|
2449
|
+
|
2450
|
+
Inst::Args { args } => {
|
2451
|
+
for ArgPair { vreg, preg } in args {
|
2452
|
+
collector.reg_fixed_def(vreg, *preg);
|
2453
|
+
}
|
2454
|
+
}
|
2455
|
+
|
2456
|
+
Inst::Rets { rets } => {
|
2457
|
+
// The return value(s) are live-out; we represent this
|
2458
|
+
// with register uses on the return instruction.
|
2459
|
+
for RetPair { vreg, preg } in rets {
|
2460
|
+
collector.reg_fixed_use(vreg, *preg);
|
2461
|
+
}
|
2462
|
+
}
|
2463
|
+
|
2464
|
+
Inst::JmpKnown { .. }
|
2465
|
+
| Inst::JmpIf { .. }
|
2466
|
+
| Inst::JmpCond { .. }
|
2467
|
+
| Inst::Ret { .. }
|
2468
|
+
| Inst::Nop { .. }
|
2469
|
+
| Inst::TrapIf { .. }
|
2470
|
+
| Inst::TrapIfAnd { .. }
|
2471
|
+
| Inst::TrapIfOr { .. }
|
2472
|
+
| Inst::Hlt
|
2473
|
+
| Inst::Ud2 { .. }
|
2474
|
+
| Inst::Fence { .. } => {
|
2475
|
+
// No registers are used.
|
2476
|
+
}
|
2477
|
+
|
2478
|
+
Inst::ElfTlsGetAddr { dst, .. } | Inst::MachOTlsGetAddr { dst, .. } => {
|
2479
|
+
collector.reg_fixed_def(dst, regs::rax());
|
2480
|
+
// All caller-saves are clobbered.
|
2481
|
+
//
|
2482
|
+
// We use the SysV calling convention here because the
|
2483
|
+
// pseudoinstruction (and relocation that it emits) is specific to
|
2484
|
+
// ELF systems; other x86-64 targets with other conventions (i.e.,
|
2485
|
+
// Windows) use different TLS strategies.
|
2486
|
+
let mut clobbers = X64ABIMachineSpec::get_regs_clobbered_by_call(CallConv::SystemV);
|
2487
|
+
clobbers.remove(regs::gpr_preg(regs::ENC_RAX));
|
2488
|
+
collector.reg_clobbers(clobbers);
|
2489
|
+
}
|
2490
|
+
|
2491
|
+
Inst::CoffTlsGetAddr { dst, tmp, .. } => {
|
2492
|
+
// We also use the gs register. But that register is not allocatable by the
|
2493
|
+
// register allocator, so we don't need to mark it as used here.
|
2494
|
+
|
2495
|
+
// We use %rax to set the address
|
2496
|
+
collector.reg_fixed_def(dst, regs::rax());
|
2497
|
+
|
2498
|
+
// We use %rcx as a temporary variable to load the _tls_index
|
2499
|
+
collector.reg_fixed_def(tmp, regs::rcx());
|
2500
|
+
}
|
2501
|
+
|
2502
|
+
Inst::Unwind { .. } => {}
|
2503
|
+
|
2504
|
+
Inst::DummyUse { reg } => {
|
2505
|
+
collector.reg_use(reg);
|
2506
|
+
}
|
2507
|
+
}
|
2508
|
+
}
|
2509
|
+
|
2510
|
+
//=============================================================================
|
2511
|
+
// Instructions: misc functions and external interface
|
2512
|
+
|
2513
|
+
impl MachInst for Inst {
|
2514
|
+
type ABIMachineSpec = X64ABIMachineSpec;
|
2515
|
+
|
2516
|
+
fn get_operands(&mut self, collector: &mut impl OperandVisitor) {
|
2517
|
+
x64_get_operands(self, collector)
|
2518
|
+
}
|
2519
|
+
|
2520
|
+
fn is_move(&self) -> Option<(Writable<Reg>, Reg)> {
|
2521
|
+
match self {
|
2522
|
+
// Note (carefully!) that a 32-bit mov *isn't* a no-op since it zeroes
|
2523
|
+
// out the upper 32 bits of the destination. For example, we could
|
2524
|
+
// conceivably use `movl %reg, %reg` to zero out the top 32 bits of
|
2525
|
+
// %reg.
|
2526
|
+
Self::MovRR { size, src, dst, .. } if *size == OperandSize::Size64 => {
|
2527
|
+
Some((dst.to_writable_reg(), src.to_reg()))
|
2528
|
+
}
|
2529
|
+
// Note as well that MOVS[S|D] when used in the `XmmUnaryRmR` context are pure moves of
|
2530
|
+
// scalar floating-point values (and annotate `dst` as `def`s to the register allocator)
|
2531
|
+
// whereas the same operation in a packed context, e.g. `XMM_RM_R`, is used to merge a
|
2532
|
+
// value into the lowest lane of a vector (not a move).
|
2533
|
+
Self::XmmUnaryRmR { op, src, dst, .. }
|
2534
|
+
if *op == SseOpcode::Movss
|
2535
|
+
|| *op == SseOpcode::Movsd
|
2536
|
+
|| *op == SseOpcode::Movaps
|
2537
|
+
|| *op == SseOpcode::Movapd
|
2538
|
+
|| *op == SseOpcode::Movups
|
2539
|
+
|| *op == SseOpcode::Movupd
|
2540
|
+
|| *op == SseOpcode::Movdqa
|
2541
|
+
|| *op == SseOpcode::Movdqu =>
|
2542
|
+
{
|
2543
|
+
if let RegMem::Reg { reg } = src.clone().to_reg_mem() {
|
2544
|
+
Some((dst.to_writable_reg(), reg))
|
2545
|
+
} else {
|
2546
|
+
None
|
2547
|
+
}
|
2548
|
+
}
|
2549
|
+
_ => None,
|
2550
|
+
}
|
2551
|
+
}
|
2552
|
+
|
2553
|
+
fn is_included_in_clobbers(&self) -> bool {
|
2554
|
+
match self {
|
2555
|
+
&Inst::Args { .. } => false,
|
2556
|
+
_ => true,
|
2557
|
+
}
|
2558
|
+
}
|
2559
|
+
|
2560
|
+
fn is_trap(&self) -> bool {
|
2561
|
+
match self {
|
2562
|
+
Self::Ud2 { .. } => true,
|
2563
|
+
_ => false,
|
2564
|
+
}
|
2565
|
+
}
|
2566
|
+
|
2567
|
+
fn is_args(&self) -> bool {
|
2568
|
+
match self {
|
2569
|
+
Self::Args { .. } => true,
|
2570
|
+
_ => false,
|
2571
|
+
}
|
2572
|
+
}
|
2573
|
+
|
2574
|
+
fn is_term(&self) -> MachTerminator {
|
2575
|
+
match self {
|
2576
|
+
// Interesting cases.
|
2577
|
+
&Self::Rets { .. } => MachTerminator::Ret,
|
2578
|
+
&Self::ReturnCallKnown { .. } | &Self::ReturnCallUnknown { .. } => {
|
2579
|
+
MachTerminator::RetCall
|
2580
|
+
}
|
2581
|
+
&Self::JmpKnown { .. } => MachTerminator::Uncond,
|
2582
|
+
&Self::JmpCond { .. } => MachTerminator::Cond,
|
2583
|
+
&Self::JmpTableSeq { .. } => MachTerminator::Indirect,
|
2584
|
+
// All other cases are boring.
|
2585
|
+
_ => MachTerminator::None,
|
2586
|
+
}
|
2587
|
+
}
|
2588
|
+
|
2589
|
+
fn is_mem_access(&self) -> bool {
|
2590
|
+
panic!("TODO FILL ME OUT")
|
2591
|
+
}
|
2592
|
+
|
2593
|
+
fn gen_move(dst_reg: Writable<Reg>, src_reg: Reg, ty: Type) -> Inst {
|
2594
|
+
trace!(
|
2595
|
+
"Inst::gen_move {:?} -> {:?} (type: {:?})",
|
2596
|
+
src_reg,
|
2597
|
+
dst_reg.to_reg(),
|
2598
|
+
ty
|
2599
|
+
);
|
2600
|
+
let rc_dst = dst_reg.to_reg().class();
|
2601
|
+
let rc_src = src_reg.class();
|
2602
|
+
// If this isn't true, we have gone way off the rails.
|
2603
|
+
debug_assert!(rc_dst == rc_src);
|
2604
|
+
match rc_dst {
|
2605
|
+
RegClass::Int => Inst::mov_r_r(OperandSize::Size64, src_reg, dst_reg),
|
2606
|
+
RegClass::Float => {
|
2607
|
+
// The Intel optimization manual, in "3.5.1.13 Zero-Latency MOV Instructions",
|
2608
|
+
// doesn't include MOVSS/MOVSD as instructions with zero-latency. Use movaps for
|
2609
|
+
// those, which may write more lanes that we need, but are specified to have
|
2610
|
+
// zero-latency.
|
2611
|
+
let opcode = match ty {
|
2612
|
+
types::F32 | types::F64 | types::F32X4 => SseOpcode::Movaps,
|
2613
|
+
types::F64X2 => SseOpcode::Movapd,
|
2614
|
+
_ if ty.is_vector() && ty.bits() == 128 => SseOpcode::Movdqa,
|
2615
|
+
_ => unimplemented!("unable to move type: {}", ty),
|
2616
|
+
};
|
2617
|
+
Inst::xmm_unary_rm_r(opcode, RegMem::reg(src_reg), dst_reg)
|
2618
|
+
}
|
2619
|
+
RegClass::Vector => unreachable!(),
|
2620
|
+
}
|
2621
|
+
}
|
2622
|
+
|
2623
|
+
fn gen_nop(preferred_size: usize) -> Inst {
|
2624
|
+
Inst::nop(std::cmp::min(preferred_size, 15) as u8)
|
2625
|
+
}
|
2626
|
+
|
2627
|
+
fn rc_for_type(ty: Type) -> CodegenResult<(&'static [RegClass], &'static [Type])> {
|
2628
|
+
match ty {
|
2629
|
+
types::I8 => Ok((&[RegClass::Int], &[types::I8])),
|
2630
|
+
types::I16 => Ok((&[RegClass::Int], &[types::I16])),
|
2631
|
+
types::I32 => Ok((&[RegClass::Int], &[types::I32])),
|
2632
|
+
types::I64 => Ok((&[RegClass::Int], &[types::I64])),
|
2633
|
+
types::R32 => panic!("32-bit reftype pointer should never be seen on x86-64"),
|
2634
|
+
types::R64 => Ok((&[RegClass::Int], &[types::R64])),
|
2635
|
+
types::F32 => Ok((&[RegClass::Float], &[types::F32])),
|
2636
|
+
types::F64 => Ok((&[RegClass::Float], &[types::F64])),
|
2637
|
+
types::I128 => Ok((&[RegClass::Int, RegClass::Int], &[types::I64, types::I64])),
|
2638
|
+
_ if ty.is_vector() => {
|
2639
|
+
assert!(ty.bits() <= 128);
|
2640
|
+
Ok((&[RegClass::Float], &[types::I8X16]))
|
2641
|
+
}
|
2642
|
+
_ => Err(CodegenError::Unsupported(format!(
|
2643
|
+
"Unexpected SSA-value type: {}",
|
2644
|
+
ty
|
2645
|
+
))),
|
2646
|
+
}
|
2647
|
+
}
|
2648
|
+
|
2649
|
+
fn canonical_type_for_rc(rc: RegClass) -> Type {
|
2650
|
+
match rc {
|
2651
|
+
RegClass::Float => types::I8X16,
|
2652
|
+
RegClass::Int => types::I64,
|
2653
|
+
RegClass::Vector => unreachable!(),
|
2654
|
+
}
|
2655
|
+
}
|
2656
|
+
|
2657
|
+
fn gen_jump(label: MachLabel) -> Inst {
|
2658
|
+
Inst::jmp_known(label)
|
2659
|
+
}
|
2660
|
+
|
2661
|
+
fn gen_imm_u64(value: u64, dst: Writable<Reg>) -> Option<Self> {
|
2662
|
+
Some(Inst::imm(OperandSize::Size64, value, dst))
|
2663
|
+
}
|
2664
|
+
|
2665
|
+
fn gen_imm_f64(value: f64, tmp: Writable<Reg>, dst: Writable<Reg>) -> SmallVec<[Self; 2]> {
|
2666
|
+
let imm_to_gpr = Inst::imm(OperandSize::Size64, value.to_bits(), tmp);
|
2667
|
+
let gpr_to_xmm = Self::gpr_to_xmm(
|
2668
|
+
SseOpcode::Movd,
|
2669
|
+
tmp.to_reg().into(),
|
2670
|
+
OperandSize::Size64,
|
2671
|
+
dst,
|
2672
|
+
);
|
2673
|
+
smallvec![imm_to_gpr, gpr_to_xmm]
|
2674
|
+
}
|
2675
|
+
|
2676
|
+
fn gen_dummy_use(reg: Reg) -> Self {
|
2677
|
+
Inst::DummyUse { reg }
|
2678
|
+
}
|
2679
|
+
|
2680
|
+
fn worst_case_size() -> CodeOffset {
|
2681
|
+
15
|
2682
|
+
}
|
2683
|
+
|
2684
|
+
fn ref_type_regclass(_: &settings::Flags) -> RegClass {
|
2685
|
+
RegClass::Int
|
2686
|
+
}
|
2687
|
+
|
2688
|
+
fn is_safepoint(&self) -> bool {
|
2689
|
+
match self {
|
2690
|
+
Inst::CallKnown { .. } | Inst::CallUnknown { .. } => true,
|
2691
|
+
_ => false,
|
2692
|
+
}
|
2693
|
+
}
|
2694
|
+
|
2695
|
+
fn function_alignment() -> FunctionAlignment {
|
2696
|
+
FunctionAlignment {
|
2697
|
+
minimum: 1,
|
2698
|
+
// Change the alignment from 16-bytes to 32-bytes for better performance.
|
2699
|
+
// fix-8573: https://github.com/bytecodealliance/wasmtime/issues/8573
|
2700
|
+
preferred: 32,
|
2701
|
+
}
|
2702
|
+
}
|
2703
|
+
|
2704
|
+
type LabelUse = LabelUse;
|
2705
|
+
|
2706
|
+
const TRAP_OPCODE: &'static [u8] = &[0x0f, 0x0b];
|
2707
|
+
}
|
2708
|
+
|
2709
|
+
/// Constant state used during emissions of a sequence of instructions.
|
2710
|
+
pub struct EmitInfo {
|
2711
|
+
pub(super) flags: settings::Flags,
|
2712
|
+
isa_flags: x64_settings::Flags,
|
2713
|
+
}
|
2714
|
+
|
2715
|
+
impl EmitInfo {
|
2716
|
+
/// Create a constant state for emission of instructions.
|
2717
|
+
pub fn new(flags: settings::Flags, isa_flags: x64_settings::Flags) -> Self {
|
2718
|
+
Self { flags, isa_flags }
|
2719
|
+
}
|
2720
|
+
}
|
2721
|
+
|
2722
|
+
impl MachInstEmit for Inst {
|
2723
|
+
type State = EmitState;
|
2724
|
+
type Info = EmitInfo;
|
2725
|
+
|
2726
|
+
fn emit(&self, sink: &mut MachBuffer<Inst>, info: &Self::Info, state: &mut Self::State) {
|
2727
|
+
emit::emit(self, sink, info, state);
|
2728
|
+
}
|
2729
|
+
|
2730
|
+
fn pretty_print_inst(&self, _: &mut Self::State) -> String {
|
2731
|
+
PrettyPrint::pretty_print(self, 0)
|
2732
|
+
}
|
2733
|
+
}
|
2734
|
+
|
2735
|
+
/// A label-use (internal relocation) in generated code.
|
2736
|
+
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
2737
|
+
pub enum LabelUse {
|
2738
|
+
/// A 32-bit offset from location of relocation itself, added to the existing value at that
|
2739
|
+
/// location. Used for control flow instructions which consider an offset from the start of the
|
2740
|
+
/// next instruction (so the size of the payload -- 4 bytes -- is subtracted from the payload).
|
2741
|
+
JmpRel32,
|
2742
|
+
|
2743
|
+
/// A 32-bit offset from location of relocation itself, added to the existing value at that
|
2744
|
+
/// location.
|
2745
|
+
PCRel32,
|
2746
|
+
}
|
2747
|
+
|
2748
|
+
impl MachInstLabelUse for LabelUse {
|
2749
|
+
const ALIGN: CodeOffset = 1;
|
2750
|
+
|
2751
|
+
fn max_pos_range(self) -> CodeOffset {
|
2752
|
+
match self {
|
2753
|
+
LabelUse::JmpRel32 | LabelUse::PCRel32 => 0x7fff_ffff,
|
2754
|
+
}
|
2755
|
+
}
|
2756
|
+
|
2757
|
+
fn max_neg_range(self) -> CodeOffset {
|
2758
|
+
match self {
|
2759
|
+
LabelUse::JmpRel32 | LabelUse::PCRel32 => 0x8000_0000,
|
2760
|
+
}
|
2761
|
+
}
|
2762
|
+
|
2763
|
+
fn patch_size(self) -> CodeOffset {
|
2764
|
+
match self {
|
2765
|
+
LabelUse::JmpRel32 | LabelUse::PCRel32 => 4,
|
2766
|
+
}
|
2767
|
+
}
|
2768
|
+
|
2769
|
+
fn patch(self, buffer: &mut [u8], use_offset: CodeOffset, label_offset: CodeOffset) {
|
2770
|
+
let pc_rel = (label_offset as i64) - (use_offset as i64);
|
2771
|
+
debug_assert!(pc_rel <= self.max_pos_range() as i64);
|
2772
|
+
debug_assert!(pc_rel >= -(self.max_neg_range() as i64));
|
2773
|
+
let pc_rel = pc_rel as u32;
|
2774
|
+
match self {
|
2775
|
+
LabelUse::JmpRel32 => {
|
2776
|
+
let addend = u32::from_le_bytes([buffer[0], buffer[1], buffer[2], buffer[3]]);
|
2777
|
+
let value = pc_rel.wrapping_add(addend).wrapping_sub(4);
|
2778
|
+
buffer.copy_from_slice(&value.to_le_bytes()[..]);
|
2779
|
+
}
|
2780
|
+
LabelUse::PCRel32 => {
|
2781
|
+
let addend = u32::from_le_bytes([buffer[0], buffer[1], buffer[2], buffer[3]]);
|
2782
|
+
let value = pc_rel.wrapping_add(addend);
|
2783
|
+
buffer.copy_from_slice(&value.to_le_bytes()[..]);
|
2784
|
+
}
|
2785
|
+
}
|
2786
|
+
}
|
2787
|
+
|
2788
|
+
fn supports_veneer(self) -> bool {
|
2789
|
+
match self {
|
2790
|
+
LabelUse::JmpRel32 | LabelUse::PCRel32 => false,
|
2791
|
+
}
|
2792
|
+
}
|
2793
|
+
|
2794
|
+
fn veneer_size(self) -> CodeOffset {
|
2795
|
+
match self {
|
2796
|
+
LabelUse::JmpRel32 | LabelUse::PCRel32 => 0,
|
2797
|
+
}
|
2798
|
+
}
|
2799
|
+
|
2800
|
+
fn worst_case_veneer_size() -> CodeOffset {
|
2801
|
+
0
|
2802
|
+
}
|
2803
|
+
|
2804
|
+
fn generate_veneer(self, _: &mut [u8], _: CodeOffset) -> (CodeOffset, LabelUse) {
|
2805
|
+
match self {
|
2806
|
+
LabelUse::JmpRel32 | LabelUse::PCRel32 => {
|
2807
|
+
panic!("Veneer not supported for JumpRel32 label-use.");
|
2808
|
+
}
|
2809
|
+
}
|
2810
|
+
}
|
2811
|
+
|
2812
|
+
fn from_reloc(reloc: Reloc, addend: Addend) -> Option<Self> {
|
2813
|
+
match (reloc, addend) {
|
2814
|
+
(Reloc::X86CallPCRel4, -4) => Some(LabelUse::JmpRel32),
|
2815
|
+
_ => None,
|
2816
|
+
}
|
2817
|
+
}
|
2818
|
+
}
|