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
@@ -1,2838 +0,0 @@
|
|
1
|
-
//! This module defines x86_64-specific machine instruction types.
|
2
|
-
|
3
|
-
pub use emit_state::EmitState;
|
4
|
-
|
5
|
-
use crate::binemit::{Addend, CodeOffset, Reloc, StackMap};
|
6
|
-
use crate::ir::{types, ExternalName, LibCall, Opcode, TrapCode, Type};
|
7
|
-
use crate::isa::x64::abi::X64ABIMachineSpec;
|
8
|
-
use crate::isa::x64::inst::regs::{pretty_print_reg, show_ireg_sized};
|
9
|
-
use crate::isa::x64::settings as x64_settings;
|
10
|
-
use crate::isa::{CallConv, FunctionAlignment};
|
11
|
-
use crate::{machinst::*, trace};
|
12
|
-
use crate::{settings, CodegenError, CodegenResult};
|
13
|
-
use alloc::boxed::Box;
|
14
|
-
use regalloc2::{Allocation, PRegSet};
|
15
|
-
use smallvec::{smallvec, SmallVec};
|
16
|
-
use std::fmt::{self, Write};
|
17
|
-
use std::string::{String, ToString};
|
18
|
-
|
19
|
-
pub mod args;
|
20
|
-
mod emit;
|
21
|
-
mod emit_state;
|
22
|
-
#[cfg(test)]
|
23
|
-
mod emit_tests;
|
24
|
-
pub mod regs;
|
25
|
-
pub mod unwind;
|
26
|
-
|
27
|
-
use args::*;
|
28
|
-
|
29
|
-
//=============================================================================
|
30
|
-
// Instructions (top level): definition
|
31
|
-
|
32
|
-
// `Inst` is defined inside ISLE as `MInst`. We publicly re-export it here.
|
33
|
-
pub use super::lower::isle::generated_code::MInst as Inst;
|
34
|
-
|
35
|
-
/// Out-of-line data for calls, to keep the size of `Inst` down.
|
36
|
-
#[derive(Clone, Debug)]
|
37
|
-
pub struct CallInfo {
|
38
|
-
/// Register uses of this call.
|
39
|
-
pub uses: CallArgList,
|
40
|
-
/// Register defs of this call.
|
41
|
-
pub defs: CallRetList,
|
42
|
-
/// Registers clobbered by this call, as per its calling convention.
|
43
|
-
pub clobbers: PRegSet,
|
44
|
-
/// The number of bytes that the callee will pop from the stack for the
|
45
|
-
/// caller, if any. (Used for popping stack arguments with the `tail`
|
46
|
-
/// calling convention.)
|
47
|
-
pub callee_pop_size: u32,
|
48
|
-
/// The calling convention of the callee.
|
49
|
-
pub callee_conv: CallConv,
|
50
|
-
}
|
51
|
-
|
52
|
-
/// Out-of-line data for return-calls, to keep the size of `Inst` down.
|
53
|
-
#[derive(Clone, Debug)]
|
54
|
-
pub struct ReturnCallInfo {
|
55
|
-
/// The size of the argument area for this return-call, potentially smaller than that of the
|
56
|
-
/// caller, but never larger.
|
57
|
-
pub new_stack_arg_size: u32,
|
58
|
-
|
59
|
-
/// The in-register arguments and their constraints.
|
60
|
-
pub uses: CallArgList,
|
61
|
-
|
62
|
-
/// A temporary for use when moving the return address.
|
63
|
-
pub tmp: WritableGpr,
|
64
|
-
}
|
65
|
-
|
66
|
-
#[test]
|
67
|
-
#[cfg(target_pointer_width = "64")]
|
68
|
-
fn inst_size_test() {
|
69
|
-
// This test will help with unintentionally growing the size
|
70
|
-
// of the Inst enum.
|
71
|
-
assert_eq!(40, std::mem::size_of::<Inst>());
|
72
|
-
}
|
73
|
-
|
74
|
-
pub(crate) fn low32_will_sign_extend_to_64(x: u64) -> bool {
|
75
|
-
let xs = x as i64;
|
76
|
-
xs == ((xs << 32) >> 32)
|
77
|
-
}
|
78
|
-
|
79
|
-
impl Inst {
|
80
|
-
/// Retrieve a list of ISA feature sets in which the instruction is available. An empty list
|
81
|
-
/// indicates that the instruction is available in the baseline feature set (i.e. SSE2 and
|
82
|
-
/// below); more than one `InstructionSet` in the list indicates that the instruction is present
|
83
|
-
/// *any* of the included ISA feature sets.
|
84
|
-
fn available_in_any_isa(&self) -> SmallVec<[InstructionSet; 2]> {
|
85
|
-
match self {
|
86
|
-
// These instructions are part of SSE2, which is a basic requirement in Cranelift, and
|
87
|
-
// don't have to be checked.
|
88
|
-
Inst::AluRmiR { .. }
|
89
|
-
| Inst::AluRM { .. }
|
90
|
-
| Inst::AtomicRmwSeq { .. }
|
91
|
-
| Inst::Bswap { .. }
|
92
|
-
| Inst::CallKnown { .. }
|
93
|
-
| Inst::CallUnknown { .. }
|
94
|
-
| Inst::ReturnCallKnown { .. }
|
95
|
-
| Inst::ReturnCallUnknown { .. }
|
96
|
-
| Inst::CheckedSRemSeq { .. }
|
97
|
-
| Inst::CheckedSRemSeq8 { .. }
|
98
|
-
| Inst::Cmove { .. }
|
99
|
-
| Inst::CmpRmiR { .. }
|
100
|
-
| Inst::CvtFloatToSintSeq { .. }
|
101
|
-
| Inst::CvtFloatToUintSeq { .. }
|
102
|
-
| Inst::CvtUint64ToFloatSeq { .. }
|
103
|
-
| Inst::Div { .. }
|
104
|
-
| Inst::Div8 { .. }
|
105
|
-
| Inst::Fence { .. }
|
106
|
-
| Inst::Hlt
|
107
|
-
| Inst::Imm { .. }
|
108
|
-
| Inst::JmpCond { .. }
|
109
|
-
| Inst::JmpIf { .. }
|
110
|
-
| Inst::JmpKnown { .. }
|
111
|
-
| Inst::JmpTableSeq { .. }
|
112
|
-
| Inst::JmpUnknown { .. }
|
113
|
-
| Inst::LoadEffectiveAddress { .. }
|
114
|
-
| Inst::LoadExtName { .. }
|
115
|
-
| Inst::LockCmpxchg { .. }
|
116
|
-
| Inst::Mov64MR { .. }
|
117
|
-
| Inst::MovImmM { .. }
|
118
|
-
| Inst::MovRM { .. }
|
119
|
-
| Inst::MovRR { .. }
|
120
|
-
| Inst::MovFromPReg { .. }
|
121
|
-
| Inst::MovToPReg { .. }
|
122
|
-
| Inst::MovsxRmR { .. }
|
123
|
-
| Inst::MovzxRmR { .. }
|
124
|
-
| Inst::Mul { .. }
|
125
|
-
| Inst::Mul8 { .. }
|
126
|
-
| Inst::IMul { .. }
|
127
|
-
| Inst::IMulImm { .. }
|
128
|
-
| Inst::Neg { .. }
|
129
|
-
| Inst::Not { .. }
|
130
|
-
| Inst::Nop { .. }
|
131
|
-
| Inst::Pop64 { .. }
|
132
|
-
| Inst::Push64 { .. }
|
133
|
-
| Inst::StackProbeLoop { .. }
|
134
|
-
| Inst::Args { .. }
|
135
|
-
| Inst::Rets { .. }
|
136
|
-
| Inst::Ret { .. }
|
137
|
-
| Inst::Setcc { .. }
|
138
|
-
| Inst::ShiftR { .. }
|
139
|
-
| Inst::SignExtendData { .. }
|
140
|
-
| Inst::TrapIf { .. }
|
141
|
-
| Inst::TrapIfAnd { .. }
|
142
|
-
| Inst::TrapIfOr { .. }
|
143
|
-
| Inst::Ud2 { .. }
|
144
|
-
| Inst::VirtualSPOffsetAdj { .. }
|
145
|
-
| Inst::XmmCmove { .. }
|
146
|
-
| Inst::XmmCmpRmR { .. }
|
147
|
-
| Inst::XmmMinMaxSeq { .. }
|
148
|
-
| Inst::XmmUninitializedValue { .. }
|
149
|
-
| Inst::ElfTlsGetAddr { .. }
|
150
|
-
| Inst::MachOTlsGetAddr { .. }
|
151
|
-
| Inst::CoffTlsGetAddr { .. }
|
152
|
-
| Inst::Unwind { .. }
|
153
|
-
| Inst::DummyUse { .. }
|
154
|
-
| Inst::AluConstOp { .. } => smallvec![],
|
155
|
-
|
156
|
-
Inst::AluRmRVex { op, .. } => op.available_from(),
|
157
|
-
Inst::UnaryRmR { op, .. } => op.available_from(),
|
158
|
-
Inst::UnaryRmRVex { op, .. } => op.available_from(),
|
159
|
-
Inst::UnaryRmRImmVex { op, .. } => op.available_from(),
|
160
|
-
|
161
|
-
// These use dynamic SSE opcodes.
|
162
|
-
Inst::GprToXmm { op, .. }
|
163
|
-
| Inst::XmmMovRM { op, .. }
|
164
|
-
| Inst::XmmMovRMImm { op, .. }
|
165
|
-
| Inst::XmmRmiReg { opcode: op, .. }
|
166
|
-
| Inst::XmmRmR { op, .. }
|
167
|
-
| Inst::XmmRmRUnaligned { op, .. }
|
168
|
-
| Inst::XmmRmRBlend { op, .. }
|
169
|
-
| Inst::XmmRmRImm { op, .. }
|
170
|
-
| Inst::XmmToGpr { op, .. }
|
171
|
-
| Inst::XmmToGprImm { op, .. }
|
172
|
-
| Inst::XmmUnaryRmRImm { op, .. }
|
173
|
-
| Inst::XmmUnaryRmRUnaligned { op, .. }
|
174
|
-
| Inst::XmmUnaryRmR { op, .. }
|
175
|
-
| Inst::CvtIntToFloat { op, .. } => smallvec![op.available_from()],
|
176
|
-
|
177
|
-
Inst::XmmUnaryRmREvex { op, .. }
|
178
|
-
| Inst::XmmRmREvex { op, .. }
|
179
|
-
| Inst::XmmRmREvex3 { op, .. }
|
180
|
-
| Inst::XmmUnaryRmRImmEvex { op, .. } => op.available_from(),
|
181
|
-
|
182
|
-
Inst::XmmRmiRVex { op, .. }
|
183
|
-
| Inst::XmmRmRVex3 { op, .. }
|
184
|
-
| Inst::XmmRmRImmVex { op, .. }
|
185
|
-
| Inst::XmmRmRBlendVex { op, .. }
|
186
|
-
| Inst::XmmVexPinsr { op, .. }
|
187
|
-
| Inst::XmmUnaryRmRVex { op, .. }
|
188
|
-
| Inst::XmmUnaryRmRImmVex { op, .. }
|
189
|
-
| Inst::XmmMovRMVex { op, .. }
|
190
|
-
| Inst::XmmMovRMImmVex { op, .. }
|
191
|
-
| Inst::XmmToGprImmVex { op, .. }
|
192
|
-
| Inst::XmmToGprVex { op, .. }
|
193
|
-
| Inst::GprToXmmVex { op, .. }
|
194
|
-
| Inst::CvtIntToFloatVex { op, .. }
|
195
|
-
| Inst::XmmCmpRmRVex { op, .. } => op.available_from(),
|
196
|
-
}
|
197
|
-
}
|
198
|
-
}
|
199
|
-
|
200
|
-
// Handy constructors for Insts.
|
201
|
-
|
202
|
-
impl Inst {
|
203
|
-
pub(crate) fn nop(len: u8) -> Self {
|
204
|
-
debug_assert!(len <= 15);
|
205
|
-
Self::Nop { len }
|
206
|
-
}
|
207
|
-
|
208
|
-
pub(crate) fn alu_rmi_r(
|
209
|
-
size: OperandSize,
|
210
|
-
op: AluRmiROpcode,
|
211
|
-
src: RegMemImm,
|
212
|
-
dst: Writable<Reg>,
|
213
|
-
) -> Self {
|
214
|
-
src.assert_regclass_is(RegClass::Int);
|
215
|
-
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
216
|
-
Self::AluRmiR {
|
217
|
-
size,
|
218
|
-
op,
|
219
|
-
src1: Gpr::new(dst.to_reg()).unwrap(),
|
220
|
-
src2: GprMemImm::new(src).unwrap(),
|
221
|
-
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
222
|
-
}
|
223
|
-
}
|
224
|
-
|
225
|
-
#[allow(dead_code)]
|
226
|
-
pub(crate) fn unary_rm_r(
|
227
|
-
size: OperandSize,
|
228
|
-
op: UnaryRmROpcode,
|
229
|
-
src: RegMem,
|
230
|
-
dst: Writable<Reg>,
|
231
|
-
) -> Self {
|
232
|
-
src.assert_regclass_is(RegClass::Int);
|
233
|
-
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
234
|
-
debug_assert!(size.is_one_of(&[
|
235
|
-
OperandSize::Size16,
|
236
|
-
OperandSize::Size32,
|
237
|
-
OperandSize::Size64
|
238
|
-
]));
|
239
|
-
Self::UnaryRmR {
|
240
|
-
size,
|
241
|
-
op,
|
242
|
-
src: GprMem::new(src).unwrap(),
|
243
|
-
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
244
|
-
}
|
245
|
-
}
|
246
|
-
|
247
|
-
pub(crate) fn not(size: OperandSize, src: Writable<Reg>) -> Inst {
|
248
|
-
debug_assert_eq!(src.to_reg().class(), RegClass::Int);
|
249
|
-
Inst::Not {
|
250
|
-
size,
|
251
|
-
src: Gpr::new(src.to_reg()).unwrap(),
|
252
|
-
dst: WritableGpr::from_writable_reg(src).unwrap(),
|
253
|
-
}
|
254
|
-
}
|
255
|
-
|
256
|
-
pub(crate) fn div(
|
257
|
-
size: OperandSize,
|
258
|
-
sign: DivSignedness,
|
259
|
-
trap: TrapCode,
|
260
|
-
divisor: RegMem,
|
261
|
-
dividend_lo: Gpr,
|
262
|
-
dividend_hi: Gpr,
|
263
|
-
dst_quotient: WritableGpr,
|
264
|
-
dst_remainder: WritableGpr,
|
265
|
-
) -> Inst {
|
266
|
-
divisor.assert_regclass_is(RegClass::Int);
|
267
|
-
Inst::Div {
|
268
|
-
size,
|
269
|
-
sign,
|
270
|
-
trap,
|
271
|
-
divisor: GprMem::new(divisor).unwrap(),
|
272
|
-
dividend_lo,
|
273
|
-
dividend_hi,
|
274
|
-
dst_quotient,
|
275
|
-
dst_remainder,
|
276
|
-
}
|
277
|
-
}
|
278
|
-
|
279
|
-
pub(crate) fn div8(
|
280
|
-
sign: DivSignedness,
|
281
|
-
trap: TrapCode,
|
282
|
-
divisor: RegMem,
|
283
|
-
dividend: Gpr,
|
284
|
-
dst: WritableGpr,
|
285
|
-
) -> Inst {
|
286
|
-
divisor.assert_regclass_is(RegClass::Int);
|
287
|
-
Inst::Div8 {
|
288
|
-
sign,
|
289
|
-
trap,
|
290
|
-
divisor: GprMem::new(divisor).unwrap(),
|
291
|
-
dividend,
|
292
|
-
dst,
|
293
|
-
}
|
294
|
-
}
|
295
|
-
|
296
|
-
pub(crate) fn imm(dst_size: OperandSize, simm64: u64, dst: Writable<Reg>) -> Inst {
|
297
|
-
debug_assert!(dst_size.is_one_of(&[OperandSize::Size32, OperandSize::Size64]));
|
298
|
-
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
299
|
-
// Try to generate a 32-bit immediate when the upper high bits are zeroed (which matches
|
300
|
-
// the semantics of movl).
|
301
|
-
let dst_size = match dst_size {
|
302
|
-
OperandSize::Size64 if simm64 > u32::max_value() as u64 => OperandSize::Size64,
|
303
|
-
_ => OperandSize::Size32,
|
304
|
-
};
|
305
|
-
Inst::Imm {
|
306
|
-
dst_size,
|
307
|
-
simm64,
|
308
|
-
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
309
|
-
}
|
310
|
-
}
|
311
|
-
|
312
|
-
pub(crate) fn mov_r_r(size: OperandSize, src: Reg, dst: Writable<Reg>) -> Inst {
|
313
|
-
debug_assert!(size.is_one_of(&[OperandSize::Size32, OperandSize::Size64]));
|
314
|
-
debug_assert!(src.class() == RegClass::Int);
|
315
|
-
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
316
|
-
let src = Gpr::new(src).unwrap();
|
317
|
-
let dst = WritableGpr::from_writable_reg(dst).unwrap();
|
318
|
-
Inst::MovRR { size, src, dst }
|
319
|
-
}
|
320
|
-
|
321
|
-
/// Convenient helper for unary float operations.
|
322
|
-
pub(crate) fn xmm_unary_rm_r(op: SseOpcode, src: RegMem, dst: Writable<Reg>) -> Inst {
|
323
|
-
src.assert_regclass_is(RegClass::Float);
|
324
|
-
debug_assert!(dst.to_reg().class() == RegClass::Float);
|
325
|
-
Inst::XmmUnaryRmR {
|
326
|
-
op,
|
327
|
-
src: XmmMemAligned::new(src).unwrap(),
|
328
|
-
dst: WritableXmm::from_writable_reg(dst).unwrap(),
|
329
|
-
}
|
330
|
-
}
|
331
|
-
|
332
|
-
pub(crate) fn xmm_rm_r(op: SseOpcode, src: RegMem, dst: Writable<Reg>) -> Self {
|
333
|
-
src.assert_regclass_is(RegClass::Float);
|
334
|
-
debug_assert!(dst.to_reg().class() == RegClass::Float);
|
335
|
-
Inst::XmmRmR {
|
336
|
-
op,
|
337
|
-
src1: Xmm::new(dst.to_reg()).unwrap(),
|
338
|
-
src2: XmmMemAligned::new(src).unwrap(),
|
339
|
-
dst: WritableXmm::from_writable_reg(dst).unwrap(),
|
340
|
-
}
|
341
|
-
}
|
342
|
-
|
343
|
-
#[cfg(test)]
|
344
|
-
pub(crate) fn xmm_rmr_vex3(op: AvxOpcode, src3: RegMem, src2: Reg, dst: Writable<Reg>) -> Self {
|
345
|
-
src3.assert_regclass_is(RegClass::Float);
|
346
|
-
debug_assert!(src2.class() == RegClass::Float);
|
347
|
-
debug_assert!(dst.to_reg().class() == RegClass::Float);
|
348
|
-
Inst::XmmRmRVex3 {
|
349
|
-
op,
|
350
|
-
src3: XmmMem::new(src3).unwrap(),
|
351
|
-
src2: Xmm::new(src2).unwrap(),
|
352
|
-
src1: Xmm::new(dst.to_reg()).unwrap(),
|
353
|
-
dst: WritableXmm::from_writable_reg(dst).unwrap(),
|
354
|
-
}
|
355
|
-
}
|
356
|
-
|
357
|
-
pub(crate) fn xmm_mov_r_m(op: SseOpcode, src: Reg, dst: impl Into<SyntheticAmode>) -> Inst {
|
358
|
-
debug_assert!(src.class() == RegClass::Float);
|
359
|
-
Inst::XmmMovRM {
|
360
|
-
op,
|
361
|
-
src: Xmm::new(src).unwrap(),
|
362
|
-
dst: dst.into(),
|
363
|
-
}
|
364
|
-
}
|
365
|
-
|
366
|
-
pub(crate) fn xmm_to_gpr(
|
367
|
-
op: SseOpcode,
|
368
|
-
src: Reg,
|
369
|
-
dst: Writable<Reg>,
|
370
|
-
dst_size: OperandSize,
|
371
|
-
) -> Inst {
|
372
|
-
debug_assert!(src.class() == RegClass::Float);
|
373
|
-
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
374
|
-
debug_assert!(dst_size.is_one_of(&[OperandSize::Size32, OperandSize::Size64]));
|
375
|
-
Inst::XmmToGpr {
|
376
|
-
op,
|
377
|
-
src: Xmm::new(src).unwrap(),
|
378
|
-
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
379
|
-
dst_size,
|
380
|
-
}
|
381
|
-
}
|
382
|
-
|
383
|
-
pub(crate) fn gpr_to_xmm(
|
384
|
-
op: SseOpcode,
|
385
|
-
src: RegMem,
|
386
|
-
src_size: OperandSize,
|
387
|
-
dst: Writable<Reg>,
|
388
|
-
) -> Inst {
|
389
|
-
src.assert_regclass_is(RegClass::Int);
|
390
|
-
debug_assert!(src_size.is_one_of(&[OperandSize::Size32, OperandSize::Size64]));
|
391
|
-
debug_assert!(dst.to_reg().class() == RegClass::Float);
|
392
|
-
Inst::GprToXmm {
|
393
|
-
op,
|
394
|
-
src: GprMem::new(src).unwrap(),
|
395
|
-
dst: WritableXmm::from_writable_reg(dst).unwrap(),
|
396
|
-
src_size,
|
397
|
-
}
|
398
|
-
}
|
399
|
-
|
400
|
-
pub(crate) fn xmm_cmp_rm_r(op: SseOpcode, src1: Reg, src2: RegMem) -> Inst {
|
401
|
-
src2.assert_regclass_is(RegClass::Float);
|
402
|
-
debug_assert!(src1.class() == RegClass::Float);
|
403
|
-
let src2 = XmmMemAligned::new(src2).unwrap();
|
404
|
-
let src1 = Xmm::new(src1).unwrap();
|
405
|
-
Inst::XmmCmpRmR { op, src1, src2 }
|
406
|
-
}
|
407
|
-
|
408
|
-
#[allow(dead_code)]
|
409
|
-
pub(crate) fn xmm_min_max_seq(
|
410
|
-
size: OperandSize,
|
411
|
-
is_min: bool,
|
412
|
-
lhs: Reg,
|
413
|
-
rhs: Reg,
|
414
|
-
dst: Writable<Reg>,
|
415
|
-
) -> Inst {
|
416
|
-
debug_assert!(size.is_one_of(&[OperandSize::Size32, OperandSize::Size64]));
|
417
|
-
debug_assert_eq!(lhs.class(), RegClass::Float);
|
418
|
-
debug_assert_eq!(rhs.class(), RegClass::Float);
|
419
|
-
debug_assert_eq!(dst.to_reg().class(), RegClass::Float);
|
420
|
-
Inst::XmmMinMaxSeq {
|
421
|
-
size,
|
422
|
-
is_min,
|
423
|
-
lhs: Xmm::new(lhs).unwrap(),
|
424
|
-
rhs: Xmm::new(rhs).unwrap(),
|
425
|
-
dst: WritableXmm::from_writable_reg(dst).unwrap(),
|
426
|
-
}
|
427
|
-
}
|
428
|
-
|
429
|
-
pub(crate) fn movzx_rm_r(ext_mode: ExtMode, src: RegMem, dst: Writable<Reg>) -> Inst {
|
430
|
-
src.assert_regclass_is(RegClass::Int);
|
431
|
-
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
432
|
-
let src = GprMem::new(src).unwrap();
|
433
|
-
let dst = WritableGpr::from_writable_reg(dst).unwrap();
|
434
|
-
Inst::MovzxRmR { ext_mode, src, dst }
|
435
|
-
}
|
436
|
-
|
437
|
-
pub(crate) fn movsx_rm_r(ext_mode: ExtMode, src: RegMem, dst: Writable<Reg>) -> Inst {
|
438
|
-
src.assert_regclass_is(RegClass::Int);
|
439
|
-
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
440
|
-
let src = GprMem::new(src).unwrap();
|
441
|
-
let dst = WritableGpr::from_writable_reg(dst).unwrap();
|
442
|
-
Inst::MovsxRmR { ext_mode, src, dst }
|
443
|
-
}
|
444
|
-
|
445
|
-
pub(crate) fn mov64_m_r(src: impl Into<SyntheticAmode>, dst: Writable<Reg>) -> Inst {
|
446
|
-
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
447
|
-
Inst::Mov64MR {
|
448
|
-
src: src.into(),
|
449
|
-
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
450
|
-
}
|
451
|
-
}
|
452
|
-
|
453
|
-
pub(crate) fn mov_r_m(size: OperandSize, src: Reg, dst: impl Into<SyntheticAmode>) -> Inst {
|
454
|
-
debug_assert!(src.class() == RegClass::Int);
|
455
|
-
Inst::MovRM {
|
456
|
-
size,
|
457
|
-
src: Gpr::new(src).unwrap(),
|
458
|
-
dst: dst.into(),
|
459
|
-
}
|
460
|
-
}
|
461
|
-
|
462
|
-
pub(crate) fn lea(addr: impl Into<SyntheticAmode>, dst: Writable<Reg>) -> Inst {
|
463
|
-
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
464
|
-
Inst::LoadEffectiveAddress {
|
465
|
-
addr: addr.into(),
|
466
|
-
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
467
|
-
size: OperandSize::Size64,
|
468
|
-
}
|
469
|
-
}
|
470
|
-
|
471
|
-
pub(crate) fn shift_r(
|
472
|
-
size: OperandSize,
|
473
|
-
kind: ShiftKind,
|
474
|
-
num_bits: Imm8Gpr,
|
475
|
-
src: Reg,
|
476
|
-
dst: Writable<Reg>,
|
477
|
-
) -> Inst {
|
478
|
-
if let &Imm8Reg::Imm8 { imm: num_bits } = num_bits.as_imm8_reg() {
|
479
|
-
debug_assert!(num_bits < size.to_bits());
|
480
|
-
}
|
481
|
-
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
482
|
-
Inst::ShiftR {
|
483
|
-
size,
|
484
|
-
kind,
|
485
|
-
src: Gpr::new(src).unwrap(),
|
486
|
-
num_bits,
|
487
|
-
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
488
|
-
}
|
489
|
-
}
|
490
|
-
|
491
|
-
/// Does a comparison of dst - src for operands of size `size`, as stated by the machine
|
492
|
-
/// instruction semantics. Be careful with the order of parameters!
|
493
|
-
pub(crate) fn cmp_rmi_r(size: OperandSize, src1: Reg, src2: RegMemImm) -> Inst {
|
494
|
-
src2.assert_regclass_is(RegClass::Int);
|
495
|
-
debug_assert_eq!(src1.class(), RegClass::Int);
|
496
|
-
Inst::CmpRmiR {
|
497
|
-
size,
|
498
|
-
src1: Gpr::new(src1).unwrap(),
|
499
|
-
src2: GprMemImm::new(src2).unwrap(),
|
500
|
-
opcode: CmpOpcode::Cmp,
|
501
|
-
}
|
502
|
-
}
|
503
|
-
|
504
|
-
pub(crate) fn trap(trap_code: TrapCode) -> Inst {
|
505
|
-
Inst::Ud2 { trap_code }
|
506
|
-
}
|
507
|
-
|
508
|
-
pub(crate) fn trap_if(cc: CC, trap_code: TrapCode) -> Inst {
|
509
|
-
Inst::TrapIf { cc, trap_code }
|
510
|
-
}
|
511
|
-
|
512
|
-
pub(crate) fn cmove(size: OperandSize, cc: CC, src: RegMem, dst: Writable<Reg>) -> Inst {
|
513
|
-
debug_assert!(size.is_one_of(&[
|
514
|
-
OperandSize::Size16,
|
515
|
-
OperandSize::Size32,
|
516
|
-
OperandSize::Size64
|
517
|
-
]));
|
518
|
-
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
519
|
-
Inst::Cmove {
|
520
|
-
size,
|
521
|
-
cc,
|
522
|
-
consequent: GprMem::new(src).unwrap(),
|
523
|
-
alternative: Gpr::new(dst.to_reg()).unwrap(),
|
524
|
-
dst: WritableGpr::from_writable_reg(dst).unwrap(),
|
525
|
-
}
|
526
|
-
}
|
527
|
-
|
528
|
-
pub(crate) fn push64(src: RegMemImm) -> Inst {
|
529
|
-
src.assert_regclass_is(RegClass::Int);
|
530
|
-
let src = GprMemImm::new(src).unwrap();
|
531
|
-
Inst::Push64 { src }
|
532
|
-
}
|
533
|
-
|
534
|
-
pub(crate) fn pop64(dst: Writable<Reg>) -> Inst {
|
535
|
-
debug_assert!(dst.to_reg().class() == RegClass::Int);
|
536
|
-
let dst = WritableGpr::from_writable_reg(dst).unwrap();
|
537
|
-
Inst::Pop64 { dst }
|
538
|
-
}
|
539
|
-
|
540
|
-
pub(crate) fn call_known(
|
541
|
-
dest: ExternalName,
|
542
|
-
uses: CallArgList,
|
543
|
-
defs: CallRetList,
|
544
|
-
clobbers: PRegSet,
|
545
|
-
opcode: Opcode,
|
546
|
-
callee_pop_size: u32,
|
547
|
-
callee_conv: CallConv,
|
548
|
-
) -> Inst {
|
549
|
-
Inst::CallKnown {
|
550
|
-
dest,
|
551
|
-
opcode,
|
552
|
-
info: Some(Box::new(CallInfo {
|
553
|
-
uses,
|
554
|
-
defs,
|
555
|
-
clobbers,
|
556
|
-
callee_pop_size,
|
557
|
-
callee_conv,
|
558
|
-
})),
|
559
|
-
}
|
560
|
-
}
|
561
|
-
|
562
|
-
pub(crate) fn call_unknown(
|
563
|
-
dest: RegMem,
|
564
|
-
uses: CallArgList,
|
565
|
-
defs: CallRetList,
|
566
|
-
clobbers: PRegSet,
|
567
|
-
opcode: Opcode,
|
568
|
-
callee_pop_size: u32,
|
569
|
-
callee_conv: CallConv,
|
570
|
-
) -> Inst {
|
571
|
-
dest.assert_regclass_is(RegClass::Int);
|
572
|
-
Inst::CallUnknown {
|
573
|
-
dest,
|
574
|
-
opcode,
|
575
|
-
info: Some(Box::new(CallInfo {
|
576
|
-
uses,
|
577
|
-
defs,
|
578
|
-
clobbers,
|
579
|
-
callee_pop_size,
|
580
|
-
callee_conv,
|
581
|
-
})),
|
582
|
-
}
|
583
|
-
}
|
584
|
-
|
585
|
-
pub(crate) fn ret(stack_bytes_to_pop: u32) -> Inst {
|
586
|
-
Inst::Ret { stack_bytes_to_pop }
|
587
|
-
}
|
588
|
-
|
589
|
-
pub(crate) fn jmp_known(dst: MachLabel) -> Inst {
|
590
|
-
Inst::JmpKnown { dst }
|
591
|
-
}
|
592
|
-
|
593
|
-
pub(crate) fn jmp_unknown(target: RegMem) -> Inst {
|
594
|
-
target.assert_regclass_is(RegClass::Int);
|
595
|
-
Inst::JmpUnknown { target }
|
596
|
-
}
|
597
|
-
|
598
|
-
/// Choose which instruction to use for loading a register value from memory. For loads smaller
|
599
|
-
/// than 64 bits, this method expects a way to extend the value (i.e. [ExtKind::SignExtend],
|
600
|
-
/// [ExtKind::ZeroExtend]); loads with no extension necessary will ignore this.
|
601
|
-
pub(crate) fn load(
|
602
|
-
ty: Type,
|
603
|
-
from_addr: impl Into<SyntheticAmode>,
|
604
|
-
to_reg: Writable<Reg>,
|
605
|
-
ext_kind: ExtKind,
|
606
|
-
) -> Inst {
|
607
|
-
let rc = to_reg.to_reg().class();
|
608
|
-
match rc {
|
609
|
-
RegClass::Int => {
|
610
|
-
let ext_mode = match ty.bytes() {
|
611
|
-
1 => Some(ExtMode::BQ),
|
612
|
-
2 => Some(ExtMode::WQ),
|
613
|
-
4 => Some(ExtMode::LQ),
|
614
|
-
8 => None,
|
615
|
-
_ => unreachable!("the type should never use a scalar load: {}", ty),
|
616
|
-
};
|
617
|
-
if let Some(ext_mode) = ext_mode {
|
618
|
-
// Values smaller than 64 bits must be extended in some way.
|
619
|
-
match ext_kind {
|
620
|
-
ExtKind::SignExtend => {
|
621
|
-
Inst::movsx_rm_r(ext_mode, RegMem::mem(from_addr), to_reg)
|
622
|
-
}
|
623
|
-
ExtKind::ZeroExtend => {
|
624
|
-
Inst::movzx_rm_r(ext_mode, RegMem::mem(from_addr), to_reg)
|
625
|
-
}
|
626
|
-
ExtKind::None => panic!(
|
627
|
-
"expected an extension kind for extension mode: {:?}",
|
628
|
-
ext_mode
|
629
|
-
),
|
630
|
-
}
|
631
|
-
} else {
|
632
|
-
// 64-bit values can be moved directly.
|
633
|
-
Inst::mov64_m_r(from_addr, to_reg)
|
634
|
-
}
|
635
|
-
}
|
636
|
-
RegClass::Float => {
|
637
|
-
let opcode = match ty {
|
638
|
-
types::F32 => SseOpcode::Movss,
|
639
|
-
types::F64 => SseOpcode::Movsd,
|
640
|
-
types::F32X4 => SseOpcode::Movups,
|
641
|
-
types::F64X2 => SseOpcode::Movupd,
|
642
|
-
_ if ty.is_vector() && ty.bits() == 128 => SseOpcode::Movdqu,
|
643
|
-
_ => unimplemented!("unable to load type: {}", ty),
|
644
|
-
};
|
645
|
-
Inst::xmm_unary_rm_r(opcode, RegMem::mem(from_addr), to_reg)
|
646
|
-
}
|
647
|
-
RegClass::Vector => unreachable!(),
|
648
|
-
}
|
649
|
-
}
|
650
|
-
|
651
|
-
/// Choose which instruction to use for storing a register value to memory.
|
652
|
-
pub(crate) fn store(ty: Type, from_reg: Reg, to_addr: impl Into<SyntheticAmode>) -> Inst {
|
653
|
-
let rc = from_reg.class();
|
654
|
-
match rc {
|
655
|
-
RegClass::Int => Inst::mov_r_m(OperandSize::from_ty(ty), from_reg, to_addr),
|
656
|
-
RegClass::Float => {
|
657
|
-
let opcode = match ty {
|
658
|
-
types::F32 => SseOpcode::Movss,
|
659
|
-
types::F64 => SseOpcode::Movsd,
|
660
|
-
types::F32X4 => SseOpcode::Movups,
|
661
|
-
types::F64X2 => SseOpcode::Movupd,
|
662
|
-
_ if ty.is_vector() && ty.bits() == 128 => SseOpcode::Movdqu,
|
663
|
-
_ => unimplemented!("unable to store type: {}", ty),
|
664
|
-
};
|
665
|
-
Inst::xmm_mov_r_m(opcode, from_reg, to_addr)
|
666
|
-
}
|
667
|
-
RegClass::Vector => unreachable!(),
|
668
|
-
}
|
669
|
-
}
|
670
|
-
}
|
671
|
-
|
672
|
-
//=============================================================================
|
673
|
-
// Instructions: printing
|
674
|
-
|
675
|
-
impl PrettyPrint for Inst {
|
676
|
-
fn pretty_print(&self, _size: u8, allocs: &mut AllocationConsumer) -> String {
|
677
|
-
fn ljustify(s: String) -> String {
|
678
|
-
let w = 7;
|
679
|
-
if s.len() >= w {
|
680
|
-
s
|
681
|
-
} else {
|
682
|
-
let need = usize::min(w, w - s.len());
|
683
|
-
s + &format!("{nil: <width$}", nil = "", width = need)
|
684
|
-
}
|
685
|
-
}
|
686
|
-
|
687
|
-
fn ljustify2(s1: String, s2: String) -> String {
|
688
|
-
ljustify(s1 + &s2)
|
689
|
-
}
|
690
|
-
|
691
|
-
fn suffix_lq(size: OperandSize) -> String {
|
692
|
-
match size {
|
693
|
-
OperandSize::Size32 => "l",
|
694
|
-
OperandSize::Size64 => "q",
|
695
|
-
_ => unreachable!(),
|
696
|
-
}
|
697
|
-
.to_string()
|
698
|
-
}
|
699
|
-
|
700
|
-
#[allow(dead_code)]
|
701
|
-
fn suffix_lqb(size: OperandSize) -> String {
|
702
|
-
match size {
|
703
|
-
OperandSize::Size32 => "l",
|
704
|
-
OperandSize::Size64 => "q",
|
705
|
-
_ => unreachable!(),
|
706
|
-
}
|
707
|
-
.to_string()
|
708
|
-
}
|
709
|
-
|
710
|
-
fn suffix_bwlq(size: OperandSize) -> String {
|
711
|
-
match size {
|
712
|
-
OperandSize::Size8 => "b".to_string(),
|
713
|
-
OperandSize::Size16 => "w".to_string(),
|
714
|
-
OperandSize::Size32 => "l".to_string(),
|
715
|
-
OperandSize::Size64 => "q".to_string(),
|
716
|
-
}
|
717
|
-
}
|
718
|
-
|
719
|
-
match self {
|
720
|
-
Inst::Nop { len } => format!("{} len={}", ljustify("nop".to_string()), len),
|
721
|
-
|
722
|
-
Inst::AluRmiR {
|
723
|
-
size,
|
724
|
-
op,
|
725
|
-
src1,
|
726
|
-
src2,
|
727
|
-
dst,
|
728
|
-
} => {
|
729
|
-
let size_bytes = size.to_bytes();
|
730
|
-
let src1 = pretty_print_reg(src1.to_reg(), size_bytes, allocs);
|
731
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size_bytes, allocs);
|
732
|
-
let src2 = src2.pretty_print(size_bytes, allocs);
|
733
|
-
let op = ljustify2(op.to_string(), suffix_bwlq(*size));
|
734
|
-
format!("{op} {src1}, {src2}, {dst}")
|
735
|
-
}
|
736
|
-
Inst::AluConstOp { op, dst, size } => {
|
737
|
-
let size_bytes = size.to_bytes();
|
738
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size_bytes, allocs);
|
739
|
-
let op = ljustify2(op.to_string(), suffix_lqb(*size));
|
740
|
-
format!("{op} {dst}, {dst}, {dst}")
|
741
|
-
}
|
742
|
-
Inst::AluRM {
|
743
|
-
size,
|
744
|
-
op,
|
745
|
-
src1_dst,
|
746
|
-
src2,
|
747
|
-
} => {
|
748
|
-
let size_bytes = size.to_bytes();
|
749
|
-
let src2 = pretty_print_reg(src2.to_reg(), size_bytes, allocs);
|
750
|
-
let src1_dst = src1_dst.pretty_print(size_bytes, allocs);
|
751
|
-
let op = ljustify2(op.to_string(), suffix_bwlq(*size));
|
752
|
-
format!("{op} {src2}, {src1_dst}")
|
753
|
-
}
|
754
|
-
Inst::AluRmRVex {
|
755
|
-
size,
|
756
|
-
op,
|
757
|
-
src1,
|
758
|
-
src2,
|
759
|
-
dst,
|
760
|
-
} => {
|
761
|
-
let size_bytes = size.to_bytes();
|
762
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes(), allocs);
|
763
|
-
let src1 = pretty_print_reg(src1.to_reg(), size_bytes, allocs);
|
764
|
-
let src2 = src2.pretty_print(size_bytes, allocs);
|
765
|
-
let op = ljustify2(op.to_string(), String::new());
|
766
|
-
format!("{op} {src2}, {src1}, {dst}")
|
767
|
-
}
|
768
|
-
Inst::UnaryRmR { src, dst, op, size } => {
|
769
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes(), allocs);
|
770
|
-
let src = src.pretty_print(size.to_bytes(), allocs);
|
771
|
-
let op = ljustify2(op.to_string(), suffix_bwlq(*size));
|
772
|
-
format!("{op} {src}, {dst}")
|
773
|
-
}
|
774
|
-
|
775
|
-
Inst::UnaryRmRVex { src, dst, op, size } => {
|
776
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes(), allocs);
|
777
|
-
let src = src.pretty_print(size.to_bytes(), allocs);
|
778
|
-
let op = ljustify2(op.to_string(), suffix_bwlq(*size));
|
779
|
-
format!("{op} {src}, {dst}")
|
780
|
-
}
|
781
|
-
|
782
|
-
Inst::UnaryRmRImmVex {
|
783
|
-
src,
|
784
|
-
dst,
|
785
|
-
op,
|
786
|
-
size,
|
787
|
-
imm,
|
788
|
-
} => {
|
789
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes(), allocs);
|
790
|
-
let src = src.pretty_print(size.to_bytes(), allocs);
|
791
|
-
format!(
|
792
|
-
"{} ${imm}, {src}, {dst}",
|
793
|
-
ljustify2(op.to_string(), suffix_bwlq(*size))
|
794
|
-
)
|
795
|
-
}
|
796
|
-
|
797
|
-
Inst::Not { size, src, dst } => {
|
798
|
-
let src = pretty_print_reg(src.to_reg(), size.to_bytes(), allocs);
|
799
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes(), allocs);
|
800
|
-
let op = ljustify2("not".to_string(), suffix_bwlq(*size));
|
801
|
-
format!("{op} {src}, {dst}")
|
802
|
-
}
|
803
|
-
|
804
|
-
Inst::Neg { size, src, dst } => {
|
805
|
-
let src = pretty_print_reg(src.to_reg(), size.to_bytes(), allocs);
|
806
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes(), allocs);
|
807
|
-
let op = ljustify2("neg".to_string(), suffix_bwlq(*size));
|
808
|
-
format!("{op} {src}, {dst}")
|
809
|
-
}
|
810
|
-
|
811
|
-
Inst::Div {
|
812
|
-
size,
|
813
|
-
sign,
|
814
|
-
trap,
|
815
|
-
divisor,
|
816
|
-
dividend_lo,
|
817
|
-
dividend_hi,
|
818
|
-
dst_quotient,
|
819
|
-
dst_remainder,
|
820
|
-
} => {
|
821
|
-
let divisor = divisor.pretty_print(size.to_bytes(), allocs);
|
822
|
-
let dividend_lo = pretty_print_reg(dividend_lo.to_reg(), size.to_bytes(), allocs);
|
823
|
-
let dividend_hi = pretty_print_reg(dividend_hi.to_reg(), size.to_bytes(), allocs);
|
824
|
-
let dst_quotient =
|
825
|
-
pretty_print_reg(dst_quotient.to_reg().to_reg(), size.to_bytes(), allocs);
|
826
|
-
let dst_remainder =
|
827
|
-
pretty_print_reg(dst_remainder.to_reg().to_reg(), size.to_bytes(), allocs);
|
828
|
-
let op = ljustify(match sign {
|
829
|
-
DivSignedness::Signed => "idiv".to_string(),
|
830
|
-
DivSignedness::Unsigned => "div".to_string(),
|
831
|
-
});
|
832
|
-
format!(
|
833
|
-
"{op} {dividend_lo}, {dividend_hi}, {divisor}, {dst_quotient}, {dst_remainder} ; trap={trap}"
|
834
|
-
)
|
835
|
-
}
|
836
|
-
|
837
|
-
Inst::Div8 {
|
838
|
-
sign,
|
839
|
-
trap,
|
840
|
-
divisor,
|
841
|
-
dividend,
|
842
|
-
dst,
|
843
|
-
} => {
|
844
|
-
let divisor = divisor.pretty_print(1, allocs);
|
845
|
-
let dividend = pretty_print_reg(dividend.to_reg(), 1, allocs);
|
846
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 1, allocs);
|
847
|
-
let op = ljustify(match sign {
|
848
|
-
DivSignedness::Signed => "idiv".to_string(),
|
849
|
-
DivSignedness::Unsigned => "div".to_string(),
|
850
|
-
});
|
851
|
-
format!("{op} {dividend}, {divisor}, {dst} ; trap={trap}")
|
852
|
-
}
|
853
|
-
|
854
|
-
Inst::Mul {
|
855
|
-
size,
|
856
|
-
signed,
|
857
|
-
src1,
|
858
|
-
src2,
|
859
|
-
dst_lo,
|
860
|
-
dst_hi,
|
861
|
-
} => {
|
862
|
-
let src1 = pretty_print_reg(src1.to_reg(), size.to_bytes(), allocs);
|
863
|
-
let dst_lo = pretty_print_reg(dst_lo.to_reg().to_reg(), size.to_bytes(), allocs);
|
864
|
-
let dst_hi = pretty_print_reg(dst_hi.to_reg().to_reg(), size.to_bytes(), allocs);
|
865
|
-
let src2 = src2.pretty_print(size.to_bytes(), allocs);
|
866
|
-
let suffix = suffix_bwlq(*size);
|
867
|
-
let op = ljustify(if *signed {
|
868
|
-
format!("imul{suffix}")
|
869
|
-
} else {
|
870
|
-
format!("mul{suffix}")
|
871
|
-
});
|
872
|
-
format!("{op} {src1}, {src2}, {dst_lo}, {dst_hi}")
|
873
|
-
}
|
874
|
-
|
875
|
-
Inst::Mul8 {
|
876
|
-
signed,
|
877
|
-
src1,
|
878
|
-
src2,
|
879
|
-
dst,
|
880
|
-
} => {
|
881
|
-
let src1 = pretty_print_reg(src1.to_reg(), 1, allocs);
|
882
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 1, allocs);
|
883
|
-
let src2 = src2.pretty_print(1, allocs);
|
884
|
-
let op = ljustify(if *signed {
|
885
|
-
"imulb".to_string()
|
886
|
-
} else {
|
887
|
-
"mulb".to_string()
|
888
|
-
});
|
889
|
-
format!("{op} {src1}, {src2}, {dst}")
|
890
|
-
}
|
891
|
-
|
892
|
-
Inst::IMul {
|
893
|
-
size,
|
894
|
-
src1,
|
895
|
-
src2,
|
896
|
-
dst,
|
897
|
-
} => {
|
898
|
-
let src1 = pretty_print_reg(src1.to_reg(), size.to_bytes(), allocs);
|
899
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes(), allocs);
|
900
|
-
let src2 = src2.pretty_print(size.to_bytes(), allocs);
|
901
|
-
let suffix = suffix_bwlq(*size);
|
902
|
-
let op = ljustify(format!("imul{suffix}"));
|
903
|
-
format!("{op} {src1}, {src2}, {dst}")
|
904
|
-
}
|
905
|
-
|
906
|
-
Inst::IMulImm {
|
907
|
-
size,
|
908
|
-
src1,
|
909
|
-
src2,
|
910
|
-
dst,
|
911
|
-
} => {
|
912
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes(), allocs);
|
913
|
-
let src1 = src1.pretty_print(size.to_bytes(), allocs);
|
914
|
-
let suffix = suffix_bwlq(*size);
|
915
|
-
let op = ljustify(format!("imul{suffix}"));
|
916
|
-
format!("{op} {src1}, {src2:#x}, {dst}")
|
917
|
-
}
|
918
|
-
|
919
|
-
Inst::CheckedSRemSeq {
|
920
|
-
size,
|
921
|
-
divisor,
|
922
|
-
dividend_lo,
|
923
|
-
dividend_hi,
|
924
|
-
dst_quotient,
|
925
|
-
dst_remainder,
|
926
|
-
} => {
|
927
|
-
let divisor = pretty_print_reg(divisor.to_reg(), size.to_bytes(), allocs);
|
928
|
-
let dividend_lo = pretty_print_reg(dividend_lo.to_reg(), size.to_bytes(), allocs);
|
929
|
-
let dividend_hi = pretty_print_reg(dividend_hi.to_reg(), size.to_bytes(), allocs);
|
930
|
-
let dst_quotient =
|
931
|
-
pretty_print_reg(dst_quotient.to_reg().to_reg(), size.to_bytes(), allocs);
|
932
|
-
let dst_remainder =
|
933
|
-
pretty_print_reg(dst_remainder.to_reg().to_reg(), size.to_bytes(), allocs);
|
934
|
-
format!(
|
935
|
-
"checked_srem_seq {dividend_lo}, {dividend_hi}, \
|
936
|
-
{divisor}, {dst_quotient}, {dst_remainder}",
|
937
|
-
)
|
938
|
-
}
|
939
|
-
|
940
|
-
Inst::CheckedSRemSeq8 {
|
941
|
-
divisor,
|
942
|
-
dividend,
|
943
|
-
dst,
|
944
|
-
} => {
|
945
|
-
let divisor = pretty_print_reg(divisor.to_reg(), 1, allocs);
|
946
|
-
let dividend = pretty_print_reg(dividend.to_reg(), 1, allocs);
|
947
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 1, allocs);
|
948
|
-
format!("checked_srem_seq {dividend}, {divisor}, {dst}")
|
949
|
-
}
|
950
|
-
|
951
|
-
Inst::SignExtendData { size, src, dst } => {
|
952
|
-
let src = pretty_print_reg(src.to_reg(), size.to_bytes(), allocs);
|
953
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes(), allocs);
|
954
|
-
let op = match size {
|
955
|
-
OperandSize::Size8 => "cbw",
|
956
|
-
OperandSize::Size16 => "cwd",
|
957
|
-
OperandSize::Size32 => "cdq",
|
958
|
-
OperandSize::Size64 => "cqo",
|
959
|
-
};
|
960
|
-
format!("{op} {src}, {dst}")
|
961
|
-
}
|
962
|
-
|
963
|
-
Inst::XmmUnaryRmR { op, src, dst, .. } => {
|
964
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), op.src_size(), allocs);
|
965
|
-
let src = src.pretty_print(op.src_size(), allocs);
|
966
|
-
let op = ljustify(op.to_string());
|
967
|
-
format!("{op} {src}, {dst}")
|
968
|
-
}
|
969
|
-
|
970
|
-
Inst::XmmUnaryRmRUnaligned { op, src, dst, .. } => {
|
971
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), op.src_size(), allocs);
|
972
|
-
let src = src.pretty_print(op.src_size(), allocs);
|
973
|
-
let op = ljustify(op.to_string());
|
974
|
-
format!("{op} {src}, {dst}")
|
975
|
-
}
|
976
|
-
|
977
|
-
Inst::XmmUnaryRmRImm {
|
978
|
-
op, src, dst, imm, ..
|
979
|
-
} => {
|
980
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), op.src_size(), allocs);
|
981
|
-
let src = src.pretty_print(op.src_size(), allocs);
|
982
|
-
let op = ljustify(op.to_string());
|
983
|
-
format!("{op} ${imm}, {src}, {dst}")
|
984
|
-
}
|
985
|
-
|
986
|
-
Inst::XmmUnaryRmRVex { op, src, dst, .. } => {
|
987
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
988
|
-
let src = src.pretty_print(8, allocs);
|
989
|
-
let op = ljustify(op.to_string());
|
990
|
-
format!("{op} {src}, {dst}")
|
991
|
-
}
|
992
|
-
|
993
|
-
Inst::XmmUnaryRmRImmVex {
|
994
|
-
op, src, dst, imm, ..
|
995
|
-
} => {
|
996
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
997
|
-
let src = src.pretty_print(8, allocs);
|
998
|
-
let op = ljustify(op.to_string());
|
999
|
-
format!("{op} ${imm}, {src}, {dst}")
|
1000
|
-
}
|
1001
|
-
|
1002
|
-
Inst::XmmUnaryRmREvex { op, src, dst, .. } => {
|
1003
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1004
|
-
let src = src.pretty_print(8, allocs);
|
1005
|
-
let op = ljustify(op.to_string());
|
1006
|
-
format!("{op} {src}, {dst}")
|
1007
|
-
}
|
1008
|
-
|
1009
|
-
Inst::XmmUnaryRmRImmEvex {
|
1010
|
-
op, src, dst, imm, ..
|
1011
|
-
} => {
|
1012
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1013
|
-
let src = src.pretty_print(8, allocs);
|
1014
|
-
let op = ljustify(op.to_string());
|
1015
|
-
format!("{op} ${imm}, {src}, {dst}")
|
1016
|
-
}
|
1017
|
-
|
1018
|
-
Inst::XmmMovRM { op, src, dst, .. } => {
|
1019
|
-
let src = pretty_print_reg(src.to_reg(), 8, allocs);
|
1020
|
-
let dst = dst.pretty_print(8, allocs);
|
1021
|
-
let op = ljustify(op.to_string());
|
1022
|
-
format!("{op} {src}, {dst}")
|
1023
|
-
}
|
1024
|
-
|
1025
|
-
Inst::XmmMovRMVex { op, src, dst, .. } => {
|
1026
|
-
let src = pretty_print_reg(src.to_reg(), 8, allocs);
|
1027
|
-
let dst = dst.pretty_print(8, allocs);
|
1028
|
-
let op = ljustify(op.to_string());
|
1029
|
-
format!("{op} {src}, {dst}")
|
1030
|
-
}
|
1031
|
-
|
1032
|
-
Inst::XmmMovRMImm {
|
1033
|
-
op, src, dst, imm, ..
|
1034
|
-
} => {
|
1035
|
-
let src = pretty_print_reg(src.to_reg(), 8, allocs);
|
1036
|
-
let dst = dst.pretty_print(8, allocs);
|
1037
|
-
let op = ljustify(op.to_string());
|
1038
|
-
format!("{op} ${imm}, {src}, {dst}")
|
1039
|
-
}
|
1040
|
-
|
1041
|
-
Inst::XmmMovRMImmVex {
|
1042
|
-
op, src, dst, imm, ..
|
1043
|
-
} => {
|
1044
|
-
let src = pretty_print_reg(src.to_reg(), 8, allocs);
|
1045
|
-
let dst = dst.pretty_print(8, allocs);
|
1046
|
-
let op = ljustify(op.to_string());
|
1047
|
-
format!("{op} ${imm}, {src}, {dst}")
|
1048
|
-
}
|
1049
|
-
|
1050
|
-
Inst::XmmRmR {
|
1051
|
-
op,
|
1052
|
-
src1,
|
1053
|
-
src2,
|
1054
|
-
dst,
|
1055
|
-
..
|
1056
|
-
} => {
|
1057
|
-
let src1 = pretty_print_reg(src1.to_reg(), 8, allocs);
|
1058
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1059
|
-
let src2 = src2.pretty_print(8, allocs);
|
1060
|
-
let op = ljustify(op.to_string());
|
1061
|
-
format!("{op} {src1}, {src2}, {dst}")
|
1062
|
-
}
|
1063
|
-
|
1064
|
-
Inst::XmmRmRUnaligned {
|
1065
|
-
op,
|
1066
|
-
src1,
|
1067
|
-
src2,
|
1068
|
-
dst,
|
1069
|
-
..
|
1070
|
-
} => {
|
1071
|
-
let src1 = pretty_print_reg(src1.to_reg(), 8, allocs);
|
1072
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1073
|
-
let src2 = src2.pretty_print(8, allocs);
|
1074
|
-
let op = ljustify(op.to_string());
|
1075
|
-
format!("{op} {src1}, {src2}, {dst}")
|
1076
|
-
}
|
1077
|
-
|
1078
|
-
Inst::XmmRmRBlend {
|
1079
|
-
op,
|
1080
|
-
src1,
|
1081
|
-
src2,
|
1082
|
-
mask,
|
1083
|
-
dst,
|
1084
|
-
} => {
|
1085
|
-
let src1 = pretty_print_reg(src1.to_reg(), 8, allocs);
|
1086
|
-
let mask = allocs.next(mask.to_reg());
|
1087
|
-
let mask = if mask.is_virtual() {
|
1088
|
-
format!(" <{}>", show_ireg_sized(mask, 8))
|
1089
|
-
} else {
|
1090
|
-
debug_assert_eq!(mask, regs::xmm0());
|
1091
|
-
String::new()
|
1092
|
-
};
|
1093
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1094
|
-
let src2 = src2.pretty_print(8, allocs);
|
1095
|
-
let op = ljustify(op.to_string());
|
1096
|
-
format!("{op} {src1}, {src2}, {dst}{mask}")
|
1097
|
-
}
|
1098
|
-
|
1099
|
-
Inst::XmmRmiRVex {
|
1100
|
-
op,
|
1101
|
-
src1,
|
1102
|
-
src2,
|
1103
|
-
dst,
|
1104
|
-
..
|
1105
|
-
} => {
|
1106
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1107
|
-
let src1 = pretty_print_reg(src1.to_reg(), 8, allocs);
|
1108
|
-
let src2 = src2.pretty_print(8, allocs);
|
1109
|
-
let op = ljustify(op.to_string());
|
1110
|
-
format!("{op} {src1}, {src2}, {dst}")
|
1111
|
-
}
|
1112
|
-
|
1113
|
-
Inst::XmmRmRImmVex {
|
1114
|
-
op,
|
1115
|
-
src1,
|
1116
|
-
src2,
|
1117
|
-
dst,
|
1118
|
-
imm,
|
1119
|
-
..
|
1120
|
-
} => {
|
1121
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1122
|
-
let src1 = pretty_print_reg(src1.to_reg(), 8, allocs);
|
1123
|
-
let src2 = src2.pretty_print(8, allocs);
|
1124
|
-
let op = ljustify(op.to_string());
|
1125
|
-
format!("{op} ${imm}, {src1}, {src2}, {dst}")
|
1126
|
-
}
|
1127
|
-
|
1128
|
-
Inst::XmmVexPinsr {
|
1129
|
-
op,
|
1130
|
-
src1,
|
1131
|
-
src2,
|
1132
|
-
dst,
|
1133
|
-
imm,
|
1134
|
-
..
|
1135
|
-
} => {
|
1136
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1137
|
-
let src1 = pretty_print_reg(src1.to_reg(), 8, allocs);
|
1138
|
-
let src2 = src2.pretty_print(8, allocs);
|
1139
|
-
let op = ljustify(op.to_string());
|
1140
|
-
format!("{op} ${imm}, {src1}, {src2}, {dst}")
|
1141
|
-
}
|
1142
|
-
|
1143
|
-
Inst::XmmRmRVex3 {
|
1144
|
-
op,
|
1145
|
-
src1,
|
1146
|
-
src2,
|
1147
|
-
src3,
|
1148
|
-
dst,
|
1149
|
-
..
|
1150
|
-
} => {
|
1151
|
-
let src1 = pretty_print_reg(src1.to_reg(), 8, allocs);
|
1152
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1153
|
-
let src2 = pretty_print_reg(src2.to_reg(), 8, allocs);
|
1154
|
-
let src3 = src3.pretty_print(8, allocs);
|
1155
|
-
let op = ljustify(op.to_string());
|
1156
|
-
format!("{op} {src1}, {src2}, {src3}, {dst}")
|
1157
|
-
}
|
1158
|
-
|
1159
|
-
Inst::XmmRmRBlendVex {
|
1160
|
-
op,
|
1161
|
-
src1,
|
1162
|
-
src2,
|
1163
|
-
mask,
|
1164
|
-
dst,
|
1165
|
-
..
|
1166
|
-
} => {
|
1167
|
-
let src1 = pretty_print_reg(src1.to_reg(), 8, allocs);
|
1168
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1169
|
-
let src2 = src2.pretty_print(8, allocs);
|
1170
|
-
let mask = pretty_print_reg(mask.to_reg(), 8, allocs);
|
1171
|
-
let op = ljustify(op.to_string());
|
1172
|
-
format!("{op} {src1}, {src2}, {mask}, {dst}")
|
1173
|
-
}
|
1174
|
-
|
1175
|
-
Inst::XmmRmREvex {
|
1176
|
-
op,
|
1177
|
-
src1,
|
1178
|
-
src2,
|
1179
|
-
dst,
|
1180
|
-
..
|
1181
|
-
} => {
|
1182
|
-
let src1 = pretty_print_reg(src1.to_reg(), 8, allocs);
|
1183
|
-
let src2 = src2.pretty_print(8, allocs);
|
1184
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1185
|
-
let op = ljustify(op.to_string());
|
1186
|
-
format!("{op} {src2}, {src1}, {dst}")
|
1187
|
-
}
|
1188
|
-
|
1189
|
-
Inst::XmmRmREvex3 {
|
1190
|
-
op,
|
1191
|
-
src1,
|
1192
|
-
src2,
|
1193
|
-
src3,
|
1194
|
-
dst,
|
1195
|
-
..
|
1196
|
-
} => {
|
1197
|
-
let src1 = pretty_print_reg(src1.to_reg(), 8, allocs);
|
1198
|
-
let src2 = pretty_print_reg(src2.to_reg(), 8, allocs);
|
1199
|
-
let src3 = src3.pretty_print(8, allocs);
|
1200
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1201
|
-
let op = ljustify(op.to_string());
|
1202
|
-
format!("{op} {src3}, {src2}, {src1}, {dst}")
|
1203
|
-
}
|
1204
|
-
|
1205
|
-
Inst::XmmMinMaxSeq {
|
1206
|
-
lhs,
|
1207
|
-
rhs,
|
1208
|
-
dst,
|
1209
|
-
is_min,
|
1210
|
-
size,
|
1211
|
-
} => {
|
1212
|
-
let rhs = pretty_print_reg(rhs.to_reg(), 8, allocs);
|
1213
|
-
let lhs = pretty_print_reg(lhs.to_reg(), 8, allocs);
|
1214
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1215
|
-
let op = ljustify2(
|
1216
|
-
if *is_min {
|
1217
|
-
"xmm min seq ".to_string()
|
1218
|
-
} else {
|
1219
|
-
"xmm max seq ".to_string()
|
1220
|
-
},
|
1221
|
-
format!("f{}", size.to_bits()),
|
1222
|
-
);
|
1223
|
-
format!("{op} {lhs}, {rhs}, {dst}")
|
1224
|
-
}
|
1225
|
-
|
1226
|
-
Inst::XmmRmRImm {
|
1227
|
-
op,
|
1228
|
-
src1,
|
1229
|
-
src2,
|
1230
|
-
dst,
|
1231
|
-
imm,
|
1232
|
-
size,
|
1233
|
-
..
|
1234
|
-
} => {
|
1235
|
-
let src1 = pretty_print_reg(*src1, 8, allocs);
|
1236
|
-
let dst = pretty_print_reg(dst.to_reg(), 8, allocs);
|
1237
|
-
let src2 = src2.pretty_print(8, allocs);
|
1238
|
-
let op = ljustify(format!(
|
1239
|
-
"{}{}",
|
1240
|
-
op.to_string(),
|
1241
|
-
if *size == OperandSize::Size64 {
|
1242
|
-
".w"
|
1243
|
-
} else {
|
1244
|
-
""
|
1245
|
-
}
|
1246
|
-
));
|
1247
|
-
format!("{op} ${imm}, {src1}, {src2}, {dst}")
|
1248
|
-
}
|
1249
|
-
|
1250
|
-
Inst::XmmUninitializedValue { dst } => {
|
1251
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1252
|
-
let op = ljustify("uninit".into());
|
1253
|
-
format!("{op} {dst}")
|
1254
|
-
}
|
1255
|
-
|
1256
|
-
Inst::XmmToGpr {
|
1257
|
-
op,
|
1258
|
-
src,
|
1259
|
-
dst,
|
1260
|
-
dst_size,
|
1261
|
-
} => {
|
1262
|
-
let dst_size = dst_size.to_bytes();
|
1263
|
-
let src = pretty_print_reg(src.to_reg(), 8, allocs);
|
1264
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), dst_size, allocs);
|
1265
|
-
let op = ljustify(op.to_string());
|
1266
|
-
format!("{op} {src}, {dst}")
|
1267
|
-
}
|
1268
|
-
|
1269
|
-
Inst::XmmToGprVex {
|
1270
|
-
op,
|
1271
|
-
src,
|
1272
|
-
dst,
|
1273
|
-
dst_size,
|
1274
|
-
} => {
|
1275
|
-
let dst_size = dst_size.to_bytes();
|
1276
|
-
let src = pretty_print_reg(src.to_reg(), 8, allocs);
|
1277
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), dst_size, allocs);
|
1278
|
-
let op = ljustify(op.to_string());
|
1279
|
-
format!("{op} {src}, {dst}")
|
1280
|
-
}
|
1281
|
-
|
1282
|
-
Inst::XmmToGprImm { op, src, dst, imm } => {
|
1283
|
-
let src = pretty_print_reg(src.to_reg(), 8, allocs);
|
1284
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1285
|
-
let op = ljustify(op.to_string());
|
1286
|
-
format!("{op} ${imm}, {src}, {dst}")
|
1287
|
-
}
|
1288
|
-
|
1289
|
-
Inst::XmmToGprImmVex { op, src, dst, imm } => {
|
1290
|
-
let src = pretty_print_reg(src.to_reg(), 8, allocs);
|
1291
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1292
|
-
let op = ljustify(op.to_string());
|
1293
|
-
format!("{op} ${imm}, {src}, {dst}")
|
1294
|
-
}
|
1295
|
-
|
1296
|
-
Inst::GprToXmm {
|
1297
|
-
op,
|
1298
|
-
src,
|
1299
|
-
src_size,
|
1300
|
-
dst,
|
1301
|
-
} => {
|
1302
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1303
|
-
let src = src.pretty_print(src_size.to_bytes(), allocs);
|
1304
|
-
let op = ljustify(op.to_string());
|
1305
|
-
format!("{op} {src}, {dst}")
|
1306
|
-
}
|
1307
|
-
|
1308
|
-
Inst::GprToXmmVex {
|
1309
|
-
op,
|
1310
|
-
src,
|
1311
|
-
src_size,
|
1312
|
-
dst,
|
1313
|
-
} => {
|
1314
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1315
|
-
let src = src.pretty_print(src_size.to_bytes(), allocs);
|
1316
|
-
let op = ljustify(op.to_string());
|
1317
|
-
format!("{op} {src}, {dst}")
|
1318
|
-
}
|
1319
|
-
|
1320
|
-
Inst::XmmCmpRmR { op, src1, src2 } => {
|
1321
|
-
let src1 = pretty_print_reg(src1.to_reg(), 8, allocs);
|
1322
|
-
let src2 = src2.pretty_print(8, allocs);
|
1323
|
-
let op = ljustify(op.to_string());
|
1324
|
-
format!("{op} {src2}, {src1}")
|
1325
|
-
}
|
1326
|
-
|
1327
|
-
Inst::CvtIntToFloat {
|
1328
|
-
op,
|
1329
|
-
src1,
|
1330
|
-
src2,
|
1331
|
-
dst,
|
1332
|
-
src2_size,
|
1333
|
-
} => {
|
1334
|
-
let src1 = pretty_print_reg(src1.to_reg(), 8, allocs);
|
1335
|
-
let dst = pretty_print_reg(*dst.to_reg(), 8, allocs);
|
1336
|
-
let src2 = src2.pretty_print(src2_size.to_bytes(), allocs);
|
1337
|
-
let op = ljustify(op.to_string());
|
1338
|
-
format!("{op} {src1}, {src2}, {dst}")
|
1339
|
-
}
|
1340
|
-
|
1341
|
-
Inst::CvtIntToFloatVex {
|
1342
|
-
op,
|
1343
|
-
src1,
|
1344
|
-
src2,
|
1345
|
-
dst,
|
1346
|
-
src2_size,
|
1347
|
-
} => {
|
1348
|
-
let dst = pretty_print_reg(*dst.to_reg(), 8, allocs);
|
1349
|
-
let src1 = pretty_print_reg(src1.to_reg(), 8, allocs);
|
1350
|
-
let src2 = src2.pretty_print(src2_size.to_bytes(), allocs);
|
1351
|
-
let op = ljustify(op.to_string());
|
1352
|
-
format!("{op} {src1}, {src2}, {dst}")
|
1353
|
-
}
|
1354
|
-
|
1355
|
-
Inst::XmmCmpRmRVex { op, src1, src2 } => {
|
1356
|
-
let src1 = pretty_print_reg(src1.to_reg(), 8, allocs);
|
1357
|
-
let src2 = src2.pretty_print(8, allocs);
|
1358
|
-
format!("{} {src2}, {src1}", ljustify(op.to_string()))
|
1359
|
-
}
|
1360
|
-
|
1361
|
-
Inst::CvtUint64ToFloatSeq {
|
1362
|
-
src,
|
1363
|
-
dst,
|
1364
|
-
dst_size,
|
1365
|
-
tmp_gpr1,
|
1366
|
-
tmp_gpr2,
|
1367
|
-
..
|
1368
|
-
} => {
|
1369
|
-
let src = pretty_print_reg(src.to_reg(), 8, allocs);
|
1370
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), dst_size.to_bytes(), allocs);
|
1371
|
-
let tmp_gpr1 = pretty_print_reg(tmp_gpr1.to_reg().to_reg(), 8, allocs);
|
1372
|
-
let tmp_gpr2 = pretty_print_reg(tmp_gpr2.to_reg().to_reg(), 8, allocs);
|
1373
|
-
let op = ljustify(format!(
|
1374
|
-
"u64_to_{}_seq",
|
1375
|
-
if *dst_size == OperandSize::Size64 {
|
1376
|
-
"f64"
|
1377
|
-
} else {
|
1378
|
-
"f32"
|
1379
|
-
}
|
1380
|
-
));
|
1381
|
-
format!("{op} {src}, {dst}, {tmp_gpr1}, {tmp_gpr2}")
|
1382
|
-
}
|
1383
|
-
|
1384
|
-
Inst::CvtFloatToSintSeq {
|
1385
|
-
src,
|
1386
|
-
dst,
|
1387
|
-
src_size,
|
1388
|
-
dst_size,
|
1389
|
-
tmp_xmm,
|
1390
|
-
tmp_gpr,
|
1391
|
-
is_saturating,
|
1392
|
-
} => {
|
1393
|
-
let src = pretty_print_reg(src.to_reg(), src_size.to_bytes(), allocs);
|
1394
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), dst_size.to_bytes(), allocs);
|
1395
|
-
let tmp_gpr = pretty_print_reg(tmp_gpr.to_reg().to_reg(), 8, allocs);
|
1396
|
-
let tmp_xmm = pretty_print_reg(tmp_xmm.to_reg().to_reg(), 8, allocs);
|
1397
|
-
let op = ljustify(format!(
|
1398
|
-
"cvt_float{}_to_sint{}{}_seq",
|
1399
|
-
src_size.to_bits(),
|
1400
|
-
dst_size.to_bits(),
|
1401
|
-
if *is_saturating { "_sat" } else { "" },
|
1402
|
-
));
|
1403
|
-
format!("{op} {src}, {dst}, {tmp_gpr}, {tmp_xmm}")
|
1404
|
-
}
|
1405
|
-
|
1406
|
-
Inst::CvtFloatToUintSeq {
|
1407
|
-
src,
|
1408
|
-
dst,
|
1409
|
-
src_size,
|
1410
|
-
dst_size,
|
1411
|
-
tmp_gpr,
|
1412
|
-
tmp_xmm,
|
1413
|
-
tmp_xmm2,
|
1414
|
-
is_saturating,
|
1415
|
-
} => {
|
1416
|
-
let src = pretty_print_reg(src.to_reg(), src_size.to_bytes(), allocs);
|
1417
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), dst_size.to_bytes(), allocs);
|
1418
|
-
let tmp_gpr = pretty_print_reg(tmp_gpr.to_reg().to_reg(), 8, allocs);
|
1419
|
-
let tmp_xmm = pretty_print_reg(tmp_xmm.to_reg().to_reg(), 8, allocs);
|
1420
|
-
let tmp_xmm2 = pretty_print_reg(tmp_xmm2.to_reg().to_reg(), 8, allocs);
|
1421
|
-
let op = ljustify(format!(
|
1422
|
-
"cvt_float{}_to_uint{}{}_seq",
|
1423
|
-
src_size.to_bits(),
|
1424
|
-
dst_size.to_bits(),
|
1425
|
-
if *is_saturating { "_sat" } else { "" },
|
1426
|
-
));
|
1427
|
-
format!("{op} {src}, {dst}, {tmp_gpr}, {tmp_xmm}, {tmp_xmm2}")
|
1428
|
-
}
|
1429
|
-
|
1430
|
-
Inst::Imm {
|
1431
|
-
dst_size,
|
1432
|
-
simm64,
|
1433
|
-
dst,
|
1434
|
-
} => {
|
1435
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), dst_size.to_bytes(), allocs);
|
1436
|
-
if *dst_size == OperandSize::Size64 {
|
1437
|
-
let op = ljustify("movabsq".to_string());
|
1438
|
-
let imm = *simm64 as i64;
|
1439
|
-
format!("{op} ${imm}, {dst}")
|
1440
|
-
} else {
|
1441
|
-
let op = ljustify("movl".to_string());
|
1442
|
-
let imm = (*simm64 as u32) as i32;
|
1443
|
-
format!("{op} ${imm}, {dst}")
|
1444
|
-
}
|
1445
|
-
}
|
1446
|
-
|
1447
|
-
Inst::MovImmM { size, simm32, dst } => {
|
1448
|
-
let dst = dst.pretty_print(size.to_bytes(), allocs);
|
1449
|
-
let suffix = suffix_bwlq(*size);
|
1450
|
-
let imm = match *size {
|
1451
|
-
OperandSize::Size8 => ((*simm32 as u8) as i8).to_string(),
|
1452
|
-
OperandSize::Size16 => ((*simm32 as u16) as i16).to_string(),
|
1453
|
-
OperandSize::Size32 => simm32.to_string(),
|
1454
|
-
OperandSize::Size64 => (*simm32 as i64).to_string(),
|
1455
|
-
};
|
1456
|
-
let op = ljustify2("mov".to_string(), suffix);
|
1457
|
-
format!("{op} ${imm}, {dst}")
|
1458
|
-
}
|
1459
|
-
|
1460
|
-
Inst::MovRR { size, src, dst } => {
|
1461
|
-
let src = pretty_print_reg(src.to_reg(), size.to_bytes(), allocs);
|
1462
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes(), allocs);
|
1463
|
-
let op = ljustify2("mov".to_string(), suffix_lq(*size));
|
1464
|
-
format!("{op} {src}, {dst}")
|
1465
|
-
}
|
1466
|
-
|
1467
|
-
Inst::MovFromPReg { src, dst } => {
|
1468
|
-
allocs.next_fixed_nonallocatable(*src);
|
1469
|
-
let src: Reg = (*src).into();
|
1470
|
-
let src = regs::show_ireg_sized(src, 8);
|
1471
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1472
|
-
let op = ljustify("movq".to_string());
|
1473
|
-
format!("{op} {src}, {dst}")
|
1474
|
-
}
|
1475
|
-
|
1476
|
-
Inst::MovToPReg { src, dst } => {
|
1477
|
-
let src = pretty_print_reg(src.to_reg(), 8, allocs);
|
1478
|
-
allocs.next_fixed_nonallocatable(*dst);
|
1479
|
-
let dst: Reg = (*dst).into();
|
1480
|
-
let dst = regs::show_ireg_sized(dst, 8);
|
1481
|
-
let op = ljustify("movq".to_string());
|
1482
|
-
format!("{op} {src}, {dst}")
|
1483
|
-
}
|
1484
|
-
|
1485
|
-
Inst::MovzxRmR {
|
1486
|
-
ext_mode, src, dst, ..
|
1487
|
-
} => {
|
1488
|
-
let dst_size = if *ext_mode == ExtMode::LQ {
|
1489
|
-
4
|
1490
|
-
} else {
|
1491
|
-
ext_mode.dst_size()
|
1492
|
-
};
|
1493
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), dst_size, allocs);
|
1494
|
-
let src = src.pretty_print(ext_mode.src_size(), allocs);
|
1495
|
-
|
1496
|
-
if *ext_mode == ExtMode::LQ {
|
1497
|
-
let op = ljustify("movl".to_string());
|
1498
|
-
format!("{op} {src}, {dst}")
|
1499
|
-
} else {
|
1500
|
-
let op = ljustify2("movz".to_string(), ext_mode.to_string());
|
1501
|
-
format!("{op} {src}, {dst}")
|
1502
|
-
}
|
1503
|
-
}
|
1504
|
-
|
1505
|
-
Inst::Mov64MR { src, dst, .. } => {
|
1506
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1507
|
-
let src = src.pretty_print(8, allocs);
|
1508
|
-
let op = ljustify("movq".to_string());
|
1509
|
-
format!("{op} {src}, {dst}")
|
1510
|
-
}
|
1511
|
-
|
1512
|
-
Inst::LoadEffectiveAddress { addr, dst, size } => {
|
1513
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes(), allocs);
|
1514
|
-
let addr = addr.pretty_print(8, allocs);
|
1515
|
-
let op = ljustify("lea".to_string());
|
1516
|
-
format!("{op} {addr}, {dst}")
|
1517
|
-
}
|
1518
|
-
|
1519
|
-
Inst::MovsxRmR {
|
1520
|
-
ext_mode, src, dst, ..
|
1521
|
-
} => {
|
1522
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), ext_mode.dst_size(), allocs);
|
1523
|
-
let src = src.pretty_print(ext_mode.src_size(), allocs);
|
1524
|
-
let op = ljustify2("movs".to_string(), ext_mode.to_string());
|
1525
|
-
format!("{op} {src}, {dst}")
|
1526
|
-
}
|
1527
|
-
|
1528
|
-
Inst::MovRM { size, src, dst, .. } => {
|
1529
|
-
let src = pretty_print_reg(src.to_reg(), size.to_bytes(), allocs);
|
1530
|
-
let dst = dst.pretty_print(size.to_bytes(), allocs);
|
1531
|
-
let op = ljustify2("mov".to_string(), suffix_bwlq(*size));
|
1532
|
-
format!("{op} {src}, {dst}")
|
1533
|
-
}
|
1534
|
-
|
1535
|
-
Inst::ShiftR {
|
1536
|
-
size,
|
1537
|
-
kind,
|
1538
|
-
num_bits,
|
1539
|
-
src,
|
1540
|
-
dst,
|
1541
|
-
..
|
1542
|
-
} => {
|
1543
|
-
let src = pretty_print_reg(src.to_reg(), size.to_bytes(), allocs);
|
1544
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes(), allocs);
|
1545
|
-
match num_bits.as_imm8_reg() {
|
1546
|
-
&Imm8Reg::Reg { reg } => {
|
1547
|
-
let reg = pretty_print_reg(reg, 1, allocs);
|
1548
|
-
let op = ljustify2(kind.to_string(), suffix_bwlq(*size));
|
1549
|
-
format!("{op} {reg}, {src}, {dst}")
|
1550
|
-
}
|
1551
|
-
|
1552
|
-
&Imm8Reg::Imm8 { imm: num_bits } => {
|
1553
|
-
let op = ljustify2(kind.to_string(), suffix_bwlq(*size));
|
1554
|
-
format!("{op} ${num_bits}, {src}, {dst}")
|
1555
|
-
}
|
1556
|
-
}
|
1557
|
-
}
|
1558
|
-
|
1559
|
-
Inst::XmmRmiReg {
|
1560
|
-
opcode,
|
1561
|
-
src1,
|
1562
|
-
src2,
|
1563
|
-
dst,
|
1564
|
-
..
|
1565
|
-
} => {
|
1566
|
-
let src1 = pretty_print_reg(src1.to_reg(), 8, allocs);
|
1567
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1568
|
-
let src2 = src2.pretty_print(8, allocs);
|
1569
|
-
let op = ljustify(opcode.to_string());
|
1570
|
-
format!("{op} {src1}, {src2}, {dst}")
|
1571
|
-
}
|
1572
|
-
|
1573
|
-
Inst::CmpRmiR {
|
1574
|
-
size,
|
1575
|
-
src1,
|
1576
|
-
src2,
|
1577
|
-
opcode,
|
1578
|
-
} => {
|
1579
|
-
let src1 = pretty_print_reg(src1.to_reg(), size.to_bytes(), allocs);
|
1580
|
-
let src2 = src2.pretty_print(size.to_bytes(), allocs);
|
1581
|
-
let op = match opcode {
|
1582
|
-
CmpOpcode::Cmp => "cmp",
|
1583
|
-
CmpOpcode::Test => "test",
|
1584
|
-
};
|
1585
|
-
let op = ljustify2(op.to_string(), suffix_bwlq(*size));
|
1586
|
-
format!("{op} {src2}, {src1}")
|
1587
|
-
}
|
1588
|
-
|
1589
|
-
Inst::Setcc { cc, dst } => {
|
1590
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 1, allocs);
|
1591
|
-
let op = ljustify2("set".to_string(), cc.to_string());
|
1592
|
-
format!("{op} {dst}")
|
1593
|
-
}
|
1594
|
-
|
1595
|
-
Inst::Bswap { size, src, dst } => {
|
1596
|
-
let src = pretty_print_reg(src.to_reg(), size.to_bytes(), allocs);
|
1597
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes(), allocs);
|
1598
|
-
let op = ljustify2("bswap".to_string(), suffix_bwlq(*size));
|
1599
|
-
format!("{op} {src}, {dst}")
|
1600
|
-
}
|
1601
|
-
|
1602
|
-
Inst::Cmove {
|
1603
|
-
size,
|
1604
|
-
cc,
|
1605
|
-
consequent,
|
1606
|
-
alternative,
|
1607
|
-
dst,
|
1608
|
-
} => {
|
1609
|
-
let alternative = pretty_print_reg(alternative.to_reg(), size.to_bytes(), allocs);
|
1610
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size.to_bytes(), allocs);
|
1611
|
-
let consequent = consequent.pretty_print(size.to_bytes(), allocs);
|
1612
|
-
let op = ljustify(format!("cmov{}{}", cc.to_string(), suffix_bwlq(*size)));
|
1613
|
-
format!("{op} {consequent}, {alternative}, {dst}")
|
1614
|
-
}
|
1615
|
-
|
1616
|
-
Inst::XmmCmove {
|
1617
|
-
ty,
|
1618
|
-
cc,
|
1619
|
-
consequent,
|
1620
|
-
alternative,
|
1621
|
-
dst,
|
1622
|
-
..
|
1623
|
-
} => {
|
1624
|
-
let size = u8::try_from(ty.bytes()).unwrap();
|
1625
|
-
let alternative = pretty_print_reg(alternative.to_reg(), size, allocs);
|
1626
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), size, allocs);
|
1627
|
-
let consequent = pretty_print_reg(consequent.to_reg(), size, allocs);
|
1628
|
-
let suffix = match *ty {
|
1629
|
-
types::F64 => "sd",
|
1630
|
-
types::F32 => "ss",
|
1631
|
-
types::F32X4 => "aps",
|
1632
|
-
types::F64X2 => "apd",
|
1633
|
-
_ => "dqa",
|
1634
|
-
};
|
1635
|
-
let cc = cc.invert();
|
1636
|
-
format!(
|
1637
|
-
"mov{suffix} {alternative}, {dst}; \
|
1638
|
-
j{cc} $next; \
|
1639
|
-
mov{suffix} {consequent}, {dst}; \
|
1640
|
-
$next:"
|
1641
|
-
)
|
1642
|
-
}
|
1643
|
-
|
1644
|
-
Inst::Push64 { src } => {
|
1645
|
-
let src = src.pretty_print(8, allocs);
|
1646
|
-
let op = ljustify("pushq".to_string());
|
1647
|
-
format!("{op} {src}")
|
1648
|
-
}
|
1649
|
-
|
1650
|
-
Inst::StackProbeLoop {
|
1651
|
-
tmp,
|
1652
|
-
frame_size,
|
1653
|
-
guard_size,
|
1654
|
-
} => {
|
1655
|
-
let tmp = pretty_print_reg(tmp.to_reg(), 8, allocs);
|
1656
|
-
let op = ljustify("stack_probe_loop".to_string());
|
1657
|
-
format!("{op} {tmp}, frame_size={frame_size}, guard_size={guard_size}")
|
1658
|
-
}
|
1659
|
-
|
1660
|
-
Inst::Pop64 { dst } => {
|
1661
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1662
|
-
let op = ljustify("popq".to_string());
|
1663
|
-
format!("{op} {dst}")
|
1664
|
-
}
|
1665
|
-
|
1666
|
-
Inst::CallKnown { dest, .. } => {
|
1667
|
-
let op = ljustify("call".to_string());
|
1668
|
-
format!("{op} {dest:?}")
|
1669
|
-
}
|
1670
|
-
|
1671
|
-
Inst::CallUnknown { dest, .. } => {
|
1672
|
-
let dest = dest.pretty_print(8, allocs);
|
1673
|
-
let op = ljustify("call".to_string());
|
1674
|
-
format!("{op} *{dest}")
|
1675
|
-
}
|
1676
|
-
|
1677
|
-
Inst::ReturnCallKnown { callee, info } => {
|
1678
|
-
let ReturnCallInfo {
|
1679
|
-
uses,
|
1680
|
-
new_stack_arg_size,
|
1681
|
-
tmp,
|
1682
|
-
} = &**info;
|
1683
|
-
let tmp = pretty_print_reg(tmp.to_reg().to_reg(), 8, allocs);
|
1684
|
-
let mut s =
|
1685
|
-
format!("return_call_known {callee:?} ({new_stack_arg_size}) tmp={tmp}");
|
1686
|
-
for ret in uses {
|
1687
|
-
let preg = regs::show_reg(ret.preg);
|
1688
|
-
let vreg = pretty_print_reg(ret.vreg, 8, allocs);
|
1689
|
-
write!(&mut s, " {vreg}={preg}").unwrap();
|
1690
|
-
}
|
1691
|
-
s
|
1692
|
-
}
|
1693
|
-
|
1694
|
-
Inst::ReturnCallUnknown { callee, info } => {
|
1695
|
-
let ReturnCallInfo {
|
1696
|
-
uses,
|
1697
|
-
new_stack_arg_size,
|
1698
|
-
tmp,
|
1699
|
-
} = &**info;
|
1700
|
-
let callee = pretty_print_reg(*callee, 8, allocs);
|
1701
|
-
let tmp = pretty_print_reg(tmp.to_reg().to_reg(), 8, allocs);
|
1702
|
-
let mut s =
|
1703
|
-
format!("return_call_unknown {callee} ({new_stack_arg_size}) tmp={tmp}");
|
1704
|
-
for ret in uses {
|
1705
|
-
let preg = regs::show_reg(ret.preg);
|
1706
|
-
let vreg = pretty_print_reg(ret.vreg, 8, allocs);
|
1707
|
-
write!(&mut s, " {vreg}={preg}").unwrap();
|
1708
|
-
}
|
1709
|
-
s
|
1710
|
-
}
|
1711
|
-
|
1712
|
-
Inst::Args { args } => {
|
1713
|
-
let mut s = "args".to_string();
|
1714
|
-
for arg in args {
|
1715
|
-
let preg = regs::show_reg(arg.preg);
|
1716
|
-
let def = pretty_print_reg(arg.vreg.to_reg(), 8, allocs);
|
1717
|
-
write!(&mut s, " {def}={preg}").unwrap();
|
1718
|
-
}
|
1719
|
-
s
|
1720
|
-
}
|
1721
|
-
|
1722
|
-
Inst::Rets { rets } => {
|
1723
|
-
let mut s = "rets".to_string();
|
1724
|
-
for ret in rets {
|
1725
|
-
let preg = regs::show_reg(ret.preg);
|
1726
|
-
let vreg = pretty_print_reg(ret.vreg, 8, allocs);
|
1727
|
-
write!(&mut s, " {vreg}={preg}").unwrap();
|
1728
|
-
}
|
1729
|
-
s
|
1730
|
-
}
|
1731
|
-
|
1732
|
-
Inst::Ret { stack_bytes_to_pop } => {
|
1733
|
-
let mut s = "ret".to_string();
|
1734
|
-
if *stack_bytes_to_pop != 0 {
|
1735
|
-
write!(&mut s, " {stack_bytes_to_pop}").unwrap();
|
1736
|
-
}
|
1737
|
-
s
|
1738
|
-
}
|
1739
|
-
|
1740
|
-
Inst::JmpKnown { dst } => {
|
1741
|
-
let op = ljustify("jmp".to_string());
|
1742
|
-
let dst = dst.to_string();
|
1743
|
-
format!("{op} {dst}")
|
1744
|
-
}
|
1745
|
-
|
1746
|
-
Inst::JmpIf { cc, taken } => {
|
1747
|
-
let taken = taken.to_string();
|
1748
|
-
let op = ljustify2("j".to_string(), cc.to_string());
|
1749
|
-
format!("{op} {taken}")
|
1750
|
-
}
|
1751
|
-
|
1752
|
-
Inst::JmpCond {
|
1753
|
-
cc,
|
1754
|
-
taken,
|
1755
|
-
not_taken,
|
1756
|
-
} => {
|
1757
|
-
let taken = taken.to_string();
|
1758
|
-
let not_taken = not_taken.to_string();
|
1759
|
-
let op = ljustify2("j".to_string(), cc.to_string());
|
1760
|
-
format!("{op} {taken}; j {not_taken}")
|
1761
|
-
}
|
1762
|
-
|
1763
|
-
Inst::JmpTableSeq {
|
1764
|
-
idx, tmp1, tmp2, ..
|
1765
|
-
} => {
|
1766
|
-
let idx = pretty_print_reg(*idx, 8, allocs);
|
1767
|
-
let tmp1 = pretty_print_reg(tmp1.to_reg(), 8, allocs);
|
1768
|
-
let tmp2 = pretty_print_reg(tmp2.to_reg(), 8, allocs);
|
1769
|
-
let op = ljustify("br_table".into());
|
1770
|
-
format!("{op} {idx}, {tmp1}, {tmp2}")
|
1771
|
-
}
|
1772
|
-
|
1773
|
-
Inst::JmpUnknown { target } => {
|
1774
|
-
let target = target.pretty_print(8, allocs);
|
1775
|
-
let op = ljustify("jmp".to_string());
|
1776
|
-
format!("{op} *{target}")
|
1777
|
-
}
|
1778
|
-
|
1779
|
-
Inst::TrapIf { cc, trap_code, .. } => {
|
1780
|
-
format!("j{cc} #trap={trap_code}")
|
1781
|
-
}
|
1782
|
-
|
1783
|
-
Inst::TrapIfAnd {
|
1784
|
-
cc1,
|
1785
|
-
cc2,
|
1786
|
-
trap_code,
|
1787
|
-
..
|
1788
|
-
} => {
|
1789
|
-
let cc1 = cc1.invert();
|
1790
|
-
let cc2 = cc2.invert();
|
1791
|
-
format!("trap_if_and {cc1}, {cc2}, {trap_code}")
|
1792
|
-
}
|
1793
|
-
|
1794
|
-
Inst::TrapIfOr {
|
1795
|
-
cc1,
|
1796
|
-
cc2,
|
1797
|
-
trap_code,
|
1798
|
-
..
|
1799
|
-
} => {
|
1800
|
-
let cc2 = cc2.invert();
|
1801
|
-
format!("trap_if_or {cc1}, {cc2}, {trap_code}")
|
1802
|
-
}
|
1803
|
-
|
1804
|
-
Inst::LoadExtName {
|
1805
|
-
dst, name, offset, ..
|
1806
|
-
} => {
|
1807
|
-
let dst = pretty_print_reg(dst.to_reg(), 8, allocs);
|
1808
|
-
let name = name.display(None);
|
1809
|
-
let op = ljustify("load_ext_name".into());
|
1810
|
-
format!("{op} {name}+{offset}, {dst}")
|
1811
|
-
}
|
1812
|
-
|
1813
|
-
Inst::LockCmpxchg {
|
1814
|
-
ty,
|
1815
|
-
replacement,
|
1816
|
-
expected,
|
1817
|
-
mem,
|
1818
|
-
dst_old,
|
1819
|
-
..
|
1820
|
-
} => {
|
1821
|
-
let size = ty.bytes() as u8;
|
1822
|
-
let replacement = pretty_print_reg(*replacement, size, allocs);
|
1823
|
-
let expected = pretty_print_reg(*expected, size, allocs);
|
1824
|
-
let dst_old = pretty_print_reg(dst_old.to_reg(), size, allocs);
|
1825
|
-
let mem = mem.pretty_print(size, allocs);
|
1826
|
-
let suffix = suffix_bwlq(OperandSize::from_bytes(size as u32));
|
1827
|
-
format!(
|
1828
|
-
"lock cmpxchg{suffix} {replacement}, {mem}, expected={expected}, dst_old={dst_old}"
|
1829
|
-
)
|
1830
|
-
}
|
1831
|
-
|
1832
|
-
Inst::AtomicRmwSeq { ty, op, .. } => {
|
1833
|
-
let ty = ty.bits();
|
1834
|
-
format!(
|
1835
|
-
"atomically {{ {ty}_bits_at_[%r9]) {op:?}= %r10; %rax = old_value_at_[%r9]; %r11, %rflags = trash }}"
|
1836
|
-
)
|
1837
|
-
}
|
1838
|
-
|
1839
|
-
Inst::Fence { kind } => match kind {
|
1840
|
-
FenceKind::MFence => "mfence".to_string(),
|
1841
|
-
FenceKind::LFence => "lfence".to_string(),
|
1842
|
-
FenceKind::SFence => "sfence".to_string(),
|
1843
|
-
},
|
1844
|
-
|
1845
|
-
Inst::VirtualSPOffsetAdj { offset } => format!("virtual_sp_offset_adjust {offset}"),
|
1846
|
-
|
1847
|
-
Inst::Hlt => "hlt".into(),
|
1848
|
-
|
1849
|
-
Inst::Ud2 { trap_code } => format!("ud2 {trap_code}"),
|
1850
|
-
|
1851
|
-
Inst::ElfTlsGetAddr { ref symbol, dst } => {
|
1852
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1853
|
-
format!("{dst} = elf_tls_get_addr {symbol:?}")
|
1854
|
-
}
|
1855
|
-
|
1856
|
-
Inst::MachOTlsGetAddr { ref symbol, dst } => {
|
1857
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1858
|
-
format!("{dst} = macho_tls_get_addr {symbol:?}")
|
1859
|
-
}
|
1860
|
-
|
1861
|
-
Inst::CoffTlsGetAddr {
|
1862
|
-
ref symbol,
|
1863
|
-
dst,
|
1864
|
-
tmp,
|
1865
|
-
} => {
|
1866
|
-
let dst = pretty_print_reg(dst.to_reg().to_reg(), 8, allocs);
|
1867
|
-
let tmp = allocs.next(tmp.to_reg().to_reg());
|
1868
|
-
|
1869
|
-
let mut s = format!("{dst} = coff_tls_get_addr {symbol:?}");
|
1870
|
-
if tmp.is_virtual() {
|
1871
|
-
let tmp = show_ireg_sized(tmp, 8);
|
1872
|
-
write!(&mut s, ", {tmp}").unwrap();
|
1873
|
-
};
|
1874
|
-
|
1875
|
-
s
|
1876
|
-
}
|
1877
|
-
|
1878
|
-
Inst::Unwind { inst } => format!("unwind {inst:?}"),
|
1879
|
-
|
1880
|
-
Inst::DummyUse { reg } => {
|
1881
|
-
let reg = pretty_print_reg(*reg, 8, allocs);
|
1882
|
-
format!("dummy_use {reg}")
|
1883
|
-
}
|
1884
|
-
}
|
1885
|
-
}
|
1886
|
-
}
|
1887
|
-
|
1888
|
-
impl fmt::Debug for Inst {
|
1889
|
-
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
1890
|
-
write!(
|
1891
|
-
fmt,
|
1892
|
-
"{}",
|
1893
|
-
self.pretty_print_inst(&[], &mut Default::default())
|
1894
|
-
)
|
1895
|
-
}
|
1896
|
-
}
|
1897
|
-
|
1898
|
-
fn x64_get_operands(inst: &mut Inst, collector: &mut impl OperandVisitor) {
|
1899
|
-
// Note: because we need to statically know the indices of each
|
1900
|
-
// reg in the operands list in order to fetch its allocation
|
1901
|
-
// later, we put the variable-operand-count bits (the RegMem,
|
1902
|
-
// RegMemImm, etc args) last. regalloc2 doesn't care what order
|
1903
|
-
// the operands come in; they can be freely reordered.
|
1904
|
-
|
1905
|
-
// N.B.: we MUST keep the below in careful sync with (i) emission,
|
1906
|
-
// in `emit.rs`, and (ii) pretty-printing, in the `pretty_print`
|
1907
|
-
// method above.
|
1908
|
-
match inst {
|
1909
|
-
Inst::AluRmiR {
|
1910
|
-
src1, src2, dst, ..
|
1911
|
-
} => {
|
1912
|
-
collector.reg_use(src1);
|
1913
|
-
collector.reg_reuse_def(dst, 0);
|
1914
|
-
src2.get_operands(collector);
|
1915
|
-
}
|
1916
|
-
Inst::AluConstOp { dst, .. } => collector.reg_def(dst),
|
1917
|
-
Inst::AluRM { src1_dst, src2, .. } => {
|
1918
|
-
collector.reg_use(src2);
|
1919
|
-
src1_dst.get_operands(collector);
|
1920
|
-
}
|
1921
|
-
Inst::AluRmRVex {
|
1922
|
-
src1, src2, dst, ..
|
1923
|
-
} => {
|
1924
|
-
collector.reg_def(dst);
|
1925
|
-
collector.reg_use(src1);
|
1926
|
-
src2.get_operands(collector);
|
1927
|
-
}
|
1928
|
-
Inst::Not { src, dst, .. } => {
|
1929
|
-
collector.reg_use(src);
|
1930
|
-
collector.reg_reuse_def(dst, 0);
|
1931
|
-
}
|
1932
|
-
Inst::Neg { src, dst, .. } => {
|
1933
|
-
collector.reg_use(src);
|
1934
|
-
collector.reg_reuse_def(dst, 0);
|
1935
|
-
}
|
1936
|
-
Inst::Div {
|
1937
|
-
divisor,
|
1938
|
-
dividend_lo,
|
1939
|
-
dividend_hi,
|
1940
|
-
dst_quotient,
|
1941
|
-
dst_remainder,
|
1942
|
-
..
|
1943
|
-
} => {
|
1944
|
-
divisor.get_operands(collector);
|
1945
|
-
collector.reg_fixed_use(dividend_lo, regs::rax());
|
1946
|
-
collector.reg_fixed_use(dividend_hi, regs::rdx());
|
1947
|
-
collector.reg_fixed_def(dst_quotient, regs::rax());
|
1948
|
-
collector.reg_fixed_def(dst_remainder, regs::rdx());
|
1949
|
-
}
|
1950
|
-
Inst::CheckedSRemSeq {
|
1951
|
-
divisor,
|
1952
|
-
dividend_lo,
|
1953
|
-
dividend_hi,
|
1954
|
-
dst_quotient,
|
1955
|
-
dst_remainder,
|
1956
|
-
..
|
1957
|
-
} => {
|
1958
|
-
collector.reg_use(divisor);
|
1959
|
-
collector.reg_fixed_use(dividend_lo, regs::rax());
|
1960
|
-
collector.reg_fixed_use(dividend_hi, regs::rdx());
|
1961
|
-
collector.reg_fixed_def(dst_quotient, regs::rax());
|
1962
|
-
collector.reg_fixed_def(dst_remainder, regs::rdx());
|
1963
|
-
}
|
1964
|
-
Inst::Div8 {
|
1965
|
-
divisor,
|
1966
|
-
dividend,
|
1967
|
-
dst,
|
1968
|
-
..
|
1969
|
-
} => {
|
1970
|
-
divisor.get_operands(collector);
|
1971
|
-
collector.reg_fixed_use(dividend, regs::rax());
|
1972
|
-
collector.reg_fixed_def(dst, regs::rax());
|
1973
|
-
}
|
1974
|
-
Inst::CheckedSRemSeq8 {
|
1975
|
-
divisor,
|
1976
|
-
dividend,
|
1977
|
-
dst,
|
1978
|
-
..
|
1979
|
-
} => {
|
1980
|
-
collector.reg_use(divisor);
|
1981
|
-
collector.reg_fixed_use(dividend, regs::rax());
|
1982
|
-
collector.reg_fixed_def(dst, regs::rax());
|
1983
|
-
}
|
1984
|
-
Inst::Mul {
|
1985
|
-
src1,
|
1986
|
-
src2,
|
1987
|
-
dst_lo,
|
1988
|
-
dst_hi,
|
1989
|
-
..
|
1990
|
-
} => {
|
1991
|
-
collector.reg_fixed_use(src1, regs::rax());
|
1992
|
-
collector.reg_fixed_def(dst_lo, regs::rax());
|
1993
|
-
collector.reg_fixed_def(dst_hi, regs::rdx());
|
1994
|
-
src2.get_operands(collector);
|
1995
|
-
}
|
1996
|
-
Inst::Mul8 {
|
1997
|
-
src1, src2, dst, ..
|
1998
|
-
} => {
|
1999
|
-
collector.reg_fixed_use(src1, regs::rax());
|
2000
|
-
collector.reg_fixed_def(dst, regs::rax());
|
2001
|
-
src2.get_operands(collector);
|
2002
|
-
}
|
2003
|
-
Inst::IMul {
|
2004
|
-
src1, src2, dst, ..
|
2005
|
-
} => {
|
2006
|
-
collector.reg_use(src1);
|
2007
|
-
collector.reg_reuse_def(dst, 0);
|
2008
|
-
src2.get_operands(collector);
|
2009
|
-
}
|
2010
|
-
Inst::IMulImm { src1, dst, .. } => {
|
2011
|
-
collector.reg_def(dst);
|
2012
|
-
src1.get_operands(collector);
|
2013
|
-
}
|
2014
|
-
Inst::SignExtendData { size, src, dst } => {
|
2015
|
-
match size {
|
2016
|
-
OperandSize::Size8 => {
|
2017
|
-
// Note `rax` on both src and dest: 8->16 extend
|
2018
|
-
// does AL -> AX.
|
2019
|
-
collector.reg_fixed_use(src, regs::rax());
|
2020
|
-
collector.reg_fixed_def(dst, regs::rax());
|
2021
|
-
}
|
2022
|
-
_ => {
|
2023
|
-
// All other widths do RAX -> RDX (AX -> DX:AX,
|
2024
|
-
// EAX -> EDX:EAX).
|
2025
|
-
collector.reg_fixed_use(src, regs::rax());
|
2026
|
-
collector.reg_fixed_def(dst, regs::rdx());
|
2027
|
-
}
|
2028
|
-
}
|
2029
|
-
}
|
2030
|
-
Inst::UnaryRmR { src, dst, .. }
|
2031
|
-
| Inst::UnaryRmRVex { src, dst, .. }
|
2032
|
-
| Inst::UnaryRmRImmVex { src, dst, .. } => {
|
2033
|
-
collector.reg_def(dst);
|
2034
|
-
src.get_operands(collector);
|
2035
|
-
}
|
2036
|
-
Inst::XmmUnaryRmR { src, dst, .. } | Inst::XmmUnaryRmRImm { src, dst, .. } => {
|
2037
|
-
collector.reg_def(dst);
|
2038
|
-
src.get_operands(collector);
|
2039
|
-
}
|
2040
|
-
Inst::XmmUnaryRmREvex { src, dst, .. }
|
2041
|
-
| Inst::XmmUnaryRmRImmEvex { src, dst, .. }
|
2042
|
-
| Inst::XmmUnaryRmRUnaligned { src, dst, .. }
|
2043
|
-
| Inst::XmmUnaryRmRVex { src, dst, .. }
|
2044
|
-
| Inst::XmmUnaryRmRImmVex { src, dst, .. } => {
|
2045
|
-
collector.reg_def(dst);
|
2046
|
-
src.get_operands(collector);
|
2047
|
-
}
|
2048
|
-
Inst::XmmRmR {
|
2049
|
-
src1, src2, dst, ..
|
2050
|
-
} => {
|
2051
|
-
collector.reg_use(src1);
|
2052
|
-
collector.reg_reuse_def(dst, 0);
|
2053
|
-
src2.get_operands(collector);
|
2054
|
-
}
|
2055
|
-
Inst::XmmRmRUnaligned {
|
2056
|
-
src1, src2, dst, ..
|
2057
|
-
} => {
|
2058
|
-
collector.reg_use(src1);
|
2059
|
-
collector.reg_reuse_def(dst, 0);
|
2060
|
-
src2.get_operands(collector);
|
2061
|
-
}
|
2062
|
-
Inst::XmmRmRBlend {
|
2063
|
-
src1,
|
2064
|
-
src2,
|
2065
|
-
mask,
|
2066
|
-
dst,
|
2067
|
-
op,
|
2068
|
-
} => {
|
2069
|
-
assert!(matches!(
|
2070
|
-
op,
|
2071
|
-
SseOpcode::Blendvpd | SseOpcode::Blendvps | SseOpcode::Pblendvb
|
2072
|
-
));
|
2073
|
-
collector.reg_use(src1);
|
2074
|
-
collector.reg_fixed_use(mask, regs::xmm0());
|
2075
|
-
collector.reg_reuse_def(dst, 0);
|
2076
|
-
src2.get_operands(collector);
|
2077
|
-
}
|
2078
|
-
Inst::XmmRmiRVex {
|
2079
|
-
src1, src2, dst, ..
|
2080
|
-
} => {
|
2081
|
-
collector.reg_def(dst);
|
2082
|
-
collector.reg_use(src1);
|
2083
|
-
src2.get_operands(collector);
|
2084
|
-
}
|
2085
|
-
Inst::XmmRmRImmVex {
|
2086
|
-
src1, src2, dst, ..
|
2087
|
-
} => {
|
2088
|
-
collector.reg_def(dst);
|
2089
|
-
collector.reg_use(src1);
|
2090
|
-
src2.get_operands(collector);
|
2091
|
-
}
|
2092
|
-
Inst::XmmVexPinsr {
|
2093
|
-
src1, src2, dst, ..
|
2094
|
-
} => {
|
2095
|
-
collector.reg_def(dst);
|
2096
|
-
collector.reg_use(src1);
|
2097
|
-
src2.get_operands(collector);
|
2098
|
-
}
|
2099
|
-
Inst::XmmRmRVex3 {
|
2100
|
-
src1,
|
2101
|
-
src2,
|
2102
|
-
src3,
|
2103
|
-
dst,
|
2104
|
-
..
|
2105
|
-
} => {
|
2106
|
-
collector.reg_use(src1);
|
2107
|
-
collector.reg_reuse_def(dst, 0);
|
2108
|
-
collector.reg_use(src2);
|
2109
|
-
src3.get_operands(collector);
|
2110
|
-
}
|
2111
|
-
Inst::XmmRmRBlendVex {
|
2112
|
-
src1,
|
2113
|
-
src2,
|
2114
|
-
mask,
|
2115
|
-
dst,
|
2116
|
-
..
|
2117
|
-
} => {
|
2118
|
-
collector.reg_def(dst);
|
2119
|
-
collector.reg_use(src1);
|
2120
|
-
src2.get_operands(collector);
|
2121
|
-
collector.reg_use(mask);
|
2122
|
-
}
|
2123
|
-
Inst::XmmRmREvex {
|
2124
|
-
op,
|
2125
|
-
src1,
|
2126
|
-
src2,
|
2127
|
-
dst,
|
2128
|
-
..
|
2129
|
-
} => {
|
2130
|
-
assert_ne!(*op, Avx512Opcode::Vpermi2b);
|
2131
|
-
collector.reg_use(src1);
|
2132
|
-
src2.get_operands(collector);
|
2133
|
-
collector.reg_def(dst);
|
2134
|
-
}
|
2135
|
-
Inst::XmmRmREvex3 {
|
2136
|
-
op,
|
2137
|
-
src1,
|
2138
|
-
src2,
|
2139
|
-
src3,
|
2140
|
-
dst,
|
2141
|
-
..
|
2142
|
-
} => {
|
2143
|
-
assert_eq!(*op, Avx512Opcode::Vpermi2b);
|
2144
|
-
collector.reg_use(src1);
|
2145
|
-
collector.reg_use(src2);
|
2146
|
-
src3.get_operands(collector);
|
2147
|
-
collector.reg_reuse_def(dst, 0); // Reuse `src1`.
|
2148
|
-
}
|
2149
|
-
Inst::XmmRmRImm {
|
2150
|
-
src1, src2, dst, ..
|
2151
|
-
} => {
|
2152
|
-
collector.reg_use(src1);
|
2153
|
-
collector.reg_reuse_def(dst, 0);
|
2154
|
-
src2.get_operands(collector);
|
2155
|
-
}
|
2156
|
-
Inst::XmmUninitializedValue { dst } => collector.reg_def(dst),
|
2157
|
-
Inst::XmmMinMaxSeq { lhs, rhs, dst, .. } => {
|
2158
|
-
collector.reg_use(rhs);
|
2159
|
-
collector.reg_use(lhs);
|
2160
|
-
collector.reg_reuse_def(dst, 0); // Reuse RHS.
|
2161
|
-
}
|
2162
|
-
Inst::XmmRmiReg {
|
2163
|
-
src1, src2, dst, ..
|
2164
|
-
} => {
|
2165
|
-
collector.reg_use(src1);
|
2166
|
-
collector.reg_reuse_def(dst, 0); // Reuse RHS.
|
2167
|
-
src2.get_operands(collector);
|
2168
|
-
}
|
2169
|
-
Inst::XmmMovRM { src, dst, .. }
|
2170
|
-
| Inst::XmmMovRMVex { src, dst, .. }
|
2171
|
-
| Inst::XmmMovRMImm { src, dst, .. }
|
2172
|
-
| Inst::XmmMovRMImmVex { src, dst, .. } => {
|
2173
|
-
collector.reg_use(src);
|
2174
|
-
dst.get_operands(collector);
|
2175
|
-
}
|
2176
|
-
Inst::XmmCmpRmR { src1, src2, .. } => {
|
2177
|
-
collector.reg_use(src1);
|
2178
|
-
src2.get_operands(collector);
|
2179
|
-
}
|
2180
|
-
Inst::XmmCmpRmRVex { src1, src2, .. } => {
|
2181
|
-
collector.reg_use(src1);
|
2182
|
-
src2.get_operands(collector);
|
2183
|
-
}
|
2184
|
-
Inst::Imm { dst, .. } => {
|
2185
|
-
collector.reg_def(dst);
|
2186
|
-
}
|
2187
|
-
Inst::MovRR { src, dst, .. } => {
|
2188
|
-
collector.reg_use(src);
|
2189
|
-
collector.reg_def(dst);
|
2190
|
-
}
|
2191
|
-
Inst::MovFromPReg { dst, src } => {
|
2192
|
-
debug_assert!(dst.to_reg().to_reg().is_virtual());
|
2193
|
-
collector.reg_fixed_nonallocatable(*src);
|
2194
|
-
collector.reg_def(dst);
|
2195
|
-
}
|
2196
|
-
Inst::MovToPReg { dst, src } => {
|
2197
|
-
debug_assert!(src.to_reg().is_virtual());
|
2198
|
-
collector.reg_use(src);
|
2199
|
-
collector.reg_fixed_nonallocatable(*dst);
|
2200
|
-
}
|
2201
|
-
Inst::XmmToGpr { src, dst, .. }
|
2202
|
-
| Inst::XmmToGprVex { src, dst, .. }
|
2203
|
-
| Inst::XmmToGprImm { src, dst, .. }
|
2204
|
-
| Inst::XmmToGprImmVex { src, dst, .. } => {
|
2205
|
-
collector.reg_use(src);
|
2206
|
-
collector.reg_def(dst);
|
2207
|
-
}
|
2208
|
-
Inst::GprToXmm { src, dst, .. } | Inst::GprToXmmVex { src, dst, .. } => {
|
2209
|
-
collector.reg_def(dst);
|
2210
|
-
src.get_operands(collector);
|
2211
|
-
}
|
2212
|
-
Inst::CvtIntToFloat {
|
2213
|
-
src1, src2, dst, ..
|
2214
|
-
} => {
|
2215
|
-
collector.reg_use(src1);
|
2216
|
-
collector.reg_reuse_def(dst, 0);
|
2217
|
-
src2.get_operands(collector);
|
2218
|
-
}
|
2219
|
-
Inst::CvtIntToFloatVex {
|
2220
|
-
src1, src2, dst, ..
|
2221
|
-
} => {
|
2222
|
-
collector.reg_def(dst);
|
2223
|
-
collector.reg_use(src1);
|
2224
|
-
src2.get_operands(collector);
|
2225
|
-
}
|
2226
|
-
Inst::CvtUint64ToFloatSeq {
|
2227
|
-
src,
|
2228
|
-
dst,
|
2229
|
-
tmp_gpr1,
|
2230
|
-
tmp_gpr2,
|
2231
|
-
..
|
2232
|
-
} => {
|
2233
|
-
collector.reg_use(src);
|
2234
|
-
collector.reg_early_def(dst);
|
2235
|
-
collector.reg_early_def(tmp_gpr1);
|
2236
|
-
collector.reg_early_def(tmp_gpr2);
|
2237
|
-
}
|
2238
|
-
Inst::CvtFloatToSintSeq {
|
2239
|
-
src,
|
2240
|
-
dst,
|
2241
|
-
tmp_xmm,
|
2242
|
-
tmp_gpr,
|
2243
|
-
..
|
2244
|
-
} => {
|
2245
|
-
collector.reg_use(src);
|
2246
|
-
collector.reg_early_def(dst);
|
2247
|
-
collector.reg_early_def(tmp_gpr);
|
2248
|
-
collector.reg_early_def(tmp_xmm);
|
2249
|
-
}
|
2250
|
-
Inst::CvtFloatToUintSeq {
|
2251
|
-
src,
|
2252
|
-
dst,
|
2253
|
-
tmp_gpr,
|
2254
|
-
tmp_xmm,
|
2255
|
-
tmp_xmm2,
|
2256
|
-
..
|
2257
|
-
} => {
|
2258
|
-
collector.reg_use(src);
|
2259
|
-
collector.reg_early_def(dst);
|
2260
|
-
collector.reg_early_def(tmp_gpr);
|
2261
|
-
collector.reg_early_def(tmp_xmm);
|
2262
|
-
collector.reg_early_def(tmp_xmm2);
|
2263
|
-
}
|
2264
|
-
|
2265
|
-
Inst::MovImmM { dst, .. } => {
|
2266
|
-
dst.get_operands(collector);
|
2267
|
-
}
|
2268
|
-
|
2269
|
-
Inst::MovzxRmR { src, dst, .. } => {
|
2270
|
-
collector.reg_def(dst);
|
2271
|
-
src.get_operands(collector);
|
2272
|
-
}
|
2273
|
-
Inst::Mov64MR { src, dst, .. } => {
|
2274
|
-
collector.reg_def(dst);
|
2275
|
-
src.get_operands(collector);
|
2276
|
-
}
|
2277
|
-
Inst::LoadEffectiveAddress { addr: src, dst, .. } => {
|
2278
|
-
collector.reg_def(dst);
|
2279
|
-
src.get_operands(collector);
|
2280
|
-
}
|
2281
|
-
Inst::MovsxRmR { src, dst, .. } => {
|
2282
|
-
collector.reg_def(dst);
|
2283
|
-
src.get_operands(collector);
|
2284
|
-
}
|
2285
|
-
Inst::MovRM { src, dst, .. } => {
|
2286
|
-
collector.reg_use(src);
|
2287
|
-
dst.get_operands(collector);
|
2288
|
-
}
|
2289
|
-
Inst::ShiftR {
|
2290
|
-
num_bits, src, dst, ..
|
2291
|
-
} => {
|
2292
|
-
collector.reg_use(src);
|
2293
|
-
collector.reg_reuse_def(dst, 0);
|
2294
|
-
if let Imm8Reg::Reg { reg } = num_bits.as_imm8_reg_mut() {
|
2295
|
-
collector.reg_fixed_use(reg, regs::rcx());
|
2296
|
-
}
|
2297
|
-
}
|
2298
|
-
Inst::CmpRmiR { src1, src2, .. } => {
|
2299
|
-
collector.reg_use(src1);
|
2300
|
-
src2.get_operands(collector);
|
2301
|
-
}
|
2302
|
-
Inst::Setcc { dst, .. } => {
|
2303
|
-
collector.reg_def(dst);
|
2304
|
-
}
|
2305
|
-
Inst::Bswap { src, dst, .. } => {
|
2306
|
-
collector.reg_use(src);
|
2307
|
-
collector.reg_reuse_def(dst, 0);
|
2308
|
-
}
|
2309
|
-
Inst::Cmove {
|
2310
|
-
consequent,
|
2311
|
-
alternative,
|
2312
|
-
dst,
|
2313
|
-
..
|
2314
|
-
} => {
|
2315
|
-
collector.reg_use(alternative);
|
2316
|
-
collector.reg_reuse_def(dst, 0);
|
2317
|
-
consequent.get_operands(collector);
|
2318
|
-
}
|
2319
|
-
Inst::XmmCmove {
|
2320
|
-
consequent,
|
2321
|
-
alternative,
|
2322
|
-
dst,
|
2323
|
-
..
|
2324
|
-
} => {
|
2325
|
-
collector.reg_use(alternative);
|
2326
|
-
collector.reg_reuse_def(dst, 0);
|
2327
|
-
collector.reg_use(consequent);
|
2328
|
-
}
|
2329
|
-
Inst::Push64 { src } => {
|
2330
|
-
src.get_operands(collector);
|
2331
|
-
}
|
2332
|
-
Inst::Pop64 { dst } => {
|
2333
|
-
collector.reg_def(dst);
|
2334
|
-
}
|
2335
|
-
Inst::StackProbeLoop { tmp, .. } => {
|
2336
|
-
collector.reg_early_def(tmp);
|
2337
|
-
}
|
2338
|
-
|
2339
|
-
Inst::CallKnown { dest, info, .. } => {
|
2340
|
-
// Probestack is special and is only inserted after
|
2341
|
-
// regalloc, so we do not need to represent its ABI to the
|
2342
|
-
// register allocator. Assert that we don't alter that
|
2343
|
-
// arrangement.
|
2344
|
-
let CallInfo {
|
2345
|
-
uses,
|
2346
|
-
defs,
|
2347
|
-
clobbers,
|
2348
|
-
..
|
2349
|
-
} = &mut **info.as_mut().expect("CallInfo is expected in this path");
|
2350
|
-
debug_assert_ne!(*dest, ExternalName::LibCall(LibCall::Probestack));
|
2351
|
-
for CallArgPair { vreg, preg } in uses {
|
2352
|
-
collector.reg_fixed_use(vreg, *preg);
|
2353
|
-
}
|
2354
|
-
for CallRetPair { vreg, preg } in defs {
|
2355
|
-
collector.reg_fixed_def(vreg, *preg);
|
2356
|
-
}
|
2357
|
-
collector.reg_clobbers(*clobbers);
|
2358
|
-
}
|
2359
|
-
|
2360
|
-
Inst::CallUnknown { info, dest, .. } => {
|
2361
|
-
let CallInfo {
|
2362
|
-
uses,
|
2363
|
-
defs,
|
2364
|
-
clobbers,
|
2365
|
-
callee_conv,
|
2366
|
-
..
|
2367
|
-
} = &mut **info.as_mut().expect("CallInfo is expected in this path");
|
2368
|
-
match dest {
|
2369
|
-
RegMem::Reg { reg } if *callee_conv == CallConv::Winch => {
|
2370
|
-
// TODO(https://github.com/bytecodealliance/regalloc2/issues/145):
|
2371
|
-
// This shouldn't be a fixed register constraint. r10 is caller-saved, so this
|
2372
|
-
// should be safe to use.
|
2373
|
-
collector.reg_fixed_use(reg, regs::r10())
|
2374
|
-
}
|
2375
|
-
_ => dest.get_operands(collector),
|
2376
|
-
}
|
2377
|
-
for CallArgPair { vreg, preg } in uses {
|
2378
|
-
collector.reg_fixed_use(vreg, *preg);
|
2379
|
-
}
|
2380
|
-
for CallRetPair { vreg, preg } in defs {
|
2381
|
-
collector.reg_fixed_def(vreg, *preg);
|
2382
|
-
}
|
2383
|
-
collector.reg_clobbers(*clobbers);
|
2384
|
-
}
|
2385
|
-
|
2386
|
-
Inst::ReturnCallKnown { callee, info } => {
|
2387
|
-
let ReturnCallInfo { uses, tmp, .. } = &mut **info;
|
2388
|
-
collector.reg_fixed_def(tmp, regs::r11());
|
2389
|
-
// Same as in the `Inst::CallKnown` branch.
|
2390
|
-
debug_assert_ne!(*callee, ExternalName::LibCall(LibCall::Probestack));
|
2391
|
-
for CallArgPair { vreg, preg } in uses {
|
2392
|
-
collector.reg_fixed_use(vreg, *preg);
|
2393
|
-
}
|
2394
|
-
}
|
2395
|
-
|
2396
|
-
Inst::ReturnCallUnknown { callee, info } => {
|
2397
|
-
let ReturnCallInfo { uses, tmp, .. } = &mut **info;
|
2398
|
-
|
2399
|
-
// TODO(https://github.com/bytecodealliance/regalloc2/issues/145):
|
2400
|
-
// This shouldn't be a fixed register constraint, but it's not clear how to
|
2401
|
-
// pick a register that won't be clobbered by the callee-save restore code
|
2402
|
-
// emitted with a return_call_indirect. r10 is caller-saved, so this should be
|
2403
|
-
// safe to use.
|
2404
|
-
collector.reg_fixed_use(callee, regs::r10());
|
2405
|
-
|
2406
|
-
collector.reg_fixed_def(tmp, regs::r11());
|
2407
|
-
for CallArgPair { vreg, preg } in uses {
|
2408
|
-
collector.reg_fixed_use(vreg, *preg);
|
2409
|
-
}
|
2410
|
-
}
|
2411
|
-
|
2412
|
-
Inst::JmpTableSeq {
|
2413
|
-
idx, tmp1, tmp2, ..
|
2414
|
-
} => {
|
2415
|
-
collector.reg_use(idx);
|
2416
|
-
collector.reg_early_def(tmp1);
|
2417
|
-
// In the sequence emitted for this pseudoinstruction in emit.rs,
|
2418
|
-
// tmp2 is only written after idx is read, so it doesn't need to be
|
2419
|
-
// an early def.
|
2420
|
-
collector.reg_def(tmp2);
|
2421
|
-
}
|
2422
|
-
|
2423
|
-
Inst::JmpUnknown { target } => {
|
2424
|
-
target.get_operands(collector);
|
2425
|
-
}
|
2426
|
-
|
2427
|
-
Inst::LoadExtName { dst, .. } => {
|
2428
|
-
collector.reg_def(dst);
|
2429
|
-
}
|
2430
|
-
|
2431
|
-
Inst::LockCmpxchg {
|
2432
|
-
replacement,
|
2433
|
-
expected,
|
2434
|
-
mem,
|
2435
|
-
dst_old,
|
2436
|
-
..
|
2437
|
-
} => {
|
2438
|
-
collector.reg_use(replacement);
|
2439
|
-
collector.reg_fixed_use(expected, regs::rax());
|
2440
|
-
collector.reg_fixed_def(dst_old, regs::rax());
|
2441
|
-
mem.get_operands(collector);
|
2442
|
-
}
|
2443
|
-
|
2444
|
-
Inst::AtomicRmwSeq {
|
2445
|
-
operand,
|
2446
|
-
temp,
|
2447
|
-
dst_old,
|
2448
|
-
mem,
|
2449
|
-
..
|
2450
|
-
} => {
|
2451
|
-
collector.reg_late_use(operand);
|
2452
|
-
collector.reg_early_def(temp);
|
2453
|
-
// This `fixed_def` is needed because `CMPXCHG` always uses this
|
2454
|
-
// register implicitly.
|
2455
|
-
collector.reg_fixed_def(dst_old, regs::rax());
|
2456
|
-
mem.get_operands_late(collector)
|
2457
|
-
}
|
2458
|
-
|
2459
|
-
Inst::Args { args } => {
|
2460
|
-
for ArgPair { vreg, preg } in args {
|
2461
|
-
collector.reg_fixed_def(vreg, *preg);
|
2462
|
-
}
|
2463
|
-
}
|
2464
|
-
|
2465
|
-
Inst::Rets { rets } => {
|
2466
|
-
// The return value(s) are live-out; we represent this
|
2467
|
-
// with register uses on the return instruction.
|
2468
|
-
for RetPair { vreg, preg } in rets {
|
2469
|
-
collector.reg_fixed_use(vreg, *preg);
|
2470
|
-
}
|
2471
|
-
}
|
2472
|
-
|
2473
|
-
Inst::JmpKnown { .. }
|
2474
|
-
| Inst::JmpIf { .. }
|
2475
|
-
| Inst::JmpCond { .. }
|
2476
|
-
| Inst::Ret { .. }
|
2477
|
-
| Inst::Nop { .. }
|
2478
|
-
| Inst::TrapIf { .. }
|
2479
|
-
| Inst::TrapIfAnd { .. }
|
2480
|
-
| Inst::TrapIfOr { .. }
|
2481
|
-
| Inst::VirtualSPOffsetAdj { .. }
|
2482
|
-
| Inst::Hlt
|
2483
|
-
| Inst::Ud2 { .. }
|
2484
|
-
| Inst::Fence { .. } => {
|
2485
|
-
// No registers are used.
|
2486
|
-
}
|
2487
|
-
|
2488
|
-
Inst::ElfTlsGetAddr { dst, .. } | Inst::MachOTlsGetAddr { dst, .. } => {
|
2489
|
-
collector.reg_fixed_def(dst, regs::rax());
|
2490
|
-
// All caller-saves are clobbered.
|
2491
|
-
//
|
2492
|
-
// We use the SysV calling convention here because the
|
2493
|
-
// pseudoinstruction (and relocation that it emits) is specific to
|
2494
|
-
// ELF systems; other x86-64 targets with other conventions (i.e.,
|
2495
|
-
// Windows) use different TLS strategies.
|
2496
|
-
let mut clobbers = X64ABIMachineSpec::get_regs_clobbered_by_call(CallConv::SystemV);
|
2497
|
-
clobbers.remove(regs::gpr_preg(regs::ENC_RAX));
|
2498
|
-
collector.reg_clobbers(clobbers);
|
2499
|
-
}
|
2500
|
-
|
2501
|
-
Inst::CoffTlsGetAddr { dst, tmp, .. } => {
|
2502
|
-
// We also use the gs register. But that register is not allocatable by the
|
2503
|
-
// register allocator, so we don't need to mark it as used here.
|
2504
|
-
|
2505
|
-
// We use %rax to set the address
|
2506
|
-
collector.reg_fixed_def(dst, regs::rax());
|
2507
|
-
|
2508
|
-
// We use %rcx as a temporary variable to load the _tls_index
|
2509
|
-
collector.reg_fixed_def(tmp, regs::rcx());
|
2510
|
-
}
|
2511
|
-
|
2512
|
-
Inst::Unwind { .. } => {}
|
2513
|
-
|
2514
|
-
Inst::DummyUse { reg } => {
|
2515
|
-
collector.reg_use(reg);
|
2516
|
-
}
|
2517
|
-
}
|
2518
|
-
}
|
2519
|
-
|
2520
|
-
//=============================================================================
|
2521
|
-
// Instructions: misc functions and external interface
|
2522
|
-
|
2523
|
-
impl MachInst for Inst {
|
2524
|
-
type ABIMachineSpec = X64ABIMachineSpec;
|
2525
|
-
|
2526
|
-
fn get_operands(&mut self, collector: &mut impl OperandVisitor) {
|
2527
|
-
x64_get_operands(self, collector)
|
2528
|
-
}
|
2529
|
-
|
2530
|
-
fn is_move(&self) -> Option<(Writable<Reg>, Reg)> {
|
2531
|
-
match self {
|
2532
|
-
// Note (carefully!) that a 32-bit mov *isn't* a no-op since it zeroes
|
2533
|
-
// out the upper 32 bits of the destination. For example, we could
|
2534
|
-
// conceivably use `movl %reg, %reg` to zero out the top 32 bits of
|
2535
|
-
// %reg.
|
2536
|
-
Self::MovRR { size, src, dst, .. } if *size == OperandSize::Size64 => {
|
2537
|
-
Some((dst.to_writable_reg(), src.to_reg()))
|
2538
|
-
}
|
2539
|
-
// Note as well that MOVS[S|D] when used in the `XmmUnaryRmR` context are pure moves of
|
2540
|
-
// scalar floating-point values (and annotate `dst` as `def`s to the register allocator)
|
2541
|
-
// whereas the same operation in a packed context, e.g. `XMM_RM_R`, is used to merge a
|
2542
|
-
// value into the lowest lane of a vector (not a move).
|
2543
|
-
Self::XmmUnaryRmR { op, src, dst, .. }
|
2544
|
-
if *op == SseOpcode::Movss
|
2545
|
-
|| *op == SseOpcode::Movsd
|
2546
|
-
|| *op == SseOpcode::Movaps
|
2547
|
-
|| *op == SseOpcode::Movapd
|
2548
|
-
|| *op == SseOpcode::Movups
|
2549
|
-
|| *op == SseOpcode::Movupd
|
2550
|
-
|| *op == SseOpcode::Movdqa
|
2551
|
-
|| *op == SseOpcode::Movdqu =>
|
2552
|
-
{
|
2553
|
-
if let RegMem::Reg { reg } = src.clone().to_reg_mem() {
|
2554
|
-
Some((dst.to_writable_reg(), reg))
|
2555
|
-
} else {
|
2556
|
-
None
|
2557
|
-
}
|
2558
|
-
}
|
2559
|
-
_ => None,
|
2560
|
-
}
|
2561
|
-
}
|
2562
|
-
|
2563
|
-
fn is_included_in_clobbers(&self) -> bool {
|
2564
|
-
match self {
|
2565
|
-
&Inst::Args { .. } => false,
|
2566
|
-
_ => true,
|
2567
|
-
}
|
2568
|
-
}
|
2569
|
-
|
2570
|
-
fn is_trap(&self) -> bool {
|
2571
|
-
match self {
|
2572
|
-
Self::Ud2 { .. } => true,
|
2573
|
-
_ => false,
|
2574
|
-
}
|
2575
|
-
}
|
2576
|
-
|
2577
|
-
fn is_args(&self) -> bool {
|
2578
|
-
match self {
|
2579
|
-
Self::Args { .. } => true,
|
2580
|
-
_ => false,
|
2581
|
-
}
|
2582
|
-
}
|
2583
|
-
|
2584
|
-
fn is_term(&self) -> MachTerminator {
|
2585
|
-
match self {
|
2586
|
-
// Interesting cases.
|
2587
|
-
&Self::Rets { .. } => MachTerminator::Ret,
|
2588
|
-
&Self::ReturnCallKnown { .. } | &Self::ReturnCallUnknown { .. } => {
|
2589
|
-
MachTerminator::RetCall
|
2590
|
-
}
|
2591
|
-
&Self::JmpKnown { .. } => MachTerminator::Uncond,
|
2592
|
-
&Self::JmpCond { .. } => MachTerminator::Cond,
|
2593
|
-
&Self::JmpTableSeq { .. } => MachTerminator::Indirect,
|
2594
|
-
// All other cases are boring.
|
2595
|
-
_ => MachTerminator::None,
|
2596
|
-
}
|
2597
|
-
}
|
2598
|
-
|
2599
|
-
fn is_mem_access(&self) -> bool {
|
2600
|
-
panic!("TODO FILL ME OUT")
|
2601
|
-
}
|
2602
|
-
|
2603
|
-
fn gen_move(dst_reg: Writable<Reg>, src_reg: Reg, ty: Type) -> Inst {
|
2604
|
-
trace!(
|
2605
|
-
"Inst::gen_move {:?} -> {:?} (type: {:?})",
|
2606
|
-
src_reg,
|
2607
|
-
dst_reg.to_reg(),
|
2608
|
-
ty
|
2609
|
-
);
|
2610
|
-
let rc_dst = dst_reg.to_reg().class();
|
2611
|
-
let rc_src = src_reg.class();
|
2612
|
-
// If this isn't true, we have gone way off the rails.
|
2613
|
-
debug_assert!(rc_dst == rc_src);
|
2614
|
-
match rc_dst {
|
2615
|
-
RegClass::Int => Inst::mov_r_r(OperandSize::Size64, src_reg, dst_reg),
|
2616
|
-
RegClass::Float => {
|
2617
|
-
// The Intel optimization manual, in "3.5.1.13 Zero-Latency MOV Instructions",
|
2618
|
-
// doesn't include MOVSS/MOVSD as instructions with zero-latency. Use movaps for
|
2619
|
-
// those, which may write more lanes that we need, but are specified to have
|
2620
|
-
// zero-latency.
|
2621
|
-
let opcode = match ty {
|
2622
|
-
types::F32 | types::F64 | types::F32X4 => SseOpcode::Movaps,
|
2623
|
-
types::F64X2 => SseOpcode::Movapd,
|
2624
|
-
_ if ty.is_vector() && ty.bits() == 128 => SseOpcode::Movdqa,
|
2625
|
-
_ => unimplemented!("unable to move type: {}", ty),
|
2626
|
-
};
|
2627
|
-
Inst::xmm_unary_rm_r(opcode, RegMem::reg(src_reg), dst_reg)
|
2628
|
-
}
|
2629
|
-
RegClass::Vector => unreachable!(),
|
2630
|
-
}
|
2631
|
-
}
|
2632
|
-
|
2633
|
-
fn gen_nop(preferred_size: usize) -> Inst {
|
2634
|
-
Inst::nop(std::cmp::min(preferred_size, 15) as u8)
|
2635
|
-
}
|
2636
|
-
|
2637
|
-
fn rc_for_type(ty: Type) -> CodegenResult<(&'static [RegClass], &'static [Type])> {
|
2638
|
-
match ty {
|
2639
|
-
types::I8 => Ok((&[RegClass::Int], &[types::I8])),
|
2640
|
-
types::I16 => Ok((&[RegClass::Int], &[types::I16])),
|
2641
|
-
types::I32 => Ok((&[RegClass::Int], &[types::I32])),
|
2642
|
-
types::I64 => Ok((&[RegClass::Int], &[types::I64])),
|
2643
|
-
types::R32 => panic!("32-bit reftype pointer should never be seen on x86-64"),
|
2644
|
-
types::R64 => Ok((&[RegClass::Int], &[types::R64])),
|
2645
|
-
types::F32 => Ok((&[RegClass::Float], &[types::F32])),
|
2646
|
-
types::F64 => Ok((&[RegClass::Float], &[types::F64])),
|
2647
|
-
types::I128 => Ok((&[RegClass::Int, RegClass::Int], &[types::I64, types::I64])),
|
2648
|
-
_ if ty.is_vector() => {
|
2649
|
-
assert!(ty.bits() <= 128);
|
2650
|
-
Ok((&[RegClass::Float], &[types::I8X16]))
|
2651
|
-
}
|
2652
|
-
_ => Err(CodegenError::Unsupported(format!(
|
2653
|
-
"Unexpected SSA-value type: {}",
|
2654
|
-
ty
|
2655
|
-
))),
|
2656
|
-
}
|
2657
|
-
}
|
2658
|
-
|
2659
|
-
fn canonical_type_for_rc(rc: RegClass) -> Type {
|
2660
|
-
match rc {
|
2661
|
-
RegClass::Float => types::I8X16,
|
2662
|
-
RegClass::Int => types::I64,
|
2663
|
-
RegClass::Vector => unreachable!(),
|
2664
|
-
}
|
2665
|
-
}
|
2666
|
-
|
2667
|
-
fn gen_jump(label: MachLabel) -> Inst {
|
2668
|
-
Inst::jmp_known(label)
|
2669
|
-
}
|
2670
|
-
|
2671
|
-
fn gen_imm_u64(value: u64, dst: Writable<Reg>) -> Option<Self> {
|
2672
|
-
Some(Inst::imm(OperandSize::Size64, value, dst))
|
2673
|
-
}
|
2674
|
-
|
2675
|
-
fn gen_imm_f64(value: f64, tmp: Writable<Reg>, dst: Writable<Reg>) -> SmallVec<[Self; 2]> {
|
2676
|
-
let imm_to_gpr = Inst::imm(OperandSize::Size64, value.to_bits(), tmp);
|
2677
|
-
let gpr_to_xmm = Self::gpr_to_xmm(
|
2678
|
-
SseOpcode::Movd,
|
2679
|
-
tmp.to_reg().into(),
|
2680
|
-
OperandSize::Size64,
|
2681
|
-
dst,
|
2682
|
-
);
|
2683
|
-
smallvec![imm_to_gpr, gpr_to_xmm]
|
2684
|
-
}
|
2685
|
-
|
2686
|
-
fn gen_dummy_use(reg: Reg) -> Self {
|
2687
|
-
Inst::DummyUse { reg }
|
2688
|
-
}
|
2689
|
-
|
2690
|
-
fn worst_case_size() -> CodeOffset {
|
2691
|
-
15
|
2692
|
-
}
|
2693
|
-
|
2694
|
-
fn ref_type_regclass(_: &settings::Flags) -> RegClass {
|
2695
|
-
RegClass::Int
|
2696
|
-
}
|
2697
|
-
|
2698
|
-
fn is_safepoint(&self) -> bool {
|
2699
|
-
match self {
|
2700
|
-
Inst::CallKnown { .. }
|
2701
|
-
| Inst::CallUnknown { .. }
|
2702
|
-
| Inst::TrapIf { .. }
|
2703
|
-
| Inst::Ud2 { .. } => true,
|
2704
|
-
_ => false,
|
2705
|
-
}
|
2706
|
-
}
|
2707
|
-
|
2708
|
-
fn function_alignment() -> FunctionAlignment {
|
2709
|
-
FunctionAlignment {
|
2710
|
-
minimum: 1,
|
2711
|
-
// Prefer an alignment of 16-bytes to hypothetically get the whole
|
2712
|
-
// function into a minimum number of lines.
|
2713
|
-
preferred: 16,
|
2714
|
-
}
|
2715
|
-
}
|
2716
|
-
|
2717
|
-
type LabelUse = LabelUse;
|
2718
|
-
|
2719
|
-
const TRAP_OPCODE: &'static [u8] = &[0x0f, 0x0b];
|
2720
|
-
}
|
2721
|
-
|
2722
|
-
/// Constant state used during emissions of a sequence of instructions.
|
2723
|
-
pub struct EmitInfo {
|
2724
|
-
pub(super) flags: settings::Flags,
|
2725
|
-
isa_flags: x64_settings::Flags,
|
2726
|
-
}
|
2727
|
-
|
2728
|
-
impl EmitInfo {
|
2729
|
-
/// Create a constant state for emission of instructions.
|
2730
|
-
pub fn new(flags: settings::Flags, isa_flags: x64_settings::Flags) -> Self {
|
2731
|
-
Self { flags, isa_flags }
|
2732
|
-
}
|
2733
|
-
}
|
2734
|
-
|
2735
|
-
impl MachInstEmit for Inst {
|
2736
|
-
type State = EmitState;
|
2737
|
-
type Info = EmitInfo;
|
2738
|
-
|
2739
|
-
fn emit(
|
2740
|
-
&self,
|
2741
|
-
allocs: &[Allocation],
|
2742
|
-
sink: &mut MachBuffer<Inst>,
|
2743
|
-
info: &Self::Info,
|
2744
|
-
state: &mut Self::State,
|
2745
|
-
) {
|
2746
|
-
let mut allocs = AllocationConsumer::new(allocs);
|
2747
|
-
emit::emit(self, &mut allocs, sink, info, state);
|
2748
|
-
}
|
2749
|
-
|
2750
|
-
fn pretty_print_inst(&self, allocs: &[Allocation], _: &mut Self::State) -> String {
|
2751
|
-
PrettyPrint::pretty_print(self, 0, &mut AllocationConsumer::new(allocs))
|
2752
|
-
}
|
2753
|
-
}
|
2754
|
-
|
2755
|
-
/// A label-use (internal relocation) in generated code.
|
2756
|
-
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
2757
|
-
pub enum LabelUse {
|
2758
|
-
/// A 32-bit offset from location of relocation itself, added to the existing value at that
|
2759
|
-
/// location. Used for control flow instructions which consider an offset from the start of the
|
2760
|
-
/// next instruction (so the size of the payload -- 4 bytes -- is subtracted from the payload).
|
2761
|
-
JmpRel32,
|
2762
|
-
|
2763
|
-
/// A 32-bit offset from location of relocation itself, added to the existing value at that
|
2764
|
-
/// location.
|
2765
|
-
PCRel32,
|
2766
|
-
}
|
2767
|
-
|
2768
|
-
impl MachInstLabelUse for LabelUse {
|
2769
|
-
const ALIGN: CodeOffset = 1;
|
2770
|
-
|
2771
|
-
fn max_pos_range(self) -> CodeOffset {
|
2772
|
-
match self {
|
2773
|
-
LabelUse::JmpRel32 | LabelUse::PCRel32 => 0x7fff_ffff,
|
2774
|
-
}
|
2775
|
-
}
|
2776
|
-
|
2777
|
-
fn max_neg_range(self) -> CodeOffset {
|
2778
|
-
match self {
|
2779
|
-
LabelUse::JmpRel32 | LabelUse::PCRel32 => 0x8000_0000,
|
2780
|
-
}
|
2781
|
-
}
|
2782
|
-
|
2783
|
-
fn patch_size(self) -> CodeOffset {
|
2784
|
-
match self {
|
2785
|
-
LabelUse::JmpRel32 | LabelUse::PCRel32 => 4,
|
2786
|
-
}
|
2787
|
-
}
|
2788
|
-
|
2789
|
-
fn patch(self, buffer: &mut [u8], use_offset: CodeOffset, label_offset: CodeOffset) {
|
2790
|
-
let pc_rel = (label_offset as i64) - (use_offset as i64);
|
2791
|
-
debug_assert!(pc_rel <= self.max_pos_range() as i64);
|
2792
|
-
debug_assert!(pc_rel >= -(self.max_neg_range() as i64));
|
2793
|
-
let pc_rel = pc_rel as u32;
|
2794
|
-
match self {
|
2795
|
-
LabelUse::JmpRel32 => {
|
2796
|
-
let addend = u32::from_le_bytes([buffer[0], buffer[1], buffer[2], buffer[3]]);
|
2797
|
-
let value = pc_rel.wrapping_add(addend).wrapping_sub(4);
|
2798
|
-
buffer.copy_from_slice(&value.to_le_bytes()[..]);
|
2799
|
-
}
|
2800
|
-
LabelUse::PCRel32 => {
|
2801
|
-
let addend = u32::from_le_bytes([buffer[0], buffer[1], buffer[2], buffer[3]]);
|
2802
|
-
let value = pc_rel.wrapping_add(addend);
|
2803
|
-
buffer.copy_from_slice(&value.to_le_bytes()[..]);
|
2804
|
-
}
|
2805
|
-
}
|
2806
|
-
}
|
2807
|
-
|
2808
|
-
fn supports_veneer(self) -> bool {
|
2809
|
-
match self {
|
2810
|
-
LabelUse::JmpRel32 | LabelUse::PCRel32 => false,
|
2811
|
-
}
|
2812
|
-
}
|
2813
|
-
|
2814
|
-
fn veneer_size(self) -> CodeOffset {
|
2815
|
-
match self {
|
2816
|
-
LabelUse::JmpRel32 | LabelUse::PCRel32 => 0,
|
2817
|
-
}
|
2818
|
-
}
|
2819
|
-
|
2820
|
-
fn worst_case_veneer_size() -> CodeOffset {
|
2821
|
-
0
|
2822
|
-
}
|
2823
|
-
|
2824
|
-
fn generate_veneer(self, _: &mut [u8], _: CodeOffset) -> (CodeOffset, LabelUse) {
|
2825
|
-
match self {
|
2826
|
-
LabelUse::JmpRel32 | LabelUse::PCRel32 => {
|
2827
|
-
panic!("Veneer not supported for JumpRel32 label-use.");
|
2828
|
-
}
|
2829
|
-
}
|
2830
|
-
}
|
2831
|
-
|
2832
|
-
fn from_reloc(reloc: Reloc, addend: Addend) -> Option<Self> {
|
2833
|
-
match (reloc, addend) {
|
2834
|
-
(Reloc::X86CallPCRel4, -4) => Some(LabelUse::JmpRel32),
|
2835
|
-
_ => None,
|
2836
|
-
}
|
2837
|
-
}
|
2838
|
-
}
|