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
@@ -1,3595 +0,0 @@
|
|
1
|
-
use crate::{encode_section, Encode, HeapType, RefType, Section, SectionId, ValType};
|
2
|
-
use std::borrow::Cow;
|
3
|
-
|
4
|
-
/// An encoder for the code section.
|
5
|
-
///
|
6
|
-
/// Code sections are only supported for modules.
|
7
|
-
///
|
8
|
-
/// # Example
|
9
|
-
///
|
10
|
-
/// ```
|
11
|
-
/// use wasm_encoder::{
|
12
|
-
/// CodeSection, Function, FunctionSection, Instruction, Module,
|
13
|
-
/// TypeSection, ValType
|
14
|
-
/// };
|
15
|
-
///
|
16
|
-
/// let mut types = TypeSection::new();
|
17
|
-
/// types.function(vec![], vec![ValType::I32]);
|
18
|
-
///
|
19
|
-
/// let mut functions = FunctionSection::new();
|
20
|
-
/// let type_index = 0;
|
21
|
-
/// functions.function(type_index);
|
22
|
-
///
|
23
|
-
/// let locals = vec![];
|
24
|
-
/// let mut func = Function::new(locals);
|
25
|
-
/// func.instruction(&Instruction::I32Const(42));
|
26
|
-
/// let mut code = CodeSection::new();
|
27
|
-
/// code.function(&func);
|
28
|
-
///
|
29
|
-
/// let mut module = Module::new();
|
30
|
-
/// module
|
31
|
-
/// .section(&types)
|
32
|
-
/// .section(&functions)
|
33
|
-
/// .section(&code);
|
34
|
-
///
|
35
|
-
/// let wasm_bytes = module.finish();
|
36
|
-
/// ```
|
37
|
-
#[derive(Clone, Default, Debug)]
|
38
|
-
pub struct CodeSection {
|
39
|
-
bytes: Vec<u8>,
|
40
|
-
num_added: u32,
|
41
|
-
}
|
42
|
-
|
43
|
-
impl CodeSection {
|
44
|
-
/// Create a new code section encoder.
|
45
|
-
pub fn new() -> Self {
|
46
|
-
Self::default()
|
47
|
-
}
|
48
|
-
|
49
|
-
/// The number of functions in the section.
|
50
|
-
pub fn len(&self) -> u32 {
|
51
|
-
self.num_added
|
52
|
-
}
|
53
|
-
|
54
|
-
/// The number of bytes already added to this section.
|
55
|
-
///
|
56
|
-
/// This number doesn't include the vector length that precedes the
|
57
|
-
/// code entries, since it has a variable size that isn't known until all
|
58
|
-
/// functions are added.
|
59
|
-
pub fn byte_len(&self) -> usize {
|
60
|
-
self.bytes.len()
|
61
|
-
}
|
62
|
-
|
63
|
-
/// Determines if the section is empty.
|
64
|
-
pub fn is_empty(&self) -> bool {
|
65
|
-
self.num_added == 0
|
66
|
-
}
|
67
|
-
|
68
|
-
/// Write a function body into this code section.
|
69
|
-
pub fn function(&mut self, func: &Function) -> &mut Self {
|
70
|
-
func.encode(&mut self.bytes);
|
71
|
-
self.num_added += 1;
|
72
|
-
self
|
73
|
-
}
|
74
|
-
|
75
|
-
/// Add a raw byte slice into this code section as a function body.
|
76
|
-
///
|
77
|
-
/// The length prefix of the function body will be automatically prepended,
|
78
|
-
/// and should not be included in the raw byte slice.
|
79
|
-
///
|
80
|
-
/// # Example
|
81
|
-
///
|
82
|
-
/// You can use the `raw` method to copy an already-encoded function body
|
83
|
-
/// into a new code section encoder:
|
84
|
-
///
|
85
|
-
/// ```
|
86
|
-
/// # use wasmparser::{BinaryReader, WasmFeatures, CodeSectionReader};
|
87
|
-
/// // id, size, # entries, entry
|
88
|
-
/// let code_section = [10, 6, 1, 4, 0, 65, 0, 11];
|
89
|
-
///
|
90
|
-
/// // Parse the code section.
|
91
|
-
/// let reader = BinaryReader::new(&code_section, 0, WasmFeatures::all());
|
92
|
-
/// let reader = CodeSectionReader::new(reader).unwrap();
|
93
|
-
/// let body = reader.into_iter().next().unwrap().unwrap();
|
94
|
-
/// let body_range = body.range();
|
95
|
-
///
|
96
|
-
/// // Add the body to a new code section encoder by copying bytes rather
|
97
|
-
/// // than re-parsing and re-encoding it.
|
98
|
-
/// let mut encoder = wasm_encoder::CodeSection::new();
|
99
|
-
/// encoder.raw(&code_section[body_range.start..body_range.end]);
|
100
|
-
/// ```
|
101
|
-
pub fn raw(&mut self, data: &[u8]) -> &mut Self {
|
102
|
-
data.encode(&mut self.bytes);
|
103
|
-
self.num_added += 1;
|
104
|
-
self
|
105
|
-
}
|
106
|
-
}
|
107
|
-
|
108
|
-
impl Encode for CodeSection {
|
109
|
-
fn encode(&self, sink: &mut Vec<u8>) {
|
110
|
-
encode_section(sink, self.num_added, &self.bytes);
|
111
|
-
}
|
112
|
-
}
|
113
|
-
|
114
|
-
impl Section for CodeSection {
|
115
|
-
fn id(&self) -> u8 {
|
116
|
-
SectionId::Code.into()
|
117
|
-
}
|
118
|
-
}
|
119
|
-
|
120
|
-
/// An encoder for a function body within the code section.
|
121
|
-
///
|
122
|
-
/// # Example
|
123
|
-
///
|
124
|
-
/// ```
|
125
|
-
/// use wasm_encoder::{CodeSection, Function, Instruction};
|
126
|
-
///
|
127
|
-
/// // Define the function body for:
|
128
|
-
/// //
|
129
|
-
/// // (func (param i32 i32) (result i32)
|
130
|
-
/// // local.get 0
|
131
|
-
/// // local.get 1
|
132
|
-
/// // i32.add)
|
133
|
-
/// let locals = vec![];
|
134
|
-
/// let mut func = Function::new(locals);
|
135
|
-
/// func.instruction(&Instruction::LocalGet(0));
|
136
|
-
/// func.instruction(&Instruction::LocalGet(1));
|
137
|
-
/// func.instruction(&Instruction::I32Add);
|
138
|
-
///
|
139
|
-
/// // Add our function to the code section.
|
140
|
-
/// let mut code = CodeSection::new();
|
141
|
-
/// code.function(&func);
|
142
|
-
/// ```
|
143
|
-
#[derive(Clone, Debug, Eq, PartialEq)]
|
144
|
-
pub struct Function {
|
145
|
-
bytes: Vec<u8>,
|
146
|
-
}
|
147
|
-
|
148
|
-
impl Function {
|
149
|
-
/// Create a new function body with the given locals.
|
150
|
-
///
|
151
|
-
/// The argument is an iterator over `(N, Ty)`, which defines
|
152
|
-
/// that the next `N` locals will be of type `Ty`.
|
153
|
-
///
|
154
|
-
/// For example, a function with locals 0 and 1 of type I32 and
|
155
|
-
/// local 2 of type F32 would be created as:
|
156
|
-
///
|
157
|
-
/// ```
|
158
|
-
/// # use wasm_encoder::{Function, ValType};
|
159
|
-
/// let f = Function::new([(2, ValType::I32), (1, ValType::F32)]);
|
160
|
-
/// ```
|
161
|
-
///
|
162
|
-
/// For more information about the code section (and function definition) in the WASM binary format
|
163
|
-
/// see the [WebAssembly spec](https://webassembly.github.io/spec/core/binary/modules.html#binary-func)
|
164
|
-
pub fn new<L>(locals: L) -> Self
|
165
|
-
where
|
166
|
-
L: IntoIterator<Item = (u32, ValType)>,
|
167
|
-
L::IntoIter: ExactSizeIterator,
|
168
|
-
{
|
169
|
-
let locals = locals.into_iter();
|
170
|
-
let mut bytes = vec![];
|
171
|
-
locals.len().encode(&mut bytes);
|
172
|
-
for (count, ty) in locals {
|
173
|
-
count.encode(&mut bytes);
|
174
|
-
ty.encode(&mut bytes);
|
175
|
-
}
|
176
|
-
Function { bytes }
|
177
|
-
}
|
178
|
-
|
179
|
-
/// Create a function from a list of locals' types.
|
180
|
-
///
|
181
|
-
/// Unlike [`Function::new`], this constructor simply takes a list of types
|
182
|
-
/// which are in order associated with locals.
|
183
|
-
///
|
184
|
-
/// For example:
|
185
|
-
///
|
186
|
-
/// ```
|
187
|
-
/// # use wasm_encoder::{Function, ValType};
|
188
|
-
/// let f = Function::new([(2, ValType::I32), (1, ValType::F32)]);
|
189
|
-
/// let g = Function::new_with_locals_types([
|
190
|
-
/// ValType::I32, ValType::I32, ValType::F32
|
191
|
-
/// ]);
|
192
|
-
///
|
193
|
-
/// assert_eq!(f, g)
|
194
|
-
/// ```
|
195
|
-
pub fn new_with_locals_types<L>(locals: L) -> Self
|
196
|
-
where
|
197
|
-
L: IntoIterator<Item = ValType>,
|
198
|
-
{
|
199
|
-
let locals = locals.into_iter();
|
200
|
-
|
201
|
-
let mut locals_collected: Vec<(u32, ValType)> = vec![];
|
202
|
-
for l in locals {
|
203
|
-
if let Some((last_count, last_type)) = locals_collected.last_mut() {
|
204
|
-
if l == *last_type {
|
205
|
-
// Increment the count of consecutive locals of this type
|
206
|
-
*last_count += 1;
|
207
|
-
continue;
|
208
|
-
}
|
209
|
-
}
|
210
|
-
// If we didn't increment, a new type of local appeared
|
211
|
-
locals_collected.push((1, l));
|
212
|
-
}
|
213
|
-
|
214
|
-
Function::new(locals_collected)
|
215
|
-
}
|
216
|
-
|
217
|
-
/// Write an instruction into this function body.
|
218
|
-
pub fn instruction(&mut self, instruction: &Instruction) -> &mut Self {
|
219
|
-
instruction.encode(&mut self.bytes);
|
220
|
-
self
|
221
|
-
}
|
222
|
-
|
223
|
-
/// Add raw bytes to this function's body.
|
224
|
-
pub fn raw<B>(&mut self, bytes: B) -> &mut Self
|
225
|
-
where
|
226
|
-
B: IntoIterator<Item = u8>,
|
227
|
-
{
|
228
|
-
self.bytes.extend(bytes);
|
229
|
-
self
|
230
|
-
}
|
231
|
-
|
232
|
-
/// The number of bytes already added to this function.
|
233
|
-
///
|
234
|
-
/// This number doesn't include the variable-width size field that `encode`
|
235
|
-
/// will write before the added bytes, since the size of that field isn't
|
236
|
-
/// known until all the instructions are added to this function.
|
237
|
-
pub fn byte_len(&self) -> usize {
|
238
|
-
self.bytes.len()
|
239
|
-
}
|
240
|
-
}
|
241
|
-
|
242
|
-
impl Encode for Function {
|
243
|
-
fn encode(&self, sink: &mut Vec<u8>) {
|
244
|
-
self.bytes.encode(sink);
|
245
|
-
}
|
246
|
-
}
|
247
|
-
|
248
|
-
/// The immediate for a memory instruction.
|
249
|
-
#[derive(Clone, Copy, Debug)]
|
250
|
-
pub struct MemArg {
|
251
|
-
/// A static offset to add to the instruction's dynamic address operand.
|
252
|
-
///
|
253
|
-
/// This is a `u64` field for the memory64 proposal, but 32-bit memories
|
254
|
-
/// limit offsets to at most `u32::MAX` bytes. This will be encoded as a LEB
|
255
|
-
/// but it won't generate a valid module if an offset is specified which is
|
256
|
-
/// larger than the maximum size of the index space for the memory indicated
|
257
|
-
/// by `memory_index`.
|
258
|
-
pub offset: u64,
|
259
|
-
/// The expected alignment of the instruction's dynamic address operand
|
260
|
-
/// (expressed the exponent of a power of two).
|
261
|
-
pub align: u32,
|
262
|
-
/// The index of the memory this instruction is operating upon.
|
263
|
-
pub memory_index: u32,
|
264
|
-
}
|
265
|
-
|
266
|
-
impl Encode for MemArg {
|
267
|
-
fn encode(&self, sink: &mut Vec<u8>) {
|
268
|
-
if self.memory_index == 0 {
|
269
|
-
self.align.encode(sink);
|
270
|
-
self.offset.encode(sink);
|
271
|
-
} else {
|
272
|
-
(self.align | (1 << 6)).encode(sink);
|
273
|
-
self.memory_index.encode(sink);
|
274
|
-
self.offset.encode(sink);
|
275
|
-
}
|
276
|
-
}
|
277
|
-
}
|
278
|
-
|
279
|
-
/// The memory ordering for atomic instructions.
|
280
|
-
///
|
281
|
-
/// For an in-depth explanation of memory orderings, see the C++ documentation
|
282
|
-
/// for [`memory_order`] or the Rust documentation for [`atomic::Ordering`].
|
283
|
-
///
|
284
|
-
/// [`memory_order`]: https://en.cppreference.com/w/cpp/atomic/memory_order
|
285
|
-
/// [`atomic::Ordering`]: https://doc.rust-lang.org/std/sync/atomic/enum.Ordering.html
|
286
|
-
#[derive(Clone, Copy, Debug)]
|
287
|
-
pub enum Ordering {
|
288
|
-
/// For a load, it acquires; this orders all operations before the last
|
289
|
-
/// "releasing" store. For a store, it releases; this orders all operations
|
290
|
-
/// before it at the next "acquiring" load.
|
291
|
-
AcqRel,
|
292
|
-
/// Like `AcqRel` but all threads see all sequentially consistent operations
|
293
|
-
/// in the same order.
|
294
|
-
SeqCst,
|
295
|
-
}
|
296
|
-
|
297
|
-
impl Encode for Ordering {
|
298
|
-
fn encode(&self, sink: &mut Vec<u8>) {
|
299
|
-
let flag: u8 = match self {
|
300
|
-
Ordering::SeqCst => 0,
|
301
|
-
Ordering::AcqRel => 1,
|
302
|
-
};
|
303
|
-
sink.push(flag);
|
304
|
-
}
|
305
|
-
}
|
306
|
-
|
307
|
-
/// Describe an unchecked SIMD lane index.
|
308
|
-
pub type Lane = u8;
|
309
|
-
|
310
|
-
/// The type for a `block`/`if`/`loop`.
|
311
|
-
#[derive(Clone, Copy, Debug)]
|
312
|
-
pub enum BlockType {
|
313
|
-
/// `[] -> []`
|
314
|
-
Empty,
|
315
|
-
/// `[] -> [t]`
|
316
|
-
Result(ValType),
|
317
|
-
/// The `n`th function type.
|
318
|
-
FunctionType(u32),
|
319
|
-
}
|
320
|
-
|
321
|
-
impl Encode for BlockType {
|
322
|
-
fn encode(&self, sink: &mut Vec<u8>) {
|
323
|
-
match *self {
|
324
|
-
Self::Empty => sink.push(0x40),
|
325
|
-
Self::Result(ty) => ty.encode(sink),
|
326
|
-
Self::FunctionType(f) => (f as i64).encode(sink),
|
327
|
-
}
|
328
|
-
}
|
329
|
-
}
|
330
|
-
|
331
|
-
/// WebAssembly instructions.
|
332
|
-
#[derive(Clone, Debug)]
|
333
|
-
#[non_exhaustive]
|
334
|
-
#[allow(missing_docs, non_camel_case_types)]
|
335
|
-
pub enum Instruction<'a> {
|
336
|
-
// Control instructions.
|
337
|
-
Unreachable,
|
338
|
-
Nop,
|
339
|
-
Block(BlockType),
|
340
|
-
Loop(BlockType),
|
341
|
-
If(BlockType),
|
342
|
-
Else,
|
343
|
-
End,
|
344
|
-
Br(u32),
|
345
|
-
BrIf(u32),
|
346
|
-
BrTable(Cow<'a, [u32]>, u32),
|
347
|
-
BrOnNull(u32),
|
348
|
-
BrOnNonNull(u32),
|
349
|
-
Return,
|
350
|
-
Call(u32),
|
351
|
-
CallRef(u32),
|
352
|
-
CallIndirect {
|
353
|
-
ty: u32,
|
354
|
-
table: u32,
|
355
|
-
},
|
356
|
-
ReturnCallRef(u32),
|
357
|
-
ReturnCall(u32),
|
358
|
-
ReturnCallIndirect {
|
359
|
-
ty: u32,
|
360
|
-
table: u32,
|
361
|
-
},
|
362
|
-
TryTable(BlockType, Cow<'a, [Catch]>),
|
363
|
-
Throw(u32),
|
364
|
-
ThrowRef,
|
365
|
-
|
366
|
-
// Deprecated exception-handling instructions
|
367
|
-
Try(BlockType),
|
368
|
-
Delegate(u32),
|
369
|
-
Catch(u32),
|
370
|
-
CatchAll,
|
371
|
-
Rethrow(u32),
|
372
|
-
|
373
|
-
// Parametric instructions.
|
374
|
-
Drop,
|
375
|
-
Select,
|
376
|
-
|
377
|
-
// Variable instructions.
|
378
|
-
LocalGet(u32),
|
379
|
-
LocalSet(u32),
|
380
|
-
LocalTee(u32),
|
381
|
-
GlobalGet(u32),
|
382
|
-
GlobalSet(u32),
|
383
|
-
|
384
|
-
// Memory instructions.
|
385
|
-
I32Load(MemArg),
|
386
|
-
I64Load(MemArg),
|
387
|
-
F32Load(MemArg),
|
388
|
-
F64Load(MemArg),
|
389
|
-
I32Load8S(MemArg),
|
390
|
-
I32Load8U(MemArg),
|
391
|
-
I32Load16S(MemArg),
|
392
|
-
I32Load16U(MemArg),
|
393
|
-
I64Load8S(MemArg),
|
394
|
-
I64Load8U(MemArg),
|
395
|
-
I64Load16S(MemArg),
|
396
|
-
I64Load16U(MemArg),
|
397
|
-
I64Load32S(MemArg),
|
398
|
-
I64Load32U(MemArg),
|
399
|
-
I32Store(MemArg),
|
400
|
-
I64Store(MemArg),
|
401
|
-
F32Store(MemArg),
|
402
|
-
F64Store(MemArg),
|
403
|
-
I32Store8(MemArg),
|
404
|
-
I32Store16(MemArg),
|
405
|
-
I64Store8(MemArg),
|
406
|
-
I64Store16(MemArg),
|
407
|
-
I64Store32(MemArg),
|
408
|
-
MemorySize(u32),
|
409
|
-
MemoryGrow(u32),
|
410
|
-
MemoryInit {
|
411
|
-
mem: u32,
|
412
|
-
data_index: u32,
|
413
|
-
},
|
414
|
-
DataDrop(u32),
|
415
|
-
MemoryCopy {
|
416
|
-
src_mem: u32,
|
417
|
-
dst_mem: u32,
|
418
|
-
},
|
419
|
-
MemoryFill(u32),
|
420
|
-
MemoryDiscard(u32),
|
421
|
-
|
422
|
-
// Numeric instructions.
|
423
|
-
I32Const(i32),
|
424
|
-
I64Const(i64),
|
425
|
-
F32Const(f32),
|
426
|
-
F64Const(f64),
|
427
|
-
I32Eqz,
|
428
|
-
I32Eq,
|
429
|
-
I32Ne,
|
430
|
-
I32LtS,
|
431
|
-
I32LtU,
|
432
|
-
I32GtS,
|
433
|
-
I32GtU,
|
434
|
-
I32LeS,
|
435
|
-
I32LeU,
|
436
|
-
I32GeS,
|
437
|
-
I32GeU,
|
438
|
-
I64Eqz,
|
439
|
-
I64Eq,
|
440
|
-
I64Ne,
|
441
|
-
I64LtS,
|
442
|
-
I64LtU,
|
443
|
-
I64GtS,
|
444
|
-
I64GtU,
|
445
|
-
I64LeS,
|
446
|
-
I64LeU,
|
447
|
-
I64GeS,
|
448
|
-
I64GeU,
|
449
|
-
F32Eq,
|
450
|
-
F32Ne,
|
451
|
-
F32Lt,
|
452
|
-
F32Gt,
|
453
|
-
F32Le,
|
454
|
-
F32Ge,
|
455
|
-
F64Eq,
|
456
|
-
F64Ne,
|
457
|
-
F64Lt,
|
458
|
-
F64Gt,
|
459
|
-
F64Le,
|
460
|
-
F64Ge,
|
461
|
-
I32Clz,
|
462
|
-
I32Ctz,
|
463
|
-
I32Popcnt,
|
464
|
-
I32Add,
|
465
|
-
I32Sub,
|
466
|
-
I32Mul,
|
467
|
-
I32DivS,
|
468
|
-
I32DivU,
|
469
|
-
I32RemS,
|
470
|
-
I32RemU,
|
471
|
-
I32And,
|
472
|
-
I32Or,
|
473
|
-
I32Xor,
|
474
|
-
I32Shl,
|
475
|
-
I32ShrS,
|
476
|
-
I32ShrU,
|
477
|
-
I32Rotl,
|
478
|
-
I32Rotr,
|
479
|
-
I64Clz,
|
480
|
-
I64Ctz,
|
481
|
-
I64Popcnt,
|
482
|
-
I64Add,
|
483
|
-
I64Sub,
|
484
|
-
I64Mul,
|
485
|
-
I64DivS,
|
486
|
-
I64DivU,
|
487
|
-
I64RemS,
|
488
|
-
I64RemU,
|
489
|
-
I64And,
|
490
|
-
I64Or,
|
491
|
-
I64Xor,
|
492
|
-
I64Shl,
|
493
|
-
I64ShrS,
|
494
|
-
I64ShrU,
|
495
|
-
I64Rotl,
|
496
|
-
I64Rotr,
|
497
|
-
F32Abs,
|
498
|
-
F32Neg,
|
499
|
-
F32Ceil,
|
500
|
-
F32Floor,
|
501
|
-
F32Trunc,
|
502
|
-
F32Nearest,
|
503
|
-
F32Sqrt,
|
504
|
-
F32Add,
|
505
|
-
F32Sub,
|
506
|
-
F32Mul,
|
507
|
-
F32Div,
|
508
|
-
F32Min,
|
509
|
-
F32Max,
|
510
|
-
F32Copysign,
|
511
|
-
F64Abs,
|
512
|
-
F64Neg,
|
513
|
-
F64Ceil,
|
514
|
-
F64Floor,
|
515
|
-
F64Trunc,
|
516
|
-
F64Nearest,
|
517
|
-
F64Sqrt,
|
518
|
-
F64Add,
|
519
|
-
F64Sub,
|
520
|
-
F64Mul,
|
521
|
-
F64Div,
|
522
|
-
F64Min,
|
523
|
-
F64Max,
|
524
|
-
F64Copysign,
|
525
|
-
I32WrapI64,
|
526
|
-
I32TruncF32S,
|
527
|
-
I32TruncF32U,
|
528
|
-
I32TruncF64S,
|
529
|
-
I32TruncF64U,
|
530
|
-
I64ExtendI32S,
|
531
|
-
I64ExtendI32U,
|
532
|
-
I64TruncF32S,
|
533
|
-
I64TruncF32U,
|
534
|
-
I64TruncF64S,
|
535
|
-
I64TruncF64U,
|
536
|
-
F32ConvertI32S,
|
537
|
-
F32ConvertI32U,
|
538
|
-
F32ConvertI64S,
|
539
|
-
F32ConvertI64U,
|
540
|
-
F32DemoteF64,
|
541
|
-
F64ConvertI32S,
|
542
|
-
F64ConvertI32U,
|
543
|
-
F64ConvertI64S,
|
544
|
-
F64ConvertI64U,
|
545
|
-
F64PromoteF32,
|
546
|
-
I32ReinterpretF32,
|
547
|
-
I64ReinterpretF64,
|
548
|
-
F32ReinterpretI32,
|
549
|
-
F64ReinterpretI64,
|
550
|
-
I32Extend8S,
|
551
|
-
I32Extend16S,
|
552
|
-
I64Extend8S,
|
553
|
-
I64Extend16S,
|
554
|
-
I64Extend32S,
|
555
|
-
I32TruncSatF32S,
|
556
|
-
I32TruncSatF32U,
|
557
|
-
I32TruncSatF64S,
|
558
|
-
I32TruncSatF64U,
|
559
|
-
I64TruncSatF32S,
|
560
|
-
I64TruncSatF32U,
|
561
|
-
I64TruncSatF64S,
|
562
|
-
I64TruncSatF64U,
|
563
|
-
|
564
|
-
// Reference types instructions.
|
565
|
-
TypedSelect(ValType),
|
566
|
-
RefNull(HeapType),
|
567
|
-
RefIsNull,
|
568
|
-
RefFunc(u32),
|
569
|
-
RefEq,
|
570
|
-
RefAsNonNull,
|
571
|
-
|
572
|
-
// GC types instructions.
|
573
|
-
StructNew(u32),
|
574
|
-
StructNewDefault(u32),
|
575
|
-
StructGet {
|
576
|
-
struct_type_index: u32,
|
577
|
-
field_index: u32,
|
578
|
-
},
|
579
|
-
StructGetS {
|
580
|
-
struct_type_index: u32,
|
581
|
-
field_index: u32,
|
582
|
-
},
|
583
|
-
StructGetU {
|
584
|
-
struct_type_index: u32,
|
585
|
-
field_index: u32,
|
586
|
-
},
|
587
|
-
StructSet {
|
588
|
-
struct_type_index: u32,
|
589
|
-
field_index: u32,
|
590
|
-
},
|
591
|
-
|
592
|
-
ArrayNew(u32),
|
593
|
-
ArrayNewDefault(u32),
|
594
|
-
ArrayNewFixed {
|
595
|
-
array_type_index: u32,
|
596
|
-
array_size: u32,
|
597
|
-
},
|
598
|
-
ArrayNewData {
|
599
|
-
array_type_index: u32,
|
600
|
-
array_data_index: u32,
|
601
|
-
},
|
602
|
-
ArrayNewElem {
|
603
|
-
array_type_index: u32,
|
604
|
-
array_elem_index: u32,
|
605
|
-
},
|
606
|
-
ArrayGet(u32),
|
607
|
-
ArrayGetS(u32),
|
608
|
-
ArrayGetU(u32),
|
609
|
-
ArraySet(u32),
|
610
|
-
ArrayLen,
|
611
|
-
ArrayFill(u32),
|
612
|
-
ArrayCopy {
|
613
|
-
array_type_index_dst: u32,
|
614
|
-
array_type_index_src: u32,
|
615
|
-
},
|
616
|
-
ArrayInitData {
|
617
|
-
array_type_index: u32,
|
618
|
-
array_data_index: u32,
|
619
|
-
},
|
620
|
-
ArrayInitElem {
|
621
|
-
array_type_index: u32,
|
622
|
-
array_elem_index: u32,
|
623
|
-
},
|
624
|
-
RefTestNonNull(HeapType),
|
625
|
-
RefTestNullable(HeapType),
|
626
|
-
RefCastNonNull(HeapType),
|
627
|
-
RefCastNullable(HeapType),
|
628
|
-
BrOnCast {
|
629
|
-
relative_depth: u32,
|
630
|
-
from_ref_type: RefType,
|
631
|
-
to_ref_type: RefType,
|
632
|
-
},
|
633
|
-
BrOnCastFail {
|
634
|
-
relative_depth: u32,
|
635
|
-
from_ref_type: RefType,
|
636
|
-
to_ref_type: RefType,
|
637
|
-
},
|
638
|
-
AnyConvertExtern,
|
639
|
-
ExternConvertAny,
|
640
|
-
|
641
|
-
RefI31,
|
642
|
-
I31GetS,
|
643
|
-
I31GetU,
|
644
|
-
|
645
|
-
// Bulk memory instructions.
|
646
|
-
TableInit {
|
647
|
-
elem_index: u32,
|
648
|
-
table: u32,
|
649
|
-
},
|
650
|
-
ElemDrop(u32),
|
651
|
-
TableFill(u32),
|
652
|
-
TableSet(u32),
|
653
|
-
TableGet(u32),
|
654
|
-
TableGrow(u32),
|
655
|
-
TableSize(u32),
|
656
|
-
TableCopy {
|
657
|
-
src_table: u32,
|
658
|
-
dst_table: u32,
|
659
|
-
},
|
660
|
-
|
661
|
-
// SIMD instructions.
|
662
|
-
V128Load(MemArg),
|
663
|
-
V128Load8x8S(MemArg),
|
664
|
-
V128Load8x8U(MemArg),
|
665
|
-
V128Load16x4S(MemArg),
|
666
|
-
V128Load16x4U(MemArg),
|
667
|
-
V128Load32x2S(MemArg),
|
668
|
-
V128Load32x2U(MemArg),
|
669
|
-
V128Load8Splat(MemArg),
|
670
|
-
V128Load16Splat(MemArg),
|
671
|
-
V128Load32Splat(MemArg),
|
672
|
-
V128Load64Splat(MemArg),
|
673
|
-
V128Load32Zero(MemArg),
|
674
|
-
V128Load64Zero(MemArg),
|
675
|
-
V128Store(MemArg),
|
676
|
-
V128Load8Lane {
|
677
|
-
memarg: MemArg,
|
678
|
-
lane: Lane,
|
679
|
-
},
|
680
|
-
V128Load16Lane {
|
681
|
-
memarg: MemArg,
|
682
|
-
lane: Lane,
|
683
|
-
},
|
684
|
-
V128Load32Lane {
|
685
|
-
memarg: MemArg,
|
686
|
-
lane: Lane,
|
687
|
-
},
|
688
|
-
V128Load64Lane {
|
689
|
-
memarg: MemArg,
|
690
|
-
lane: Lane,
|
691
|
-
},
|
692
|
-
V128Store8Lane {
|
693
|
-
memarg: MemArg,
|
694
|
-
lane: Lane,
|
695
|
-
},
|
696
|
-
V128Store16Lane {
|
697
|
-
memarg: MemArg,
|
698
|
-
lane: Lane,
|
699
|
-
},
|
700
|
-
V128Store32Lane {
|
701
|
-
memarg: MemArg,
|
702
|
-
lane: Lane,
|
703
|
-
},
|
704
|
-
V128Store64Lane {
|
705
|
-
memarg: MemArg,
|
706
|
-
lane: Lane,
|
707
|
-
},
|
708
|
-
V128Const(i128),
|
709
|
-
I8x16Shuffle([Lane; 16]),
|
710
|
-
I8x16ExtractLaneS(Lane),
|
711
|
-
I8x16ExtractLaneU(Lane),
|
712
|
-
I8x16ReplaceLane(Lane),
|
713
|
-
I16x8ExtractLaneS(Lane),
|
714
|
-
I16x8ExtractLaneU(Lane),
|
715
|
-
I16x8ReplaceLane(Lane),
|
716
|
-
I32x4ExtractLane(Lane),
|
717
|
-
I32x4ReplaceLane(Lane),
|
718
|
-
I64x2ExtractLane(Lane),
|
719
|
-
I64x2ReplaceLane(Lane),
|
720
|
-
F32x4ExtractLane(Lane),
|
721
|
-
F32x4ReplaceLane(Lane),
|
722
|
-
F64x2ExtractLane(Lane),
|
723
|
-
F64x2ReplaceLane(Lane),
|
724
|
-
I8x16Swizzle,
|
725
|
-
I8x16Splat,
|
726
|
-
I16x8Splat,
|
727
|
-
I32x4Splat,
|
728
|
-
I64x2Splat,
|
729
|
-
F32x4Splat,
|
730
|
-
F64x2Splat,
|
731
|
-
I8x16Eq,
|
732
|
-
I8x16Ne,
|
733
|
-
I8x16LtS,
|
734
|
-
I8x16LtU,
|
735
|
-
I8x16GtS,
|
736
|
-
I8x16GtU,
|
737
|
-
I8x16LeS,
|
738
|
-
I8x16LeU,
|
739
|
-
I8x16GeS,
|
740
|
-
I8x16GeU,
|
741
|
-
I16x8Eq,
|
742
|
-
I16x8Ne,
|
743
|
-
I16x8LtS,
|
744
|
-
I16x8LtU,
|
745
|
-
I16x8GtS,
|
746
|
-
I16x8GtU,
|
747
|
-
I16x8LeS,
|
748
|
-
I16x8LeU,
|
749
|
-
I16x8GeS,
|
750
|
-
I16x8GeU,
|
751
|
-
I32x4Eq,
|
752
|
-
I32x4Ne,
|
753
|
-
I32x4LtS,
|
754
|
-
I32x4LtU,
|
755
|
-
I32x4GtS,
|
756
|
-
I32x4GtU,
|
757
|
-
I32x4LeS,
|
758
|
-
I32x4LeU,
|
759
|
-
I32x4GeS,
|
760
|
-
I32x4GeU,
|
761
|
-
I64x2Eq,
|
762
|
-
I64x2Ne,
|
763
|
-
I64x2LtS,
|
764
|
-
I64x2GtS,
|
765
|
-
I64x2LeS,
|
766
|
-
I64x2GeS,
|
767
|
-
F32x4Eq,
|
768
|
-
F32x4Ne,
|
769
|
-
F32x4Lt,
|
770
|
-
F32x4Gt,
|
771
|
-
F32x4Le,
|
772
|
-
F32x4Ge,
|
773
|
-
F64x2Eq,
|
774
|
-
F64x2Ne,
|
775
|
-
F64x2Lt,
|
776
|
-
F64x2Gt,
|
777
|
-
F64x2Le,
|
778
|
-
F64x2Ge,
|
779
|
-
V128Not,
|
780
|
-
V128And,
|
781
|
-
V128AndNot,
|
782
|
-
V128Or,
|
783
|
-
V128Xor,
|
784
|
-
V128Bitselect,
|
785
|
-
V128AnyTrue,
|
786
|
-
I8x16Abs,
|
787
|
-
I8x16Neg,
|
788
|
-
I8x16Popcnt,
|
789
|
-
I8x16AllTrue,
|
790
|
-
I8x16Bitmask,
|
791
|
-
I8x16NarrowI16x8S,
|
792
|
-
I8x16NarrowI16x8U,
|
793
|
-
I8x16Shl,
|
794
|
-
I8x16ShrS,
|
795
|
-
I8x16ShrU,
|
796
|
-
I8x16Add,
|
797
|
-
I8x16AddSatS,
|
798
|
-
I8x16AddSatU,
|
799
|
-
I8x16Sub,
|
800
|
-
I8x16SubSatS,
|
801
|
-
I8x16SubSatU,
|
802
|
-
I8x16MinS,
|
803
|
-
I8x16MinU,
|
804
|
-
I8x16MaxS,
|
805
|
-
I8x16MaxU,
|
806
|
-
I8x16AvgrU,
|
807
|
-
I16x8ExtAddPairwiseI8x16S,
|
808
|
-
I16x8ExtAddPairwiseI8x16U,
|
809
|
-
I16x8Abs,
|
810
|
-
I16x8Neg,
|
811
|
-
I16x8Q15MulrSatS,
|
812
|
-
I16x8AllTrue,
|
813
|
-
I16x8Bitmask,
|
814
|
-
I16x8NarrowI32x4S,
|
815
|
-
I16x8NarrowI32x4U,
|
816
|
-
I16x8ExtendLowI8x16S,
|
817
|
-
I16x8ExtendHighI8x16S,
|
818
|
-
I16x8ExtendLowI8x16U,
|
819
|
-
I16x8ExtendHighI8x16U,
|
820
|
-
I16x8Shl,
|
821
|
-
I16x8ShrS,
|
822
|
-
I16x8ShrU,
|
823
|
-
I16x8Add,
|
824
|
-
I16x8AddSatS,
|
825
|
-
I16x8AddSatU,
|
826
|
-
I16x8Sub,
|
827
|
-
I16x8SubSatS,
|
828
|
-
I16x8SubSatU,
|
829
|
-
I16x8Mul,
|
830
|
-
I16x8MinS,
|
831
|
-
I16x8MinU,
|
832
|
-
I16x8MaxS,
|
833
|
-
I16x8MaxU,
|
834
|
-
I16x8AvgrU,
|
835
|
-
I16x8ExtMulLowI8x16S,
|
836
|
-
I16x8ExtMulHighI8x16S,
|
837
|
-
I16x8ExtMulLowI8x16U,
|
838
|
-
I16x8ExtMulHighI8x16U,
|
839
|
-
I32x4ExtAddPairwiseI16x8S,
|
840
|
-
I32x4ExtAddPairwiseI16x8U,
|
841
|
-
I32x4Abs,
|
842
|
-
I32x4Neg,
|
843
|
-
I32x4AllTrue,
|
844
|
-
I32x4Bitmask,
|
845
|
-
I32x4ExtendLowI16x8S,
|
846
|
-
I32x4ExtendHighI16x8S,
|
847
|
-
I32x4ExtendLowI16x8U,
|
848
|
-
I32x4ExtendHighI16x8U,
|
849
|
-
I32x4Shl,
|
850
|
-
I32x4ShrS,
|
851
|
-
I32x4ShrU,
|
852
|
-
I32x4Add,
|
853
|
-
I32x4Sub,
|
854
|
-
I32x4Mul,
|
855
|
-
I32x4MinS,
|
856
|
-
I32x4MinU,
|
857
|
-
I32x4MaxS,
|
858
|
-
I32x4MaxU,
|
859
|
-
I32x4DotI16x8S,
|
860
|
-
I32x4ExtMulLowI16x8S,
|
861
|
-
I32x4ExtMulHighI16x8S,
|
862
|
-
I32x4ExtMulLowI16x8U,
|
863
|
-
I32x4ExtMulHighI16x8U,
|
864
|
-
I64x2Abs,
|
865
|
-
I64x2Neg,
|
866
|
-
I64x2AllTrue,
|
867
|
-
I64x2Bitmask,
|
868
|
-
I64x2ExtendLowI32x4S,
|
869
|
-
I64x2ExtendHighI32x4S,
|
870
|
-
I64x2ExtendLowI32x4U,
|
871
|
-
I64x2ExtendHighI32x4U,
|
872
|
-
I64x2Shl,
|
873
|
-
I64x2ShrS,
|
874
|
-
I64x2ShrU,
|
875
|
-
I64x2Add,
|
876
|
-
I64x2Sub,
|
877
|
-
I64x2Mul,
|
878
|
-
I64x2ExtMulLowI32x4S,
|
879
|
-
I64x2ExtMulHighI32x4S,
|
880
|
-
I64x2ExtMulLowI32x4U,
|
881
|
-
I64x2ExtMulHighI32x4U,
|
882
|
-
F32x4Ceil,
|
883
|
-
F32x4Floor,
|
884
|
-
F32x4Trunc,
|
885
|
-
F32x4Nearest,
|
886
|
-
F32x4Abs,
|
887
|
-
F32x4Neg,
|
888
|
-
F32x4Sqrt,
|
889
|
-
F32x4Add,
|
890
|
-
F32x4Sub,
|
891
|
-
F32x4Mul,
|
892
|
-
F32x4Div,
|
893
|
-
F32x4Min,
|
894
|
-
F32x4Max,
|
895
|
-
F32x4PMin,
|
896
|
-
F32x4PMax,
|
897
|
-
F64x2Ceil,
|
898
|
-
F64x2Floor,
|
899
|
-
F64x2Trunc,
|
900
|
-
F64x2Nearest,
|
901
|
-
F64x2Abs,
|
902
|
-
F64x2Neg,
|
903
|
-
F64x2Sqrt,
|
904
|
-
F64x2Add,
|
905
|
-
F64x2Sub,
|
906
|
-
F64x2Mul,
|
907
|
-
F64x2Div,
|
908
|
-
F64x2Min,
|
909
|
-
F64x2Max,
|
910
|
-
F64x2PMin,
|
911
|
-
F64x2PMax,
|
912
|
-
I32x4TruncSatF32x4S,
|
913
|
-
I32x4TruncSatF32x4U,
|
914
|
-
F32x4ConvertI32x4S,
|
915
|
-
F32x4ConvertI32x4U,
|
916
|
-
I32x4TruncSatF64x2SZero,
|
917
|
-
I32x4TruncSatF64x2UZero,
|
918
|
-
F64x2ConvertLowI32x4S,
|
919
|
-
F64x2ConvertLowI32x4U,
|
920
|
-
F32x4DemoteF64x2Zero,
|
921
|
-
F64x2PromoteLowF32x4,
|
922
|
-
|
923
|
-
// Relaxed simd proposal
|
924
|
-
I8x16RelaxedSwizzle,
|
925
|
-
I32x4RelaxedTruncF32x4S,
|
926
|
-
I32x4RelaxedTruncF32x4U,
|
927
|
-
I32x4RelaxedTruncF64x2SZero,
|
928
|
-
I32x4RelaxedTruncF64x2UZero,
|
929
|
-
F32x4RelaxedMadd,
|
930
|
-
F32x4RelaxedNmadd,
|
931
|
-
F64x2RelaxedMadd,
|
932
|
-
F64x2RelaxedNmadd,
|
933
|
-
I8x16RelaxedLaneselect,
|
934
|
-
I16x8RelaxedLaneselect,
|
935
|
-
I32x4RelaxedLaneselect,
|
936
|
-
I64x2RelaxedLaneselect,
|
937
|
-
F32x4RelaxedMin,
|
938
|
-
F32x4RelaxedMax,
|
939
|
-
F64x2RelaxedMin,
|
940
|
-
F64x2RelaxedMax,
|
941
|
-
I16x8RelaxedQ15mulrS,
|
942
|
-
I16x8RelaxedDotI8x16I7x16S,
|
943
|
-
I32x4RelaxedDotI8x16I7x16AddS,
|
944
|
-
|
945
|
-
// Atomic instructions (the threads proposal)
|
946
|
-
MemoryAtomicNotify(MemArg),
|
947
|
-
MemoryAtomicWait32(MemArg),
|
948
|
-
MemoryAtomicWait64(MemArg),
|
949
|
-
AtomicFence,
|
950
|
-
I32AtomicLoad(MemArg),
|
951
|
-
I64AtomicLoad(MemArg),
|
952
|
-
I32AtomicLoad8U(MemArg),
|
953
|
-
I32AtomicLoad16U(MemArg),
|
954
|
-
I64AtomicLoad8U(MemArg),
|
955
|
-
I64AtomicLoad16U(MemArg),
|
956
|
-
I64AtomicLoad32U(MemArg),
|
957
|
-
I32AtomicStore(MemArg),
|
958
|
-
I64AtomicStore(MemArg),
|
959
|
-
I32AtomicStore8(MemArg),
|
960
|
-
I32AtomicStore16(MemArg),
|
961
|
-
I64AtomicStore8(MemArg),
|
962
|
-
I64AtomicStore16(MemArg),
|
963
|
-
I64AtomicStore32(MemArg),
|
964
|
-
I32AtomicRmwAdd(MemArg),
|
965
|
-
I64AtomicRmwAdd(MemArg),
|
966
|
-
I32AtomicRmw8AddU(MemArg),
|
967
|
-
I32AtomicRmw16AddU(MemArg),
|
968
|
-
I64AtomicRmw8AddU(MemArg),
|
969
|
-
I64AtomicRmw16AddU(MemArg),
|
970
|
-
I64AtomicRmw32AddU(MemArg),
|
971
|
-
I32AtomicRmwSub(MemArg),
|
972
|
-
I64AtomicRmwSub(MemArg),
|
973
|
-
I32AtomicRmw8SubU(MemArg),
|
974
|
-
I32AtomicRmw16SubU(MemArg),
|
975
|
-
I64AtomicRmw8SubU(MemArg),
|
976
|
-
I64AtomicRmw16SubU(MemArg),
|
977
|
-
I64AtomicRmw32SubU(MemArg),
|
978
|
-
I32AtomicRmwAnd(MemArg),
|
979
|
-
I64AtomicRmwAnd(MemArg),
|
980
|
-
I32AtomicRmw8AndU(MemArg),
|
981
|
-
I32AtomicRmw16AndU(MemArg),
|
982
|
-
I64AtomicRmw8AndU(MemArg),
|
983
|
-
I64AtomicRmw16AndU(MemArg),
|
984
|
-
I64AtomicRmw32AndU(MemArg),
|
985
|
-
I32AtomicRmwOr(MemArg),
|
986
|
-
I64AtomicRmwOr(MemArg),
|
987
|
-
I32AtomicRmw8OrU(MemArg),
|
988
|
-
I32AtomicRmw16OrU(MemArg),
|
989
|
-
I64AtomicRmw8OrU(MemArg),
|
990
|
-
I64AtomicRmw16OrU(MemArg),
|
991
|
-
I64AtomicRmw32OrU(MemArg),
|
992
|
-
I32AtomicRmwXor(MemArg),
|
993
|
-
I64AtomicRmwXor(MemArg),
|
994
|
-
I32AtomicRmw8XorU(MemArg),
|
995
|
-
I32AtomicRmw16XorU(MemArg),
|
996
|
-
I64AtomicRmw8XorU(MemArg),
|
997
|
-
I64AtomicRmw16XorU(MemArg),
|
998
|
-
I64AtomicRmw32XorU(MemArg),
|
999
|
-
I32AtomicRmwXchg(MemArg),
|
1000
|
-
I64AtomicRmwXchg(MemArg),
|
1001
|
-
I32AtomicRmw8XchgU(MemArg),
|
1002
|
-
I32AtomicRmw16XchgU(MemArg),
|
1003
|
-
I64AtomicRmw8XchgU(MemArg),
|
1004
|
-
I64AtomicRmw16XchgU(MemArg),
|
1005
|
-
I64AtomicRmw32XchgU(MemArg),
|
1006
|
-
I32AtomicRmwCmpxchg(MemArg),
|
1007
|
-
I64AtomicRmwCmpxchg(MemArg),
|
1008
|
-
I32AtomicRmw8CmpxchgU(MemArg),
|
1009
|
-
I32AtomicRmw16CmpxchgU(MemArg),
|
1010
|
-
I64AtomicRmw8CmpxchgU(MemArg),
|
1011
|
-
I64AtomicRmw16CmpxchgU(MemArg),
|
1012
|
-
I64AtomicRmw32CmpxchgU(MemArg),
|
1013
|
-
|
1014
|
-
// More atomic instructions (the shared-everything-threads proposal)
|
1015
|
-
GlobalAtomicGet {
|
1016
|
-
ordering: Ordering,
|
1017
|
-
global_index: u32,
|
1018
|
-
},
|
1019
|
-
GlobalAtomicSet {
|
1020
|
-
ordering: Ordering,
|
1021
|
-
global_index: u32,
|
1022
|
-
},
|
1023
|
-
GlobalAtomicRmwAdd {
|
1024
|
-
ordering: Ordering,
|
1025
|
-
global_index: u32,
|
1026
|
-
},
|
1027
|
-
GlobalAtomicRmwSub {
|
1028
|
-
ordering: Ordering,
|
1029
|
-
global_index: u32,
|
1030
|
-
},
|
1031
|
-
GlobalAtomicRmwAnd {
|
1032
|
-
ordering: Ordering,
|
1033
|
-
global_index: u32,
|
1034
|
-
},
|
1035
|
-
GlobalAtomicRmwOr {
|
1036
|
-
ordering: Ordering,
|
1037
|
-
global_index: u32,
|
1038
|
-
},
|
1039
|
-
GlobalAtomicRmwXor {
|
1040
|
-
ordering: Ordering,
|
1041
|
-
global_index: u32,
|
1042
|
-
},
|
1043
|
-
GlobalAtomicRmwXchg {
|
1044
|
-
ordering: Ordering,
|
1045
|
-
global_index: u32,
|
1046
|
-
},
|
1047
|
-
GlobalAtomicRmwCmpxchg {
|
1048
|
-
ordering: Ordering,
|
1049
|
-
global_index: u32,
|
1050
|
-
},
|
1051
|
-
}
|
1052
|
-
|
1053
|
-
impl Encode for Instruction<'_> {
|
1054
|
-
fn encode(&self, sink: &mut Vec<u8>) {
|
1055
|
-
match *self {
|
1056
|
-
// Control instructions.
|
1057
|
-
Instruction::Unreachable => sink.push(0x00),
|
1058
|
-
Instruction::Nop => sink.push(0x01),
|
1059
|
-
Instruction::Block(bt) => {
|
1060
|
-
sink.push(0x02);
|
1061
|
-
bt.encode(sink);
|
1062
|
-
}
|
1063
|
-
Instruction::Loop(bt) => {
|
1064
|
-
sink.push(0x03);
|
1065
|
-
bt.encode(sink);
|
1066
|
-
}
|
1067
|
-
Instruction::If(bt) => {
|
1068
|
-
sink.push(0x04);
|
1069
|
-
bt.encode(sink);
|
1070
|
-
}
|
1071
|
-
Instruction::Else => sink.push(0x05),
|
1072
|
-
Instruction::Try(bt) => {
|
1073
|
-
sink.push(0x06);
|
1074
|
-
bt.encode(sink);
|
1075
|
-
}
|
1076
|
-
Instruction::Catch(t) => {
|
1077
|
-
sink.push(0x07);
|
1078
|
-
t.encode(sink);
|
1079
|
-
}
|
1080
|
-
Instruction::Throw(t) => {
|
1081
|
-
sink.push(0x08);
|
1082
|
-
t.encode(sink);
|
1083
|
-
}
|
1084
|
-
Instruction::Rethrow(l) => {
|
1085
|
-
sink.push(0x09);
|
1086
|
-
l.encode(sink);
|
1087
|
-
}
|
1088
|
-
Instruction::ThrowRef => {
|
1089
|
-
sink.push(0x0A);
|
1090
|
-
}
|
1091
|
-
Instruction::End => sink.push(0x0B),
|
1092
|
-
Instruction::Br(l) => {
|
1093
|
-
sink.push(0x0C);
|
1094
|
-
l.encode(sink);
|
1095
|
-
}
|
1096
|
-
Instruction::BrIf(l) => {
|
1097
|
-
sink.push(0x0D);
|
1098
|
-
l.encode(sink);
|
1099
|
-
}
|
1100
|
-
Instruction::BrTable(ref ls, l) => {
|
1101
|
-
sink.push(0x0E);
|
1102
|
-
ls.encode(sink);
|
1103
|
-
l.encode(sink);
|
1104
|
-
}
|
1105
|
-
Instruction::BrOnNull(l) => {
|
1106
|
-
sink.push(0xD5);
|
1107
|
-
l.encode(sink);
|
1108
|
-
}
|
1109
|
-
Instruction::BrOnNonNull(l) => {
|
1110
|
-
sink.push(0xD6);
|
1111
|
-
l.encode(sink);
|
1112
|
-
}
|
1113
|
-
Instruction::Return => sink.push(0x0F),
|
1114
|
-
Instruction::Call(f) => {
|
1115
|
-
sink.push(0x10);
|
1116
|
-
f.encode(sink);
|
1117
|
-
}
|
1118
|
-
Instruction::CallRef(ty) => {
|
1119
|
-
sink.push(0x14);
|
1120
|
-
ty.encode(sink);
|
1121
|
-
}
|
1122
|
-
Instruction::CallIndirect { ty, table } => {
|
1123
|
-
sink.push(0x11);
|
1124
|
-
ty.encode(sink);
|
1125
|
-
table.encode(sink);
|
1126
|
-
}
|
1127
|
-
Instruction::ReturnCallRef(ty) => {
|
1128
|
-
sink.push(0x15);
|
1129
|
-
ty.encode(sink);
|
1130
|
-
}
|
1131
|
-
|
1132
|
-
Instruction::ReturnCall(f) => {
|
1133
|
-
sink.push(0x12);
|
1134
|
-
f.encode(sink);
|
1135
|
-
}
|
1136
|
-
Instruction::ReturnCallIndirect { ty, table } => {
|
1137
|
-
sink.push(0x13);
|
1138
|
-
ty.encode(sink);
|
1139
|
-
table.encode(sink);
|
1140
|
-
}
|
1141
|
-
Instruction::Delegate(l) => {
|
1142
|
-
sink.push(0x18);
|
1143
|
-
l.encode(sink);
|
1144
|
-
}
|
1145
|
-
Instruction::CatchAll => {
|
1146
|
-
sink.push(0x19);
|
1147
|
-
}
|
1148
|
-
|
1149
|
-
// Parametric instructions.
|
1150
|
-
Instruction::Drop => sink.push(0x1A),
|
1151
|
-
Instruction::Select => sink.push(0x1B),
|
1152
|
-
Instruction::TypedSelect(ty) => {
|
1153
|
-
sink.push(0x1c);
|
1154
|
-
[ty].encode(sink);
|
1155
|
-
}
|
1156
|
-
|
1157
|
-
Instruction::TryTable(ty, ref catches) => {
|
1158
|
-
sink.push(0x1f);
|
1159
|
-
ty.encode(sink);
|
1160
|
-
catches.encode(sink);
|
1161
|
-
}
|
1162
|
-
|
1163
|
-
// Variable instructions.
|
1164
|
-
Instruction::LocalGet(l) => {
|
1165
|
-
sink.push(0x20);
|
1166
|
-
l.encode(sink);
|
1167
|
-
}
|
1168
|
-
Instruction::LocalSet(l) => {
|
1169
|
-
sink.push(0x21);
|
1170
|
-
l.encode(sink);
|
1171
|
-
}
|
1172
|
-
Instruction::LocalTee(l) => {
|
1173
|
-
sink.push(0x22);
|
1174
|
-
l.encode(sink);
|
1175
|
-
}
|
1176
|
-
Instruction::GlobalGet(g) => {
|
1177
|
-
sink.push(0x23);
|
1178
|
-
g.encode(sink);
|
1179
|
-
}
|
1180
|
-
Instruction::GlobalSet(g) => {
|
1181
|
-
sink.push(0x24);
|
1182
|
-
g.encode(sink);
|
1183
|
-
}
|
1184
|
-
Instruction::TableGet(table) => {
|
1185
|
-
sink.push(0x25);
|
1186
|
-
table.encode(sink);
|
1187
|
-
}
|
1188
|
-
Instruction::TableSet(table) => {
|
1189
|
-
sink.push(0x26);
|
1190
|
-
table.encode(sink);
|
1191
|
-
}
|
1192
|
-
|
1193
|
-
// Memory instructions.
|
1194
|
-
Instruction::I32Load(m) => {
|
1195
|
-
sink.push(0x28);
|
1196
|
-
m.encode(sink);
|
1197
|
-
}
|
1198
|
-
Instruction::I64Load(m) => {
|
1199
|
-
sink.push(0x29);
|
1200
|
-
m.encode(sink);
|
1201
|
-
}
|
1202
|
-
Instruction::F32Load(m) => {
|
1203
|
-
sink.push(0x2A);
|
1204
|
-
m.encode(sink);
|
1205
|
-
}
|
1206
|
-
Instruction::F64Load(m) => {
|
1207
|
-
sink.push(0x2B);
|
1208
|
-
m.encode(sink);
|
1209
|
-
}
|
1210
|
-
Instruction::I32Load8S(m) => {
|
1211
|
-
sink.push(0x2C);
|
1212
|
-
m.encode(sink);
|
1213
|
-
}
|
1214
|
-
Instruction::I32Load8U(m) => {
|
1215
|
-
sink.push(0x2D);
|
1216
|
-
m.encode(sink);
|
1217
|
-
}
|
1218
|
-
Instruction::I32Load16S(m) => {
|
1219
|
-
sink.push(0x2E);
|
1220
|
-
m.encode(sink);
|
1221
|
-
}
|
1222
|
-
Instruction::I32Load16U(m) => {
|
1223
|
-
sink.push(0x2F);
|
1224
|
-
m.encode(sink);
|
1225
|
-
}
|
1226
|
-
Instruction::I64Load8S(m) => {
|
1227
|
-
sink.push(0x30);
|
1228
|
-
m.encode(sink);
|
1229
|
-
}
|
1230
|
-
Instruction::I64Load8U(m) => {
|
1231
|
-
sink.push(0x31);
|
1232
|
-
m.encode(sink);
|
1233
|
-
}
|
1234
|
-
Instruction::I64Load16S(m) => {
|
1235
|
-
sink.push(0x32);
|
1236
|
-
m.encode(sink);
|
1237
|
-
}
|
1238
|
-
Instruction::I64Load16U(m) => {
|
1239
|
-
sink.push(0x33);
|
1240
|
-
m.encode(sink);
|
1241
|
-
}
|
1242
|
-
Instruction::I64Load32S(m) => {
|
1243
|
-
sink.push(0x34);
|
1244
|
-
m.encode(sink);
|
1245
|
-
}
|
1246
|
-
Instruction::I64Load32U(m) => {
|
1247
|
-
sink.push(0x35);
|
1248
|
-
m.encode(sink);
|
1249
|
-
}
|
1250
|
-
Instruction::I32Store(m) => {
|
1251
|
-
sink.push(0x36);
|
1252
|
-
m.encode(sink);
|
1253
|
-
}
|
1254
|
-
Instruction::I64Store(m) => {
|
1255
|
-
sink.push(0x37);
|
1256
|
-
m.encode(sink);
|
1257
|
-
}
|
1258
|
-
Instruction::F32Store(m) => {
|
1259
|
-
sink.push(0x38);
|
1260
|
-
m.encode(sink);
|
1261
|
-
}
|
1262
|
-
Instruction::F64Store(m) => {
|
1263
|
-
sink.push(0x39);
|
1264
|
-
m.encode(sink);
|
1265
|
-
}
|
1266
|
-
Instruction::I32Store8(m) => {
|
1267
|
-
sink.push(0x3A);
|
1268
|
-
m.encode(sink);
|
1269
|
-
}
|
1270
|
-
Instruction::I32Store16(m) => {
|
1271
|
-
sink.push(0x3B);
|
1272
|
-
m.encode(sink);
|
1273
|
-
}
|
1274
|
-
Instruction::I64Store8(m) => {
|
1275
|
-
sink.push(0x3C);
|
1276
|
-
m.encode(sink);
|
1277
|
-
}
|
1278
|
-
Instruction::I64Store16(m) => {
|
1279
|
-
sink.push(0x3D);
|
1280
|
-
m.encode(sink);
|
1281
|
-
}
|
1282
|
-
Instruction::I64Store32(m) => {
|
1283
|
-
sink.push(0x3E);
|
1284
|
-
m.encode(sink);
|
1285
|
-
}
|
1286
|
-
Instruction::MemorySize(i) => {
|
1287
|
-
sink.push(0x3F);
|
1288
|
-
i.encode(sink);
|
1289
|
-
}
|
1290
|
-
Instruction::MemoryGrow(i) => {
|
1291
|
-
sink.push(0x40);
|
1292
|
-
i.encode(sink);
|
1293
|
-
}
|
1294
|
-
Instruction::MemoryInit { mem, data_index } => {
|
1295
|
-
sink.push(0xfc);
|
1296
|
-
sink.push(0x08);
|
1297
|
-
data_index.encode(sink);
|
1298
|
-
mem.encode(sink);
|
1299
|
-
}
|
1300
|
-
Instruction::DataDrop(data) => {
|
1301
|
-
sink.push(0xfc);
|
1302
|
-
sink.push(0x09);
|
1303
|
-
data.encode(sink);
|
1304
|
-
}
|
1305
|
-
Instruction::MemoryCopy { src_mem, dst_mem } => {
|
1306
|
-
sink.push(0xfc);
|
1307
|
-
sink.push(0x0a);
|
1308
|
-
dst_mem.encode(sink);
|
1309
|
-
src_mem.encode(sink);
|
1310
|
-
}
|
1311
|
-
Instruction::MemoryFill(mem) => {
|
1312
|
-
sink.push(0xfc);
|
1313
|
-
sink.push(0x0b);
|
1314
|
-
mem.encode(sink);
|
1315
|
-
}
|
1316
|
-
Instruction::MemoryDiscard(mem) => {
|
1317
|
-
sink.push(0xfc);
|
1318
|
-
sink.push(0x12);
|
1319
|
-
mem.encode(sink);
|
1320
|
-
}
|
1321
|
-
|
1322
|
-
// Numeric instructions.
|
1323
|
-
Instruction::I32Const(x) => {
|
1324
|
-
sink.push(0x41);
|
1325
|
-
x.encode(sink);
|
1326
|
-
}
|
1327
|
-
Instruction::I64Const(x) => {
|
1328
|
-
sink.push(0x42);
|
1329
|
-
x.encode(sink);
|
1330
|
-
}
|
1331
|
-
Instruction::F32Const(x) => {
|
1332
|
-
sink.push(0x43);
|
1333
|
-
let x = x.to_bits();
|
1334
|
-
sink.extend(x.to_le_bytes().iter().copied());
|
1335
|
-
}
|
1336
|
-
Instruction::F64Const(x) => {
|
1337
|
-
sink.push(0x44);
|
1338
|
-
let x = x.to_bits();
|
1339
|
-
sink.extend(x.to_le_bytes().iter().copied());
|
1340
|
-
}
|
1341
|
-
Instruction::I32Eqz => sink.push(0x45),
|
1342
|
-
Instruction::I32Eq => sink.push(0x46),
|
1343
|
-
Instruction::I32Ne => sink.push(0x47),
|
1344
|
-
Instruction::I32LtS => sink.push(0x48),
|
1345
|
-
Instruction::I32LtU => sink.push(0x49),
|
1346
|
-
Instruction::I32GtS => sink.push(0x4A),
|
1347
|
-
Instruction::I32GtU => sink.push(0x4B),
|
1348
|
-
Instruction::I32LeS => sink.push(0x4C),
|
1349
|
-
Instruction::I32LeU => sink.push(0x4D),
|
1350
|
-
Instruction::I32GeS => sink.push(0x4E),
|
1351
|
-
Instruction::I32GeU => sink.push(0x4F),
|
1352
|
-
Instruction::I64Eqz => sink.push(0x50),
|
1353
|
-
Instruction::I64Eq => sink.push(0x51),
|
1354
|
-
Instruction::I64Ne => sink.push(0x52),
|
1355
|
-
Instruction::I64LtS => sink.push(0x53),
|
1356
|
-
Instruction::I64LtU => sink.push(0x54),
|
1357
|
-
Instruction::I64GtS => sink.push(0x55),
|
1358
|
-
Instruction::I64GtU => sink.push(0x56),
|
1359
|
-
Instruction::I64LeS => sink.push(0x57),
|
1360
|
-
Instruction::I64LeU => sink.push(0x58),
|
1361
|
-
Instruction::I64GeS => sink.push(0x59),
|
1362
|
-
Instruction::I64GeU => sink.push(0x5A),
|
1363
|
-
Instruction::F32Eq => sink.push(0x5B),
|
1364
|
-
Instruction::F32Ne => sink.push(0x5C),
|
1365
|
-
Instruction::F32Lt => sink.push(0x5D),
|
1366
|
-
Instruction::F32Gt => sink.push(0x5E),
|
1367
|
-
Instruction::F32Le => sink.push(0x5F),
|
1368
|
-
Instruction::F32Ge => sink.push(0x60),
|
1369
|
-
Instruction::F64Eq => sink.push(0x61),
|
1370
|
-
Instruction::F64Ne => sink.push(0x62),
|
1371
|
-
Instruction::F64Lt => sink.push(0x63),
|
1372
|
-
Instruction::F64Gt => sink.push(0x64),
|
1373
|
-
Instruction::F64Le => sink.push(0x65),
|
1374
|
-
Instruction::F64Ge => sink.push(0x66),
|
1375
|
-
Instruction::I32Clz => sink.push(0x67),
|
1376
|
-
Instruction::I32Ctz => sink.push(0x68),
|
1377
|
-
Instruction::I32Popcnt => sink.push(0x69),
|
1378
|
-
Instruction::I32Add => sink.push(0x6A),
|
1379
|
-
Instruction::I32Sub => sink.push(0x6B),
|
1380
|
-
Instruction::I32Mul => sink.push(0x6C),
|
1381
|
-
Instruction::I32DivS => sink.push(0x6D),
|
1382
|
-
Instruction::I32DivU => sink.push(0x6E),
|
1383
|
-
Instruction::I32RemS => sink.push(0x6F),
|
1384
|
-
Instruction::I32RemU => sink.push(0x70),
|
1385
|
-
Instruction::I32And => sink.push(0x71),
|
1386
|
-
Instruction::I32Or => sink.push(0x72),
|
1387
|
-
Instruction::I32Xor => sink.push(0x73),
|
1388
|
-
Instruction::I32Shl => sink.push(0x74),
|
1389
|
-
Instruction::I32ShrS => sink.push(0x75),
|
1390
|
-
Instruction::I32ShrU => sink.push(0x76),
|
1391
|
-
Instruction::I32Rotl => sink.push(0x77),
|
1392
|
-
Instruction::I32Rotr => sink.push(0x78),
|
1393
|
-
Instruction::I64Clz => sink.push(0x79),
|
1394
|
-
Instruction::I64Ctz => sink.push(0x7A),
|
1395
|
-
Instruction::I64Popcnt => sink.push(0x7B),
|
1396
|
-
Instruction::I64Add => sink.push(0x7C),
|
1397
|
-
Instruction::I64Sub => sink.push(0x7D),
|
1398
|
-
Instruction::I64Mul => sink.push(0x7E),
|
1399
|
-
Instruction::I64DivS => sink.push(0x7F),
|
1400
|
-
Instruction::I64DivU => sink.push(0x80),
|
1401
|
-
Instruction::I64RemS => sink.push(0x81),
|
1402
|
-
Instruction::I64RemU => sink.push(0x82),
|
1403
|
-
Instruction::I64And => sink.push(0x83),
|
1404
|
-
Instruction::I64Or => sink.push(0x84),
|
1405
|
-
Instruction::I64Xor => sink.push(0x85),
|
1406
|
-
Instruction::I64Shl => sink.push(0x86),
|
1407
|
-
Instruction::I64ShrS => sink.push(0x87),
|
1408
|
-
Instruction::I64ShrU => sink.push(0x88),
|
1409
|
-
Instruction::I64Rotl => sink.push(0x89),
|
1410
|
-
Instruction::I64Rotr => sink.push(0x8A),
|
1411
|
-
Instruction::F32Abs => sink.push(0x8B),
|
1412
|
-
Instruction::F32Neg => sink.push(0x8C),
|
1413
|
-
Instruction::F32Ceil => sink.push(0x8D),
|
1414
|
-
Instruction::F32Floor => sink.push(0x8E),
|
1415
|
-
Instruction::F32Trunc => sink.push(0x8F),
|
1416
|
-
Instruction::F32Nearest => sink.push(0x90),
|
1417
|
-
Instruction::F32Sqrt => sink.push(0x91),
|
1418
|
-
Instruction::F32Add => sink.push(0x92),
|
1419
|
-
Instruction::F32Sub => sink.push(0x93),
|
1420
|
-
Instruction::F32Mul => sink.push(0x94),
|
1421
|
-
Instruction::F32Div => sink.push(0x95),
|
1422
|
-
Instruction::F32Min => sink.push(0x96),
|
1423
|
-
Instruction::F32Max => sink.push(0x97),
|
1424
|
-
Instruction::F32Copysign => sink.push(0x98),
|
1425
|
-
Instruction::F64Abs => sink.push(0x99),
|
1426
|
-
Instruction::F64Neg => sink.push(0x9A),
|
1427
|
-
Instruction::F64Ceil => sink.push(0x9B),
|
1428
|
-
Instruction::F64Floor => sink.push(0x9C),
|
1429
|
-
Instruction::F64Trunc => sink.push(0x9D),
|
1430
|
-
Instruction::F64Nearest => sink.push(0x9E),
|
1431
|
-
Instruction::F64Sqrt => sink.push(0x9F),
|
1432
|
-
Instruction::F64Add => sink.push(0xA0),
|
1433
|
-
Instruction::F64Sub => sink.push(0xA1),
|
1434
|
-
Instruction::F64Mul => sink.push(0xA2),
|
1435
|
-
Instruction::F64Div => sink.push(0xA3),
|
1436
|
-
Instruction::F64Min => sink.push(0xA4),
|
1437
|
-
Instruction::F64Max => sink.push(0xA5),
|
1438
|
-
Instruction::F64Copysign => sink.push(0xA6),
|
1439
|
-
Instruction::I32WrapI64 => sink.push(0xA7),
|
1440
|
-
Instruction::I32TruncF32S => sink.push(0xA8),
|
1441
|
-
Instruction::I32TruncF32U => sink.push(0xA9),
|
1442
|
-
Instruction::I32TruncF64S => sink.push(0xAA),
|
1443
|
-
Instruction::I32TruncF64U => sink.push(0xAB),
|
1444
|
-
Instruction::I64ExtendI32S => sink.push(0xAC),
|
1445
|
-
Instruction::I64ExtendI32U => sink.push(0xAD),
|
1446
|
-
Instruction::I64TruncF32S => sink.push(0xAE),
|
1447
|
-
Instruction::I64TruncF32U => sink.push(0xAF),
|
1448
|
-
Instruction::I64TruncF64S => sink.push(0xB0),
|
1449
|
-
Instruction::I64TruncF64U => sink.push(0xB1),
|
1450
|
-
Instruction::F32ConvertI32S => sink.push(0xB2),
|
1451
|
-
Instruction::F32ConvertI32U => sink.push(0xB3),
|
1452
|
-
Instruction::F32ConvertI64S => sink.push(0xB4),
|
1453
|
-
Instruction::F32ConvertI64U => sink.push(0xB5),
|
1454
|
-
Instruction::F32DemoteF64 => sink.push(0xB6),
|
1455
|
-
Instruction::F64ConvertI32S => sink.push(0xB7),
|
1456
|
-
Instruction::F64ConvertI32U => sink.push(0xB8),
|
1457
|
-
Instruction::F64ConvertI64S => sink.push(0xB9),
|
1458
|
-
Instruction::F64ConvertI64U => sink.push(0xBA),
|
1459
|
-
Instruction::F64PromoteF32 => sink.push(0xBB),
|
1460
|
-
Instruction::I32ReinterpretF32 => sink.push(0xBC),
|
1461
|
-
Instruction::I64ReinterpretF64 => sink.push(0xBD),
|
1462
|
-
Instruction::F32ReinterpretI32 => sink.push(0xBE),
|
1463
|
-
Instruction::F64ReinterpretI64 => sink.push(0xBF),
|
1464
|
-
Instruction::I32Extend8S => sink.push(0xC0),
|
1465
|
-
Instruction::I32Extend16S => sink.push(0xC1),
|
1466
|
-
Instruction::I64Extend8S => sink.push(0xC2),
|
1467
|
-
Instruction::I64Extend16S => sink.push(0xC3),
|
1468
|
-
Instruction::I64Extend32S => sink.push(0xC4),
|
1469
|
-
|
1470
|
-
Instruction::I32TruncSatF32S => {
|
1471
|
-
sink.push(0xFC);
|
1472
|
-
sink.push(0x00);
|
1473
|
-
}
|
1474
|
-
Instruction::I32TruncSatF32U => {
|
1475
|
-
sink.push(0xFC);
|
1476
|
-
sink.push(0x01);
|
1477
|
-
}
|
1478
|
-
Instruction::I32TruncSatF64S => {
|
1479
|
-
sink.push(0xFC);
|
1480
|
-
sink.push(0x02);
|
1481
|
-
}
|
1482
|
-
Instruction::I32TruncSatF64U => {
|
1483
|
-
sink.push(0xFC);
|
1484
|
-
sink.push(0x03);
|
1485
|
-
}
|
1486
|
-
Instruction::I64TruncSatF32S => {
|
1487
|
-
sink.push(0xFC);
|
1488
|
-
sink.push(0x04);
|
1489
|
-
}
|
1490
|
-
Instruction::I64TruncSatF32U => {
|
1491
|
-
sink.push(0xFC);
|
1492
|
-
sink.push(0x05);
|
1493
|
-
}
|
1494
|
-
Instruction::I64TruncSatF64S => {
|
1495
|
-
sink.push(0xFC);
|
1496
|
-
sink.push(0x06);
|
1497
|
-
}
|
1498
|
-
Instruction::I64TruncSatF64U => {
|
1499
|
-
sink.push(0xFC);
|
1500
|
-
sink.push(0x07);
|
1501
|
-
}
|
1502
|
-
|
1503
|
-
// Reference types instructions.
|
1504
|
-
Instruction::RefNull(ty) => {
|
1505
|
-
sink.push(0xd0);
|
1506
|
-
ty.encode(sink);
|
1507
|
-
}
|
1508
|
-
Instruction::RefIsNull => sink.push(0xd1),
|
1509
|
-
Instruction::RefFunc(f) => {
|
1510
|
-
sink.push(0xd2);
|
1511
|
-
f.encode(sink);
|
1512
|
-
}
|
1513
|
-
Instruction::RefEq => sink.push(0xd3),
|
1514
|
-
Instruction::RefAsNonNull => sink.push(0xd4),
|
1515
|
-
|
1516
|
-
// GC instructions.
|
1517
|
-
Instruction::StructNew(type_index) => {
|
1518
|
-
sink.push(0xfb);
|
1519
|
-
sink.push(0x00);
|
1520
|
-
type_index.encode(sink);
|
1521
|
-
}
|
1522
|
-
Instruction::StructNewDefault(type_index) => {
|
1523
|
-
sink.push(0xfb);
|
1524
|
-
sink.push(0x01);
|
1525
|
-
type_index.encode(sink);
|
1526
|
-
}
|
1527
|
-
Instruction::StructGet {
|
1528
|
-
struct_type_index,
|
1529
|
-
field_index,
|
1530
|
-
} => {
|
1531
|
-
sink.push(0xfb);
|
1532
|
-
sink.push(0x02);
|
1533
|
-
struct_type_index.encode(sink);
|
1534
|
-
field_index.encode(sink);
|
1535
|
-
}
|
1536
|
-
Instruction::StructGetS {
|
1537
|
-
struct_type_index,
|
1538
|
-
field_index,
|
1539
|
-
} => {
|
1540
|
-
sink.push(0xfb);
|
1541
|
-
sink.push(0x03);
|
1542
|
-
struct_type_index.encode(sink);
|
1543
|
-
field_index.encode(sink);
|
1544
|
-
}
|
1545
|
-
Instruction::StructGetU {
|
1546
|
-
struct_type_index,
|
1547
|
-
field_index,
|
1548
|
-
} => {
|
1549
|
-
sink.push(0xfb);
|
1550
|
-
sink.push(0x04);
|
1551
|
-
struct_type_index.encode(sink);
|
1552
|
-
field_index.encode(sink);
|
1553
|
-
}
|
1554
|
-
Instruction::StructSet {
|
1555
|
-
struct_type_index,
|
1556
|
-
field_index,
|
1557
|
-
} => {
|
1558
|
-
sink.push(0xfb);
|
1559
|
-
sink.push(0x05);
|
1560
|
-
struct_type_index.encode(sink);
|
1561
|
-
field_index.encode(sink);
|
1562
|
-
}
|
1563
|
-
Instruction::ArrayNew(type_index) => {
|
1564
|
-
sink.push(0xfb);
|
1565
|
-
sink.push(0x06);
|
1566
|
-
type_index.encode(sink);
|
1567
|
-
}
|
1568
|
-
Instruction::ArrayNewDefault(type_index) => {
|
1569
|
-
sink.push(0xfb);
|
1570
|
-
sink.push(0x07);
|
1571
|
-
type_index.encode(sink);
|
1572
|
-
}
|
1573
|
-
Instruction::ArrayNewFixed {
|
1574
|
-
array_type_index,
|
1575
|
-
array_size,
|
1576
|
-
} => {
|
1577
|
-
sink.push(0xfb);
|
1578
|
-
sink.push(0x08);
|
1579
|
-
array_type_index.encode(sink);
|
1580
|
-
array_size.encode(sink);
|
1581
|
-
}
|
1582
|
-
Instruction::ArrayNewData {
|
1583
|
-
array_type_index,
|
1584
|
-
array_data_index,
|
1585
|
-
} => {
|
1586
|
-
sink.push(0xfb);
|
1587
|
-
sink.push(0x09);
|
1588
|
-
array_type_index.encode(sink);
|
1589
|
-
array_data_index.encode(sink);
|
1590
|
-
}
|
1591
|
-
Instruction::ArrayNewElem {
|
1592
|
-
array_type_index,
|
1593
|
-
array_elem_index,
|
1594
|
-
} => {
|
1595
|
-
sink.push(0xfb);
|
1596
|
-
sink.push(0x0a);
|
1597
|
-
array_type_index.encode(sink);
|
1598
|
-
array_elem_index.encode(sink);
|
1599
|
-
}
|
1600
|
-
Instruction::ArrayGet(type_index) => {
|
1601
|
-
sink.push(0xfb);
|
1602
|
-
sink.push(0x0b);
|
1603
|
-
type_index.encode(sink);
|
1604
|
-
}
|
1605
|
-
Instruction::ArrayGetS(type_index) => {
|
1606
|
-
sink.push(0xfb);
|
1607
|
-
sink.push(0x0c);
|
1608
|
-
type_index.encode(sink);
|
1609
|
-
}
|
1610
|
-
Instruction::ArrayGetU(type_index) => {
|
1611
|
-
sink.push(0xfb);
|
1612
|
-
sink.push(0x0d);
|
1613
|
-
type_index.encode(sink);
|
1614
|
-
}
|
1615
|
-
Instruction::ArraySet(type_index) => {
|
1616
|
-
sink.push(0xfb);
|
1617
|
-
sink.push(0x0e);
|
1618
|
-
type_index.encode(sink);
|
1619
|
-
}
|
1620
|
-
Instruction::ArrayLen => {
|
1621
|
-
sink.push(0xfb);
|
1622
|
-
sink.push(0x0f);
|
1623
|
-
}
|
1624
|
-
Instruction::ArrayFill(type_index) => {
|
1625
|
-
sink.push(0xfb);
|
1626
|
-
sink.push(0x10);
|
1627
|
-
type_index.encode(sink);
|
1628
|
-
}
|
1629
|
-
Instruction::ArrayCopy {
|
1630
|
-
array_type_index_dst,
|
1631
|
-
array_type_index_src,
|
1632
|
-
} => {
|
1633
|
-
sink.push(0xfb);
|
1634
|
-
sink.push(0x11);
|
1635
|
-
array_type_index_dst.encode(sink);
|
1636
|
-
array_type_index_src.encode(sink);
|
1637
|
-
}
|
1638
|
-
Instruction::ArrayInitData {
|
1639
|
-
array_type_index,
|
1640
|
-
array_data_index,
|
1641
|
-
} => {
|
1642
|
-
sink.push(0xfb);
|
1643
|
-
sink.push(0x12);
|
1644
|
-
array_type_index.encode(sink);
|
1645
|
-
array_data_index.encode(sink);
|
1646
|
-
}
|
1647
|
-
Instruction::ArrayInitElem {
|
1648
|
-
array_type_index,
|
1649
|
-
array_elem_index,
|
1650
|
-
} => {
|
1651
|
-
sink.push(0xfb);
|
1652
|
-
sink.push(0x13);
|
1653
|
-
array_type_index.encode(sink);
|
1654
|
-
array_elem_index.encode(sink);
|
1655
|
-
}
|
1656
|
-
Instruction::RefTestNonNull(heap_type) => {
|
1657
|
-
sink.push(0xfb);
|
1658
|
-
sink.push(0x14);
|
1659
|
-
heap_type.encode(sink);
|
1660
|
-
}
|
1661
|
-
Instruction::RefTestNullable(heap_type) => {
|
1662
|
-
sink.push(0xfb);
|
1663
|
-
sink.push(0x15);
|
1664
|
-
heap_type.encode(sink);
|
1665
|
-
}
|
1666
|
-
Instruction::RefCastNonNull(heap_type) => {
|
1667
|
-
sink.push(0xfb);
|
1668
|
-
sink.push(0x16);
|
1669
|
-
heap_type.encode(sink);
|
1670
|
-
}
|
1671
|
-
Instruction::RefCastNullable(heap_type) => {
|
1672
|
-
sink.push(0xfb);
|
1673
|
-
sink.push(0x17);
|
1674
|
-
heap_type.encode(sink);
|
1675
|
-
}
|
1676
|
-
Instruction::BrOnCast {
|
1677
|
-
relative_depth,
|
1678
|
-
from_ref_type,
|
1679
|
-
to_ref_type,
|
1680
|
-
} => {
|
1681
|
-
sink.push(0xfb);
|
1682
|
-
sink.push(0x18);
|
1683
|
-
let cast_flags =
|
1684
|
-
(from_ref_type.nullable as u8) | ((to_ref_type.nullable as u8) << 1);
|
1685
|
-
sink.push(cast_flags);
|
1686
|
-
relative_depth.encode(sink);
|
1687
|
-
from_ref_type.heap_type.encode(sink);
|
1688
|
-
to_ref_type.heap_type.encode(sink);
|
1689
|
-
}
|
1690
|
-
Instruction::BrOnCastFail {
|
1691
|
-
relative_depth,
|
1692
|
-
from_ref_type,
|
1693
|
-
to_ref_type,
|
1694
|
-
} => {
|
1695
|
-
sink.push(0xfb);
|
1696
|
-
sink.push(0x19);
|
1697
|
-
let cast_flags =
|
1698
|
-
(from_ref_type.nullable as u8) | ((to_ref_type.nullable as u8) << 1);
|
1699
|
-
sink.push(cast_flags);
|
1700
|
-
relative_depth.encode(sink);
|
1701
|
-
from_ref_type.heap_type.encode(sink);
|
1702
|
-
to_ref_type.heap_type.encode(sink);
|
1703
|
-
}
|
1704
|
-
Instruction::AnyConvertExtern => {
|
1705
|
-
sink.push(0xfb);
|
1706
|
-
sink.push(0x1a);
|
1707
|
-
}
|
1708
|
-
Instruction::ExternConvertAny => {
|
1709
|
-
sink.push(0xfb);
|
1710
|
-
sink.push(0x1b);
|
1711
|
-
}
|
1712
|
-
Instruction::RefI31 => {
|
1713
|
-
sink.push(0xfb);
|
1714
|
-
sink.push(0x1c);
|
1715
|
-
}
|
1716
|
-
Instruction::I31GetS => {
|
1717
|
-
sink.push(0xfb);
|
1718
|
-
sink.push(0x1d);
|
1719
|
-
}
|
1720
|
-
Instruction::I31GetU => {
|
1721
|
-
sink.push(0xfb);
|
1722
|
-
sink.push(0x1e);
|
1723
|
-
}
|
1724
|
-
|
1725
|
-
// Bulk memory instructions.
|
1726
|
-
Instruction::TableInit { elem_index, table } => {
|
1727
|
-
sink.push(0xfc);
|
1728
|
-
sink.push(0x0c);
|
1729
|
-
elem_index.encode(sink);
|
1730
|
-
table.encode(sink);
|
1731
|
-
}
|
1732
|
-
Instruction::ElemDrop(segment) => {
|
1733
|
-
sink.push(0xfc);
|
1734
|
-
sink.push(0x0d);
|
1735
|
-
segment.encode(sink);
|
1736
|
-
}
|
1737
|
-
Instruction::TableCopy {
|
1738
|
-
src_table,
|
1739
|
-
dst_table,
|
1740
|
-
} => {
|
1741
|
-
sink.push(0xfc);
|
1742
|
-
sink.push(0x0e);
|
1743
|
-
dst_table.encode(sink);
|
1744
|
-
src_table.encode(sink);
|
1745
|
-
}
|
1746
|
-
Instruction::TableGrow(table) => {
|
1747
|
-
sink.push(0xfc);
|
1748
|
-
sink.push(0x0f);
|
1749
|
-
table.encode(sink);
|
1750
|
-
}
|
1751
|
-
Instruction::TableSize(table) => {
|
1752
|
-
sink.push(0xfc);
|
1753
|
-
sink.push(0x10);
|
1754
|
-
table.encode(sink);
|
1755
|
-
}
|
1756
|
-
Instruction::TableFill(table) => {
|
1757
|
-
sink.push(0xfc);
|
1758
|
-
sink.push(0x11);
|
1759
|
-
table.encode(sink);
|
1760
|
-
}
|
1761
|
-
|
1762
|
-
// SIMD instructions.
|
1763
|
-
Instruction::V128Load(memarg) => {
|
1764
|
-
sink.push(0xFD);
|
1765
|
-
0x00u32.encode(sink);
|
1766
|
-
memarg.encode(sink);
|
1767
|
-
}
|
1768
|
-
Instruction::V128Load8x8S(memarg) => {
|
1769
|
-
sink.push(0xFD);
|
1770
|
-
0x01u32.encode(sink);
|
1771
|
-
memarg.encode(sink);
|
1772
|
-
}
|
1773
|
-
Instruction::V128Load8x8U(memarg) => {
|
1774
|
-
sink.push(0xFD);
|
1775
|
-
0x02u32.encode(sink);
|
1776
|
-
memarg.encode(sink);
|
1777
|
-
}
|
1778
|
-
Instruction::V128Load16x4S(memarg) => {
|
1779
|
-
sink.push(0xFD);
|
1780
|
-
0x03u32.encode(sink);
|
1781
|
-
memarg.encode(sink);
|
1782
|
-
}
|
1783
|
-
Instruction::V128Load16x4U(memarg) => {
|
1784
|
-
sink.push(0xFD);
|
1785
|
-
0x04u32.encode(sink);
|
1786
|
-
memarg.encode(sink);
|
1787
|
-
}
|
1788
|
-
Instruction::V128Load32x2S(memarg) => {
|
1789
|
-
sink.push(0xFD);
|
1790
|
-
0x05u32.encode(sink);
|
1791
|
-
memarg.encode(sink);
|
1792
|
-
}
|
1793
|
-
Instruction::V128Load32x2U(memarg) => {
|
1794
|
-
sink.push(0xFD);
|
1795
|
-
0x06u32.encode(sink);
|
1796
|
-
memarg.encode(sink);
|
1797
|
-
}
|
1798
|
-
Instruction::V128Load8Splat(memarg) => {
|
1799
|
-
sink.push(0xFD);
|
1800
|
-
0x07u32.encode(sink);
|
1801
|
-
memarg.encode(sink);
|
1802
|
-
}
|
1803
|
-
Instruction::V128Load16Splat(memarg) => {
|
1804
|
-
sink.push(0xFD);
|
1805
|
-
0x08u32.encode(sink);
|
1806
|
-
memarg.encode(sink);
|
1807
|
-
}
|
1808
|
-
Instruction::V128Load32Splat(memarg) => {
|
1809
|
-
sink.push(0xFD);
|
1810
|
-
0x09u32.encode(sink);
|
1811
|
-
memarg.encode(sink);
|
1812
|
-
}
|
1813
|
-
Instruction::V128Load64Splat(memarg) => {
|
1814
|
-
sink.push(0xFD);
|
1815
|
-
0x0Au32.encode(sink);
|
1816
|
-
memarg.encode(sink);
|
1817
|
-
}
|
1818
|
-
Instruction::V128Store(memarg) => {
|
1819
|
-
sink.push(0xFD);
|
1820
|
-
0x0Bu32.encode(sink);
|
1821
|
-
memarg.encode(sink);
|
1822
|
-
}
|
1823
|
-
Instruction::V128Const(x) => {
|
1824
|
-
sink.push(0xFD);
|
1825
|
-
0x0Cu32.encode(sink);
|
1826
|
-
sink.extend(x.to_le_bytes().iter().copied());
|
1827
|
-
}
|
1828
|
-
Instruction::I8x16Shuffle(lanes) => {
|
1829
|
-
sink.push(0xFD);
|
1830
|
-
0x0Du32.encode(sink);
|
1831
|
-
assert!(lanes.iter().all(|l: &u8| *l < 32));
|
1832
|
-
sink.extend(lanes.iter().copied());
|
1833
|
-
}
|
1834
|
-
Instruction::I8x16Swizzle => {
|
1835
|
-
sink.push(0xFD);
|
1836
|
-
0x0Eu32.encode(sink);
|
1837
|
-
}
|
1838
|
-
Instruction::I8x16Splat => {
|
1839
|
-
sink.push(0xFD);
|
1840
|
-
0x0Fu32.encode(sink);
|
1841
|
-
}
|
1842
|
-
Instruction::I16x8Splat => {
|
1843
|
-
sink.push(0xFD);
|
1844
|
-
0x10u32.encode(sink);
|
1845
|
-
}
|
1846
|
-
Instruction::I32x4Splat => {
|
1847
|
-
sink.push(0xFD);
|
1848
|
-
0x11u32.encode(sink);
|
1849
|
-
}
|
1850
|
-
Instruction::I64x2Splat => {
|
1851
|
-
sink.push(0xFD);
|
1852
|
-
0x12u32.encode(sink);
|
1853
|
-
}
|
1854
|
-
Instruction::F32x4Splat => {
|
1855
|
-
sink.push(0xFD);
|
1856
|
-
0x13u32.encode(sink);
|
1857
|
-
}
|
1858
|
-
Instruction::F64x2Splat => {
|
1859
|
-
sink.push(0xFD);
|
1860
|
-
0x14u32.encode(sink);
|
1861
|
-
}
|
1862
|
-
Instruction::I8x16ExtractLaneS(lane) => {
|
1863
|
-
sink.push(0xFD);
|
1864
|
-
0x15u32.encode(sink);
|
1865
|
-
assert!(lane < 16);
|
1866
|
-
sink.push(lane);
|
1867
|
-
}
|
1868
|
-
Instruction::I8x16ExtractLaneU(lane) => {
|
1869
|
-
sink.push(0xFD);
|
1870
|
-
0x16u32.encode(sink);
|
1871
|
-
assert!(lane < 16);
|
1872
|
-
sink.push(lane);
|
1873
|
-
}
|
1874
|
-
Instruction::I8x16ReplaceLane(lane) => {
|
1875
|
-
sink.push(0xFD);
|
1876
|
-
0x17u32.encode(sink);
|
1877
|
-
assert!(lane < 16);
|
1878
|
-
sink.push(lane);
|
1879
|
-
}
|
1880
|
-
Instruction::I16x8ExtractLaneS(lane) => {
|
1881
|
-
sink.push(0xFD);
|
1882
|
-
0x18u32.encode(sink);
|
1883
|
-
assert!(lane < 8);
|
1884
|
-
sink.push(lane);
|
1885
|
-
}
|
1886
|
-
Instruction::I16x8ExtractLaneU(lane) => {
|
1887
|
-
sink.push(0xFD);
|
1888
|
-
0x19u32.encode(sink);
|
1889
|
-
assert!(lane < 8);
|
1890
|
-
sink.push(lane);
|
1891
|
-
}
|
1892
|
-
Instruction::I16x8ReplaceLane(lane) => {
|
1893
|
-
sink.push(0xFD);
|
1894
|
-
0x1Au32.encode(sink);
|
1895
|
-
assert!(lane < 8);
|
1896
|
-
sink.push(lane);
|
1897
|
-
}
|
1898
|
-
Instruction::I32x4ExtractLane(lane) => {
|
1899
|
-
sink.push(0xFD);
|
1900
|
-
0x1Bu32.encode(sink);
|
1901
|
-
assert!(lane < 4);
|
1902
|
-
sink.push(lane);
|
1903
|
-
}
|
1904
|
-
Instruction::I32x4ReplaceLane(lane) => {
|
1905
|
-
sink.push(0xFD);
|
1906
|
-
0x1Cu32.encode(sink);
|
1907
|
-
assert!(lane < 4);
|
1908
|
-
sink.push(lane);
|
1909
|
-
}
|
1910
|
-
Instruction::I64x2ExtractLane(lane) => {
|
1911
|
-
sink.push(0xFD);
|
1912
|
-
0x1Du32.encode(sink);
|
1913
|
-
assert!(lane < 2);
|
1914
|
-
sink.push(lane);
|
1915
|
-
}
|
1916
|
-
Instruction::I64x2ReplaceLane(lane) => {
|
1917
|
-
sink.push(0xFD);
|
1918
|
-
0x1Eu32.encode(sink);
|
1919
|
-
assert!(lane < 2);
|
1920
|
-
sink.push(lane);
|
1921
|
-
}
|
1922
|
-
Instruction::F32x4ExtractLane(lane) => {
|
1923
|
-
sink.push(0xFD);
|
1924
|
-
0x1Fu32.encode(sink);
|
1925
|
-
assert!(lane < 4);
|
1926
|
-
sink.push(lane);
|
1927
|
-
}
|
1928
|
-
Instruction::F32x4ReplaceLane(lane) => {
|
1929
|
-
sink.push(0xFD);
|
1930
|
-
0x20u32.encode(sink);
|
1931
|
-
assert!(lane < 4);
|
1932
|
-
sink.push(lane);
|
1933
|
-
}
|
1934
|
-
Instruction::F64x2ExtractLane(lane) => {
|
1935
|
-
sink.push(0xFD);
|
1936
|
-
0x21u32.encode(sink);
|
1937
|
-
assert!(lane < 2);
|
1938
|
-
sink.push(lane);
|
1939
|
-
}
|
1940
|
-
Instruction::F64x2ReplaceLane(lane) => {
|
1941
|
-
sink.push(0xFD);
|
1942
|
-
0x22u32.encode(sink);
|
1943
|
-
assert!(lane < 2);
|
1944
|
-
sink.push(lane);
|
1945
|
-
}
|
1946
|
-
|
1947
|
-
Instruction::I8x16Eq => {
|
1948
|
-
sink.push(0xFD);
|
1949
|
-
0x23u32.encode(sink);
|
1950
|
-
}
|
1951
|
-
Instruction::I8x16Ne => {
|
1952
|
-
sink.push(0xFD);
|
1953
|
-
0x24u32.encode(sink);
|
1954
|
-
}
|
1955
|
-
Instruction::I8x16LtS => {
|
1956
|
-
sink.push(0xFD);
|
1957
|
-
0x25u32.encode(sink);
|
1958
|
-
}
|
1959
|
-
Instruction::I8x16LtU => {
|
1960
|
-
sink.push(0xFD);
|
1961
|
-
0x26u32.encode(sink);
|
1962
|
-
}
|
1963
|
-
Instruction::I8x16GtS => {
|
1964
|
-
sink.push(0xFD);
|
1965
|
-
0x27u32.encode(sink);
|
1966
|
-
}
|
1967
|
-
Instruction::I8x16GtU => {
|
1968
|
-
sink.push(0xFD);
|
1969
|
-
0x28u32.encode(sink);
|
1970
|
-
}
|
1971
|
-
Instruction::I8x16LeS => {
|
1972
|
-
sink.push(0xFD);
|
1973
|
-
0x29u32.encode(sink);
|
1974
|
-
}
|
1975
|
-
Instruction::I8x16LeU => {
|
1976
|
-
sink.push(0xFD);
|
1977
|
-
0x2Au32.encode(sink);
|
1978
|
-
}
|
1979
|
-
Instruction::I8x16GeS => {
|
1980
|
-
sink.push(0xFD);
|
1981
|
-
0x2Bu32.encode(sink);
|
1982
|
-
}
|
1983
|
-
Instruction::I8x16GeU => {
|
1984
|
-
sink.push(0xFD);
|
1985
|
-
0x2Cu32.encode(sink);
|
1986
|
-
}
|
1987
|
-
Instruction::I16x8Eq => {
|
1988
|
-
sink.push(0xFD);
|
1989
|
-
0x2Du32.encode(sink);
|
1990
|
-
}
|
1991
|
-
Instruction::I16x8Ne => {
|
1992
|
-
sink.push(0xFD);
|
1993
|
-
0x2Eu32.encode(sink);
|
1994
|
-
}
|
1995
|
-
Instruction::I16x8LtS => {
|
1996
|
-
sink.push(0xFD);
|
1997
|
-
0x2Fu32.encode(sink);
|
1998
|
-
}
|
1999
|
-
Instruction::I16x8LtU => {
|
2000
|
-
sink.push(0xFD);
|
2001
|
-
0x30u32.encode(sink);
|
2002
|
-
}
|
2003
|
-
Instruction::I16x8GtS => {
|
2004
|
-
sink.push(0xFD);
|
2005
|
-
0x31u32.encode(sink);
|
2006
|
-
}
|
2007
|
-
Instruction::I16x8GtU => {
|
2008
|
-
sink.push(0xFD);
|
2009
|
-
0x32u32.encode(sink);
|
2010
|
-
}
|
2011
|
-
Instruction::I16x8LeS => {
|
2012
|
-
sink.push(0xFD);
|
2013
|
-
0x33u32.encode(sink);
|
2014
|
-
}
|
2015
|
-
Instruction::I16x8LeU => {
|
2016
|
-
sink.push(0xFD);
|
2017
|
-
0x34u32.encode(sink);
|
2018
|
-
}
|
2019
|
-
Instruction::I16x8GeS => {
|
2020
|
-
sink.push(0xFD);
|
2021
|
-
0x35u32.encode(sink);
|
2022
|
-
}
|
2023
|
-
Instruction::I16x8GeU => {
|
2024
|
-
sink.push(0xFD);
|
2025
|
-
0x36u32.encode(sink);
|
2026
|
-
}
|
2027
|
-
Instruction::I32x4Eq => {
|
2028
|
-
sink.push(0xFD);
|
2029
|
-
0x37u32.encode(sink);
|
2030
|
-
}
|
2031
|
-
Instruction::I32x4Ne => {
|
2032
|
-
sink.push(0xFD);
|
2033
|
-
0x38u32.encode(sink);
|
2034
|
-
}
|
2035
|
-
Instruction::I32x4LtS => {
|
2036
|
-
sink.push(0xFD);
|
2037
|
-
0x39u32.encode(sink);
|
2038
|
-
}
|
2039
|
-
Instruction::I32x4LtU => {
|
2040
|
-
sink.push(0xFD);
|
2041
|
-
0x3Au32.encode(sink);
|
2042
|
-
}
|
2043
|
-
Instruction::I32x4GtS => {
|
2044
|
-
sink.push(0xFD);
|
2045
|
-
0x3Bu32.encode(sink);
|
2046
|
-
}
|
2047
|
-
Instruction::I32x4GtU => {
|
2048
|
-
sink.push(0xFD);
|
2049
|
-
0x3Cu32.encode(sink);
|
2050
|
-
}
|
2051
|
-
Instruction::I32x4LeS => {
|
2052
|
-
sink.push(0xFD);
|
2053
|
-
0x3Du32.encode(sink);
|
2054
|
-
}
|
2055
|
-
Instruction::I32x4LeU => {
|
2056
|
-
sink.push(0xFD);
|
2057
|
-
0x3Eu32.encode(sink);
|
2058
|
-
}
|
2059
|
-
Instruction::I32x4GeS => {
|
2060
|
-
sink.push(0xFD);
|
2061
|
-
0x3Fu32.encode(sink);
|
2062
|
-
}
|
2063
|
-
Instruction::I32x4GeU => {
|
2064
|
-
sink.push(0xFD);
|
2065
|
-
0x40u32.encode(sink);
|
2066
|
-
}
|
2067
|
-
Instruction::F32x4Eq => {
|
2068
|
-
sink.push(0xFD);
|
2069
|
-
0x41u32.encode(sink);
|
2070
|
-
}
|
2071
|
-
Instruction::F32x4Ne => {
|
2072
|
-
sink.push(0xFD);
|
2073
|
-
0x42u32.encode(sink);
|
2074
|
-
}
|
2075
|
-
Instruction::F32x4Lt => {
|
2076
|
-
sink.push(0xFD);
|
2077
|
-
0x43u32.encode(sink);
|
2078
|
-
}
|
2079
|
-
Instruction::F32x4Gt => {
|
2080
|
-
sink.push(0xFD);
|
2081
|
-
0x44u32.encode(sink);
|
2082
|
-
}
|
2083
|
-
Instruction::F32x4Le => {
|
2084
|
-
sink.push(0xFD);
|
2085
|
-
0x45u32.encode(sink);
|
2086
|
-
}
|
2087
|
-
Instruction::F32x4Ge => {
|
2088
|
-
sink.push(0xFD);
|
2089
|
-
0x46u32.encode(sink);
|
2090
|
-
}
|
2091
|
-
Instruction::F64x2Eq => {
|
2092
|
-
sink.push(0xFD);
|
2093
|
-
0x47u32.encode(sink);
|
2094
|
-
}
|
2095
|
-
Instruction::F64x2Ne => {
|
2096
|
-
sink.push(0xFD);
|
2097
|
-
0x48u32.encode(sink);
|
2098
|
-
}
|
2099
|
-
Instruction::F64x2Lt => {
|
2100
|
-
sink.push(0xFD);
|
2101
|
-
0x49u32.encode(sink);
|
2102
|
-
}
|
2103
|
-
Instruction::F64x2Gt => {
|
2104
|
-
sink.push(0xFD);
|
2105
|
-
0x4Au32.encode(sink);
|
2106
|
-
}
|
2107
|
-
Instruction::F64x2Le => {
|
2108
|
-
sink.push(0xFD);
|
2109
|
-
0x4Bu32.encode(sink);
|
2110
|
-
}
|
2111
|
-
Instruction::F64x2Ge => {
|
2112
|
-
sink.push(0xFD);
|
2113
|
-
0x4Cu32.encode(sink);
|
2114
|
-
}
|
2115
|
-
Instruction::V128Not => {
|
2116
|
-
sink.push(0xFD);
|
2117
|
-
0x4Du32.encode(sink);
|
2118
|
-
}
|
2119
|
-
Instruction::V128And => {
|
2120
|
-
sink.push(0xFD);
|
2121
|
-
0x4Eu32.encode(sink);
|
2122
|
-
}
|
2123
|
-
Instruction::V128AndNot => {
|
2124
|
-
sink.push(0xFD);
|
2125
|
-
0x4Fu32.encode(sink);
|
2126
|
-
}
|
2127
|
-
Instruction::V128Or => {
|
2128
|
-
sink.push(0xFD);
|
2129
|
-
0x50u32.encode(sink);
|
2130
|
-
}
|
2131
|
-
Instruction::V128Xor => {
|
2132
|
-
sink.push(0xFD);
|
2133
|
-
0x51u32.encode(sink);
|
2134
|
-
}
|
2135
|
-
Instruction::V128Bitselect => {
|
2136
|
-
sink.push(0xFD);
|
2137
|
-
0x52u32.encode(sink);
|
2138
|
-
}
|
2139
|
-
Instruction::V128AnyTrue => {
|
2140
|
-
sink.push(0xFD);
|
2141
|
-
0x53u32.encode(sink);
|
2142
|
-
}
|
2143
|
-
Instruction::I8x16Abs => {
|
2144
|
-
sink.push(0xFD);
|
2145
|
-
0x60u32.encode(sink);
|
2146
|
-
}
|
2147
|
-
Instruction::I8x16Neg => {
|
2148
|
-
sink.push(0xFD);
|
2149
|
-
0x61u32.encode(sink);
|
2150
|
-
}
|
2151
|
-
Instruction::I8x16Popcnt => {
|
2152
|
-
sink.push(0xFD);
|
2153
|
-
0x62u32.encode(sink);
|
2154
|
-
}
|
2155
|
-
Instruction::I8x16AllTrue => {
|
2156
|
-
sink.push(0xFD);
|
2157
|
-
0x63u32.encode(sink);
|
2158
|
-
}
|
2159
|
-
Instruction::I8x16Bitmask => {
|
2160
|
-
sink.push(0xFD);
|
2161
|
-
0x64u32.encode(sink);
|
2162
|
-
}
|
2163
|
-
Instruction::I8x16NarrowI16x8S => {
|
2164
|
-
sink.push(0xFD);
|
2165
|
-
0x65u32.encode(sink);
|
2166
|
-
}
|
2167
|
-
Instruction::I8x16NarrowI16x8U => {
|
2168
|
-
sink.push(0xFD);
|
2169
|
-
0x66u32.encode(sink);
|
2170
|
-
}
|
2171
|
-
Instruction::I8x16Shl => {
|
2172
|
-
sink.push(0xFD);
|
2173
|
-
0x6bu32.encode(sink);
|
2174
|
-
}
|
2175
|
-
Instruction::I8x16ShrS => {
|
2176
|
-
sink.push(0xFD);
|
2177
|
-
0x6cu32.encode(sink);
|
2178
|
-
}
|
2179
|
-
Instruction::I8x16ShrU => {
|
2180
|
-
sink.push(0xFD);
|
2181
|
-
0x6du32.encode(sink);
|
2182
|
-
}
|
2183
|
-
Instruction::I8x16Add => {
|
2184
|
-
sink.push(0xFD);
|
2185
|
-
0x6eu32.encode(sink);
|
2186
|
-
}
|
2187
|
-
Instruction::I8x16AddSatS => {
|
2188
|
-
sink.push(0xFD);
|
2189
|
-
0x6fu32.encode(sink);
|
2190
|
-
}
|
2191
|
-
Instruction::I8x16AddSatU => {
|
2192
|
-
sink.push(0xFD);
|
2193
|
-
0x70u32.encode(sink);
|
2194
|
-
}
|
2195
|
-
Instruction::I8x16Sub => {
|
2196
|
-
sink.push(0xFD);
|
2197
|
-
0x71u32.encode(sink);
|
2198
|
-
}
|
2199
|
-
Instruction::I8x16SubSatS => {
|
2200
|
-
sink.push(0xFD);
|
2201
|
-
0x72u32.encode(sink);
|
2202
|
-
}
|
2203
|
-
Instruction::I8x16SubSatU => {
|
2204
|
-
sink.push(0xFD);
|
2205
|
-
0x73u32.encode(sink);
|
2206
|
-
}
|
2207
|
-
Instruction::I8x16MinS => {
|
2208
|
-
sink.push(0xFD);
|
2209
|
-
0x76u32.encode(sink);
|
2210
|
-
}
|
2211
|
-
Instruction::I8x16MinU => {
|
2212
|
-
sink.push(0xFD);
|
2213
|
-
0x77u32.encode(sink);
|
2214
|
-
}
|
2215
|
-
Instruction::I8x16MaxS => {
|
2216
|
-
sink.push(0xFD);
|
2217
|
-
0x78u32.encode(sink);
|
2218
|
-
}
|
2219
|
-
Instruction::I8x16MaxU => {
|
2220
|
-
sink.push(0xFD);
|
2221
|
-
0x79u32.encode(sink);
|
2222
|
-
}
|
2223
|
-
Instruction::I8x16AvgrU => {
|
2224
|
-
sink.push(0xFD);
|
2225
|
-
0x7Bu32.encode(sink);
|
2226
|
-
}
|
2227
|
-
Instruction::I16x8ExtAddPairwiseI8x16S => {
|
2228
|
-
sink.push(0xFD);
|
2229
|
-
0x7Cu32.encode(sink);
|
2230
|
-
}
|
2231
|
-
Instruction::I16x8ExtAddPairwiseI8x16U => {
|
2232
|
-
sink.push(0xFD);
|
2233
|
-
0x7Du32.encode(sink);
|
2234
|
-
}
|
2235
|
-
Instruction::I32x4ExtAddPairwiseI16x8S => {
|
2236
|
-
sink.push(0xFD);
|
2237
|
-
0x7Eu32.encode(sink);
|
2238
|
-
}
|
2239
|
-
Instruction::I32x4ExtAddPairwiseI16x8U => {
|
2240
|
-
sink.push(0xFD);
|
2241
|
-
0x7Fu32.encode(sink);
|
2242
|
-
}
|
2243
|
-
Instruction::I16x8Abs => {
|
2244
|
-
sink.push(0xFD);
|
2245
|
-
0x80u32.encode(sink);
|
2246
|
-
}
|
2247
|
-
Instruction::I16x8Neg => {
|
2248
|
-
sink.push(0xFD);
|
2249
|
-
0x81u32.encode(sink);
|
2250
|
-
}
|
2251
|
-
Instruction::I16x8Q15MulrSatS => {
|
2252
|
-
sink.push(0xFD);
|
2253
|
-
0x82u32.encode(sink);
|
2254
|
-
}
|
2255
|
-
Instruction::I16x8AllTrue => {
|
2256
|
-
sink.push(0xFD);
|
2257
|
-
0x83u32.encode(sink);
|
2258
|
-
}
|
2259
|
-
Instruction::I16x8Bitmask => {
|
2260
|
-
sink.push(0xFD);
|
2261
|
-
0x84u32.encode(sink);
|
2262
|
-
}
|
2263
|
-
Instruction::I16x8NarrowI32x4S => {
|
2264
|
-
sink.push(0xFD);
|
2265
|
-
0x85u32.encode(sink);
|
2266
|
-
}
|
2267
|
-
Instruction::I16x8NarrowI32x4U => {
|
2268
|
-
sink.push(0xFD);
|
2269
|
-
0x86u32.encode(sink);
|
2270
|
-
}
|
2271
|
-
Instruction::I16x8ExtendLowI8x16S => {
|
2272
|
-
sink.push(0xFD);
|
2273
|
-
0x87u32.encode(sink);
|
2274
|
-
}
|
2275
|
-
Instruction::I16x8ExtendHighI8x16S => {
|
2276
|
-
sink.push(0xFD);
|
2277
|
-
0x88u32.encode(sink);
|
2278
|
-
}
|
2279
|
-
Instruction::I16x8ExtendLowI8x16U => {
|
2280
|
-
sink.push(0xFD);
|
2281
|
-
0x89u32.encode(sink);
|
2282
|
-
}
|
2283
|
-
Instruction::I16x8ExtendHighI8x16U => {
|
2284
|
-
sink.push(0xFD);
|
2285
|
-
0x8Au32.encode(sink);
|
2286
|
-
}
|
2287
|
-
Instruction::I16x8Shl => {
|
2288
|
-
sink.push(0xFD);
|
2289
|
-
0x8Bu32.encode(sink);
|
2290
|
-
}
|
2291
|
-
Instruction::I16x8ShrS => {
|
2292
|
-
sink.push(0xFD);
|
2293
|
-
0x8Cu32.encode(sink);
|
2294
|
-
}
|
2295
|
-
Instruction::I16x8ShrU => {
|
2296
|
-
sink.push(0xFD);
|
2297
|
-
0x8Du32.encode(sink);
|
2298
|
-
}
|
2299
|
-
Instruction::I16x8Add => {
|
2300
|
-
sink.push(0xFD);
|
2301
|
-
0x8Eu32.encode(sink);
|
2302
|
-
}
|
2303
|
-
Instruction::I16x8AddSatS => {
|
2304
|
-
sink.push(0xFD);
|
2305
|
-
0x8Fu32.encode(sink);
|
2306
|
-
}
|
2307
|
-
Instruction::I16x8AddSatU => {
|
2308
|
-
sink.push(0xFD);
|
2309
|
-
0x90u32.encode(sink);
|
2310
|
-
}
|
2311
|
-
Instruction::I16x8Sub => {
|
2312
|
-
sink.push(0xFD);
|
2313
|
-
0x91u32.encode(sink);
|
2314
|
-
}
|
2315
|
-
Instruction::I16x8SubSatS => {
|
2316
|
-
sink.push(0xFD);
|
2317
|
-
0x92u32.encode(sink);
|
2318
|
-
}
|
2319
|
-
Instruction::I16x8SubSatU => {
|
2320
|
-
sink.push(0xFD);
|
2321
|
-
0x93u32.encode(sink);
|
2322
|
-
}
|
2323
|
-
Instruction::I16x8Mul => {
|
2324
|
-
sink.push(0xFD);
|
2325
|
-
0x95u32.encode(sink);
|
2326
|
-
}
|
2327
|
-
Instruction::I16x8MinS => {
|
2328
|
-
sink.push(0xFD);
|
2329
|
-
0x96u32.encode(sink);
|
2330
|
-
}
|
2331
|
-
Instruction::I16x8MinU => {
|
2332
|
-
sink.push(0xFD);
|
2333
|
-
0x97u32.encode(sink);
|
2334
|
-
}
|
2335
|
-
Instruction::I16x8MaxS => {
|
2336
|
-
sink.push(0xFD);
|
2337
|
-
0x98u32.encode(sink);
|
2338
|
-
}
|
2339
|
-
Instruction::I16x8MaxU => {
|
2340
|
-
sink.push(0xFD);
|
2341
|
-
0x99u32.encode(sink);
|
2342
|
-
}
|
2343
|
-
Instruction::I16x8AvgrU => {
|
2344
|
-
sink.push(0xFD);
|
2345
|
-
0x9Bu32.encode(sink);
|
2346
|
-
}
|
2347
|
-
Instruction::I16x8ExtMulLowI8x16S => {
|
2348
|
-
sink.push(0xFD);
|
2349
|
-
0x9Cu32.encode(sink);
|
2350
|
-
}
|
2351
|
-
Instruction::I16x8ExtMulHighI8x16S => {
|
2352
|
-
sink.push(0xFD);
|
2353
|
-
0x9Du32.encode(sink);
|
2354
|
-
}
|
2355
|
-
Instruction::I16x8ExtMulLowI8x16U => {
|
2356
|
-
sink.push(0xFD);
|
2357
|
-
0x9Eu32.encode(sink);
|
2358
|
-
}
|
2359
|
-
Instruction::I16x8ExtMulHighI8x16U => {
|
2360
|
-
sink.push(0xFD);
|
2361
|
-
0x9Fu32.encode(sink);
|
2362
|
-
}
|
2363
|
-
Instruction::I32x4Abs => {
|
2364
|
-
sink.push(0xFD);
|
2365
|
-
0xA0u32.encode(sink);
|
2366
|
-
}
|
2367
|
-
Instruction::I32x4Neg => {
|
2368
|
-
sink.push(0xFD);
|
2369
|
-
0xA1u32.encode(sink);
|
2370
|
-
}
|
2371
|
-
Instruction::I32x4AllTrue => {
|
2372
|
-
sink.push(0xFD);
|
2373
|
-
0xA3u32.encode(sink);
|
2374
|
-
}
|
2375
|
-
Instruction::I32x4Bitmask => {
|
2376
|
-
sink.push(0xFD);
|
2377
|
-
0xA4u32.encode(sink);
|
2378
|
-
}
|
2379
|
-
Instruction::I32x4ExtendLowI16x8S => {
|
2380
|
-
sink.push(0xFD);
|
2381
|
-
0xA7u32.encode(sink);
|
2382
|
-
}
|
2383
|
-
Instruction::I32x4ExtendHighI16x8S => {
|
2384
|
-
sink.push(0xFD);
|
2385
|
-
0xA8u32.encode(sink);
|
2386
|
-
}
|
2387
|
-
Instruction::I32x4ExtendLowI16x8U => {
|
2388
|
-
sink.push(0xFD);
|
2389
|
-
0xA9u32.encode(sink);
|
2390
|
-
}
|
2391
|
-
Instruction::I32x4ExtendHighI16x8U => {
|
2392
|
-
sink.push(0xFD);
|
2393
|
-
0xAAu32.encode(sink);
|
2394
|
-
}
|
2395
|
-
Instruction::I32x4Shl => {
|
2396
|
-
sink.push(0xFD);
|
2397
|
-
0xABu32.encode(sink);
|
2398
|
-
}
|
2399
|
-
Instruction::I32x4ShrS => {
|
2400
|
-
sink.push(0xFD);
|
2401
|
-
0xACu32.encode(sink);
|
2402
|
-
}
|
2403
|
-
Instruction::I32x4ShrU => {
|
2404
|
-
sink.push(0xFD);
|
2405
|
-
0xADu32.encode(sink);
|
2406
|
-
}
|
2407
|
-
Instruction::I32x4Add => {
|
2408
|
-
sink.push(0xFD);
|
2409
|
-
0xAEu32.encode(sink);
|
2410
|
-
}
|
2411
|
-
Instruction::I32x4Sub => {
|
2412
|
-
sink.push(0xFD);
|
2413
|
-
0xB1u32.encode(sink);
|
2414
|
-
}
|
2415
|
-
Instruction::I32x4Mul => {
|
2416
|
-
sink.push(0xFD);
|
2417
|
-
0xB5u32.encode(sink);
|
2418
|
-
}
|
2419
|
-
Instruction::I32x4MinS => {
|
2420
|
-
sink.push(0xFD);
|
2421
|
-
0xB6u32.encode(sink);
|
2422
|
-
}
|
2423
|
-
Instruction::I32x4MinU => {
|
2424
|
-
sink.push(0xFD);
|
2425
|
-
0xB7u32.encode(sink);
|
2426
|
-
}
|
2427
|
-
Instruction::I32x4MaxS => {
|
2428
|
-
sink.push(0xFD);
|
2429
|
-
0xB8u32.encode(sink);
|
2430
|
-
}
|
2431
|
-
Instruction::I32x4MaxU => {
|
2432
|
-
sink.push(0xFD);
|
2433
|
-
0xB9u32.encode(sink);
|
2434
|
-
}
|
2435
|
-
Instruction::I32x4DotI16x8S => {
|
2436
|
-
sink.push(0xFD);
|
2437
|
-
0xBAu32.encode(sink);
|
2438
|
-
}
|
2439
|
-
Instruction::I32x4ExtMulLowI16x8S => {
|
2440
|
-
sink.push(0xFD);
|
2441
|
-
0xBCu32.encode(sink);
|
2442
|
-
}
|
2443
|
-
Instruction::I32x4ExtMulHighI16x8S => {
|
2444
|
-
sink.push(0xFD);
|
2445
|
-
0xBDu32.encode(sink);
|
2446
|
-
}
|
2447
|
-
Instruction::I32x4ExtMulLowI16x8U => {
|
2448
|
-
sink.push(0xFD);
|
2449
|
-
0xBEu32.encode(sink);
|
2450
|
-
}
|
2451
|
-
Instruction::I32x4ExtMulHighI16x8U => {
|
2452
|
-
sink.push(0xFD);
|
2453
|
-
0xBFu32.encode(sink);
|
2454
|
-
}
|
2455
|
-
Instruction::I64x2Abs => {
|
2456
|
-
sink.push(0xFD);
|
2457
|
-
0xC0u32.encode(sink);
|
2458
|
-
}
|
2459
|
-
Instruction::I64x2Neg => {
|
2460
|
-
sink.push(0xFD);
|
2461
|
-
0xC1u32.encode(sink);
|
2462
|
-
}
|
2463
|
-
Instruction::I64x2AllTrue => {
|
2464
|
-
sink.push(0xFD);
|
2465
|
-
0xC3u32.encode(sink);
|
2466
|
-
}
|
2467
|
-
Instruction::I64x2Bitmask => {
|
2468
|
-
sink.push(0xFD);
|
2469
|
-
0xC4u32.encode(sink);
|
2470
|
-
}
|
2471
|
-
Instruction::I64x2ExtendLowI32x4S => {
|
2472
|
-
sink.push(0xFD);
|
2473
|
-
0xC7u32.encode(sink);
|
2474
|
-
}
|
2475
|
-
Instruction::I64x2ExtendHighI32x4S => {
|
2476
|
-
sink.push(0xFD);
|
2477
|
-
0xC8u32.encode(sink);
|
2478
|
-
}
|
2479
|
-
Instruction::I64x2ExtendLowI32x4U => {
|
2480
|
-
sink.push(0xFD);
|
2481
|
-
0xC9u32.encode(sink);
|
2482
|
-
}
|
2483
|
-
Instruction::I64x2ExtendHighI32x4U => {
|
2484
|
-
sink.push(0xFD);
|
2485
|
-
0xCAu32.encode(sink);
|
2486
|
-
}
|
2487
|
-
Instruction::I64x2Shl => {
|
2488
|
-
sink.push(0xFD);
|
2489
|
-
0xCBu32.encode(sink);
|
2490
|
-
}
|
2491
|
-
Instruction::I64x2ShrS => {
|
2492
|
-
sink.push(0xFD);
|
2493
|
-
0xCCu32.encode(sink);
|
2494
|
-
}
|
2495
|
-
Instruction::I64x2ShrU => {
|
2496
|
-
sink.push(0xFD);
|
2497
|
-
0xCDu32.encode(sink);
|
2498
|
-
}
|
2499
|
-
Instruction::I64x2Add => {
|
2500
|
-
sink.push(0xFD);
|
2501
|
-
0xCEu32.encode(sink);
|
2502
|
-
}
|
2503
|
-
Instruction::I64x2Sub => {
|
2504
|
-
sink.push(0xFD);
|
2505
|
-
0xD1u32.encode(sink);
|
2506
|
-
}
|
2507
|
-
Instruction::I64x2Mul => {
|
2508
|
-
sink.push(0xFD);
|
2509
|
-
0xD5u32.encode(sink);
|
2510
|
-
}
|
2511
|
-
Instruction::I64x2ExtMulLowI32x4S => {
|
2512
|
-
sink.push(0xFD);
|
2513
|
-
0xDCu32.encode(sink);
|
2514
|
-
}
|
2515
|
-
Instruction::I64x2ExtMulHighI32x4S => {
|
2516
|
-
sink.push(0xFD);
|
2517
|
-
0xDDu32.encode(sink);
|
2518
|
-
}
|
2519
|
-
Instruction::I64x2ExtMulLowI32x4U => {
|
2520
|
-
sink.push(0xFD);
|
2521
|
-
0xDEu32.encode(sink);
|
2522
|
-
}
|
2523
|
-
Instruction::I64x2ExtMulHighI32x4U => {
|
2524
|
-
sink.push(0xFD);
|
2525
|
-
0xDFu32.encode(sink);
|
2526
|
-
}
|
2527
|
-
Instruction::F32x4Ceil => {
|
2528
|
-
sink.push(0xFD);
|
2529
|
-
0x67u32.encode(sink);
|
2530
|
-
}
|
2531
|
-
Instruction::F32x4Floor => {
|
2532
|
-
sink.push(0xFD);
|
2533
|
-
0x68u32.encode(sink);
|
2534
|
-
}
|
2535
|
-
Instruction::F32x4Trunc => {
|
2536
|
-
sink.push(0xFD);
|
2537
|
-
0x69u32.encode(sink);
|
2538
|
-
}
|
2539
|
-
Instruction::F32x4Nearest => {
|
2540
|
-
sink.push(0xFD);
|
2541
|
-
0x6Au32.encode(sink);
|
2542
|
-
}
|
2543
|
-
Instruction::F32x4Abs => {
|
2544
|
-
sink.push(0xFD);
|
2545
|
-
0xE0u32.encode(sink);
|
2546
|
-
}
|
2547
|
-
Instruction::F32x4Neg => {
|
2548
|
-
sink.push(0xFD);
|
2549
|
-
0xE1u32.encode(sink);
|
2550
|
-
}
|
2551
|
-
Instruction::F32x4Sqrt => {
|
2552
|
-
sink.push(0xFD);
|
2553
|
-
0xE3u32.encode(sink);
|
2554
|
-
}
|
2555
|
-
Instruction::F32x4Add => {
|
2556
|
-
sink.push(0xFD);
|
2557
|
-
0xE4u32.encode(sink);
|
2558
|
-
}
|
2559
|
-
Instruction::F32x4Sub => {
|
2560
|
-
sink.push(0xFD);
|
2561
|
-
0xE5u32.encode(sink);
|
2562
|
-
}
|
2563
|
-
Instruction::F32x4Mul => {
|
2564
|
-
sink.push(0xFD);
|
2565
|
-
0xE6u32.encode(sink);
|
2566
|
-
}
|
2567
|
-
Instruction::F32x4Div => {
|
2568
|
-
sink.push(0xFD);
|
2569
|
-
0xE7u32.encode(sink);
|
2570
|
-
}
|
2571
|
-
Instruction::F32x4Min => {
|
2572
|
-
sink.push(0xFD);
|
2573
|
-
0xE8u32.encode(sink);
|
2574
|
-
}
|
2575
|
-
Instruction::F32x4Max => {
|
2576
|
-
sink.push(0xFD);
|
2577
|
-
0xE9u32.encode(sink);
|
2578
|
-
}
|
2579
|
-
Instruction::F32x4PMin => {
|
2580
|
-
sink.push(0xFD);
|
2581
|
-
0xEAu32.encode(sink);
|
2582
|
-
}
|
2583
|
-
Instruction::F32x4PMax => {
|
2584
|
-
sink.push(0xFD);
|
2585
|
-
0xEBu32.encode(sink);
|
2586
|
-
}
|
2587
|
-
Instruction::F64x2Ceil => {
|
2588
|
-
sink.push(0xFD);
|
2589
|
-
0x74u32.encode(sink);
|
2590
|
-
}
|
2591
|
-
Instruction::F64x2Floor => {
|
2592
|
-
sink.push(0xFD);
|
2593
|
-
0x75u32.encode(sink);
|
2594
|
-
}
|
2595
|
-
Instruction::F64x2Trunc => {
|
2596
|
-
sink.push(0xFD);
|
2597
|
-
0x7Au32.encode(sink);
|
2598
|
-
}
|
2599
|
-
Instruction::F64x2Nearest => {
|
2600
|
-
sink.push(0xFD);
|
2601
|
-
0x94u32.encode(sink);
|
2602
|
-
}
|
2603
|
-
Instruction::F64x2Abs => {
|
2604
|
-
sink.push(0xFD);
|
2605
|
-
0xECu32.encode(sink);
|
2606
|
-
}
|
2607
|
-
Instruction::F64x2Neg => {
|
2608
|
-
sink.push(0xFD);
|
2609
|
-
0xEDu32.encode(sink);
|
2610
|
-
}
|
2611
|
-
Instruction::F64x2Sqrt => {
|
2612
|
-
sink.push(0xFD);
|
2613
|
-
0xEFu32.encode(sink);
|
2614
|
-
}
|
2615
|
-
Instruction::F64x2Add => {
|
2616
|
-
sink.push(0xFD);
|
2617
|
-
0xF0u32.encode(sink);
|
2618
|
-
}
|
2619
|
-
Instruction::F64x2Sub => {
|
2620
|
-
sink.push(0xFD);
|
2621
|
-
0xF1u32.encode(sink);
|
2622
|
-
}
|
2623
|
-
Instruction::F64x2Mul => {
|
2624
|
-
sink.push(0xFD);
|
2625
|
-
0xF2u32.encode(sink);
|
2626
|
-
}
|
2627
|
-
Instruction::F64x2Div => {
|
2628
|
-
sink.push(0xFD);
|
2629
|
-
0xF3u32.encode(sink);
|
2630
|
-
}
|
2631
|
-
Instruction::F64x2Min => {
|
2632
|
-
sink.push(0xFD);
|
2633
|
-
0xF4u32.encode(sink);
|
2634
|
-
}
|
2635
|
-
Instruction::F64x2Max => {
|
2636
|
-
sink.push(0xFD);
|
2637
|
-
0xF5u32.encode(sink);
|
2638
|
-
}
|
2639
|
-
Instruction::F64x2PMin => {
|
2640
|
-
sink.push(0xFD);
|
2641
|
-
0xF6u32.encode(sink);
|
2642
|
-
}
|
2643
|
-
Instruction::F64x2PMax => {
|
2644
|
-
sink.push(0xFD);
|
2645
|
-
0xF7u32.encode(sink);
|
2646
|
-
}
|
2647
|
-
Instruction::I32x4TruncSatF32x4S => {
|
2648
|
-
sink.push(0xFD);
|
2649
|
-
0xF8u32.encode(sink);
|
2650
|
-
}
|
2651
|
-
Instruction::I32x4TruncSatF32x4U => {
|
2652
|
-
sink.push(0xFD);
|
2653
|
-
0xF9u32.encode(sink);
|
2654
|
-
}
|
2655
|
-
Instruction::F32x4ConvertI32x4S => {
|
2656
|
-
sink.push(0xFD);
|
2657
|
-
0xFAu32.encode(sink);
|
2658
|
-
}
|
2659
|
-
Instruction::F32x4ConvertI32x4U => {
|
2660
|
-
sink.push(0xFD);
|
2661
|
-
0xFBu32.encode(sink);
|
2662
|
-
}
|
2663
|
-
Instruction::I32x4TruncSatF64x2SZero => {
|
2664
|
-
sink.push(0xFD);
|
2665
|
-
0xFCu32.encode(sink);
|
2666
|
-
}
|
2667
|
-
Instruction::I32x4TruncSatF64x2UZero => {
|
2668
|
-
sink.push(0xFD);
|
2669
|
-
0xFDu32.encode(sink);
|
2670
|
-
}
|
2671
|
-
Instruction::F64x2ConvertLowI32x4S => {
|
2672
|
-
sink.push(0xFD);
|
2673
|
-
0xFEu32.encode(sink);
|
2674
|
-
}
|
2675
|
-
Instruction::F64x2ConvertLowI32x4U => {
|
2676
|
-
sink.push(0xFD);
|
2677
|
-
0xFFu32.encode(sink);
|
2678
|
-
}
|
2679
|
-
Instruction::F32x4DemoteF64x2Zero => {
|
2680
|
-
sink.push(0xFD);
|
2681
|
-
0x5Eu32.encode(sink);
|
2682
|
-
}
|
2683
|
-
Instruction::F64x2PromoteLowF32x4 => {
|
2684
|
-
sink.push(0xFD);
|
2685
|
-
0x5Fu32.encode(sink);
|
2686
|
-
}
|
2687
|
-
Instruction::V128Load32Zero(memarg) => {
|
2688
|
-
sink.push(0xFD);
|
2689
|
-
0x5Cu32.encode(sink);
|
2690
|
-
memarg.encode(sink);
|
2691
|
-
}
|
2692
|
-
Instruction::V128Load64Zero(memarg) => {
|
2693
|
-
sink.push(0xFD);
|
2694
|
-
0x5Du32.encode(sink);
|
2695
|
-
memarg.encode(sink);
|
2696
|
-
}
|
2697
|
-
Instruction::V128Load8Lane { memarg, lane } => {
|
2698
|
-
sink.push(0xFD);
|
2699
|
-
0x54u32.encode(sink);
|
2700
|
-
memarg.encode(sink);
|
2701
|
-
assert!(lane < 16);
|
2702
|
-
sink.push(lane);
|
2703
|
-
}
|
2704
|
-
Instruction::V128Load16Lane { memarg, lane } => {
|
2705
|
-
sink.push(0xFD);
|
2706
|
-
0x55u32.encode(sink);
|
2707
|
-
memarg.encode(sink);
|
2708
|
-
assert!(lane < 8);
|
2709
|
-
sink.push(lane);
|
2710
|
-
}
|
2711
|
-
Instruction::V128Load32Lane { memarg, lane } => {
|
2712
|
-
sink.push(0xFD);
|
2713
|
-
0x56u32.encode(sink);
|
2714
|
-
memarg.encode(sink);
|
2715
|
-
assert!(lane < 4);
|
2716
|
-
sink.push(lane);
|
2717
|
-
}
|
2718
|
-
Instruction::V128Load64Lane { memarg, lane } => {
|
2719
|
-
sink.push(0xFD);
|
2720
|
-
0x57u32.encode(sink);
|
2721
|
-
memarg.encode(sink);
|
2722
|
-
assert!(lane < 2);
|
2723
|
-
sink.push(lane);
|
2724
|
-
}
|
2725
|
-
Instruction::V128Store8Lane { memarg, lane } => {
|
2726
|
-
sink.push(0xFD);
|
2727
|
-
0x58u32.encode(sink);
|
2728
|
-
memarg.encode(sink);
|
2729
|
-
assert!(lane < 16);
|
2730
|
-
sink.push(lane);
|
2731
|
-
}
|
2732
|
-
Instruction::V128Store16Lane { memarg, lane } => {
|
2733
|
-
sink.push(0xFD);
|
2734
|
-
0x59u32.encode(sink);
|
2735
|
-
memarg.encode(sink);
|
2736
|
-
assert!(lane < 8);
|
2737
|
-
sink.push(lane);
|
2738
|
-
}
|
2739
|
-
Instruction::V128Store32Lane { memarg, lane } => {
|
2740
|
-
sink.push(0xFD);
|
2741
|
-
0x5Au32.encode(sink);
|
2742
|
-
memarg.encode(sink);
|
2743
|
-
assert!(lane < 4);
|
2744
|
-
sink.push(lane);
|
2745
|
-
}
|
2746
|
-
Instruction::V128Store64Lane { memarg, lane } => {
|
2747
|
-
sink.push(0xFD);
|
2748
|
-
0x5Bu32.encode(sink);
|
2749
|
-
memarg.encode(sink);
|
2750
|
-
assert!(lane < 2);
|
2751
|
-
sink.push(lane);
|
2752
|
-
}
|
2753
|
-
Instruction::I64x2Eq => {
|
2754
|
-
sink.push(0xFD);
|
2755
|
-
0xD6u32.encode(sink);
|
2756
|
-
}
|
2757
|
-
Instruction::I64x2Ne => {
|
2758
|
-
sink.push(0xFD);
|
2759
|
-
0xD7u32.encode(sink);
|
2760
|
-
}
|
2761
|
-
Instruction::I64x2LtS => {
|
2762
|
-
sink.push(0xFD);
|
2763
|
-
0xD8u32.encode(sink);
|
2764
|
-
}
|
2765
|
-
Instruction::I64x2GtS => {
|
2766
|
-
sink.push(0xFD);
|
2767
|
-
0xD9u32.encode(sink);
|
2768
|
-
}
|
2769
|
-
Instruction::I64x2LeS => {
|
2770
|
-
sink.push(0xFD);
|
2771
|
-
0xDAu32.encode(sink);
|
2772
|
-
}
|
2773
|
-
Instruction::I64x2GeS => {
|
2774
|
-
sink.push(0xFD);
|
2775
|
-
0xDBu32.encode(sink);
|
2776
|
-
}
|
2777
|
-
Instruction::I8x16RelaxedSwizzle => {
|
2778
|
-
sink.push(0xFD);
|
2779
|
-
0x100u32.encode(sink);
|
2780
|
-
}
|
2781
|
-
Instruction::I32x4RelaxedTruncF32x4S => {
|
2782
|
-
sink.push(0xFD);
|
2783
|
-
0x101u32.encode(sink);
|
2784
|
-
}
|
2785
|
-
Instruction::I32x4RelaxedTruncF32x4U => {
|
2786
|
-
sink.push(0xFD);
|
2787
|
-
0x102u32.encode(sink);
|
2788
|
-
}
|
2789
|
-
Instruction::I32x4RelaxedTruncF64x2SZero => {
|
2790
|
-
sink.push(0xFD);
|
2791
|
-
0x103u32.encode(sink);
|
2792
|
-
}
|
2793
|
-
Instruction::I32x4RelaxedTruncF64x2UZero => {
|
2794
|
-
sink.push(0xFD);
|
2795
|
-
0x104u32.encode(sink);
|
2796
|
-
}
|
2797
|
-
Instruction::F32x4RelaxedMadd => {
|
2798
|
-
sink.push(0xFD);
|
2799
|
-
0x105u32.encode(sink);
|
2800
|
-
}
|
2801
|
-
Instruction::F32x4RelaxedNmadd => {
|
2802
|
-
sink.push(0xFD);
|
2803
|
-
0x106u32.encode(sink);
|
2804
|
-
}
|
2805
|
-
Instruction::F64x2RelaxedMadd => {
|
2806
|
-
sink.push(0xFD);
|
2807
|
-
0x107u32.encode(sink);
|
2808
|
-
}
|
2809
|
-
Instruction::F64x2RelaxedNmadd => {
|
2810
|
-
sink.push(0xFD);
|
2811
|
-
0x108u32.encode(sink);
|
2812
|
-
}
|
2813
|
-
Instruction::I8x16RelaxedLaneselect => {
|
2814
|
-
sink.push(0xFD);
|
2815
|
-
0x109u32.encode(sink);
|
2816
|
-
}
|
2817
|
-
Instruction::I16x8RelaxedLaneselect => {
|
2818
|
-
sink.push(0xFD);
|
2819
|
-
0x10Au32.encode(sink);
|
2820
|
-
}
|
2821
|
-
Instruction::I32x4RelaxedLaneselect => {
|
2822
|
-
sink.push(0xFD);
|
2823
|
-
0x10Bu32.encode(sink);
|
2824
|
-
}
|
2825
|
-
Instruction::I64x2RelaxedLaneselect => {
|
2826
|
-
sink.push(0xFD);
|
2827
|
-
0x10Cu32.encode(sink);
|
2828
|
-
}
|
2829
|
-
Instruction::F32x4RelaxedMin => {
|
2830
|
-
sink.push(0xFD);
|
2831
|
-
0x10Du32.encode(sink);
|
2832
|
-
}
|
2833
|
-
Instruction::F32x4RelaxedMax => {
|
2834
|
-
sink.push(0xFD);
|
2835
|
-
0x10Eu32.encode(sink);
|
2836
|
-
}
|
2837
|
-
Instruction::F64x2RelaxedMin => {
|
2838
|
-
sink.push(0xFD);
|
2839
|
-
0x10Fu32.encode(sink);
|
2840
|
-
}
|
2841
|
-
Instruction::F64x2RelaxedMax => {
|
2842
|
-
sink.push(0xFD);
|
2843
|
-
0x110u32.encode(sink);
|
2844
|
-
}
|
2845
|
-
Instruction::I16x8RelaxedQ15mulrS => {
|
2846
|
-
sink.push(0xFD);
|
2847
|
-
0x111u32.encode(sink);
|
2848
|
-
}
|
2849
|
-
Instruction::I16x8RelaxedDotI8x16I7x16S => {
|
2850
|
-
sink.push(0xFD);
|
2851
|
-
0x112u32.encode(sink);
|
2852
|
-
}
|
2853
|
-
Instruction::I32x4RelaxedDotI8x16I7x16AddS => {
|
2854
|
-
sink.push(0xFD);
|
2855
|
-
0x113u32.encode(sink);
|
2856
|
-
}
|
2857
|
-
|
2858
|
-
// Atomic instructions from the thread proposal
|
2859
|
-
Instruction::MemoryAtomicNotify(memarg) => {
|
2860
|
-
sink.push(0xFE);
|
2861
|
-
sink.push(0x00);
|
2862
|
-
memarg.encode(sink);
|
2863
|
-
}
|
2864
|
-
Instruction::MemoryAtomicWait32(memarg) => {
|
2865
|
-
sink.push(0xFE);
|
2866
|
-
sink.push(0x01);
|
2867
|
-
memarg.encode(sink);
|
2868
|
-
}
|
2869
|
-
Instruction::MemoryAtomicWait64(memarg) => {
|
2870
|
-
sink.push(0xFE);
|
2871
|
-
sink.push(0x02);
|
2872
|
-
memarg.encode(sink);
|
2873
|
-
}
|
2874
|
-
Instruction::AtomicFence => {
|
2875
|
-
sink.push(0xFE);
|
2876
|
-
sink.push(0x03);
|
2877
|
-
sink.push(0x00);
|
2878
|
-
}
|
2879
|
-
Instruction::I32AtomicLoad(memarg) => {
|
2880
|
-
sink.push(0xFE);
|
2881
|
-
sink.push(0x10);
|
2882
|
-
memarg.encode(sink);
|
2883
|
-
}
|
2884
|
-
Instruction::I64AtomicLoad(memarg) => {
|
2885
|
-
sink.push(0xFE);
|
2886
|
-
sink.push(0x11);
|
2887
|
-
memarg.encode(sink);
|
2888
|
-
}
|
2889
|
-
Instruction::I32AtomicLoad8U(memarg) => {
|
2890
|
-
sink.push(0xFE);
|
2891
|
-
sink.push(0x12);
|
2892
|
-
memarg.encode(sink);
|
2893
|
-
}
|
2894
|
-
Instruction::I32AtomicLoad16U(memarg) => {
|
2895
|
-
sink.push(0xFE);
|
2896
|
-
sink.push(0x13);
|
2897
|
-
memarg.encode(sink);
|
2898
|
-
}
|
2899
|
-
Instruction::I64AtomicLoad8U(memarg) => {
|
2900
|
-
sink.push(0xFE);
|
2901
|
-
sink.push(0x14);
|
2902
|
-
memarg.encode(sink);
|
2903
|
-
}
|
2904
|
-
Instruction::I64AtomicLoad16U(memarg) => {
|
2905
|
-
sink.push(0xFE);
|
2906
|
-
sink.push(0x15);
|
2907
|
-
memarg.encode(sink);
|
2908
|
-
}
|
2909
|
-
Instruction::I64AtomicLoad32U(memarg) => {
|
2910
|
-
sink.push(0xFE);
|
2911
|
-
sink.push(0x16);
|
2912
|
-
memarg.encode(sink);
|
2913
|
-
}
|
2914
|
-
Instruction::I32AtomicStore(memarg) => {
|
2915
|
-
sink.push(0xFE);
|
2916
|
-
sink.push(0x17);
|
2917
|
-
memarg.encode(sink);
|
2918
|
-
}
|
2919
|
-
Instruction::I64AtomicStore(memarg) => {
|
2920
|
-
sink.push(0xFE);
|
2921
|
-
sink.push(0x18);
|
2922
|
-
memarg.encode(sink);
|
2923
|
-
}
|
2924
|
-
Instruction::I32AtomicStore8(memarg) => {
|
2925
|
-
sink.push(0xFE);
|
2926
|
-
sink.push(0x19);
|
2927
|
-
memarg.encode(sink);
|
2928
|
-
}
|
2929
|
-
Instruction::I32AtomicStore16(memarg) => {
|
2930
|
-
sink.push(0xFE);
|
2931
|
-
sink.push(0x1A);
|
2932
|
-
memarg.encode(sink);
|
2933
|
-
}
|
2934
|
-
Instruction::I64AtomicStore8(memarg) => {
|
2935
|
-
sink.push(0xFE);
|
2936
|
-
sink.push(0x1B);
|
2937
|
-
memarg.encode(sink);
|
2938
|
-
}
|
2939
|
-
Instruction::I64AtomicStore16(memarg) => {
|
2940
|
-
sink.push(0xFE);
|
2941
|
-
sink.push(0x1C);
|
2942
|
-
memarg.encode(sink);
|
2943
|
-
}
|
2944
|
-
Instruction::I64AtomicStore32(memarg) => {
|
2945
|
-
sink.push(0xFE);
|
2946
|
-
sink.push(0x1D);
|
2947
|
-
memarg.encode(sink);
|
2948
|
-
}
|
2949
|
-
Instruction::I32AtomicRmwAdd(memarg) => {
|
2950
|
-
sink.push(0xFE);
|
2951
|
-
sink.push(0x1E);
|
2952
|
-
memarg.encode(sink);
|
2953
|
-
}
|
2954
|
-
Instruction::I64AtomicRmwAdd(memarg) => {
|
2955
|
-
sink.push(0xFE);
|
2956
|
-
sink.push(0x1F);
|
2957
|
-
memarg.encode(sink);
|
2958
|
-
}
|
2959
|
-
Instruction::I32AtomicRmw8AddU(memarg) => {
|
2960
|
-
sink.push(0xFE);
|
2961
|
-
sink.push(0x20);
|
2962
|
-
memarg.encode(sink);
|
2963
|
-
}
|
2964
|
-
Instruction::I32AtomicRmw16AddU(memarg) => {
|
2965
|
-
sink.push(0xFE);
|
2966
|
-
sink.push(0x21);
|
2967
|
-
memarg.encode(sink);
|
2968
|
-
}
|
2969
|
-
Instruction::I64AtomicRmw8AddU(memarg) => {
|
2970
|
-
sink.push(0xFE);
|
2971
|
-
sink.push(0x22);
|
2972
|
-
memarg.encode(sink);
|
2973
|
-
}
|
2974
|
-
Instruction::I64AtomicRmw16AddU(memarg) => {
|
2975
|
-
sink.push(0xFE);
|
2976
|
-
sink.push(0x23);
|
2977
|
-
memarg.encode(sink);
|
2978
|
-
}
|
2979
|
-
Instruction::I64AtomicRmw32AddU(memarg) => {
|
2980
|
-
sink.push(0xFE);
|
2981
|
-
sink.push(0x24);
|
2982
|
-
memarg.encode(sink);
|
2983
|
-
}
|
2984
|
-
Instruction::I32AtomicRmwSub(memarg) => {
|
2985
|
-
sink.push(0xFE);
|
2986
|
-
sink.push(0x25);
|
2987
|
-
memarg.encode(sink);
|
2988
|
-
}
|
2989
|
-
Instruction::I64AtomicRmwSub(memarg) => {
|
2990
|
-
sink.push(0xFE);
|
2991
|
-
sink.push(0x26);
|
2992
|
-
memarg.encode(sink);
|
2993
|
-
}
|
2994
|
-
Instruction::I32AtomicRmw8SubU(memarg) => {
|
2995
|
-
sink.push(0xFE);
|
2996
|
-
sink.push(0x27);
|
2997
|
-
memarg.encode(sink);
|
2998
|
-
}
|
2999
|
-
Instruction::I32AtomicRmw16SubU(memarg) => {
|
3000
|
-
sink.push(0xFE);
|
3001
|
-
sink.push(0x28);
|
3002
|
-
memarg.encode(sink);
|
3003
|
-
}
|
3004
|
-
Instruction::I64AtomicRmw8SubU(memarg) => {
|
3005
|
-
sink.push(0xFE);
|
3006
|
-
sink.push(0x29);
|
3007
|
-
memarg.encode(sink);
|
3008
|
-
}
|
3009
|
-
Instruction::I64AtomicRmw16SubU(memarg) => {
|
3010
|
-
sink.push(0xFE);
|
3011
|
-
sink.push(0x2A);
|
3012
|
-
memarg.encode(sink);
|
3013
|
-
}
|
3014
|
-
Instruction::I64AtomicRmw32SubU(memarg) => {
|
3015
|
-
sink.push(0xFE);
|
3016
|
-
sink.push(0x2B);
|
3017
|
-
memarg.encode(sink);
|
3018
|
-
}
|
3019
|
-
Instruction::I32AtomicRmwAnd(memarg) => {
|
3020
|
-
sink.push(0xFE);
|
3021
|
-
sink.push(0x2C);
|
3022
|
-
memarg.encode(sink);
|
3023
|
-
}
|
3024
|
-
Instruction::I64AtomicRmwAnd(memarg) => {
|
3025
|
-
sink.push(0xFE);
|
3026
|
-
sink.push(0x2D);
|
3027
|
-
memarg.encode(sink);
|
3028
|
-
}
|
3029
|
-
Instruction::I32AtomicRmw8AndU(memarg) => {
|
3030
|
-
sink.push(0xFE);
|
3031
|
-
sink.push(0x2E);
|
3032
|
-
memarg.encode(sink);
|
3033
|
-
}
|
3034
|
-
Instruction::I32AtomicRmw16AndU(memarg) => {
|
3035
|
-
sink.push(0xFE);
|
3036
|
-
sink.push(0x2F);
|
3037
|
-
memarg.encode(sink);
|
3038
|
-
}
|
3039
|
-
Instruction::I64AtomicRmw8AndU(memarg) => {
|
3040
|
-
sink.push(0xFE);
|
3041
|
-
sink.push(0x30);
|
3042
|
-
memarg.encode(sink);
|
3043
|
-
}
|
3044
|
-
Instruction::I64AtomicRmw16AndU(memarg) => {
|
3045
|
-
sink.push(0xFE);
|
3046
|
-
sink.push(0x31);
|
3047
|
-
memarg.encode(sink);
|
3048
|
-
}
|
3049
|
-
Instruction::I64AtomicRmw32AndU(memarg) => {
|
3050
|
-
sink.push(0xFE);
|
3051
|
-
sink.push(0x32);
|
3052
|
-
memarg.encode(sink);
|
3053
|
-
}
|
3054
|
-
Instruction::I32AtomicRmwOr(memarg) => {
|
3055
|
-
sink.push(0xFE);
|
3056
|
-
sink.push(0x33);
|
3057
|
-
memarg.encode(sink);
|
3058
|
-
}
|
3059
|
-
Instruction::I64AtomicRmwOr(memarg) => {
|
3060
|
-
sink.push(0xFE);
|
3061
|
-
sink.push(0x34);
|
3062
|
-
memarg.encode(sink);
|
3063
|
-
}
|
3064
|
-
Instruction::I32AtomicRmw8OrU(memarg) => {
|
3065
|
-
sink.push(0xFE);
|
3066
|
-
sink.push(0x35);
|
3067
|
-
memarg.encode(sink);
|
3068
|
-
}
|
3069
|
-
Instruction::I32AtomicRmw16OrU(memarg) => {
|
3070
|
-
sink.push(0xFE);
|
3071
|
-
sink.push(0x36);
|
3072
|
-
memarg.encode(sink);
|
3073
|
-
}
|
3074
|
-
Instruction::I64AtomicRmw8OrU(memarg) => {
|
3075
|
-
sink.push(0xFE);
|
3076
|
-
sink.push(0x37);
|
3077
|
-
memarg.encode(sink);
|
3078
|
-
}
|
3079
|
-
Instruction::I64AtomicRmw16OrU(memarg) => {
|
3080
|
-
sink.push(0xFE);
|
3081
|
-
sink.push(0x38);
|
3082
|
-
memarg.encode(sink);
|
3083
|
-
}
|
3084
|
-
Instruction::I64AtomicRmw32OrU(memarg) => {
|
3085
|
-
sink.push(0xFE);
|
3086
|
-
sink.push(0x39);
|
3087
|
-
memarg.encode(sink);
|
3088
|
-
}
|
3089
|
-
Instruction::I32AtomicRmwXor(memarg) => {
|
3090
|
-
sink.push(0xFE);
|
3091
|
-
sink.push(0x3A);
|
3092
|
-
memarg.encode(sink);
|
3093
|
-
}
|
3094
|
-
Instruction::I64AtomicRmwXor(memarg) => {
|
3095
|
-
sink.push(0xFE);
|
3096
|
-
sink.push(0x3B);
|
3097
|
-
memarg.encode(sink);
|
3098
|
-
}
|
3099
|
-
Instruction::I32AtomicRmw8XorU(memarg) => {
|
3100
|
-
sink.push(0xFE);
|
3101
|
-
sink.push(0x3C);
|
3102
|
-
memarg.encode(sink);
|
3103
|
-
}
|
3104
|
-
Instruction::I32AtomicRmw16XorU(memarg) => {
|
3105
|
-
sink.push(0xFE);
|
3106
|
-
sink.push(0x3D);
|
3107
|
-
memarg.encode(sink);
|
3108
|
-
}
|
3109
|
-
Instruction::I64AtomicRmw8XorU(memarg) => {
|
3110
|
-
sink.push(0xFE);
|
3111
|
-
sink.push(0x3E);
|
3112
|
-
memarg.encode(sink);
|
3113
|
-
}
|
3114
|
-
Instruction::I64AtomicRmw16XorU(memarg) => {
|
3115
|
-
sink.push(0xFE);
|
3116
|
-
sink.push(0x3F);
|
3117
|
-
memarg.encode(sink);
|
3118
|
-
}
|
3119
|
-
Instruction::I64AtomicRmw32XorU(memarg) => {
|
3120
|
-
sink.push(0xFE);
|
3121
|
-
sink.push(0x40);
|
3122
|
-
memarg.encode(sink);
|
3123
|
-
}
|
3124
|
-
Instruction::I32AtomicRmwXchg(memarg) => {
|
3125
|
-
sink.push(0xFE);
|
3126
|
-
sink.push(0x41);
|
3127
|
-
memarg.encode(sink);
|
3128
|
-
}
|
3129
|
-
Instruction::I64AtomicRmwXchg(memarg) => {
|
3130
|
-
sink.push(0xFE);
|
3131
|
-
sink.push(0x42);
|
3132
|
-
memarg.encode(sink);
|
3133
|
-
}
|
3134
|
-
Instruction::I32AtomicRmw8XchgU(memarg) => {
|
3135
|
-
sink.push(0xFE);
|
3136
|
-
sink.push(0x43);
|
3137
|
-
memarg.encode(sink);
|
3138
|
-
}
|
3139
|
-
Instruction::I32AtomicRmw16XchgU(memarg) => {
|
3140
|
-
sink.push(0xFE);
|
3141
|
-
sink.push(0x44);
|
3142
|
-
memarg.encode(sink);
|
3143
|
-
}
|
3144
|
-
Instruction::I64AtomicRmw8XchgU(memarg) => {
|
3145
|
-
sink.push(0xFE);
|
3146
|
-
sink.push(0x45);
|
3147
|
-
memarg.encode(sink);
|
3148
|
-
}
|
3149
|
-
Instruction::I64AtomicRmw16XchgU(memarg) => {
|
3150
|
-
sink.push(0xFE);
|
3151
|
-
sink.push(0x46);
|
3152
|
-
memarg.encode(sink);
|
3153
|
-
}
|
3154
|
-
Instruction::I64AtomicRmw32XchgU(memarg) => {
|
3155
|
-
sink.push(0xFE);
|
3156
|
-
sink.push(0x47);
|
3157
|
-
memarg.encode(sink);
|
3158
|
-
}
|
3159
|
-
Instruction::I32AtomicRmwCmpxchg(memarg) => {
|
3160
|
-
sink.push(0xFE);
|
3161
|
-
sink.push(0x48);
|
3162
|
-
memarg.encode(sink);
|
3163
|
-
}
|
3164
|
-
Instruction::I64AtomicRmwCmpxchg(memarg) => {
|
3165
|
-
sink.push(0xFE);
|
3166
|
-
sink.push(0x49);
|
3167
|
-
memarg.encode(sink);
|
3168
|
-
}
|
3169
|
-
Instruction::I32AtomicRmw8CmpxchgU(memarg) => {
|
3170
|
-
sink.push(0xFE);
|
3171
|
-
sink.push(0x4A);
|
3172
|
-
memarg.encode(sink);
|
3173
|
-
}
|
3174
|
-
Instruction::I32AtomicRmw16CmpxchgU(memarg) => {
|
3175
|
-
sink.push(0xFE);
|
3176
|
-
sink.push(0x4B);
|
3177
|
-
memarg.encode(sink);
|
3178
|
-
}
|
3179
|
-
Instruction::I64AtomicRmw8CmpxchgU(memarg) => {
|
3180
|
-
sink.push(0xFE);
|
3181
|
-
sink.push(0x4C);
|
3182
|
-
memarg.encode(sink);
|
3183
|
-
}
|
3184
|
-
Instruction::I64AtomicRmw16CmpxchgU(memarg) => {
|
3185
|
-
sink.push(0xFE);
|
3186
|
-
sink.push(0x4D);
|
3187
|
-
memarg.encode(sink);
|
3188
|
-
}
|
3189
|
-
Instruction::I64AtomicRmw32CmpxchgU(memarg) => {
|
3190
|
-
sink.push(0xFE);
|
3191
|
-
sink.push(0x4E);
|
3192
|
-
memarg.encode(sink);
|
3193
|
-
}
|
3194
|
-
|
3195
|
-
// Atomic instructions from the shared-everything-threads proposal
|
3196
|
-
Instruction::GlobalAtomicGet {
|
3197
|
-
ordering,
|
3198
|
-
global_index,
|
3199
|
-
} => {
|
3200
|
-
sink.push(0xFE);
|
3201
|
-
sink.push(0x4F);
|
3202
|
-
ordering.encode(sink);
|
3203
|
-
global_index.encode(sink);
|
3204
|
-
}
|
3205
|
-
Instruction::GlobalAtomicSet {
|
3206
|
-
ordering,
|
3207
|
-
global_index,
|
3208
|
-
} => {
|
3209
|
-
sink.push(0xFE);
|
3210
|
-
sink.push(0x50);
|
3211
|
-
ordering.encode(sink);
|
3212
|
-
global_index.encode(sink);
|
3213
|
-
}
|
3214
|
-
Instruction::GlobalAtomicRmwAdd {
|
3215
|
-
ordering,
|
3216
|
-
global_index,
|
3217
|
-
} => {
|
3218
|
-
sink.push(0xFE);
|
3219
|
-
sink.push(0x51);
|
3220
|
-
ordering.encode(sink);
|
3221
|
-
global_index.encode(sink);
|
3222
|
-
}
|
3223
|
-
Instruction::GlobalAtomicRmwSub {
|
3224
|
-
ordering,
|
3225
|
-
global_index,
|
3226
|
-
} => {
|
3227
|
-
sink.push(0xFE);
|
3228
|
-
sink.push(0x52);
|
3229
|
-
ordering.encode(sink);
|
3230
|
-
global_index.encode(sink);
|
3231
|
-
}
|
3232
|
-
Instruction::GlobalAtomicRmwAnd {
|
3233
|
-
ordering,
|
3234
|
-
global_index,
|
3235
|
-
} => {
|
3236
|
-
sink.push(0xFE);
|
3237
|
-
sink.push(0x53);
|
3238
|
-
ordering.encode(sink);
|
3239
|
-
global_index.encode(sink);
|
3240
|
-
}
|
3241
|
-
Instruction::GlobalAtomicRmwOr {
|
3242
|
-
ordering,
|
3243
|
-
global_index,
|
3244
|
-
} => {
|
3245
|
-
sink.push(0xFE);
|
3246
|
-
sink.push(0x54);
|
3247
|
-
ordering.encode(sink);
|
3248
|
-
global_index.encode(sink);
|
3249
|
-
}
|
3250
|
-
Instruction::GlobalAtomicRmwXor {
|
3251
|
-
ordering,
|
3252
|
-
global_index,
|
3253
|
-
} => {
|
3254
|
-
sink.push(0xFE);
|
3255
|
-
sink.push(0x55);
|
3256
|
-
ordering.encode(sink);
|
3257
|
-
global_index.encode(sink);
|
3258
|
-
}
|
3259
|
-
Instruction::GlobalAtomicRmwXchg {
|
3260
|
-
ordering,
|
3261
|
-
global_index,
|
3262
|
-
} => {
|
3263
|
-
sink.push(0xFE);
|
3264
|
-
sink.push(0x56);
|
3265
|
-
ordering.encode(sink);
|
3266
|
-
global_index.encode(sink);
|
3267
|
-
}
|
3268
|
-
Instruction::GlobalAtomicRmwCmpxchg {
|
3269
|
-
ordering,
|
3270
|
-
global_index,
|
3271
|
-
} => {
|
3272
|
-
sink.push(0xFE);
|
3273
|
-
sink.push(0x57);
|
3274
|
-
ordering.encode(sink);
|
3275
|
-
global_index.encode(sink);
|
3276
|
-
}
|
3277
|
-
}
|
3278
|
-
}
|
3279
|
-
}
|
3280
|
-
|
3281
|
-
#[derive(Clone, Debug)]
|
3282
|
-
#[allow(missing_docs)]
|
3283
|
-
pub enum Catch {
|
3284
|
-
One { tag: u32, label: u32 },
|
3285
|
-
OneRef { tag: u32, label: u32 },
|
3286
|
-
All { label: u32 },
|
3287
|
-
AllRef { label: u32 },
|
3288
|
-
}
|
3289
|
-
|
3290
|
-
impl Encode for Catch {
|
3291
|
-
fn encode(&self, sink: &mut Vec<u8>) {
|
3292
|
-
match self {
|
3293
|
-
Catch::One { tag, label } => {
|
3294
|
-
sink.push(0x00);
|
3295
|
-
tag.encode(sink);
|
3296
|
-
label.encode(sink);
|
3297
|
-
}
|
3298
|
-
Catch::OneRef { tag, label } => {
|
3299
|
-
sink.push(0x01);
|
3300
|
-
tag.encode(sink);
|
3301
|
-
label.encode(sink);
|
3302
|
-
}
|
3303
|
-
Catch::All { label } => {
|
3304
|
-
sink.push(0x02);
|
3305
|
-
label.encode(sink);
|
3306
|
-
}
|
3307
|
-
Catch::AllRef { label } => {
|
3308
|
-
sink.push(0x03);
|
3309
|
-
label.encode(sink);
|
3310
|
-
}
|
3311
|
-
}
|
3312
|
-
}
|
3313
|
-
}
|
3314
|
-
|
3315
|
-
/// A constant expression.
|
3316
|
-
///
|
3317
|
-
/// Usable in contexts such as offsets or initializers.
|
3318
|
-
#[derive(Debug)]
|
3319
|
-
pub struct ConstExpr {
|
3320
|
-
bytes: Vec<u8>,
|
3321
|
-
}
|
3322
|
-
|
3323
|
-
impl ConstExpr {
|
3324
|
-
/// Create a new empty constant expression builder.
|
3325
|
-
pub fn empty() -> Self {
|
3326
|
-
Self { bytes: Vec::new() }
|
3327
|
-
}
|
3328
|
-
|
3329
|
-
/// Create a constant expression with the specified raw encoding of instructions.
|
3330
|
-
pub fn raw(bytes: impl IntoIterator<Item = u8>) -> Self {
|
3331
|
-
Self {
|
3332
|
-
bytes: bytes.into_iter().collect(),
|
3333
|
-
}
|
3334
|
-
}
|
3335
|
-
|
3336
|
-
fn new_insn(insn: Instruction) -> Self {
|
3337
|
-
let mut bytes = vec![];
|
3338
|
-
insn.encode(&mut bytes);
|
3339
|
-
Self { bytes }
|
3340
|
-
}
|
3341
|
-
|
3342
|
-
fn with_insn(mut self, insn: Instruction) -> Self {
|
3343
|
-
insn.encode(&mut self.bytes);
|
3344
|
-
self
|
3345
|
-
}
|
3346
|
-
|
3347
|
-
/// Create a constant expression containing a single `global.get` instruction.
|
3348
|
-
pub fn global_get(index: u32) -> Self {
|
3349
|
-
Self::new_insn(Instruction::GlobalGet(index))
|
3350
|
-
}
|
3351
|
-
|
3352
|
-
/// Create a constant expression containing a single `ref.null` instruction.
|
3353
|
-
pub fn ref_null(ty: HeapType) -> Self {
|
3354
|
-
Self::new_insn(Instruction::RefNull(ty))
|
3355
|
-
}
|
3356
|
-
|
3357
|
-
/// Create a constant expression containing a single `ref.func` instruction.
|
3358
|
-
pub fn ref_func(func: u32) -> Self {
|
3359
|
-
Self::new_insn(Instruction::RefFunc(func))
|
3360
|
-
}
|
3361
|
-
|
3362
|
-
/// Create a constant expression containing a single `i32.const` instruction.
|
3363
|
-
pub fn i32_const(value: i32) -> Self {
|
3364
|
-
Self::new_insn(Instruction::I32Const(value))
|
3365
|
-
}
|
3366
|
-
|
3367
|
-
/// Create a constant expression containing a single `i64.const` instruction.
|
3368
|
-
pub fn i64_const(value: i64) -> Self {
|
3369
|
-
Self::new_insn(Instruction::I64Const(value))
|
3370
|
-
}
|
3371
|
-
|
3372
|
-
/// Create a constant expression containing a single `f32.const` instruction.
|
3373
|
-
pub fn f32_const(value: f32) -> Self {
|
3374
|
-
Self::new_insn(Instruction::F32Const(value))
|
3375
|
-
}
|
3376
|
-
|
3377
|
-
/// Create a constant expression containing a single `f64.const` instruction.
|
3378
|
-
pub fn f64_const(value: f64) -> Self {
|
3379
|
-
Self::new_insn(Instruction::F64Const(value))
|
3380
|
-
}
|
3381
|
-
|
3382
|
-
/// Create a constant expression containing a single `v128.const` instruction.
|
3383
|
-
pub fn v128_const(value: i128) -> Self {
|
3384
|
-
Self::new_insn(Instruction::V128Const(value))
|
3385
|
-
}
|
3386
|
-
|
3387
|
-
/// Add a `global.get` instruction to this constant expression.
|
3388
|
-
pub fn with_global_get(self, index: u32) -> Self {
|
3389
|
-
self.with_insn(Instruction::GlobalGet(index))
|
3390
|
-
}
|
3391
|
-
|
3392
|
-
/// Add a `ref.null` instruction to this constant expression.
|
3393
|
-
pub fn with_ref_null(self, ty: HeapType) -> Self {
|
3394
|
-
self.with_insn(Instruction::RefNull(ty))
|
3395
|
-
}
|
3396
|
-
|
3397
|
-
/// Add a `ref.func` instruction to this constant expression.
|
3398
|
-
pub fn with_ref_func(self, func: u32) -> Self {
|
3399
|
-
self.with_insn(Instruction::RefFunc(func))
|
3400
|
-
}
|
3401
|
-
|
3402
|
-
/// Add an `i32.const` instruction to this constant expression.
|
3403
|
-
pub fn with_i32_const(self, value: i32) -> Self {
|
3404
|
-
self.with_insn(Instruction::I32Const(value))
|
3405
|
-
}
|
3406
|
-
|
3407
|
-
/// Add an `i64.const` instruction to this constant expression.
|
3408
|
-
pub fn with_i64_const(self, value: i64) -> Self {
|
3409
|
-
self.with_insn(Instruction::I64Const(value))
|
3410
|
-
}
|
3411
|
-
|
3412
|
-
/// Add a `f32.const` instruction to this constant expression.
|
3413
|
-
pub fn with_f32_const(self, value: f32) -> Self {
|
3414
|
-
self.with_insn(Instruction::F32Const(value))
|
3415
|
-
}
|
3416
|
-
|
3417
|
-
/// Add a `f64.const` instruction to this constant expression.
|
3418
|
-
pub fn with_f64_const(self, value: f64) -> Self {
|
3419
|
-
self.with_insn(Instruction::F64Const(value))
|
3420
|
-
}
|
3421
|
-
|
3422
|
-
/// Add a `v128.const` instruction to this constant expression.
|
3423
|
-
pub fn with_v128_const(self, value: i128) -> Self {
|
3424
|
-
self.with_insn(Instruction::V128Const(value))
|
3425
|
-
}
|
3426
|
-
|
3427
|
-
/// Add an `i32.add` instruction to this constant expression.
|
3428
|
-
pub fn with_i32_add(self) -> Self {
|
3429
|
-
self.with_insn(Instruction::I32Add)
|
3430
|
-
}
|
3431
|
-
|
3432
|
-
/// Add an `i32.sub` instruction to this constant expression.
|
3433
|
-
pub fn with_i32_sub(self) -> Self {
|
3434
|
-
self.with_insn(Instruction::I32Sub)
|
3435
|
-
}
|
3436
|
-
|
3437
|
-
/// Add an `i32.mul` instruction to this constant expression.
|
3438
|
-
pub fn with_i32_mul(self) -> Self {
|
3439
|
-
self.with_insn(Instruction::I32Mul)
|
3440
|
-
}
|
3441
|
-
|
3442
|
-
/// Add an `i64.add` instruction to this constant expression.
|
3443
|
-
pub fn with_i64_add(self) -> Self {
|
3444
|
-
self.with_insn(Instruction::I64Add)
|
3445
|
-
}
|
3446
|
-
|
3447
|
-
/// Add an `i64.sub` instruction to this constant expression.
|
3448
|
-
pub fn with_i64_sub(self) -> Self {
|
3449
|
-
self.with_insn(Instruction::I64Sub)
|
3450
|
-
}
|
3451
|
-
|
3452
|
-
/// Add an `i64.mul` instruction to this constant expression.
|
3453
|
-
pub fn with_i64_mul(self) -> Self {
|
3454
|
-
self.with_insn(Instruction::I64Mul)
|
3455
|
-
}
|
3456
|
-
|
3457
|
-
/// Returns the function, if any, referenced by this global.
|
3458
|
-
pub fn get_ref_func(&self) -> Option<u32> {
|
3459
|
-
let prefix = *self.bytes.get(0)?;
|
3460
|
-
// 0xd2 == `ref.func` opcode, and if that's found then load the leb
|
3461
|
-
// corresponding to the function index.
|
3462
|
-
if prefix != 0xd2 {
|
3463
|
-
return None;
|
3464
|
-
}
|
3465
|
-
leb128::read::unsigned(&mut &self.bytes[1..])
|
3466
|
-
.ok()?
|
3467
|
-
.try_into()
|
3468
|
-
.ok()
|
3469
|
-
}
|
3470
|
-
}
|
3471
|
-
|
3472
|
-
impl Encode for ConstExpr {
|
3473
|
-
fn encode(&self, sink: &mut Vec<u8>) {
|
3474
|
-
sink.extend(&self.bytes);
|
3475
|
-
Instruction::End.encode(sink);
|
3476
|
-
}
|
3477
|
-
}
|
3478
|
-
|
3479
|
-
/// An error when converting a `wasmparser::ConstExpr` into a
|
3480
|
-
/// `wasm_encoder::ConstExpr`.
|
3481
|
-
#[cfg(feature = "wasmparser")]
|
3482
|
-
#[derive(Debug)]
|
3483
|
-
pub enum ConstExprConversionError {
|
3484
|
-
/// There was an error when parsing the const expression.
|
3485
|
-
ParseError(wasmparser::BinaryReaderError),
|
3486
|
-
|
3487
|
-
/// The const expression is invalid: not actually constant or something like
|
3488
|
-
/// that.
|
3489
|
-
Invalid,
|
3490
|
-
|
3491
|
-
/// There was a type reference that was canonicalized and no longer
|
3492
|
-
/// references an index into a module's types space, so we cannot encode it
|
3493
|
-
/// into a Wasm binary again.
|
3494
|
-
CanonicalizedTypeReference,
|
3495
|
-
}
|
3496
|
-
|
3497
|
-
#[cfg(feature = "wasmparser")]
|
3498
|
-
impl std::fmt::Display for ConstExprConversionError {
|
3499
|
-
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
3500
|
-
match self {
|
3501
|
-
Self::ParseError(_e) => {
|
3502
|
-
write!(f, "There was an error when parsing the const expression")
|
3503
|
-
}
|
3504
|
-
Self::Invalid => write!(f, "The const expression was invalid"),
|
3505
|
-
Self::CanonicalizedTypeReference => write!(
|
3506
|
-
f,
|
3507
|
-
"There was a canonicalized type reference without type index information"
|
3508
|
-
),
|
3509
|
-
}
|
3510
|
-
}
|
3511
|
-
}
|
3512
|
-
|
3513
|
-
#[cfg(feature = "wasmparser")]
|
3514
|
-
impl std::error::Error for ConstExprConversionError {
|
3515
|
-
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
|
3516
|
-
match self {
|
3517
|
-
Self::ParseError(e) => Some(e),
|
3518
|
-
Self::Invalid | Self::CanonicalizedTypeReference => None,
|
3519
|
-
}
|
3520
|
-
}
|
3521
|
-
}
|
3522
|
-
|
3523
|
-
#[cfg(feature = "wasmparser")]
|
3524
|
-
impl<'a> TryFrom<wasmparser::ConstExpr<'a>> for ConstExpr {
|
3525
|
-
type Error = ConstExprConversionError;
|
3526
|
-
|
3527
|
-
fn try_from(const_expr: wasmparser::ConstExpr) -> Result<Self, Self::Error> {
|
3528
|
-
let mut ops = const_expr.get_operators_reader().into_iter();
|
3529
|
-
|
3530
|
-
let result = match ops.next() {
|
3531
|
-
Some(Ok(wasmparser::Operator::I32Const { value })) => ConstExpr::i32_const(value),
|
3532
|
-
Some(Ok(wasmparser::Operator::I64Const { value })) => ConstExpr::i64_const(value),
|
3533
|
-
Some(Ok(wasmparser::Operator::F32Const { value })) => {
|
3534
|
-
ConstExpr::f32_const(value.bits() as _)
|
3535
|
-
}
|
3536
|
-
Some(Ok(wasmparser::Operator::F64Const { value })) => {
|
3537
|
-
ConstExpr::f64_const(value.bits() as _)
|
3538
|
-
}
|
3539
|
-
Some(Ok(wasmparser::Operator::V128Const { value })) => {
|
3540
|
-
ConstExpr::v128_const(i128::from_le_bytes(*value.bytes()))
|
3541
|
-
}
|
3542
|
-
Some(Ok(wasmparser::Operator::RefNull { hty })) => ConstExpr::ref_null(
|
3543
|
-
HeapType::try_from(hty)
|
3544
|
-
.map_err(|_| ConstExprConversionError::CanonicalizedTypeReference)?,
|
3545
|
-
),
|
3546
|
-
Some(Ok(wasmparser::Operator::RefFunc { function_index })) => {
|
3547
|
-
ConstExpr::ref_func(function_index)
|
3548
|
-
}
|
3549
|
-
Some(Ok(wasmparser::Operator::GlobalGet { global_index })) => {
|
3550
|
-
ConstExpr::global_get(global_index)
|
3551
|
-
}
|
3552
|
-
|
3553
|
-
// TODO: support the extended-const proposal.
|
3554
|
-
Some(Ok(_op)) => return Err(ConstExprConversionError::Invalid),
|
3555
|
-
|
3556
|
-
Some(Err(e)) => return Err(ConstExprConversionError::ParseError(e)),
|
3557
|
-
None => return Err(ConstExprConversionError::Invalid),
|
3558
|
-
};
|
3559
|
-
|
3560
|
-
match (ops.next(), ops.next()) {
|
3561
|
-
(Some(Ok(wasmparser::Operator::End)), None) => Ok(result),
|
3562
|
-
_ => Err(ConstExprConversionError::Invalid),
|
3563
|
-
}
|
3564
|
-
}
|
3565
|
-
}
|
3566
|
-
|
3567
|
-
#[cfg(test)]
|
3568
|
-
mod tests {
|
3569
|
-
#[test]
|
3570
|
-
fn function_new_with_locals_test() {
|
3571
|
-
use super::*;
|
3572
|
-
|
3573
|
-
// Test the algorithm for conversion is correct
|
3574
|
-
let f1 = Function::new_with_locals_types([
|
3575
|
-
ValType::I32,
|
3576
|
-
ValType::I32,
|
3577
|
-
ValType::I64,
|
3578
|
-
ValType::F32,
|
3579
|
-
ValType::F32,
|
3580
|
-
ValType::F32,
|
3581
|
-
ValType::I32,
|
3582
|
-
ValType::I64,
|
3583
|
-
ValType::I64,
|
3584
|
-
]);
|
3585
|
-
let f2 = Function::new([
|
3586
|
-
(2, ValType::I32),
|
3587
|
-
(1, ValType::I64),
|
3588
|
-
(3, ValType::F32),
|
3589
|
-
(1, ValType::I32),
|
3590
|
-
(2, ValType::I64),
|
3591
|
-
]);
|
3592
|
-
|
3593
|
-
assert_eq!(f1.bytes, f2.bytes)
|
3594
|
-
}
|
3595
|
-
}
|