wasmtime 21.0.1 → 22.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +80 -87
- data/ext/Cargo.toml +4 -4
- data/ext/cargo-vendor/cranelift-bforest-0.109.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.109.0/Cargo.toml +41 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/Cargo.toml +193 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/context.rs +384 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/dominator_tree.rs +727 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/egraph.rs +835 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/inst_predicates.rs +230 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/dfg.rs +1777 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/extfunc.rs +402 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/immediates.rs +1612 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/stackslot.rs +208 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/types.rs +627 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/abi.rs +1556 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/args.rs +711 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/emit.rs +3584 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/emit_tests.rs +7901 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/imms.rs +1213 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/mod.rs +3060 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/regs.rs +269 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/unwind/systemv.rs +174 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst.isle +4218 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/pcc.rs +568 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/abi.rs +1029 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/args.rs +2054 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/emit.rs +2682 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/emit_tests.rs +2215 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/encode.rs +675 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/imms.rs +374 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/mod.rs +1938 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/unwind/systemv.rs +170 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/vector.rs +1150 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst.isle +3127 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst_vector.isle +1907 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/lower/isle.rs +649 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/lower.isle +2923 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/mod.rs +260 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/abi.rs +1016 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/inst/args.rs +298 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/inst/emit.rs +3401 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/inst/emit_tests.rs +13388 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/inst/imms.rs +202 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/inst/mod.rs +3401 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/inst/regs.rs +169 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/inst/unwind/systemv.rs +212 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/inst.isle +5028 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/lower.isle +3995 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/abi.rs +1390 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/args.rs +2240 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/emit.rs +4287 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/emit_state.rs +52 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/emit_tests.rs +5171 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/mod.rs +2821 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/regs.rs +275 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/unwind/systemv.rs +198 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst.isle +5289 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/lower.isle +4810 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/pcc.rs +1014 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isle_prelude.rs +986 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/lib.rs +106 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/abi.rs +2419 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/blockorder.rs +465 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/buffer.rs +2508 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/isle.rs +909 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/lower.rs +1432 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/mod.rs +551 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/reg.rs +479 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/valueregs.rs +138 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/vcode.rs +1741 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/opts/cprop.isle +297 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/opts/shifts.isle +307 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/prelude.isle +664 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/prelude_lower.isle +1073 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/timing.rs +296 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/traversals.rs +216 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/verifier/mod.rs +1957 -0
- data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/write.rs +638 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/Cargo.toml +36 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/cdsl/types.rs +496 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/isa/riscv64.rs +174 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.109.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.109.0/Cargo.toml +22 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.109.0/src/constants.rs +28 -0
- data/ext/cargo-vendor/cranelift-control-0.109.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.109.0/Cargo.toml +30 -0
- data/ext/cargo-vendor/cranelift-entity-0.109.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.109.0/Cargo.toml +53 -0
- data/ext/cargo-vendor/cranelift-entity-0.109.0/src/set.rs +290 -0
- data/ext/cargo-vendor/cranelift-frontend-0.109.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.109.0/Cargo.toml +68 -0
- data/ext/cargo-vendor/cranelift-frontend-0.109.0/src/frontend.rs +1857 -0
- data/ext/cargo-vendor/cranelift-frontend-0.109.0/src/lib.rs +187 -0
- data/ext/cargo-vendor/cranelift-frontend-0.109.0/src/ssa.rs +1328 -0
- data/ext/cargo-vendor/cranelift-isle-0.109.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.109.0/Cargo.toml +47 -0
- data/ext/cargo-vendor/cranelift-isle-0.109.0/src/sema.rs +2492 -0
- data/ext/cargo-vendor/cranelift-native-0.109.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.109.0/Cargo.toml +43 -0
- data/ext/cargo-vendor/cranelift-native-0.109.0/src/lib.rs +188 -0
- data/ext/cargo-vendor/cranelift-native-0.109.0/src/riscv.rs +128 -0
- data/ext/cargo-vendor/cranelift-wasm-0.109.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-wasm-0.109.0/Cargo.toml +110 -0
- data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/code_translator.rs +3695 -0
- data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/func_translator.rs +296 -0
- data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/module_translator.rs +120 -0
- data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/sections_translator.rs +343 -0
- data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/state.rs +522 -0
- data/ext/cargo-vendor/object-0.36.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/object-0.36.3/CHANGELOG.md +1028 -0
- data/ext/cargo-vendor/object-0.36.3/Cargo.toml +180 -0
- data/ext/cargo-vendor/object-0.36.3/README.md +60 -0
- data/ext/cargo-vendor/object-0.36.3/src/build/bytes.rs +146 -0
- data/ext/cargo-vendor/object-0.36.3/src/build/elf.rs +3113 -0
- data/ext/cargo-vendor/object-0.36.3/src/common.rs +590 -0
- data/ext/cargo-vendor/object-0.36.3/src/elf.rs +6303 -0
- data/ext/cargo-vendor/object-0.36.3/src/endian.rs +831 -0
- data/ext/cargo-vendor/object-0.36.3/src/macho.rs +3303 -0
- data/ext/cargo-vendor/object-0.36.3/src/pod.rs +281 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/any.rs +1334 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/archive.rs +1133 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/coff/comdat.rs +220 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/coff/file.rs +381 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/coff/relocation.rs +113 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/coff/section.rs +619 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/coff/symbol.rs +669 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/elf/attributes.rs +340 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/elf/comdat.rs +186 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/elf/file.rs +959 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/elf/hash.rs +236 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/elf/note.rs +302 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/elf/relocation.rs +661 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/elf/section.rs +1241 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/elf/segment.rs +365 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/elf/symbol.rs +654 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/elf/version.rs +513 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/gnu_compression.rs +36 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/macho/dyld_cache.rs +384 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/macho/file.rs +779 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/macho/load_command.rs +404 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/macho/section.rs +420 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/macho/segment.rs +317 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/macho/symbol.rs +532 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/mod.rs +1018 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/pe/file.rs +1033 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/pe/import.rs +381 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/pe/relocation.rs +109 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/pe/section.rs +476 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/read_cache.rs +261 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/traits.rs +589 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/wasm.rs +983 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/xcoff/file.rs +716 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/xcoff/relocation.rs +138 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/xcoff/section.rs +452 -0
- data/ext/cargo-vendor/object-0.36.3/src/read/xcoff/symbol.rs +836 -0
- data/ext/cargo-vendor/object-0.36.3/src/write/coff/object.rs +681 -0
- data/ext/cargo-vendor/object-0.36.3/src/write/coff/writer.rs +520 -0
- data/ext/cargo-vendor/object-0.36.3/src/write/elf/object.rs +897 -0
- data/ext/cargo-vendor/object-0.36.3/src/write/elf/writer.rs +2361 -0
- data/ext/cargo-vendor/object-0.36.3/src/write/macho.rs +1124 -0
- data/ext/cargo-vendor/object-0.36.3/src/write/mod.rs +1023 -0
- data/ext/cargo-vendor/object-0.36.3/src/write/pe.rs +849 -0
- data/ext/cargo-vendor/object-0.36.3/src/write/xcoff.rs +588 -0
- data/ext/cargo-vendor/object-0.36.3/tests/build/elf.rs +254 -0
- data/ext/cargo-vendor/object-0.36.3/tests/build/mod.rs +3 -0
- data/ext/cargo-vendor/object-0.36.3/tests/integration.rs +3 -0
- data/ext/cargo-vendor/object-0.36.3/tests/read/macho.rs +49 -0
- data/ext/cargo-vendor/object-0.36.3/tests/read/mod.rs +5 -0
- data/ext/cargo-vendor/object-0.36.3/tests/round_trip/bss.rs +244 -0
- data/ext/cargo-vendor/object-0.36.3/tests/round_trip/comdat.rs +217 -0
- data/ext/cargo-vendor/object-0.36.3/tests/round_trip/common.rs +241 -0
- data/ext/cargo-vendor/object-0.36.3/tests/round_trip/elf.rs +302 -0
- data/ext/cargo-vendor/object-0.36.3/tests/round_trip/mod.rs +682 -0
- data/ext/cargo-vendor/object-0.36.3/tests/round_trip/section_flags.rs +89 -0
- data/ext/cargo-vendor/object-0.36.3/tests/round_trip/tls.rs +308 -0
- data/ext/cargo-vendor/wasi-common-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-22.0.0/Cargo.toml +224 -0
- data/ext/cargo-vendor/wasi-common-22.0.0/src/snapshots/preview_0.rs +1080 -0
- data/ext/cargo-vendor/wasi-common-22.0.0/src/snapshots/preview_1.rs +1562 -0
- data/ext/cargo-vendor/wasi-common-22.0.0/src/string_array.rs +75 -0
- data/ext/cargo-vendor/wasi-common-22.0.0/src/sync/sched/windows.rs +221 -0
- data/ext/cargo-vendor/wasi-common-22.0.0/src/tokio/file.rs +247 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/Cargo.lock +662 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/Cargo.toml +109 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/binary_reader.rs +1929 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/collections/hash.rs +120 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/collections/index_map/detail.rs +1094 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/collections/index_map/tests.rs +183 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/collections/index_map.rs +656 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/collections/index_set.rs +316 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/collections/map.rs +840 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/collections/mod.rs +24 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/collections/set.rs +660 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/features.rs +164 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/lib.rs +814 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/limits.rs +79 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/parser.rs +1682 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/component/imports.rs +130 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/component/instances.rs +166 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/component/names.rs +99 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/component/types.rs +553 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/branch_hinting.rs +59 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/code.rs +142 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/coredumps.rs +278 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/custom.rs +128 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/data.rs +96 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/elements.rs +146 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/globals.rs +61 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/init.rs +57 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/linking.rs +457 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/names.rs +159 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/operators.rs +423 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/producers.rs +84 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/reloc.rs +300 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/types.rs +1788 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/readers.rs +315 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/component.rs +3236 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/core/canonical.rs +233 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/core.rs +1464 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/func.rs +331 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/names.rs +1016 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/operators.rs +4231 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/types.rs +4550 -0
- data/ext/cargo-vendor/wasmparser-0.209.1/src/validator.rs +1633 -0
- data/ext/cargo-vendor/wasmprinter-0.209.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmprinter-0.209.1/Cargo.toml +51 -0
- data/ext/cargo-vendor/wasmprinter-0.209.1/src/lib.rs +3225 -0
- data/ext/cargo-vendor/wasmprinter-0.209.1/src/operator.rs +1171 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/Cargo.toml +387 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/build.rs +42 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/compile/runtime.rs +167 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/compile.rs +917 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/config.rs +2943 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/engine/serialization.rs +890 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/lib.rs +389 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/profiling_agent/jitdump.rs +67 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/profiling_agent/perfmap.rs +48 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/code.rs +102 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/code_memory.rs +338 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/bindgen_examples/_0_hello_world.rs +9 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/bindgen_examples/_1_world_imports.rs +17 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/bindgen_examples/_2_world_exports.rs +18 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/bindgen_examples/_3_interface_imports.rs +20 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/bindgen_examples/_4_imported_resources.rs +45 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +29 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/bindgen_examples/_6_exported_resources.rs +26 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/bindgen_examples/mod.rs +489 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/component.rs +656 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/func/typed.rs +2498 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/func.rs +689 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/instance.rs +810 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/linker.rs +854 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/matching.rs +217 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/mod.rs +657 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/resource_table.rs +355 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/types.rs +897 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/debug.rs +166 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/externals/global.rs +310 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/externals/table.rs +481 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/func/typed.rs +780 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/func.rs +2564 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/gc/enabled/anyref.rs +410 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/gc/enabled/externref.rs +592 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/gc/enabled/i31.rs +299 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/gc/noextern.rs +154 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/gc.rs +92 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/instance.rs +992 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/instantiate.rs +337 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/linker.rs +1499 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/module/registry.rs +353 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/module.rs +1322 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/store/func_refs.rs +90 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/store.rs +2824 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trampoline/func.rs +94 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trampoline/memory.rs +287 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/type_registry.rs +1015 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/types.rs +2580 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/v128.rs +116 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/values.rs +966 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/component/resources.rs +352 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/component.rs +857 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/cow.rs +972 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/export.rs +108 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/gc_ref.rs +491 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/on_demand.rs +220 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +194 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +94 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +78 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +707 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +975 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +245 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +278 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling.rs +794 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator.rs +801 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance.rs +1514 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/memory.rs +736 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/custom/capi.rs +200 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/custom/vm.rs +105 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/miri/vm.rs +59 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/mod.rs +36 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/unix/signals.rs +407 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/unix/vm.rs +190 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/windows/vm.rs +75 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/table.rs +899 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/traphandlers.rs +768 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/vmcontext/vm_host_func_context.rs +79 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/vmcontext.rs +1302 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm.rs +277 -0
- data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime.rs +113 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-22.0.0/Cargo.toml +22 -0
- data/ext/cargo-vendor/wasmtime-cache-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-22.0.0/Cargo.toml +89 -0
- data/ext/cargo-vendor/wasmtime-cache-22.0.0/src/config.rs +584 -0
- data/ext/cargo-vendor/wasmtime-cache-22.0.0/src/lib.rs +235 -0
- data/ext/cargo-vendor/wasmtime-cache-22.0.0/src/tests.rs +91 -0
- data/ext/cargo-vendor/wasmtime-cache-22.0.0/src/worker/tests.rs +758 -0
- data/ext/cargo-vendor/wasmtime-cache-22.0.0/src/worker.rs +890 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/Cargo.toml +86 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/src/bindgen.rs +493 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/src/component.rs +1330 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/codegen.rs +651 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/char.rs +198 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/char_async.rs +215 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/conventions.rs +586 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/conventions_async.rs +631 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/dead-code.rs +165 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/dead-code_async.rs +178 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/direct-import.rs +91 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/direct-import_async.rs +97 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/empty.rs +45 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/empty_async.rs +45 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/flags.rs +637 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/flags_async.rs +679 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/floats.rs +255 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/floats_async.rs +282 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/function-new.rs +59 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/function-new_async.rs +62 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/integers.rs +722 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/integers_async.rs +819 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/lists.rs +1743 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/lists_async.rs +1927 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/many-arguments.rs +543 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/many-arguments_async.rs +561 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multi-return.rs +270 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multi-return_async.rs +298 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multiversion.rs +251 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multiversion_async.rs +270 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/records.rs +815 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/records_async.rs +877 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/rename.rs +154 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/rename_async.rs +167 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-export.rs +467 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-export_async.rs +516 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-import.rs +1014 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-import_async.rs +1086 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/share-types.rs +249 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/share-types_async.rs +265 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-functions.rs +313 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-functions_async.rs +347 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-lists.rs +350 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-lists_async.rs +381 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-wasi.rs +216 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-wasi_async.rs +229 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/small-anonymous.rs +275 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/small-anonymous_async.rs +287 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-default.rs +59 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-default_async.rs +62 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-export.rs +86 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-export_async.rs +89 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke.rs +104 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke_async.rs +111 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/strings.rs +247 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/strings_async.rs +269 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/unversioned-foo.rs +136 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/unversioned-foo_async.rs +143 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/use-paths.rs +288 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/use-paths_async.rs +314 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/variants.rs +1750 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/variants_async.rs +1867 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/wat.rs +84 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/wat_async.rs +84 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/worlds-with-types.rs +138 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/worlds-with-types_async.rs +148 -0
- data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded.rs +65 -0
- data/ext/cargo-vendor/wasmtime-component-util-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-22.0.0/Cargo.toml +25 -0
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/Cargo.toml +115 -0
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/compiler/component.rs +957 -0
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/compiler.rs +1067 -0
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/address_transform.rs +783 -0
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/mod.rs +256 -0
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/simulate.rs +411 -0
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/unit.rs +529 -0
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/utils.rs +186 -0
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/write_debuginfo.rs +196 -0
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/func_environ.rs +2910 -0
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/gc/enabled.rs +648 -0
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/lib.rs +462 -0
- data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/obj.rs +545 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/Cargo.lock +774 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/Cargo.toml +161 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/compile/address_map.rs +73 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/compile/mod.rs +374 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/compile/module_artifacts.rs +315 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/compile/module_environ.rs +1348 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/compile/module_types.rs +455 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/artifacts.rs +68 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/info.rs +672 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/translate/adapt.rs +455 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/translate.rs +985 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/types.rs +1038 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/types_builder/resources.rs +233 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/types_builder.rs +1004 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/fact/trampoline.rs +3234 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/fact/transcode.rs +90 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/fact.rs +714 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/lib.rs +151 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/module.rs +704 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/module_artifacts.rs +144 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/module_types.rs +139 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/ref_bits.rs +36 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/tunables.rs +175 -0
- data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/vmoffsets.rs +989 -0
- data/ext/cargo-vendor/wasmtime-fiber-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-22.0.0/Cargo.toml +65 -0
- data/ext/cargo-vendor/wasmtime-fiber-22.0.0/build.rs +39 -0
- data/ext/cargo-vendor/wasmtime-fiber-22.0.0/src/lib.rs +340 -0
- data/ext/cargo-vendor/wasmtime-fiber-22.0.0/src/unix.rs +494 -0
- data/ext/cargo-vendor/wasmtime-fiber-22.0.0/src/windows.rs +170 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-22.0.0/Cargo.toml +68 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-22.0.0/src/gdb_jit_int.rs +130 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-22.0.0/src/perf_jitdump.rs +293 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-22.0.0/Cargo.toml +52 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-22.0.0/src/libc.rs +164 -0
- data/ext/cargo-vendor/wasmtime-slab-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-slab-22.0.0/Cargo.toml +21 -0
- data/ext/cargo-vendor/wasmtime-slab-22.0.0/src/lib.rs +498 -0
- data/ext/cargo-vendor/wasmtime-types-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-types-22.0.0/Cargo.toml +56 -0
- data/ext/cargo-vendor/wasmtime-types-22.0.0/src/lib.rs +1737 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-22.0.0/Cargo.toml +32 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/Cargo.toml +201 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/bindings.rs +289 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/ctx.rs +704 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/filesystem.rs +446 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/clocks.rs +109 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/env.rs +18 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/exit.rs +14 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/filesystem/sync.rs +525 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/filesystem.rs +1091 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/instance_network.rs +18 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/io.rs +388 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/network.rs +545 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/random.rs +45 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/tcp.rs +547 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/tcp_create_socket.rs +18 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/udp.rs +762 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/udp_create_socket.rs +18 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/ip_name_lookup.rs +132 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/lib.rs +417 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/network.rs +113 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/pipe.rs +826 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/poll.rs +245 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/preview0.rs +983 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/preview1.rs +2801 -0
- data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/stdio.rs +533 -0
- data/ext/cargo-vendor/wasmtime-winch-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-22.0.0/Cargo.toml +82 -0
- data/ext/cargo-vendor/wasmtime-winch-22.0.0/src/compiler.rs +239 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-22.0.0/Cargo.toml +47 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-22.0.0/src/lib.rs +2639 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-22.0.0/src/rust.rs +427 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-22.0.0/src/types.rs +202 -0
- data/ext/cargo-vendor/wiggle-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-22.0.0/Cargo.toml +124 -0
- data/ext/cargo-vendor/wiggle-22.0.0/src/guest_type.rs +200 -0
- data/ext/cargo-vendor/wiggle-22.0.0/src/lib.rs +605 -0
- data/ext/cargo-vendor/wiggle-generate-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-22.0.0/Cargo.toml +67 -0
- data/ext/cargo-vendor/wiggle-generate-22.0.0/src/funcs.rs +434 -0
- data/ext/cargo-vendor/wiggle-generate-22.0.0/src/module_trait.rs +89 -0
- data/ext/cargo-vendor/wiggle-generate-22.0.0/src/names.rs +299 -0
- data/ext/cargo-vendor/wiggle-generate-22.0.0/src/types/flags.rs +92 -0
- data/ext/cargo-vendor/wiggle-generate-22.0.0/src/types/handle.rs +84 -0
- data/ext/cargo-vendor/wiggle-generate-22.0.0/src/types/mod.rs +129 -0
- data/ext/cargo-vendor/wiggle-generate-22.0.0/src/types/record.rs +129 -0
- data/ext/cargo-vendor/wiggle-generate-22.0.0/src/types/variant.rs +186 -0
- data/ext/cargo-vendor/wiggle-generate-22.0.0/src/wasmtime.rs +172 -0
- data/ext/cargo-vendor/wiggle-macro-22.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-22.0.0/Cargo.toml +51 -0
- data/ext/cargo-vendor/wiggle-macro-22.0.0/build.rs +5 -0
- data/ext/cargo-vendor/wiggle-macro-22.0.0/src/lib.rs +233 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/Cargo.toml +77 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/abi/mod.rs +671 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/codegen/context.rs +536 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/codegen/control.rs +972 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/codegen/env.rs +448 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/codegen/mod.rs +882 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/frame/mod.rs +258 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/isa/aarch64/asm.rs +430 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/isa/aarch64/masm.rs +572 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/isa/aarch64/regs.rs +161 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/isa/x64/asm.rs +1423 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/isa/x64/masm.rs +1120 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/masm.rs +941 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/regalloc.rs +65 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/stack.rs +439 -0
- data/ext/cargo-vendor/winch-codegen-0.20.0/src/visitor.rs +2149 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/Cargo.toml +112 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/src/ast/resolve.rs +1524 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/src/ast.rs +1668 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/src/decoding.rs +1795 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/src/lib.rs +873 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/src/live.rs +126 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/src/metadata.rs +772 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/src/resolve.rs +2498 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/src/serde_.rs +124 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/all.rs +154 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/complex-include.wit.json +200 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/diamond1.wit.json +59 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/disambiguate-diamond.wit.json +115 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/feature-gates.wit +118 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/feature-gates.wit.json +288 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/foreign-deps-union.wit.json +410 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/foreign-deps.wit.json +362 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/ignore-files-deps.wit.json +41 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/import-export-overlap2.wit.json +43 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/include-reps.wit.json +68 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/kinds-of-deps.wit.json +95 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/many-names.wit.json +42 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/multi-file.wit.json +304 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/bad-gate1.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/bad-gate1.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/bad-gate2.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/bad-gate2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/bad-gate3.wit +6 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/bad-gate3.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/bad-gate4.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/bad-gate4.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/bad-gate5.wit +11 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/bad-gate5.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/bad-since1.wit +4 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/bad-since1.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/bad-since3.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/bad-since3.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/conflicting-package.wit.result +10 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/multiple-package-docs.wit.result +10 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/resources-multiple-returns-borrow.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/resources-return-borrow.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/return-borrow1.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/return-borrow2.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/return-borrow6.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/return-borrow7.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/parse-fail/return-borrow8.wit.result +9 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/shared-types.wit.json +87 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/since-and-unstable.wit +89 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/since-and-unstable.wit.json +549 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/stress-export-elaborate.wit.json +1156 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/world-diamond.wit.json +124 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/world-iface-no-collide.wit.json +68 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/world-implicit-import1.wit.json +81 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/world-implicit-import2.wit.json +72 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/world-implicit-import3.wit.json +73 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/world-same-fields4.wit.json +82 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/world-top-level-resources.wit.json +237 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/worlds-union-dedup.wit.json +112 -0
- data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/worlds-with-types.wit.json +204 -0
- data/ext/src/ruby_api/pooling_allocation_config.rs +6 -6
- data/lib/wasmtime/version.rb +1 -1
- metadata +1525 -1459
- data/ext/cargo-vendor/cranelift-bforest-0.108.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.108.1/Cargo.toml +0 -40
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/Cargo.toml +0 -189
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/context.rs +0 -395
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/dce.rs +0 -37
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/dominator_tree.rs +0 -803
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/egraph.rs +0 -839
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/inst_predicates.rs +0 -236
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/dfg.rs +0 -1777
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/extfunc.rs +0 -411
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/immediates.rs +0 -1612
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/stackslot.rs +0 -216
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/types.rs +0 -629
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/abi.rs +0 -1580
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/args.rs +0 -721
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/emit.rs +0 -3846
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/emit_tests.rs +0 -7902
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/imms.rs +0 -1213
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/mod.rs +0 -3094
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/regs.rs +0 -288
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/unwind/systemv.rs +0 -174
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst.isle +0 -4225
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/pcc.rs +0 -568
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/abi.rs +0 -1051
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/args.rs +0 -1938
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/emit.rs +0 -2681
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/emit_tests.rs +0 -2197
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/encode.rs +0 -654
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/imms.rs +0 -374
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/mod.rs +0 -1975
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/unwind/systemv.rs +0 -170
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/vector.rs +0 -1144
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst.isle +0 -2969
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst_vector.isle +0 -1899
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/lower/isle.rs +0 -625
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/lower.isle +0 -2883
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/mod.rs +0 -260
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/abi.rs +0 -1037
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/args.rs +0 -314
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/emit.rs +0 -3646
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/emit_tests.rs +0 -13389
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/imms.rs +0 -202
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/mod.rs +0 -3421
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/regs.rs +0 -180
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/unwind/systemv.rs +0 -212
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst.isle +0 -5033
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/lower.isle +0 -3995
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/abi.rs +0 -1410
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/args.rs +0 -2256
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/emit.rs +0 -4311
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/emit_state.rs +0 -74
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/emit_tests.rs +0 -5171
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/mod.rs +0 -2838
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/regs.rs +0 -276
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/unwind/systemv.rs +0 -198
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst.isle +0 -5294
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/lower.isle +0 -4808
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/pcc.rs +0 -1014
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isle_prelude.rs +0 -957
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/lib.rs +0 -106
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/abi.rs +0 -2506
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/blockorder.rs +0 -465
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/buffer.rs +0 -2512
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/isle.rs +0 -903
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/lower.rs +0 -1432
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/mod.rs +0 -555
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/reg.rs +0 -522
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/valueregs.rs +0 -138
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/vcode.rs +0 -1741
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/opts/cprop.isle +0 -281
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/opts/shifts.isle +0 -307
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/prelude.isle +0 -646
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/prelude_lower.isle +0 -1073
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/timing.rs +0 -297
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/verifier/mod.rs +0 -1957
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/write.rs +0 -631
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/Cargo.toml +0 -35
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/cdsl/types.rs +0 -496
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/isa/riscv64.rs +0 -168
- data/ext/cargo-vendor/cranelift-codegen-shared-0.108.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.108.1/Cargo.toml +0 -22
- data/ext/cargo-vendor/cranelift-codegen-shared-0.108.1/src/constants.rs +0 -28
- data/ext/cargo-vendor/cranelift-control-0.108.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.108.1/Cargo.toml +0 -30
- data/ext/cargo-vendor/cranelift-entity-0.108.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.108.1/Cargo.toml +0 -52
- data/ext/cargo-vendor/cranelift-entity-0.108.1/src/set.rs +0 -290
- data/ext/cargo-vendor/cranelift-frontend-0.108.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.108.1/Cargo.toml +0 -67
- data/ext/cargo-vendor/cranelift-frontend-0.108.1/src/frontend.rs +0 -1854
- data/ext/cargo-vendor/cranelift-frontend-0.108.1/src/lib.rs +0 -189
- data/ext/cargo-vendor/cranelift-frontend-0.108.1/src/ssa.rs +0 -1328
- data/ext/cargo-vendor/cranelift-isle-0.108.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.108.1/Cargo.toml +0 -46
- data/ext/cargo-vendor/cranelift-isle-0.108.1/src/sema.rs +0 -2492
- data/ext/cargo-vendor/cranelift-native-0.108.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.108.1/Cargo.toml +0 -43
- data/ext/cargo-vendor/cranelift-native-0.108.1/src/lib.rs +0 -188
- data/ext/cargo-vendor/cranelift-native-0.108.1/src/riscv.rs +0 -128
- data/ext/cargo-vendor/cranelift-wasm-0.108.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-wasm-0.108.1/Cargo.toml +0 -109
- data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/code_translator.rs +0 -3687
- data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/func_translator.rs +0 -296
- data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/module_translator.rs +0 -128
- data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/sections_translator.rs +0 -389
- data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/state.rs +0 -522
- data/ext/cargo-vendor/object-0.33.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/object-0.33.0/CHANGELOG.md +0 -797
- data/ext/cargo-vendor/object-0.33.0/Cargo.toml +0 -179
- data/ext/cargo-vendor/object-0.33.0/README.md +0 -56
- data/ext/cargo-vendor/object-0.33.0/src/build/bytes.rs +0 -141
- data/ext/cargo-vendor/object-0.33.0/src/build/elf.rs +0 -3033
- data/ext/cargo-vendor/object-0.33.0/src/common.rs +0 -568
- data/ext/cargo-vendor/object-0.33.0/src/elf.rs +0 -6291
- data/ext/cargo-vendor/object-0.33.0/src/endian.rs +0 -831
- data/ext/cargo-vendor/object-0.33.0/src/macho.rs +0 -3309
- data/ext/cargo-vendor/object-0.33.0/src/pod.rs +0 -239
- data/ext/cargo-vendor/object-0.33.0/src/read/any.rs +0 -1328
- data/ext/cargo-vendor/object-0.33.0/src/read/archive.rs +0 -759
- data/ext/cargo-vendor/object-0.33.0/src/read/coff/comdat.rs +0 -211
- data/ext/cargo-vendor/object-0.33.0/src/read/coff/file.rs +0 -383
- data/ext/cargo-vendor/object-0.33.0/src/read/coff/relocation.rs +0 -108
- data/ext/cargo-vendor/object-0.33.0/src/read/coff/section.rs +0 -585
- data/ext/cargo-vendor/object-0.33.0/src/read/coff/symbol.rs +0 -635
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/attributes.rs +0 -306
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/comdat.rs +0 -162
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/file.rs +0 -918
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/hash.rs +0 -224
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/note.rs +0 -271
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/relocation.rs +0 -629
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/section.rs +0 -1150
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/segment.rs +0 -356
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/symbol.rs +0 -595
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/version.rs +0 -424
- data/ext/cargo-vendor/object-0.33.0/src/read/macho/dyld_cache.rs +0 -345
- data/ext/cargo-vendor/object-0.33.0/src/read/macho/file.rs +0 -783
- data/ext/cargo-vendor/object-0.33.0/src/read/macho/load_command.rs +0 -386
- data/ext/cargo-vendor/object-0.33.0/src/read/macho/section.rs +0 -389
- data/ext/cargo-vendor/object-0.33.0/src/read/macho/segment.rs +0 -303
- data/ext/cargo-vendor/object-0.33.0/src/read/macho/symbol.rs +0 -492
- data/ext/cargo-vendor/object-0.33.0/src/read/mod.rs +0 -880
- data/ext/cargo-vendor/object-0.33.0/src/read/pe/file.rs +0 -1053
- data/ext/cargo-vendor/object-0.33.0/src/read/pe/import.rs +0 -339
- data/ext/cargo-vendor/object-0.33.0/src/read/pe/relocation.rs +0 -92
- data/ext/cargo-vendor/object-0.33.0/src/read/pe/section.rs +0 -440
- data/ext/cargo-vendor/object-0.33.0/src/read/read_cache.rs +0 -213
- data/ext/cargo-vendor/object-0.33.0/src/read/traits.rs +0 -551
- data/ext/cargo-vendor/object-0.33.0/src/read/wasm.rs +0 -966
- data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/file.rs +0 -697
- data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/relocation.rs +0 -134
- data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/section.rs +0 -433
- data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/symbol.rs +0 -784
- data/ext/cargo-vendor/object-0.33.0/src/write/coff/object.rs +0 -678
- data/ext/cargo-vendor/object-0.33.0/src/write/coff/writer.rs +0 -518
- data/ext/cargo-vendor/object-0.33.0/src/write/elf/object.rs +0 -885
- data/ext/cargo-vendor/object-0.33.0/src/write/elf/writer.rs +0 -2309
- data/ext/cargo-vendor/object-0.33.0/src/write/macho.rs +0 -1107
- data/ext/cargo-vendor/object-0.33.0/src/write/mod.rs +0 -990
- data/ext/cargo-vendor/object-0.33.0/src/write/pe.rs +0 -847
- data/ext/cargo-vendor/object-0.33.0/src/write/xcoff.rs +0 -589
- data/ext/cargo-vendor/object-0.33.0/tests/integration.rs +0 -2
- data/ext/cargo-vendor/object-0.33.0/tests/read/mod.rs +0 -4
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/bss.rs +0 -255
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/comdat.rs +0 -225
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/common.rs +0 -245
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/elf.rs +0 -289
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/mod.rs +0 -704
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/section_flags.rs +0 -90
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/tls.rs +0 -316
- data/ext/cargo-vendor/wasi-common-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-21.0.1/Cargo.toml +0 -223
- data/ext/cargo-vendor/wasi-common-21.0.1/src/snapshots/preview_0.rs +0 -1145
- data/ext/cargo-vendor/wasi-common-21.0.1/src/snapshots/preview_1.rs +0 -1497
- data/ext/cargo-vendor/wasi-common-21.0.1/src/string_array.rs +0 -74
- data/ext/cargo-vendor/wasi-common-21.0.1/src/sync/sched/windows.rs +0 -221
- data/ext/cargo-vendor/wasi-common-21.0.1/src/tokio/file.rs +0 -247
- data/ext/cargo-vendor/wasm-encoder-0.207.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-encoder-0.207.0/Cargo.toml +0 -45
- data/ext/cargo-vendor/wasm-encoder-0.207.0/README.md +0 -80
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/component/aliases.rs +0 -160
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/component/builder.rs +0 -455
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/component/canonicals.rs +0 -159
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/component/components.rs +0 -29
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/component/exports.rs +0 -124
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/component/imports.rs +0 -175
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/component/instances.rs +0 -200
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/component/modules.rs +0 -29
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/component/names.rs +0 -149
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/component/start.rs +0 -52
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/component/types.rs +0 -792
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/component.rs +0 -168
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/code.rs +0 -3502
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/custom.rs +0 -73
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/data.rs +0 -186
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/dump.rs +0 -627
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/elements.rs +0 -221
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/exports.rs +0 -98
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/functions.rs +0 -63
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/globals.rs +0 -112
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/imports.rs +0 -157
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/linking.rs +0 -263
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/memories.rs +0 -128
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/names.rs +0 -298
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/producers.rs +0 -180
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/start.rs +0 -39
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/tables.rs +0 -134
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/tags.rs +0 -104
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/types.rs +0 -678
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core.rs +0 -168
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/lib.rs +0 -215
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/raw.rs +0 -30
- data/ext/cargo-vendor/wasmparser-0.207.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmparser-0.207.0/Cargo.lock +0 -659
- data/ext/cargo-vendor/wasmparser-0.207.0/Cargo.toml +0 -95
- data/ext/cargo-vendor/wasmparser-0.207.0/src/binary_reader.rs +0 -1867
- data/ext/cargo-vendor/wasmparser-0.207.0/src/lib.rs +0 -805
- data/ext/cargo-vendor/wasmparser-0.207.0/src/limits.rs +0 -78
- data/ext/cargo-vendor/wasmparser-0.207.0/src/map.rs +0 -137
- data/ext/cargo-vendor/wasmparser-0.207.0/src/parser.rs +0 -1636
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/imports.rs +0 -129
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/instances.rs +0 -164
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/names.rs +0 -102
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/types.rs +0 -551
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/branch_hinting.rs +0 -59
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/code.rs +0 -146
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/coredumps.rs +0 -244
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/custom.rs +0 -64
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/data.rs +0 -96
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/elements.rs +0 -152
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/globals.rs +0 -51
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/init.rs +0 -51
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/linking.rs +0 -450
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/names.rs +0 -159
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/operators.rs +0 -430
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/producers.rs +0 -83
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/reloc.rs +0 -301
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/types.rs +0 -1773
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers.rs +0 -316
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/component.rs +0 -3242
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/core/canonical.rs +0 -233
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/core.rs +0 -1450
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/func.rs +0 -331
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/names.rs +0 -947
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/operators.rs +0 -4117
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/types.rs +0 -4492
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator.rs +0 -1786
- data/ext/cargo-vendor/wasmprinter-0.207.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmprinter-0.207.0/Cargo.toml +0 -50
- data/ext/cargo-vendor/wasmprinter-0.207.0/src/lib.rs +0 -3226
- data/ext/cargo-vendor/wasmprinter-0.207.0/src/operator.rs +0 -1164
- data/ext/cargo-vendor/wasmtime-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-21.0.1/Cargo.toml +0 -386
- data/ext/cargo-vendor/wasmtime-21.0.1/build.rs +0 -37
- data/ext/cargo-vendor/wasmtime-21.0.1/src/compile/runtime.rs +0 -176
- data/ext/cargo-vendor/wasmtime-21.0.1/src/compile.rs +0 -910
- data/ext/cargo-vendor/wasmtime-21.0.1/src/config.rs +0 -2904
- data/ext/cargo-vendor/wasmtime-21.0.1/src/engine/serialization.rs +0 -887
- data/ext/cargo-vendor/wasmtime-21.0.1/src/lib.rs +0 -328
- data/ext/cargo-vendor/wasmtime-21.0.1/src/profiling_agent/jitdump.rs +0 -67
- data/ext/cargo-vendor/wasmtime-21.0.1/src/profiling_agent/perfmap.rs +0 -48
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/code.rs +0 -102
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/code_memory.rs +0 -337
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/component.rs +0 -661
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/func/typed.rs +0 -2498
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/func.rs +0 -746
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/instance.rs +0 -814
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/linker.rs +0 -783
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/matching.rs +0 -217
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/mod.rs +0 -783
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/resource_table.rs +0 -355
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/types.rs +0 -892
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/debug.rs +0 -166
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/externals/global.rs +0 -310
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/externals/table.rs +0 -477
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/func/typed.rs +0 -899
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/func.rs +0 -2627
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/enabled/anyref.rs +0 -473
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/enabled/externref.rs +0 -650
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/enabled/i31.rs +0 -346
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc.rs +0 -89
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/instance.rs +0 -992
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/instantiate.rs +0 -346
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/linker.rs +0 -1506
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/module/registry.rs +0 -353
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/module.rs +0 -1295
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/store/func_refs.rs +0 -90
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/store.rs +0 -2820
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline/func.rs +0 -139
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline/memory.rs +0 -287
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/type_registry.rs +0 -807
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/types.rs +0 -2239
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/v128.rs +0 -131
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/values.rs +0 -966
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/component/resources.rs +0 -352
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/component.rs +0 -860
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/cow.rs +0 -893
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/export.rs +0 -108
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/gc_ref.rs +0 -491
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/on_demand.rs +0 -218
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -93
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -66
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -705
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -1000
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -233
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -245
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling.rs +0 -656
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator.rs +0 -798
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance.rs +0 -1519
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/memory.rs +0 -744
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/capi.rs +0 -200
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/vm.rs +0 -109
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/miri/vm.rs +0 -63
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/mod.rs +0 -25
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/signals.rs +0 -401
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/vm.rs +0 -215
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/windows/vm.rs +0 -79
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/table.rs +0 -847
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/traphandlers.rs +0 -768
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -138
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/vmcontext.rs +0 -1337
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm.rs +0 -287
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime.rs +0 -110
- data/ext/cargo-vendor/wasmtime-asm-macros-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-21.0.1/Cargo.toml +0 -22
- data/ext/cargo-vendor/wasmtime-cache-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-21.0.1/Cargo.toml +0 -88
- data/ext/cargo-vendor/wasmtime-cache-21.0.1/src/config.rs +0 -584
- data/ext/cargo-vendor/wasmtime-cache-21.0.1/src/lib.rs +0 -235
- data/ext/cargo-vendor/wasmtime-cache-21.0.1/src/tests.rs +0 -91
- data/ext/cargo-vendor/wasmtime-cache-21.0.1/src/worker/tests.rs +0 -758
- data/ext/cargo-vendor/wasmtime-cache-21.0.1/src/worker.rs +0 -890
- data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/Cargo.toml +0 -79
- data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/src/bindgen.rs +0 -436
- data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/src/component.rs +0 -1295
- data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/tests/codegen.rs +0 -576
- data/ext/cargo-vendor/wasmtime-component-util-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-21.0.1/Cargo.toml +0 -25
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/Cargo.toml +0 -114
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/compiler/component.rs +0 -968
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/compiler.rs +0 -1383
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/address_transform.rs +0 -783
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/mod.rs +0 -256
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/simulate.rs +0 -411
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/unit.rs +0 -529
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/utils.rs +0 -186
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/write_debuginfo.rs +0 -196
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/func_environ.rs +0 -2888
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/gc/enabled.rs +0 -648
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/lib.rs +0 -511
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/obj.rs +0 -545
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/Cargo.lock +0 -772
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/Cargo.toml +0 -154
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/address_map.rs +0 -73
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/mod.rs +0 -419
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/module_artifacts.rs +0 -315
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/module_environ.rs +0 -1337
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/module_types.rs +0 -362
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/artifacts.rs +0 -72
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/info.rs +0 -672
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/translate/adapt.rs +0 -455
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/translate.rs +0 -978
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/types.rs +0 -1029
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/types_builder/resources.rs +0 -233
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/types_builder.rs +0 -997
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact/trampoline.rs +0 -3234
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact/transcode.rs +0 -90
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact.rs +0 -714
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/lib.rs +0 -161
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/module.rs +0 -697
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/module_artifacts.rs +0 -146
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/module_types.rs +0 -91
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/ref_bits.rs +0 -36
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/tunables.rs +0 -168
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/vmoffsets.rs +0 -1015
- data/ext/cargo-vendor/wasmtime-fiber-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-21.0.1/Cargo.toml +0 -64
- data/ext/cargo-vendor/wasmtime-fiber-21.0.1/build.rs +0 -38
- data/ext/cargo-vendor/wasmtime-fiber-21.0.1/src/lib.rs +0 -328
- data/ext/cargo-vendor/wasmtime-fiber-21.0.1/src/unix.rs +0 -490
- data/ext/cargo-vendor/wasmtime-fiber-21.0.1/src/windows.rs +0 -166
- data/ext/cargo-vendor/wasmtime-jit-debug-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-21.0.1/Cargo.toml +0 -67
- data/ext/cargo-vendor/wasmtime-jit-debug-21.0.1/src/gdb_jit_int.rs +0 -130
- data/ext/cargo-vendor/wasmtime-jit-debug-21.0.1/src/perf_jitdump.rs +0 -293
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/Cargo.toml +0 -51
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/src/libc.rs +0 -163
- data/ext/cargo-vendor/wasmtime-slab-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-slab-21.0.1/Cargo.toml +0 -21
- data/ext/cargo-vendor/wasmtime-slab-21.0.1/src/lib.rs +0 -498
- data/ext/cargo-vendor/wasmtime-types-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-types-21.0.1/Cargo.toml +0 -55
- data/ext/cargo-vendor/wasmtime-types-21.0.1/src/lib.rs +0 -1572
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-21.0.1/Cargo.toml +0 -32
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/Cargo.toml +0 -200
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/bindings.rs +0 -280
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/ctx.rs +0 -667
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/filesystem.rs +0 -446
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/clocks.rs +0 -103
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/env.rs +0 -15
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/exit.rs +0 -11
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/filesystem/sync.rs +0 -518
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/filesystem.rs +0 -1079
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/instance_network.rs +0 -15
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/io.rs +0 -367
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/network.rs +0 -539
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/random.rs +0 -36
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/tcp.rs +0 -306
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/tcp_create_socket.rs +0 -15
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/udp.rs +0 -532
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/udp_create_socket.rs +0 -15
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/ip_name_lookup.rs +0 -126
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/lib.rs +0 -426
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/network.rs +0 -107
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/pipe.rs +0 -826
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/poll.rs +0 -233
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/preview0.rs +0 -877
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/preview1.rs +0 -2660
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/stdio.rs +0 -507
- data/ext/cargo-vendor/wasmtime-winch-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-21.0.1/Cargo.toml +0 -81
- data/ext/cargo-vendor/wasmtime-winch-21.0.1/src/compiler.rs +0 -261
- data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/Cargo.toml +0 -46
- data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/src/lib.rs +0 -2541
- data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/src/rust.rs +0 -421
- data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/src/types.rs +0 -202
- data/ext/cargo-vendor/wiggle-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-21.0.1/Cargo.toml +0 -123
- data/ext/cargo-vendor/wiggle-21.0.1/src/borrow.rs +0 -113
- data/ext/cargo-vendor/wiggle-21.0.1/src/guest_type.rs +0 -237
- data/ext/cargo-vendor/wiggle-21.0.1/src/lib.rs +0 -1184
- data/ext/cargo-vendor/wiggle-21.0.1/src/wasmtime.rs +0 -97
- data/ext/cargo-vendor/wiggle-generate-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-21.0.1/Cargo.toml +0 -66
- data/ext/cargo-vendor/wiggle-generate-21.0.1/src/funcs.rs +0 -435
- data/ext/cargo-vendor/wiggle-generate-21.0.1/src/module_trait.rs +0 -102
- data/ext/cargo-vendor/wiggle-generate-21.0.1/src/names.rs +0 -303
- data/ext/cargo-vendor/wiggle-generate-21.0.1/src/types/flags.rs +0 -92
- data/ext/cargo-vendor/wiggle-generate-21.0.1/src/types/handle.rs +0 -84
- data/ext/cargo-vendor/wiggle-generate-21.0.1/src/types/mod.rs +0 -129
- data/ext/cargo-vendor/wiggle-generate-21.0.1/src/types/record.rs +0 -132
- data/ext/cargo-vendor/wiggle-generate-21.0.1/src/types/variant.rs +0 -191
- data/ext/cargo-vendor/wiggle-generate-21.0.1/src/wasmtime.rs +0 -170
- data/ext/cargo-vendor/wiggle-macro-21.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-21.0.1/Cargo.toml +0 -55
- data/ext/cargo-vendor/wiggle-macro-21.0.1/LICENSE +0 -220
- data/ext/cargo-vendor/wiggle-macro-21.0.1/src/lib.rs +0 -210
- data/ext/cargo-vendor/winch-codegen-0.19.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-0.19.1/Cargo.toml +0 -76
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/abi/mod.rs +0 -671
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/codegen/context.rs +0 -534
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/codegen/control.rs +0 -972
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/codegen/env.rs +0 -440
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/codegen/mod.rs +0 -882
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/frame/mod.rs +0 -258
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/asm.rs +0 -380
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/masm.rs +0 -566
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/regs.rs +0 -161
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/x64/asm.rs +0 -1423
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/x64/masm.rs +0 -1120
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/masm.rs +0 -941
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/regalloc.rs +0 -65
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/stack.rs +0 -439
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/visitor.rs +0 -2144
- data/ext/cargo-vendor/wit-parser-0.207.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wit-parser-0.207.0/Cargo.toml +0 -109
- data/ext/cargo-vendor/wit-parser-0.207.0/src/ast/resolve.rs +0 -1442
- data/ext/cargo-vendor/wit-parser-0.207.0/src/ast.rs +0 -1348
- data/ext/cargo-vendor/wit-parser-0.207.0/src/decoding.rs +0 -1764
- data/ext/cargo-vendor/wit-parser-0.207.0/src/docs.rs +0 -389
- data/ext/cargo-vendor/wit-parser-0.207.0/src/lib.rs +0 -777
- data/ext/cargo-vendor/wit-parser-0.207.0/src/live.rs +0 -126
- data/ext/cargo-vendor/wit-parser-0.207.0/src/resolve.rs +0 -2337
- data/ext/cargo-vendor/wit-parser-0.207.0/src/serde_.rs +0 -108
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/all.rs +0 -153
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/complex-include.wit.json +0 -168
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/diamond1.wit.json +0 -55
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/disambiguate-diamond.wit.json +0 -107
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/foreign-deps-union.wit.json +0 -380
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/foreign-deps.wit.json +0 -344
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/ignore-files-deps.wit.json +0 -39
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/import-export-overlap2.wit.json +0 -41
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/include-reps.wit.json +0 -60
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/kinds-of-deps.wit.json +0 -87
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/many-names.wit.json +0 -40
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/multi-file.wit.json +0 -298
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/conflicting-package.wit.result +0 -9
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -9
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/resources-multiple-returns-borrow.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/resources-return-borrow.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow1.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow2.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow6.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow7.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow8.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/shared-types.wit.json +0 -83
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/stress-export-elaborate.wit.json +0 -1136
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-diamond.wit.json +0 -118
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-iface-no-collide.wit.json +0 -66
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-implicit-import1.wit.json +0 -75
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-implicit-import2.wit.json +0 -70
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-implicit-import3.wit.json +0 -71
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-same-fields4.wit.json +0 -76
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-top-level-resources.wit.json +0 -231
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/worlds-union-dedup.wit.json +0 -100
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/worlds-with-types.wit.json +0 -202
- /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.109.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.109.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.109.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.109.0}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.109.0}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.109.0}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.109.0}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.109.0}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/binemit/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/binemit/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/function.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/libcall.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/memtype.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/aarch64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/aarch64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/call_conv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/s390x/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/s390x/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/x64/encoding/rex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/x64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/x64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/x64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/machinst/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/opts/extends.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/opts/icmp.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/opts/spaceship.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/opts/spectre.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/opts/vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/ranges.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/unionfind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.109.0}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/cdsl/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/cdsl/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/gen_inst.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/gen_isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/isa/arm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/isa/x86.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/shared/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.109.0}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.108.1 → cranelift-codegen-shared-0.109.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.108.1 → cranelift-codegen-shared-0.109.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.108.1 → cranelift-codegen-shared-0.109.0}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.108.1 → cranelift-codegen-shared-0.109.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.108.1 → cranelift-control-0.109.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.108.1 → cranelift-control-0.109.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.108.1 → cranelift-control-0.109.0}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.108.1 → cranelift-control-0.109.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.108.1 → cranelift-control-0.109.0}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.109.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.109.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.109.0}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.109.0}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.109.0}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.109.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.109.0}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.109.0}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.109.0}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.109.0}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.109.0}/src/sparse.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.109.0}/src/unsigned.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.108.1 → cranelift-frontend-0.109.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.108.1 → cranelift-frontend-0.109.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.108.1 → cranelift-frontend-0.109.0}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.108.1 → cranelift-frontend-0.109.0}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/src/disjointsets.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/src/stablemapset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.109.0}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.108.1 → cranelift-native-0.109.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.108.1 → cranelift-native-0.109.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.109.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.109.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.109.0}/src/code_translator/bounds_checks.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.109.0}/src/environ/dummy.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.109.0}/src/environ/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.109.0}/src/environ/spec.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.109.0}/src/heap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.109.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.109.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.109.0}/src/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/archive.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/build/error.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/build/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/build/table.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/pe.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/coff/import.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/coff/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/elf/compression.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/elf/dynamic.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/elf/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/macho/fat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/macho/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/macho/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/pe/data_directory.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/pe/export.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/pe/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/pe/resource.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/pe/rich.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/read_ref.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/util.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/xcoff/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/xcoff/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/xcoff/segment.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/write/coff/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/write/elf/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/write/string.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/write/util.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/xcoff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/tests/parse_self.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/tests/read/coff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/tests/read/elf.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/tests/round_trip/coff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/tests/round_trip/macho.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/sync/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/sync/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/sync/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/sync/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/sync/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/sync/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/sync/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/tokio/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/tokio/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/tokio/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/tokio/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/tokio/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/tokio/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/src/tokio/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/tests/all/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/tests/all/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/witx/preview0/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/witx/preview1/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-22.0.0}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/benches/benchmark.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/examples/simple.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/src/readers/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/src/readers/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/src/readers/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/src/readers/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/src/readers/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/src/readers/core/dylink0.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/src/readers/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/src/readers/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/src/readers/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/src/readers/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/src/readers/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/src/readers/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/src/readers/core/types/matches.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/src/readers/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/src/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.209.1}/tests/big-module.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasmprinter-0.209.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.207.0 → wasmprinter-0.209.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.207.0 → wasmprinter-0.209.1}/tests/all.rs +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.207.0 → wasmtime-22.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/compile/code_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/engine.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/profiling_agent/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/profiling_agent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/component/func/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/component/func/options.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/component/storage.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/component/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/coredump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/gc/disabled/anyref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/gc/disabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/gc/disabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/gc/disabled/rooting.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/gc/enabled/rooting.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/stack.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/trampoline/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/trap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/uninhabited.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/arch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/arch/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/arch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/arch/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/arch/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/async_yield.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/component/libcalls.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/const_expr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/gc/enabled/drc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/gc/gc_runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/gc/host_data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/gc/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/helpers.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/libcalls.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/mpk/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/mpk/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/mpk/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/mpk/pkru.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/mpk/sys.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/custom/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/custom/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/custom/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/miri/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/miri/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/miri/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/unix/machports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/unix/macos_traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/unix/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/unix/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/windows/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/windows/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/sys/windows/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/threads/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/threads/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/threads/shared_memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/threads/shared_memory_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/runtime/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/sync_nostd.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-22.0.0}/src/sync_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-21.0.1 → wasmtime-asm-macros-22.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-cache-22.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-21.0.1 → wasmtime-cache-22.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-21.0.1 → wasmtime-cache-22.0.0}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-21.0.1 → wasmtime-cache-22.0.0}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-21.0.1 → wasmtime-cache-22.0.0}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/dead-code.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/multiversion/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/resources-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/resources-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/unversioned-foo.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/wat.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-22.0.0}/tests/codegen_no_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-21.0.1 → wasmtime-component-util-22.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-21.0.1 → wasmtime-cranelift-22.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-22.0.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-22.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-22.0.0}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-22.0.0}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-22.0.0}/src/debug/transform/attr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-22.0.0}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-22.0.0}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-22.0.0}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-22.0.0}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-22.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-22.0.0}/src/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-22.0.0}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-22.0.0}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-environ-22.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/examples/factc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/builtin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/compile/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/component/dfg.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/component/translate/inline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/component/vmcomponent_offsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/fact/signature.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-22.0.0}/src/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-fiber-22.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-fiber-22.0.0}/src/unix/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-fiber-22.0.0}/src/unix/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-fiber-22.0.0}/src/unix/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-fiber-22.0.0}/src/unix/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-fiber-22.0.0}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-fiber-22.0.0}/src/unix/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-fiber-22.0.0}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-21.0.1 → wasmtime-jit-debug-22.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-21.0.1 → wasmtime-jit-debug-22.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-21.0.1 → wasmtime-jit-icache-coherence-22.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-21.0.1 → wasmtime-jit-icache-coherence-22.0.0}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-21.0.1 → wasmtime-jit-icache-coherence-22.0.0}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-types-22.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-21.0.1 → wasmtime-types-22.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-21.0.1 → wasmtime-versioned-export-macros-22.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-21.0.1 → wasmtime-wasi-22.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/src/clocks/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/src/host/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/src/stdio/worker_thread_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/src/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/src/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/src/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/src/write_stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/tests/all/api.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/tests/all/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/tests/all/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/tests/all/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/tests/process_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/command-extended.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/cli/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/cli/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/cli/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/cli/imports.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/cli/run.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/cli/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/cli/terminal.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/clocks/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/filesystem/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/filesystem/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/filesystem/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/http/handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/http/proxy.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/http/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/io/error.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/io/poll.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/io/streams.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/io/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/random/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/sockets/tcp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/sockets/udp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/deps/sockets/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/wit/test.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/witx/preview0/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/witx/preview1/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-22.0.0}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-21.0.1 → wasmtime-winch-22.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-21.0.1 → wasmtime-winch-22.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-21.0.1 → wasmtime-winch-22.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-21.0.1 → wasmtime-wit-bindgen-22.0.0}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wiggle-22.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-21.0.1 → wiggle-22.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-21.0.1 → wiggle-22.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-21.0.1 → wiggle-22.0.0}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-21.0.1 → wiggle-generate-22.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-21.0.1 → wiggle-generate-22.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-21.0.1 → wiggle-generate-22.0.0}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-21.0.1 → wiggle-generate-22.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-21.0.1 → wiggle-generate-22.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-21.0.1 → wiggle-generate-22.0.0}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-21.0.1 → wiggle-generate-22.0.0}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-21.0.1 → wiggle-macro-22.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/src/codegen/bounds.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/src/codegen/builtin.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/src/codegen/call.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/src/isa/aarch64/abi.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/src/isa/x64/abi.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.20.0}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/src/abi.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/src/ast/lex.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/src/ast/toposort.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/src/sizealign.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/comments.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/comments.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/complex-include/deps/bar/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/complex-include/deps/baz/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/complex-include/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/cross-package-resource/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/cross-package-resource.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/diamond1/join.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/disambiguate-diamond/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/empty.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/foreign-deps-union/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/functions.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/ignore-files-deps/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/import-export-overlap1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/import-export-overlap1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/import-export-overlap2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/include-reps.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/kebab-name-include-with.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/kebab-name-include-with.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/kinds-of-deps/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/kinds-of-deps/deps/b/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/kinds-of-deps/deps/c.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/kinds-of-deps/deps/d.wat +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/kinds-of-deps/deps/e.wasm +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/many-names/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/many-names/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/multi-file/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/multi-file/cycle-a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/multi-file/cycle-b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/multi-file/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/name-both-resource-and-type.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/package-syntax1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/package-syntax1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/package-syntax3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/package-syntax3.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/package-syntax4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/package-syntax4.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/alias-no-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/async.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/async1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-function.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-function.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-function2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-include1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-include2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-include3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-list.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-list.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource10.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource11.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource12.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource13.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource14.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource6.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/cycle2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/cycle3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/cycle3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/cycle5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/cycle5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/dangling-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/duplicate-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/empty-enum.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/empty-variant1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/export-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/export-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/import-and-export1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/import-and-export2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/import-and-export3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/import-and-export4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/import-and-export5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/import-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/import-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/include-cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/include-with-id.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/keyword.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/keyword.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/missing-package.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/missing-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/resources-multiple-returns-borrow.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/resources-return-borrow.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/return-borrow1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/return-borrow2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/return-borrow3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/return-borrow3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/return-borrow4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/return-borrow4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/return-borrow5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/return-borrow5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/return-borrow6.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/return-borrow7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/return-borrow8/deps/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/return-borrow8/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/undefined-typed.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unknown-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-conflict.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-conflict2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-conflict3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-cycle1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-shadow1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-world/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/use-world.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/random.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/random.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/resources-empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/resources-empty.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/resources-multiple-returns-own.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/resources-multiple.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/resources-multiple.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/resources-return-own.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/resources-return-own.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/resources.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/resources.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/resources1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/resources1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/same-name-import-export.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/same-name-import-export.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/shared-types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/simple-wasm-text.wat +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/simple-wasm-text.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/stress-export-elaborate.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/type-then-eof.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/type-then-eof.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/types.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/union-fuzz-1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/union-fuzz-1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/union-fuzz-2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/union-fuzz-2.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/use-chain.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/use-chain.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/use.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/use.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/versions/deps/a1/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/versions/deps/a2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/versions/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/versions.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/wasi.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/wasi.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/world-diamond.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/world-iface-no-collide.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/world-implicit-import1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/world-implicit-import2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/world-implicit-import3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/world-same-fields4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/world-top-level-funcs.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/world-top-level-funcs.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/world-top-level-resources.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/worlds-union-dedup.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.209.1}/tests/ui/worlds-with-types.wit +0 -0
@@ -0,0 +1,3401 @@
|
|
1
|
+
//! This module defines s390x-specific machine instruction types.
|
2
|
+
|
3
|
+
use crate::binemit::{Addend, CodeOffset, Reloc};
|
4
|
+
use crate::ir::{types, ExternalName, Opcode, Type};
|
5
|
+
use crate::isa::s390x::abi::S390xMachineDeps;
|
6
|
+
use crate::isa::{CallConv, FunctionAlignment};
|
7
|
+
use crate::machinst::*;
|
8
|
+
use crate::{settings, CodegenError, CodegenResult};
|
9
|
+
use alloc::boxed::Box;
|
10
|
+
use alloc::vec::Vec;
|
11
|
+
use regalloc2::PRegSet;
|
12
|
+
use smallvec::SmallVec;
|
13
|
+
use std::fmt::Write;
|
14
|
+
use std::string::{String, ToString};
|
15
|
+
pub mod regs;
|
16
|
+
pub use self::regs::*;
|
17
|
+
pub mod imms;
|
18
|
+
pub use self::imms::*;
|
19
|
+
pub mod args;
|
20
|
+
pub use self::args::*;
|
21
|
+
pub mod emit;
|
22
|
+
pub use self::emit::*;
|
23
|
+
pub mod unwind;
|
24
|
+
|
25
|
+
#[cfg(test)]
|
26
|
+
mod emit_tests;
|
27
|
+
|
28
|
+
//=============================================================================
|
29
|
+
// Instructions (top level): definition
|
30
|
+
|
31
|
+
pub use crate::isa::s390x::lower::isle::generated_code::{
|
32
|
+
ALUOp, CmpOp, FPUOp1, FPUOp2, FPUOp3, FpuRoundMode, FpuRoundOp, LaneOrder, MInst as Inst,
|
33
|
+
RxSBGOp, ShiftOp, SymbolReloc, UnaryOp, VecBinaryOp, VecFloatCmpOp, VecIntCmpOp, VecShiftOp,
|
34
|
+
VecUnaryOp,
|
35
|
+
};
|
36
|
+
|
37
|
+
/// Additional information for (direct) Call instructions, left out of line to lower the size of
|
38
|
+
/// the Inst enum.
|
39
|
+
#[derive(Clone, Debug)]
|
40
|
+
pub struct CallInfo {
|
41
|
+
pub dest: ExternalName,
|
42
|
+
pub uses: CallArgList,
|
43
|
+
pub defs: CallRetList,
|
44
|
+
pub clobbers: PRegSet,
|
45
|
+
pub opcode: Opcode,
|
46
|
+
pub caller_callconv: CallConv,
|
47
|
+
pub callee_callconv: CallConv,
|
48
|
+
pub tls_symbol: Option<SymbolReloc>,
|
49
|
+
}
|
50
|
+
|
51
|
+
/// Additional information for CallInd instructions, left out of line to lower the size of the Inst
|
52
|
+
/// enum.
|
53
|
+
#[derive(Clone, Debug)]
|
54
|
+
pub struct CallIndInfo {
|
55
|
+
pub rn: Reg,
|
56
|
+
pub uses: CallArgList,
|
57
|
+
pub defs: CallRetList,
|
58
|
+
pub clobbers: PRegSet,
|
59
|
+
pub opcode: Opcode,
|
60
|
+
pub caller_callconv: CallConv,
|
61
|
+
pub callee_callconv: CallConv,
|
62
|
+
}
|
63
|
+
|
64
|
+
#[test]
|
65
|
+
fn inst_size_test() {
|
66
|
+
// This test will help with unintentionally growing the size
|
67
|
+
// of the Inst enum.
|
68
|
+
assert_eq!(32, std::mem::size_of::<Inst>());
|
69
|
+
}
|
70
|
+
|
71
|
+
/// A register pair. Enum so it can be destructured in ISLE.
|
72
|
+
#[derive(Clone, Copy, Debug)]
|
73
|
+
pub struct RegPair {
|
74
|
+
pub hi: Reg,
|
75
|
+
pub lo: Reg,
|
76
|
+
}
|
77
|
+
|
78
|
+
/// A writable register pair. Enum so it can be destructured in ISLE.
|
79
|
+
#[derive(Clone, Copy, Debug)]
|
80
|
+
pub struct WritableRegPair {
|
81
|
+
pub hi: Writable<Reg>,
|
82
|
+
pub lo: Writable<Reg>,
|
83
|
+
}
|
84
|
+
|
85
|
+
impl WritableRegPair {
|
86
|
+
pub fn to_regpair(&self) -> RegPair {
|
87
|
+
RegPair {
|
88
|
+
hi: self.hi.to_reg(),
|
89
|
+
lo: self.lo.to_reg(),
|
90
|
+
}
|
91
|
+
}
|
92
|
+
}
|
93
|
+
|
94
|
+
/// Supported instruction sets
|
95
|
+
#[allow(non_camel_case_types)]
|
96
|
+
#[derive(Debug)]
|
97
|
+
pub(crate) enum InstructionSet {
|
98
|
+
/// Baseline ISA for cranelift is z14.
|
99
|
+
Base,
|
100
|
+
/// Miscellaneous-Instruction-Extensions Facility 2 (z15)
|
101
|
+
MIE2,
|
102
|
+
/// Vector-Enhancements Facility 2 (z15)
|
103
|
+
VXRS_EXT2,
|
104
|
+
}
|
105
|
+
|
106
|
+
impl Inst {
|
107
|
+
/// Retrieve the ISA feature set in which the instruction is available.
|
108
|
+
fn available_in_isa(&self) -> InstructionSet {
|
109
|
+
match self {
|
110
|
+
// These instructions are part of the baseline ISA for cranelift (z14)
|
111
|
+
Inst::Nop0
|
112
|
+
| Inst::Nop2
|
113
|
+
| Inst::AluRRSImm16 { .. }
|
114
|
+
| Inst::AluRR { .. }
|
115
|
+
| Inst::AluRX { .. }
|
116
|
+
| Inst::AluRSImm16 { .. }
|
117
|
+
| Inst::AluRSImm32 { .. }
|
118
|
+
| Inst::AluRUImm32 { .. }
|
119
|
+
| Inst::AluRUImm16Shifted { .. }
|
120
|
+
| Inst::AluRUImm32Shifted { .. }
|
121
|
+
| Inst::ShiftRR { .. }
|
122
|
+
| Inst::RxSBG { .. }
|
123
|
+
| Inst::RxSBGTest { .. }
|
124
|
+
| Inst::SMulWide { .. }
|
125
|
+
| Inst::UMulWide { .. }
|
126
|
+
| Inst::SDivMod32 { .. }
|
127
|
+
| Inst::SDivMod64 { .. }
|
128
|
+
| Inst::UDivMod32 { .. }
|
129
|
+
| Inst::UDivMod64 { .. }
|
130
|
+
| Inst::Flogr { .. }
|
131
|
+
| Inst::CmpRR { .. }
|
132
|
+
| Inst::CmpRX { .. }
|
133
|
+
| Inst::CmpRSImm16 { .. }
|
134
|
+
| Inst::CmpRSImm32 { .. }
|
135
|
+
| Inst::CmpRUImm32 { .. }
|
136
|
+
| Inst::CmpTrapRR { .. }
|
137
|
+
| Inst::CmpTrapRSImm16 { .. }
|
138
|
+
| Inst::CmpTrapRUImm16 { .. }
|
139
|
+
| Inst::AtomicRmw { .. }
|
140
|
+
| Inst::AtomicCas32 { .. }
|
141
|
+
| Inst::AtomicCas64 { .. }
|
142
|
+
| Inst::Fence
|
143
|
+
| Inst::Load32 { .. }
|
144
|
+
| Inst::Load32ZExt8 { .. }
|
145
|
+
| Inst::Load32SExt8 { .. }
|
146
|
+
| Inst::Load32ZExt16 { .. }
|
147
|
+
| Inst::Load32SExt16 { .. }
|
148
|
+
| Inst::Load64 { .. }
|
149
|
+
| Inst::Load64ZExt8 { .. }
|
150
|
+
| Inst::Load64SExt8 { .. }
|
151
|
+
| Inst::Load64ZExt16 { .. }
|
152
|
+
| Inst::Load64SExt16 { .. }
|
153
|
+
| Inst::Load64ZExt32 { .. }
|
154
|
+
| Inst::Load64SExt32 { .. }
|
155
|
+
| Inst::LoadRev16 { .. }
|
156
|
+
| Inst::LoadRev32 { .. }
|
157
|
+
| Inst::LoadRev64 { .. }
|
158
|
+
| Inst::Store8 { .. }
|
159
|
+
| Inst::Store16 { .. }
|
160
|
+
| Inst::Store32 { .. }
|
161
|
+
| Inst::Store64 { .. }
|
162
|
+
| Inst::StoreImm8 { .. }
|
163
|
+
| Inst::StoreImm16 { .. }
|
164
|
+
| Inst::StoreImm32SExt16 { .. }
|
165
|
+
| Inst::StoreImm64SExt16 { .. }
|
166
|
+
| Inst::StoreRev16 { .. }
|
167
|
+
| Inst::StoreRev32 { .. }
|
168
|
+
| Inst::StoreRev64 { .. }
|
169
|
+
| Inst::Mvc { .. }
|
170
|
+
| Inst::LoadMultiple64 { .. }
|
171
|
+
| Inst::StoreMultiple64 { .. }
|
172
|
+
| Inst::Mov32 { .. }
|
173
|
+
| Inst::Mov64 { .. }
|
174
|
+
| Inst::MovPReg { .. }
|
175
|
+
| Inst::Mov32Imm { .. }
|
176
|
+
| Inst::Mov32SImm16 { .. }
|
177
|
+
| Inst::Mov64SImm16 { .. }
|
178
|
+
| Inst::Mov64SImm32 { .. }
|
179
|
+
| Inst::Mov64UImm16Shifted { .. }
|
180
|
+
| Inst::Mov64UImm32Shifted { .. }
|
181
|
+
| Inst::Insert64UImm16Shifted { .. }
|
182
|
+
| Inst::Insert64UImm32Shifted { .. }
|
183
|
+
| Inst::LoadAR { .. }
|
184
|
+
| Inst::InsertAR { .. }
|
185
|
+
| Inst::Extend { .. }
|
186
|
+
| Inst::CMov32 { .. }
|
187
|
+
| Inst::CMov64 { .. }
|
188
|
+
| Inst::CMov32SImm16 { .. }
|
189
|
+
| Inst::CMov64SImm16 { .. }
|
190
|
+
| Inst::FpuMove32 { .. }
|
191
|
+
| Inst::FpuMove64 { .. }
|
192
|
+
| Inst::FpuCMov32 { .. }
|
193
|
+
| Inst::FpuCMov64 { .. }
|
194
|
+
| Inst::FpuRR { .. }
|
195
|
+
| Inst::FpuRRR { .. }
|
196
|
+
| Inst::FpuRRRR { .. }
|
197
|
+
| Inst::FpuCmp32 { .. }
|
198
|
+
| Inst::FpuCmp64 { .. }
|
199
|
+
| Inst::LoadFpuConst32 { .. }
|
200
|
+
| Inst::LoadFpuConst64 { .. }
|
201
|
+
| Inst::VecRRR { .. }
|
202
|
+
| Inst::VecRR { .. }
|
203
|
+
| Inst::VecShiftRR { .. }
|
204
|
+
| Inst::VecSelect { .. }
|
205
|
+
| Inst::VecPermute { .. }
|
206
|
+
| Inst::VecPermuteDWImm { .. }
|
207
|
+
| Inst::VecIntCmp { .. }
|
208
|
+
| Inst::VecIntCmpS { .. }
|
209
|
+
| Inst::VecFloatCmp { .. }
|
210
|
+
| Inst::VecFloatCmpS { .. }
|
211
|
+
| Inst::VecInt128SCmpHi { .. }
|
212
|
+
| Inst::VecInt128UCmpHi { .. }
|
213
|
+
| Inst::VecLoad { .. }
|
214
|
+
| Inst::VecStore { .. }
|
215
|
+
| Inst::VecLoadReplicate { .. }
|
216
|
+
| Inst::VecMov { .. }
|
217
|
+
| Inst::VecCMov { .. }
|
218
|
+
| Inst::MovToVec128 { .. }
|
219
|
+
| Inst::VecLoadConst { .. }
|
220
|
+
| Inst::VecLoadConstReplicate { .. }
|
221
|
+
| Inst::VecImmByteMask { .. }
|
222
|
+
| Inst::VecImmBitMask { .. }
|
223
|
+
| Inst::VecImmReplicate { .. }
|
224
|
+
| Inst::VecLoadLane { .. }
|
225
|
+
| Inst::VecLoadLaneUndef { .. }
|
226
|
+
| Inst::VecStoreLane { .. }
|
227
|
+
| Inst::VecInsertLane { .. }
|
228
|
+
| Inst::VecInsertLaneUndef { .. }
|
229
|
+
| Inst::VecExtractLane { .. }
|
230
|
+
| Inst::VecInsertLaneImm { .. }
|
231
|
+
| Inst::VecReplicateLane { .. }
|
232
|
+
| Inst::Call { .. }
|
233
|
+
| Inst::CallInd { .. }
|
234
|
+
| Inst::Args { .. }
|
235
|
+
| Inst::Rets { .. }
|
236
|
+
| Inst::Ret { .. }
|
237
|
+
| Inst::Jump { .. }
|
238
|
+
| Inst::CondBr { .. }
|
239
|
+
| Inst::TrapIf { .. }
|
240
|
+
| Inst::OneWayCondBr { .. }
|
241
|
+
| Inst::IndirectBr { .. }
|
242
|
+
| Inst::Debugtrap
|
243
|
+
| Inst::Trap { .. }
|
244
|
+
| Inst::JTSequence { .. }
|
245
|
+
| Inst::LoadSymbolReloc { .. }
|
246
|
+
| Inst::LoadAddr { .. }
|
247
|
+
| Inst::Loop { .. }
|
248
|
+
| Inst::CondBreak { .. }
|
249
|
+
| Inst::Unwind { .. } => InstructionSet::Base,
|
250
|
+
|
251
|
+
// These depend on the opcode
|
252
|
+
Inst::AluRRR { alu_op, .. } => match alu_op {
|
253
|
+
ALUOp::NotAnd32 | ALUOp::NotAnd64 => InstructionSet::MIE2,
|
254
|
+
ALUOp::NotOrr32 | ALUOp::NotOrr64 => InstructionSet::MIE2,
|
255
|
+
ALUOp::NotXor32 | ALUOp::NotXor64 => InstructionSet::MIE2,
|
256
|
+
ALUOp::AndNot32 | ALUOp::AndNot64 => InstructionSet::MIE2,
|
257
|
+
ALUOp::OrrNot32 | ALUOp::OrrNot64 => InstructionSet::MIE2,
|
258
|
+
_ => InstructionSet::Base,
|
259
|
+
},
|
260
|
+
Inst::UnaryRR { op, .. } => match op {
|
261
|
+
UnaryOp::PopcntReg => InstructionSet::MIE2,
|
262
|
+
_ => InstructionSet::Base,
|
263
|
+
},
|
264
|
+
Inst::FpuRound { op, .. } => match op {
|
265
|
+
FpuRoundOp::ToSInt32 | FpuRoundOp::FromSInt32 => InstructionSet::VXRS_EXT2,
|
266
|
+
FpuRoundOp::ToUInt32 | FpuRoundOp::FromUInt32 => InstructionSet::VXRS_EXT2,
|
267
|
+
FpuRoundOp::ToSInt32x4 | FpuRoundOp::FromSInt32x4 => InstructionSet::VXRS_EXT2,
|
268
|
+
FpuRoundOp::ToUInt32x4 | FpuRoundOp::FromUInt32x4 => InstructionSet::VXRS_EXT2,
|
269
|
+
_ => InstructionSet::Base,
|
270
|
+
},
|
271
|
+
|
272
|
+
// These are all part of VXRS_EXT2
|
273
|
+
Inst::VecLoadRev { .. }
|
274
|
+
| Inst::VecLoadByte16Rev { .. }
|
275
|
+
| Inst::VecLoadByte32Rev { .. }
|
276
|
+
| Inst::VecLoadByte64Rev { .. }
|
277
|
+
| Inst::VecLoadElt16Rev { .. }
|
278
|
+
| Inst::VecLoadElt32Rev { .. }
|
279
|
+
| Inst::VecLoadElt64Rev { .. }
|
280
|
+
| Inst::VecStoreRev { .. }
|
281
|
+
| Inst::VecStoreByte16Rev { .. }
|
282
|
+
| Inst::VecStoreByte32Rev { .. }
|
283
|
+
| Inst::VecStoreByte64Rev { .. }
|
284
|
+
| Inst::VecStoreElt16Rev { .. }
|
285
|
+
| Inst::VecStoreElt32Rev { .. }
|
286
|
+
| Inst::VecStoreElt64Rev { .. }
|
287
|
+
| Inst::VecLoadReplicateRev { .. }
|
288
|
+
| Inst::VecLoadLaneRev { .. }
|
289
|
+
| Inst::VecLoadLaneRevUndef { .. }
|
290
|
+
| Inst::VecStoreLaneRev { .. } => InstructionSet::VXRS_EXT2,
|
291
|
+
|
292
|
+
Inst::DummyUse { .. } => InstructionSet::Base,
|
293
|
+
}
|
294
|
+
}
|
295
|
+
|
296
|
+
/// Create a 128-bit move instruction.
|
297
|
+
pub fn mov128(to_reg: Writable<Reg>, from_reg: Reg) -> Inst {
|
298
|
+
assert!(to_reg.to_reg().class() == RegClass::Float);
|
299
|
+
assert!(from_reg.class() == RegClass::Float);
|
300
|
+
Inst::VecMov {
|
301
|
+
rd: to_reg,
|
302
|
+
rn: from_reg,
|
303
|
+
}
|
304
|
+
}
|
305
|
+
|
306
|
+
/// Create a 64-bit move instruction.
|
307
|
+
pub fn mov64(to_reg: Writable<Reg>, from_reg: Reg) -> Inst {
|
308
|
+
assert!(to_reg.to_reg().class() == from_reg.class());
|
309
|
+
if from_reg.class() == RegClass::Int {
|
310
|
+
Inst::Mov64 {
|
311
|
+
rd: to_reg,
|
312
|
+
rm: from_reg,
|
313
|
+
}
|
314
|
+
} else {
|
315
|
+
Inst::FpuMove64 {
|
316
|
+
rd: to_reg,
|
317
|
+
rn: from_reg,
|
318
|
+
}
|
319
|
+
}
|
320
|
+
}
|
321
|
+
|
322
|
+
/// Create a 32-bit move instruction.
|
323
|
+
pub fn mov32(to_reg: Writable<Reg>, from_reg: Reg) -> Inst {
|
324
|
+
if from_reg.class() == RegClass::Int {
|
325
|
+
Inst::Mov32 {
|
326
|
+
rd: to_reg,
|
327
|
+
rm: from_reg,
|
328
|
+
}
|
329
|
+
} else {
|
330
|
+
Inst::FpuMove32 {
|
331
|
+
rd: to_reg,
|
332
|
+
rn: from_reg,
|
333
|
+
}
|
334
|
+
}
|
335
|
+
}
|
336
|
+
|
337
|
+
/// Generic constructor for a load (zero-extending where appropriate).
|
338
|
+
pub fn gen_load(into_reg: Writable<Reg>, mem: MemArg, ty: Type) -> Inst {
|
339
|
+
match ty {
|
340
|
+
types::I8 => Inst::Load64ZExt8 { rd: into_reg, mem },
|
341
|
+
types::I16 => Inst::Load64ZExt16 { rd: into_reg, mem },
|
342
|
+
types::I32 => Inst::Load64ZExt32 { rd: into_reg, mem },
|
343
|
+
types::I64 | types::R64 => Inst::Load64 { rd: into_reg, mem },
|
344
|
+
types::F32 => Inst::VecLoadLaneUndef {
|
345
|
+
size: 32,
|
346
|
+
rd: into_reg,
|
347
|
+
mem,
|
348
|
+
lane_imm: 0,
|
349
|
+
},
|
350
|
+
types::F64 => Inst::VecLoadLaneUndef {
|
351
|
+
size: 64,
|
352
|
+
rd: into_reg,
|
353
|
+
mem,
|
354
|
+
lane_imm: 0,
|
355
|
+
},
|
356
|
+
_ if ty.is_vector() && ty.bits() == 128 => Inst::VecLoad { rd: into_reg, mem },
|
357
|
+
types::I128 => Inst::VecLoad { rd: into_reg, mem },
|
358
|
+
_ => unimplemented!("gen_load({})", ty),
|
359
|
+
}
|
360
|
+
}
|
361
|
+
|
362
|
+
/// Generic constructor for a store.
|
363
|
+
pub fn gen_store(mem: MemArg, from_reg: Reg, ty: Type) -> Inst {
|
364
|
+
match ty {
|
365
|
+
types::I8 => Inst::Store8 { rd: from_reg, mem },
|
366
|
+
types::I16 => Inst::Store16 { rd: from_reg, mem },
|
367
|
+
types::I32 => Inst::Store32 { rd: from_reg, mem },
|
368
|
+
types::I64 | types::R64 => Inst::Store64 { rd: from_reg, mem },
|
369
|
+
types::F32 => Inst::VecStoreLane {
|
370
|
+
size: 32,
|
371
|
+
rd: from_reg,
|
372
|
+
mem,
|
373
|
+
lane_imm: 0,
|
374
|
+
},
|
375
|
+
types::F64 => Inst::VecStoreLane {
|
376
|
+
size: 64,
|
377
|
+
rd: from_reg,
|
378
|
+
mem,
|
379
|
+
lane_imm: 0,
|
380
|
+
},
|
381
|
+
_ if ty.is_vector() && ty.bits() == 128 => Inst::VecStore { rd: from_reg, mem },
|
382
|
+
types::I128 => Inst::VecStore { rd: from_reg, mem },
|
383
|
+
_ => unimplemented!("gen_store({})", ty),
|
384
|
+
}
|
385
|
+
}
|
386
|
+
}
|
387
|
+
|
388
|
+
//=============================================================================
|
389
|
+
// Instructions: get_regs
|
390
|
+
|
391
|
+
fn memarg_operands(memarg: &mut MemArg, collector: &mut impl OperandVisitor) {
|
392
|
+
match memarg {
|
393
|
+
MemArg::BXD12 { base, index, .. } | MemArg::BXD20 { base, index, .. } => {
|
394
|
+
collector.reg_use(base);
|
395
|
+
collector.reg_use(index);
|
396
|
+
}
|
397
|
+
MemArg::Label { .. } | MemArg::Symbol { .. } => {}
|
398
|
+
MemArg::RegOffset { reg, .. } => {
|
399
|
+
collector.reg_use(reg);
|
400
|
+
}
|
401
|
+
MemArg::InitialSPOffset { .. } | MemArg::SlotOffset { .. } => {}
|
402
|
+
}
|
403
|
+
// mem_finalize might require %r1 to hold (part of) the address.
|
404
|
+
// Conservatively assume this will always be necessary here.
|
405
|
+
collector.reg_fixed_nonallocatable(gpr_preg(1));
|
406
|
+
}
|
407
|
+
|
408
|
+
fn s390x_get_operands(inst: &mut Inst, collector: &mut DenyReuseVisitor<impl OperandVisitor>) {
|
409
|
+
match inst {
|
410
|
+
Inst::AluRRR { rd, rn, rm, .. } => {
|
411
|
+
collector.reg_def(rd);
|
412
|
+
collector.reg_use(rn);
|
413
|
+
collector.reg_use(rm);
|
414
|
+
}
|
415
|
+
Inst::AluRRSImm16 { rd, rn, .. } => {
|
416
|
+
collector.reg_def(rd);
|
417
|
+
collector.reg_use(rn);
|
418
|
+
}
|
419
|
+
Inst::AluRR { rd, ri, rm, .. } => {
|
420
|
+
collector.reg_reuse_def(rd, 1);
|
421
|
+
collector.reg_use(ri);
|
422
|
+
collector.reg_use(rm);
|
423
|
+
}
|
424
|
+
Inst::AluRX { rd, ri, mem, .. } => {
|
425
|
+
collector.reg_reuse_def(rd, 1);
|
426
|
+
collector.reg_use(ri);
|
427
|
+
memarg_operands(mem, collector);
|
428
|
+
}
|
429
|
+
Inst::AluRSImm16 { rd, ri, .. } => {
|
430
|
+
collector.reg_reuse_def(rd, 1);
|
431
|
+
collector.reg_use(ri);
|
432
|
+
}
|
433
|
+
Inst::AluRSImm32 { rd, ri, .. } => {
|
434
|
+
collector.reg_reuse_def(rd, 1);
|
435
|
+
collector.reg_use(ri);
|
436
|
+
}
|
437
|
+
Inst::AluRUImm32 { rd, ri, .. } => {
|
438
|
+
collector.reg_reuse_def(rd, 1);
|
439
|
+
collector.reg_use(ri);
|
440
|
+
}
|
441
|
+
Inst::AluRUImm16Shifted { rd, ri, .. } => {
|
442
|
+
collector.reg_reuse_def(rd, 1);
|
443
|
+
collector.reg_use(ri);
|
444
|
+
}
|
445
|
+
Inst::AluRUImm32Shifted { rd, ri, .. } => {
|
446
|
+
collector.reg_reuse_def(rd, 1);
|
447
|
+
collector.reg_use(ri);
|
448
|
+
}
|
449
|
+
Inst::SMulWide { rd, rn, rm } => {
|
450
|
+
collector.reg_use(rn);
|
451
|
+
collector.reg_use(rm);
|
452
|
+
// FIXME: The pair is hard-coded as %r2/%r3 because regalloc cannot handle pairs. If
|
453
|
+
// that changes, all the hard-coded uses of %r2/%r3 can be changed.
|
454
|
+
collector.reg_fixed_def(&mut rd.hi, gpr(2));
|
455
|
+
collector.reg_fixed_def(&mut rd.lo, gpr(3));
|
456
|
+
}
|
457
|
+
Inst::UMulWide { rd, ri, rn } => {
|
458
|
+
collector.reg_use(rn);
|
459
|
+
collector.reg_fixed_def(&mut rd.hi, gpr(2));
|
460
|
+
collector.reg_fixed_def(&mut rd.lo, gpr(3));
|
461
|
+
collector.reg_fixed_use(ri, gpr(3));
|
462
|
+
}
|
463
|
+
Inst::SDivMod32 { rd, ri, rn } | Inst::SDivMod64 { rd, ri, rn } => {
|
464
|
+
collector.reg_use(rn);
|
465
|
+
collector.reg_fixed_def(&mut rd.hi, gpr(2));
|
466
|
+
collector.reg_fixed_def(&mut rd.lo, gpr(3));
|
467
|
+
collector.reg_fixed_use(ri, gpr(3));
|
468
|
+
}
|
469
|
+
Inst::UDivMod32 { rd, ri, rn } | Inst::UDivMod64 { rd, ri, rn } => {
|
470
|
+
collector.reg_use(rn);
|
471
|
+
collector.reg_fixed_def(&mut rd.hi, gpr(2));
|
472
|
+
collector.reg_fixed_def(&mut rd.lo, gpr(3));
|
473
|
+
collector.reg_fixed_use(&mut ri.hi, gpr(2));
|
474
|
+
collector.reg_fixed_use(&mut ri.lo, gpr(3));
|
475
|
+
}
|
476
|
+
Inst::Flogr { rd, rn } => {
|
477
|
+
collector.reg_use(rn);
|
478
|
+
collector.reg_fixed_def(&mut rd.hi, gpr(2));
|
479
|
+
collector.reg_fixed_def(&mut rd.lo, gpr(3));
|
480
|
+
}
|
481
|
+
Inst::ShiftRR {
|
482
|
+
rd, rn, shift_reg, ..
|
483
|
+
} => {
|
484
|
+
collector.reg_def(rd);
|
485
|
+
collector.reg_use(rn);
|
486
|
+
collector.reg_use(shift_reg);
|
487
|
+
}
|
488
|
+
Inst::RxSBG { rd, ri, rn, .. } => {
|
489
|
+
collector.reg_reuse_def(rd, 1);
|
490
|
+
collector.reg_use(ri);
|
491
|
+
collector.reg_use(rn);
|
492
|
+
}
|
493
|
+
Inst::RxSBGTest { rd, rn, .. } => {
|
494
|
+
collector.reg_use(rd);
|
495
|
+
collector.reg_use(rn);
|
496
|
+
}
|
497
|
+
Inst::UnaryRR { rd, rn, .. } => {
|
498
|
+
collector.reg_def(rd);
|
499
|
+
collector.reg_use(rn);
|
500
|
+
}
|
501
|
+
Inst::CmpRR { rn, rm, .. } => {
|
502
|
+
collector.reg_use(rn);
|
503
|
+
collector.reg_use(rm);
|
504
|
+
}
|
505
|
+
Inst::CmpRX { rn, mem, .. } => {
|
506
|
+
collector.reg_use(rn);
|
507
|
+
memarg_operands(mem, collector);
|
508
|
+
}
|
509
|
+
Inst::CmpRSImm16 { rn, .. } => {
|
510
|
+
collector.reg_use(rn);
|
511
|
+
}
|
512
|
+
Inst::CmpRSImm32 { rn, .. } => {
|
513
|
+
collector.reg_use(rn);
|
514
|
+
}
|
515
|
+
Inst::CmpRUImm32 { rn, .. } => {
|
516
|
+
collector.reg_use(rn);
|
517
|
+
}
|
518
|
+
Inst::CmpTrapRR { rn, rm, .. } => {
|
519
|
+
collector.reg_use(rn);
|
520
|
+
collector.reg_use(rm);
|
521
|
+
}
|
522
|
+
Inst::CmpTrapRSImm16 { rn, .. } => {
|
523
|
+
collector.reg_use(rn);
|
524
|
+
}
|
525
|
+
Inst::CmpTrapRUImm16 { rn, .. } => {
|
526
|
+
collector.reg_use(rn);
|
527
|
+
}
|
528
|
+
Inst::AtomicRmw { rd, rn, mem, .. } => {
|
529
|
+
collector.reg_def(rd);
|
530
|
+
collector.reg_use(rn);
|
531
|
+
memarg_operands(mem, collector);
|
532
|
+
}
|
533
|
+
Inst::AtomicCas32 {
|
534
|
+
rd, ri, rn, mem, ..
|
535
|
+
}
|
536
|
+
| Inst::AtomicCas64 {
|
537
|
+
rd, ri, rn, mem, ..
|
538
|
+
} => {
|
539
|
+
collector.reg_reuse_def(rd, 1);
|
540
|
+
collector.reg_use(ri);
|
541
|
+
collector.reg_use(rn);
|
542
|
+
memarg_operands(mem, collector);
|
543
|
+
}
|
544
|
+
Inst::Fence => {}
|
545
|
+
Inst::Load32 { rd, mem, .. }
|
546
|
+
| Inst::Load32ZExt8 { rd, mem, .. }
|
547
|
+
| Inst::Load32SExt8 { rd, mem, .. }
|
548
|
+
| Inst::Load32ZExt16 { rd, mem, .. }
|
549
|
+
| Inst::Load32SExt16 { rd, mem, .. }
|
550
|
+
| Inst::Load64 { rd, mem, .. }
|
551
|
+
| Inst::Load64ZExt8 { rd, mem, .. }
|
552
|
+
| Inst::Load64SExt8 { rd, mem, .. }
|
553
|
+
| Inst::Load64ZExt16 { rd, mem, .. }
|
554
|
+
| Inst::Load64SExt16 { rd, mem, .. }
|
555
|
+
| Inst::Load64ZExt32 { rd, mem, .. }
|
556
|
+
| Inst::Load64SExt32 { rd, mem, .. }
|
557
|
+
| Inst::LoadRev16 { rd, mem, .. }
|
558
|
+
| Inst::LoadRev32 { rd, mem, .. }
|
559
|
+
| Inst::LoadRev64 { rd, mem, .. } => {
|
560
|
+
collector.reg_def(rd);
|
561
|
+
memarg_operands(mem, collector);
|
562
|
+
}
|
563
|
+
Inst::Store8 { rd, mem, .. }
|
564
|
+
| Inst::Store16 { rd, mem, .. }
|
565
|
+
| Inst::Store32 { rd, mem, .. }
|
566
|
+
| Inst::Store64 { rd, mem, .. }
|
567
|
+
| Inst::StoreRev16 { rd, mem, .. }
|
568
|
+
| Inst::StoreRev32 { rd, mem, .. }
|
569
|
+
| Inst::StoreRev64 { rd, mem, .. } => {
|
570
|
+
collector.reg_use(rd);
|
571
|
+
memarg_operands(mem, collector);
|
572
|
+
}
|
573
|
+
Inst::StoreImm8 { mem, .. }
|
574
|
+
| Inst::StoreImm16 { mem, .. }
|
575
|
+
| Inst::StoreImm32SExt16 { mem, .. }
|
576
|
+
| Inst::StoreImm64SExt16 { mem, .. } => {
|
577
|
+
memarg_operands(mem, collector);
|
578
|
+
}
|
579
|
+
Inst::Mvc { dst, src, .. } => {
|
580
|
+
collector.reg_use(&mut dst.base);
|
581
|
+
collector.reg_use(&mut src.base);
|
582
|
+
}
|
583
|
+
Inst::LoadMultiple64 { rt, rt2, mem, .. } => {
|
584
|
+
memarg_operands(mem, collector);
|
585
|
+
let first_regnum = rt.to_reg().to_real_reg().unwrap().hw_enc();
|
586
|
+
let last_regnum = rt2.to_reg().to_real_reg().unwrap().hw_enc();
|
587
|
+
for regnum in first_regnum..last_regnum + 1 {
|
588
|
+
collector.reg_fixed_nonallocatable(gpr_preg(regnum));
|
589
|
+
}
|
590
|
+
}
|
591
|
+
Inst::StoreMultiple64 { rt, rt2, mem, .. } => {
|
592
|
+
memarg_operands(mem, collector);
|
593
|
+
let first_regnum = rt.to_real_reg().unwrap().hw_enc();
|
594
|
+
let last_regnum = rt2.to_real_reg().unwrap().hw_enc();
|
595
|
+
for regnum in first_regnum..last_regnum + 1 {
|
596
|
+
collector.reg_fixed_nonallocatable(gpr_preg(regnum));
|
597
|
+
}
|
598
|
+
}
|
599
|
+
Inst::Mov64 { rd, rm } => {
|
600
|
+
collector.reg_def(rd);
|
601
|
+
collector.reg_use(rm);
|
602
|
+
}
|
603
|
+
Inst::MovPReg { rd, rm } => {
|
604
|
+
debug_assert!([gpr_preg(0), gpr_preg(14), gpr_preg(15)].contains(rm));
|
605
|
+
debug_assert!(rd.to_reg().is_virtual());
|
606
|
+
collector.reg_def(rd);
|
607
|
+
}
|
608
|
+
Inst::Mov32 { rd, rm } => {
|
609
|
+
collector.reg_def(rd);
|
610
|
+
collector.reg_use(rm);
|
611
|
+
}
|
612
|
+
Inst::Mov32Imm { rd, .. }
|
613
|
+
| Inst::Mov32SImm16 { rd, .. }
|
614
|
+
| Inst::Mov64SImm16 { rd, .. }
|
615
|
+
| Inst::Mov64SImm32 { rd, .. }
|
616
|
+
| Inst::Mov64UImm16Shifted { rd, .. }
|
617
|
+
| Inst::Mov64UImm32Shifted { rd, .. } => {
|
618
|
+
collector.reg_def(rd);
|
619
|
+
}
|
620
|
+
Inst::CMov32 { rd, ri, rm, .. } | Inst::CMov64 { rd, ri, rm, .. } => {
|
621
|
+
collector.reg_reuse_def(rd, 1);
|
622
|
+
collector.reg_use(ri);
|
623
|
+
collector.reg_use(rm);
|
624
|
+
}
|
625
|
+
Inst::CMov32SImm16 { rd, ri, .. } | Inst::CMov64SImm16 { rd, ri, .. } => {
|
626
|
+
collector.reg_reuse_def(rd, 1);
|
627
|
+
collector.reg_use(ri);
|
628
|
+
}
|
629
|
+
Inst::Insert64UImm16Shifted { rd, ri, .. } | Inst::Insert64UImm32Shifted { rd, ri, .. } => {
|
630
|
+
collector.reg_reuse_def(rd, 1);
|
631
|
+
collector.reg_use(ri);
|
632
|
+
}
|
633
|
+
Inst::LoadAR { rd, .. } => {
|
634
|
+
collector.reg_def(rd);
|
635
|
+
}
|
636
|
+
Inst::InsertAR { rd, ri, .. } => {
|
637
|
+
collector.reg_reuse_def(rd, 1);
|
638
|
+
collector.reg_use(ri);
|
639
|
+
}
|
640
|
+
Inst::FpuMove32 { rd, rn } | Inst::FpuMove64 { rd, rn } => {
|
641
|
+
collector.reg_def(rd);
|
642
|
+
collector.reg_use(rn);
|
643
|
+
}
|
644
|
+
Inst::FpuCMov32 { rd, ri, rm, .. } | Inst::FpuCMov64 { rd, ri, rm, .. } => {
|
645
|
+
collector.reg_reuse_def(rd, 1);
|
646
|
+
collector.reg_use(ri);
|
647
|
+
collector.reg_use(rm);
|
648
|
+
}
|
649
|
+
Inst::FpuRR { rd, rn, .. } => {
|
650
|
+
collector.reg_def(rd);
|
651
|
+
collector.reg_use(rn);
|
652
|
+
}
|
653
|
+
Inst::FpuRRR { rd, rn, rm, .. } => {
|
654
|
+
collector.reg_def(rd);
|
655
|
+
collector.reg_use(rn);
|
656
|
+
collector.reg_use(rm);
|
657
|
+
}
|
658
|
+
Inst::FpuRRRR { rd, rn, rm, ra, .. } => {
|
659
|
+
collector.reg_def(rd);
|
660
|
+
collector.reg_use(rn);
|
661
|
+
collector.reg_use(rm);
|
662
|
+
collector.reg_use(ra);
|
663
|
+
}
|
664
|
+
Inst::FpuCmp32 { rn, rm } | Inst::FpuCmp64 { rn, rm } => {
|
665
|
+
collector.reg_use(rn);
|
666
|
+
collector.reg_use(rm);
|
667
|
+
}
|
668
|
+
Inst::LoadFpuConst32 { rd, .. } | Inst::LoadFpuConst64 { rd, .. } => {
|
669
|
+
collector.reg_def(rd);
|
670
|
+
collector.reg_fixed_nonallocatable(gpr_preg(1));
|
671
|
+
}
|
672
|
+
Inst::FpuRound { rd, rn, .. } => {
|
673
|
+
collector.reg_def(rd);
|
674
|
+
collector.reg_use(rn);
|
675
|
+
}
|
676
|
+
Inst::VecRRR { rd, rn, rm, .. } => {
|
677
|
+
collector.reg_def(rd);
|
678
|
+
collector.reg_use(rn);
|
679
|
+
collector.reg_use(rm);
|
680
|
+
}
|
681
|
+
Inst::VecRR { rd, rn, .. } => {
|
682
|
+
collector.reg_def(rd);
|
683
|
+
collector.reg_use(rn);
|
684
|
+
}
|
685
|
+
Inst::VecShiftRR {
|
686
|
+
rd, rn, shift_reg, ..
|
687
|
+
} => {
|
688
|
+
collector.reg_def(rd);
|
689
|
+
collector.reg_use(rn);
|
690
|
+
collector.reg_use(shift_reg);
|
691
|
+
}
|
692
|
+
Inst::VecSelect { rd, rn, rm, ra, .. } => {
|
693
|
+
collector.reg_def(rd);
|
694
|
+
collector.reg_use(rn);
|
695
|
+
collector.reg_use(rm);
|
696
|
+
collector.reg_use(ra);
|
697
|
+
}
|
698
|
+
Inst::VecPermute { rd, rn, rm, ra, .. } => {
|
699
|
+
collector.reg_def(rd);
|
700
|
+
collector.reg_use(rn);
|
701
|
+
collector.reg_use(rm);
|
702
|
+
collector.reg_use(ra);
|
703
|
+
}
|
704
|
+
Inst::VecPermuteDWImm { rd, rn, rm, .. } => {
|
705
|
+
collector.reg_def(rd);
|
706
|
+
collector.reg_use(rn);
|
707
|
+
collector.reg_use(rm);
|
708
|
+
}
|
709
|
+
Inst::VecIntCmp { rd, rn, rm, .. } | Inst::VecIntCmpS { rd, rn, rm, .. } => {
|
710
|
+
collector.reg_def(rd);
|
711
|
+
collector.reg_use(rn);
|
712
|
+
collector.reg_use(rm);
|
713
|
+
}
|
714
|
+
Inst::VecFloatCmp { rd, rn, rm, .. } | Inst::VecFloatCmpS { rd, rn, rm, .. } => {
|
715
|
+
collector.reg_def(rd);
|
716
|
+
collector.reg_use(rn);
|
717
|
+
collector.reg_use(rm);
|
718
|
+
}
|
719
|
+
Inst::VecInt128SCmpHi { tmp, rn, rm, .. } | Inst::VecInt128UCmpHi { tmp, rn, rm, .. } => {
|
720
|
+
collector.reg_def(tmp);
|
721
|
+
collector.reg_use(rn);
|
722
|
+
collector.reg_use(rm);
|
723
|
+
}
|
724
|
+
Inst::VecLoad { rd, mem, .. } => {
|
725
|
+
collector.reg_def(rd);
|
726
|
+
memarg_operands(mem, collector);
|
727
|
+
}
|
728
|
+
Inst::VecLoadRev { rd, mem, .. } => {
|
729
|
+
collector.reg_def(rd);
|
730
|
+
memarg_operands(mem, collector);
|
731
|
+
}
|
732
|
+
Inst::VecLoadByte16Rev { rd, mem, .. } => {
|
733
|
+
collector.reg_def(rd);
|
734
|
+
memarg_operands(mem, collector);
|
735
|
+
}
|
736
|
+
Inst::VecLoadByte32Rev { rd, mem, .. } => {
|
737
|
+
collector.reg_def(rd);
|
738
|
+
memarg_operands(mem, collector);
|
739
|
+
}
|
740
|
+
Inst::VecLoadByte64Rev { rd, mem, .. } => {
|
741
|
+
collector.reg_def(rd);
|
742
|
+
memarg_operands(mem, collector);
|
743
|
+
}
|
744
|
+
Inst::VecLoadElt16Rev { rd, mem, .. } => {
|
745
|
+
collector.reg_def(rd);
|
746
|
+
memarg_operands(mem, collector);
|
747
|
+
}
|
748
|
+
Inst::VecLoadElt32Rev { rd, mem, .. } => {
|
749
|
+
collector.reg_def(rd);
|
750
|
+
memarg_operands(mem, collector);
|
751
|
+
}
|
752
|
+
Inst::VecLoadElt64Rev { rd, mem, .. } => {
|
753
|
+
collector.reg_def(rd);
|
754
|
+
memarg_operands(mem, collector);
|
755
|
+
}
|
756
|
+
Inst::VecStore { rd, mem, .. } => {
|
757
|
+
collector.reg_use(rd);
|
758
|
+
memarg_operands(mem, collector);
|
759
|
+
}
|
760
|
+
Inst::VecStoreRev { rd, mem, .. } => {
|
761
|
+
collector.reg_use(rd);
|
762
|
+
memarg_operands(mem, collector);
|
763
|
+
}
|
764
|
+
Inst::VecStoreByte16Rev { rd, mem, .. } => {
|
765
|
+
collector.reg_use(rd);
|
766
|
+
memarg_operands(mem, collector);
|
767
|
+
}
|
768
|
+
Inst::VecStoreByte32Rev { rd, mem, .. } => {
|
769
|
+
collector.reg_use(rd);
|
770
|
+
memarg_operands(mem, collector);
|
771
|
+
}
|
772
|
+
Inst::VecStoreByte64Rev { rd, mem, .. } => {
|
773
|
+
collector.reg_use(rd);
|
774
|
+
memarg_operands(mem, collector);
|
775
|
+
}
|
776
|
+
Inst::VecStoreElt16Rev { rd, mem, .. } => {
|
777
|
+
collector.reg_use(rd);
|
778
|
+
memarg_operands(mem, collector);
|
779
|
+
}
|
780
|
+
Inst::VecStoreElt32Rev { rd, mem, .. } => {
|
781
|
+
collector.reg_use(rd);
|
782
|
+
memarg_operands(mem, collector);
|
783
|
+
}
|
784
|
+
Inst::VecStoreElt64Rev { rd, mem, .. } => {
|
785
|
+
collector.reg_use(rd);
|
786
|
+
memarg_operands(mem, collector);
|
787
|
+
}
|
788
|
+
Inst::VecLoadReplicate { rd, mem, .. } => {
|
789
|
+
collector.reg_def(rd);
|
790
|
+
memarg_operands(mem, collector);
|
791
|
+
}
|
792
|
+
Inst::VecLoadReplicateRev { rd, mem, .. } => {
|
793
|
+
collector.reg_def(rd);
|
794
|
+
memarg_operands(mem, collector);
|
795
|
+
}
|
796
|
+
Inst::VecMov { rd, rn } => {
|
797
|
+
collector.reg_def(rd);
|
798
|
+
collector.reg_use(rn);
|
799
|
+
}
|
800
|
+
Inst::VecCMov { rd, ri, rm, .. } => {
|
801
|
+
collector.reg_reuse_def(rd, 1);
|
802
|
+
collector.reg_use(ri);
|
803
|
+
collector.reg_use(rm);
|
804
|
+
}
|
805
|
+
Inst::MovToVec128 { rd, rn, rm } => {
|
806
|
+
collector.reg_def(rd);
|
807
|
+
collector.reg_use(rn);
|
808
|
+
collector.reg_use(rm);
|
809
|
+
}
|
810
|
+
Inst::VecLoadConst { rd, .. } | Inst::VecLoadConstReplicate { rd, .. } => {
|
811
|
+
collector.reg_def(rd);
|
812
|
+
collector.reg_fixed_nonallocatable(gpr_preg(1));
|
813
|
+
}
|
814
|
+
Inst::VecImmByteMask { rd, .. } => {
|
815
|
+
collector.reg_def(rd);
|
816
|
+
}
|
817
|
+
Inst::VecImmBitMask { rd, .. } => {
|
818
|
+
collector.reg_def(rd);
|
819
|
+
}
|
820
|
+
Inst::VecImmReplicate { rd, .. } => {
|
821
|
+
collector.reg_def(rd);
|
822
|
+
}
|
823
|
+
Inst::VecLoadLane { rd, ri, mem, .. } => {
|
824
|
+
collector.reg_reuse_def(rd, 1);
|
825
|
+
collector.reg_use(ri);
|
826
|
+
memarg_operands(mem, collector);
|
827
|
+
}
|
828
|
+
Inst::VecLoadLaneUndef { rd, mem, .. } => {
|
829
|
+
collector.reg_def(rd);
|
830
|
+
memarg_operands(mem, collector);
|
831
|
+
}
|
832
|
+
Inst::VecStoreLaneRev { rd, mem, .. } => {
|
833
|
+
collector.reg_use(rd);
|
834
|
+
memarg_operands(mem, collector);
|
835
|
+
}
|
836
|
+
Inst::VecLoadLaneRevUndef { rd, mem, .. } => {
|
837
|
+
collector.reg_def(rd);
|
838
|
+
memarg_operands(mem, collector);
|
839
|
+
}
|
840
|
+
Inst::VecStoreLane { rd, mem, .. } => {
|
841
|
+
collector.reg_use(rd);
|
842
|
+
memarg_operands(mem, collector);
|
843
|
+
}
|
844
|
+
Inst::VecLoadLaneRev { rd, ri, mem, .. } => {
|
845
|
+
collector.reg_reuse_def(rd, 1);
|
846
|
+
collector.reg_use(ri);
|
847
|
+
memarg_operands(mem, collector);
|
848
|
+
}
|
849
|
+
Inst::VecInsertLane {
|
850
|
+
rd,
|
851
|
+
ri,
|
852
|
+
rn,
|
853
|
+
lane_reg,
|
854
|
+
..
|
855
|
+
} => {
|
856
|
+
collector.reg_reuse_def(rd, 1);
|
857
|
+
collector.reg_use(ri);
|
858
|
+
collector.reg_use(rn);
|
859
|
+
collector.reg_use(lane_reg);
|
860
|
+
}
|
861
|
+
Inst::VecInsertLaneUndef {
|
862
|
+
rd, rn, lane_reg, ..
|
863
|
+
} => {
|
864
|
+
collector.reg_def(rd);
|
865
|
+
collector.reg_use(rn);
|
866
|
+
collector.reg_use(lane_reg);
|
867
|
+
}
|
868
|
+
Inst::VecExtractLane {
|
869
|
+
rd, rn, lane_reg, ..
|
870
|
+
} => {
|
871
|
+
collector.reg_def(rd);
|
872
|
+
collector.reg_use(rn);
|
873
|
+
collector.reg_use(lane_reg);
|
874
|
+
}
|
875
|
+
Inst::VecInsertLaneImm { rd, ri, .. } => {
|
876
|
+
collector.reg_reuse_def(rd, 1);
|
877
|
+
collector.reg_use(ri);
|
878
|
+
}
|
879
|
+
Inst::VecReplicateLane { rd, rn, .. } => {
|
880
|
+
collector.reg_def(rd);
|
881
|
+
collector.reg_use(rn);
|
882
|
+
}
|
883
|
+
Inst::Extend { rd, rn, .. } => {
|
884
|
+
collector.reg_def(rd);
|
885
|
+
collector.reg_use(rn);
|
886
|
+
}
|
887
|
+
Inst::Call { link, info } => {
|
888
|
+
let CallInfo { uses, defs, .. } = &mut **info;
|
889
|
+
for CallArgPair { vreg, preg } in uses {
|
890
|
+
collector.reg_fixed_use(vreg, *preg);
|
891
|
+
}
|
892
|
+
for CallRetPair { vreg, preg } in defs {
|
893
|
+
collector.reg_fixed_def(vreg, *preg);
|
894
|
+
}
|
895
|
+
let mut clobbers = info.clobbers.clone();
|
896
|
+
clobbers.add(link.to_reg().to_real_reg().unwrap().into());
|
897
|
+
collector.reg_clobbers(clobbers);
|
898
|
+
}
|
899
|
+
Inst::CallInd { link, info } => {
|
900
|
+
let CallIndInfo { rn, uses, defs, .. } = &mut **info;
|
901
|
+
collector.reg_use(rn);
|
902
|
+
for CallArgPair { vreg, preg } in uses {
|
903
|
+
collector.reg_fixed_use(vreg, *preg);
|
904
|
+
}
|
905
|
+
for CallRetPair { vreg, preg } in defs {
|
906
|
+
collector.reg_fixed_def(vreg, *preg);
|
907
|
+
}
|
908
|
+
let mut clobbers = info.clobbers.clone();
|
909
|
+
clobbers.add(link.to_reg().to_real_reg().unwrap().into());
|
910
|
+
collector.reg_clobbers(clobbers);
|
911
|
+
}
|
912
|
+
Inst::Args { args } => {
|
913
|
+
for ArgPair { vreg, preg } in args {
|
914
|
+
collector.reg_fixed_def(vreg, *preg);
|
915
|
+
}
|
916
|
+
}
|
917
|
+
Inst::Rets { rets } => {
|
918
|
+
for RetPair { vreg, preg } in rets {
|
919
|
+
collector.reg_fixed_use(vreg, *preg);
|
920
|
+
}
|
921
|
+
}
|
922
|
+
Inst::Ret { .. } => {
|
923
|
+
// NOTE: we explicitly don't mark the link register as used here, as the use is only in
|
924
|
+
// the epilog where callee-save registers are restored.
|
925
|
+
}
|
926
|
+
Inst::Jump { .. } => {}
|
927
|
+
Inst::IndirectBr { rn, .. } => {
|
928
|
+
collector.reg_use(rn);
|
929
|
+
}
|
930
|
+
Inst::CondBr { .. } | Inst::OneWayCondBr { .. } => {}
|
931
|
+
Inst::Nop0 | Inst::Nop2 => {}
|
932
|
+
Inst::Debugtrap => {}
|
933
|
+
Inst::Trap { .. } => {}
|
934
|
+
Inst::TrapIf { .. } => {}
|
935
|
+
Inst::JTSequence { ridx, .. } => {
|
936
|
+
collector.reg_use(ridx);
|
937
|
+
collector.reg_fixed_nonallocatable(gpr_preg(1));
|
938
|
+
}
|
939
|
+
Inst::LoadSymbolReloc { rd, .. } => {
|
940
|
+
collector.reg_def(rd);
|
941
|
+
collector.reg_fixed_nonallocatable(gpr_preg(1));
|
942
|
+
}
|
943
|
+
Inst::LoadAddr { rd, mem } => {
|
944
|
+
collector.reg_def(rd);
|
945
|
+
memarg_operands(mem, collector);
|
946
|
+
}
|
947
|
+
Inst::Loop { body, .. } => {
|
948
|
+
// `reuse_def` constraints can't be permitted in a Loop instruction because the operand
|
949
|
+
// index will always be relative to the Loop instruction, not the individual
|
950
|
+
// instruction in the loop body. However, fixed-nonallocatable registers used with
|
951
|
+
// instructions that would have emitted `reuse_def` constraints are fine.
|
952
|
+
let mut collector = DenyReuseVisitor {
|
953
|
+
inner: collector.inner,
|
954
|
+
deny_reuse: true,
|
955
|
+
};
|
956
|
+
for inst in body {
|
957
|
+
s390x_get_operands(inst, &mut collector);
|
958
|
+
}
|
959
|
+
}
|
960
|
+
Inst::CondBreak { .. } => {}
|
961
|
+
Inst::Unwind { .. } => {}
|
962
|
+
Inst::DummyUse { reg } => {
|
963
|
+
collector.reg_use(reg);
|
964
|
+
}
|
965
|
+
}
|
966
|
+
}
|
967
|
+
|
968
|
+
struct DenyReuseVisitor<'a, T> {
|
969
|
+
inner: &'a mut T,
|
970
|
+
deny_reuse: bool,
|
971
|
+
}
|
972
|
+
|
973
|
+
impl<T: OperandVisitor> OperandVisitor for DenyReuseVisitor<'_, T> {
|
974
|
+
fn add_operand(
|
975
|
+
&mut self,
|
976
|
+
reg: &mut Reg,
|
977
|
+
constraint: regalloc2::OperandConstraint,
|
978
|
+
kind: regalloc2::OperandKind,
|
979
|
+
pos: regalloc2::OperandPos,
|
980
|
+
) {
|
981
|
+
debug_assert!(
|
982
|
+
!self.deny_reuse || !matches!(constraint, regalloc2::OperandConstraint::Reuse(_))
|
983
|
+
);
|
984
|
+
self.inner.add_operand(reg, constraint, kind, pos);
|
985
|
+
}
|
986
|
+
|
987
|
+
fn debug_assert_is_allocatable_preg(&self, reg: regalloc2::PReg, expected: bool) {
|
988
|
+
self.inner.debug_assert_is_allocatable_preg(reg, expected);
|
989
|
+
}
|
990
|
+
|
991
|
+
fn reg_clobbers(&mut self, regs: PRegSet) {
|
992
|
+
self.inner.reg_clobbers(regs);
|
993
|
+
}
|
994
|
+
}
|
995
|
+
|
996
|
+
//=============================================================================
|
997
|
+
// Instructions: misc functions and external interface
|
998
|
+
|
999
|
+
impl MachInst for Inst {
|
1000
|
+
type ABIMachineSpec = S390xMachineDeps;
|
1001
|
+
type LabelUse = LabelUse;
|
1002
|
+
const TRAP_OPCODE: &'static [u8] = &[0, 0];
|
1003
|
+
|
1004
|
+
fn get_operands(&mut self, collector: &mut impl OperandVisitor) {
|
1005
|
+
s390x_get_operands(
|
1006
|
+
self,
|
1007
|
+
&mut DenyReuseVisitor {
|
1008
|
+
inner: collector,
|
1009
|
+
deny_reuse: false,
|
1010
|
+
},
|
1011
|
+
);
|
1012
|
+
}
|
1013
|
+
|
1014
|
+
fn is_move(&self) -> Option<(Writable<Reg>, Reg)> {
|
1015
|
+
match self {
|
1016
|
+
&Inst::Mov32 { rd, rm } => Some((rd, rm)),
|
1017
|
+
&Inst::Mov64 { rd, rm } => Some((rd, rm)),
|
1018
|
+
&Inst::FpuMove32 { rd, rn } => Some((rd, rn)),
|
1019
|
+
&Inst::FpuMove64 { rd, rn } => Some((rd, rn)),
|
1020
|
+
&Inst::VecMov { rd, rn } => Some((rd, rn)),
|
1021
|
+
_ => None,
|
1022
|
+
}
|
1023
|
+
}
|
1024
|
+
|
1025
|
+
fn is_included_in_clobbers(&self) -> bool {
|
1026
|
+
// We exclude call instructions from the clobber-set when they are calls
|
1027
|
+
// from caller to callee with the same ABI. Such calls cannot possibly
|
1028
|
+
// force any new registers to be saved in the prologue, because anything
|
1029
|
+
// that the callee clobbers, the caller is also allowed to clobber. This
|
1030
|
+
// both saves work and enables us to more precisely follow the
|
1031
|
+
// half-caller-save, half-callee-save SysV ABI for some vector
|
1032
|
+
// registers.
|
1033
|
+
match self {
|
1034
|
+
&Inst::Args { .. } => false,
|
1035
|
+
&Inst::Call { ref info, .. } => info.caller_callconv != info.callee_callconv,
|
1036
|
+
&Inst::CallInd { ref info, .. } => info.caller_callconv != info.callee_callconv,
|
1037
|
+
_ => true,
|
1038
|
+
}
|
1039
|
+
}
|
1040
|
+
|
1041
|
+
fn is_trap(&self) -> bool {
|
1042
|
+
match self {
|
1043
|
+
Self::Trap { .. } => true,
|
1044
|
+
_ => false,
|
1045
|
+
}
|
1046
|
+
}
|
1047
|
+
|
1048
|
+
fn is_args(&self) -> bool {
|
1049
|
+
match self {
|
1050
|
+
Self::Args { .. } => true,
|
1051
|
+
_ => false,
|
1052
|
+
}
|
1053
|
+
}
|
1054
|
+
|
1055
|
+
fn is_term(&self) -> MachTerminator {
|
1056
|
+
match self {
|
1057
|
+
&Inst::Rets { .. } => MachTerminator::Ret,
|
1058
|
+
&Inst::Jump { .. } => MachTerminator::Uncond,
|
1059
|
+
&Inst::CondBr { .. } => MachTerminator::Cond,
|
1060
|
+
&Inst::OneWayCondBr { .. } => {
|
1061
|
+
// Explicitly invisible to CFG processing.
|
1062
|
+
MachTerminator::None
|
1063
|
+
}
|
1064
|
+
&Inst::IndirectBr { .. } => MachTerminator::Indirect,
|
1065
|
+
&Inst::JTSequence { .. } => MachTerminator::Indirect,
|
1066
|
+
_ => MachTerminator::None,
|
1067
|
+
}
|
1068
|
+
}
|
1069
|
+
|
1070
|
+
fn is_mem_access(&self) -> bool {
|
1071
|
+
panic!("TODO FILL ME OUT")
|
1072
|
+
}
|
1073
|
+
|
1074
|
+
fn is_safepoint(&self) -> bool {
|
1075
|
+
match self {
|
1076
|
+
&Inst::Call { .. }
|
1077
|
+
| &Inst::CallInd { .. }
|
1078
|
+
| &Inst::Trap { .. }
|
1079
|
+
| Inst::TrapIf { .. }
|
1080
|
+
| &Inst::CmpTrapRR { .. }
|
1081
|
+
| &Inst::CmpTrapRSImm16 { .. }
|
1082
|
+
| &Inst::CmpTrapRUImm16 { .. } => true,
|
1083
|
+
_ => false,
|
1084
|
+
}
|
1085
|
+
}
|
1086
|
+
|
1087
|
+
fn gen_move(to_reg: Writable<Reg>, from_reg: Reg, ty: Type) -> Inst {
|
1088
|
+
assert!(ty.bits() <= 128);
|
1089
|
+
if ty.bits() <= 32 {
|
1090
|
+
Inst::mov32(to_reg, from_reg)
|
1091
|
+
} else if ty.bits() <= 64 {
|
1092
|
+
Inst::mov64(to_reg, from_reg)
|
1093
|
+
} else {
|
1094
|
+
Inst::mov128(to_reg, from_reg)
|
1095
|
+
}
|
1096
|
+
}
|
1097
|
+
|
1098
|
+
fn gen_nop(preferred_size: usize) -> Inst {
|
1099
|
+
if preferred_size == 0 {
|
1100
|
+
Inst::Nop0
|
1101
|
+
} else {
|
1102
|
+
// We can't give a NOP (or any insn) < 2 bytes.
|
1103
|
+
assert!(preferred_size >= 2);
|
1104
|
+
Inst::Nop2
|
1105
|
+
}
|
1106
|
+
}
|
1107
|
+
|
1108
|
+
fn rc_for_type(ty: Type) -> CodegenResult<(&'static [RegClass], &'static [Type])> {
|
1109
|
+
match ty {
|
1110
|
+
types::I8 => Ok((&[RegClass::Int], &[types::I8])),
|
1111
|
+
types::I16 => Ok((&[RegClass::Int], &[types::I16])),
|
1112
|
+
types::I32 => Ok((&[RegClass::Int], &[types::I32])),
|
1113
|
+
types::I64 => Ok((&[RegClass::Int], &[types::I64])),
|
1114
|
+
types::R32 => panic!("32-bit reftype pointer should never be seen on s390x"),
|
1115
|
+
types::R64 => Ok((&[RegClass::Int], &[types::R64])),
|
1116
|
+
types::F32 => Ok((&[RegClass::Float], &[types::F32])),
|
1117
|
+
types::F64 => Ok((&[RegClass::Float], &[types::F64])),
|
1118
|
+
types::I128 => Ok((&[RegClass::Float], &[types::I128])),
|
1119
|
+
_ if ty.is_vector() && ty.bits() == 128 => Ok((&[RegClass::Float], &[types::I8X16])),
|
1120
|
+
_ => Err(CodegenError::Unsupported(format!(
|
1121
|
+
"Unexpected SSA-value type: {}",
|
1122
|
+
ty
|
1123
|
+
))),
|
1124
|
+
}
|
1125
|
+
}
|
1126
|
+
|
1127
|
+
fn canonical_type_for_rc(rc: RegClass) -> Type {
|
1128
|
+
match rc {
|
1129
|
+
RegClass::Int => types::I64,
|
1130
|
+
RegClass::Float => types::I8X16,
|
1131
|
+
RegClass::Vector => unreachable!(),
|
1132
|
+
}
|
1133
|
+
}
|
1134
|
+
|
1135
|
+
fn gen_jump(target: MachLabel) -> Inst {
|
1136
|
+
Inst::Jump { dest: target }
|
1137
|
+
}
|
1138
|
+
|
1139
|
+
fn worst_case_size() -> CodeOffset {
|
1140
|
+
// The maximum size, in bytes, of any `Inst`'s emitted code. We have at least one case of
|
1141
|
+
// an 8-instruction sequence (saturating int-to-float conversions) with three embedded
|
1142
|
+
// 64-bit f64 constants.
|
1143
|
+
//
|
1144
|
+
// Note that inline jump-tables handle island/pool insertion separately, so we do not need
|
1145
|
+
// to account for them here (otherwise the worst case would be 2^31 * 4, clearly not
|
1146
|
+
// feasible for other reasons).
|
1147
|
+
44
|
1148
|
+
}
|
1149
|
+
|
1150
|
+
fn ref_type_regclass(_: &settings::Flags) -> RegClass {
|
1151
|
+
RegClass::Int
|
1152
|
+
}
|
1153
|
+
|
1154
|
+
fn gen_dummy_use(reg: Reg) -> Inst {
|
1155
|
+
Inst::DummyUse { reg }
|
1156
|
+
}
|
1157
|
+
|
1158
|
+
fn function_alignment() -> FunctionAlignment {
|
1159
|
+
FunctionAlignment {
|
1160
|
+
minimum: 4,
|
1161
|
+
preferred: 4,
|
1162
|
+
}
|
1163
|
+
}
|
1164
|
+
}
|
1165
|
+
|
1166
|
+
//=============================================================================
|
1167
|
+
// Pretty-printing of instructions.
|
1168
|
+
|
1169
|
+
fn mem_finalize_for_show(mem: &MemArg, state: &EmitState, mi: MemInstType) -> (String, MemArg) {
|
1170
|
+
let (mem_insts, mem) = mem_finalize(mem, state, mi);
|
1171
|
+
let mut mem_str = mem_insts
|
1172
|
+
.into_iter()
|
1173
|
+
.map(|inst| inst.print_with_state(&mut EmitState::default()))
|
1174
|
+
.collect::<Vec<_>>()
|
1175
|
+
.join(" ; ");
|
1176
|
+
if !mem_str.is_empty() {
|
1177
|
+
mem_str += " ; ";
|
1178
|
+
}
|
1179
|
+
|
1180
|
+
(mem_str, mem)
|
1181
|
+
}
|
1182
|
+
|
1183
|
+
impl Inst {
|
1184
|
+
fn print_with_state(&self, state: &mut EmitState) -> String {
|
1185
|
+
match self {
|
1186
|
+
&Inst::Nop0 => "nop-zero-len".to_string(),
|
1187
|
+
&Inst::Nop2 => "nop".to_string(),
|
1188
|
+
&Inst::AluRRR { alu_op, rd, rn, rm } => {
|
1189
|
+
let (op, have_rr) = match alu_op {
|
1190
|
+
ALUOp::Add32 => ("ark", true),
|
1191
|
+
ALUOp::Add64 => ("agrk", true),
|
1192
|
+
ALUOp::AddLogical32 => ("alrk", true),
|
1193
|
+
ALUOp::AddLogical64 => ("algrk", true),
|
1194
|
+
ALUOp::Sub32 => ("srk", true),
|
1195
|
+
ALUOp::Sub64 => ("sgrk", true),
|
1196
|
+
ALUOp::SubLogical32 => ("slrk", true),
|
1197
|
+
ALUOp::SubLogical64 => ("slgrk", true),
|
1198
|
+
ALUOp::Mul32 => ("msrkc", true),
|
1199
|
+
ALUOp::Mul64 => ("msgrkc", true),
|
1200
|
+
ALUOp::And32 => ("nrk", true),
|
1201
|
+
ALUOp::And64 => ("ngrk", true),
|
1202
|
+
ALUOp::Orr32 => ("ork", true),
|
1203
|
+
ALUOp::Orr64 => ("ogrk", true),
|
1204
|
+
ALUOp::Xor32 => ("xrk", true),
|
1205
|
+
ALUOp::Xor64 => ("xgrk", true),
|
1206
|
+
ALUOp::NotAnd32 => ("nnrk", false),
|
1207
|
+
ALUOp::NotAnd64 => ("nngrk", false),
|
1208
|
+
ALUOp::NotOrr32 => ("nork", false),
|
1209
|
+
ALUOp::NotOrr64 => ("nogrk", false),
|
1210
|
+
ALUOp::NotXor32 => ("nxrk", false),
|
1211
|
+
ALUOp::NotXor64 => ("nxgrk", false),
|
1212
|
+
ALUOp::AndNot32 => ("ncrk", false),
|
1213
|
+
ALUOp::AndNot64 => ("ncgrk", false),
|
1214
|
+
ALUOp::OrrNot32 => ("ocrk", false),
|
1215
|
+
ALUOp::OrrNot64 => ("ocgrk", false),
|
1216
|
+
_ => unreachable!(),
|
1217
|
+
};
|
1218
|
+
if have_rr && rd.to_reg() == rn {
|
1219
|
+
let inst = Inst::AluRR {
|
1220
|
+
alu_op,
|
1221
|
+
rd,
|
1222
|
+
ri: rd.to_reg(),
|
1223
|
+
rm,
|
1224
|
+
};
|
1225
|
+
return inst.print_with_state(state);
|
1226
|
+
}
|
1227
|
+
let rd = pretty_print_reg(rd.to_reg());
|
1228
|
+
let rn = pretty_print_reg(rn);
|
1229
|
+
let rm = pretty_print_reg(rm);
|
1230
|
+
format!("{} {}, {}, {}", op, rd, rn, rm)
|
1231
|
+
}
|
1232
|
+
&Inst::AluRRSImm16 {
|
1233
|
+
alu_op,
|
1234
|
+
rd,
|
1235
|
+
rn,
|
1236
|
+
imm,
|
1237
|
+
} => {
|
1238
|
+
if rd.to_reg() == rn {
|
1239
|
+
let inst = Inst::AluRSImm16 {
|
1240
|
+
alu_op,
|
1241
|
+
rd,
|
1242
|
+
ri: rd.to_reg(),
|
1243
|
+
imm,
|
1244
|
+
};
|
1245
|
+
return inst.print_with_state(state);
|
1246
|
+
}
|
1247
|
+
let op = match alu_op {
|
1248
|
+
ALUOp::Add32 => "ahik",
|
1249
|
+
ALUOp::Add64 => "aghik",
|
1250
|
+
_ => unreachable!(),
|
1251
|
+
};
|
1252
|
+
let rd = pretty_print_reg(rd.to_reg());
|
1253
|
+
let rn = pretty_print_reg(rn);
|
1254
|
+
format!("{} {}, {}, {}", op, rd, rn, imm)
|
1255
|
+
}
|
1256
|
+
&Inst::AluRR { alu_op, rd, ri, rm } => {
|
1257
|
+
let op = match alu_op {
|
1258
|
+
ALUOp::Add32 => "ar",
|
1259
|
+
ALUOp::Add64 => "agr",
|
1260
|
+
ALUOp::Add64Ext32 => "agfr",
|
1261
|
+
ALUOp::AddLogical32 => "alr",
|
1262
|
+
ALUOp::AddLogical64 => "algr",
|
1263
|
+
ALUOp::AddLogical64Ext32 => "algfr",
|
1264
|
+
ALUOp::Sub32 => "sr",
|
1265
|
+
ALUOp::Sub64 => "sgr",
|
1266
|
+
ALUOp::Sub64Ext32 => "sgfr",
|
1267
|
+
ALUOp::SubLogical32 => "slr",
|
1268
|
+
ALUOp::SubLogical64 => "slgr",
|
1269
|
+
ALUOp::SubLogical64Ext32 => "slgfr",
|
1270
|
+
ALUOp::Mul32 => "msr",
|
1271
|
+
ALUOp::Mul64 => "msgr",
|
1272
|
+
ALUOp::Mul64Ext32 => "msgfr",
|
1273
|
+
ALUOp::And32 => "nr",
|
1274
|
+
ALUOp::And64 => "ngr",
|
1275
|
+
ALUOp::Orr32 => "or",
|
1276
|
+
ALUOp::Orr64 => "ogr",
|
1277
|
+
ALUOp::Xor32 => "xr",
|
1278
|
+
ALUOp::Xor64 => "xgr",
|
1279
|
+
_ => unreachable!(),
|
1280
|
+
};
|
1281
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
1282
|
+
let rm = pretty_print_reg(rm);
|
1283
|
+
format!("{} {}, {}", op, rd, rm)
|
1284
|
+
}
|
1285
|
+
&Inst::AluRX {
|
1286
|
+
alu_op,
|
1287
|
+
rd,
|
1288
|
+
ri,
|
1289
|
+
ref mem,
|
1290
|
+
} => {
|
1291
|
+
let (opcode_rx, opcode_rxy) = match alu_op {
|
1292
|
+
ALUOp::Add32 => (Some("a"), Some("ay")),
|
1293
|
+
ALUOp::Add32Ext16 => (Some("ah"), Some("ahy")),
|
1294
|
+
ALUOp::Add64 => (None, Some("ag")),
|
1295
|
+
ALUOp::Add64Ext16 => (None, Some("agh")),
|
1296
|
+
ALUOp::Add64Ext32 => (None, Some("agf")),
|
1297
|
+
ALUOp::AddLogical32 => (Some("al"), Some("aly")),
|
1298
|
+
ALUOp::AddLogical64 => (None, Some("alg")),
|
1299
|
+
ALUOp::AddLogical64Ext32 => (None, Some("algf")),
|
1300
|
+
ALUOp::Sub32 => (Some("s"), Some("sy")),
|
1301
|
+
ALUOp::Sub32Ext16 => (Some("sh"), Some("shy")),
|
1302
|
+
ALUOp::Sub64 => (None, Some("sg")),
|
1303
|
+
ALUOp::Sub64Ext16 => (None, Some("sgh")),
|
1304
|
+
ALUOp::Sub64Ext32 => (None, Some("sgf")),
|
1305
|
+
ALUOp::SubLogical32 => (Some("sl"), Some("sly")),
|
1306
|
+
ALUOp::SubLogical64 => (None, Some("slg")),
|
1307
|
+
ALUOp::SubLogical64Ext32 => (None, Some("slgf")),
|
1308
|
+
ALUOp::Mul32 => (Some("ms"), Some("msy")),
|
1309
|
+
ALUOp::Mul32Ext16 => (Some("mh"), Some("mhy")),
|
1310
|
+
ALUOp::Mul64 => (None, Some("msg")),
|
1311
|
+
ALUOp::Mul64Ext16 => (None, Some("mgh")),
|
1312
|
+
ALUOp::Mul64Ext32 => (None, Some("msgf")),
|
1313
|
+
ALUOp::And32 => (Some("n"), Some("ny")),
|
1314
|
+
ALUOp::And64 => (None, Some("ng")),
|
1315
|
+
ALUOp::Orr32 => (Some("o"), Some("oy")),
|
1316
|
+
ALUOp::Orr64 => (None, Some("og")),
|
1317
|
+
ALUOp::Xor32 => (Some("x"), Some("xy")),
|
1318
|
+
ALUOp::Xor64 => (None, Some("xg")),
|
1319
|
+
_ => unreachable!(),
|
1320
|
+
};
|
1321
|
+
|
1322
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
1323
|
+
let mem = mem.clone();
|
1324
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
1325
|
+
&mem,
|
1326
|
+
state,
|
1327
|
+
MemInstType {
|
1328
|
+
have_d12: opcode_rx.is_some(),
|
1329
|
+
have_d20: opcode_rxy.is_some(),
|
1330
|
+
have_pcrel: false,
|
1331
|
+
have_unaligned_pcrel: false,
|
1332
|
+
have_index: true,
|
1333
|
+
},
|
1334
|
+
);
|
1335
|
+
let op = match &mem {
|
1336
|
+
&MemArg::BXD12 { .. } => opcode_rx,
|
1337
|
+
&MemArg::BXD20 { .. } => opcode_rxy,
|
1338
|
+
_ => unreachable!(),
|
1339
|
+
};
|
1340
|
+
let mem = mem.pretty_print_default();
|
1341
|
+
|
1342
|
+
format!("{}{} {}, {}", mem_str, op.unwrap(), rd, mem)
|
1343
|
+
}
|
1344
|
+
&Inst::AluRSImm16 {
|
1345
|
+
alu_op,
|
1346
|
+
rd,
|
1347
|
+
ri,
|
1348
|
+
imm,
|
1349
|
+
} => {
|
1350
|
+
let op = match alu_op {
|
1351
|
+
ALUOp::Add32 => "ahi",
|
1352
|
+
ALUOp::Add64 => "aghi",
|
1353
|
+
ALUOp::Mul32 => "mhi",
|
1354
|
+
ALUOp::Mul64 => "mghi",
|
1355
|
+
_ => unreachable!(),
|
1356
|
+
};
|
1357
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
1358
|
+
format!("{} {}, {}", op, rd, imm)
|
1359
|
+
}
|
1360
|
+
&Inst::AluRSImm32 {
|
1361
|
+
alu_op,
|
1362
|
+
rd,
|
1363
|
+
ri,
|
1364
|
+
imm,
|
1365
|
+
} => {
|
1366
|
+
let op = match alu_op {
|
1367
|
+
ALUOp::Add32 => "afi",
|
1368
|
+
ALUOp::Add64 => "agfi",
|
1369
|
+
ALUOp::Mul32 => "msfi",
|
1370
|
+
ALUOp::Mul64 => "msgfi",
|
1371
|
+
_ => unreachable!(),
|
1372
|
+
};
|
1373
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
1374
|
+
format!("{} {}, {}", op, rd, imm)
|
1375
|
+
}
|
1376
|
+
&Inst::AluRUImm32 {
|
1377
|
+
alu_op,
|
1378
|
+
rd,
|
1379
|
+
ri,
|
1380
|
+
imm,
|
1381
|
+
} => {
|
1382
|
+
let op = match alu_op {
|
1383
|
+
ALUOp::AddLogical32 => "alfi",
|
1384
|
+
ALUOp::AddLogical64 => "algfi",
|
1385
|
+
ALUOp::SubLogical32 => "slfi",
|
1386
|
+
ALUOp::SubLogical64 => "slgfi",
|
1387
|
+
_ => unreachable!(),
|
1388
|
+
};
|
1389
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
1390
|
+
format!("{} {}, {}", op, rd, imm)
|
1391
|
+
}
|
1392
|
+
&Inst::AluRUImm16Shifted {
|
1393
|
+
alu_op,
|
1394
|
+
rd,
|
1395
|
+
ri,
|
1396
|
+
imm,
|
1397
|
+
} => {
|
1398
|
+
let op = match (alu_op, imm.shift) {
|
1399
|
+
(ALUOp::And32, 0) => "nill",
|
1400
|
+
(ALUOp::And32, 1) => "nilh",
|
1401
|
+
(ALUOp::And64, 0) => "nill",
|
1402
|
+
(ALUOp::And64, 1) => "nilh",
|
1403
|
+
(ALUOp::And64, 2) => "nihl",
|
1404
|
+
(ALUOp::And64, 3) => "nihh",
|
1405
|
+
(ALUOp::Orr32, 0) => "oill",
|
1406
|
+
(ALUOp::Orr32, 1) => "oilh",
|
1407
|
+
(ALUOp::Orr64, 0) => "oill",
|
1408
|
+
(ALUOp::Orr64, 1) => "oilh",
|
1409
|
+
(ALUOp::Orr64, 2) => "oihl",
|
1410
|
+
(ALUOp::Orr64, 3) => "oihh",
|
1411
|
+
_ => unreachable!(),
|
1412
|
+
};
|
1413
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
1414
|
+
format!("{} {}, {}", op, rd, imm.bits)
|
1415
|
+
}
|
1416
|
+
&Inst::AluRUImm32Shifted {
|
1417
|
+
alu_op,
|
1418
|
+
rd,
|
1419
|
+
ri,
|
1420
|
+
imm,
|
1421
|
+
} => {
|
1422
|
+
let op = match (alu_op, imm.shift) {
|
1423
|
+
(ALUOp::And32, 0) => "nilf",
|
1424
|
+
(ALUOp::And64, 0) => "nilf",
|
1425
|
+
(ALUOp::And64, 1) => "nihf",
|
1426
|
+
(ALUOp::Orr32, 0) => "oilf",
|
1427
|
+
(ALUOp::Orr64, 0) => "oilf",
|
1428
|
+
(ALUOp::Orr64, 1) => "oihf",
|
1429
|
+
(ALUOp::Xor32, 0) => "xilf",
|
1430
|
+
(ALUOp::Xor64, 0) => "xilf",
|
1431
|
+
(ALUOp::Xor64, 1) => "xihf",
|
1432
|
+
_ => unreachable!(),
|
1433
|
+
};
|
1434
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
1435
|
+
format!("{} {}, {}", op, rd, imm.bits)
|
1436
|
+
}
|
1437
|
+
&Inst::SMulWide { rd, rn, rm } => {
|
1438
|
+
let op = "mgrk";
|
1439
|
+
let rn = pretty_print_reg(rn);
|
1440
|
+
let rm = pretty_print_reg(rm);
|
1441
|
+
let rd = pretty_print_regpair(rd.to_regpair());
|
1442
|
+
format!("{} {}, {}, {}", op, rd, rn, rm)
|
1443
|
+
}
|
1444
|
+
&Inst::UMulWide { rd, ri, rn } => {
|
1445
|
+
let op = "mlgr";
|
1446
|
+
let rn = pretty_print_reg(rn);
|
1447
|
+
let rd = pretty_print_regpair_mod_lo(rd, ri);
|
1448
|
+
format!("{} {}, {}", op, rd, rn)
|
1449
|
+
}
|
1450
|
+
&Inst::SDivMod32 { rd, ri, rn } => {
|
1451
|
+
let op = "dsgfr";
|
1452
|
+
let rn = pretty_print_reg(rn);
|
1453
|
+
let rd = pretty_print_regpair_mod_lo(rd, ri);
|
1454
|
+
format!("{} {}, {}", op, rd, rn)
|
1455
|
+
}
|
1456
|
+
&Inst::SDivMod64 { rd, ri, rn } => {
|
1457
|
+
let op = "dsgr";
|
1458
|
+
let rn = pretty_print_reg(rn);
|
1459
|
+
let rd = pretty_print_regpair_mod_lo(rd, ri);
|
1460
|
+
format!("{} {}, {}", op, rd, rn)
|
1461
|
+
}
|
1462
|
+
&Inst::UDivMod32 { rd, ri, rn } => {
|
1463
|
+
let op = "dlr";
|
1464
|
+
let rn = pretty_print_reg(rn);
|
1465
|
+
let rd = pretty_print_regpair_mod(rd, ri);
|
1466
|
+
format!("{} {}, {}", op, rd, rn)
|
1467
|
+
}
|
1468
|
+
&Inst::UDivMod64 { rd, ri, rn } => {
|
1469
|
+
let op = "dlgr";
|
1470
|
+
let rn = pretty_print_reg(rn);
|
1471
|
+
let rd = pretty_print_regpair_mod(rd, ri);
|
1472
|
+
format!("{} {}, {}", op, rd, rn)
|
1473
|
+
}
|
1474
|
+
&Inst::Flogr { rd, rn } => {
|
1475
|
+
let op = "flogr";
|
1476
|
+
let rn = pretty_print_reg(rn);
|
1477
|
+
let rd = pretty_print_regpair(rd.to_regpair());
|
1478
|
+
format!("{} {}, {}", op, rd, rn)
|
1479
|
+
}
|
1480
|
+
&Inst::ShiftRR {
|
1481
|
+
shift_op,
|
1482
|
+
rd,
|
1483
|
+
rn,
|
1484
|
+
shift_imm,
|
1485
|
+
shift_reg,
|
1486
|
+
} => {
|
1487
|
+
let op = match shift_op {
|
1488
|
+
ShiftOp::RotL32 => "rll",
|
1489
|
+
ShiftOp::RotL64 => "rllg",
|
1490
|
+
ShiftOp::LShL32 => "sllk",
|
1491
|
+
ShiftOp::LShL64 => "sllg",
|
1492
|
+
ShiftOp::LShR32 => "srlk",
|
1493
|
+
ShiftOp::LShR64 => "srlg",
|
1494
|
+
ShiftOp::AShR32 => "srak",
|
1495
|
+
ShiftOp::AShR64 => "srag",
|
1496
|
+
};
|
1497
|
+
let rd = pretty_print_reg(rd.to_reg());
|
1498
|
+
let rn = pretty_print_reg(rn);
|
1499
|
+
let shift_reg = if shift_reg != zero_reg() {
|
1500
|
+
format!("({})", pretty_print_reg(shift_reg))
|
1501
|
+
} else {
|
1502
|
+
"".to_string()
|
1503
|
+
};
|
1504
|
+
format!("{} {}, {}, {}{}", op, rd, rn, shift_imm, shift_reg)
|
1505
|
+
}
|
1506
|
+
&Inst::RxSBG {
|
1507
|
+
op,
|
1508
|
+
rd,
|
1509
|
+
ri,
|
1510
|
+
rn,
|
1511
|
+
start_bit,
|
1512
|
+
end_bit,
|
1513
|
+
rotate_amt,
|
1514
|
+
} => {
|
1515
|
+
let op = match op {
|
1516
|
+
RxSBGOp::Insert => "risbgn",
|
1517
|
+
RxSBGOp::And => "rnsbg",
|
1518
|
+
RxSBGOp::Or => "rosbg",
|
1519
|
+
RxSBGOp::Xor => "rxsbg",
|
1520
|
+
};
|
1521
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
1522
|
+
let rn = pretty_print_reg(rn);
|
1523
|
+
format!(
|
1524
|
+
"{} {}, {}, {}, {}, {}",
|
1525
|
+
op,
|
1526
|
+
rd,
|
1527
|
+
rn,
|
1528
|
+
start_bit,
|
1529
|
+
end_bit,
|
1530
|
+
(rotate_amt as u8) & 63
|
1531
|
+
)
|
1532
|
+
}
|
1533
|
+
&Inst::RxSBGTest {
|
1534
|
+
op,
|
1535
|
+
rd,
|
1536
|
+
rn,
|
1537
|
+
start_bit,
|
1538
|
+
end_bit,
|
1539
|
+
rotate_amt,
|
1540
|
+
} => {
|
1541
|
+
let op = match op {
|
1542
|
+
RxSBGOp::And => "rnsbg",
|
1543
|
+
RxSBGOp::Or => "rosbg",
|
1544
|
+
RxSBGOp::Xor => "rxsbg",
|
1545
|
+
_ => unreachable!(),
|
1546
|
+
};
|
1547
|
+
let rd = pretty_print_reg(rd);
|
1548
|
+
let rn = pretty_print_reg(rn);
|
1549
|
+
format!(
|
1550
|
+
"{} {}, {}, {}, {}, {}",
|
1551
|
+
op,
|
1552
|
+
rd,
|
1553
|
+
rn,
|
1554
|
+
start_bit | 0x80,
|
1555
|
+
end_bit,
|
1556
|
+
(rotate_amt as u8) & 63
|
1557
|
+
)
|
1558
|
+
}
|
1559
|
+
&Inst::UnaryRR { op, rd, rn } => {
|
1560
|
+
let (op, extra) = match op {
|
1561
|
+
UnaryOp::Abs32 => ("lpr", ""),
|
1562
|
+
UnaryOp::Abs64 => ("lpgr", ""),
|
1563
|
+
UnaryOp::Abs64Ext32 => ("lpgfr", ""),
|
1564
|
+
UnaryOp::Neg32 => ("lcr", ""),
|
1565
|
+
UnaryOp::Neg64 => ("lcgr", ""),
|
1566
|
+
UnaryOp::Neg64Ext32 => ("lcgfr", ""),
|
1567
|
+
UnaryOp::PopcntByte => ("popcnt", ""),
|
1568
|
+
UnaryOp::PopcntReg => ("popcnt", ", 8"),
|
1569
|
+
UnaryOp::BSwap32 => ("lrvr", ""),
|
1570
|
+
UnaryOp::BSwap64 => ("lrvgr", ""),
|
1571
|
+
};
|
1572
|
+
let rd = pretty_print_reg(rd.to_reg());
|
1573
|
+
let rn = pretty_print_reg(rn);
|
1574
|
+
format!("{} {}, {}{}", op, rd, rn, extra)
|
1575
|
+
}
|
1576
|
+
&Inst::CmpRR { op, rn, rm } => {
|
1577
|
+
let op = match op {
|
1578
|
+
CmpOp::CmpS32 => "cr",
|
1579
|
+
CmpOp::CmpS64 => "cgr",
|
1580
|
+
CmpOp::CmpS64Ext32 => "cgfr",
|
1581
|
+
CmpOp::CmpL32 => "clr",
|
1582
|
+
CmpOp::CmpL64 => "clgr",
|
1583
|
+
CmpOp::CmpL64Ext32 => "clgfr",
|
1584
|
+
_ => unreachable!(),
|
1585
|
+
};
|
1586
|
+
let rn = pretty_print_reg(rn);
|
1587
|
+
let rm = pretty_print_reg(rm);
|
1588
|
+
format!("{} {}, {}", op, rn, rm)
|
1589
|
+
}
|
1590
|
+
&Inst::CmpRX { op, rn, ref mem } => {
|
1591
|
+
let (opcode_rx, opcode_rxy, opcode_ril) = match op {
|
1592
|
+
CmpOp::CmpS32 => (Some("c"), Some("cy"), Some("crl")),
|
1593
|
+
CmpOp::CmpS32Ext16 => (Some("ch"), Some("chy"), Some("chrl")),
|
1594
|
+
CmpOp::CmpS64 => (None, Some("cg"), Some("cgrl")),
|
1595
|
+
CmpOp::CmpS64Ext16 => (None, Some("cgh"), Some("cghrl")),
|
1596
|
+
CmpOp::CmpS64Ext32 => (None, Some("cgf"), Some("cgfrl")),
|
1597
|
+
CmpOp::CmpL32 => (Some("cl"), Some("cly"), Some("clrl")),
|
1598
|
+
CmpOp::CmpL32Ext16 => (None, None, Some("clhrl")),
|
1599
|
+
CmpOp::CmpL64 => (None, Some("clg"), Some("clgrl")),
|
1600
|
+
CmpOp::CmpL64Ext16 => (None, None, Some("clghrl")),
|
1601
|
+
CmpOp::CmpL64Ext32 => (None, Some("clgf"), Some("clgfrl")),
|
1602
|
+
};
|
1603
|
+
|
1604
|
+
let rn = pretty_print_reg(rn);
|
1605
|
+
let mem = mem.clone();
|
1606
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
1607
|
+
&mem,
|
1608
|
+
state,
|
1609
|
+
MemInstType {
|
1610
|
+
have_d12: opcode_rx.is_some(),
|
1611
|
+
have_d20: opcode_rxy.is_some(),
|
1612
|
+
have_pcrel: opcode_ril.is_some(),
|
1613
|
+
have_unaligned_pcrel: false,
|
1614
|
+
have_index: true,
|
1615
|
+
},
|
1616
|
+
);
|
1617
|
+
let op = match &mem {
|
1618
|
+
&MemArg::BXD12 { .. } => opcode_rx,
|
1619
|
+
&MemArg::BXD20 { .. } => opcode_rxy,
|
1620
|
+
&MemArg::Label { .. } | &MemArg::Symbol { .. } => opcode_ril,
|
1621
|
+
_ => unreachable!(),
|
1622
|
+
};
|
1623
|
+
let mem = mem.pretty_print_default();
|
1624
|
+
|
1625
|
+
format!("{}{} {}, {}", mem_str, op.unwrap(), rn, mem)
|
1626
|
+
}
|
1627
|
+
&Inst::CmpRSImm16 { op, rn, imm } => {
|
1628
|
+
let op = match op {
|
1629
|
+
CmpOp::CmpS32 => "chi",
|
1630
|
+
CmpOp::CmpS64 => "cghi",
|
1631
|
+
_ => unreachable!(),
|
1632
|
+
};
|
1633
|
+
let rn = pretty_print_reg(rn);
|
1634
|
+
format!("{} {}, {}", op, rn, imm)
|
1635
|
+
}
|
1636
|
+
&Inst::CmpRSImm32 { op, rn, imm } => {
|
1637
|
+
let op = match op {
|
1638
|
+
CmpOp::CmpS32 => "cfi",
|
1639
|
+
CmpOp::CmpS64 => "cgfi",
|
1640
|
+
_ => unreachable!(),
|
1641
|
+
};
|
1642
|
+
let rn = pretty_print_reg(rn);
|
1643
|
+
format!("{} {}, {}", op, rn, imm)
|
1644
|
+
}
|
1645
|
+
&Inst::CmpRUImm32 { op, rn, imm } => {
|
1646
|
+
let op = match op {
|
1647
|
+
CmpOp::CmpL32 => "clfi",
|
1648
|
+
CmpOp::CmpL64 => "clgfi",
|
1649
|
+
_ => unreachable!(),
|
1650
|
+
};
|
1651
|
+
let rn = pretty_print_reg(rn);
|
1652
|
+
format!("{} {}, {}", op, rn, imm)
|
1653
|
+
}
|
1654
|
+
&Inst::CmpTrapRR {
|
1655
|
+
op, rn, rm, cond, ..
|
1656
|
+
} => {
|
1657
|
+
let op = match op {
|
1658
|
+
CmpOp::CmpS32 => "crt",
|
1659
|
+
CmpOp::CmpS64 => "cgrt",
|
1660
|
+
CmpOp::CmpL32 => "clrt",
|
1661
|
+
CmpOp::CmpL64 => "clgrt",
|
1662
|
+
_ => unreachable!(),
|
1663
|
+
};
|
1664
|
+
let rn = pretty_print_reg(rn);
|
1665
|
+
let rm = pretty_print_reg(rm);
|
1666
|
+
let cond = cond.pretty_print_default();
|
1667
|
+
format!("{}{} {}, {}", op, cond, rn, rm)
|
1668
|
+
}
|
1669
|
+
&Inst::CmpTrapRSImm16 {
|
1670
|
+
op, rn, imm, cond, ..
|
1671
|
+
} => {
|
1672
|
+
let op = match op {
|
1673
|
+
CmpOp::CmpS32 => "cit",
|
1674
|
+
CmpOp::CmpS64 => "cgit",
|
1675
|
+
_ => unreachable!(),
|
1676
|
+
};
|
1677
|
+
let rn = pretty_print_reg(rn);
|
1678
|
+
let cond = cond.pretty_print_default();
|
1679
|
+
format!("{}{} {}, {}", op, cond, rn, imm)
|
1680
|
+
}
|
1681
|
+
&Inst::CmpTrapRUImm16 {
|
1682
|
+
op, rn, imm, cond, ..
|
1683
|
+
} => {
|
1684
|
+
let op = match op {
|
1685
|
+
CmpOp::CmpL32 => "clfit",
|
1686
|
+
CmpOp::CmpL64 => "clgit",
|
1687
|
+
_ => unreachable!(),
|
1688
|
+
};
|
1689
|
+
let rn = pretty_print_reg(rn);
|
1690
|
+
let cond = cond.pretty_print_default();
|
1691
|
+
format!("{}{} {}, {}", op, cond, rn, imm)
|
1692
|
+
}
|
1693
|
+
&Inst::AtomicRmw {
|
1694
|
+
alu_op,
|
1695
|
+
rd,
|
1696
|
+
rn,
|
1697
|
+
ref mem,
|
1698
|
+
} => {
|
1699
|
+
let op = match alu_op {
|
1700
|
+
ALUOp::Add32 => "laa",
|
1701
|
+
ALUOp::Add64 => "laag",
|
1702
|
+
ALUOp::AddLogical32 => "laal",
|
1703
|
+
ALUOp::AddLogical64 => "laalg",
|
1704
|
+
ALUOp::And32 => "lan",
|
1705
|
+
ALUOp::And64 => "lang",
|
1706
|
+
ALUOp::Orr32 => "lao",
|
1707
|
+
ALUOp::Orr64 => "laog",
|
1708
|
+
ALUOp::Xor32 => "lax",
|
1709
|
+
ALUOp::Xor64 => "laxg",
|
1710
|
+
_ => unreachable!(),
|
1711
|
+
};
|
1712
|
+
|
1713
|
+
let rd = pretty_print_reg(rd.to_reg());
|
1714
|
+
let rn = pretty_print_reg(rn);
|
1715
|
+
let mem = mem.clone();
|
1716
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
1717
|
+
&mem,
|
1718
|
+
state,
|
1719
|
+
MemInstType {
|
1720
|
+
have_d12: false,
|
1721
|
+
have_d20: true,
|
1722
|
+
have_pcrel: false,
|
1723
|
+
have_unaligned_pcrel: false,
|
1724
|
+
have_index: false,
|
1725
|
+
},
|
1726
|
+
);
|
1727
|
+
let mem = mem.pretty_print_default();
|
1728
|
+
format!("{}{} {}, {}, {}", mem_str, op, rd, rn, mem)
|
1729
|
+
}
|
1730
|
+
&Inst::AtomicCas32 {
|
1731
|
+
rd,
|
1732
|
+
ri,
|
1733
|
+
rn,
|
1734
|
+
ref mem,
|
1735
|
+
}
|
1736
|
+
| &Inst::AtomicCas64 {
|
1737
|
+
rd,
|
1738
|
+
ri,
|
1739
|
+
rn,
|
1740
|
+
ref mem,
|
1741
|
+
} => {
|
1742
|
+
let (opcode_rs, opcode_rsy) = match self {
|
1743
|
+
&Inst::AtomicCas32 { .. } => (Some("cs"), Some("csy")),
|
1744
|
+
&Inst::AtomicCas64 { .. } => (None, Some("csg")),
|
1745
|
+
_ => unreachable!(),
|
1746
|
+
};
|
1747
|
+
|
1748
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
1749
|
+
let rn = pretty_print_reg(rn);
|
1750
|
+
let mem = mem.clone();
|
1751
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
1752
|
+
&mem,
|
1753
|
+
state,
|
1754
|
+
MemInstType {
|
1755
|
+
have_d12: opcode_rs.is_some(),
|
1756
|
+
have_d20: opcode_rsy.is_some(),
|
1757
|
+
have_pcrel: false,
|
1758
|
+
have_unaligned_pcrel: false,
|
1759
|
+
have_index: false,
|
1760
|
+
},
|
1761
|
+
);
|
1762
|
+
let op = match &mem {
|
1763
|
+
&MemArg::BXD12 { .. } => opcode_rs,
|
1764
|
+
&MemArg::BXD20 { .. } => opcode_rsy,
|
1765
|
+
_ => unreachable!(),
|
1766
|
+
};
|
1767
|
+
let mem = mem.pretty_print_default();
|
1768
|
+
|
1769
|
+
format!("{}{} {}, {}, {}", mem_str, op.unwrap(), rd, rn, mem)
|
1770
|
+
}
|
1771
|
+
&Inst::Fence => "bcr 14, 0".to_string(),
|
1772
|
+
&Inst::Load32 { rd, ref mem }
|
1773
|
+
| &Inst::Load32ZExt8 { rd, ref mem }
|
1774
|
+
| &Inst::Load32SExt8 { rd, ref mem }
|
1775
|
+
| &Inst::Load32ZExt16 { rd, ref mem }
|
1776
|
+
| &Inst::Load32SExt16 { rd, ref mem }
|
1777
|
+
| &Inst::Load64 { rd, ref mem }
|
1778
|
+
| &Inst::Load64ZExt8 { rd, ref mem }
|
1779
|
+
| &Inst::Load64SExt8 { rd, ref mem }
|
1780
|
+
| &Inst::Load64ZExt16 { rd, ref mem }
|
1781
|
+
| &Inst::Load64SExt16 { rd, ref mem }
|
1782
|
+
| &Inst::Load64ZExt32 { rd, ref mem }
|
1783
|
+
| &Inst::Load64SExt32 { rd, ref mem }
|
1784
|
+
| &Inst::LoadRev16 { rd, ref mem }
|
1785
|
+
| &Inst::LoadRev32 { rd, ref mem }
|
1786
|
+
| &Inst::LoadRev64 { rd, ref mem } => {
|
1787
|
+
let (opcode_rx, opcode_rxy, opcode_ril) = match self {
|
1788
|
+
&Inst::Load32 { .. } => (Some("l"), Some("ly"), Some("lrl")),
|
1789
|
+
&Inst::Load32ZExt8 { .. } => (None, Some("llc"), None),
|
1790
|
+
&Inst::Load32SExt8 { .. } => (None, Some("lb"), None),
|
1791
|
+
&Inst::Load32ZExt16 { .. } => (None, Some("llh"), Some("llhrl")),
|
1792
|
+
&Inst::Load32SExt16 { .. } => (Some("lh"), Some("lhy"), Some("lhrl")),
|
1793
|
+
&Inst::Load64 { .. } => (None, Some("lg"), Some("lgrl")),
|
1794
|
+
&Inst::Load64ZExt8 { .. } => (None, Some("llgc"), None),
|
1795
|
+
&Inst::Load64SExt8 { .. } => (None, Some("lgb"), None),
|
1796
|
+
&Inst::Load64ZExt16 { .. } => (None, Some("llgh"), Some("llghrl")),
|
1797
|
+
&Inst::Load64SExt16 { .. } => (None, Some("lgh"), Some("lghrl")),
|
1798
|
+
&Inst::Load64ZExt32 { .. } => (None, Some("llgf"), Some("llgfrl")),
|
1799
|
+
&Inst::Load64SExt32 { .. } => (None, Some("lgf"), Some("lgfrl")),
|
1800
|
+
&Inst::LoadRev16 { .. } => (None, Some("lrvh"), None),
|
1801
|
+
&Inst::LoadRev32 { .. } => (None, Some("lrv"), None),
|
1802
|
+
&Inst::LoadRev64 { .. } => (None, Some("lrvg"), None),
|
1803
|
+
_ => unreachable!(),
|
1804
|
+
};
|
1805
|
+
|
1806
|
+
let rd = pretty_print_reg(rd.to_reg());
|
1807
|
+
let mem = mem.clone();
|
1808
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
1809
|
+
&mem,
|
1810
|
+
state,
|
1811
|
+
MemInstType {
|
1812
|
+
have_d12: opcode_rx.is_some(),
|
1813
|
+
have_d20: opcode_rxy.is_some(),
|
1814
|
+
have_pcrel: opcode_ril.is_some(),
|
1815
|
+
have_unaligned_pcrel: false,
|
1816
|
+
have_index: true,
|
1817
|
+
},
|
1818
|
+
);
|
1819
|
+
let op = match &mem {
|
1820
|
+
&MemArg::BXD12 { .. } => opcode_rx,
|
1821
|
+
&MemArg::BXD20 { .. } => opcode_rxy,
|
1822
|
+
&MemArg::Label { .. } | &MemArg::Symbol { .. } => opcode_ril,
|
1823
|
+
_ => unreachable!(),
|
1824
|
+
};
|
1825
|
+
let mem = mem.pretty_print_default();
|
1826
|
+
format!("{}{} {}, {}", mem_str, op.unwrap(), rd, mem)
|
1827
|
+
}
|
1828
|
+
&Inst::Store8 { rd, ref mem }
|
1829
|
+
| &Inst::Store16 { rd, ref mem }
|
1830
|
+
| &Inst::Store32 { rd, ref mem }
|
1831
|
+
| &Inst::Store64 { rd, ref mem }
|
1832
|
+
| &Inst::StoreRev16 { rd, ref mem }
|
1833
|
+
| &Inst::StoreRev32 { rd, ref mem }
|
1834
|
+
| &Inst::StoreRev64 { rd, ref mem } => {
|
1835
|
+
let (opcode_rx, opcode_rxy, opcode_ril) = match self {
|
1836
|
+
&Inst::Store8 { .. } => (Some("stc"), Some("stcy"), None),
|
1837
|
+
&Inst::Store16 { .. } => (Some("sth"), Some("sthy"), Some("sthrl")),
|
1838
|
+
&Inst::Store32 { .. } => (Some("st"), Some("sty"), Some("strl")),
|
1839
|
+
&Inst::Store64 { .. } => (None, Some("stg"), Some("stgrl")),
|
1840
|
+
&Inst::StoreRev16 { .. } => (None, Some("strvh"), None),
|
1841
|
+
&Inst::StoreRev32 { .. } => (None, Some("strv"), None),
|
1842
|
+
&Inst::StoreRev64 { .. } => (None, Some("strvg"), None),
|
1843
|
+
_ => unreachable!(),
|
1844
|
+
};
|
1845
|
+
|
1846
|
+
let rd = pretty_print_reg(rd);
|
1847
|
+
let mem = mem.clone();
|
1848
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
1849
|
+
&mem,
|
1850
|
+
state,
|
1851
|
+
MemInstType {
|
1852
|
+
have_d12: opcode_rx.is_some(),
|
1853
|
+
have_d20: opcode_rxy.is_some(),
|
1854
|
+
have_pcrel: opcode_ril.is_some(),
|
1855
|
+
have_unaligned_pcrel: false,
|
1856
|
+
have_index: true,
|
1857
|
+
},
|
1858
|
+
);
|
1859
|
+
let op = match &mem {
|
1860
|
+
&MemArg::BXD12 { .. } => opcode_rx,
|
1861
|
+
&MemArg::BXD20 { .. } => opcode_rxy,
|
1862
|
+
&MemArg::Label { .. } | &MemArg::Symbol { .. } => opcode_ril,
|
1863
|
+
_ => unreachable!(),
|
1864
|
+
};
|
1865
|
+
let mem = mem.pretty_print_default();
|
1866
|
+
|
1867
|
+
format!("{}{} {}, {}", mem_str, op.unwrap(), rd, mem)
|
1868
|
+
}
|
1869
|
+
&Inst::StoreImm8 { imm, ref mem } => {
|
1870
|
+
let mem = mem.clone();
|
1871
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
1872
|
+
&mem,
|
1873
|
+
state,
|
1874
|
+
MemInstType {
|
1875
|
+
have_d12: true,
|
1876
|
+
have_d20: true,
|
1877
|
+
have_pcrel: false,
|
1878
|
+
have_unaligned_pcrel: false,
|
1879
|
+
have_index: false,
|
1880
|
+
},
|
1881
|
+
);
|
1882
|
+
let op = match &mem {
|
1883
|
+
&MemArg::BXD12 { .. } => "mvi",
|
1884
|
+
&MemArg::BXD20 { .. } => "mviy",
|
1885
|
+
_ => unreachable!(),
|
1886
|
+
};
|
1887
|
+
let mem = mem.pretty_print_default();
|
1888
|
+
|
1889
|
+
format!("{}{} {}, {}", mem_str, op, mem, imm)
|
1890
|
+
}
|
1891
|
+
&Inst::StoreImm16 { imm, ref mem }
|
1892
|
+
| &Inst::StoreImm32SExt16 { imm, ref mem }
|
1893
|
+
| &Inst::StoreImm64SExt16 { imm, ref mem } => {
|
1894
|
+
let mem = mem.clone();
|
1895
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
1896
|
+
&mem,
|
1897
|
+
state,
|
1898
|
+
MemInstType {
|
1899
|
+
have_d12: false,
|
1900
|
+
have_d20: true,
|
1901
|
+
have_pcrel: false,
|
1902
|
+
have_unaligned_pcrel: false,
|
1903
|
+
have_index: false,
|
1904
|
+
},
|
1905
|
+
);
|
1906
|
+
let op = match self {
|
1907
|
+
&Inst::StoreImm16 { .. } => "mvhhi",
|
1908
|
+
&Inst::StoreImm32SExt16 { .. } => "mvhi",
|
1909
|
+
&Inst::StoreImm64SExt16 { .. } => "mvghi",
|
1910
|
+
_ => unreachable!(),
|
1911
|
+
};
|
1912
|
+
let mem = mem.pretty_print_default();
|
1913
|
+
|
1914
|
+
format!("{}{} {}, {}", mem_str, op, mem, imm)
|
1915
|
+
}
|
1916
|
+
&Inst::Mvc {
|
1917
|
+
ref dst,
|
1918
|
+
ref src,
|
1919
|
+
len_minus_one,
|
1920
|
+
} => {
|
1921
|
+
let dst = dst.clone();
|
1922
|
+
let src = src.clone();
|
1923
|
+
format!(
|
1924
|
+
"mvc {}({},{}), {}({})",
|
1925
|
+
dst.disp.pretty_print_default(),
|
1926
|
+
len_minus_one,
|
1927
|
+
show_reg(dst.base),
|
1928
|
+
src.disp.pretty_print_default(),
|
1929
|
+
show_reg(src.base)
|
1930
|
+
)
|
1931
|
+
}
|
1932
|
+
&Inst::LoadMultiple64 { rt, rt2, ref mem } => {
|
1933
|
+
let mem = mem.clone();
|
1934
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
1935
|
+
&mem,
|
1936
|
+
state,
|
1937
|
+
MemInstType {
|
1938
|
+
have_d12: false,
|
1939
|
+
have_d20: true,
|
1940
|
+
have_pcrel: false,
|
1941
|
+
have_unaligned_pcrel: false,
|
1942
|
+
have_index: false,
|
1943
|
+
},
|
1944
|
+
);
|
1945
|
+
let rt = pretty_print_reg(rt.to_reg());
|
1946
|
+
let rt2 = pretty_print_reg(rt2.to_reg());
|
1947
|
+
let mem = mem.pretty_print_default();
|
1948
|
+
format!("{}lmg {}, {}, {}", mem_str, rt, rt2, mem)
|
1949
|
+
}
|
1950
|
+
&Inst::StoreMultiple64 { rt, rt2, ref mem } => {
|
1951
|
+
let mem = mem.clone();
|
1952
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
1953
|
+
&mem,
|
1954
|
+
state,
|
1955
|
+
MemInstType {
|
1956
|
+
have_d12: false,
|
1957
|
+
have_d20: true,
|
1958
|
+
have_pcrel: false,
|
1959
|
+
have_unaligned_pcrel: false,
|
1960
|
+
have_index: false,
|
1961
|
+
},
|
1962
|
+
);
|
1963
|
+
let rt = pretty_print_reg(rt);
|
1964
|
+
let rt2 = pretty_print_reg(rt2);
|
1965
|
+
let mem = mem.pretty_print_default();
|
1966
|
+
format!("{}stmg {}, {}, {}", mem_str, rt, rt2, mem)
|
1967
|
+
}
|
1968
|
+
&Inst::Mov64 { rd, rm } => {
|
1969
|
+
let rd = pretty_print_reg(rd.to_reg());
|
1970
|
+
let rm = pretty_print_reg(rm);
|
1971
|
+
format!("lgr {}, {}", rd, rm)
|
1972
|
+
}
|
1973
|
+
&Inst::MovPReg { rd, rm } => {
|
1974
|
+
let rd = pretty_print_reg(rd.to_reg());
|
1975
|
+
let rm = show_reg(rm.into());
|
1976
|
+
format!("lgr {}, {}", rd, rm)
|
1977
|
+
}
|
1978
|
+
&Inst::Mov32 { rd, rm } => {
|
1979
|
+
let rd = pretty_print_reg(rd.to_reg());
|
1980
|
+
let rm = pretty_print_reg(rm);
|
1981
|
+
format!("lr {}, {}", rd, rm)
|
1982
|
+
}
|
1983
|
+
&Inst::Mov32Imm { rd, ref imm } => {
|
1984
|
+
let rd = pretty_print_reg(rd.to_reg());
|
1985
|
+
format!("iilf {}, {}", rd, imm)
|
1986
|
+
}
|
1987
|
+
&Inst::Mov32SImm16 { rd, ref imm } => {
|
1988
|
+
let rd = pretty_print_reg(rd.to_reg());
|
1989
|
+
format!("lhi {}, {}", rd, imm)
|
1990
|
+
}
|
1991
|
+
&Inst::Mov64SImm16 { rd, ref imm } => {
|
1992
|
+
let rd = pretty_print_reg(rd.to_reg());
|
1993
|
+
format!("lghi {}, {}", rd, imm)
|
1994
|
+
}
|
1995
|
+
&Inst::Mov64SImm32 { rd, ref imm } => {
|
1996
|
+
let rd = pretty_print_reg(rd.to_reg());
|
1997
|
+
format!("lgfi {}, {}", rd, imm)
|
1998
|
+
}
|
1999
|
+
&Inst::Mov64UImm16Shifted { rd, ref imm } => {
|
2000
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2001
|
+
let op = match imm.shift {
|
2002
|
+
0 => "llill",
|
2003
|
+
1 => "llilh",
|
2004
|
+
2 => "llihl",
|
2005
|
+
3 => "llihh",
|
2006
|
+
_ => unreachable!(),
|
2007
|
+
};
|
2008
|
+
format!("{} {}, {}", op, rd, imm.bits)
|
2009
|
+
}
|
2010
|
+
&Inst::Mov64UImm32Shifted { rd, ref imm } => {
|
2011
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2012
|
+
let op = match imm.shift {
|
2013
|
+
0 => "llilf",
|
2014
|
+
1 => "llihf",
|
2015
|
+
_ => unreachable!(),
|
2016
|
+
};
|
2017
|
+
format!("{} {}, {}", op, rd, imm.bits)
|
2018
|
+
}
|
2019
|
+
&Inst::Insert64UImm16Shifted { rd, ri, ref imm } => {
|
2020
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
2021
|
+
let op = match imm.shift {
|
2022
|
+
0 => "iill",
|
2023
|
+
1 => "iilh",
|
2024
|
+
2 => "iihl",
|
2025
|
+
3 => "iihh",
|
2026
|
+
_ => unreachable!(),
|
2027
|
+
};
|
2028
|
+
format!("{} {}, {}", op, rd, imm.bits)
|
2029
|
+
}
|
2030
|
+
&Inst::Insert64UImm32Shifted { rd, ri, ref imm } => {
|
2031
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
2032
|
+
let op = match imm.shift {
|
2033
|
+
0 => "iilf",
|
2034
|
+
1 => "iihf",
|
2035
|
+
_ => unreachable!(),
|
2036
|
+
};
|
2037
|
+
format!("{} {}, {}", op, rd, imm.bits)
|
2038
|
+
}
|
2039
|
+
&Inst::LoadAR { rd, ar } => {
|
2040
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2041
|
+
format!("ear {}, %a{}", rd, ar)
|
2042
|
+
}
|
2043
|
+
&Inst::InsertAR { rd, ri, ar } => {
|
2044
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
2045
|
+
format!("ear {}, %a{}", rd, ar)
|
2046
|
+
}
|
2047
|
+
&Inst::CMov32 { rd, cond, ri, rm } => {
|
2048
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
2049
|
+
let rm = pretty_print_reg(rm);
|
2050
|
+
let cond = cond.pretty_print_default();
|
2051
|
+
format!("locr{} {}, {}", cond, rd, rm)
|
2052
|
+
}
|
2053
|
+
&Inst::CMov64 { rd, cond, ri, rm } => {
|
2054
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
2055
|
+
let rm = pretty_print_reg(rm);
|
2056
|
+
let cond = cond.pretty_print_default();
|
2057
|
+
format!("locgr{} {}, {}", cond, rd, rm)
|
2058
|
+
}
|
2059
|
+
&Inst::CMov32SImm16 {
|
2060
|
+
rd,
|
2061
|
+
cond,
|
2062
|
+
ri,
|
2063
|
+
ref imm,
|
2064
|
+
} => {
|
2065
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
2066
|
+
let cond = cond.pretty_print_default();
|
2067
|
+
format!("lochi{} {}, {}", cond, rd, imm)
|
2068
|
+
}
|
2069
|
+
&Inst::CMov64SImm16 {
|
2070
|
+
rd,
|
2071
|
+
cond,
|
2072
|
+
ri,
|
2073
|
+
ref imm,
|
2074
|
+
} => {
|
2075
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
2076
|
+
let cond = cond.pretty_print_default();
|
2077
|
+
format!("locghi{} {}, {}", cond, rd, imm)
|
2078
|
+
}
|
2079
|
+
&Inst::FpuMove32 { rd, rn } => {
|
2080
|
+
let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
|
2081
|
+
let (rn, rn_fpr) = pretty_print_fpr(rn);
|
2082
|
+
if rd_fpr.is_some() && rn_fpr.is_some() {
|
2083
|
+
format!("ler {}, {}", rd_fpr.unwrap(), rn_fpr.unwrap())
|
2084
|
+
} else {
|
2085
|
+
format!("vlr {}, {}", rd, rn)
|
2086
|
+
}
|
2087
|
+
}
|
2088
|
+
&Inst::FpuMove64 { rd, rn } => {
|
2089
|
+
let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
|
2090
|
+
let (rn, rn_fpr) = pretty_print_fpr(rn);
|
2091
|
+
if rd_fpr.is_some() && rn_fpr.is_some() {
|
2092
|
+
format!("ldr {}, {}", rd_fpr.unwrap(), rn_fpr.unwrap())
|
2093
|
+
} else {
|
2094
|
+
format!("vlr {}, {}", rd, rn)
|
2095
|
+
}
|
2096
|
+
}
|
2097
|
+
&Inst::FpuCMov32 { rd, cond, rm, .. } => {
|
2098
|
+
let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
|
2099
|
+
let (rm, rm_fpr) = pretty_print_fpr(rm);
|
2100
|
+
if rd_fpr.is_some() && rm_fpr.is_some() {
|
2101
|
+
let cond = cond.invert().pretty_print_default();
|
2102
|
+
format!("j{} 6 ; ler {}, {}", cond, rd_fpr.unwrap(), rm_fpr.unwrap())
|
2103
|
+
} else {
|
2104
|
+
let cond = cond.invert().pretty_print_default();
|
2105
|
+
format!("j{} 10 ; vlr {}, {}", cond, rd, rm)
|
2106
|
+
}
|
2107
|
+
}
|
2108
|
+
&Inst::FpuCMov64 { rd, cond, rm, .. } => {
|
2109
|
+
let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
|
2110
|
+
let (rm, rm_fpr) = pretty_print_fpr(rm);
|
2111
|
+
if rd_fpr.is_some() && rm_fpr.is_some() {
|
2112
|
+
let cond = cond.invert().pretty_print_default();
|
2113
|
+
format!("j{} 6 ; ldr {}, {}", cond, rd_fpr.unwrap(), rm_fpr.unwrap())
|
2114
|
+
} else {
|
2115
|
+
let cond = cond.invert().pretty_print_default();
|
2116
|
+
format!("j{} 10 ; vlr {}, {}", cond, rd, rm)
|
2117
|
+
}
|
2118
|
+
}
|
2119
|
+
&Inst::FpuRR { fpu_op, rd, rn } => {
|
2120
|
+
let (op, op_fpr) = match fpu_op {
|
2121
|
+
FPUOp1::Abs32 => ("wflpsb", Some("lpebr")),
|
2122
|
+
FPUOp1::Abs64 => ("wflpdb", Some("lpdbr")),
|
2123
|
+
FPUOp1::Abs32x4 => ("vflpsb", None),
|
2124
|
+
FPUOp1::Abs64x2 => ("vflpdb", None),
|
2125
|
+
FPUOp1::Neg32 => ("wflcsb", Some("lcebr")),
|
2126
|
+
FPUOp1::Neg64 => ("wflcdb", Some("lcdbr")),
|
2127
|
+
FPUOp1::Neg32x4 => ("vflcsb", None),
|
2128
|
+
FPUOp1::Neg64x2 => ("vflcdb", None),
|
2129
|
+
FPUOp1::NegAbs32 => ("wflnsb", Some("lnebr")),
|
2130
|
+
FPUOp1::NegAbs64 => ("wflndb", Some("lndbr")),
|
2131
|
+
FPUOp1::NegAbs32x4 => ("vflnsb", None),
|
2132
|
+
FPUOp1::NegAbs64x2 => ("vflndb", None),
|
2133
|
+
FPUOp1::Sqrt32 => ("wfsqsb", Some("sqebr")),
|
2134
|
+
FPUOp1::Sqrt64 => ("wfsqdb", Some("sqdbr")),
|
2135
|
+
FPUOp1::Sqrt32x4 => ("vfsqsb", None),
|
2136
|
+
FPUOp1::Sqrt64x2 => ("vfsqdb", None),
|
2137
|
+
FPUOp1::Cvt32To64 => ("wldeb", Some("ldebr")),
|
2138
|
+
FPUOp1::Cvt32x4To64x2 => ("vldeb", None),
|
2139
|
+
};
|
2140
|
+
|
2141
|
+
let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
|
2142
|
+
let (rn, rn_fpr) = pretty_print_fpr(rn);
|
2143
|
+
if op_fpr.is_some() && rd_fpr.is_some() && rn_fpr.is_some() {
|
2144
|
+
format!(
|
2145
|
+
"{} {}, {}",
|
2146
|
+
op_fpr.unwrap(),
|
2147
|
+
rd_fpr.unwrap(),
|
2148
|
+
rn_fpr.unwrap()
|
2149
|
+
)
|
2150
|
+
} else if op.starts_with('w') {
|
2151
|
+
format!("{} {}, {}", op, rd_fpr.unwrap_or(rd), rn_fpr.unwrap_or(rn))
|
2152
|
+
} else {
|
2153
|
+
format!("{} {}, {}", op, rd, rn)
|
2154
|
+
}
|
2155
|
+
}
|
2156
|
+
&Inst::FpuRRR { fpu_op, rd, rn, rm } => {
|
2157
|
+
let (op, opt_m6, op_fpr) = match fpu_op {
|
2158
|
+
FPUOp2::Add32 => ("wfasb", "", Some("aebr")),
|
2159
|
+
FPUOp2::Add64 => ("wfadb", "", Some("adbr")),
|
2160
|
+
FPUOp2::Add32x4 => ("vfasb", "", None),
|
2161
|
+
FPUOp2::Add64x2 => ("vfadb", "", None),
|
2162
|
+
FPUOp2::Sub32 => ("wfssb", "", Some("sebr")),
|
2163
|
+
FPUOp2::Sub64 => ("wfsdb", "", Some("sdbr")),
|
2164
|
+
FPUOp2::Sub32x4 => ("vfssb", "", None),
|
2165
|
+
FPUOp2::Sub64x2 => ("vfsdb", "", None),
|
2166
|
+
FPUOp2::Mul32 => ("wfmsb", "", Some("meebr")),
|
2167
|
+
FPUOp2::Mul64 => ("wfmdb", "", Some("mdbr")),
|
2168
|
+
FPUOp2::Mul32x4 => ("vfmsb", "", None),
|
2169
|
+
FPUOp2::Mul64x2 => ("vfmdb", "", None),
|
2170
|
+
FPUOp2::Div32 => ("wfdsb", "", Some("debr")),
|
2171
|
+
FPUOp2::Div64 => ("wfddb", "", Some("ddbr")),
|
2172
|
+
FPUOp2::Div32x4 => ("vfdsb", "", None),
|
2173
|
+
FPUOp2::Div64x2 => ("vfddb", "", None),
|
2174
|
+
FPUOp2::Max32 => ("wfmaxsb", ", 1", None),
|
2175
|
+
FPUOp2::Max64 => ("wfmaxdb", ", 1", None),
|
2176
|
+
FPUOp2::Max32x4 => ("vfmaxsb", ", 1", None),
|
2177
|
+
FPUOp2::Max64x2 => ("vfmaxdb", ", 1", None),
|
2178
|
+
FPUOp2::Min32 => ("wfminsb", ", 1", None),
|
2179
|
+
FPUOp2::Min64 => ("wfmindb", ", 1", None),
|
2180
|
+
FPUOp2::Min32x4 => ("vfminsb", ", 1", None),
|
2181
|
+
FPUOp2::Min64x2 => ("vfmindb", ", 1", None),
|
2182
|
+
FPUOp2::MaxPseudo32 => ("wfmaxsb", ", 3", None),
|
2183
|
+
FPUOp2::MaxPseudo64 => ("wfmaxdb", ", 3", None),
|
2184
|
+
FPUOp2::MaxPseudo32x4 => ("vfmaxsb", ", 3", None),
|
2185
|
+
FPUOp2::MaxPseudo64x2 => ("vfmaxdb", ", 3", None),
|
2186
|
+
FPUOp2::MinPseudo32 => ("wfminsb", ", 3", None),
|
2187
|
+
FPUOp2::MinPseudo64 => ("wfmindb", ", 3", None),
|
2188
|
+
FPUOp2::MinPseudo32x4 => ("vfminsb", ", 3", None),
|
2189
|
+
FPUOp2::MinPseudo64x2 => ("vfmindb", ", 3", None),
|
2190
|
+
};
|
2191
|
+
|
2192
|
+
let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
|
2193
|
+
let (rn, rn_fpr) = pretty_print_fpr(rn);
|
2194
|
+
let (rm, rm_fpr) = pretty_print_fpr(rm);
|
2195
|
+
if op_fpr.is_some() && rd == rn && rd_fpr.is_some() && rm_fpr.is_some() {
|
2196
|
+
format!(
|
2197
|
+
"{} {}, {}",
|
2198
|
+
op_fpr.unwrap(),
|
2199
|
+
rd_fpr.unwrap(),
|
2200
|
+
rm_fpr.unwrap()
|
2201
|
+
)
|
2202
|
+
} else if op.starts_with('w') {
|
2203
|
+
format!(
|
2204
|
+
"{} {}, {}, {}{}",
|
2205
|
+
op,
|
2206
|
+
rd_fpr.unwrap_or(rd),
|
2207
|
+
rn_fpr.unwrap_or(rn),
|
2208
|
+
rm_fpr.unwrap_or(rm),
|
2209
|
+
opt_m6
|
2210
|
+
)
|
2211
|
+
} else {
|
2212
|
+
format!("{} {}, {}, {}{}", op, rd, rn, rm, opt_m6)
|
2213
|
+
}
|
2214
|
+
}
|
2215
|
+
&Inst::FpuRRRR {
|
2216
|
+
fpu_op,
|
2217
|
+
rd,
|
2218
|
+
rn,
|
2219
|
+
rm,
|
2220
|
+
ra,
|
2221
|
+
} => {
|
2222
|
+
let (op, op_fpr) = match fpu_op {
|
2223
|
+
FPUOp3::MAdd32 => ("wfmasb", Some("maebr")),
|
2224
|
+
FPUOp3::MAdd64 => ("wfmadb", Some("madbr")),
|
2225
|
+
FPUOp3::MAdd32x4 => ("vfmasb", None),
|
2226
|
+
FPUOp3::MAdd64x2 => ("vfmadb", None),
|
2227
|
+
FPUOp3::MSub32 => ("wfmssb", Some("msebr")),
|
2228
|
+
FPUOp3::MSub64 => ("wfmsdb", Some("msdbr")),
|
2229
|
+
FPUOp3::MSub32x4 => ("vfmssb", None),
|
2230
|
+
FPUOp3::MSub64x2 => ("vfmsdb", None),
|
2231
|
+
};
|
2232
|
+
|
2233
|
+
let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
|
2234
|
+
let (rn, rn_fpr) = pretty_print_fpr(rn);
|
2235
|
+
let (rm, rm_fpr) = pretty_print_fpr(rm);
|
2236
|
+
let (ra, ra_fpr) = pretty_print_fpr(ra);
|
2237
|
+
if op_fpr.is_some()
|
2238
|
+
&& rd == ra
|
2239
|
+
&& rd_fpr.is_some()
|
2240
|
+
&& rn_fpr.is_some()
|
2241
|
+
&& rm_fpr.is_some()
|
2242
|
+
{
|
2243
|
+
format!(
|
2244
|
+
"{} {}, {}, {}",
|
2245
|
+
op_fpr.unwrap(),
|
2246
|
+
rd_fpr.unwrap(),
|
2247
|
+
rn_fpr.unwrap(),
|
2248
|
+
rm_fpr.unwrap()
|
2249
|
+
)
|
2250
|
+
} else if op.starts_with('w') {
|
2251
|
+
format!(
|
2252
|
+
"{} {}, {}, {}, {}",
|
2253
|
+
op,
|
2254
|
+
rd_fpr.unwrap_or(rd),
|
2255
|
+
rn_fpr.unwrap_or(rn),
|
2256
|
+
rm_fpr.unwrap_or(rm),
|
2257
|
+
ra_fpr.unwrap_or(ra)
|
2258
|
+
)
|
2259
|
+
} else {
|
2260
|
+
format!("{} {}, {}, {}, {}", op, rd, rn, rm, ra)
|
2261
|
+
}
|
2262
|
+
}
|
2263
|
+
&Inst::FpuCmp32 { rn, rm } => {
|
2264
|
+
let (rn, rn_fpr) = pretty_print_fpr(rn);
|
2265
|
+
let (rm, rm_fpr) = pretty_print_fpr(rm);
|
2266
|
+
if rn_fpr.is_some() && rm_fpr.is_some() {
|
2267
|
+
format!("cebr {}, {}", rn_fpr.unwrap(), rm_fpr.unwrap())
|
2268
|
+
} else {
|
2269
|
+
format!("wfcsb {}, {}", rn_fpr.unwrap_or(rn), rm_fpr.unwrap_or(rm))
|
2270
|
+
}
|
2271
|
+
}
|
2272
|
+
&Inst::FpuCmp64 { rn, rm } => {
|
2273
|
+
let (rn, rn_fpr) = pretty_print_fpr(rn);
|
2274
|
+
let (rm, rm_fpr) = pretty_print_fpr(rm);
|
2275
|
+
if rn_fpr.is_some() && rm_fpr.is_some() {
|
2276
|
+
format!("cdbr {}, {}", rn_fpr.unwrap(), rm_fpr.unwrap())
|
2277
|
+
} else {
|
2278
|
+
format!("wfcdb {}, {}", rn_fpr.unwrap_or(rn), rm_fpr.unwrap_or(rm))
|
2279
|
+
}
|
2280
|
+
}
|
2281
|
+
&Inst::LoadFpuConst32 { rd, const_data } => {
|
2282
|
+
let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
|
2283
|
+
let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
|
2284
|
+
if rd_fpr.is_some() {
|
2285
|
+
format!(
|
2286
|
+
"bras {}, 8 ; data.f32 {} ; le {}, 0({})",
|
2287
|
+
tmp,
|
2288
|
+
f32::from_bits(const_data),
|
2289
|
+
rd_fpr.unwrap(),
|
2290
|
+
tmp
|
2291
|
+
)
|
2292
|
+
} else {
|
2293
|
+
format!(
|
2294
|
+
"bras {}, 8 ; data.f32 {} ; vlef {}, 0({}), 0",
|
2295
|
+
tmp,
|
2296
|
+
f32::from_bits(const_data),
|
2297
|
+
rd,
|
2298
|
+
tmp
|
2299
|
+
)
|
2300
|
+
}
|
2301
|
+
}
|
2302
|
+
&Inst::LoadFpuConst64 { rd, const_data } => {
|
2303
|
+
let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
|
2304
|
+
let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
|
2305
|
+
if rd_fpr.is_some() {
|
2306
|
+
format!(
|
2307
|
+
"bras {}, 12 ; data.f64 {} ; ld {}, 0({})",
|
2308
|
+
tmp,
|
2309
|
+
f64::from_bits(const_data),
|
2310
|
+
rd_fpr.unwrap(),
|
2311
|
+
tmp
|
2312
|
+
)
|
2313
|
+
} else {
|
2314
|
+
format!(
|
2315
|
+
"bras {}, 12 ; data.f64 {} ; vleg {}, 0({}), 0",
|
2316
|
+
tmp,
|
2317
|
+
f64::from_bits(const_data),
|
2318
|
+
rd,
|
2319
|
+
tmp
|
2320
|
+
)
|
2321
|
+
}
|
2322
|
+
}
|
2323
|
+
&Inst::FpuRound { op, mode, rd, rn } => {
|
2324
|
+
let mode = match mode {
|
2325
|
+
FpuRoundMode::Current => 0,
|
2326
|
+
FpuRoundMode::ToNearest => 1,
|
2327
|
+
FpuRoundMode::ShorterPrecision => 3,
|
2328
|
+
FpuRoundMode::ToNearestTiesToEven => 4,
|
2329
|
+
FpuRoundMode::ToZero => 5,
|
2330
|
+
FpuRoundMode::ToPosInfinity => 6,
|
2331
|
+
FpuRoundMode::ToNegInfinity => 7,
|
2332
|
+
};
|
2333
|
+
let (opcode, opcode_fpr) = match op {
|
2334
|
+
FpuRoundOp::Cvt64To32 => ("wledb", Some("ledbra")),
|
2335
|
+
FpuRoundOp::Cvt64x2To32x4 => ("vledb", None),
|
2336
|
+
FpuRoundOp::Round32 => ("wfisb", Some("fiebr")),
|
2337
|
+
FpuRoundOp::Round64 => ("wfidb", Some("fidbr")),
|
2338
|
+
FpuRoundOp::Round32x4 => ("vfisb", None),
|
2339
|
+
FpuRoundOp::Round64x2 => ("vfidb", None),
|
2340
|
+
FpuRoundOp::ToSInt32 => ("wcfeb", None),
|
2341
|
+
FpuRoundOp::ToSInt64 => ("wcgdb", None),
|
2342
|
+
FpuRoundOp::ToUInt32 => ("wclfeb", None),
|
2343
|
+
FpuRoundOp::ToUInt64 => ("wclgdb", None),
|
2344
|
+
FpuRoundOp::ToSInt32x4 => ("vcfeb", None),
|
2345
|
+
FpuRoundOp::ToSInt64x2 => ("vcgdb", None),
|
2346
|
+
FpuRoundOp::ToUInt32x4 => ("vclfeb", None),
|
2347
|
+
FpuRoundOp::ToUInt64x2 => ("vclgdb", None),
|
2348
|
+
FpuRoundOp::FromSInt32 => ("wcefb", None),
|
2349
|
+
FpuRoundOp::FromSInt64 => ("wcdgb", None),
|
2350
|
+
FpuRoundOp::FromUInt32 => ("wcelfb", None),
|
2351
|
+
FpuRoundOp::FromUInt64 => ("wcdlgb", None),
|
2352
|
+
FpuRoundOp::FromSInt32x4 => ("vcefb", None),
|
2353
|
+
FpuRoundOp::FromSInt64x2 => ("vcdgb", None),
|
2354
|
+
FpuRoundOp::FromUInt32x4 => ("vcelfb", None),
|
2355
|
+
FpuRoundOp::FromUInt64x2 => ("vcdlgb", None),
|
2356
|
+
};
|
2357
|
+
|
2358
|
+
let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
|
2359
|
+
let (rn, rn_fpr) = pretty_print_fpr(rn);
|
2360
|
+
if opcode_fpr.is_some() && rd_fpr.is_some() && rn_fpr.is_some() {
|
2361
|
+
format!(
|
2362
|
+
"{} {}, {}, {}{}",
|
2363
|
+
opcode_fpr.unwrap(),
|
2364
|
+
rd_fpr.unwrap(),
|
2365
|
+
mode,
|
2366
|
+
rn_fpr.unwrap(),
|
2367
|
+
if opcode_fpr.unwrap().ends_with('a') {
|
2368
|
+
", 0"
|
2369
|
+
} else {
|
2370
|
+
""
|
2371
|
+
}
|
2372
|
+
)
|
2373
|
+
} else if opcode.starts_with('w') {
|
2374
|
+
format!(
|
2375
|
+
"{} {}, {}, 0, {}",
|
2376
|
+
opcode,
|
2377
|
+
rd_fpr.unwrap_or(rd),
|
2378
|
+
rn_fpr.unwrap_or(rn),
|
2379
|
+
mode
|
2380
|
+
)
|
2381
|
+
} else {
|
2382
|
+
format!("{} {}, {}, 0, {}", opcode, rd, rn, mode)
|
2383
|
+
}
|
2384
|
+
}
|
2385
|
+
&Inst::VecRRR { op, rd, rn, rm } => {
|
2386
|
+
let op = match op {
|
2387
|
+
VecBinaryOp::Add8x16 => "vab",
|
2388
|
+
VecBinaryOp::Add16x8 => "vah",
|
2389
|
+
VecBinaryOp::Add32x4 => "vaf",
|
2390
|
+
VecBinaryOp::Add64x2 => "vag",
|
2391
|
+
VecBinaryOp::Add128 => "vaq",
|
2392
|
+
VecBinaryOp::Sub8x16 => "vsb",
|
2393
|
+
VecBinaryOp::Sub16x8 => "vsh",
|
2394
|
+
VecBinaryOp::Sub32x4 => "vsf",
|
2395
|
+
VecBinaryOp::Sub64x2 => "vsg",
|
2396
|
+
VecBinaryOp::Sub128 => "vsq",
|
2397
|
+
VecBinaryOp::Mul8x16 => "vmlb",
|
2398
|
+
VecBinaryOp::Mul16x8 => "vmlhw",
|
2399
|
+
VecBinaryOp::Mul32x4 => "vmlf",
|
2400
|
+
VecBinaryOp::UMulHi8x16 => "vmlhb",
|
2401
|
+
VecBinaryOp::UMulHi16x8 => "vmlhh",
|
2402
|
+
VecBinaryOp::UMulHi32x4 => "vmlhf",
|
2403
|
+
VecBinaryOp::SMulHi8x16 => "vmhb",
|
2404
|
+
VecBinaryOp::SMulHi16x8 => "vmhh",
|
2405
|
+
VecBinaryOp::SMulHi32x4 => "vmhf",
|
2406
|
+
VecBinaryOp::UMulEven8x16 => "vmleb",
|
2407
|
+
VecBinaryOp::UMulEven16x8 => "vmleh",
|
2408
|
+
VecBinaryOp::UMulEven32x4 => "vmlef",
|
2409
|
+
VecBinaryOp::SMulEven8x16 => "vmeb",
|
2410
|
+
VecBinaryOp::SMulEven16x8 => "vmeh",
|
2411
|
+
VecBinaryOp::SMulEven32x4 => "vmef",
|
2412
|
+
VecBinaryOp::UMulOdd8x16 => "vmlob",
|
2413
|
+
VecBinaryOp::UMulOdd16x8 => "vmloh",
|
2414
|
+
VecBinaryOp::UMulOdd32x4 => "vmlof",
|
2415
|
+
VecBinaryOp::SMulOdd8x16 => "vmob",
|
2416
|
+
VecBinaryOp::SMulOdd16x8 => "vmoh",
|
2417
|
+
VecBinaryOp::SMulOdd32x4 => "vmof",
|
2418
|
+
VecBinaryOp::UMax8x16 => "vmxlb",
|
2419
|
+
VecBinaryOp::UMax16x8 => "vmxlh",
|
2420
|
+
VecBinaryOp::UMax32x4 => "vmxlf",
|
2421
|
+
VecBinaryOp::UMax64x2 => "vmxlg",
|
2422
|
+
VecBinaryOp::SMax8x16 => "vmxb",
|
2423
|
+
VecBinaryOp::SMax16x8 => "vmxh",
|
2424
|
+
VecBinaryOp::SMax32x4 => "vmxf",
|
2425
|
+
VecBinaryOp::SMax64x2 => "vmxg",
|
2426
|
+
VecBinaryOp::UMin8x16 => "vmnlb",
|
2427
|
+
VecBinaryOp::UMin16x8 => "vmnlh",
|
2428
|
+
VecBinaryOp::UMin32x4 => "vmnlf",
|
2429
|
+
VecBinaryOp::UMin64x2 => "vmnlg",
|
2430
|
+
VecBinaryOp::SMin8x16 => "vmnb",
|
2431
|
+
VecBinaryOp::SMin16x8 => "vmnh",
|
2432
|
+
VecBinaryOp::SMin32x4 => "vmnf",
|
2433
|
+
VecBinaryOp::SMin64x2 => "vmng",
|
2434
|
+
VecBinaryOp::UAvg8x16 => "vavglb",
|
2435
|
+
VecBinaryOp::UAvg16x8 => "vavglh",
|
2436
|
+
VecBinaryOp::UAvg32x4 => "vavglf",
|
2437
|
+
VecBinaryOp::UAvg64x2 => "vavglg",
|
2438
|
+
VecBinaryOp::SAvg8x16 => "vavgb",
|
2439
|
+
VecBinaryOp::SAvg16x8 => "vavgh",
|
2440
|
+
VecBinaryOp::SAvg32x4 => "vavgf",
|
2441
|
+
VecBinaryOp::SAvg64x2 => "vavgg",
|
2442
|
+
VecBinaryOp::And128 => "vn",
|
2443
|
+
VecBinaryOp::Orr128 => "vo",
|
2444
|
+
VecBinaryOp::Xor128 => "vx",
|
2445
|
+
VecBinaryOp::NotAnd128 => "vnn",
|
2446
|
+
VecBinaryOp::NotOrr128 => "vno",
|
2447
|
+
VecBinaryOp::NotXor128 => "vnx",
|
2448
|
+
VecBinaryOp::AndNot128 => "vnc",
|
2449
|
+
VecBinaryOp::OrrNot128 => "voc",
|
2450
|
+
VecBinaryOp::BitPermute128 => "vbperm",
|
2451
|
+
VecBinaryOp::LShLByByte128 => "vslb",
|
2452
|
+
VecBinaryOp::LShRByByte128 => "vsrlb",
|
2453
|
+
VecBinaryOp::AShRByByte128 => "vsrab",
|
2454
|
+
VecBinaryOp::LShLByBit128 => "vsl",
|
2455
|
+
VecBinaryOp::LShRByBit128 => "vsrl",
|
2456
|
+
VecBinaryOp::AShRByBit128 => "vsra",
|
2457
|
+
VecBinaryOp::Pack16x8 => "vpkh",
|
2458
|
+
VecBinaryOp::Pack32x4 => "vpkf",
|
2459
|
+
VecBinaryOp::Pack64x2 => "vpkg",
|
2460
|
+
VecBinaryOp::PackUSat16x8 => "vpklsh",
|
2461
|
+
VecBinaryOp::PackUSat32x4 => "vpklsf",
|
2462
|
+
VecBinaryOp::PackUSat64x2 => "vpklsg",
|
2463
|
+
VecBinaryOp::PackSSat16x8 => "vpksh",
|
2464
|
+
VecBinaryOp::PackSSat32x4 => "vpksf",
|
2465
|
+
VecBinaryOp::PackSSat64x2 => "vpksg",
|
2466
|
+
VecBinaryOp::MergeLow8x16 => "vmrlb",
|
2467
|
+
VecBinaryOp::MergeLow16x8 => "vmrlh",
|
2468
|
+
VecBinaryOp::MergeLow32x4 => "vmrlf",
|
2469
|
+
VecBinaryOp::MergeLow64x2 => "vmrlg",
|
2470
|
+
VecBinaryOp::MergeHigh8x16 => "vmrhb",
|
2471
|
+
VecBinaryOp::MergeHigh16x8 => "vmrhh",
|
2472
|
+
VecBinaryOp::MergeHigh32x4 => "vmrhf",
|
2473
|
+
VecBinaryOp::MergeHigh64x2 => "vmrhg",
|
2474
|
+
};
|
2475
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2476
|
+
let rn = pretty_print_reg(rn);
|
2477
|
+
let rm = pretty_print_reg(rm);
|
2478
|
+
format!("{} {}, {}, {}", op, rd, rn, rm)
|
2479
|
+
}
|
2480
|
+
&Inst::VecRR { op, rd, rn } => {
|
2481
|
+
let op = match op {
|
2482
|
+
VecUnaryOp::Abs8x16 => "vlpb",
|
2483
|
+
VecUnaryOp::Abs16x8 => "vlph",
|
2484
|
+
VecUnaryOp::Abs32x4 => "vlpf",
|
2485
|
+
VecUnaryOp::Abs64x2 => "vlpg",
|
2486
|
+
VecUnaryOp::Neg8x16 => "vlcb",
|
2487
|
+
VecUnaryOp::Neg16x8 => "vlch",
|
2488
|
+
VecUnaryOp::Neg32x4 => "vlcf",
|
2489
|
+
VecUnaryOp::Neg64x2 => "vlcg",
|
2490
|
+
VecUnaryOp::Popcnt8x16 => "vpopctb",
|
2491
|
+
VecUnaryOp::Popcnt16x8 => "vpopcth",
|
2492
|
+
VecUnaryOp::Popcnt32x4 => "vpopctf",
|
2493
|
+
VecUnaryOp::Popcnt64x2 => "vpopctg",
|
2494
|
+
VecUnaryOp::Clz8x16 => "vclzb",
|
2495
|
+
VecUnaryOp::Clz16x8 => "vclzh",
|
2496
|
+
VecUnaryOp::Clz32x4 => "vclzf",
|
2497
|
+
VecUnaryOp::Clz64x2 => "vclzg",
|
2498
|
+
VecUnaryOp::Ctz8x16 => "vctzb",
|
2499
|
+
VecUnaryOp::Ctz16x8 => "vctzh",
|
2500
|
+
VecUnaryOp::Ctz32x4 => "vctzf",
|
2501
|
+
VecUnaryOp::Ctz64x2 => "vctzg",
|
2502
|
+
VecUnaryOp::UnpackULow8x16 => "vupllb",
|
2503
|
+
VecUnaryOp::UnpackULow16x8 => "vupllh",
|
2504
|
+
VecUnaryOp::UnpackULow32x4 => "vupllf",
|
2505
|
+
VecUnaryOp::UnpackUHigh8x16 => "vuplhb",
|
2506
|
+
VecUnaryOp::UnpackUHigh16x8 => "vuplhh",
|
2507
|
+
VecUnaryOp::UnpackUHigh32x4 => "vuplhf",
|
2508
|
+
VecUnaryOp::UnpackSLow8x16 => "vuplb",
|
2509
|
+
VecUnaryOp::UnpackSLow16x8 => "vuplh",
|
2510
|
+
VecUnaryOp::UnpackSLow32x4 => "vuplf",
|
2511
|
+
VecUnaryOp::UnpackSHigh8x16 => "vuphb",
|
2512
|
+
VecUnaryOp::UnpackSHigh16x8 => "vuphh",
|
2513
|
+
VecUnaryOp::UnpackSHigh32x4 => "vuphf",
|
2514
|
+
};
|
2515
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2516
|
+
let rn = pretty_print_reg(rn);
|
2517
|
+
format!("{} {}, {}", op, rd, rn)
|
2518
|
+
}
|
2519
|
+
&Inst::VecShiftRR {
|
2520
|
+
shift_op,
|
2521
|
+
rd,
|
2522
|
+
rn,
|
2523
|
+
shift_imm,
|
2524
|
+
shift_reg,
|
2525
|
+
} => {
|
2526
|
+
let op = match shift_op {
|
2527
|
+
VecShiftOp::RotL8x16 => "verllb",
|
2528
|
+
VecShiftOp::RotL16x8 => "verllh",
|
2529
|
+
VecShiftOp::RotL32x4 => "verllf",
|
2530
|
+
VecShiftOp::RotL64x2 => "verllg",
|
2531
|
+
VecShiftOp::LShL8x16 => "veslb",
|
2532
|
+
VecShiftOp::LShL16x8 => "veslh",
|
2533
|
+
VecShiftOp::LShL32x4 => "veslf",
|
2534
|
+
VecShiftOp::LShL64x2 => "veslg",
|
2535
|
+
VecShiftOp::LShR8x16 => "vesrlb",
|
2536
|
+
VecShiftOp::LShR16x8 => "vesrlh",
|
2537
|
+
VecShiftOp::LShR32x4 => "vesrlf",
|
2538
|
+
VecShiftOp::LShR64x2 => "vesrlg",
|
2539
|
+
VecShiftOp::AShR8x16 => "vesrab",
|
2540
|
+
VecShiftOp::AShR16x8 => "vesrah",
|
2541
|
+
VecShiftOp::AShR32x4 => "vesraf",
|
2542
|
+
VecShiftOp::AShR64x2 => "vesrag",
|
2543
|
+
};
|
2544
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2545
|
+
let rn = pretty_print_reg(rn);
|
2546
|
+
let shift_reg = if shift_reg != zero_reg() {
|
2547
|
+
format!("({})", pretty_print_reg(shift_reg))
|
2548
|
+
} else {
|
2549
|
+
"".to_string()
|
2550
|
+
};
|
2551
|
+
format!("{} {}, {}, {}{}", op, rd, rn, shift_imm, shift_reg)
|
2552
|
+
}
|
2553
|
+
&Inst::VecSelect { rd, rn, rm, ra } => {
|
2554
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2555
|
+
let rn = pretty_print_reg(rn);
|
2556
|
+
let rm = pretty_print_reg(rm);
|
2557
|
+
let ra = pretty_print_reg(ra);
|
2558
|
+
format!("vsel {}, {}, {}, {}", rd, rn, rm, ra)
|
2559
|
+
}
|
2560
|
+
&Inst::VecPermute { rd, rn, rm, ra } => {
|
2561
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2562
|
+
let rn = pretty_print_reg(rn);
|
2563
|
+
let rm = pretty_print_reg(rm);
|
2564
|
+
let ra = pretty_print_reg(ra);
|
2565
|
+
format!("vperm {}, {}, {}, {}", rd, rn, rm, ra)
|
2566
|
+
}
|
2567
|
+
&Inst::VecPermuteDWImm {
|
2568
|
+
rd,
|
2569
|
+
rn,
|
2570
|
+
rm,
|
2571
|
+
idx1,
|
2572
|
+
idx2,
|
2573
|
+
} => {
|
2574
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2575
|
+
let rn = pretty_print_reg(rn);
|
2576
|
+
let rm = pretty_print_reg(rm);
|
2577
|
+
let m4 = (idx1 & 1) * 4 + (idx2 & 1);
|
2578
|
+
format!("vpdi {}, {}, {}, {}", rd, rn, rm, m4)
|
2579
|
+
}
|
2580
|
+
&Inst::VecIntCmp { op, rd, rn, rm } | &Inst::VecIntCmpS { op, rd, rn, rm } => {
|
2581
|
+
let op = match op {
|
2582
|
+
VecIntCmpOp::CmpEq8x16 => "vceqb",
|
2583
|
+
VecIntCmpOp::CmpEq16x8 => "vceqh",
|
2584
|
+
VecIntCmpOp::CmpEq32x4 => "vceqf",
|
2585
|
+
VecIntCmpOp::CmpEq64x2 => "vceqg",
|
2586
|
+
VecIntCmpOp::SCmpHi8x16 => "vchb",
|
2587
|
+
VecIntCmpOp::SCmpHi16x8 => "vchh",
|
2588
|
+
VecIntCmpOp::SCmpHi32x4 => "vchf",
|
2589
|
+
VecIntCmpOp::SCmpHi64x2 => "vchg",
|
2590
|
+
VecIntCmpOp::UCmpHi8x16 => "vchlb",
|
2591
|
+
VecIntCmpOp::UCmpHi16x8 => "vchlh",
|
2592
|
+
VecIntCmpOp::UCmpHi32x4 => "vchlf",
|
2593
|
+
VecIntCmpOp::UCmpHi64x2 => "vchlg",
|
2594
|
+
};
|
2595
|
+
let s = match self {
|
2596
|
+
&Inst::VecIntCmp { .. } => "",
|
2597
|
+
&Inst::VecIntCmpS { .. } => "s",
|
2598
|
+
_ => unreachable!(),
|
2599
|
+
};
|
2600
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2601
|
+
let rn = pretty_print_reg(rn);
|
2602
|
+
let rm = pretty_print_reg(rm);
|
2603
|
+
format!("{}{} {}, {}, {}", op, s, rd, rn, rm)
|
2604
|
+
}
|
2605
|
+
&Inst::VecFloatCmp { op, rd, rn, rm } | &Inst::VecFloatCmpS { op, rd, rn, rm } => {
|
2606
|
+
let op = match op {
|
2607
|
+
VecFloatCmpOp::CmpEq32x4 => "vfcesb",
|
2608
|
+
VecFloatCmpOp::CmpEq64x2 => "vfcedb",
|
2609
|
+
VecFloatCmpOp::CmpHi32x4 => "vfchsb",
|
2610
|
+
VecFloatCmpOp::CmpHi64x2 => "vfchdb",
|
2611
|
+
VecFloatCmpOp::CmpHiEq32x4 => "vfchesb",
|
2612
|
+
VecFloatCmpOp::CmpHiEq64x2 => "vfchedb",
|
2613
|
+
};
|
2614
|
+
let s = match self {
|
2615
|
+
&Inst::VecFloatCmp { .. } => "",
|
2616
|
+
&Inst::VecFloatCmpS { .. } => "s",
|
2617
|
+
_ => unreachable!(),
|
2618
|
+
};
|
2619
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2620
|
+
let rn = pretty_print_reg(rn);
|
2621
|
+
let rm = pretty_print_reg(rm);
|
2622
|
+
format!("{}{} {}, {}, {}", op, s, rd, rn, rm)
|
2623
|
+
}
|
2624
|
+
&Inst::VecInt128SCmpHi { tmp, rn, rm } | &Inst::VecInt128UCmpHi { tmp, rn, rm } => {
|
2625
|
+
let op = match self {
|
2626
|
+
&Inst::VecInt128SCmpHi { .. } => "vecg",
|
2627
|
+
&Inst::VecInt128UCmpHi { .. } => "veclg",
|
2628
|
+
_ => unreachable!(),
|
2629
|
+
};
|
2630
|
+
let tmp = pretty_print_reg(tmp.to_reg());
|
2631
|
+
let rn = pretty_print_reg(rn);
|
2632
|
+
let rm = pretty_print_reg(rm);
|
2633
|
+
format!(
|
2634
|
+
"{} {}, {} ; jne 10 ; vchlgs {}, {}, {}",
|
2635
|
+
op, rm, rn, tmp, rn, rm
|
2636
|
+
)
|
2637
|
+
}
|
2638
|
+
&Inst::VecLoad { rd, ref mem }
|
2639
|
+
| &Inst::VecLoadRev { rd, ref mem }
|
2640
|
+
| &Inst::VecLoadByte16Rev { rd, ref mem }
|
2641
|
+
| &Inst::VecLoadByte32Rev { rd, ref mem }
|
2642
|
+
| &Inst::VecLoadByte64Rev { rd, ref mem }
|
2643
|
+
| &Inst::VecLoadElt16Rev { rd, ref mem }
|
2644
|
+
| &Inst::VecLoadElt32Rev { rd, ref mem }
|
2645
|
+
| &Inst::VecLoadElt64Rev { rd, ref mem } => {
|
2646
|
+
let opcode = match self {
|
2647
|
+
&Inst::VecLoad { .. } => "vl",
|
2648
|
+
&Inst::VecLoadRev { .. } => "vlbrq",
|
2649
|
+
&Inst::VecLoadByte16Rev { .. } => "vlbrh",
|
2650
|
+
&Inst::VecLoadByte32Rev { .. } => "vlbrf",
|
2651
|
+
&Inst::VecLoadByte64Rev { .. } => "vlbrg",
|
2652
|
+
&Inst::VecLoadElt16Rev { .. } => "vlerh",
|
2653
|
+
&Inst::VecLoadElt32Rev { .. } => "vlerf",
|
2654
|
+
&Inst::VecLoadElt64Rev { .. } => "vlerg",
|
2655
|
+
_ => unreachable!(),
|
2656
|
+
};
|
2657
|
+
|
2658
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2659
|
+
let mem = mem.clone();
|
2660
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
2661
|
+
&mem,
|
2662
|
+
state,
|
2663
|
+
MemInstType {
|
2664
|
+
have_d12: true,
|
2665
|
+
have_d20: false,
|
2666
|
+
have_pcrel: false,
|
2667
|
+
have_unaligned_pcrel: false,
|
2668
|
+
have_index: true,
|
2669
|
+
},
|
2670
|
+
);
|
2671
|
+
let mem = mem.pretty_print_default();
|
2672
|
+
format!("{}{} {}, {}", mem_str, opcode, rd, mem)
|
2673
|
+
}
|
2674
|
+
&Inst::VecStore { rd, ref mem }
|
2675
|
+
| &Inst::VecStoreRev { rd, ref mem }
|
2676
|
+
| &Inst::VecStoreByte16Rev { rd, ref mem }
|
2677
|
+
| &Inst::VecStoreByte32Rev { rd, ref mem }
|
2678
|
+
| &Inst::VecStoreByte64Rev { rd, ref mem }
|
2679
|
+
| &Inst::VecStoreElt16Rev { rd, ref mem }
|
2680
|
+
| &Inst::VecStoreElt32Rev { rd, ref mem }
|
2681
|
+
| &Inst::VecStoreElt64Rev { rd, ref mem } => {
|
2682
|
+
let opcode = match self {
|
2683
|
+
&Inst::VecStore { .. } => "vst",
|
2684
|
+
&Inst::VecStoreRev { .. } => "vstbrq",
|
2685
|
+
&Inst::VecStoreByte16Rev { .. } => "vstbrh",
|
2686
|
+
&Inst::VecStoreByte32Rev { .. } => "vstbrf",
|
2687
|
+
&Inst::VecStoreByte64Rev { .. } => "vstbrg",
|
2688
|
+
&Inst::VecStoreElt16Rev { .. } => "vsterh",
|
2689
|
+
&Inst::VecStoreElt32Rev { .. } => "vsterf",
|
2690
|
+
&Inst::VecStoreElt64Rev { .. } => "vsterg",
|
2691
|
+
_ => unreachable!(),
|
2692
|
+
};
|
2693
|
+
|
2694
|
+
let rd = pretty_print_reg(rd);
|
2695
|
+
let mem = mem.clone();
|
2696
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
2697
|
+
&mem,
|
2698
|
+
state,
|
2699
|
+
MemInstType {
|
2700
|
+
have_d12: true,
|
2701
|
+
have_d20: false,
|
2702
|
+
have_pcrel: false,
|
2703
|
+
have_unaligned_pcrel: false,
|
2704
|
+
have_index: true,
|
2705
|
+
},
|
2706
|
+
);
|
2707
|
+
let mem = mem.pretty_print_default();
|
2708
|
+
format!("{}{} {}, {}", mem_str, opcode, rd, mem)
|
2709
|
+
}
|
2710
|
+
&Inst::VecLoadReplicate { size, rd, ref mem }
|
2711
|
+
| &Inst::VecLoadReplicateRev { size, rd, ref mem } => {
|
2712
|
+
let opcode = match (self, size) {
|
2713
|
+
(&Inst::VecLoadReplicate { .. }, 8) => "vlrepb",
|
2714
|
+
(&Inst::VecLoadReplicate { .. }, 16) => "vlreph",
|
2715
|
+
(&Inst::VecLoadReplicate { .. }, 32) => "vlrepf",
|
2716
|
+
(&Inst::VecLoadReplicate { .. }, 64) => "vlrepg",
|
2717
|
+
(&Inst::VecLoadReplicateRev { .. }, 16) => "vlbrreph",
|
2718
|
+
(&Inst::VecLoadReplicateRev { .. }, 32) => "vlbrrepf",
|
2719
|
+
(&Inst::VecLoadReplicateRev { .. }, 64) => "vlbrrepg",
|
2720
|
+
_ => unreachable!(),
|
2721
|
+
};
|
2722
|
+
|
2723
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2724
|
+
let mem = mem.clone();
|
2725
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
2726
|
+
&mem,
|
2727
|
+
state,
|
2728
|
+
MemInstType {
|
2729
|
+
have_d12: true,
|
2730
|
+
have_d20: false,
|
2731
|
+
have_pcrel: false,
|
2732
|
+
have_unaligned_pcrel: false,
|
2733
|
+
have_index: true,
|
2734
|
+
},
|
2735
|
+
);
|
2736
|
+
let mem = mem.pretty_print_default();
|
2737
|
+
format!("{}{} {}, {}", mem_str, opcode, rd, mem)
|
2738
|
+
}
|
2739
|
+
&Inst::VecMov { rd, rn } => {
|
2740
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2741
|
+
let rn = pretty_print_reg(rn);
|
2742
|
+
format!("vlr {}, {}", rd, rn)
|
2743
|
+
}
|
2744
|
+
&Inst::VecCMov { rd, cond, ri, rm } => {
|
2745
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
2746
|
+
let rm = pretty_print_reg(rm);
|
2747
|
+
let cond = cond.invert().pretty_print_default();
|
2748
|
+
format!("j{} 10 ; vlr {}, {}", cond, rd, rm)
|
2749
|
+
}
|
2750
|
+
&Inst::MovToVec128 { rd, rn, rm } => {
|
2751
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2752
|
+
let rn = pretty_print_reg(rn);
|
2753
|
+
let rm = pretty_print_reg(rm);
|
2754
|
+
format!("vlvgp {}, {}, {}", rd, rn, rm)
|
2755
|
+
}
|
2756
|
+
&Inst::VecLoadConst { rd, const_data } => {
|
2757
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2758
|
+
let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
|
2759
|
+
format!(
|
2760
|
+
"bras {}, 20 ; data.u128 0x{:032x} ; vl {}, 0({})",
|
2761
|
+
tmp, const_data, rd, tmp
|
2762
|
+
)
|
2763
|
+
}
|
2764
|
+
&Inst::VecLoadConstReplicate {
|
2765
|
+
size,
|
2766
|
+
rd,
|
2767
|
+
const_data,
|
2768
|
+
} => {
|
2769
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2770
|
+
let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
|
2771
|
+
let (opcode, data) = match size {
|
2772
|
+
32 => ("vlrepf", format!("0x{:08x}", const_data as u32)),
|
2773
|
+
64 => ("vlrepg", format!("0x{:016x}", const_data)),
|
2774
|
+
_ => unreachable!(),
|
2775
|
+
};
|
2776
|
+
format!(
|
2777
|
+
"bras {}, {} ; data.u{} {} ; {} {}, 0({})",
|
2778
|
+
tmp,
|
2779
|
+
4 + size / 8,
|
2780
|
+
size,
|
2781
|
+
data,
|
2782
|
+
opcode,
|
2783
|
+
rd,
|
2784
|
+
tmp
|
2785
|
+
)
|
2786
|
+
}
|
2787
|
+
&Inst::VecImmByteMask { rd, mask } => {
|
2788
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2789
|
+
format!("vgbm {}, {}", rd, mask)
|
2790
|
+
}
|
2791
|
+
&Inst::VecImmBitMask {
|
2792
|
+
size,
|
2793
|
+
rd,
|
2794
|
+
start_bit,
|
2795
|
+
end_bit,
|
2796
|
+
} => {
|
2797
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2798
|
+
let op = match size {
|
2799
|
+
8 => "vgmb",
|
2800
|
+
16 => "vgmh",
|
2801
|
+
32 => "vgmf",
|
2802
|
+
64 => "vgmg",
|
2803
|
+
_ => unreachable!(),
|
2804
|
+
};
|
2805
|
+
format!("{} {}, {}, {}", op, rd, start_bit, end_bit)
|
2806
|
+
}
|
2807
|
+
&Inst::VecImmReplicate { size, rd, imm } => {
|
2808
|
+
let rd = pretty_print_reg(rd.to_reg());
|
2809
|
+
let op = match size {
|
2810
|
+
8 => "vrepib",
|
2811
|
+
16 => "vrepih",
|
2812
|
+
32 => "vrepif",
|
2813
|
+
64 => "vrepig",
|
2814
|
+
_ => unreachable!(),
|
2815
|
+
};
|
2816
|
+
format!("{} {}, {}", op, rd, imm)
|
2817
|
+
}
|
2818
|
+
&Inst::VecLoadLane {
|
2819
|
+
size,
|
2820
|
+
rd,
|
2821
|
+
ref mem,
|
2822
|
+
lane_imm,
|
2823
|
+
..
|
2824
|
+
}
|
2825
|
+
| &Inst::VecLoadLaneRev {
|
2826
|
+
size,
|
2827
|
+
rd,
|
2828
|
+
ref mem,
|
2829
|
+
lane_imm,
|
2830
|
+
..
|
2831
|
+
} => {
|
2832
|
+
let opcode_vrx = match (self, size) {
|
2833
|
+
(&Inst::VecLoadLane { .. }, 8) => "vleb",
|
2834
|
+
(&Inst::VecLoadLane { .. }, 16) => "vleh",
|
2835
|
+
(&Inst::VecLoadLane { .. }, 32) => "vlef",
|
2836
|
+
(&Inst::VecLoadLane { .. }, 64) => "vleg",
|
2837
|
+
(&Inst::VecLoadLaneRev { .. }, 16) => "vlebrh",
|
2838
|
+
(&Inst::VecLoadLaneRev { .. }, 32) => "vlebrf",
|
2839
|
+
(&Inst::VecLoadLaneRev { .. }, 64) => "vlebrg",
|
2840
|
+
_ => unreachable!(),
|
2841
|
+
};
|
2842
|
+
|
2843
|
+
let (rd, _) = pretty_print_fpr(rd.to_reg());
|
2844
|
+
let mem = mem.clone();
|
2845
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
2846
|
+
&mem,
|
2847
|
+
state,
|
2848
|
+
MemInstType {
|
2849
|
+
have_d12: true,
|
2850
|
+
have_d20: false,
|
2851
|
+
have_pcrel: false,
|
2852
|
+
have_unaligned_pcrel: false,
|
2853
|
+
have_index: true,
|
2854
|
+
},
|
2855
|
+
);
|
2856
|
+
let mem = mem.pretty_print_default();
|
2857
|
+
format!("{}{} {}, {}, {}", mem_str, opcode_vrx, rd, mem, lane_imm)
|
2858
|
+
}
|
2859
|
+
&Inst::VecLoadLaneUndef {
|
2860
|
+
size,
|
2861
|
+
rd,
|
2862
|
+
ref mem,
|
2863
|
+
lane_imm,
|
2864
|
+
}
|
2865
|
+
| &Inst::VecLoadLaneRevUndef {
|
2866
|
+
size,
|
2867
|
+
rd,
|
2868
|
+
ref mem,
|
2869
|
+
lane_imm,
|
2870
|
+
} => {
|
2871
|
+
let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
|
2872
|
+
(&Inst::VecLoadLaneUndef { .. }, 8) => ("vleb", None, None),
|
2873
|
+
(&Inst::VecLoadLaneUndef { .. }, 16) => ("vleh", None, None),
|
2874
|
+
(&Inst::VecLoadLaneUndef { .. }, 32) => ("vlef", Some("le"), Some("ley")),
|
2875
|
+
(&Inst::VecLoadLaneUndef { .. }, 64) => ("vleg", Some("ld"), Some("ldy")),
|
2876
|
+
(&Inst::VecLoadLaneRevUndef { .. }, 16) => ("vlebrh", None, None),
|
2877
|
+
(&Inst::VecLoadLaneRevUndef { .. }, 32) => ("vlebrf", None, None),
|
2878
|
+
(&Inst::VecLoadLaneRevUndef { .. }, 64) => ("vlebrg", None, None),
|
2879
|
+
_ => unreachable!(),
|
2880
|
+
};
|
2881
|
+
|
2882
|
+
let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
|
2883
|
+
let mem = mem.clone();
|
2884
|
+
if lane_imm == 0 && rd_fpr.is_some() && opcode_rx.is_some() {
|
2885
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
2886
|
+
&mem,
|
2887
|
+
state,
|
2888
|
+
MemInstType {
|
2889
|
+
have_d12: true,
|
2890
|
+
have_d20: true,
|
2891
|
+
have_pcrel: false,
|
2892
|
+
have_unaligned_pcrel: false,
|
2893
|
+
have_index: true,
|
2894
|
+
},
|
2895
|
+
);
|
2896
|
+
let op = match &mem {
|
2897
|
+
&MemArg::BXD12 { .. } => opcode_rx,
|
2898
|
+
&MemArg::BXD20 { .. } => opcode_rxy,
|
2899
|
+
_ => unreachable!(),
|
2900
|
+
};
|
2901
|
+
let mem = mem.pretty_print_default();
|
2902
|
+
format!("{}{} {}, {}", mem_str, op.unwrap(), rd_fpr.unwrap(), mem)
|
2903
|
+
} else {
|
2904
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
2905
|
+
&mem,
|
2906
|
+
state,
|
2907
|
+
MemInstType {
|
2908
|
+
have_d12: true,
|
2909
|
+
have_d20: false,
|
2910
|
+
have_pcrel: false,
|
2911
|
+
have_unaligned_pcrel: false,
|
2912
|
+
have_index: true,
|
2913
|
+
},
|
2914
|
+
);
|
2915
|
+
let mem = mem.pretty_print_default();
|
2916
|
+
format!("{}{} {}, {}, {}", mem_str, opcode_vrx, rd, mem, lane_imm)
|
2917
|
+
}
|
2918
|
+
}
|
2919
|
+
&Inst::VecStoreLane {
|
2920
|
+
size,
|
2921
|
+
rd,
|
2922
|
+
ref mem,
|
2923
|
+
lane_imm,
|
2924
|
+
}
|
2925
|
+
| &Inst::VecStoreLaneRev {
|
2926
|
+
size,
|
2927
|
+
rd,
|
2928
|
+
ref mem,
|
2929
|
+
lane_imm,
|
2930
|
+
} => {
|
2931
|
+
let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
|
2932
|
+
(&Inst::VecStoreLane { .. }, 8) => ("vsteb", None, None),
|
2933
|
+
(&Inst::VecStoreLane { .. }, 16) => ("vsteh", None, None),
|
2934
|
+
(&Inst::VecStoreLane { .. }, 32) => ("vstef", Some("ste"), Some("stey")),
|
2935
|
+
(&Inst::VecStoreLane { .. }, 64) => ("vsteg", Some("std"), Some("stdy")),
|
2936
|
+
(&Inst::VecStoreLaneRev { .. }, 16) => ("vstebrh", None, None),
|
2937
|
+
(&Inst::VecStoreLaneRev { .. }, 32) => ("vstebrf", None, None),
|
2938
|
+
(&Inst::VecStoreLaneRev { .. }, 64) => ("vstebrg", None, None),
|
2939
|
+
_ => unreachable!(),
|
2940
|
+
};
|
2941
|
+
|
2942
|
+
let (rd, rd_fpr) = pretty_print_fpr(rd);
|
2943
|
+
let mem = mem.clone();
|
2944
|
+
if lane_imm == 0 && rd_fpr.is_some() && opcode_rx.is_some() {
|
2945
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
2946
|
+
&mem,
|
2947
|
+
state,
|
2948
|
+
MemInstType {
|
2949
|
+
have_d12: true,
|
2950
|
+
have_d20: true,
|
2951
|
+
have_pcrel: false,
|
2952
|
+
have_unaligned_pcrel: false,
|
2953
|
+
have_index: true,
|
2954
|
+
},
|
2955
|
+
);
|
2956
|
+
let op = match &mem {
|
2957
|
+
&MemArg::BXD12 { .. } => opcode_rx,
|
2958
|
+
&MemArg::BXD20 { .. } => opcode_rxy,
|
2959
|
+
_ => unreachable!(),
|
2960
|
+
};
|
2961
|
+
let mem = mem.pretty_print_default();
|
2962
|
+
format!("{}{} {}, {}", mem_str, op.unwrap(), rd_fpr.unwrap(), mem)
|
2963
|
+
} else {
|
2964
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
2965
|
+
&mem,
|
2966
|
+
state,
|
2967
|
+
MemInstType {
|
2968
|
+
have_d12: true,
|
2969
|
+
have_d20: false,
|
2970
|
+
have_pcrel: false,
|
2971
|
+
have_unaligned_pcrel: false,
|
2972
|
+
have_index: true,
|
2973
|
+
},
|
2974
|
+
);
|
2975
|
+
let mem = mem.pretty_print_default();
|
2976
|
+
format!("{}{} {}, {}, {}", mem_str, opcode_vrx, rd, mem, lane_imm,)
|
2977
|
+
}
|
2978
|
+
}
|
2979
|
+
&Inst::VecInsertLane {
|
2980
|
+
size,
|
2981
|
+
rd,
|
2982
|
+
ri,
|
2983
|
+
rn,
|
2984
|
+
lane_imm,
|
2985
|
+
lane_reg,
|
2986
|
+
} => {
|
2987
|
+
let op = match size {
|
2988
|
+
8 => "vlvgb",
|
2989
|
+
16 => "vlvgh",
|
2990
|
+
32 => "vlvgf",
|
2991
|
+
64 => "vlvgg",
|
2992
|
+
_ => unreachable!(),
|
2993
|
+
};
|
2994
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
2995
|
+
let rn = pretty_print_reg(rn);
|
2996
|
+
let lane_reg = if lane_reg != zero_reg() {
|
2997
|
+
format!("({})", pretty_print_reg(lane_reg))
|
2998
|
+
} else {
|
2999
|
+
"".to_string()
|
3000
|
+
};
|
3001
|
+
format!("{} {}, {}, {}{}", op, rd, rn, lane_imm, lane_reg)
|
3002
|
+
}
|
3003
|
+
&Inst::VecInsertLaneUndef {
|
3004
|
+
size,
|
3005
|
+
rd,
|
3006
|
+
rn,
|
3007
|
+
lane_imm,
|
3008
|
+
lane_reg,
|
3009
|
+
} => {
|
3010
|
+
let (opcode_vrs, opcode_rre) = match size {
|
3011
|
+
8 => ("vlvgb", None),
|
3012
|
+
16 => ("vlvgh", None),
|
3013
|
+
32 => ("vlvgf", None),
|
3014
|
+
64 => ("vlvgg", Some("ldgr")),
|
3015
|
+
_ => unreachable!(),
|
3016
|
+
};
|
3017
|
+
let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
|
3018
|
+
let rn = pretty_print_reg(rn);
|
3019
|
+
let lane_reg = if lane_reg != zero_reg() {
|
3020
|
+
format!("({})", pretty_print_reg(lane_reg))
|
3021
|
+
} else {
|
3022
|
+
"".to_string()
|
3023
|
+
};
|
3024
|
+
if opcode_rre.is_some() && lane_imm == 0 && lane_reg.is_empty() && rd_fpr.is_some()
|
3025
|
+
{
|
3026
|
+
format!("{} {}, {}", opcode_rre.unwrap(), rd_fpr.unwrap(), rn)
|
3027
|
+
} else {
|
3028
|
+
format!("{} {}, {}, {}{}", opcode_vrs, rd, rn, lane_imm, lane_reg)
|
3029
|
+
}
|
3030
|
+
}
|
3031
|
+
&Inst::VecExtractLane {
|
3032
|
+
size,
|
3033
|
+
rd,
|
3034
|
+
rn,
|
3035
|
+
lane_imm,
|
3036
|
+
lane_reg,
|
3037
|
+
} => {
|
3038
|
+
let (opcode_vrs, opcode_rre) = match size {
|
3039
|
+
8 => ("vlgvb", None),
|
3040
|
+
16 => ("vlgvh", None),
|
3041
|
+
32 => ("vlgvf", None),
|
3042
|
+
64 => ("vlgvg", Some("lgdr")),
|
3043
|
+
_ => unreachable!(),
|
3044
|
+
};
|
3045
|
+
let rd = pretty_print_reg(rd.to_reg());
|
3046
|
+
let (rn, rn_fpr) = pretty_print_fpr(rn);
|
3047
|
+
let lane_reg = if lane_reg != zero_reg() {
|
3048
|
+
format!("({})", pretty_print_reg(lane_reg))
|
3049
|
+
} else {
|
3050
|
+
"".to_string()
|
3051
|
+
};
|
3052
|
+
if opcode_rre.is_some() && lane_imm == 0 && lane_reg.is_empty() && rn_fpr.is_some()
|
3053
|
+
{
|
3054
|
+
format!("{} {}, {}", opcode_rre.unwrap(), rd, rn_fpr.unwrap())
|
3055
|
+
} else {
|
3056
|
+
format!("{} {}, {}, {}{}", opcode_vrs, rd, rn, lane_imm, lane_reg)
|
3057
|
+
}
|
3058
|
+
}
|
3059
|
+
&Inst::VecInsertLaneImm {
|
3060
|
+
size,
|
3061
|
+
rd,
|
3062
|
+
ri,
|
3063
|
+
imm,
|
3064
|
+
lane_imm,
|
3065
|
+
} => {
|
3066
|
+
let op = match size {
|
3067
|
+
8 => "vleib",
|
3068
|
+
16 => "vleih",
|
3069
|
+
32 => "vleif",
|
3070
|
+
64 => "vleig",
|
3071
|
+
_ => unreachable!(),
|
3072
|
+
};
|
3073
|
+
let rd = pretty_print_reg_mod(rd, ri);
|
3074
|
+
format!("{} {}, {}, {}", op, rd, imm, lane_imm)
|
3075
|
+
}
|
3076
|
+
&Inst::VecReplicateLane {
|
3077
|
+
size,
|
3078
|
+
rd,
|
3079
|
+
rn,
|
3080
|
+
lane_imm,
|
3081
|
+
} => {
|
3082
|
+
let op = match size {
|
3083
|
+
8 => "vrepb",
|
3084
|
+
16 => "vreph",
|
3085
|
+
32 => "vrepf",
|
3086
|
+
64 => "vrepg",
|
3087
|
+
_ => unreachable!(),
|
3088
|
+
};
|
3089
|
+
let rd = pretty_print_reg(rd.to_reg());
|
3090
|
+
let rn = pretty_print_reg(rn);
|
3091
|
+
format!("{} {}, {}, {}", op, rd, rn, lane_imm)
|
3092
|
+
}
|
3093
|
+
&Inst::Extend {
|
3094
|
+
rd,
|
3095
|
+
rn,
|
3096
|
+
signed,
|
3097
|
+
from_bits,
|
3098
|
+
to_bits,
|
3099
|
+
} => {
|
3100
|
+
let rd = pretty_print_reg(rd.to_reg());
|
3101
|
+
let rn = pretty_print_reg(rn);
|
3102
|
+
let op = match (signed, from_bits, to_bits) {
|
3103
|
+
(_, 1, 32) => "llcr",
|
3104
|
+
(_, 1, 64) => "llgcr",
|
3105
|
+
(false, 8, 32) => "llcr",
|
3106
|
+
(false, 8, 64) => "llgcr",
|
3107
|
+
(true, 8, 32) => "lbr",
|
3108
|
+
(true, 8, 64) => "lgbr",
|
3109
|
+
(false, 16, 32) => "llhr",
|
3110
|
+
(false, 16, 64) => "llghr",
|
3111
|
+
(true, 16, 32) => "lhr",
|
3112
|
+
(true, 16, 64) => "lghr",
|
3113
|
+
(false, 32, 64) => "llgfr",
|
3114
|
+
(true, 32, 64) => "lgfr",
|
3115
|
+
_ => panic!("Unsupported Extend case: {:?}", self),
|
3116
|
+
};
|
3117
|
+
format!("{} {}, {}", op, rd, rn)
|
3118
|
+
}
|
3119
|
+
&Inst::Call { link, ref info, .. } => {
|
3120
|
+
let link = link.to_reg();
|
3121
|
+
let tls_symbol = match &info.tls_symbol {
|
3122
|
+
None => "".to_string(),
|
3123
|
+
Some(SymbolReloc::TlsGd { name }) => {
|
3124
|
+
format!(":tls_gdcall:{}", name.display(None))
|
3125
|
+
}
|
3126
|
+
_ => unreachable!(),
|
3127
|
+
};
|
3128
|
+
debug_assert_eq!(link, gpr(14));
|
3129
|
+
format!(
|
3130
|
+
"brasl {}, {}{}",
|
3131
|
+
show_reg(link),
|
3132
|
+
info.dest.display(None),
|
3133
|
+
tls_symbol
|
3134
|
+
)
|
3135
|
+
}
|
3136
|
+
&Inst::CallInd { link, ref info, .. } => {
|
3137
|
+
let link = link.to_reg();
|
3138
|
+
let rn = pretty_print_reg(info.rn);
|
3139
|
+
debug_assert_eq!(link, gpr(14));
|
3140
|
+
format!("basr {}, {}", show_reg(link), rn)
|
3141
|
+
}
|
3142
|
+
&Inst::Args { ref args } => {
|
3143
|
+
let mut s = "args".to_string();
|
3144
|
+
for arg in args {
|
3145
|
+
let preg = pretty_print_reg(arg.preg);
|
3146
|
+
let def = pretty_print_reg(arg.vreg.to_reg());
|
3147
|
+
write!(&mut s, " {}={}", def, preg).unwrap();
|
3148
|
+
}
|
3149
|
+
s
|
3150
|
+
}
|
3151
|
+
&Inst::Rets { ref rets } => {
|
3152
|
+
let mut s = "rets".to_string();
|
3153
|
+
for ret in rets {
|
3154
|
+
let preg = pretty_print_reg(ret.preg);
|
3155
|
+
let vreg = pretty_print_reg(ret.vreg);
|
3156
|
+
write!(&mut s, " {}={}", vreg, preg).unwrap();
|
3157
|
+
}
|
3158
|
+
s
|
3159
|
+
}
|
3160
|
+
&Inst::Ret { link } => {
|
3161
|
+
debug_assert_eq!(link, gpr(14));
|
3162
|
+
let link = show_reg(link);
|
3163
|
+
format!("br {link}")
|
3164
|
+
}
|
3165
|
+
&Inst::Jump { dest } => {
|
3166
|
+
let dest = dest.to_string();
|
3167
|
+
format!("jg {}", dest)
|
3168
|
+
}
|
3169
|
+
&Inst::IndirectBr { rn, .. } => {
|
3170
|
+
let rn = pretty_print_reg(rn);
|
3171
|
+
format!("br {}", rn)
|
3172
|
+
}
|
3173
|
+
&Inst::CondBr {
|
3174
|
+
taken,
|
3175
|
+
not_taken,
|
3176
|
+
cond,
|
3177
|
+
} => {
|
3178
|
+
let taken = taken.to_string();
|
3179
|
+
let not_taken = not_taken.to_string();
|
3180
|
+
let cond = cond.pretty_print_default();
|
3181
|
+
format!("jg{} {} ; jg {}", cond, taken, not_taken)
|
3182
|
+
}
|
3183
|
+
&Inst::OneWayCondBr { target, cond } => {
|
3184
|
+
let target = target.to_string();
|
3185
|
+
let cond = cond.pretty_print_default();
|
3186
|
+
format!("jg{} {}", cond, target)
|
3187
|
+
}
|
3188
|
+
&Inst::Debugtrap => ".word 0x0001 # debugtrap".to_string(),
|
3189
|
+
&Inst::Trap { trap_code } => {
|
3190
|
+
format!(".word 0x0000 # trap={}", trap_code)
|
3191
|
+
}
|
3192
|
+
&Inst::TrapIf { cond, trap_code } => {
|
3193
|
+
let cond = cond.pretty_print_default();
|
3194
|
+
format!("jg{} .+2 # trap={}", cond, trap_code)
|
3195
|
+
}
|
3196
|
+
&Inst::JTSequence { ridx, ref targets } => {
|
3197
|
+
let ridx = pretty_print_reg(ridx);
|
3198
|
+
let rtmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
|
3199
|
+
// The first entry is the default target, which is not emitted
|
3200
|
+
// into the jump table, so we skip it here. It is only in the
|
3201
|
+
// list so MachTerminator will see the potential target.
|
3202
|
+
let jt_entries: String = targets
|
3203
|
+
.iter()
|
3204
|
+
.skip(1)
|
3205
|
+
.map(|label| format!(" {}", label.to_string()))
|
3206
|
+
.collect();
|
3207
|
+
format!(
|
3208
|
+
concat!(
|
3209
|
+
"larl {}, 14 ; ",
|
3210
|
+
"agf {}, 0({}, {}) ; ",
|
3211
|
+
"br {} ; ",
|
3212
|
+
"jt_entries{}"
|
3213
|
+
),
|
3214
|
+
rtmp, rtmp, rtmp, ridx, rtmp, jt_entries,
|
3215
|
+
)
|
3216
|
+
}
|
3217
|
+
&Inst::LoadSymbolReloc {
|
3218
|
+
rd,
|
3219
|
+
ref symbol_reloc,
|
3220
|
+
} => {
|
3221
|
+
let rd = pretty_print_reg(rd.to_reg());
|
3222
|
+
let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
|
3223
|
+
let symbol = match &**symbol_reloc {
|
3224
|
+
SymbolReloc::Absolute { name, offset } => {
|
3225
|
+
format!("{} + {}", name.display(None), offset)
|
3226
|
+
}
|
3227
|
+
SymbolReloc::TlsGd { name } => format!("{}@tlsgd", name.display(None)),
|
3228
|
+
};
|
3229
|
+
format!("bras {}, 12 ; data {} ; lg {}, 0({})", tmp, symbol, rd, tmp)
|
3230
|
+
}
|
3231
|
+
&Inst::LoadAddr { rd, ref mem } => {
|
3232
|
+
let rd = pretty_print_reg(rd.to_reg());
|
3233
|
+
let mem = mem.clone();
|
3234
|
+
let (mem_str, mem) = mem_finalize_for_show(
|
3235
|
+
&mem,
|
3236
|
+
state,
|
3237
|
+
MemInstType {
|
3238
|
+
have_d12: true,
|
3239
|
+
have_d20: true,
|
3240
|
+
have_pcrel: true,
|
3241
|
+
have_unaligned_pcrel: true,
|
3242
|
+
have_index: true,
|
3243
|
+
},
|
3244
|
+
);
|
3245
|
+
let op = match &mem {
|
3246
|
+
&MemArg::BXD12 { .. } => "la",
|
3247
|
+
&MemArg::BXD20 { .. } => "lay",
|
3248
|
+
&MemArg::Label { .. } | &MemArg::Symbol { .. } => "larl",
|
3249
|
+
_ => unreachable!(),
|
3250
|
+
};
|
3251
|
+
let mem = mem.pretty_print_default();
|
3252
|
+
|
3253
|
+
format!("{}{} {}, {}", mem_str, op, rd, mem)
|
3254
|
+
}
|
3255
|
+
&Inst::Loop { ref body, cond } => {
|
3256
|
+
let body = body
|
3257
|
+
.into_iter()
|
3258
|
+
.map(|inst| inst.print_with_state(state))
|
3259
|
+
.collect::<Vec<_>>()
|
3260
|
+
.join(" ; ");
|
3261
|
+
let cond = cond.pretty_print_default();
|
3262
|
+
format!("0: {} ; jg{} 0b ; 1:", body, cond)
|
3263
|
+
}
|
3264
|
+
&Inst::CondBreak { cond } => {
|
3265
|
+
let cond = cond.pretty_print_default();
|
3266
|
+
format!("jg{} 1f", cond)
|
3267
|
+
}
|
3268
|
+
&Inst::Unwind { ref inst } => {
|
3269
|
+
format!("unwind {:?}", inst)
|
3270
|
+
}
|
3271
|
+
&Inst::DummyUse { reg } => {
|
3272
|
+
let reg = pretty_print_reg(reg);
|
3273
|
+
format!("dummy_use {}", reg)
|
3274
|
+
}
|
3275
|
+
}
|
3276
|
+
}
|
3277
|
+
}
|
3278
|
+
|
3279
|
+
//=============================================================================
|
3280
|
+
// Label fixups and jump veneers.
|
3281
|
+
|
3282
|
+
/// Different forms of label references for different instruction formats.
|
3283
|
+
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
3284
|
+
pub enum LabelUse {
|
3285
|
+
#[allow(dead_code)]
|
3286
|
+
/// RI-format branch. 16-bit signed offset. PC-relative, offset is imm << 1.
|
3287
|
+
BranchRI,
|
3288
|
+
/// RIL-format branch. 32-bit signed offset. PC-relative, offset is imm << 1.
|
3289
|
+
BranchRIL,
|
3290
|
+
/// 32-bit PC relative constant offset (from address of constant itself),
|
3291
|
+
/// signed. Used in jump tables.
|
3292
|
+
PCRel32,
|
3293
|
+
/// 32-bit PC relative constant offset (from address of call instruction),
|
3294
|
+
/// signed. Offset is imm << 1. Used for call relocations.
|
3295
|
+
PCRel32Dbl,
|
3296
|
+
}
|
3297
|
+
|
3298
|
+
impl MachInstLabelUse for LabelUse {
|
3299
|
+
/// Alignment for veneer code.
|
3300
|
+
const ALIGN: CodeOffset = 2;
|
3301
|
+
|
3302
|
+
/// Maximum PC-relative range (positive), inclusive.
|
3303
|
+
fn max_pos_range(self) -> CodeOffset {
|
3304
|
+
match self {
|
3305
|
+
// 16-bit signed immediate, left-shifted by 1.
|
3306
|
+
LabelUse::BranchRI => ((1 << 15) - 1) << 1,
|
3307
|
+
// 32-bit signed immediate, left-shifted by 1.
|
3308
|
+
LabelUse::BranchRIL => 0xffff_fffe,
|
3309
|
+
// 32-bit signed immediate.
|
3310
|
+
LabelUse::PCRel32 => 0x7fff_ffff,
|
3311
|
+
// 32-bit signed immediate, left-shifted by 1, offset by 2.
|
3312
|
+
LabelUse::PCRel32Dbl => 0xffff_fffc,
|
3313
|
+
}
|
3314
|
+
}
|
3315
|
+
|
3316
|
+
/// Maximum PC-relative range (negative).
|
3317
|
+
fn max_neg_range(self) -> CodeOffset {
|
3318
|
+
match self {
|
3319
|
+
// 16-bit signed immediate, left-shifted by 1.
|
3320
|
+
LabelUse::BranchRI => (1 << 15) << 1,
|
3321
|
+
// 32-bit signed immediate, left-shifted by 1.
|
3322
|
+
// NOTE: This should be 4GB, but CodeOffset is only u32.
|
3323
|
+
LabelUse::BranchRIL => 0xffff_ffff,
|
3324
|
+
// 32-bit signed immediate.
|
3325
|
+
LabelUse::PCRel32 => 0x8000_0000,
|
3326
|
+
// 32-bit signed immediate, left-shifted by 1, offset by 2.
|
3327
|
+
// NOTE: This should be 4GB + 2, but CodeOffset is only u32.
|
3328
|
+
LabelUse::PCRel32Dbl => 0xffff_ffff,
|
3329
|
+
}
|
3330
|
+
}
|
3331
|
+
|
3332
|
+
/// Size of window into code needed to do the patch.
|
3333
|
+
fn patch_size(self) -> CodeOffset {
|
3334
|
+
match self {
|
3335
|
+
LabelUse::BranchRI => 4,
|
3336
|
+
LabelUse::BranchRIL => 6,
|
3337
|
+
LabelUse::PCRel32 => 4,
|
3338
|
+
LabelUse::PCRel32Dbl => 4,
|
3339
|
+
}
|
3340
|
+
}
|
3341
|
+
|
3342
|
+
/// Perform the patch.
|
3343
|
+
fn patch(self, buffer: &mut [u8], use_offset: CodeOffset, label_offset: CodeOffset) {
|
3344
|
+
let pc_rel = (label_offset as i64) - (use_offset as i64);
|
3345
|
+
debug_assert!(pc_rel <= self.max_pos_range() as i64);
|
3346
|
+
debug_assert!(pc_rel >= -(self.max_neg_range() as i64));
|
3347
|
+
debug_assert!(pc_rel & 1 == 0);
|
3348
|
+
let pc_rel_shifted = pc_rel >> 1;
|
3349
|
+
|
3350
|
+
match self {
|
3351
|
+
LabelUse::BranchRI => {
|
3352
|
+
buffer[2..4].clone_from_slice(&u16::to_be_bytes(pc_rel_shifted as u16));
|
3353
|
+
}
|
3354
|
+
LabelUse::BranchRIL => {
|
3355
|
+
buffer[2..6].clone_from_slice(&u32::to_be_bytes(pc_rel_shifted as u32));
|
3356
|
+
}
|
3357
|
+
LabelUse::PCRel32 => {
|
3358
|
+
let insn_word = u32::from_be_bytes([buffer[0], buffer[1], buffer[2], buffer[3]]);
|
3359
|
+
let insn_word = insn_word.wrapping_add(pc_rel as u32);
|
3360
|
+
buffer[0..4].clone_from_slice(&u32::to_be_bytes(insn_word));
|
3361
|
+
}
|
3362
|
+
LabelUse::PCRel32Dbl => {
|
3363
|
+
let insn_word = u32::from_be_bytes([buffer[0], buffer[1], buffer[2], buffer[3]]);
|
3364
|
+
let insn_word = insn_word.wrapping_add((pc_rel_shifted + 1) as u32);
|
3365
|
+
buffer[0..4].clone_from_slice(&u32::to_be_bytes(insn_word));
|
3366
|
+
}
|
3367
|
+
}
|
3368
|
+
}
|
3369
|
+
|
3370
|
+
/// Is a veneer supported for this label reference type?
|
3371
|
+
fn supports_veneer(self) -> bool {
|
3372
|
+
false
|
3373
|
+
}
|
3374
|
+
|
3375
|
+
/// How large is the veneer, if supported?
|
3376
|
+
fn veneer_size(self) -> CodeOffset {
|
3377
|
+
0
|
3378
|
+
}
|
3379
|
+
|
3380
|
+
fn worst_case_veneer_size() -> CodeOffset {
|
3381
|
+
0
|
3382
|
+
}
|
3383
|
+
|
3384
|
+
/// Generate a veneer into the buffer, given that this veneer is at `veneer_offset`, and return
|
3385
|
+
/// an offset and label-use for the veneer's use of the original label.
|
3386
|
+
fn generate_veneer(
|
3387
|
+
self,
|
3388
|
+
_buffer: &mut [u8],
|
3389
|
+
_veneer_offset: CodeOffset,
|
3390
|
+
) -> (CodeOffset, LabelUse) {
|
3391
|
+
unreachable!();
|
3392
|
+
}
|
3393
|
+
|
3394
|
+
fn from_reloc(reloc: Reloc, addend: Addend) -> Option<Self> {
|
3395
|
+
match (reloc, addend) {
|
3396
|
+
(Reloc::S390xPCRel32Dbl, 2) => Some(LabelUse::PCRel32Dbl),
|
3397
|
+
(Reloc::S390xPLTRel32Dbl, 2) => Some(LabelUse::PCRel32Dbl),
|
3398
|
+
_ => None,
|
3399
|
+
}
|
3400
|
+
}
|
3401
|
+
}
|