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,2969 @@
|
|
1
|
+
;; aarch64 instruction selection and CLIF-to-MachInst lowering.
|
2
|
+
|
3
|
+
;; The main lowering constructor term: takes a clif `Inst` and returns the
|
4
|
+
;; register(s) within which the lowered instruction's result values live.
|
5
|
+
(decl partial lower (Inst) InstOutput)
|
6
|
+
|
7
|
+
;; Variant of the main lowering constructor term, which receives an
|
8
|
+
;; additional argument (a vector of branch targets to be used) for
|
9
|
+
;; implementing branches.
|
10
|
+
;; For two-branch instructions, the first target is `taken` and the second
|
11
|
+
;; `not_taken`, even if it is a Fallthrough instruction: because we reorder
|
12
|
+
;; blocks while we lower, the fallthrough in the new order is not (necessarily)
|
13
|
+
;; the same as the fallthrough in CLIF. So, we use the explicitly-provided
|
14
|
+
;; target.
|
15
|
+
(decl partial lower_branch (Inst MachLabelSlice) Unit)
|
16
|
+
|
17
|
+
;;;; Rules for `iconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
18
|
+
|
19
|
+
(rule (lower (has_type ty (iconst (u64_from_imm64 n))))
|
20
|
+
(imm ty (ImmExtend.Zero) n))
|
21
|
+
|
22
|
+
;;;; Rules for `null` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
23
|
+
|
24
|
+
(rule (lower (has_type ty (null)))
|
25
|
+
(imm ty (ImmExtend.Zero) 0))
|
26
|
+
|
27
|
+
;;;; Rules for `f32const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
28
|
+
|
29
|
+
(rule (lower (f32const (u32_from_ieee32 n)))
|
30
|
+
(constant_f32 n))
|
31
|
+
|
32
|
+
;;;; Rules for `f64const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
33
|
+
|
34
|
+
(rule (lower (f64const (u64_from_ieee64 n)))
|
35
|
+
(constant_f64 n))
|
36
|
+
|
37
|
+
;;;; Rules for `nop` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
38
|
+
|
39
|
+
(rule (lower (nop))
|
40
|
+
(invalid_reg))
|
41
|
+
|
42
|
+
;;;; Rules for `iadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
43
|
+
|
44
|
+
;; `i64` and smaller
|
45
|
+
|
46
|
+
;; Base case, simply adding things in registers.
|
47
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (iadd x y)))
|
48
|
+
(add ty x y))
|
49
|
+
|
50
|
+
;; Special cases for when one operand is an immediate that fits in 12 bits.
|
51
|
+
(rule 4 (lower (has_type (fits_in_64 ty) (iadd x (imm12_from_value y))))
|
52
|
+
(add_imm ty x y))
|
53
|
+
|
54
|
+
(rule 5 (lower (has_type (fits_in_64 ty) (iadd (imm12_from_value x) y)))
|
55
|
+
(add_imm ty y x))
|
56
|
+
|
57
|
+
;; Same as the previous special cases, except we can switch the addition to a
|
58
|
+
;; subtraction if the negated immediate fits in 12 bits.
|
59
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (iadd x y)))
|
60
|
+
(if-let imm12_neg (imm12_from_negated_value y))
|
61
|
+
(sub_imm ty x imm12_neg))
|
62
|
+
|
63
|
+
(rule 3 (lower (has_type (fits_in_64 ty) (iadd x y)))
|
64
|
+
(if-let imm12_neg (imm12_from_negated_value x))
|
65
|
+
(sub_imm ty y imm12_neg))
|
66
|
+
|
67
|
+
;; Special cases for when we're adding an extended register where the extending
|
68
|
+
;; operation can get folded into the add itself.
|
69
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (iadd x (extended_value_from_value y))))
|
70
|
+
(add_extend ty x y))
|
71
|
+
|
72
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (iadd (extended_value_from_value x) y)))
|
73
|
+
(add_extend ty y x))
|
74
|
+
|
75
|
+
;; Special cases for when we're adding the shift of a different
|
76
|
+
;; register by a constant amount and the shift can get folded into the add.
|
77
|
+
(rule 7 (lower (has_type (fits_in_64 ty)
|
78
|
+
(iadd x (ishl y (iconst k)))))
|
79
|
+
(if-let amt (lshl_from_imm64 ty k))
|
80
|
+
(add_shift ty x y amt))
|
81
|
+
|
82
|
+
(rule 6 (lower (has_type (fits_in_64 ty)
|
83
|
+
(iadd (ishl x (iconst k)) y)))
|
84
|
+
(if-let amt (lshl_from_imm64 ty k))
|
85
|
+
(add_shift ty y x amt))
|
86
|
+
|
87
|
+
;; Fold an `iadd` and `imul` combination into a `madd` instruction.
|
88
|
+
(rule 7 (lower (has_type (fits_in_64 ty) (iadd x (imul y z))))
|
89
|
+
(madd ty y z x))
|
90
|
+
|
91
|
+
(rule 6 (lower (has_type (fits_in_64 ty) (iadd (imul x y) z)))
|
92
|
+
(madd ty x y z))
|
93
|
+
|
94
|
+
;; Fold an `isub` and `imul` combination into a `msub` instruction.
|
95
|
+
(rule (lower (has_type (fits_in_64 ty) (isub x (imul y z))))
|
96
|
+
(msub ty y z x))
|
97
|
+
|
98
|
+
;; vectors
|
99
|
+
|
100
|
+
(rule -2 (lower (has_type ty @ (multi_lane _ _) (iadd x y)))
|
101
|
+
(add_vec x y (vector_size ty)))
|
102
|
+
|
103
|
+
;; `i128`
|
104
|
+
(rule -3 (lower (has_type $I128 (iadd x y)))
|
105
|
+
(let
|
106
|
+
;; Get the high/low registers for `x`.
|
107
|
+
((x_regs ValueRegs x)
|
108
|
+
(x_lo Reg (value_regs_get x_regs 0))
|
109
|
+
(x_hi Reg (value_regs_get x_regs 1))
|
110
|
+
|
111
|
+
;; Get the high/low registers for `y`.
|
112
|
+
(y_regs ValueRegs y)
|
113
|
+
(y_lo Reg (value_regs_get y_regs 0))
|
114
|
+
(y_hi Reg (value_regs_get y_regs 1)))
|
115
|
+
;; the actual addition is `adds` followed by `adc` which comprises the
|
116
|
+
;; low/high bits of the result
|
117
|
+
(with_flags
|
118
|
+
(add_with_flags_paired $I64 x_lo y_lo)
|
119
|
+
(adc_paired $I64 x_hi y_hi))))
|
120
|
+
|
121
|
+
;;;; Rules for `shuffle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
122
|
+
|
123
|
+
;; When a single element of one vector is broadcast to all the destination
|
124
|
+
;; lanes then the `dup` instruction can be used for this operation. Note that
|
125
|
+
;; for now this only matches lane selection from the first vector `a`, but
|
126
|
+
;; if necessary in the future rules can be added to select from `b` as well.
|
127
|
+
(rule 6 (lower (shuffle a b (shuffle_dup8_from_imm n)))
|
128
|
+
(vec_dup_from_fpu a (VectorSize.Size8x16) n))
|
129
|
+
(rule 5 (lower (shuffle a b (shuffle_dup16_from_imm n)))
|
130
|
+
(vec_dup_from_fpu a (VectorSize.Size16x8) n))
|
131
|
+
(rule 4 (lower (shuffle a b (shuffle_dup32_from_imm n)))
|
132
|
+
(vec_dup_from_fpu a (VectorSize.Size32x4) n))
|
133
|
+
(rule 3 (lower (shuffle a b (shuffle_dup64_from_imm n)))
|
134
|
+
(vec_dup_from_fpu a (VectorSize.Size64x2) n))
|
135
|
+
|
136
|
+
;; If the `Immediate` specified to the extractor looks like a duplication of the
|
137
|
+
;; `n`th lane of the first vector of size K-byte lanes, then each extractor
|
138
|
+
;; returns the `n` value as a `u8` to be used as part of a `vec_dup_from_fpu`
|
139
|
+
;; instruction. Note that there's a different extractor for each bit-width of
|
140
|
+
;; lane.
|
141
|
+
(decl shuffle_dup8_from_imm (u8) Immediate)
|
142
|
+
(extern extractor shuffle_dup8_from_imm shuffle_dup8_from_imm)
|
143
|
+
(decl shuffle_dup16_from_imm (u8) Immediate)
|
144
|
+
(extern extractor shuffle_dup16_from_imm shuffle_dup16_from_imm)
|
145
|
+
(decl shuffle_dup32_from_imm (u8) Immediate)
|
146
|
+
(extern extractor shuffle_dup32_from_imm shuffle_dup32_from_imm)
|
147
|
+
(decl shuffle_dup64_from_imm (u8) Immediate)
|
148
|
+
(extern extractor shuffle_dup64_from_imm shuffle_dup64_from_imm)
|
149
|
+
|
150
|
+
;; When the shuffle looks like "concatenate `a` and `b` and shift right by n*8
|
151
|
+
;; bytes", that's an `ext` instruction.
|
152
|
+
(rule 2 (lower (shuffle a b (vec_extract_imm4_from_immediate n)))
|
153
|
+
(vec_extract a b n))
|
154
|
+
|
155
|
+
;; Attempts to extract `n` from the specified shuffle `Immediate` where each
|
156
|
+
;; byte of the `Immediate` is a consecutive sequence starting from `n`. This
|
157
|
+
;; value of `n` is used as part of the `vec_extract` instruction which extracts
|
158
|
+
;; consecutive bytes from two vectors into one final vector, offset by `n`
|
159
|
+
;; bytes.
|
160
|
+
(decl vec_extract_imm4_from_immediate (u8) Immediate)
|
161
|
+
(extern extractor vec_extract_imm4_from_immediate vec_extract_imm4_from_immediate)
|
162
|
+
|
163
|
+
;; Rules for the `uzp1` and `uzp2` instructions which gather even-numbered lanes
|
164
|
+
;; or odd-numbered lanes
|
165
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1e1c_1a18_1614_1210_0e0c_0a08_0604_0200)))
|
166
|
+
(vec_uzp1 a b (VectorSize.Size8x16)))
|
167
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1d_1b19_1715_1311_0f0d_0b09_0705_0301)))
|
168
|
+
(vec_uzp2 a b (VectorSize.Size8x16)))
|
169
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1d1c_1918_1514_1110_0d0c_0908_0504_0100)))
|
170
|
+
(vec_uzp1 a b (VectorSize.Size16x8)))
|
171
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e_1b1a_1716_1312_0f0e_0b0a_0706_0302)))
|
172
|
+
(vec_uzp2 a b (VectorSize.Size16x8)))
|
173
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1b1a1918_13121110_0b0a0908_03020100)))
|
174
|
+
(vec_uzp1 a b (VectorSize.Size32x4)))
|
175
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c_17161514_0f0e0d0c_07060504)))
|
176
|
+
(vec_uzp2 a b (VectorSize.Size32x4)))
|
177
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1716151413121110_0706050403020100)))
|
178
|
+
(vec_uzp1 a b (VectorSize.Size64x2)))
|
179
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c1b1a1918_0f0e0d0c0b0a0908)))
|
180
|
+
(vec_uzp2 a b (VectorSize.Size64x2)))
|
181
|
+
|
182
|
+
;; Rules for the `zip1` and `zip2` instructions which interleave lanes in the
|
183
|
+
;; low or high halves of the two input vectors.
|
184
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1707_1606_1505_1404_1303_1202_1101_1000)))
|
185
|
+
(vec_zip1 a b (VectorSize.Size8x16)))
|
186
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f0f_1e0e_1d0d_1c0c_1b0b_1a0a_1909_1808)))
|
187
|
+
(vec_zip2 a b (VectorSize.Size8x16)))
|
188
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1716_0706_1514_0504_1312_0302_1110_0100)))
|
189
|
+
(vec_zip1 a b (VectorSize.Size16x8)))
|
190
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e_0f0e_1d1c_0d0c_1b1a_0b0a_1918_0908)))
|
191
|
+
(vec_zip2 a b (VectorSize.Size16x8)))
|
192
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x17161514_07060504_13121110_03020100)))
|
193
|
+
(vec_zip1 a b (VectorSize.Size32x4)))
|
194
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c_0f0e0d0c_1b1a1918_0b0a0908)))
|
195
|
+
(vec_zip2 a b (VectorSize.Size32x4)))
|
196
|
+
;; Note that zip1/zip2 for i64x2 vectors is omitted since it's already covered
|
197
|
+
;; by the i64x2 cases of uzp1/uzp2 above where both zip and uzp have the same
|
198
|
+
;; semantics for 64-bit lanes.
|
199
|
+
|
200
|
+
;; Rules for the `trn1` and `trn2` instructions which interleave odd or even
|
201
|
+
;; lanes in the two input vectors.
|
202
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1e0e_1c0c_1a0a_1808_1606_1404_1202_1000)))
|
203
|
+
(vec_trn1 a b (VectorSize.Size8x16)))
|
204
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f0f_1d0d_1b0b_1909_1707_1505_1303_1101)))
|
205
|
+
(vec_trn2 a b (VectorSize.Size8x16)))
|
206
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1d1c_0d0c_1918_0908_1514_0504_1110_0100)))
|
207
|
+
(vec_trn1 a b (VectorSize.Size16x8)))
|
208
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e_0f0e_1b1a_0b0a_1716_0706_1312_0302)))
|
209
|
+
(vec_trn2 a b (VectorSize.Size16x8)))
|
210
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1b1a1918_0b0a0908_13121110_03020100)))
|
211
|
+
(vec_trn1 a b (VectorSize.Size32x4)))
|
212
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c_0f0e0d0c_17161514_07060504)))
|
213
|
+
(vec_trn2 a b (VectorSize.Size32x4)))
|
214
|
+
;; Note that trn1/trn2 for i64x2 vectors is omitted since it's already covered
|
215
|
+
;; by the i64x2 cases of uzp1/uzp2 above where both trn and uzp have the same
|
216
|
+
;; semantics for 64-bit lanes.
|
217
|
+
|
218
|
+
;; Rules for the `rev{16,32,64}` instructions where reversals happen at either
|
219
|
+
;; the byte level, the 16-bit level, or 32-bit level. Note that all of these
|
220
|
+
;; patterns only match reversals in the first operand, but they can
|
221
|
+
;; theoretically be extended if necessary to reversals in the second operand.
|
222
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x0e0f_0c0d_0a0b_0809_0607_0405_0203_0001)))
|
223
|
+
(rev16 a (VectorSize.Size8x16)))
|
224
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x0c0d0e0f_08090a0b_04050607_00010203)))
|
225
|
+
(rev32 a (VectorSize.Size8x16)))
|
226
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x0d0c0f0e_09080b0a_05040706_01000302)))
|
227
|
+
(rev32 a (VectorSize.Size16x8)))
|
228
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x08090a0b0c0d0e0f_0001020304050607)))
|
229
|
+
(rev64 a (VectorSize.Size8x16)))
|
230
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x09080b0a0d0c0f0e_0100030205040706)))
|
231
|
+
(rev64 a (VectorSize.Size16x8)))
|
232
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x0b0a09080f0e0d0c_0302010007060504)))
|
233
|
+
(rev64 a (VectorSize.Size32x4)))
|
234
|
+
|
235
|
+
(rule (lower (has_type ty (shuffle rn rn2 (u128_from_immediate mask))))
|
236
|
+
(let ((mask_reg Reg (constant_f128 mask)))
|
237
|
+
(vec_tbl2 rn rn2 mask_reg ty)))
|
238
|
+
|
239
|
+
;;;; Rules for `swizzle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
240
|
+
|
241
|
+
(rule (lower (has_type vec_i128_ty (swizzle rn rm)))
|
242
|
+
(vec_tbl rn rm))
|
243
|
+
|
244
|
+
;;;; Rules for `isplit` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
245
|
+
|
246
|
+
(rule (lower (isplit x @ (value_type $I128)))
|
247
|
+
(let
|
248
|
+
((x_regs ValueRegs x)
|
249
|
+
(x_lo ValueRegs (value_regs_get x_regs 0))
|
250
|
+
(x_hi ValueRegs (value_regs_get x_regs 1)))
|
251
|
+
(output_pair x_lo x_hi)))
|
252
|
+
|
253
|
+
;;;; Rules for `iconcat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
254
|
+
|
255
|
+
(rule (lower (has_type $I128 (iconcat lo hi)))
|
256
|
+
(output (value_regs lo hi)))
|
257
|
+
|
258
|
+
;;;; Rules for `scalar_to_vector` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
259
|
+
|
260
|
+
(rule (lower (has_type $F32X4 (scalar_to_vector x)))
|
261
|
+
(fpu_extend x (ScalarSize.Size32)))
|
262
|
+
|
263
|
+
(rule (lower (has_type $F64X2 (scalar_to_vector x)))
|
264
|
+
(fpu_extend x (ScalarSize.Size64)))
|
265
|
+
|
266
|
+
(rule -1 (lower (scalar_to_vector x @ (value_type $I64)))
|
267
|
+
(mov_to_fpu x (ScalarSize.Size64)))
|
268
|
+
|
269
|
+
(rule -2 (lower (scalar_to_vector x @ (value_type (int_fits_in_32 _))))
|
270
|
+
(mov_to_fpu (put_in_reg_zext32 x) (ScalarSize.Size32)))
|
271
|
+
|
272
|
+
;;;; Rules for `vall_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
273
|
+
|
274
|
+
;; cmeq vtmp.2d, vm.2d, #0
|
275
|
+
;; addp dtmp, vtmp.2d
|
276
|
+
;; fcmp dtmp, dtmp
|
277
|
+
;; cset xd, eq
|
278
|
+
;;
|
279
|
+
;; Note that after the ADDP the value of the temporary register will be either
|
280
|
+
;; 0 when all input elements are true, i.e. non-zero, or a NaN otherwise
|
281
|
+
;; (either -1 or -2 when represented as an integer); NaNs are the only
|
282
|
+
;; floating-point numbers that compare unequal to themselves.
|
283
|
+
(rule (lower (vall_true x @ (value_type (multi_lane 64 2))))
|
284
|
+
(let ((x1 Reg (cmeq0 x (VectorSize.Size64x2)))
|
285
|
+
(x2 Reg (addp x1 x1 (VectorSize.Size64x2))))
|
286
|
+
(with_flags (fpu_cmp (ScalarSize.Size64) x2 x2)
|
287
|
+
(materialize_bool_result (Cond.Eq)))))
|
288
|
+
|
289
|
+
(rule (lower (vall_true x @ (value_type (multi_lane 32 2))))
|
290
|
+
(let ((x1 Reg (mov_from_vec x 0 (ScalarSize.Size64))))
|
291
|
+
(with_flags (cmp_rr_shift (OperandSize.Size64) (zero_reg) x1 32)
|
292
|
+
(ccmp_imm
|
293
|
+
(OperandSize.Size32)
|
294
|
+
x1
|
295
|
+
(u8_into_uimm5 0)
|
296
|
+
(nzcv $false $true $false $false)
|
297
|
+
(Cond.Ne)))))
|
298
|
+
|
299
|
+
;; This operation is implemented by using uminv to create a scalar value, which
|
300
|
+
;; is then compared against zero.
|
301
|
+
;;
|
302
|
+
;; uminv bn, vm.16b
|
303
|
+
;; mov xm, vn.d[0]
|
304
|
+
;; cmp xm, #0
|
305
|
+
;; cset xm, ne
|
306
|
+
(rule -1 (lower (vall_true x @ (value_type (lane_fits_in_32 ty))))
|
307
|
+
(if (not_vec32x2 ty))
|
308
|
+
(let ((x1 Reg (vec_lanes (VecLanesOp.Uminv) x (vector_size ty)))
|
309
|
+
(x2 Reg (mov_from_vec x1 0 (ScalarSize.Size64))))
|
310
|
+
(with_flags (cmp_imm (OperandSize.Size64) x2 (u8_into_imm12 0))
|
311
|
+
(materialize_bool_result (Cond.Ne)))))
|
312
|
+
|
313
|
+
;;;; Rules for `vany_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
314
|
+
|
315
|
+
(rule (lower (vany_true x @ (value_type in_ty)))
|
316
|
+
(with_flags (vanytrue x in_ty)
|
317
|
+
(materialize_bool_result (Cond.Ne))))
|
318
|
+
|
319
|
+
;;;; Rules for `iadd_pairwise` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
320
|
+
|
321
|
+
;; special case for the `i16x8.extadd_pairwise_i8x16_s` wasm instruction
|
322
|
+
(rule (lower (has_type $I16X8 (iadd_pairwise (swiden_low x) (swiden_high x))))
|
323
|
+
(saddlp8 x))
|
324
|
+
|
325
|
+
;; special case for the `i32x4.extadd_pairwise_i16x8_s` wasm instruction
|
326
|
+
(rule (lower (has_type $I32X4 (iadd_pairwise (swiden_low x) (swiden_high x))))
|
327
|
+
(saddlp16 x))
|
328
|
+
|
329
|
+
;; special case for the `i16x8.extadd_pairwise_i8x16_u` wasm instruction
|
330
|
+
(rule (lower (has_type $I16X8 (iadd_pairwise (uwiden_low x) (uwiden_high x))))
|
331
|
+
(uaddlp8 x))
|
332
|
+
|
333
|
+
;; special case for the `i32x4.extadd_pairwise_i16x8_u` wasm instruction
|
334
|
+
(rule (lower (has_type $I32X4 (iadd_pairwise (uwiden_low x) (uwiden_high x))))
|
335
|
+
(uaddlp16 x))
|
336
|
+
|
337
|
+
(rule -1 (lower (has_type ty (iadd_pairwise x y)))
|
338
|
+
(addp x y (vector_size ty)))
|
339
|
+
|
340
|
+
;;;; Rules for `iabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
341
|
+
|
342
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (iabs x)))
|
343
|
+
(vec_abs x (vector_size ty)))
|
344
|
+
|
345
|
+
(rule 2 (lower (has_type $I64 (iabs x)))
|
346
|
+
(abs (OperandSize.Size64) x))
|
347
|
+
|
348
|
+
(rule 1 (lower (has_type (fits_in_32 ty) (iabs x)))
|
349
|
+
(abs (OperandSize.Size32) (put_in_reg_sext32 x)))
|
350
|
+
|
351
|
+
; `rustc` implementation.
|
352
|
+
; - create a bitmask of all 1s if negative, or 0s if positive.
|
353
|
+
; - xor all bits by bitmask. then subtract bitmask from xor'd values.
|
354
|
+
; - if `x` is positive, the xor'd bits = x and the mask = 0, so we end up with
|
355
|
+
; `x - 0`.
|
356
|
+
; - if `x` is negative, the xor'd bits = ~x and the mask = -1, so we end up with
|
357
|
+
; `~x - (-1) = ~x + 1`, which is exactly `abs(x)`.
|
358
|
+
(rule (lower (has_type $I128 (iabs x)))
|
359
|
+
(let ((x_regs ValueRegs x)
|
360
|
+
(x_lo Reg (value_regs_get x_regs 0))
|
361
|
+
(x_hi Reg (value_regs_get x_regs 1))
|
362
|
+
(asr_reg Reg (asr_imm $I64 x_hi (imm_shift_from_u8 63)))
|
363
|
+
(eor_hi Reg (eor $I64 x_hi asr_reg))
|
364
|
+
(eor_lo Reg (eor $I64 x_lo asr_reg))
|
365
|
+
(subs_lo ProducesFlags (sub_with_flags_paired $I64 eor_lo asr_reg))
|
366
|
+
(sbc_hi ConsumesFlags (sbc_paired $I64 eor_hi asr_reg)))
|
367
|
+
(with_flags subs_lo sbc_hi)))
|
368
|
+
|
369
|
+
;;;; Rules for `avg_round` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
370
|
+
|
371
|
+
(rule (lower (has_type $I64X2 (avg_round x y)))
|
372
|
+
(let ((one Reg (splat_const 1 (VectorSize.Size64x2)))
|
373
|
+
(c Reg (orr_vec x y (VectorSize.Size64x2)))
|
374
|
+
(c Reg (and_vec c one (VectorSize.Size64x2)))
|
375
|
+
(x Reg (ushr_vec_imm x 1 (VectorSize.Size64x2)))
|
376
|
+
(y Reg (ushr_vec_imm y 1 (VectorSize.Size64x2)))
|
377
|
+
(sum Reg (add_vec x y (VectorSize.Size64x2))))
|
378
|
+
(add_vec c sum (VectorSize.Size64x2))))
|
379
|
+
|
380
|
+
(rule -1 (lower (has_type (lane_fits_in_32 ty) (avg_round x y)))
|
381
|
+
(vec_rrr (VecALUOp.Urhadd) x y (vector_size ty)))
|
382
|
+
|
383
|
+
;;;; Rules for `sqmul_round_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
384
|
+
|
385
|
+
(rule (lower (has_type ty @ (multi_lane _ _) (sqmul_round_sat x y)))
|
386
|
+
(vec_rrr (VecALUOp.Sqrdmulh) x y (vector_size ty)))
|
387
|
+
|
388
|
+
;;;; Rules for `fadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
389
|
+
|
390
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fadd rn rm)))
|
391
|
+
(vec_rrr (VecALUOp.Fadd) rn rm (vector_size ty)))
|
392
|
+
|
393
|
+
(rule (lower (has_type (ty_scalar_float ty) (fadd rn rm)))
|
394
|
+
(fpu_rrr (FPUOp2.Add) rn rm (scalar_size ty)))
|
395
|
+
|
396
|
+
;;;; Rules for `fsub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
397
|
+
|
398
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fsub rn rm)))
|
399
|
+
(vec_rrr (VecALUOp.Fsub) rn rm (vector_size ty)))
|
400
|
+
|
401
|
+
(rule (lower (has_type (ty_scalar_float ty) (fsub rn rm)))
|
402
|
+
(fpu_rrr (FPUOp2.Sub) rn rm (scalar_size ty)))
|
403
|
+
|
404
|
+
;;;; Rules for `fmul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
405
|
+
|
406
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fmul rn rm)))
|
407
|
+
(vec_rrr (VecALUOp.Fmul) rn rm (vector_size ty)))
|
408
|
+
|
409
|
+
(rule (lower (has_type (ty_scalar_float ty) (fmul rn rm)))
|
410
|
+
(fpu_rrr (FPUOp2.Mul) rn rm (scalar_size ty)))
|
411
|
+
|
412
|
+
;;;; Rules for `fdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
413
|
+
|
414
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fdiv rn rm)))
|
415
|
+
(vec_rrr (VecALUOp.Fdiv) rn rm (vector_size ty)))
|
416
|
+
|
417
|
+
(rule (lower (has_type (ty_scalar_float ty) (fdiv rn rm)))
|
418
|
+
(fpu_rrr (FPUOp2.Div) rn rm (scalar_size ty)))
|
419
|
+
|
420
|
+
;;;; Rules for `fmin` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
421
|
+
|
422
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fmin rn rm)))
|
423
|
+
(vec_rrr (VecALUOp.Fmin) rn rm (vector_size ty)))
|
424
|
+
|
425
|
+
(rule (lower (has_type (ty_scalar_float ty) (fmin rn rm)))
|
426
|
+
(fpu_rrr (FPUOp2.Min) rn rm (scalar_size ty)))
|
427
|
+
|
428
|
+
;;;; Rules for `fmax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
429
|
+
|
430
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fmax rn rm)))
|
431
|
+
(vec_rrr (VecALUOp.Fmax) rn rm (vector_size ty)))
|
432
|
+
|
433
|
+
(rule (lower (has_type (ty_scalar_float ty) (fmax rn rm)))
|
434
|
+
(fpu_rrr (FPUOp2.Max) rn rm (scalar_size ty)))
|
435
|
+
|
436
|
+
;;;; Rules for `sqrt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
437
|
+
|
438
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (sqrt x)))
|
439
|
+
(vec_misc (VecMisc2.Fsqrt) x (vector_size ty)))
|
440
|
+
|
441
|
+
(rule (lower (has_type (ty_scalar_float ty) (sqrt x)))
|
442
|
+
(fpu_rr (FPUOp1.Sqrt) x (scalar_size ty)))
|
443
|
+
|
444
|
+
;;;; Rules for `fneg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
445
|
+
|
446
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fneg x)))
|
447
|
+
(vec_misc (VecMisc2.Fneg) x (vector_size ty)))
|
448
|
+
|
449
|
+
(rule (lower (has_type (ty_scalar_float ty) (fneg x)))
|
450
|
+
(fpu_rr (FPUOp1.Neg) x (scalar_size ty)))
|
451
|
+
|
452
|
+
;;;; Rules for `fabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
453
|
+
|
454
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fabs x)))
|
455
|
+
(vec_misc (VecMisc2.Fabs) x (vector_size ty)))
|
456
|
+
|
457
|
+
(rule (lower (has_type (ty_scalar_float ty) (fabs x)))
|
458
|
+
(fpu_rr (FPUOp1.Abs) x (scalar_size ty)))
|
459
|
+
|
460
|
+
;;;; Rules for `fpromote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
461
|
+
|
462
|
+
(rule (lower (has_type $F64 (fpromote x)))
|
463
|
+
(fpu_rr (FPUOp1.Cvt32To64) x (ScalarSize.Size32)))
|
464
|
+
|
465
|
+
;;;; Rules for `fdemote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
466
|
+
|
467
|
+
(rule (lower (has_type $F32 (fdemote x)))
|
468
|
+
(fpu_rr (FPUOp1.Cvt64To32) x (ScalarSize.Size64)))
|
469
|
+
|
470
|
+
;;;; Rules for `ceil` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
471
|
+
|
472
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (ceil x)))
|
473
|
+
(vec_misc (VecMisc2.Frintp) x (vector_size ty)))
|
474
|
+
|
475
|
+
(rule (lower (has_type $F32 (ceil x)))
|
476
|
+
(fpu_round (FpuRoundMode.Plus32) x))
|
477
|
+
|
478
|
+
(rule (lower (has_type $F64 (ceil x)))
|
479
|
+
(fpu_round (FpuRoundMode.Plus64) x))
|
480
|
+
|
481
|
+
;;;; Rules for `floor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
482
|
+
|
483
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (floor x)))
|
484
|
+
(vec_misc (VecMisc2.Frintm) x (vector_size ty)))
|
485
|
+
|
486
|
+
(rule (lower (has_type $F32 (floor x)))
|
487
|
+
(fpu_round (FpuRoundMode.Minus32) x))
|
488
|
+
|
489
|
+
(rule (lower (has_type $F64 (floor x)))
|
490
|
+
(fpu_round (FpuRoundMode.Minus64) x))
|
491
|
+
|
492
|
+
;;;; Rules for `trunc` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
493
|
+
|
494
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (trunc x)))
|
495
|
+
(vec_misc (VecMisc2.Frintz) x (vector_size ty)))
|
496
|
+
|
497
|
+
(rule (lower (has_type $F32 (trunc x)))
|
498
|
+
(fpu_round (FpuRoundMode.Zero32) x))
|
499
|
+
|
500
|
+
(rule (lower (has_type $F64 (trunc x)))
|
501
|
+
(fpu_round (FpuRoundMode.Zero64) x))
|
502
|
+
|
503
|
+
;;;; Rules for `nearest` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
504
|
+
|
505
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (nearest x)))
|
506
|
+
(vec_misc (VecMisc2.Frintn) x (vector_size ty)))
|
507
|
+
|
508
|
+
(rule (lower (has_type $F32 (nearest x)))
|
509
|
+
(fpu_round (FpuRoundMode.Nearest32) x))
|
510
|
+
|
511
|
+
(rule (lower (has_type $F64 (nearest x)))
|
512
|
+
(fpu_round (FpuRoundMode.Nearest64) x))
|
513
|
+
|
514
|
+
;;;; Rules for `fma` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
515
|
+
|
516
|
+
(type IsFneg (enum (Result (negate u64) (value Value))))
|
517
|
+
|
518
|
+
(decl pure is_fneg (Value) IsFneg)
|
519
|
+
(rule 1 (is_fneg (fneg n)) (IsFneg.Result 1 n))
|
520
|
+
(rule 0 (is_fneg n) (IsFneg.Result 0 n))
|
521
|
+
|
522
|
+
(decl pure is_fneg_neg (IsFneg) u64)
|
523
|
+
(rule (is_fneg_neg (IsFneg.Result n _)) n)
|
524
|
+
|
525
|
+
(decl pure get_fneg_value (IsFneg) Value)
|
526
|
+
(rule (get_fneg_value (IsFneg.Result _ v)) v)
|
527
|
+
|
528
|
+
(decl fmadd_series (Type u64 Value Value Value) InstOutput)
|
529
|
+
(rule 0 (fmadd_series (ty_scalar_float ty) 0 x y z) (fpu_rrrr (FPUOp3.MAdd) (scalar_size ty) x y z))
|
530
|
+
(rule 0 (fmadd_series (ty_scalar_float ty) 1 x y z) (fpu_rrrr (FPUOp3.MSub) (scalar_size ty) x y z))
|
531
|
+
|
532
|
+
(rule (lower (has_type (ty_scalar_float ty) (fma x_src y_src z)))
|
533
|
+
(let
|
534
|
+
((x_res IsFneg (is_fneg x_src))
|
535
|
+
(y_res IsFneg (is_fneg y_src)))
|
536
|
+
(fmadd_series ty (u64_xor (is_fneg_neg x_res) (is_fneg_neg y_res)) (get_fneg_value x_res) (get_fneg_value y_res) z)))
|
537
|
+
|
538
|
+
;; Delegate vector-based lowerings to helpers below
|
539
|
+
(rule 1 (lower (has_type ty @ (multi_lane _ _) (fma x y z)))
|
540
|
+
(lower_fmla (VecALUModOp.Fmla) x y z (vector_size ty)))
|
541
|
+
|
542
|
+
;; Lowers a fused-multiply-add operation handling various forms of the
|
543
|
+
;; instruction to get maximal coverage of what's available on AArch64.
|
544
|
+
(decl lower_fmla (VecALUModOp Value Value Value VectorSize) Reg)
|
545
|
+
|
546
|
+
;; Base case, emit the op requested.
|
547
|
+
(rule (lower_fmla op x y z size)
|
548
|
+
(vec_rrr_mod op z x y size))
|
549
|
+
|
550
|
+
;; Special case: if one of the multiplicands are a splat then the element-based
|
551
|
+
;; fma can be used instead with 0 as the element index.
|
552
|
+
(rule 1 (lower_fmla op (splat x) y z size)
|
553
|
+
(vec_fmla_elem op z y x size 0))
|
554
|
+
(rule 2 (lower_fmla op x (splat y) z size)
|
555
|
+
(vec_fmla_elem op z x y size 0))
|
556
|
+
|
557
|
+
;; Special case: if one of the multiplicands is a shuffle to broadcast a
|
558
|
+
;; single element of a vector then the element-based fma can be used like splat
|
559
|
+
;; above.
|
560
|
+
;;
|
561
|
+
;; Note that in Cranelift shuffle always has i8x16 inputs and outputs so
|
562
|
+
;; a `bitcast` is matched here explicitly since that's the main way a shuffle
|
563
|
+
;; output will be fed into this instruction.
|
564
|
+
(rule 3 (lower_fmla op (bitcast _ (shuffle x x (shuffle32_from_imm n n n n))) y z size @ (VectorSize.Size32x4))
|
565
|
+
(if-let $true (u64_lt n 4))
|
566
|
+
(vec_fmla_elem op z y x size n))
|
567
|
+
(rule 4 (lower_fmla op x (bitcast _ (shuffle y y (shuffle32_from_imm n n n n))) z size @ (VectorSize.Size32x4))
|
568
|
+
(if-let $true (u64_lt n 4))
|
569
|
+
(vec_fmla_elem op z x y size n))
|
570
|
+
(rule 3 (lower_fmla op (bitcast _ (shuffle x x (shuffle64_from_imm n n))) y z size @ (VectorSize.Size64x2))
|
571
|
+
(if-let $true (u64_lt n 2))
|
572
|
+
(vec_fmla_elem op z y x size n))
|
573
|
+
(rule 4 (lower_fmla op x (bitcast _ (shuffle y y (shuffle64_from_imm n n))) z size @ (VectorSize.Size64x2))
|
574
|
+
(if-let $true (u64_lt n 2))
|
575
|
+
(vec_fmla_elem op z x y size n))
|
576
|
+
|
577
|
+
;; Special case: if one of the multiplicands is `fneg` then peel that away,
|
578
|
+
;; reverse the operation being performed, and then recurse on `lower_fmla`
|
579
|
+
;; again to generate the actual instruction.
|
580
|
+
;;
|
581
|
+
;; Note that these are the highest priority cases for `lower_fmla` to peel
|
582
|
+
;; away as many `fneg` operations as possible.
|
583
|
+
(rule 5 (lower_fmla op (fneg x) y z size)
|
584
|
+
(lower_fmla (neg_fmla op) x y z size))
|
585
|
+
(rule 6 (lower_fmla op x (fneg y) z size)
|
586
|
+
(lower_fmla (neg_fmla op) x y z size))
|
587
|
+
|
588
|
+
(decl neg_fmla (VecALUModOp) VecALUModOp)
|
589
|
+
(rule (neg_fmla (VecALUModOp.Fmla)) (VecALUModOp.Fmls))
|
590
|
+
(rule (neg_fmla (VecALUModOp.Fmls)) (VecALUModOp.Fmla))
|
591
|
+
|
592
|
+
;;;; Rules for `fcopysign` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
593
|
+
|
594
|
+
(rule (lower (has_type ty (fcopysign x y)))
|
595
|
+
(fcopy_sign x y ty))
|
596
|
+
|
597
|
+
;;;; Rules for `fcvt_to_uint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
598
|
+
|
599
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_uint x @ (value_type $F32))))
|
600
|
+
(fpu_to_int_cvt (FpuToIntOp.F32ToU32) x $false $F32 out_ty))
|
601
|
+
|
602
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_uint x @ (value_type $F32))))
|
603
|
+
(fpu_to_int_cvt (FpuToIntOp.F32ToU64) x $false $F32 $I64))
|
604
|
+
|
605
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_uint x @ (value_type $F64))))
|
606
|
+
(fpu_to_int_cvt (FpuToIntOp.F64ToU32) x $false $F64 out_ty))
|
607
|
+
|
608
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_uint x @ (value_type $F64))))
|
609
|
+
(fpu_to_int_cvt (FpuToIntOp.F64ToU64) x $false $F64 $I64))
|
610
|
+
|
611
|
+
;;;; Rules for `fcvt_to_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
612
|
+
|
613
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_sint x @ (value_type $F32))))
|
614
|
+
(fpu_to_int_cvt (FpuToIntOp.F32ToI32) x $true $F32 out_ty))
|
615
|
+
|
616
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_sint x @ (value_type $F32))))
|
617
|
+
(fpu_to_int_cvt (FpuToIntOp.F32ToI64) x $true $F32 $I64))
|
618
|
+
|
619
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_sint x @ (value_type $F64))))
|
620
|
+
(fpu_to_int_cvt (FpuToIntOp.F64ToI32) x $true $F64 out_ty))
|
621
|
+
|
622
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_sint x @ (value_type $F64))))
|
623
|
+
(fpu_to_int_cvt (FpuToIntOp.F64ToI64) x $true $F64 $I64))
|
624
|
+
|
625
|
+
;;;; Rules for `fcvt_from_uint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
626
|
+
|
627
|
+
(rule -1 (lower (has_type ty @ (multi_lane 32 _) (fcvt_from_uint x @ (value_type (multi_lane 32 _)))))
|
628
|
+
(vec_misc (VecMisc2.Ucvtf) x (vector_size ty)))
|
629
|
+
|
630
|
+
(rule -1 (lower (has_type ty @ (multi_lane 64 _) (fcvt_from_uint x @ (value_type (multi_lane 64 _)))))
|
631
|
+
(vec_misc (VecMisc2.Ucvtf) x (vector_size ty)))
|
632
|
+
|
633
|
+
(rule (lower (has_type $F32 (fcvt_from_uint x @ (value_type (fits_in_32 _)))))
|
634
|
+
(int_to_fpu (IntToFpuOp.U32ToF32) (put_in_reg_zext32 x)))
|
635
|
+
|
636
|
+
(rule (lower (has_type $F64 (fcvt_from_uint x @ (value_type (fits_in_32 _)))))
|
637
|
+
(int_to_fpu (IntToFpuOp.U32ToF64) (put_in_reg_zext32 x)))
|
638
|
+
|
639
|
+
(rule 1 (lower (has_type $F32 (fcvt_from_uint x @ (value_type $I64))))
|
640
|
+
(int_to_fpu (IntToFpuOp.U64ToF32) x))
|
641
|
+
|
642
|
+
(rule 1 (lower (has_type $F64 (fcvt_from_uint x @ (value_type $I64))))
|
643
|
+
(int_to_fpu (IntToFpuOp.U64ToF64) x))
|
644
|
+
|
645
|
+
;;;; Rules for `fcvt_from_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
646
|
+
|
647
|
+
(rule -1 (lower (has_type ty @ (multi_lane 32 _) (fcvt_from_sint x @ (value_type (multi_lane 32 _)))))
|
648
|
+
(vec_misc (VecMisc2.Scvtf) x (vector_size ty)))
|
649
|
+
|
650
|
+
(rule -1 (lower (has_type ty @ (multi_lane 64 _) (fcvt_from_sint x @ (value_type (multi_lane 64 _)))))
|
651
|
+
(vec_misc (VecMisc2.Scvtf) x (vector_size ty)))
|
652
|
+
|
653
|
+
(rule (lower (has_type $F32 (fcvt_from_sint x @ (value_type (fits_in_32 _)))))
|
654
|
+
(int_to_fpu (IntToFpuOp.I32ToF32) (put_in_reg_sext32 x)))
|
655
|
+
|
656
|
+
(rule (lower (has_type $F64 (fcvt_from_sint x @ (value_type (fits_in_32 _)))))
|
657
|
+
(int_to_fpu (IntToFpuOp.I32ToF64) (put_in_reg_sext32 x)))
|
658
|
+
|
659
|
+
(rule 1 (lower (has_type $F32 (fcvt_from_sint x @ (value_type $I64))))
|
660
|
+
(int_to_fpu (IntToFpuOp.I64ToF32) x))
|
661
|
+
|
662
|
+
(rule 1 (lower (has_type $F64 (fcvt_from_sint x @ (value_type $I64))))
|
663
|
+
(int_to_fpu (IntToFpuOp.I64ToF64) x))
|
664
|
+
|
665
|
+
;;;; Rules for `fcvt_to_uint_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
666
|
+
|
667
|
+
(rule -1 (lower (has_type ty @ (multi_lane 32 _) (fcvt_to_uint_sat x @ (value_type (multi_lane 32 _)))))
|
668
|
+
(vec_misc (VecMisc2.Fcvtzu) x (vector_size ty)))
|
669
|
+
|
670
|
+
(rule -1 (lower (has_type ty @ (multi_lane 64 _) (fcvt_to_uint_sat x @ (value_type (multi_lane 64 _)))))
|
671
|
+
(vec_misc (VecMisc2.Fcvtzu) x (vector_size ty)))
|
672
|
+
|
673
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_uint_sat x @ (value_type $F32))))
|
674
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F32ToU32) x $false out_ty))
|
675
|
+
|
676
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_uint_sat x @ (value_type $F32))))
|
677
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F32ToU64) x $false $I64))
|
678
|
+
|
679
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_uint_sat x @ (value_type $F64))))
|
680
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F64ToU32) x $false out_ty))
|
681
|
+
|
682
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_uint_sat x @ (value_type $F64))))
|
683
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F64ToU64) x $false $I64))
|
684
|
+
|
685
|
+
;;;; Rules for `fcvt_to_sint_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
686
|
+
|
687
|
+
(rule -1 (lower (has_type ty @ (multi_lane 32 _) (fcvt_to_sint_sat x @ (value_type (multi_lane 32 _)))))
|
688
|
+
(vec_misc (VecMisc2.Fcvtzs) x (vector_size ty)))
|
689
|
+
|
690
|
+
(rule -1 (lower (has_type ty @ (multi_lane 64 _) (fcvt_to_sint_sat x @ (value_type (multi_lane 64 _)))))
|
691
|
+
(vec_misc (VecMisc2.Fcvtzs) x (vector_size ty)))
|
692
|
+
|
693
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_sint_sat x @ (value_type $F32))))
|
694
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F32ToI32) x $true out_ty))
|
695
|
+
|
696
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_sint_sat x @ (value_type $F32))))
|
697
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F32ToI64) x $true $I64))
|
698
|
+
|
699
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_sint_sat x @ (value_type $F64))))
|
700
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F64ToI32) x $true out_ty))
|
701
|
+
|
702
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_sint_sat x @ (value_type $F64))))
|
703
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F64ToI64) x $true $I64))
|
704
|
+
|
705
|
+
;;;; Rules for `isub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
706
|
+
|
707
|
+
;; `i64` and smaller
|
708
|
+
|
709
|
+
;; Base case, simply subtracting things in registers.
|
710
|
+
(rule -4 (lower (has_type (fits_in_64 ty) (isub x y)))
|
711
|
+
(sub ty x y))
|
712
|
+
|
713
|
+
;; Special case for when one operand is an immediate that fits in 12 bits.
|
714
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (isub x (imm12_from_value y))))
|
715
|
+
(sub_imm ty x y))
|
716
|
+
|
717
|
+
;; Same as the previous special case, except we can switch the subtraction to an
|
718
|
+
;; addition if the negated immediate fits in 12 bits.
|
719
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (isub x y)))
|
720
|
+
(if-let imm12_neg (imm12_from_negated_value y))
|
721
|
+
(add_imm ty x imm12_neg))
|
722
|
+
|
723
|
+
;; Special cases for when we're subtracting an extended register where the
|
724
|
+
;; extending operation can get folded into the sub itself.
|
725
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (isub x (extended_value_from_value y))))
|
726
|
+
(sub_extend ty x y))
|
727
|
+
|
728
|
+
;; Finally a special case for when we're subtracting the shift of a different
|
729
|
+
;; register by a constant amount and the shift can get folded into the sub.
|
730
|
+
(rule -3 (lower (has_type (fits_in_64 ty)
|
731
|
+
(isub x (ishl y (iconst k)))))
|
732
|
+
(if-let amt (lshl_from_imm64 ty k))
|
733
|
+
(sub_shift ty x y amt))
|
734
|
+
|
735
|
+
;; vectors
|
736
|
+
(rule -2 (lower (has_type ty @ (multi_lane _ _) (isub x y)))
|
737
|
+
(sub_vec x y (vector_size ty)))
|
738
|
+
|
739
|
+
;; `i128`
|
740
|
+
(rule -1 (lower (has_type $I128 (isub x y)))
|
741
|
+
(sub_i128 x y))
|
742
|
+
|
743
|
+
;;;; Rules for `uadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
744
|
+
|
745
|
+
(rule (lower (has_type (ty_vec128 ty) (uadd_sat x y)))
|
746
|
+
(uqadd x y (vector_size ty)))
|
747
|
+
|
748
|
+
;;;; Rules for `sadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
749
|
+
|
750
|
+
(rule (lower (has_type (ty_vec128 ty) (sadd_sat x y)))
|
751
|
+
(sqadd x y (vector_size ty)))
|
752
|
+
|
753
|
+
;;;; Rules for `usub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
754
|
+
|
755
|
+
(rule (lower (has_type (ty_vec128 ty) (usub_sat x y)))
|
756
|
+
(uqsub x y (vector_size ty)))
|
757
|
+
|
758
|
+
;;;; Rules for `ssub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
759
|
+
|
760
|
+
(rule (lower (has_type (ty_vec128 ty) (ssub_sat x y)))
|
761
|
+
(sqsub x y (vector_size ty)))
|
762
|
+
|
763
|
+
;;;; Rules for `ineg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
764
|
+
|
765
|
+
;; `i64` and smaller.
|
766
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (ineg x)))
|
767
|
+
(sub ty (zero_reg) x))
|
768
|
+
|
769
|
+
;; `i128`
|
770
|
+
(rule 2 (lower (has_type $I128 (ineg x)))
|
771
|
+
(sub_i128 (value_regs_zero) x))
|
772
|
+
|
773
|
+
;; vectors.
|
774
|
+
(rule (lower (has_type (ty_vec128 ty) (ineg x)))
|
775
|
+
(neg x (vector_size ty)))
|
776
|
+
|
777
|
+
;;;; Rules for `imul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
778
|
+
|
779
|
+
;; `i64` and smaller.
|
780
|
+
(rule -3 (lower (has_type (fits_in_64 ty) (imul x y)))
|
781
|
+
(madd ty x y (zero_reg)))
|
782
|
+
|
783
|
+
;; `i128`.
|
784
|
+
(rule -1 (lower (has_type $I128 (imul x y)))
|
785
|
+
(let
|
786
|
+
;; Get the high/low registers for `x`.
|
787
|
+
((x_regs ValueRegs x)
|
788
|
+
(x_lo Reg (value_regs_get x_regs 0))
|
789
|
+
(x_hi Reg (value_regs_get x_regs 1))
|
790
|
+
|
791
|
+
;; Get the high/low registers for `y`.
|
792
|
+
(y_regs ValueRegs y)
|
793
|
+
(y_lo Reg (value_regs_get y_regs 0))
|
794
|
+
(y_hi Reg (value_regs_get y_regs 1))
|
795
|
+
|
796
|
+
;; 128bit mul formula:
|
797
|
+
;; dst_lo = x_lo * y_lo
|
798
|
+
;; dst_hi = umulhi(x_lo, y_lo) + (x_lo * y_hi) + (x_hi * y_lo)
|
799
|
+
;;
|
800
|
+
;; We can convert the above formula into the following
|
801
|
+
;; umulh dst_hi, x_lo, y_lo
|
802
|
+
;; madd dst_hi, x_lo, y_hi, dst_hi
|
803
|
+
;; madd dst_hi, x_hi, y_lo, dst_hi
|
804
|
+
;; madd dst_lo, x_lo, y_lo, zero
|
805
|
+
(dst_hi1 Reg (umulh $I64 x_lo y_lo))
|
806
|
+
(dst_hi2 Reg (madd $I64 x_lo y_hi dst_hi1))
|
807
|
+
(dst_hi Reg (madd $I64 x_hi y_lo dst_hi2))
|
808
|
+
(dst_lo Reg (madd $I64 x_lo y_lo (zero_reg))))
|
809
|
+
(value_regs dst_lo dst_hi)))
|
810
|
+
|
811
|
+
;; Case for i8x16, i16x8, and i32x4.
|
812
|
+
(rule -2 (lower (has_type (ty_vec128 ty @ (not_i64x2)) (imul x y)))
|
813
|
+
(mul x y (vector_size ty)))
|
814
|
+
|
815
|
+
;; Special lowering for i64x2.
|
816
|
+
;;
|
817
|
+
;; This I64X2 multiplication is performed with several 32-bit
|
818
|
+
;; operations.
|
819
|
+
;;
|
820
|
+
;; 64-bit numbers x and y, can be represented as:
|
821
|
+
;; x = a + 2^32(b)
|
822
|
+
;; y = c + 2^32(d)
|
823
|
+
;;
|
824
|
+
;; A 64-bit multiplication is:
|
825
|
+
;; x * y = ac + 2^32(ad + bc) + 2^64(bd)
|
826
|
+
;; note: `2^64(bd)` can be ignored, the value is too large to fit in
|
827
|
+
;; 64 bits.
|
828
|
+
;;
|
829
|
+
;; This sequence implements a I64X2 multiply, where the registers
|
830
|
+
;; `rn` and `rm` are split up into 32-bit components:
|
831
|
+
;; rn = |d|c|b|a|
|
832
|
+
;; rm = |h|g|f|e|
|
833
|
+
;;
|
834
|
+
;; rn * rm = |cg + 2^32(ch + dg)|ae + 2^32(af + be)|
|
835
|
+
;;
|
836
|
+
;; The sequence is:
|
837
|
+
;; rev64 rd.4s, rm.4s
|
838
|
+
;; mul rd.4s, rd.4s, rn.4s
|
839
|
+
;; xtn tmp1.2s, rn.2d
|
840
|
+
;; addp rd.4s, rd.4s, rd.4s
|
841
|
+
;; xtn tmp2.2s, rm.2d
|
842
|
+
;; shll rd.2d, rd.2s, #32
|
843
|
+
;; umlal rd.2d, tmp2.2s, tmp1.2s
|
844
|
+
(rule -1 (lower (has_type $I64X2 (imul x y)))
|
845
|
+
(let ((rn Reg x)
|
846
|
+
(rm Reg y)
|
847
|
+
;; Reverse the 32-bit elements in the 64-bit words.
|
848
|
+
;; rd = |g|h|e|f|
|
849
|
+
(rev Reg (rev64 rm (VectorSize.Size32x4)))
|
850
|
+
|
851
|
+
;; Calculate the high half components.
|
852
|
+
;; rd = |dg|ch|be|af|
|
853
|
+
;;
|
854
|
+
;; Note that this 32-bit multiply of the high half
|
855
|
+
;; discards the bits that would overflow, same as
|
856
|
+
;; if 64-bit operations were used. Also the Shll
|
857
|
+
;; below would shift out the overflow bits anyway.
|
858
|
+
(mul Reg (mul rev rn (VectorSize.Size32x4)))
|
859
|
+
|
860
|
+
;; Extract the low half components of rn.
|
861
|
+
;; tmp1 = |c|a|
|
862
|
+
(tmp1 Reg (xtn rn (ScalarSize.Size32)))
|
863
|
+
|
864
|
+
;; Sum the respective high half components.
|
865
|
+
;; rd = |dg+ch|be+af||dg+ch|be+af|
|
866
|
+
(sum Reg (addp mul mul (VectorSize.Size32x4)))
|
867
|
+
|
868
|
+
;; Extract the low half components of rm.
|
869
|
+
;; tmp2 = |g|e|
|
870
|
+
(tmp2 Reg (xtn rm (ScalarSize.Size32)))
|
871
|
+
|
872
|
+
;; Shift the high half components, into the high half.
|
873
|
+
;; rd = |dg+ch << 32|be+af << 32|
|
874
|
+
(shift Reg (shll32 sum $false))
|
875
|
+
|
876
|
+
;; Multiply the low components together, and accumulate with the high
|
877
|
+
;; half.
|
878
|
+
;; rd = |rd[1] + cg|rd[0] + ae|
|
879
|
+
(result Reg (umlal32 shift tmp2 tmp1 $false)))
|
880
|
+
result))
|
881
|
+
|
882
|
+
;; Special case for `i16x8.extmul_low_i8x16_s`.
|
883
|
+
(rule (lower (has_type $I16X8
|
884
|
+
(imul (swiden_low x @ (value_type $I8X16))
|
885
|
+
(swiden_low y @ (value_type $I8X16)))))
|
886
|
+
(smull8 x y $false))
|
887
|
+
|
888
|
+
;; Special case for `i16x8.extmul_high_i8x16_s`.
|
889
|
+
(rule (lower (has_type $I16X8
|
890
|
+
(imul (swiden_high x @ (value_type $I8X16))
|
891
|
+
(swiden_high y @ (value_type $I8X16)))))
|
892
|
+
(smull8 x y $true))
|
893
|
+
|
894
|
+
;; Special case for `i16x8.extmul_low_i8x16_u`.
|
895
|
+
(rule (lower (has_type $I16X8
|
896
|
+
(imul (uwiden_low x @ (value_type $I8X16))
|
897
|
+
(uwiden_low y @ (value_type $I8X16)))))
|
898
|
+
(umull8 x y $false))
|
899
|
+
|
900
|
+
;; Special case for `i16x8.extmul_high_i8x16_u`.
|
901
|
+
(rule (lower (has_type $I16X8
|
902
|
+
(imul (uwiden_high x @ (value_type $I8X16))
|
903
|
+
(uwiden_high y @ (value_type $I8X16)))))
|
904
|
+
(umull8 x y $true))
|
905
|
+
|
906
|
+
;; Special case for `i32x4.extmul_low_i16x8_s`.
|
907
|
+
(rule (lower (has_type $I32X4
|
908
|
+
(imul (swiden_low x @ (value_type $I16X8))
|
909
|
+
(swiden_low y @ (value_type $I16X8)))))
|
910
|
+
(smull16 x y $false))
|
911
|
+
|
912
|
+
;; Special case for `i32x4.extmul_high_i16x8_s`.
|
913
|
+
(rule (lower (has_type $I32X4
|
914
|
+
(imul (swiden_high x @ (value_type $I16X8))
|
915
|
+
(swiden_high y @ (value_type $I16X8)))))
|
916
|
+
(smull16 x y $true))
|
917
|
+
|
918
|
+
;; Special case for `i32x4.extmul_low_i16x8_u`.
|
919
|
+
(rule (lower (has_type $I32X4
|
920
|
+
(imul (uwiden_low x @ (value_type $I16X8))
|
921
|
+
(uwiden_low y @ (value_type $I16X8)))))
|
922
|
+
(umull16 x y $false))
|
923
|
+
|
924
|
+
;; Special case for `i32x4.extmul_high_i16x8_u`.
|
925
|
+
(rule (lower (has_type $I32X4
|
926
|
+
(imul (uwiden_high x @ (value_type $I16X8))
|
927
|
+
(uwiden_high y @ (value_type $I16X8)))))
|
928
|
+
(umull16 x y $true))
|
929
|
+
|
930
|
+
;; Special case for `i64x2.extmul_low_i32x4_s`.
|
931
|
+
(rule (lower (has_type $I64X2
|
932
|
+
(imul (swiden_low x @ (value_type $I32X4))
|
933
|
+
(swiden_low y @ (value_type $I32X4)))))
|
934
|
+
(smull32 x y $false))
|
935
|
+
|
936
|
+
;; Special case for `i64x2.extmul_high_i32x4_s`.
|
937
|
+
(rule (lower (has_type $I64X2
|
938
|
+
(imul (swiden_high x @ (value_type $I32X4))
|
939
|
+
(swiden_high y @ (value_type $I32X4)))))
|
940
|
+
(smull32 x y $true))
|
941
|
+
|
942
|
+
;; Special case for `i64x2.extmul_low_i32x4_u`.
|
943
|
+
(rule (lower (has_type $I64X2
|
944
|
+
(imul (uwiden_low x @ (value_type $I32X4))
|
945
|
+
(uwiden_low y @ (value_type $I32X4)))))
|
946
|
+
(umull32 x y $false))
|
947
|
+
|
948
|
+
;; Special case for `i64x2.extmul_high_i32x4_u`.
|
949
|
+
(rule (lower (has_type $I64X2
|
950
|
+
(imul (uwiden_high x @ (value_type $I32X4))
|
951
|
+
(uwiden_high y @ (value_type $I32X4)))))
|
952
|
+
(umull32 x y $true))
|
953
|
+
|
954
|
+
;;;; Rules for `smulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
955
|
+
|
956
|
+
(rule 1 (lower (has_type $I64 (smulhi x y)))
|
957
|
+
(smulh $I64 x y))
|
958
|
+
|
959
|
+
(rule (lower (has_type (fits_in_32 ty) (smulhi x y)))
|
960
|
+
(let ((x64 Reg (put_in_reg_sext64 x))
|
961
|
+
(y64 Reg (put_in_reg_sext64 y))
|
962
|
+
(mul Reg (madd $I64 x64 y64 (zero_reg)))
|
963
|
+
(result Reg (asr_imm $I64 mul (imm_shift_from_u8 (ty_bits ty)))))
|
964
|
+
result))
|
965
|
+
|
966
|
+
;;;; Rules for `umulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
967
|
+
|
968
|
+
(rule 1 (lower (has_type $I64 (umulhi x y)))
|
969
|
+
(umulh $I64 x y))
|
970
|
+
|
971
|
+
(rule (lower (has_type (fits_in_32 ty) (umulhi x y)))
|
972
|
+
(let (
|
973
|
+
(x64 Reg (put_in_reg_zext64 x))
|
974
|
+
(y64 Reg (put_in_reg_zext64 y))
|
975
|
+
(mul Reg (madd $I64 x64 y64 (zero_reg)))
|
976
|
+
(result Reg (lsr_imm $I64 mul (imm_shift_from_u8 (ty_bits ty))))
|
977
|
+
)
|
978
|
+
(value_reg result)))
|
979
|
+
|
980
|
+
;;;; Rules for `udiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
981
|
+
|
982
|
+
;; TODO: Add UDiv32 to implement 32-bit directly, rather
|
983
|
+
;; than extending the input.
|
984
|
+
;;
|
985
|
+
;; Note that aarch64's `udiv` doesn't trap so to respect the semantics of
|
986
|
+
;; CLIF's `udiv` the check for zero needs to be manually performed.
|
987
|
+
(rule (lower (has_type (fits_in_64 ty) (udiv x y)))
|
988
|
+
(a64_udiv $I64 (put_in_reg_zext64 x) (put_nonzero_in_reg_zext64 y)))
|
989
|
+
|
990
|
+
;; Helper for placing a `Value` into a `Reg` and validating that it's nonzero.
|
991
|
+
(decl put_nonzero_in_reg_zext64 (Value) Reg)
|
992
|
+
(rule -1 (put_nonzero_in_reg_zext64 val)
|
993
|
+
(trap_if_zero_divisor (put_in_reg_zext64 val)))
|
994
|
+
|
995
|
+
;; Special case where if a `Value` is known to be nonzero we can trivially
|
996
|
+
;; move it into a register.
|
997
|
+
(rule (put_nonzero_in_reg_zext64 (and (value_type ty)
|
998
|
+
(iconst (nonzero_u64_from_imm64 n))))
|
999
|
+
(imm ty (ImmExtend.Zero) n))
|
1000
|
+
|
1001
|
+
;;;; Rules for `sdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1002
|
+
|
1003
|
+
;; TODO: Add SDiv32 to implement 32-bit directly, rather
|
1004
|
+
;; than extending the input.
|
1005
|
+
;;
|
1006
|
+
;; The sequence of checks here should look like:
|
1007
|
+
;;
|
1008
|
+
;; cbnz rm, #8
|
1009
|
+
;; udf ; divide by zero
|
1010
|
+
;; cmn rm, 1
|
1011
|
+
;; ccmp rn, 1, #nzcv, eq
|
1012
|
+
;; b.vc #8
|
1013
|
+
;; udf ; signed overflow
|
1014
|
+
;;
|
1015
|
+
;; Note The div instruction does not trap on divide by zero or overflow, so
|
1016
|
+
;; checks need to be manually inserted.
|
1017
|
+
;;
|
1018
|
+
;; TODO: if `y` is -1 then a check that `x` is not INT_MIN is all that's
|
1019
|
+
;; necessary, but right now `y` is checked to not be -1 as well.
|
1020
|
+
(rule (lower (has_type (fits_in_64 ty) (sdiv x y)))
|
1021
|
+
(let ((x64 Reg (put_in_reg_sext64 x))
|
1022
|
+
(y64 Reg (put_nonzero_in_reg_sext64 y))
|
1023
|
+
(valid_x64 Reg (trap_if_div_overflow ty x64 y64))
|
1024
|
+
(result Reg (a64_sdiv $I64 valid_x64 y64)))
|
1025
|
+
result))
|
1026
|
+
|
1027
|
+
;; Special case for `sdiv` where no checks are needed due to division by a
|
1028
|
+
;; constant meaning the checks are always passed.
|
1029
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (sdiv x (iconst imm))))
|
1030
|
+
(if-let y (safe_divisor_from_imm64 ty imm))
|
1031
|
+
(a64_sdiv $I64 (put_in_reg_sext64 x) (imm ty (ImmExtend.Sign) y)))
|
1032
|
+
|
1033
|
+
;; Helper for placing a `Value` into a `Reg` and validating that it's nonzero.
|
1034
|
+
(decl put_nonzero_in_reg_sext64 (Value) Reg)
|
1035
|
+
(rule -1 (put_nonzero_in_reg_sext64 val)
|
1036
|
+
(trap_if_zero_divisor (put_in_reg_sext64 val)))
|
1037
|
+
|
1038
|
+
;; Note that this has a special case where if the `Value` is a constant that's
|
1039
|
+
;; not zero we can skip the zero check.
|
1040
|
+
(rule (put_nonzero_in_reg_sext64 (and (value_type ty)
|
1041
|
+
(iconst (nonzero_u64_from_imm64 n))))
|
1042
|
+
(imm ty (ImmExtend.Sign) n))
|
1043
|
+
|
1044
|
+
;;;; Rules for `urem` and `srem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1045
|
+
|
1046
|
+
;; Remainder (x % y) is implemented as:
|
1047
|
+
;;
|
1048
|
+
;; tmp = x / y
|
1049
|
+
;; result = x - (tmp*y)
|
1050
|
+
;;
|
1051
|
+
;; use 'result' for tmp and you have:
|
1052
|
+
;;
|
1053
|
+
;; cbnz y, #8 ; branch over trap
|
1054
|
+
;; udf ; divide by zero
|
1055
|
+
;; div rd, x, y ; rd = x / y
|
1056
|
+
;; msub rd, rd, y, x ; rd = x - rd * y
|
1057
|
+
|
1058
|
+
(rule (lower (has_type (fits_in_64 ty) (urem x y)))
|
1059
|
+
(let ((x64 Reg (put_in_reg_zext64 x))
|
1060
|
+
(y64 Reg (put_nonzero_in_reg_zext64 y))
|
1061
|
+
(div Reg (a64_udiv $I64 x64 y64))
|
1062
|
+
(result Reg (msub $I64 div y64 x64)))
|
1063
|
+
result))
|
1064
|
+
|
1065
|
+
(rule (lower (has_type (fits_in_64 ty) (srem x y)))
|
1066
|
+
(let ((x64 Reg (put_in_reg_sext64 x))
|
1067
|
+
(y64 Reg (put_nonzero_in_reg_sext64 y))
|
1068
|
+
(div Reg (a64_sdiv $I64 x64 y64))
|
1069
|
+
(result Reg (msub $I64 div y64 x64)))
|
1070
|
+
result))
|
1071
|
+
|
1072
|
+
;;; Rules for integer min/max: umin, smin, umax, smax ;;;;;;;;;;;;;;;;;;;;;;;;;
|
1073
|
+
|
1074
|
+
;; `i64` and smaller.
|
1075
|
+
|
1076
|
+
;; cmp $x, $y
|
1077
|
+
;; csel .., $x, $y, $cc
|
1078
|
+
(decl cmp_and_choose (Type Cond bool Value Value) ValueRegs)
|
1079
|
+
(rule (cmp_and_choose (fits_in_64 ty) cc _ x y)
|
1080
|
+
(let ((x Reg (put_in_reg x))
|
1081
|
+
(y Reg (put_in_reg y)))
|
1082
|
+
(with_flags_reg (cmp (operand_size ty) x y)
|
1083
|
+
(csel cc x y))))
|
1084
|
+
|
1085
|
+
;; `i16` and `i8` min/max require sign extension as
|
1086
|
+
;; the comparison operates on (at least) 32 bits.
|
1087
|
+
(rule 1 (cmp_and_choose (fits_in_16 ty) cc signed x y)
|
1088
|
+
(let ((x Reg (extend (put_in_reg x) signed (ty_bits ty) 32))
|
1089
|
+
(y Reg (extend (put_in_reg y) signed (ty_bits ty) 32)))
|
1090
|
+
(with_flags_reg (cmp (operand_size ty) x y)
|
1091
|
+
(csel cc x y))))
|
1092
|
+
|
1093
|
+
(rule 2 (lower (has_type (and (fits_in_64 ty) (ty_int _)) (umin x y)))
|
1094
|
+
(cmp_and_choose ty (Cond.Lo) $false x y))
|
1095
|
+
(rule 2 (lower (has_type (and (fits_in_64 ty) (ty_int _)) (smin x y)))
|
1096
|
+
(cmp_and_choose ty (Cond.Lt) $true x y))
|
1097
|
+
(rule 2 (lower (has_type (and (fits_in_64 ty) (ty_int _)) (umax x y)))
|
1098
|
+
(cmp_and_choose ty (Cond.Hi) $false x y))
|
1099
|
+
(rule 2 (lower (has_type (and (fits_in_64 ty) (ty_int _)) (smax x y)))
|
1100
|
+
(cmp_and_choose ty (Cond.Gt) $true x y))
|
1101
|
+
|
1102
|
+
;; Vector types.
|
1103
|
+
|
1104
|
+
(rule (lower (has_type ty @ (not_i64x2) (smin x y)))
|
1105
|
+
(vec_rrr (VecALUOp.Smin) x y (vector_size ty)))
|
1106
|
+
|
1107
|
+
(rule 1 (lower (has_type $I64X2 (smin x y)))
|
1108
|
+
(bsl $I64X2 (vec_rrr (VecALUOp.Cmgt) y x (VectorSize.Size64x2)) x y))
|
1109
|
+
|
1110
|
+
(rule (lower (has_type ty @ (not_i64x2) (umin x y)))
|
1111
|
+
(vec_rrr (VecALUOp.Umin) x y (vector_size ty)))
|
1112
|
+
|
1113
|
+
(rule 1 (lower (has_type $I64X2 (umin x y)))
|
1114
|
+
(bsl $I64X2 (vec_rrr (VecALUOp.Cmhi) y x (VectorSize.Size64x2)) x y))
|
1115
|
+
|
1116
|
+
(rule (lower (has_type ty @ (not_i64x2) (smax x y)))
|
1117
|
+
(vec_rrr (VecALUOp.Smax) x y (vector_size ty)))
|
1118
|
+
|
1119
|
+
(rule 1 (lower (has_type $I64X2 (smax x y)))
|
1120
|
+
(bsl $I64X2 (vec_rrr (VecALUOp.Cmgt) x y (VectorSize.Size64x2)) x y))
|
1121
|
+
|
1122
|
+
(rule (lower (has_type ty @ (not_i64x2) (umax x y)))
|
1123
|
+
(vec_rrr (VecALUOp.Umax) x y (vector_size ty)))
|
1124
|
+
|
1125
|
+
(rule 1 (lower (has_type $I64X2 (umax x y)))
|
1126
|
+
(bsl $I64X2 (vec_rrr (VecALUOp.Cmhi) x y (VectorSize.Size64x2)) x y))
|
1127
|
+
|
1128
|
+
;;;; Rules for `uextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1129
|
+
|
1130
|
+
;; General rule for extending input to an output which fits in a single
|
1131
|
+
;; register.
|
1132
|
+
(rule -2 (lower (has_type (fits_in_64 out) (uextend x @ (value_type in))))
|
1133
|
+
(extend x $false (ty_bits in) (ty_bits out)))
|
1134
|
+
|
1135
|
+
;; Extraction of a vector lane automatically extends as necessary, so we can
|
1136
|
+
;; skip an explicit extending instruction.
|
1137
|
+
(rule 1 (lower (has_type (fits_in_64 out)
|
1138
|
+
(uextend (extractlane vec @ (value_type in)
|
1139
|
+
(u8_from_uimm8 lane)))))
|
1140
|
+
(mov_from_vec (put_in_reg vec) lane (lane_size in)))
|
1141
|
+
|
1142
|
+
;; Atomic loads will also automatically zero their upper bits so the `uextend`
|
1143
|
+
;; instruction can effectively get skipped here.
|
1144
|
+
(rule 1 (lower (has_type (fits_in_64 out)
|
1145
|
+
(uextend x @ (and (value_type in) (atomic_load flags _)))))
|
1146
|
+
(if-let mem_op (is_sinkable_inst x))
|
1147
|
+
(load_acquire in flags (sink_atomic_load mem_op)))
|
1148
|
+
|
1149
|
+
;; Conversion to 128-bit needs a zero-extension of the lower bits and the upper
|
1150
|
+
;; bits are all zero.
|
1151
|
+
(rule -1 (lower (has_type $I128 (uextend x)))
|
1152
|
+
(value_regs (put_in_reg_zext64 x) (imm $I64 (ImmExtend.Zero) 0)))
|
1153
|
+
|
1154
|
+
;; Like above where vector extraction automatically zero-extends extending to
|
1155
|
+
;; i128 only requires generating a 0 constant for the upper bits.
|
1156
|
+
(rule (lower (has_type $I128
|
1157
|
+
(uextend (extractlane vec @ (value_type in)
|
1158
|
+
(u8_from_uimm8 lane)))))
|
1159
|
+
(value_regs (mov_from_vec (put_in_reg vec) lane (lane_size in)) (imm $I64 (ImmExtend.Zero) 0)))
|
1160
|
+
|
1161
|
+
;; Zero extensions from a load can be encoded in the load itself
|
1162
|
+
(rule (lower (has_type (fits_in_64 _) (uextend x @ (has_type in_ty (load flags address offset)))))
|
1163
|
+
(if-let inst (is_sinkable_inst x))
|
1164
|
+
(let ((_ Unit (sink_inst inst)))
|
1165
|
+
(aarch64_uload in_ty (amode in_ty address offset) flags)))
|
1166
|
+
|
1167
|
+
(decl aarch64_uload (Type AMode MemFlags) Reg)
|
1168
|
+
(rule (aarch64_uload $I8 amode flags) (aarch64_uload8 amode flags))
|
1169
|
+
(rule (aarch64_uload $I16 amode flags) (aarch64_uload16 amode flags))
|
1170
|
+
(rule (aarch64_uload $I32 amode flags) (aarch64_uload32 amode flags))
|
1171
|
+
|
1172
|
+
;;;; Rules for `sextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1173
|
+
|
1174
|
+
;; General rule for extending input to an output which fits in a single
|
1175
|
+
;; register.
|
1176
|
+
(rule -4 (lower (has_type (fits_in_64 out) (sextend x @ (value_type in))))
|
1177
|
+
(extend x $true (ty_bits in) (ty_bits out)))
|
1178
|
+
|
1179
|
+
;; Extraction of a vector lane automatically extends as necessary, so we can
|
1180
|
+
;; skip an explicit extending instruction.
|
1181
|
+
(rule -3 (lower (has_type (fits_in_64 out)
|
1182
|
+
(sextend (extractlane vec @ (value_type in)
|
1183
|
+
(u8_from_uimm8 lane)))))
|
1184
|
+
(mov_from_vec_signed (put_in_reg vec)
|
1185
|
+
lane
|
1186
|
+
(vector_size in)
|
1187
|
+
(size_from_ty out)))
|
1188
|
+
|
1189
|
+
;; 64-bit to 128-bit only needs to sign-extend the input to the upper bits.
|
1190
|
+
(rule -2 (lower (has_type $I128 (sextend x)))
|
1191
|
+
(let ((lo Reg (put_in_reg_sext64 x))
|
1192
|
+
(hi Reg (asr_imm $I64 lo (imm_shift_from_u8 63))))
|
1193
|
+
(value_regs lo hi)))
|
1194
|
+
|
1195
|
+
;; Like above where vector extraction automatically zero-extends extending to
|
1196
|
+
;; i128 only requires generating a 0 constant for the upper bits.
|
1197
|
+
;;
|
1198
|
+
;; Note that `mov_from_vec_signed` doesn't exist for i64x2, so that's
|
1199
|
+
;; specifically excluded here.
|
1200
|
+
(rule (lower (has_type $I128
|
1201
|
+
(sextend (extractlane vec @ (value_type in @ (not_i64x2))
|
1202
|
+
(u8_from_uimm8 lane)))))
|
1203
|
+
(let ((lo Reg (mov_from_vec_signed (put_in_reg vec)
|
1204
|
+
lane
|
1205
|
+
(vector_size in)
|
1206
|
+
(size_from_ty $I64)))
|
1207
|
+
(hi Reg (asr_imm $I64 lo (imm_shift_from_u8 63))))
|
1208
|
+
(value_regs lo hi)))
|
1209
|
+
|
1210
|
+
;; Extension from an extraction of i64x2 into i128.
|
1211
|
+
(rule -1 (lower (has_type $I128
|
1212
|
+
(sextend (extractlane vec @ (value_type $I64X2)
|
1213
|
+
(u8_from_uimm8 lane)))))
|
1214
|
+
(let ((lo Reg (mov_from_vec (put_in_reg vec)
|
1215
|
+
lane
|
1216
|
+
(ScalarSize.Size64)))
|
1217
|
+
(hi Reg (asr_imm $I64 lo (imm_shift_from_u8 63))))
|
1218
|
+
(value_regs lo hi)))
|
1219
|
+
|
1220
|
+
;; Signed extensions from a load can be encoded in the load itself
|
1221
|
+
(rule (lower (has_type (fits_in_64 _) (sextend x @ (has_type in_ty (load flags address offset)))))
|
1222
|
+
(if-let inst (is_sinkable_inst x))
|
1223
|
+
(let ((_ Unit (sink_inst inst)))
|
1224
|
+
(aarch64_sload in_ty (amode in_ty address offset) flags)))
|
1225
|
+
|
1226
|
+
(decl aarch64_sload (Type AMode MemFlags) Reg)
|
1227
|
+
(rule (aarch64_sload $I8 amode flags) (aarch64_sload8 amode flags))
|
1228
|
+
(rule (aarch64_sload $I16 amode flags) (aarch64_sload16 amode flags))
|
1229
|
+
(rule (aarch64_sload $I32 amode flags) (aarch64_sload32 amode flags))
|
1230
|
+
|
1231
|
+
;;;; Rules for `bnot` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1232
|
+
|
1233
|
+
;; Base case using `orn` between two registers.
|
1234
|
+
;;
|
1235
|
+
;; Note that bitwise negation is implemented here as
|
1236
|
+
;;
|
1237
|
+
;; NOT rd, rm ==> ORR_NOT rd, zero, rm
|
1238
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (bnot x)))
|
1239
|
+
(orr_not ty (zero_reg) x))
|
1240
|
+
|
1241
|
+
;; Special case to use `orr_not_shift` if it's a `bnot` of a const-left-shifted
|
1242
|
+
;; value.
|
1243
|
+
(rule 1 (lower (has_type (fits_in_64 ty)
|
1244
|
+
(bnot (ishl x (iconst k)))))
|
1245
|
+
(if-let amt (lshl_from_imm64 ty k))
|
1246
|
+
(orr_not_shift ty (zero_reg) x amt))
|
1247
|
+
|
1248
|
+
;; Implementation of `bnot` for `i128`.
|
1249
|
+
(rule (lower (has_type $I128 (bnot x)))
|
1250
|
+
(let ((x_regs ValueRegs x)
|
1251
|
+
(x_lo Reg (value_regs_get x_regs 0))
|
1252
|
+
(x_hi Reg (value_regs_get x_regs 1))
|
1253
|
+
(new_lo Reg (orr_not $I64 (zero_reg) x_lo))
|
1254
|
+
(new_hi Reg (orr_not $I64 (zero_reg) x_hi)))
|
1255
|
+
(value_regs new_lo new_hi)))
|
1256
|
+
|
1257
|
+
;; Implementation of `bnot` for vector types.
|
1258
|
+
(rule -2 (lower (has_type (ty_vec128 ty) (bnot x)))
|
1259
|
+
(not x (vector_size ty)))
|
1260
|
+
|
1261
|
+
;; Special-cases for fusing a bnot with bxor
|
1262
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (bnot (bxor x y))))
|
1263
|
+
(alu_rs_imm_logic (ALUOp.EorNot) ty x y))
|
1264
|
+
(rule 3 (lower (has_type $I128 (bnot (bxor x y)))) (i128_alu_bitop (ALUOp.EorNot) $I64 x y))
|
1265
|
+
|
1266
|
+
;;;; Rules for `band` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1267
|
+
|
1268
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (band x y)))
|
1269
|
+
(alu_rs_imm_logic_commutative (ALUOp.And) ty x y))
|
1270
|
+
|
1271
|
+
(rule (lower (has_type $I128 (band x y))) (i128_alu_bitop (ALUOp.And) $I64 x y))
|
1272
|
+
|
1273
|
+
(rule -2 (lower (has_type (ty_vec128 ty) (band x y)))
|
1274
|
+
(and_vec x y (vector_size ty)))
|
1275
|
+
|
1276
|
+
;; Specialized lowerings for `(band x (bnot y))` which is additionally produced
|
1277
|
+
;; by Cranelift's `band_not` instruction that is legalized into the simpler
|
1278
|
+
;; forms early on.
|
1279
|
+
|
1280
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (band x (bnot y))))
|
1281
|
+
(alu_rs_imm_logic (ALUOp.AndNot) ty x y))
|
1282
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (band (bnot y) x)))
|
1283
|
+
(alu_rs_imm_logic (ALUOp.AndNot) ty x y))
|
1284
|
+
|
1285
|
+
(rule 3 (lower (has_type $I128 (band x (bnot y)))) (i128_alu_bitop (ALUOp.AndNot) $I64 x y))
|
1286
|
+
(rule 4 (lower (has_type $I128 (band (bnot y) x))) (i128_alu_bitop (ALUOp.AndNot) $I64 x y))
|
1287
|
+
|
1288
|
+
(rule 5 (lower (has_type (ty_vec128 ty) (band x (bnot y))))
|
1289
|
+
(bic_vec x y (vector_size ty)))
|
1290
|
+
(rule 6 (lower (has_type (ty_vec128 ty) (band (bnot y) x)))
|
1291
|
+
(bic_vec x y (vector_size ty)))
|
1292
|
+
|
1293
|
+
;;;; Rules for `bor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1294
|
+
|
1295
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (bor x y)))
|
1296
|
+
(alu_rs_imm_logic_commutative (ALUOp.Orr) ty x y))
|
1297
|
+
|
1298
|
+
(rule (lower (has_type $I128 (bor x y))) (i128_alu_bitop (ALUOp.Orr) $I64 x y))
|
1299
|
+
|
1300
|
+
(rule -2 (lower (has_type (ty_vec128 ty) (bor x y)))
|
1301
|
+
(orr_vec x y (vector_size ty)))
|
1302
|
+
|
1303
|
+
;; Specialized lowerings for `(bor x (bnot y))` which is additionally produced
|
1304
|
+
;; by Cranelift's `bor_not` instruction that is legalized into the simpler
|
1305
|
+
;; forms early on.
|
1306
|
+
|
1307
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (bor x (bnot y))))
|
1308
|
+
(alu_rs_imm_logic (ALUOp.OrrNot) ty x y))
|
1309
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (bor (bnot y) x)))
|
1310
|
+
(alu_rs_imm_logic (ALUOp.OrrNot) ty x y))
|
1311
|
+
|
1312
|
+
(rule 3 (lower (has_type $I128 (bor x (bnot y)))) (i128_alu_bitop (ALUOp.OrrNot) $I64 x y))
|
1313
|
+
(rule 4 (lower (has_type $I128 (bor (bnot y) x))) (i128_alu_bitop (ALUOp.OrrNot) $I64 x y))
|
1314
|
+
|
1315
|
+
;;;; Rules for `bxor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1316
|
+
|
1317
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (bxor x y)))
|
1318
|
+
(alu_rs_imm_logic_commutative (ALUOp.Eor) ty x y))
|
1319
|
+
|
1320
|
+
(rule (lower (has_type $I128 (bxor x y))) (i128_alu_bitop (ALUOp.Eor) $I64 x y))
|
1321
|
+
|
1322
|
+
(rule -2 (lower (has_type (ty_vec128 ty) (bxor x y)))
|
1323
|
+
(eor_vec x y (vector_size ty)))
|
1324
|
+
|
1325
|
+
;; Specialized lowerings for `(bxor x (bnot y))` which is additionally produced
|
1326
|
+
;; by Cranelift's `bxor_not` instruction that is legalized into the simpler
|
1327
|
+
;; forms early on.
|
1328
|
+
|
1329
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (bxor x (bnot y))))
|
1330
|
+
(alu_rs_imm_logic (ALUOp.EorNot) ty x y))
|
1331
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (bxor (bnot y) x)))
|
1332
|
+
(alu_rs_imm_logic (ALUOp.EorNot) ty x y))
|
1333
|
+
|
1334
|
+
(rule 3 (lower (has_type $I128 (bxor x (bnot y)))) (i128_alu_bitop (ALUOp.EorNot) $I64 x y))
|
1335
|
+
(rule 4 (lower (has_type $I128 (bxor (bnot y) x))) (i128_alu_bitop (ALUOp.EorNot) $I64 x y))
|
1336
|
+
|
1337
|
+
;;;; Rules for `ishl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1338
|
+
|
1339
|
+
;; Shift for i8/i16/i32.
|
1340
|
+
(rule -1 (lower (has_type (fits_in_32 ty) (ishl x y)))
|
1341
|
+
(do_shift (ALUOp.Lsl) ty x y))
|
1342
|
+
|
1343
|
+
;; Shift for i64.
|
1344
|
+
(rule (lower (has_type $I64 (ishl x y)))
|
1345
|
+
(do_shift (ALUOp.Lsl) $I64 x y))
|
1346
|
+
|
1347
|
+
;; Shift for i128.
|
1348
|
+
(rule (lower (has_type $I128 (ishl x y)))
|
1349
|
+
(lower_shl128 x (value_regs_get y 0)))
|
1350
|
+
|
1351
|
+
;; lsl lo_lshift, src_lo, amt
|
1352
|
+
;; lsl hi_lshift, src_hi, amt
|
1353
|
+
;; mvn inv_amt, amt
|
1354
|
+
;; lsr lo_rshift, src_lo, #1
|
1355
|
+
;; lsr lo_rshift, lo_rshift, inv_amt
|
1356
|
+
;; orr maybe_hi, hi_lshift, lo_rshift
|
1357
|
+
;; tst amt, #0x40
|
1358
|
+
;; csel dst_hi, lo_lshift, maybe_hi, ne
|
1359
|
+
;; csel dst_lo, xzr, lo_lshift, ne
|
1360
|
+
(decl lower_shl128 (ValueRegs Reg) ValueRegs)
|
1361
|
+
(rule (lower_shl128 src amt)
|
1362
|
+
(let ((src_lo Reg (value_regs_get src 0))
|
1363
|
+
(src_hi Reg (value_regs_get src 1))
|
1364
|
+
(lo_lshift Reg (lsl $I64 src_lo amt))
|
1365
|
+
(hi_lshift Reg (lsl $I64 src_hi amt))
|
1366
|
+
(inv_amt Reg (orr_not $I32 (zero_reg) amt))
|
1367
|
+
(lo_rshift Reg (lsr $I64 (lsr_imm $I64 src_lo (imm_shift_from_u8 1))
|
1368
|
+
inv_amt))
|
1369
|
+
(maybe_hi Reg (orr $I64 hi_lshift lo_rshift))
|
1370
|
+
)
|
1371
|
+
(with_flags
|
1372
|
+
(tst_imm $I64 amt (u64_into_imm_logic $I64 64))
|
1373
|
+
(consumes_flags_concat
|
1374
|
+
(csel (Cond.Ne) (zero_reg) lo_lshift)
|
1375
|
+
(csel (Cond.Ne) lo_lshift maybe_hi)))))
|
1376
|
+
|
1377
|
+
;; Shift for vector types.
|
1378
|
+
(rule -3 (lower (has_type (ty_vec128 ty) (ishl x y)))
|
1379
|
+
(let ((size VectorSize (vector_size ty))
|
1380
|
+
(masked_shift_amt Reg (and_imm $I32 y (shift_mask ty)))
|
1381
|
+
(shift Reg (vec_dup masked_shift_amt size)))
|
1382
|
+
(sshl x shift size)))
|
1383
|
+
(rule -2 (lower (has_type (ty_vec128 ty) (ishl x (iconst (u64_from_imm64 n)))))
|
1384
|
+
(ushl_vec_imm x (shift_masked_imm ty n) (vector_size ty)))
|
1385
|
+
|
1386
|
+
(decl pure shift_masked_imm (Type u64) u8)
|
1387
|
+
(extern constructor shift_masked_imm shift_masked_imm)
|
1388
|
+
|
1389
|
+
;; Helper function to emit a shift operation with the opcode specified and
|
1390
|
+
;; the output type specified. The `Reg` provided is shifted by the `Value`
|
1391
|
+
;; given.
|
1392
|
+
;;
|
1393
|
+
;; Note that this automatically handles the clif semantics of masking the
|
1394
|
+
;; shift amount where necessary.
|
1395
|
+
(decl do_shift (ALUOp Type Reg Value) Reg)
|
1396
|
+
|
1397
|
+
;; 8/16-bit shift base case.
|
1398
|
+
;;
|
1399
|
+
;; When shifting for amounts larger than the size of the type, the CLIF shift
|
1400
|
+
;; instructions implement a "wrapping" behaviour, such that an i8 << 8 is
|
1401
|
+
;; equivalent to i8 << 0
|
1402
|
+
;;
|
1403
|
+
;; On i32 and i64 types this matches what the aarch64 spec does, but on smaller
|
1404
|
+
;; types (i16, i8) we need to do this manually, so we wrap the shift amount
|
1405
|
+
;; with an AND instruction
|
1406
|
+
(rule -1 (do_shift op (fits_in_16 ty) x y)
|
1407
|
+
(let ((shift_amt Reg (value_regs_get y 0))
|
1408
|
+
(masked_shift_amt Reg (and_imm $I32 shift_amt (shift_mask ty))))
|
1409
|
+
(alu_rrr op $I32 x masked_shift_amt)))
|
1410
|
+
|
1411
|
+
(decl shift_mask (Type) ImmLogic)
|
1412
|
+
(extern constructor shift_mask shift_mask)
|
1413
|
+
|
1414
|
+
;; 32/64-bit shift base cases.
|
1415
|
+
(rule (do_shift op $I32 x y) (alu_rrr op $I32 x (value_regs_get y 0)))
|
1416
|
+
(rule (do_shift op $I64 x y) (alu_rrr op $I64 x (value_regs_get y 0)))
|
1417
|
+
|
1418
|
+
;; Special case for shifting by a constant value where the value can fit into an
|
1419
|
+
;; `ImmShift`.
|
1420
|
+
;;
|
1421
|
+
;; Note that this rule explicitly has a higher priority than the others
|
1422
|
+
;; to ensure it's attempted first, otherwise the type-based filters on the
|
1423
|
+
;; previous rules seem to take priority over this rule.
|
1424
|
+
(rule 1 (do_shift op ty x (iconst k))
|
1425
|
+
(if-let shift (imm_shift_from_imm64 ty k))
|
1426
|
+
(alu_rr_imm_shift op ty x shift))
|
1427
|
+
|
1428
|
+
;;;; Rules for `ushr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1429
|
+
|
1430
|
+
;; Shift for i8/i16/i32.
|
1431
|
+
(rule -1 (lower (has_type (fits_in_32 ty) (ushr x y)))
|
1432
|
+
(do_shift (ALUOp.Lsr) ty (put_in_reg_zext32 x) y))
|
1433
|
+
|
1434
|
+
;; Shift for i64.
|
1435
|
+
(rule (lower (has_type $I64 (ushr x y)))
|
1436
|
+
(do_shift (ALUOp.Lsr) $I64 (put_in_reg_zext64 x) y))
|
1437
|
+
|
1438
|
+
;; Shift for i128.
|
1439
|
+
(rule (lower (has_type $I128 (ushr x y)))
|
1440
|
+
(lower_ushr128 x (value_regs_get y 0)))
|
1441
|
+
|
1442
|
+
;; Vector shifts.
|
1443
|
+
;;
|
1444
|
+
;; Note that for constant shifts a 0-width shift can't be emitted so it's
|
1445
|
+
;; special cased to pass through the input as-is since a 0-shift doesn't modify
|
1446
|
+
;; the input anyway.
|
1447
|
+
(rule -4 (lower (has_type (ty_vec128 ty) (ushr x y)))
|
1448
|
+
(let ((size VectorSize (vector_size ty))
|
1449
|
+
(masked_shift_amt Reg (and_imm $I32 y (shift_mask ty)))
|
1450
|
+
(shift Reg (vec_dup (sub $I64 (zero_reg) masked_shift_amt) size)))
|
1451
|
+
(ushl x shift size)))
|
1452
|
+
(rule -3 (lower (has_type (ty_vec128 ty) (ushr x (iconst (u64_from_imm64 n)))))
|
1453
|
+
(ushr_vec_imm x (shift_masked_imm ty n) (vector_size ty)))
|
1454
|
+
(rule -2 (lower (has_type (ty_vec128 ty) (ushr x (iconst (u64_from_imm64 n)))))
|
1455
|
+
(if-let 0 (shift_masked_imm ty n))
|
1456
|
+
x)
|
1457
|
+
|
1458
|
+
;; lsr lo_rshift, src_lo, amt
|
1459
|
+
;; lsr hi_rshift, src_hi, amt
|
1460
|
+
;; mvn inv_amt, amt
|
1461
|
+
;; lsl hi_lshift, src_hi, #1
|
1462
|
+
;; lsl hi_lshift, hi_lshift, inv_amt
|
1463
|
+
;; tst amt, #0x40
|
1464
|
+
;; orr maybe_lo, lo_rshift, hi_lshift
|
1465
|
+
;; csel dst_hi, xzr, hi_rshift, ne
|
1466
|
+
;; csel dst_lo, hi_rshift, maybe_lo, ne
|
1467
|
+
(decl lower_ushr128 (ValueRegs Reg) ValueRegs)
|
1468
|
+
(rule (lower_ushr128 src amt)
|
1469
|
+
(let ((src_lo Reg (value_regs_get src 0))
|
1470
|
+
(src_hi Reg (value_regs_get src 1))
|
1471
|
+
(lo_rshift Reg (lsr $I64 src_lo amt))
|
1472
|
+
(hi_rshift Reg (lsr $I64 src_hi amt))
|
1473
|
+
|
1474
|
+
(inv_amt Reg (orr_not $I32 (zero_reg) amt))
|
1475
|
+
(hi_lshift Reg (lsl $I64 (lsl_imm $I64 src_hi (imm_shift_from_u8 1))
|
1476
|
+
inv_amt))
|
1477
|
+
(maybe_lo Reg (orr $I64 lo_rshift hi_lshift))
|
1478
|
+
)
|
1479
|
+
(with_flags
|
1480
|
+
(tst_imm $I64 amt (u64_into_imm_logic $I64 64))
|
1481
|
+
(consumes_flags_concat
|
1482
|
+
(csel (Cond.Ne) hi_rshift maybe_lo)
|
1483
|
+
(csel (Cond.Ne) (zero_reg) hi_rshift)))))
|
1484
|
+
|
1485
|
+
;;;; Rules for `sshr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1486
|
+
|
1487
|
+
;; Shift for i8/i16/i32.
|
1488
|
+
(rule -4 (lower (has_type (fits_in_32 ty) (sshr x y)))
|
1489
|
+
(do_shift (ALUOp.Asr) ty (put_in_reg_sext32 x) y))
|
1490
|
+
|
1491
|
+
;; Shift for i64.
|
1492
|
+
(rule (lower (has_type $I64 (sshr x y)))
|
1493
|
+
(do_shift (ALUOp.Asr) $I64 (put_in_reg_sext64 x) y))
|
1494
|
+
|
1495
|
+
;; Shift for i128.
|
1496
|
+
(rule (lower (has_type $I128 (sshr x y)))
|
1497
|
+
(lower_sshr128 x (value_regs_get y 0)))
|
1498
|
+
|
1499
|
+
;; Vector shifts.
|
1500
|
+
;;
|
1501
|
+
;; Note that right shifts are implemented with a negative left shift. Also note
|
1502
|
+
;; that for constant shifts a 0-width shift can't be emitted so it's special
|
1503
|
+
;; cased to pass through the input as-is since a 0-shift doesn't modify the
|
1504
|
+
;; input anyway.
|
1505
|
+
(rule -3 (lower (has_type (ty_vec128 ty) (sshr x y)))
|
1506
|
+
(let ((size VectorSize (vector_size ty))
|
1507
|
+
(masked_shift_amt Reg (and_imm $I32 y (shift_mask ty)))
|
1508
|
+
(shift Reg (vec_dup (sub $I64 (zero_reg) masked_shift_amt) size)))
|
1509
|
+
(sshl x shift size)))
|
1510
|
+
(rule -2 (lower (has_type (ty_vec128 ty) (sshr x (iconst (u64_from_imm64 n)))))
|
1511
|
+
(sshr_vec_imm x (shift_masked_imm ty n) (vector_size ty)))
|
1512
|
+
(rule -1 (lower (has_type (ty_vec128 ty) (sshr x (iconst (u64_from_imm64 n)))))
|
1513
|
+
(if-let 0 (shift_masked_imm ty n))
|
1514
|
+
x)
|
1515
|
+
|
1516
|
+
;; lsr lo_rshift, src_lo, amt
|
1517
|
+
;; asr hi_rshift, src_hi, amt
|
1518
|
+
;; mvn inv_amt, amt
|
1519
|
+
;; lsl hi_lshift, src_hi, #1
|
1520
|
+
;; lsl hi_lshift, hi_lshift, inv_amt
|
1521
|
+
;; asr hi_sign, src_hi, #63
|
1522
|
+
;; orr maybe_lo, lo_rshift, hi_lshift
|
1523
|
+
;; tst amt, #0x40
|
1524
|
+
;; csel dst_hi, hi_sign, hi_rshift, ne
|
1525
|
+
;; csel dst_lo, hi_rshift, maybe_lo, ne
|
1526
|
+
(decl lower_sshr128 (ValueRegs Reg) ValueRegs)
|
1527
|
+
(rule (lower_sshr128 src amt)
|
1528
|
+
(let ((src_lo Reg (value_regs_get src 0))
|
1529
|
+
(src_hi Reg (value_regs_get src 1))
|
1530
|
+
(lo_rshift Reg (lsr $I64 src_lo amt))
|
1531
|
+
(hi_rshift Reg (asr $I64 src_hi amt))
|
1532
|
+
|
1533
|
+
(inv_amt Reg (orr_not $I32 (zero_reg) amt))
|
1534
|
+
(hi_lshift Reg (lsl $I64 (lsl_imm $I64 src_hi (imm_shift_from_u8 1))
|
1535
|
+
inv_amt))
|
1536
|
+
(hi_sign Reg (asr_imm $I64 src_hi (imm_shift_from_u8 63)))
|
1537
|
+
(maybe_lo Reg (orr $I64 lo_rshift hi_lshift))
|
1538
|
+
)
|
1539
|
+
(with_flags
|
1540
|
+
(tst_imm $I64 amt (u64_into_imm_logic $I64 64))
|
1541
|
+
(consumes_flags_concat
|
1542
|
+
(csel (Cond.Ne) hi_rshift maybe_lo)
|
1543
|
+
(csel (Cond.Ne) hi_sign hi_rshift)))))
|
1544
|
+
|
1545
|
+
;;;; Rules for `rotl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1546
|
+
|
1547
|
+
;; General 8/16-bit case.
|
1548
|
+
(rule -2 (lower (has_type (fits_in_16 ty) (rotl x y)))
|
1549
|
+
(let ((amt Reg (value_regs_get y 0))
|
1550
|
+
(neg_shift Reg (sub $I32 (zero_reg) amt)))
|
1551
|
+
(small_rotr ty (put_in_reg_zext32 x) neg_shift)))
|
1552
|
+
|
1553
|
+
;; Specialization for the 8/16-bit case when the rotation amount is an immediate.
|
1554
|
+
(rule -1 (lower (has_type (fits_in_16 ty) (rotl x (iconst k))))
|
1555
|
+
(if-let n (imm_shift_from_imm64 ty k))
|
1556
|
+
(small_rotr_imm ty (put_in_reg_zext32 x) (negate_imm_shift ty n)))
|
1557
|
+
|
1558
|
+
;; aarch64 doesn't have a left-rotate instruction, but a left rotation of K
|
1559
|
+
;; places is effectively a right rotation of N - K places, if N is the integer's
|
1560
|
+
;; bit size. We implement left rotations with this trick.
|
1561
|
+
;;
|
1562
|
+
;; Note that when negating the shift amount here the upper bits are ignored
|
1563
|
+
;; by the rotr instruction, meaning that we'll still left-shift by the desired
|
1564
|
+
;; amount.
|
1565
|
+
|
1566
|
+
;; General 32-bit case.
|
1567
|
+
(rule (lower (has_type $I32 (rotl x y)))
|
1568
|
+
(let ((amt Reg (value_regs_get y 0))
|
1569
|
+
(neg_shift Reg (sub $I32 (zero_reg) amt)))
|
1570
|
+
(a64_rotr $I32 x neg_shift)))
|
1571
|
+
|
1572
|
+
;; General 64-bit case.
|
1573
|
+
(rule (lower (has_type $I64 (rotl x y)))
|
1574
|
+
(let ((amt Reg (value_regs_get y 0))
|
1575
|
+
(neg_shift Reg (sub $I64 (zero_reg) amt)))
|
1576
|
+
(a64_rotr $I64 x neg_shift)))
|
1577
|
+
|
1578
|
+
;; Specialization for the 32-bit case when the rotation amount is an immediate.
|
1579
|
+
(rule 1 (lower (has_type $I32 (rotl x (iconst k))))
|
1580
|
+
(if-let n (imm_shift_from_imm64 $I32 k))
|
1581
|
+
(a64_rotr_imm $I32 x (negate_imm_shift $I32 n)))
|
1582
|
+
|
1583
|
+
;; Specialization for the 64-bit case when the rotation amount is an immediate.
|
1584
|
+
(rule 1 (lower (has_type $I64 (rotl x (iconst k))))
|
1585
|
+
(if-let n (imm_shift_from_imm64 $I64 k))
|
1586
|
+
(a64_rotr_imm $I64 x (negate_imm_shift $I64 n)))
|
1587
|
+
|
1588
|
+
(decl negate_imm_shift (Type ImmShift) ImmShift)
|
1589
|
+
(extern constructor negate_imm_shift negate_imm_shift)
|
1590
|
+
|
1591
|
+
;; General 128-bit case.
|
1592
|
+
;;
|
1593
|
+
;; TODO: much better codegen is possible with a constant amount.
|
1594
|
+
(rule (lower (has_type $I128 (rotl x y)))
|
1595
|
+
(let ((val ValueRegs x)
|
1596
|
+
(amt Reg (value_regs_get y 0))
|
1597
|
+
(neg_amt Reg (sub $I64 (imm $I64 (ImmExtend.Zero) 128) amt))
|
1598
|
+
(lshift ValueRegs (lower_shl128 val amt))
|
1599
|
+
(rshift ValueRegs (lower_ushr128 val neg_amt)))
|
1600
|
+
(value_regs
|
1601
|
+
(orr $I64 (value_regs_get lshift 0) (value_regs_get rshift 0))
|
1602
|
+
(orr $I64 (value_regs_get lshift 1) (value_regs_get rshift 1)))))
|
1603
|
+
|
1604
|
+
;;;; Rules for `rotr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1605
|
+
|
1606
|
+
;; General 8/16-bit case.
|
1607
|
+
(rule -3 (lower (has_type (fits_in_16 ty) (rotr x y)))
|
1608
|
+
(small_rotr ty (put_in_reg_zext32 x) (value_regs_get y 0)))
|
1609
|
+
|
1610
|
+
;; General 32-bit case.
|
1611
|
+
(rule -1 (lower (has_type $I32 (rotr x y)))
|
1612
|
+
(a64_rotr $I32 x (value_regs_get y 0)))
|
1613
|
+
|
1614
|
+
;; General 64-bit case.
|
1615
|
+
(rule -1 (lower (has_type $I64 (rotr x y)))
|
1616
|
+
(a64_rotr $I64 x (value_regs_get y 0)))
|
1617
|
+
|
1618
|
+
;; Specialization for the 8/16-bit case when the rotation amount is an immediate.
|
1619
|
+
(rule -2 (lower (has_type (fits_in_16 ty) (rotr x (iconst k))))
|
1620
|
+
(if-let n (imm_shift_from_imm64 ty k))
|
1621
|
+
(small_rotr_imm ty (put_in_reg_zext32 x) n))
|
1622
|
+
|
1623
|
+
;; Specialization for the 32-bit case when the rotation amount is an immediate.
|
1624
|
+
(rule (lower (has_type $I32 (rotr x (iconst k))))
|
1625
|
+
(if-let n (imm_shift_from_imm64 $I32 k))
|
1626
|
+
(a64_rotr_imm $I32 x n))
|
1627
|
+
|
1628
|
+
;; Specialization for the 64-bit case when the rotation amount is an immediate.
|
1629
|
+
(rule (lower (has_type $I64 (rotr x (iconst k))))
|
1630
|
+
(if-let n (imm_shift_from_imm64 $I64 k))
|
1631
|
+
(a64_rotr_imm $I64 x n))
|
1632
|
+
|
1633
|
+
;; For a < 32-bit rotate-right, we synthesize this as:
|
1634
|
+
;;
|
1635
|
+
;; rotr rd, val, amt
|
1636
|
+
;;
|
1637
|
+
;; =>
|
1638
|
+
;;
|
1639
|
+
;; and masked_amt, amt, <bitwidth - 1>
|
1640
|
+
;; sub tmp_sub, masked_amt, <bitwidth>
|
1641
|
+
;; sub neg_amt, zero, tmp_sub ; neg
|
1642
|
+
;; lsr val_rshift, val, masked_amt
|
1643
|
+
;; lsl val_lshift, val, neg_amt
|
1644
|
+
;; orr rd, val_lshift val_rshift
|
1645
|
+
(decl small_rotr (Type Reg Reg) Reg)
|
1646
|
+
(rule (small_rotr ty val amt)
|
1647
|
+
(let ((masked_amt Reg (and_imm $I32 amt (rotr_mask ty)))
|
1648
|
+
(tmp_sub Reg (sub_imm $I32 masked_amt (u8_into_imm12 (ty_bits ty))))
|
1649
|
+
(neg_amt Reg (sub $I32 (zero_reg) tmp_sub))
|
1650
|
+
(val_rshift Reg (lsr $I32 val masked_amt))
|
1651
|
+
(val_lshift Reg (lsl $I32 val neg_amt)))
|
1652
|
+
(orr $I32 val_lshift val_rshift)))
|
1653
|
+
|
1654
|
+
(decl rotr_mask (Type) ImmLogic)
|
1655
|
+
(extern constructor rotr_mask rotr_mask)
|
1656
|
+
|
1657
|
+
;; For a constant amount, we can instead do:
|
1658
|
+
;;
|
1659
|
+
;; rotr rd, val, #amt
|
1660
|
+
;;
|
1661
|
+
;; =>
|
1662
|
+
;;
|
1663
|
+
;; lsr val_rshift, val, #<amt>
|
1664
|
+
;; lsl val_lshift, val, <bitwidth - amt>
|
1665
|
+
;; orr rd, val_lshift, val_rshift
|
1666
|
+
(decl small_rotr_imm (Type Reg ImmShift) Reg)
|
1667
|
+
(rule (small_rotr_imm ty val amt)
|
1668
|
+
(let ((val_rshift Reg (lsr_imm $I32 val amt))
|
1669
|
+
(val_lshift Reg (lsl_imm $I32 val (rotr_opposite_amount ty amt))))
|
1670
|
+
(orr $I32 val_lshift val_rshift)))
|
1671
|
+
|
1672
|
+
(decl rotr_opposite_amount (Type ImmShift) ImmShift)
|
1673
|
+
(extern constructor rotr_opposite_amount rotr_opposite_amount)
|
1674
|
+
|
1675
|
+
;; General 128-bit case.
|
1676
|
+
;;
|
1677
|
+
;; TODO: much better codegen is possible with a constant amount.
|
1678
|
+
(rule (lower (has_type $I128 (rotr x y)))
|
1679
|
+
(let ((val ValueRegs x)
|
1680
|
+
(amt Reg (value_regs_get y 0))
|
1681
|
+
(neg_amt Reg (sub $I64 (imm $I64 (ImmExtend.Zero) 128) amt))
|
1682
|
+
(rshift ValueRegs (lower_ushr128 val amt))
|
1683
|
+
(lshift ValueRegs (lower_shl128 val neg_amt))
|
1684
|
+
(hi Reg (orr $I64 (value_regs_get rshift 1) (value_regs_get lshift 1)))
|
1685
|
+
(lo Reg (orr $I64 (value_regs_get rshift 0) (value_regs_get lshift 0))))
|
1686
|
+
(value_regs lo hi)))
|
1687
|
+
|
1688
|
+
;;;; Rules for `bitrev` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1689
|
+
|
1690
|
+
;; Reversing an 8-bit value with a 32-bit bitrev instruction will place
|
1691
|
+
;; the reversed result in the highest 8 bits, so we need to shift them down into
|
1692
|
+
;; place.
|
1693
|
+
(rule (lower (has_type $I8 (bitrev x)))
|
1694
|
+
(lsr_imm $I32 (rbit $I32 x) (imm_shift_from_u8 24)))
|
1695
|
+
|
1696
|
+
;; Reversing an 16-bit value with a 32-bit bitrev instruction will place
|
1697
|
+
;; the reversed result in the highest 16 bits, so we need to shift them down into
|
1698
|
+
;; place.
|
1699
|
+
(rule (lower (has_type $I16 (bitrev x)))
|
1700
|
+
(lsr_imm $I32 (rbit $I32 x) (imm_shift_from_u8 16)))
|
1701
|
+
|
1702
|
+
(rule (lower (has_type $I128 (bitrev x)))
|
1703
|
+
(let ((val ValueRegs x)
|
1704
|
+
(lo_rev Reg (rbit $I64 (value_regs_get val 0)))
|
1705
|
+
(hi_rev Reg (rbit $I64 (value_regs_get val 1))))
|
1706
|
+
(value_regs hi_rev lo_rev)))
|
1707
|
+
|
1708
|
+
(rule -1 (lower (has_type ty (bitrev x)))
|
1709
|
+
(rbit ty x))
|
1710
|
+
|
1711
|
+
|
1712
|
+
;;;; Rules for `clz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1713
|
+
|
1714
|
+
(rule (lower (has_type $I8 (clz x)))
|
1715
|
+
(sub_imm $I32 (a64_clz $I32 (put_in_reg_zext32 x)) (u8_into_imm12 24)))
|
1716
|
+
|
1717
|
+
(rule (lower (has_type $I16 (clz x)))
|
1718
|
+
(sub_imm $I32 (a64_clz $I32 (put_in_reg_zext32 x)) (u8_into_imm12 16)))
|
1719
|
+
|
1720
|
+
(rule (lower (has_type $I128 (clz x)))
|
1721
|
+
(lower_clz128 x))
|
1722
|
+
|
1723
|
+
(rule -1 (lower (has_type ty (clz x)))
|
1724
|
+
(a64_clz ty x))
|
1725
|
+
|
1726
|
+
;; clz hi_clz, hi
|
1727
|
+
;; clz lo_clz, lo
|
1728
|
+
;; lsr tmp, hi_clz, #6
|
1729
|
+
;; madd dst_lo, lo_clz, tmp, hi_clz
|
1730
|
+
;; mov dst_hi, 0
|
1731
|
+
(decl lower_clz128 (ValueRegs) ValueRegs)
|
1732
|
+
(rule (lower_clz128 val)
|
1733
|
+
(let ((hi_clz Reg (a64_clz $I64 (value_regs_get val 1)))
|
1734
|
+
(lo_clz Reg (a64_clz $I64 (value_regs_get val 0)))
|
1735
|
+
(tmp Reg (lsr_imm $I64 hi_clz (imm_shift_from_u8 6))))
|
1736
|
+
(value_regs (madd $I64 lo_clz tmp hi_clz) (imm $I64 (ImmExtend.Zero) 0))))
|
1737
|
+
|
1738
|
+
;;;; Rules for `ctz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1739
|
+
|
1740
|
+
;; Note that all `ctz` instructions are implemented by reversing the bits and
|
1741
|
+
;; then using a `clz` instruction since the tail zeros are the same as the
|
1742
|
+
;; leading zeros of the reversed value.
|
1743
|
+
|
1744
|
+
(rule (lower (has_type $I8 (ctz x)))
|
1745
|
+
(a64_clz $I32 (orr_imm $I32 (rbit $I32 x) (u64_into_imm_logic $I32 0x800000))))
|
1746
|
+
|
1747
|
+
(rule (lower (has_type $I16 (ctz x)))
|
1748
|
+
(a64_clz $I32 (orr_imm $I32 (rbit $I32 x) (u64_into_imm_logic $I32 0x8000))))
|
1749
|
+
|
1750
|
+
(rule (lower (has_type $I128 (ctz x)))
|
1751
|
+
(let ((val ValueRegs x)
|
1752
|
+
(lo Reg (rbit $I64 (value_regs_get val 0)))
|
1753
|
+
(hi Reg (rbit $I64 (value_regs_get val 1))))
|
1754
|
+
(lower_clz128 (value_regs hi lo))))
|
1755
|
+
|
1756
|
+
(rule -1 (lower (has_type ty (ctz x)))
|
1757
|
+
(a64_clz ty (rbit ty x)))
|
1758
|
+
|
1759
|
+
;;;; Rules for `cls` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1760
|
+
|
1761
|
+
(rule (lower (has_type $I8 (cls x)))
|
1762
|
+
(sub_imm $I32 (a64_cls $I32 (put_in_reg_sext32 x)) (u8_into_imm12 24)))
|
1763
|
+
|
1764
|
+
(rule (lower (has_type $I16 (cls x)))
|
1765
|
+
(sub_imm $I32 (a64_cls $I32 (put_in_reg_sext32 x)) (u8_into_imm12 16)))
|
1766
|
+
|
1767
|
+
;; cls lo_cls, lo
|
1768
|
+
;; cls hi_cls, hi
|
1769
|
+
;; eon sign_eq_eor, hi, lo
|
1770
|
+
;; lsr sign_eq, sign_eq_eor, #63
|
1771
|
+
;; madd lo_sign_bits, out_lo, sign_eq, sign_eq
|
1772
|
+
;; cmp hi_cls, #63
|
1773
|
+
;; csel maybe_lo, lo_sign_bits, xzr, eq
|
1774
|
+
;; add out_lo, maybe_lo, hi_cls
|
1775
|
+
;; mov out_hi, 0
|
1776
|
+
(rule (lower (has_type $I128 (cls x)))
|
1777
|
+
(let ((val ValueRegs x)
|
1778
|
+
(lo Reg (value_regs_get val 0))
|
1779
|
+
(hi Reg (value_regs_get val 1))
|
1780
|
+
(lo_cls Reg (a64_cls $I64 lo))
|
1781
|
+
(hi_cls Reg (a64_cls $I64 hi))
|
1782
|
+
(sign_eq_eon Reg (eon $I64 hi lo))
|
1783
|
+
(sign_eq Reg (lsr_imm $I64 sign_eq_eon (imm_shift_from_u8 63)))
|
1784
|
+
(lo_sign_bits Reg (madd $I64 lo_cls sign_eq sign_eq))
|
1785
|
+
(maybe_lo Reg (with_flags_reg
|
1786
|
+
(cmp64_imm hi_cls (u8_into_imm12 63))
|
1787
|
+
(csel (Cond.Eq) lo_sign_bits (zero_reg)))))
|
1788
|
+
(value_regs (add $I64 maybe_lo hi_cls) (imm $I64 (ImmExtend.Zero) 0))))
|
1789
|
+
|
1790
|
+
(rule -1 (lower (has_type ty (cls x)))
|
1791
|
+
(a64_cls ty x))
|
1792
|
+
|
1793
|
+
;;;; Rules for `bswap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1794
|
+
|
1795
|
+
(rule (lower (has_type $I16 (bswap x)))
|
1796
|
+
(a64_rev16 $I16 x))
|
1797
|
+
|
1798
|
+
(rule (lower (has_type $I32 (bswap x)))
|
1799
|
+
(a64_rev32 $I32 x))
|
1800
|
+
|
1801
|
+
(rule (lower (has_type $I64 (bswap x)))
|
1802
|
+
(a64_rev64 $I64 x))
|
1803
|
+
|
1804
|
+
(rule (lower (has_type $I128 (bswap x)))
|
1805
|
+
(value_regs
|
1806
|
+
(a64_rev64 $I64 (value_regs_get x 1))
|
1807
|
+
(a64_rev64 $I64 (value_regs_get x 0))))
|
1808
|
+
|
1809
|
+
;;;; Rules for `bmask` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1810
|
+
|
1811
|
+
;; Bmask tests the value against zero, and uses `csetm` to assert the result.
|
1812
|
+
(rule (lower (has_type out_ty (bmask x @ (value_type in_ty))))
|
1813
|
+
(lower_bmask out_ty in_ty x))
|
1814
|
+
|
1815
|
+
;;;; Rules for `popcnt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1816
|
+
|
1817
|
+
;; The implementation of `popcnt` for scalar types is done by moving the value
|
1818
|
+
;; into a vector register, using the `cnt` instruction, and then collating the
|
1819
|
+
;; result back into a normal register.
|
1820
|
+
;;
|
1821
|
+
;; The general sequence emitted here is
|
1822
|
+
;;
|
1823
|
+
;; fmov tmp, in_lo
|
1824
|
+
;; if ty == i128:
|
1825
|
+
;; mov tmp.d[1], in_hi
|
1826
|
+
;;
|
1827
|
+
;; cnt tmp.16b, tmp.16b / cnt tmp.8b, tmp.8b
|
1828
|
+
;; addv tmp, tmp.16b / addv tmp, tmp.8b / addp tmp.8b, tmp.8b, tmp.8b / (no instruction for 8-bit inputs)
|
1829
|
+
;;
|
1830
|
+
;; umov out_lo, tmp.b[0]
|
1831
|
+
;; if ty == i128:
|
1832
|
+
;; mov out_hi, 0
|
1833
|
+
|
1834
|
+
(rule (lower (has_type $I8 (popcnt x)))
|
1835
|
+
(let ((tmp Reg (mov_to_fpu x (ScalarSize.Size32)))
|
1836
|
+
(nbits Reg (vec_cnt tmp (VectorSize.Size8x8))))
|
1837
|
+
(mov_from_vec nbits 0 (ScalarSize.Size8))))
|
1838
|
+
|
1839
|
+
;; Note that this uses `addp` instead of `addv` as it's usually cheaper.
|
1840
|
+
(rule (lower (has_type $I16 (popcnt x)))
|
1841
|
+
(let ((tmp Reg (mov_to_fpu x (ScalarSize.Size32)))
|
1842
|
+
(nbits Reg (vec_cnt tmp (VectorSize.Size8x8)))
|
1843
|
+
(added Reg (addp nbits nbits (VectorSize.Size8x8))))
|
1844
|
+
(mov_from_vec added 0 (ScalarSize.Size8))))
|
1845
|
+
|
1846
|
+
(rule (lower (has_type $I32 (popcnt x)))
|
1847
|
+
(let ((tmp Reg (mov_to_fpu x (ScalarSize.Size32)))
|
1848
|
+
(nbits Reg (vec_cnt tmp (VectorSize.Size8x8)))
|
1849
|
+
(added Reg (addv nbits (VectorSize.Size8x8))))
|
1850
|
+
(mov_from_vec added 0 (ScalarSize.Size8))))
|
1851
|
+
|
1852
|
+
(rule (lower (has_type $I64 (popcnt x)))
|
1853
|
+
(let ((tmp Reg (mov_to_fpu x (ScalarSize.Size64)))
|
1854
|
+
(nbits Reg (vec_cnt tmp (VectorSize.Size8x8)))
|
1855
|
+
(added Reg (addv nbits (VectorSize.Size8x8))))
|
1856
|
+
(mov_from_vec added 0 (ScalarSize.Size8))))
|
1857
|
+
|
1858
|
+
(rule (lower (has_type $I128 (popcnt x)))
|
1859
|
+
(let ((val ValueRegs x)
|
1860
|
+
(tmp_half Reg (mov_to_fpu (value_regs_get val 0) (ScalarSize.Size64)))
|
1861
|
+
(tmp Reg (mov_to_vec tmp_half (value_regs_get val 1) 1 (VectorSize.Size64x2)))
|
1862
|
+
(nbits Reg (vec_cnt tmp (VectorSize.Size8x16)))
|
1863
|
+
(added Reg (addv nbits (VectorSize.Size8x16))))
|
1864
|
+
(value_regs (mov_from_vec added 0 (ScalarSize.Size8)) (imm $I64 (ImmExtend.Zero) 0))))
|
1865
|
+
|
1866
|
+
(rule (lower (has_type $I8X16 (popcnt x)))
|
1867
|
+
(vec_cnt x (VectorSize.Size8x16)))
|
1868
|
+
|
1869
|
+
;;;; Rules for `bitselect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1870
|
+
|
1871
|
+
(rule (lower (has_type ty (bitselect c x y)))
|
1872
|
+
(if (ty_int_ref_scalar_64 ty))
|
1873
|
+
(let ((tmp1 Reg (and_reg ty x c))
|
1874
|
+
(tmp2 Reg (bic ty y c)))
|
1875
|
+
(orr ty tmp1 tmp2)))
|
1876
|
+
|
1877
|
+
(rule 1 (lower (has_type (ty_vec128 ty) (bitselect c x y)))
|
1878
|
+
(bsl ty c x y))
|
1879
|
+
|
1880
|
+
;;;; Rules for `ireduce` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1881
|
+
|
1882
|
+
;; T -> I{64,32,16,8}: We can simply pass through the value: values
|
1883
|
+
;; are always stored with high bits undefined, so we can just leave
|
1884
|
+
;; them be.
|
1885
|
+
(rule (lower (has_type ty (ireduce src)))
|
1886
|
+
(if (ty_int_ref_scalar_64 ty))
|
1887
|
+
(value_regs_get src 0))
|
1888
|
+
|
1889
|
+
;;;; Rules for `fcmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1890
|
+
|
1891
|
+
(rule 4 (lower (has_type ty @ (multi_lane _ _) (fcmp (fcmp_zero_cond_not_eq cond) x y)))
|
1892
|
+
(if (zero_value y))
|
1893
|
+
(let ((rn Reg x)
|
1894
|
+
(vec_size VectorSize (vector_size ty)))
|
1895
|
+
(value_reg (not (fcmeq0 rn vec_size) vec_size))))
|
1896
|
+
|
1897
|
+
(rule 3 (lower (has_type ty @ (multi_lane _ _) (fcmp (fcmp_zero_cond cond) x y)))
|
1898
|
+
(if (zero_value y))
|
1899
|
+
(let ((rn Reg x)
|
1900
|
+
(vec_size VectorSize (vector_size ty)))
|
1901
|
+
(value_reg (float_cmp_zero cond rn vec_size))))
|
1902
|
+
|
1903
|
+
(rule 2 (lower (has_type ty @ (multi_lane _ _) (fcmp (fcmp_zero_cond_not_eq cond) x y)))
|
1904
|
+
(if (zero_value x))
|
1905
|
+
(let ((rn Reg y)
|
1906
|
+
(vec_size VectorSize (vector_size ty)))
|
1907
|
+
(value_reg (not (fcmeq0 rn vec_size) vec_size))))
|
1908
|
+
|
1909
|
+
(rule 1 (lower (has_type ty @ (multi_lane _ _) (fcmp (fcmp_zero_cond cond) x y)))
|
1910
|
+
(if (zero_value x))
|
1911
|
+
(let ((rn Reg y)
|
1912
|
+
(vec_size VectorSize (vector_size ty)))
|
1913
|
+
(value_reg (float_cmp_zero_swap cond rn vec_size))))
|
1914
|
+
|
1915
|
+
(rule 0 (lower (has_type out_ty
|
1916
|
+
(fcmp cond x @ (value_type (ty_scalar_float in_ty)) y)))
|
1917
|
+
(with_flags (fpu_cmp (scalar_size in_ty) x y)
|
1918
|
+
(materialize_bool_result (fp_cond_code cond))))
|
1919
|
+
|
1920
|
+
(rule -1 (lower (has_type out_ty (fcmp cond x @ (value_type in_ty) y)))
|
1921
|
+
(if (ty_vector_float in_ty))
|
1922
|
+
(vec_cmp x y in_ty (fp_cond_code cond)))
|
1923
|
+
|
1924
|
+
;;;; Rules for `icmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1925
|
+
|
1926
|
+
(rule 3 (lower (has_type ty @ (multi_lane _ _) (icmp (icmp_zero_cond_not_eq cond) x y)))
|
1927
|
+
(if (zero_value y))
|
1928
|
+
(let ((rn Reg x)
|
1929
|
+
(vec_size VectorSize (vector_size ty)))
|
1930
|
+
(value_reg (not (cmeq0 rn vec_size) vec_size))))
|
1931
|
+
|
1932
|
+
(rule 2 (lower (has_type ty @ (multi_lane _ _) (icmp (icmp_zero_cond cond) x y)))
|
1933
|
+
(if (zero_value y))
|
1934
|
+
(let ((rn Reg x)
|
1935
|
+
(vec_size VectorSize (vector_size ty)))
|
1936
|
+
(value_reg (int_cmp_zero cond rn vec_size))))
|
1937
|
+
|
1938
|
+
(rule 1 (lower (has_type ty @ (multi_lane _ _) (icmp (icmp_zero_cond_not_eq cond) x y)))
|
1939
|
+
(if (zero_value x))
|
1940
|
+
(let ((rn Reg y)
|
1941
|
+
(vec_size VectorSize (vector_size ty)))
|
1942
|
+
(value_reg (not (cmeq0 rn vec_size) vec_size))))
|
1943
|
+
|
1944
|
+
(rule 0 (lower (has_type ty @ (multi_lane _ _) (icmp (icmp_zero_cond cond) x y)))
|
1945
|
+
(if (zero_value x))
|
1946
|
+
(let ((rn Reg y)
|
1947
|
+
(vec_size VectorSize (vector_size ty)))
|
1948
|
+
(value_reg (int_cmp_zero_swap cond rn vec_size))))
|
1949
|
+
|
1950
|
+
(rule -1 (lower (icmp cond x @ (value_type in_ty) y))
|
1951
|
+
(lower_icmp_into_reg cond x y in_ty $I8))
|
1952
|
+
|
1953
|
+
;;;; Rules for `trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1954
|
+
|
1955
|
+
(rule (lower (trap trap_code))
|
1956
|
+
(side_effect (udf trap_code)))
|
1957
|
+
|
1958
|
+
;;;; Rules for `select` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1959
|
+
|
1960
|
+
(rule (lower (has_type ty
|
1961
|
+
(select (maybe_uextend (icmp cc
|
1962
|
+
x @ (value_type in_ty)
|
1963
|
+
y))
|
1964
|
+
rn
|
1965
|
+
rm)))
|
1966
|
+
(let ((comparison FlagsAndCC (lower_icmp_into_flags cc x y in_ty)))
|
1967
|
+
(lower_select (flags_and_cc_flags comparison)
|
1968
|
+
(cond_code (flags_and_cc_cc comparison))
|
1969
|
+
ty
|
1970
|
+
rn
|
1971
|
+
rm)))
|
1972
|
+
|
1973
|
+
(rule (lower (has_type ty
|
1974
|
+
(select (maybe_uextend (fcmp cc x @ (value_type in_ty) y))
|
1975
|
+
rn
|
1976
|
+
rm)))
|
1977
|
+
(let ((cond Cond (fp_cond_code cc)))
|
1978
|
+
(lower_select
|
1979
|
+
(fpu_cmp (scalar_size in_ty) x y)
|
1980
|
+
cond ty rn rm)))
|
1981
|
+
|
1982
|
+
(rule -1 (lower (has_type ty (select rcond @ (value_type $I8) rn rm)))
|
1983
|
+
(let ((rcond Reg rcond))
|
1984
|
+
(lower_select
|
1985
|
+
(tst_imm $I32 rcond (u64_into_imm_logic $I32 255))
|
1986
|
+
(Cond.Ne) ty rn rm)))
|
1987
|
+
|
1988
|
+
(rule -2 (lower (has_type ty (select rcond @ (value_type (fits_in_32 _)) rn rm)))
|
1989
|
+
(let ((rcond Reg (put_in_reg_zext32 rcond)))
|
1990
|
+
(lower_select
|
1991
|
+
(cmp (OperandSize.Size32) rcond (zero_reg))
|
1992
|
+
(Cond.Ne) ty rn rm)))
|
1993
|
+
|
1994
|
+
(rule -3 (lower (has_type ty (select rcond @ (value_type (fits_in_64 _)) rn rm)))
|
1995
|
+
(let ((rcond Reg (put_in_reg_zext64 rcond)))
|
1996
|
+
(lower_select
|
1997
|
+
(cmp (OperandSize.Size64) rcond (zero_reg))
|
1998
|
+
(Cond.Ne) ty rn rm)))
|
1999
|
+
|
2000
|
+
(rule -4 (lower (has_type ty (select rcond @ (value_type $I128) rn rm)))
|
2001
|
+
(let ((c ValueRegs (put_in_regs rcond))
|
2002
|
+
(c_lo Reg (value_regs_get c 0))
|
2003
|
+
(c_hi Reg (value_regs_get c 1))
|
2004
|
+
(rt Reg (orr $I64 c_lo c_hi)))
|
2005
|
+
(lower_select
|
2006
|
+
(cmp (OperandSize.Size64) rt (zero_reg))
|
2007
|
+
(Cond.Ne) ty rn rm)))
|
2008
|
+
|
2009
|
+
;;;; Rules for `select_spectre_guard` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2010
|
+
|
2011
|
+
(rule (lower (has_type ty
|
2012
|
+
(select_spectre_guard (maybe_uextend (icmp cc x @ (value_type in_ty) y))
|
2013
|
+
if_true
|
2014
|
+
if_false)))
|
2015
|
+
(let ((comparison FlagsAndCC (lower_icmp_into_flags cc x y in_ty))
|
2016
|
+
(dst ValueRegs (lower_select
|
2017
|
+
(flags_and_cc_flags comparison)
|
2018
|
+
(cond_code (flags_and_cc_cc comparison))
|
2019
|
+
ty
|
2020
|
+
if_true
|
2021
|
+
if_false))
|
2022
|
+
(_ InstOutput (side_effect (csdb))))
|
2023
|
+
dst))
|
2024
|
+
|
2025
|
+
(rule -1 (lower (has_type ty (select_spectre_guard rcond @ (value_type (fits_in_64 _)) rn rm)))
|
2026
|
+
(let ((rcond Reg (put_in_reg_zext64 rcond)))
|
2027
|
+
(lower_select
|
2028
|
+
(cmp (OperandSize.Size64) rcond (zero_reg))
|
2029
|
+
(Cond.Ne) ty rn rm)))
|
2030
|
+
|
2031
|
+
(rule -2 (lower (has_type ty (select_spectre_guard rcond @ (value_type $I128) rn rm)))
|
2032
|
+
(let ((c ValueRegs (put_in_regs rcond))
|
2033
|
+
(c_lo Reg (value_regs_get c 0))
|
2034
|
+
(c_hi Reg (value_regs_get c 1))
|
2035
|
+
(rt Reg (orr $I64 c_lo c_hi)))
|
2036
|
+
(lower_select
|
2037
|
+
(cmp (OperandSize.Size64) rt (zero_reg))
|
2038
|
+
(Cond.Ne) ty rn rm)))
|
2039
|
+
|
2040
|
+
;;;; Rules for `vconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2041
|
+
|
2042
|
+
(rule (lower (has_type (ty_vec128 _) (vconst (u128_from_constant x))))
|
2043
|
+
(constant_f128 x))
|
2044
|
+
|
2045
|
+
(rule 1 (lower (has_type ty (vconst (u64_from_constant x))))
|
2046
|
+
(if (ty_vec64 ty))
|
2047
|
+
(constant_f64 x))
|
2048
|
+
|
2049
|
+
;;;; Rules for `splat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2050
|
+
|
2051
|
+
(rule -1 (lower (has_type ty (splat x @ (value_type in_ty))))
|
2052
|
+
(if (ty_int_ref_scalar_64 in_ty))
|
2053
|
+
(vec_dup x (vector_size ty)))
|
2054
|
+
|
2055
|
+
(rule -2 (lower (has_type ty (splat x @ (value_type (ty_scalar_float _)))))
|
2056
|
+
(vec_dup_from_fpu x (vector_size ty) 0))
|
2057
|
+
|
2058
|
+
(rule (lower (has_type ty (splat (f32const (u32_from_ieee32 n)))))
|
2059
|
+
(splat_const n (vector_size ty)))
|
2060
|
+
|
2061
|
+
(rule (lower (has_type ty (splat (f64const (u64_from_ieee64 n)))))
|
2062
|
+
(splat_const n (vector_size ty)))
|
2063
|
+
|
2064
|
+
(rule (lower (has_type ty (splat (iconst (u64_from_imm64 n)))))
|
2065
|
+
(splat_const n (vector_size ty)))
|
2066
|
+
|
2067
|
+
(rule (lower (has_type ty (splat (ireduce (iconst (u64_from_imm64 n))))))
|
2068
|
+
(splat_const n (vector_size ty)))
|
2069
|
+
|
2070
|
+
(rule (lower (has_type ty (splat x @ (load flags _ _))))
|
2071
|
+
(if-let mem_op (is_sinkable_inst x))
|
2072
|
+
(let ((addr Reg (sink_load_into_addr (lane_type ty) mem_op)))
|
2073
|
+
(ld1r addr (vector_size ty) flags)))
|
2074
|
+
|
2075
|
+
;;;; Rules for `AtomicLoad` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2076
|
+
(rule (lower (has_type (valid_atomic_transaction ty) (atomic_load flags addr)))
|
2077
|
+
(load_acquire ty flags addr))
|
2078
|
+
|
2079
|
+
|
2080
|
+
;;;; Rules for `AtomicStore` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2081
|
+
(rule (lower (atomic_store flags
|
2082
|
+
src @ (value_type (valid_atomic_transaction ty))
|
2083
|
+
addr))
|
2084
|
+
(side_effect (store_release ty flags src addr)))
|
2085
|
+
|
2086
|
+
;;;; Rules for `AtomicRMW` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2087
|
+
|
2088
|
+
(rule 1 (lower (and (use_lse)
|
2089
|
+
(has_type (valid_atomic_transaction ty)
|
2090
|
+
(atomic_rmw flags (AtomicRmwOp.Add) addr src))))
|
2091
|
+
(lse_atomic_rmw (AtomicRMWOp.Add) addr src ty flags))
|
2092
|
+
(rule 1 (lower (and (use_lse)
|
2093
|
+
(has_type (valid_atomic_transaction ty)
|
2094
|
+
(atomic_rmw flags (AtomicRmwOp.Xor) addr src))))
|
2095
|
+
(lse_atomic_rmw (AtomicRMWOp.Eor) addr src ty flags))
|
2096
|
+
(rule 1 (lower (and (use_lse)
|
2097
|
+
(has_type (valid_atomic_transaction ty)
|
2098
|
+
(atomic_rmw flags (AtomicRmwOp.Or) addr src))))
|
2099
|
+
(lse_atomic_rmw (AtomicRMWOp.Set) addr src ty flags))
|
2100
|
+
(rule 1 (lower (and (use_lse)
|
2101
|
+
(has_type (valid_atomic_transaction ty)
|
2102
|
+
(atomic_rmw flags (AtomicRmwOp.Smax) addr src))))
|
2103
|
+
(lse_atomic_rmw (AtomicRMWOp.Smax) addr src ty flags))
|
2104
|
+
(rule 1 (lower (and (use_lse)
|
2105
|
+
(has_type (valid_atomic_transaction ty)
|
2106
|
+
(atomic_rmw flags (AtomicRmwOp.Smin) addr src))))
|
2107
|
+
(lse_atomic_rmw (AtomicRMWOp.Smin) addr src ty flags))
|
2108
|
+
(rule 1 (lower (and (use_lse)
|
2109
|
+
(has_type (valid_atomic_transaction ty)
|
2110
|
+
(atomic_rmw flags (AtomicRmwOp.Umax) addr src))))
|
2111
|
+
(lse_atomic_rmw (AtomicRMWOp.Umax) addr src ty flags))
|
2112
|
+
(rule 1 (lower (and (use_lse)
|
2113
|
+
(has_type (valid_atomic_transaction ty)
|
2114
|
+
(atomic_rmw flags (AtomicRmwOp.Umin) addr src))))
|
2115
|
+
(lse_atomic_rmw (AtomicRMWOp.Umin) addr src ty flags))
|
2116
|
+
(rule 1 (lower (and (use_lse)
|
2117
|
+
(has_type (valid_atomic_transaction ty)
|
2118
|
+
(atomic_rmw flags (AtomicRmwOp.Sub) addr src))))
|
2119
|
+
(lse_atomic_rmw (AtomicRMWOp.Add) addr (sub ty (zero_reg) src) ty flags))
|
2120
|
+
(rule 1 (lower (and (use_lse)
|
2121
|
+
(has_type (valid_atomic_transaction ty)
|
2122
|
+
(atomic_rmw flags (AtomicRmwOp.And) addr src))))
|
2123
|
+
(lse_atomic_rmw (AtomicRMWOp.Clr) addr (eon ty src (zero_reg)) ty flags))
|
2124
|
+
|
2125
|
+
|
2126
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2127
|
+
(atomic_rmw flags (AtomicRmwOp.Add) addr src)))
|
2128
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Add) addr src ty flags))
|
2129
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2130
|
+
(atomic_rmw flags (AtomicRmwOp.Sub) addr src)))
|
2131
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Sub) addr src ty flags))
|
2132
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2133
|
+
(atomic_rmw flags (AtomicRmwOp.And) addr src)))
|
2134
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.And) addr src ty flags))
|
2135
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2136
|
+
(atomic_rmw flags (AtomicRmwOp.Nand) addr src)))
|
2137
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Nand) addr src ty flags))
|
2138
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2139
|
+
(atomic_rmw flags (AtomicRmwOp.Or) addr src)))
|
2140
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Orr) addr src ty flags))
|
2141
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2142
|
+
(atomic_rmw flags (AtomicRmwOp.Xor) addr src)))
|
2143
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Eor) addr src ty flags))
|
2144
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2145
|
+
(atomic_rmw flags (AtomicRmwOp.Smin) addr src)))
|
2146
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Smin) addr src ty flags))
|
2147
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2148
|
+
(atomic_rmw flags (AtomicRmwOp.Smax) addr src)))
|
2149
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Smax) addr src ty flags))
|
2150
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2151
|
+
(atomic_rmw flags (AtomicRmwOp.Umin) addr src)))
|
2152
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Umin) addr src ty flags))
|
2153
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2154
|
+
(atomic_rmw flags (AtomicRmwOp.Umax) addr src)))
|
2155
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Umax) addr src ty flags))
|
2156
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2157
|
+
(atomic_rmw flags (AtomicRmwOp.Xchg) addr src)))
|
2158
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Xchg) addr src ty flags))
|
2159
|
+
|
2160
|
+
;;;; Rules for `AtomicCAS` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2161
|
+
(rule 1 (lower (and (use_lse)
|
2162
|
+
(has_type (valid_atomic_transaction ty)
|
2163
|
+
(atomic_cas flags addr src1 src2))))
|
2164
|
+
(lse_atomic_cas addr src1 src2 ty flags))
|
2165
|
+
|
2166
|
+
(rule (lower (and (has_type (valid_atomic_transaction ty)
|
2167
|
+
(atomic_cas flags addr src1 src2))))
|
2168
|
+
(atomic_cas_loop addr src1 src2 ty flags))
|
2169
|
+
|
2170
|
+
;;;; Rules for 'fvdemote' ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2171
|
+
(rule (lower (fvdemote x))
|
2172
|
+
(fcvtn x (ScalarSize.Size32)))
|
2173
|
+
|
2174
|
+
|
2175
|
+
;;;; Rules for `snarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2176
|
+
(rule 1 (lower (has_type (ty_vec128_int ty) (snarrow x y)))
|
2177
|
+
(if (zero_value y))
|
2178
|
+
(sqxtn x (lane_size ty)))
|
2179
|
+
|
2180
|
+
(rule 2 (lower (has_type (ty_vec64_int ty) (snarrow x y)))
|
2181
|
+
(let ((dst Reg (mov_vec_elem x y 1 0 (VectorSize.Size64x2))))
|
2182
|
+
(sqxtn dst (lane_size ty))))
|
2183
|
+
|
2184
|
+
(rule 0 (lower (has_type (ty_vec128_int ty) (snarrow x y)))
|
2185
|
+
(let ((low_half Reg (sqxtn x (lane_size ty)))
|
2186
|
+
(result Reg (sqxtn2 low_half y (lane_size ty))))
|
2187
|
+
result))
|
2188
|
+
|
2189
|
+
|
2190
|
+
;;;; Rules for `unarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2191
|
+
(rule 1 (lower (has_type (ty_vec128_int ty) (unarrow x y)))
|
2192
|
+
(if (zero_value y))
|
2193
|
+
(sqxtun x (lane_size ty)))
|
2194
|
+
|
2195
|
+
(rule 2 (lower (has_type (ty_vec64_int ty) (unarrow x y)))
|
2196
|
+
(let ((dst Reg (mov_vec_elem x y 1 0 (VectorSize.Size64x2))))
|
2197
|
+
(sqxtun dst (lane_size ty))))
|
2198
|
+
|
2199
|
+
(rule 0 (lower (has_type (ty_vec128_int ty) (unarrow x y)))
|
2200
|
+
(let ((low_half Reg (sqxtun x (lane_size ty)))
|
2201
|
+
(result Reg (sqxtun2 low_half y (lane_size ty))))
|
2202
|
+
result))
|
2203
|
+
|
2204
|
+
|
2205
|
+
;;;; Rules for `uunarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2206
|
+
|
2207
|
+
(rule 1 (lower (has_type (ty_vec128_int ty) (uunarrow x y)))
|
2208
|
+
(if (zero_value y))
|
2209
|
+
(uqxtn x (lane_size ty)))
|
2210
|
+
|
2211
|
+
(rule 2 (lower (has_type (ty_vec64_int ty) (uunarrow x y)))
|
2212
|
+
(let ((dst Reg (mov_vec_elem x y 1 0 (VectorSize.Size64x2))))
|
2213
|
+
(uqxtn dst (lane_size ty))))
|
2214
|
+
|
2215
|
+
(rule 0 (lower (has_type (ty_vec128_int ty) (uunarrow x y)))
|
2216
|
+
(let ((low_half Reg (uqxtn x (lane_size ty)))
|
2217
|
+
(result Reg (uqxtn2 low_half y (lane_size ty))))
|
2218
|
+
result))
|
2219
|
+
|
2220
|
+
;;;; Rules for `swiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2221
|
+
|
2222
|
+
(rule (lower (has_type ty (swiden_low x)))
|
2223
|
+
(vec_extend (VecExtendOp.Sxtl) x $false (lane_size ty)))
|
2224
|
+
|
2225
|
+
;;;; Rules for `swiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2226
|
+
|
2227
|
+
(rule 1 (lower (has_type (ty_vec128 ty) (swiden_high x)))
|
2228
|
+
(vec_extend (VecExtendOp.Sxtl) x $true (lane_size ty)))
|
2229
|
+
|
2230
|
+
(rule (lower (has_type ty (swiden_high x)))
|
2231
|
+
(if (ty_vec64 ty))
|
2232
|
+
(let ((tmp Reg (fpu_move_from_vec x 1 (VectorSize.Size32x2))))
|
2233
|
+
(vec_extend (VecExtendOp.Sxtl) tmp $false (lane_size ty))))
|
2234
|
+
|
2235
|
+
;;;; Rules for `uwiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2236
|
+
|
2237
|
+
(rule (lower (has_type ty (uwiden_low x)))
|
2238
|
+
(vec_extend (VecExtendOp.Uxtl) x $false (lane_size ty)))
|
2239
|
+
|
2240
|
+
;;;; Rules for `uwiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2241
|
+
|
2242
|
+
(rule 1 (lower (has_type (ty_vec128 ty) (uwiden_high x)))
|
2243
|
+
(vec_extend (VecExtendOp.Uxtl) x $true (lane_size ty)))
|
2244
|
+
|
2245
|
+
(rule (lower (has_type ty (uwiden_high x)))
|
2246
|
+
(if (ty_vec64 ty))
|
2247
|
+
(let ((tmp Reg (fpu_move_from_vec x 1 (VectorSize.Size32x2))))
|
2248
|
+
(vec_extend (VecExtendOp.Uxtl) tmp $false (lane_size ty))))
|
2249
|
+
|
2250
|
+
;;;; Rules for `Fence` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2251
|
+
|
2252
|
+
(rule (lower (fence))
|
2253
|
+
(side_effect (aarch64_fence)))
|
2254
|
+
|
2255
|
+
;;;; Rules for `IsNull` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2256
|
+
|
2257
|
+
(rule (lower (is_null x @ (value_type ty)))
|
2258
|
+
(with_flags (cmp_imm (operand_size ty) x (u8_into_imm12 0))
|
2259
|
+
(materialize_bool_result (Cond.Eq))))
|
2260
|
+
|
2261
|
+
;;;; Rules for `IsInvalid` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2262
|
+
|
2263
|
+
(rule (lower (is_invalid x @ (value_type ty)))
|
2264
|
+
(with_flags (cmn_imm (operand_size ty) x (u8_into_imm12 1))
|
2265
|
+
(materialize_bool_result (Cond.Eq))))
|
2266
|
+
|
2267
|
+
;;;; Rules for `Debugtrap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2268
|
+
|
2269
|
+
(rule (lower (debugtrap))
|
2270
|
+
(side_effect (brk)))
|
2271
|
+
|
2272
|
+
;;;; Rules for `func_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2273
|
+
|
2274
|
+
(rule (lower (func_addr (func_ref_data _ extname _)))
|
2275
|
+
(load_ext_name (box_external_name extname) 0))
|
2276
|
+
|
2277
|
+
;;;; Rules for `symbol_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2278
|
+
|
2279
|
+
(rule (lower (symbol_value (symbol_value_data extname _ offset)))
|
2280
|
+
(load_ext_name (box_external_name extname) offset))
|
2281
|
+
|
2282
|
+
;;; Rules for `get_{frame,stack}_pointer` and `get_return_address` ;;;;;;;;;;;;;
|
2283
|
+
|
2284
|
+
(rule (lower (get_frame_pointer))
|
2285
|
+
(aarch64_fp))
|
2286
|
+
|
2287
|
+
(rule (lower (get_stack_pointer))
|
2288
|
+
(aarch64_sp))
|
2289
|
+
|
2290
|
+
(rule (lower (get_return_address))
|
2291
|
+
(aarch64_link))
|
2292
|
+
|
2293
|
+
;;;; Rules for calls ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2294
|
+
|
2295
|
+
(rule (lower (call (func_ref_data sig_ref extname dist) inputs))
|
2296
|
+
(gen_call sig_ref extname dist inputs))
|
2297
|
+
|
2298
|
+
(rule (lower (call_indirect sig_ref val inputs))
|
2299
|
+
(gen_call_indirect sig_ref val inputs))
|
2300
|
+
|
2301
|
+
;;;; Rules for `return` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2302
|
+
|
2303
|
+
;; N.B.: the Ret itself is generated by the ABI.
|
2304
|
+
(rule (lower (return args))
|
2305
|
+
(lower_return args))
|
2306
|
+
|
2307
|
+
;;;; Rules for `return_call` and `return_call_indirect` ;;;;;;;;;;;;;;;;;;;;;;;;
|
2308
|
+
|
2309
|
+
(rule (lower (return_call (func_ref_data sig_ref extname dist) args))
|
2310
|
+
(gen_return_call sig_ref extname dist args))
|
2311
|
+
|
2312
|
+
(rule (lower (return_call_indirect sig_ref callee args))
|
2313
|
+
(gen_return_call_indirect sig_ref callee args))
|
2314
|
+
|
2315
|
+
;;;; Rules for loads ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2316
|
+
|
2317
|
+
(rule (lower
|
2318
|
+
(has_type $I8 (load flags address offset)))
|
2319
|
+
(aarch64_uload8 (amode $I8 address offset) flags))
|
2320
|
+
(rule (lower
|
2321
|
+
(has_type $I16 (load flags address offset)))
|
2322
|
+
(aarch64_uload16 (amode $I16 address offset) flags))
|
2323
|
+
(rule (lower
|
2324
|
+
(has_type $I32 (load flags address offset)))
|
2325
|
+
(aarch64_uload32 (amode $I32 address offset) flags))
|
2326
|
+
(rule (lower
|
2327
|
+
(has_type $I64 (load flags address offset)))
|
2328
|
+
(aarch64_uload64 (amode $I64 address offset) flags))
|
2329
|
+
(rule (lower
|
2330
|
+
(has_type $R64 (load flags address offset)))
|
2331
|
+
(aarch64_uload64 (amode $I64 address offset) flags))
|
2332
|
+
(rule (lower
|
2333
|
+
(has_type $F32 (load flags address offset)))
|
2334
|
+
(aarch64_fpuload32 (amode $F32 address offset) flags))
|
2335
|
+
(rule (lower
|
2336
|
+
(has_type $F64 (load flags address offset)))
|
2337
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags))
|
2338
|
+
(rule (lower
|
2339
|
+
(has_type $I128 (load flags address offset)))
|
2340
|
+
(aarch64_loadp64 (pair_amode address offset) flags))
|
2341
|
+
(rule -1 (lower
|
2342
|
+
(has_type (ty_vec64 _)
|
2343
|
+
(load flags address offset)))
|
2344
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags))
|
2345
|
+
(rule -3 (lower
|
2346
|
+
(has_type (ty_vec128 _)
|
2347
|
+
(load flags address offset)))
|
2348
|
+
(aarch64_fpuload128 (amode $I8X16 address offset) flags))
|
2349
|
+
(rule -2 (lower
|
2350
|
+
(has_type (ty_dyn_vec64 _)
|
2351
|
+
(load flags address offset)))
|
2352
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags))
|
2353
|
+
(rule -4 (lower
|
2354
|
+
(has_type (ty_dyn_vec128 _)
|
2355
|
+
(load flags address offset)))
|
2356
|
+
(aarch64_fpuload128 (amode $I8X16 address offset) flags))
|
2357
|
+
|
2358
|
+
(rule (lower
|
2359
|
+
(uload8 flags address offset))
|
2360
|
+
(aarch64_uload8 (amode $I8 address offset) flags))
|
2361
|
+
(rule (lower
|
2362
|
+
(sload8 flags address offset))
|
2363
|
+
(aarch64_sload8 (amode $I8 address offset) flags))
|
2364
|
+
(rule (lower
|
2365
|
+
(uload16 flags address offset))
|
2366
|
+
(aarch64_uload16 (amode $I16 address offset) flags))
|
2367
|
+
(rule (lower
|
2368
|
+
(sload16 flags address offset))
|
2369
|
+
(aarch64_sload16 (amode $I16 address offset) flags))
|
2370
|
+
(rule (lower
|
2371
|
+
(uload32 flags address offset))
|
2372
|
+
(aarch64_uload32 (amode $I32 address offset) flags))
|
2373
|
+
(rule (lower
|
2374
|
+
(sload32 flags address offset))
|
2375
|
+
(aarch64_sload32 (amode $I32 address offset) flags))
|
2376
|
+
|
2377
|
+
(rule (lower
|
2378
|
+
(sload8x8 flags address offset))
|
2379
|
+
(vec_extend (VecExtendOp.Sxtl)
|
2380
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags)
|
2381
|
+
$false
|
2382
|
+
(ScalarSize.Size16)))
|
2383
|
+
(rule (lower
|
2384
|
+
(uload8x8 flags address offset))
|
2385
|
+
(vec_extend (VecExtendOp.Uxtl)
|
2386
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags)
|
2387
|
+
$false
|
2388
|
+
(ScalarSize.Size16)))
|
2389
|
+
(rule (lower
|
2390
|
+
(sload16x4 flags address offset))
|
2391
|
+
(vec_extend (VecExtendOp.Sxtl)
|
2392
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags)
|
2393
|
+
$false
|
2394
|
+
(ScalarSize.Size32)))
|
2395
|
+
(rule (lower
|
2396
|
+
(uload16x4 flags address offset))
|
2397
|
+
(vec_extend (VecExtendOp.Uxtl)
|
2398
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags)
|
2399
|
+
$false
|
2400
|
+
(ScalarSize.Size32)))
|
2401
|
+
(rule (lower
|
2402
|
+
(sload32x2 flags address offset))
|
2403
|
+
(vec_extend (VecExtendOp.Sxtl)
|
2404
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags)
|
2405
|
+
$false
|
2406
|
+
(ScalarSize.Size64)))
|
2407
|
+
(rule (lower
|
2408
|
+
(uload32x2 flags address offset))
|
2409
|
+
(vec_extend (VecExtendOp.Uxtl)
|
2410
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags)
|
2411
|
+
$false
|
2412
|
+
(ScalarSize.Size64)))
|
2413
|
+
|
2414
|
+
;;;; Rules for stores ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2415
|
+
|
2416
|
+
(rule (lower
|
2417
|
+
(store flags value @ (value_type $I8) address offset))
|
2418
|
+
(side_effect
|
2419
|
+
(aarch64_store8 (amode $I8 address offset) flags value)))
|
2420
|
+
(rule (lower
|
2421
|
+
(store flags value @ (value_type $I16) address offset))
|
2422
|
+
(side_effect
|
2423
|
+
(aarch64_store16 (amode $I16 address offset) flags value)))
|
2424
|
+
(rule (lower
|
2425
|
+
(store flags value @ (value_type $I32) address offset))
|
2426
|
+
(side_effect
|
2427
|
+
(aarch64_store32 (amode $I32 address offset) flags value)))
|
2428
|
+
(rule (lower
|
2429
|
+
(store flags value @ (value_type $I64) address offset))
|
2430
|
+
(side_effect
|
2431
|
+
(aarch64_store64 (amode $I64 address offset) flags value)))
|
2432
|
+
(rule (lower
|
2433
|
+
(store flags value @ (value_type $R64) address offset))
|
2434
|
+
(side_effect
|
2435
|
+
(aarch64_store64 (amode $I64 address offset) flags value)))
|
2436
|
+
|
2437
|
+
(rule (lower
|
2438
|
+
(istore8 flags value address offset))
|
2439
|
+
(side_effect
|
2440
|
+
(aarch64_store8 (amode $I8 address offset) flags value)))
|
2441
|
+
(rule (lower
|
2442
|
+
(istore16 flags value address offset))
|
2443
|
+
(side_effect
|
2444
|
+
(aarch64_store16 (amode $I16 address offset) flags value)))
|
2445
|
+
(rule (lower
|
2446
|
+
(istore32 flags value address offset))
|
2447
|
+
(side_effect
|
2448
|
+
(aarch64_store32 (amode $I32 address offset) flags value)))
|
2449
|
+
|
2450
|
+
(rule (lower
|
2451
|
+
(store flags value @ (value_type $F32) address offset))
|
2452
|
+
(side_effect
|
2453
|
+
(aarch64_fpustore32 (amode $F32 address offset) flags value)))
|
2454
|
+
(rule (lower
|
2455
|
+
(store flags value @ (value_type $F64) address offset))
|
2456
|
+
(side_effect
|
2457
|
+
(aarch64_fpustore64 (amode $F64 address offset) flags value)))
|
2458
|
+
|
2459
|
+
(rule (lower
|
2460
|
+
(store flags value @ (value_type $I128) address offset))
|
2461
|
+
(side_effect
|
2462
|
+
(aarch64_storep64 (pair_amode address offset) flags
|
2463
|
+
(value_regs_get value 0)
|
2464
|
+
(value_regs_get value 1))))
|
2465
|
+
|
2466
|
+
(rule -1 (lower
|
2467
|
+
(store flags value @ (value_type (ty_vec64 _)) address offset))
|
2468
|
+
(side_effect
|
2469
|
+
(aarch64_fpustore64 (amode $F64 address offset) flags value)))
|
2470
|
+
(rule -3 (lower
|
2471
|
+
(store flags value @ (value_type (ty_vec128 _)) address offset))
|
2472
|
+
(side_effect
|
2473
|
+
(aarch64_fpustore128 (amode $I8X16 address offset) flags value)))
|
2474
|
+
(rule -2 (lower
|
2475
|
+
(store flags value @ (value_type (ty_dyn_vec64 _)) address offset))
|
2476
|
+
(side_effect
|
2477
|
+
(aarch64_fpustore64 (amode $F64 address offset) flags value)))
|
2478
|
+
(rule -4 (lower
|
2479
|
+
(store flags value @ (value_type (ty_dyn_vec128 _)) address offset))
|
2480
|
+
(side_effect
|
2481
|
+
(aarch64_fpustore128 (amode $I8X16 address offset) flags value)))
|
2482
|
+
|
2483
|
+
;;; Rules for `{get,set}_pinned_reg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2484
|
+
|
2485
|
+
(rule (lower (get_pinned_reg))
|
2486
|
+
(mov_from_preg (preg_pinned)))
|
2487
|
+
|
2488
|
+
(rule (lower (set_pinned_reg val))
|
2489
|
+
(side_effect (write_pinned_reg val)))
|
2490
|
+
|
2491
|
+
;;; Rules for `bitcast` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2492
|
+
|
2493
|
+
; SIMD&FP <=> SIMD&FP
|
2494
|
+
(rule 5 (lower (has_type (ty_float_or_vec _) (bitcast _ x @ (value_type (ty_float_or_vec _)))))
|
2495
|
+
x)
|
2496
|
+
|
2497
|
+
; GPR => SIMD&FP
|
2498
|
+
(rule 4 (lower (has_type (ty_float_or_vec _) (bitcast _ x @ (value_type in_ty))))
|
2499
|
+
(if (ty_int_ref_scalar_64 in_ty))
|
2500
|
+
(mov_to_fpu x (scalar_size in_ty)))
|
2501
|
+
|
2502
|
+
; SIMD&FP => GPR
|
2503
|
+
(rule 3 (lower (has_type out_ty (bitcast _ x @ (value_type (fits_in_64 (ty_float_or_vec _))))))
|
2504
|
+
(if (ty_int_ref_scalar_64 out_ty))
|
2505
|
+
(mov_from_vec x 0 (scalar_size out_ty)))
|
2506
|
+
|
2507
|
+
;; Bitcasts between `r{32,64}` and `i{32,64}` need to be a copy to avoid
|
2508
|
+
;; conflicting regalloc constraints on reference type values that both need to
|
2509
|
+
;; be in some register but also some safepoint stack slot at the same time.
|
2510
|
+
(rule 2 (lower (has_type dst_ty (bitcast _ x @ (value_type src_ty))))
|
2511
|
+
(if (ty_int_ref_scalar_64 src_ty))
|
2512
|
+
(if (ty_int_ref_scalar_64 dst_ty))
|
2513
|
+
(if-let $true (is_ref_type src_ty))
|
2514
|
+
(if-let $false (is_ref_type dst_ty))
|
2515
|
+
(copy_reg dst_ty x))
|
2516
|
+
(rule 2 (lower (has_type dst_ty (bitcast _ x @ (value_type src_ty))))
|
2517
|
+
(if (ty_int_ref_scalar_64 src_ty))
|
2518
|
+
(if (ty_int_ref_scalar_64 dst_ty))
|
2519
|
+
(if-let $false (is_ref_type src_ty))
|
2520
|
+
(if-let $true (is_ref_type dst_ty))
|
2521
|
+
(copy_reg src_ty x))
|
2522
|
+
|
2523
|
+
; GPR <=> GPR
|
2524
|
+
(rule 1 (lower (has_type out_ty (bitcast _ x @ (value_type in_ty))))
|
2525
|
+
(if (ty_int_ref_scalar_64 out_ty))
|
2526
|
+
(if (ty_int_ref_scalar_64 in_ty))
|
2527
|
+
x)
|
2528
|
+
(rule 0 (lower (has_type $I128 (bitcast _ x @ (value_type $I128)))) x)
|
2529
|
+
|
2530
|
+
;;; Rules for `extractlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2531
|
+
|
2532
|
+
;; extractlane with lane 0 can pass through the value unchanged; upper
|
2533
|
+
;; bits are undefined when a narrower type is in a wider register.
|
2534
|
+
(rule 2 (lower (has_type (ty_scalar_float _) (extractlane val (u8_from_uimm8 0))))
|
2535
|
+
val)
|
2536
|
+
|
2537
|
+
(rule 0 (lower (has_type (ty_int ty)
|
2538
|
+
(extractlane val
|
2539
|
+
(u8_from_uimm8 lane))))
|
2540
|
+
(mov_from_vec val lane (scalar_size ty)))
|
2541
|
+
|
2542
|
+
(rule 1 (lower (has_type (ty_scalar_float ty)
|
2543
|
+
(extractlane val @ (value_type vty)
|
2544
|
+
(u8_from_uimm8 lane))))
|
2545
|
+
(fpu_move_from_vec val lane (vector_size vty)))
|
2546
|
+
|
2547
|
+
;;; Rules for `insertlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2548
|
+
|
2549
|
+
(rule 1 (lower (insertlane vec @ (value_type vty)
|
2550
|
+
val @ (value_type (ty_int _))
|
2551
|
+
(u8_from_uimm8 lane)))
|
2552
|
+
(mov_to_vec vec val lane (vector_size vty)))
|
2553
|
+
|
2554
|
+
(rule (lower (insertlane vec @ (value_type vty)
|
2555
|
+
val @ (value_type (ty_scalar_float _))
|
2556
|
+
(u8_from_uimm8 lane)))
|
2557
|
+
(mov_vec_elem vec val lane 0 (vector_size vty)))
|
2558
|
+
|
2559
|
+
;;; Rules for `stack_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2560
|
+
|
2561
|
+
(rule (lower (stack_addr stack_slot offset))
|
2562
|
+
(compute_stack_addr stack_slot offset))
|
2563
|
+
|
2564
|
+
;;; Rules for `vhigh_bits` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2565
|
+
|
2566
|
+
;; All three sequences use one integer temporary and two vector
|
2567
|
+
;; temporaries. The shift is done early so as to give the register
|
2568
|
+
;; allocator the possibility of using the same reg for `tmp_v1` and
|
2569
|
+
;; `src_v` in the case that this is the last use of `src_v`. See
|
2570
|
+
;; https://github.com/WebAssembly/simd/pull/201 for the background and
|
2571
|
+
;; derivation of these sequences. Alternative sequences are discussed
|
2572
|
+
;; in https://github.com/bytecodealliance/wasmtime/issues/2296,
|
2573
|
+
;; although they are not used here.
|
2574
|
+
|
2575
|
+
(rule (lower (vhigh_bits vec @ (value_type $I8X16)))
|
2576
|
+
(let (
|
2577
|
+
;; Replicate the MSB of each of the 16 byte lanes across
|
2578
|
+
;; the whole lane (sshr is an arithmetic right shift).
|
2579
|
+
(shifted Reg (sshr_vec_imm vec 7 (VectorSize.Size8x16)))
|
2580
|
+
;; Bitwise-and with a mask
|
2581
|
+
;; `0x80402010_08040201_80402010_08040201` to get the bit
|
2582
|
+
;; in the proper location for each group of 8 lanes.
|
2583
|
+
(anded Reg (and_vec shifted (constant_f128 0x80402010_08040201_80402010_08040201) (VectorSize.Size8x16)))
|
2584
|
+
;; Produce a version of `anded` with upper 8 lanes and
|
2585
|
+
;; lower 8 lanes swapped.
|
2586
|
+
(anded_swapped Reg (vec_extract anded anded 8))
|
2587
|
+
;; Zip together the two; with the above this produces the lane permutation:
|
2588
|
+
;; 15 7 14 6 13 5 12 4 11 3 10 2 9 1 8 0
|
2589
|
+
(zipped Reg (zip1 anded anded_swapped (VectorSize.Size8x16)))
|
2590
|
+
;; Add 16-bit lanes together ("add across vector"), so we
|
2591
|
+
;; get, in the low 16 bits, 15+14+...+8 in the high byte
|
2592
|
+
;; and 7+6+...+0 in the low byte. This effectively puts
|
2593
|
+
;; the 16 MSBs together, giving our results.
|
2594
|
+
;;
|
2595
|
+
;; N.B.: `Size16x8` is not a typo!
|
2596
|
+
(result Reg (addv zipped (VectorSize.Size16x8))))
|
2597
|
+
(mov_from_vec result 0 (ScalarSize.Size16))))
|
2598
|
+
|
2599
|
+
(rule (lower (vhigh_bits vec @ (value_type $I16X8)))
|
2600
|
+
(let (
|
2601
|
+
;; Replicate the MSB of each of the 8 16-bit lanes across
|
2602
|
+
;; the whole lane (sshr is an arithmetic right shift).
|
2603
|
+
(shifted Reg (sshr_vec_imm vec 15 (VectorSize.Size16x8)))
|
2604
|
+
;; Bitwise-and with a mask
|
2605
|
+
;; `0x0080_0040_0020_0010_0008_0004_0002_0001` to get the
|
2606
|
+
;; bit in the proper location for each group of 4 lanes.
|
2607
|
+
(anded Reg (and_vec shifted (constant_f128 0x0080_0040_0020_0010_0008_0004_0002_0001) (VectorSize.Size16x8)))
|
2608
|
+
;; Add lanes together to get the 8 MSBs in the low byte.
|
2609
|
+
(result Reg (addv anded (VectorSize.Size16x8))))
|
2610
|
+
(mov_from_vec result 0 (ScalarSize.Size16))))
|
2611
|
+
|
2612
|
+
(rule (lower (vhigh_bits vec @ (value_type $I32X4)))
|
2613
|
+
(let (
|
2614
|
+
;; Replicate the MSB of each of the 4 32-bit lanes across
|
2615
|
+
;; the whole lane (sshr is an arithmetic right shift).
|
2616
|
+
(shifted Reg (sshr_vec_imm vec 31 (VectorSize.Size32x4)))
|
2617
|
+
;; Bitwise-and with a mask
|
2618
|
+
;; `0x00000008_00000004_00000002_00000001` to get the bit
|
2619
|
+
;; in the proper location for each group of 4 lanes.
|
2620
|
+
(anded Reg (and_vec shifted (constant_f128 0x00000008_00000004_00000002_00000001) (VectorSize.Size32x4)))
|
2621
|
+
;; Add lanes together to get the 4 MSBs in the low byte.
|
2622
|
+
(result Reg (addv anded (VectorSize.Size32x4))))
|
2623
|
+
(mov_from_vec result 0 (ScalarSize.Size32))))
|
2624
|
+
|
2625
|
+
(rule (lower (vhigh_bits vec @ (value_type $I64X2)))
|
2626
|
+
(let (
|
2627
|
+
;; Grab the MSB out of each of the lanes, right-shift to
|
2628
|
+
;; LSB, and add with a left-shift of upper lane's MSB back
|
2629
|
+
;; to bit 1. the whole lane (sshr is an arithmetic right
|
2630
|
+
;; shift).
|
2631
|
+
(upper_msb Reg (mov_from_vec vec 1 (ScalarSize.Size64)))
|
2632
|
+
(lower_msb Reg (mov_from_vec vec 0 (ScalarSize.Size64)))
|
2633
|
+
(upper_msb Reg (lsr_imm $I64 upper_msb (imm_shift_from_u8 63)))
|
2634
|
+
(lower_msb Reg (lsr_imm $I64 lower_msb (imm_shift_from_u8 63))))
|
2635
|
+
(add_shift $I64 lower_msb upper_msb (lshl_from_u64 $I64 1))))
|
2636
|
+
|
2637
|
+
;;; Rules for `uadd_overflow_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2638
|
+
|
2639
|
+
(rule (lower (has_type (fits_in_64 ty) (uadd_overflow_trap a b tc)))
|
2640
|
+
(trap_if_overflow (add_with_flags_paired ty a b) tc))
|
2641
|
+
|
2642
|
+
;;;; Helpers for `*_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2643
|
+
|
2644
|
+
;; put a narrow value into a register and sign-/zero-extend depending on the ArgumentExtension
|
2645
|
+
(decl put_in_reg_ext32 (Value ArgumentExtension) Reg)
|
2646
|
+
(rule (put_in_reg_ext32 val (ArgumentExtension.Sext))
|
2647
|
+
(put_in_reg_sext32 val))
|
2648
|
+
(rule (put_in_reg_ext32 val (ArgumentExtension.Uext))
|
2649
|
+
(put_in_reg_zext32 val))
|
2650
|
+
|
2651
|
+
;; For narrow values emit a normal op with both arguments zero/sign extended.
|
2652
|
+
;; Then check if the output is the same as itself zero/sign extended from the narrower width.
|
2653
|
+
(decl overflow_op_small (Type Value Value ArgumentExtension ALUOp) InstOutput)
|
2654
|
+
(rule (overflow_op_small ty a b arg_ext alu_op)
|
2655
|
+
(let ((extend ExtendOp (lower_extend_op ty arg_ext))
|
2656
|
+
|
2657
|
+
;; Instead of emitting two `{u,s}xt{b,h}` we do one as an instruction and
|
2658
|
+
;; the other as an extend operation in the alu_op.
|
2659
|
+
;;
|
2660
|
+
;; uxtb a_ext, a
|
2661
|
+
;; alu_op out, a_ext, b, {u,s}xtb
|
2662
|
+
;; cmp out, out, {u,s}xtb
|
2663
|
+
;; cset out_of, ne
|
2664
|
+
(a_ext Reg (put_in_reg_ext32 a arg_ext))
|
2665
|
+
(out Reg (alu_rrr_extend alu_op ty a_ext b extend))
|
2666
|
+
(out_of Reg (with_flags_reg
|
2667
|
+
(cmp_extend (OperandSize.Size32) out out extend)
|
2668
|
+
(cset (Cond.Ne)))))
|
2669
|
+
(output_pair
|
2670
|
+
(value_reg out)
|
2671
|
+
(value_reg out_of))))
|
2672
|
+
|
2673
|
+
;; For register sized op's just emit a op+cset, without further masking.
|
2674
|
+
;;
|
2675
|
+
;; op out, a, b
|
2676
|
+
;; cset out_of, cond
|
2677
|
+
;;
|
2678
|
+
;; conds expected:
|
2679
|
+
;; Hs: Carry set, unsigned overflow; Vs: Signed Over-/Underflow;
|
2680
|
+
;; Lo: Carry clear, meaning no unsigned overflow.
|
2681
|
+
;; (this is because subtraction is implemented as an add with the two's complement value on aarch64, meaning there is a sub-overflow if the add does not overflow)
|
2682
|
+
(decl overflow_op_normal (Type Value Value ALUOp Cond) InstOutput)
|
2683
|
+
(rule (overflow_op_normal ty a b alu_op cond)
|
2684
|
+
(let ((out ValueRegs
|
2685
|
+
(with_flags
|
2686
|
+
(alu_rrr_with_flags_paired ty a b alu_op)
|
2687
|
+
(cset_paired cond))))
|
2688
|
+
(output_pair
|
2689
|
+
(value_regs_get out 0)
|
2690
|
+
(value_regs_get out 1))))
|
2691
|
+
|
2692
|
+
;; For 128bit integers emit, for example, add+adcs+cset
|
2693
|
+
(decl overflow_op_128 (Value Value ALUOp ALUOp Cond) InstOutput)
|
2694
|
+
(rule (overflow_op_128 x y alu_op1 alu_op2 cond)
|
2695
|
+
(let
|
2696
|
+
;; Get the high/low registers for `x`.
|
2697
|
+
((x_regs ValueRegs x)
|
2698
|
+
(x_lo Reg (value_regs_get x_regs 0))
|
2699
|
+
(x_hi Reg (value_regs_get x_regs 1))
|
2700
|
+
|
2701
|
+
;; Get the high/low registers for `y`.
|
2702
|
+
(y_regs ValueRegs y)
|
2703
|
+
(y_lo Reg (value_regs_get y_regs 0))
|
2704
|
+
(y_hi Reg (value_regs_get y_regs 1)))
|
2705
|
+
;; cannot use the with_flags helper here but it should be fine right now
|
2706
|
+
(let
|
2707
|
+
((lo_inst ProducesFlags (alu_rrr_with_flags_paired $I64 x_lo y_lo alu_op1))
|
2708
|
+
(hi_inst ConsumesAndProducesFlags (alu_rrr_with_flags_chained $I64 x_hi y_hi alu_op2))
|
2709
|
+
(of_inst ConsumesFlags (cset_paired cond))
|
2710
|
+
|
2711
|
+
(result MultiReg (with_flags_chained lo_inst hi_inst of_inst)))
|
2712
|
+
(multi_reg_to_pair_and_single result)))
|
2713
|
+
)
|
2714
|
+
|
2715
|
+
;;;; Rules for `uadd_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2716
|
+
|
2717
|
+
;; For values smaller than a register, we do a normal `add` with both arguments
|
2718
|
+
;; zero extended. We then check if the output is the same as itself zero extended.
|
2719
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (uadd_overflow a b)))
|
2720
|
+
(overflow_op_small ty a b (ArgumentExtension.Uext) (ALUOp.Add)))
|
2721
|
+
|
2722
|
+
;; For register sized add's we just emit a adds+cset, without further masking.
|
2723
|
+
(rule 2 (lower (has_type (ty_32_or_64 ty) (uadd_overflow a b)))
|
2724
|
+
(overflow_op_normal ty a b (ALUOp.AddS) (Cond.Hs)))
|
2725
|
+
|
2726
|
+
;; For 128bit integers we emit add+adcs+cset
|
2727
|
+
(rule 0 (lower (has_type $I128 (uadd_overflow x y)))
|
2728
|
+
(overflow_op_128 x y (ALUOp.AddS) (ALUOp.AdcS) (Cond.Hs)))
|
2729
|
+
|
2730
|
+
;;;; Rules for `sadd_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2731
|
+
|
2732
|
+
;; sxt{b,h} a_ext, a
|
2733
|
+
;; add out, a_ext, b, sxt{b,h}
|
2734
|
+
;; cmp out, out, sxt{b,h}
|
2735
|
+
;; cset of, ne
|
2736
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (sadd_overflow a b)))
|
2737
|
+
(overflow_op_small ty a b (ArgumentExtension.Sext) (ALUOp.Add)))
|
2738
|
+
|
2739
|
+
;; adds a, b
|
2740
|
+
;; cset of, vs
|
2741
|
+
(rule 2 (lower (has_type (ty_32_or_64 ty) (sadd_overflow a b)))
|
2742
|
+
(overflow_op_normal ty a b (ALUOp.AddS) (Cond.Vs)))
|
2743
|
+
|
2744
|
+
;; adds x_lo, y_lo
|
2745
|
+
;; addcs x_hi, y_hi
|
2746
|
+
;; cset of, vs
|
2747
|
+
(rule 0 (lower (has_type $I128 (sadd_overflow x y)))
|
2748
|
+
(overflow_op_128 x y (ALUOp.AddS) (ALUOp.AdcS) (Cond.Vs)))
|
2749
|
+
|
2750
|
+
;;;; Rules for `usub_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2751
|
+
|
2752
|
+
;; uxt{b,h} a_ext, a
|
2753
|
+
;; sub out, a_ext, b, ext{b,h}
|
2754
|
+
;; cmp out, out, uxt{b,h}
|
2755
|
+
;; cset of, ne
|
2756
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (usub_overflow a b)))
|
2757
|
+
(overflow_op_small ty a b (ArgumentExtension.Uext) (ALUOp.Sub)))
|
2758
|
+
|
2759
|
+
;; subs a, b
|
2760
|
+
;; cset of, lo
|
2761
|
+
(rule 2 (lower (has_type (ty_32_or_64 ty) (usub_overflow a b)))
|
2762
|
+
(overflow_op_normal ty a b (ALUOp.SubS) (Cond.Lo)))
|
2763
|
+
|
2764
|
+
;; subs x_lo, y_lo
|
2765
|
+
;; sbcs x_hi, y_hi
|
2766
|
+
;; cset of, lo
|
2767
|
+
(rule 0 (lower (has_type $I128 (usub_overflow x y)))
|
2768
|
+
(overflow_op_128 x y (ALUOp.SubS) (ALUOp.SbcS) (Cond.Lo)))
|
2769
|
+
|
2770
|
+
;;;; Rules for `ssub_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2771
|
+
|
2772
|
+
;; sxt{b,h} a_ext, a
|
2773
|
+
;; sub out, a_ext, b, sxt{b,h}
|
2774
|
+
;; cmp out, out, sxt{b,h}
|
2775
|
+
;; cset of, ne
|
2776
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (ssub_overflow a b)))
|
2777
|
+
(overflow_op_small ty a b (ArgumentExtension.Sext) (ALUOp.Sub)))
|
2778
|
+
|
2779
|
+
;; subs a, b
|
2780
|
+
;; cset of, vs
|
2781
|
+
(rule 2 (lower (has_type (ty_32_or_64 ty) (ssub_overflow a b)))
|
2782
|
+
(overflow_op_normal ty a b (ALUOp.SubS) (Cond.Vs)))
|
2783
|
+
|
2784
|
+
;; subs x_lo, y_lo
|
2785
|
+
;; sbcs x_hi, y_hi
|
2786
|
+
;; cset of, vs
|
2787
|
+
(rule 0 (lower (has_type $I128 (ssub_overflow x y)))
|
2788
|
+
(overflow_op_128 x y (ALUOp.SubS) (ALUOp.SbcS) (Cond.Vs)))
|
2789
|
+
|
2790
|
+
;;;; Rules for `umul_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2791
|
+
|
2792
|
+
;; uxt{b,h} a_ext, a
|
2793
|
+
;; uxt{b,h} b_ext, b
|
2794
|
+
;; mul out, a_ext, b_ext
|
2795
|
+
;; cmp out, out, uxt{b,h}
|
2796
|
+
;; cset of, ne
|
2797
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (umul_overflow a b)))
|
2798
|
+
(let ((extend ExtendOp (lower_extend_op ty (ArgumentExtension.Uext)))
|
2799
|
+
|
2800
|
+
(a_uext Reg (put_in_reg_zext32 a))
|
2801
|
+
(b_uext Reg (put_in_reg_zext32 b))
|
2802
|
+
(out Reg (madd ty a_uext b_uext (zero_reg)))
|
2803
|
+
(out_of Reg (with_flags_reg
|
2804
|
+
(cmp_extend (OperandSize.Size32) out out extend)
|
2805
|
+
(cset (Cond.Ne)))))
|
2806
|
+
(output_pair
|
2807
|
+
(value_reg out)
|
2808
|
+
(value_reg out_of))))
|
2809
|
+
|
2810
|
+
;; umull out, a, b
|
2811
|
+
;; cmp out, out, uxtw
|
2812
|
+
;; cset of, ne
|
2813
|
+
(rule 2 (lower (has_type $I32 (umul_overflow a b)))
|
2814
|
+
(let (
|
2815
|
+
(out Reg (umaddl a b (zero_reg)))
|
2816
|
+
(out_of Reg (with_flags_reg
|
2817
|
+
(cmp_extend (OperandSize.Size64) out out (ExtendOp.UXTW))
|
2818
|
+
(cset (Cond.Ne)))))
|
2819
|
+
(output_pair
|
2820
|
+
(value_reg out)
|
2821
|
+
(value_reg out_of))))
|
2822
|
+
|
2823
|
+
;; mul out, a, b
|
2824
|
+
;; umulh tmp, a, b
|
2825
|
+
;; cmp tmp, #0
|
2826
|
+
;; cset of, ne
|
2827
|
+
(rule 2 (lower (has_type $I64 (umul_overflow a b)))
|
2828
|
+
(let (
|
2829
|
+
(out Reg (madd $I64 a b (zero_reg)))
|
2830
|
+
(tmp Reg (umulh $I64 a b))
|
2831
|
+
(out_of Reg (with_flags_reg
|
2832
|
+
(cmp64_imm tmp (u8_into_imm12 0))
|
2833
|
+
(cset (Cond.Ne)))))
|
2834
|
+
(output_pair
|
2835
|
+
(value_reg out)
|
2836
|
+
(value_reg out_of))))
|
2837
|
+
|
2838
|
+
;;;; Rules for `smul_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2839
|
+
|
2840
|
+
;; sxt{b,h} a_ext, a
|
2841
|
+
;; sxt{b,h} b_ext, b
|
2842
|
+
;; mul out, a_ext, b_ext
|
2843
|
+
;; cmp out, out, sxt{b,h}
|
2844
|
+
;; cset of, ne
|
2845
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (smul_overflow a b)))
|
2846
|
+
(let ((extend ExtendOp (lower_extend_op ty (ArgumentExtension.Sext)))
|
2847
|
+
|
2848
|
+
(a_sext Reg (put_in_reg_sext32 a))
|
2849
|
+
(b_sext Reg (put_in_reg_sext32 b))
|
2850
|
+
(out Reg (madd ty a_sext b_sext (zero_reg)))
|
2851
|
+
(out_of Reg (with_flags_reg
|
2852
|
+
(cmp_extend (OperandSize.Size32) out out extend)
|
2853
|
+
(cset (Cond.Ne)))))
|
2854
|
+
(output_pair
|
2855
|
+
(value_reg out)
|
2856
|
+
(value_reg out_of))))
|
2857
|
+
|
2858
|
+
;; smull out, a, b
|
2859
|
+
;; cmp out, out, sxtw
|
2860
|
+
;; cset of, ne
|
2861
|
+
(rule 2 (lower (has_type $I32 (smul_overflow a b)))
|
2862
|
+
(let (
|
2863
|
+
(out Reg (smaddl a b (zero_reg)))
|
2864
|
+
(out_of Reg (with_flags_reg
|
2865
|
+
(cmp_extend (OperandSize.Size64) out out (ExtendOp.SXTW))
|
2866
|
+
(cset (Cond.Ne)))))
|
2867
|
+
(output_pair
|
2868
|
+
(value_reg out)
|
2869
|
+
(value_reg out_of))))
|
2870
|
+
|
2871
|
+
;; mul out, a, b
|
2872
|
+
;; smulh tmp, a, b
|
2873
|
+
;; cmp tmp, out, ASR #63
|
2874
|
+
;; cset of, ne
|
2875
|
+
(rule 2 (lower (has_type $I64 (smul_overflow a b)))
|
2876
|
+
(let (
|
2877
|
+
(out Reg (madd $I64 a b (zero_reg)))
|
2878
|
+
(tmp Reg (smulh $I64 a b))
|
2879
|
+
(out_of Reg (with_flags_reg
|
2880
|
+
(cmp_rr_shift_asr (OperandSize.Size64) tmp out 63)
|
2881
|
+
(cset (Cond.Ne)))))
|
2882
|
+
(output_pair
|
2883
|
+
(value_reg out)
|
2884
|
+
(value_reg out_of))))
|
2885
|
+
|
2886
|
+
;;; Rules for `tls_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2887
|
+
|
2888
|
+
(rule (lower (has_type (tls_model (TlsModel.ElfGd)) (tls_value (symbol_value_data name _ _))))
|
2889
|
+
(elf_tls_get_addr name))
|
2890
|
+
|
2891
|
+
(rule (lower (has_type (tls_model (TlsModel.Macho)) (tls_value (symbol_value_data name _ _))))
|
2892
|
+
(macho_tls_get_addr name))
|
2893
|
+
|
2894
|
+
;;; Rules for `fvpromote_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2895
|
+
|
2896
|
+
(rule (lower (fvpromote_low val))
|
2897
|
+
(vec_rr_long (VecRRLongOp.Fcvtl32) val $false))
|
2898
|
+
|
2899
|
+
;;; Rules for `brif` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2900
|
+
|
2901
|
+
;; `brif` following `icmp`
|
2902
|
+
(rule (lower_branch (brif (maybe_uextend (icmp cc x @ (value_type ty) y)) _ _) (two_targets taken not_taken))
|
2903
|
+
(let ((comparison FlagsAndCC (lower_icmp_into_flags cc x y ty))
|
2904
|
+
(cond Cond (cond_code (flags_and_cc_cc comparison))))
|
2905
|
+
(emit_side_effect
|
2906
|
+
(with_flags_side_effect (flags_and_cc_flags comparison)
|
2907
|
+
(cond_br taken
|
2908
|
+
not_taken
|
2909
|
+
(cond_br_cond cond))))))
|
2910
|
+
|
2911
|
+
;; `brif` following `fcmp`
|
2912
|
+
(rule (lower_branch (brif (maybe_uextend (fcmp cc x @ (value_type (ty_scalar_float ty)) y)) _ _) (two_targets taken not_taken))
|
2913
|
+
(let ((cond Cond (fp_cond_code cc)))
|
2914
|
+
(emit_side_effect
|
2915
|
+
(with_flags_side_effect (fpu_cmp (scalar_size ty) x y)
|
2916
|
+
(cond_br taken not_taken
|
2917
|
+
(cond_br_cond cond))))))
|
2918
|
+
|
2919
|
+
;; standard `brif`
|
2920
|
+
(rule -1 (lower_branch (brif c @ (value_type $I128) _ _) (two_targets taken not_taken))
|
2921
|
+
(let ((flags ProducesFlags (flags_to_producesflags c))
|
2922
|
+
(c ValueRegs (put_in_regs c))
|
2923
|
+
(c_lo Reg (value_regs_get c 0))
|
2924
|
+
(c_hi Reg (value_regs_get c 1))
|
2925
|
+
(rt Reg (orr $I64 c_lo c_hi)))
|
2926
|
+
(emit_side_effect
|
2927
|
+
(with_flags_side_effect flags
|
2928
|
+
(cond_br taken not_taken (cond_br_not_zero rt))))))
|
2929
|
+
(rule -2 (lower_branch (brif c @ (value_type ty) _ _) (two_targets taken not_taken))
|
2930
|
+
(if (ty_int_ref_scalar_64 ty))
|
2931
|
+
(let ((flags ProducesFlags (flags_to_producesflags c))
|
2932
|
+
(rt Reg (put_in_reg_zext64 c)))
|
2933
|
+
(emit_side_effect
|
2934
|
+
(with_flags_side_effect flags
|
2935
|
+
(cond_br taken not_taken (cond_br_not_zero rt))))))
|
2936
|
+
|
2937
|
+
;; Special lowerings for `tbnz` - "Test bit and Branch if Nonzero"
|
2938
|
+
(rule 1 (lower_branch (brif (band x @ (value_type ty) (u64_from_iconst n)) _ _)
|
2939
|
+
(two_targets taken not_taken))
|
2940
|
+
(if-let bit (test_and_compare_bit_const ty n))
|
2941
|
+
(emit_side_effect (tbnz taken not_taken x bit)))
|
2942
|
+
|
2943
|
+
;; Special lowering for `tbz` - "Test bit and Branch if Zero"
|
2944
|
+
(rule 1 (lower_branch (brif (icmp (IntCC.Equal)
|
2945
|
+
(band x @ (value_type (fits_in_64 ty))
|
2946
|
+
(u64_from_iconst n))
|
2947
|
+
(u64_from_iconst 0)) _ _)
|
2948
|
+
(two_targets taken not_taken))
|
2949
|
+
(if-let bit (test_and_compare_bit_const ty n))
|
2950
|
+
(emit_side_effect (tbz taken not_taken x bit)))
|
2951
|
+
|
2952
|
+
(decl pure partial test_and_compare_bit_const (Type u64) u8)
|
2953
|
+
(extern constructor test_and_compare_bit_const test_and_compare_bit_const)
|
2954
|
+
|
2955
|
+
;;; Rules for `jump` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2956
|
+
|
2957
|
+
(rule (lower_branch (jump _) (single_target label))
|
2958
|
+
(emit_side_effect (aarch64_jump label)))
|
2959
|
+
|
2960
|
+
;;; Rules for `br_table` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2961
|
+
|
2962
|
+
;; `targets` contains the default target with the list of branch targets
|
2963
|
+
;; concatenated.
|
2964
|
+
(rule (lower_branch (br_table idx _) (jump_table_targets default targets))
|
2965
|
+
(let ((jt_size u32 (jump_table_size targets))
|
2966
|
+
(_ InstOutput (side_effect
|
2967
|
+
(emit_island (targets_jt_space targets))))
|
2968
|
+
(ridx Reg (put_in_reg_zext32 idx)))
|
2969
|
+
(br_table_impl (u32_as_u64 jt_size) ridx default targets)))
|