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