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,2512 +0,0 @@
|
|
1
|
-
//! In-memory representation of compiled machine code, with labels and fixups to
|
2
|
-
//! refer to those labels. Handles constant-pool island insertion and also
|
3
|
-
//! veneer insertion for out-of-range jumps.
|
4
|
-
//!
|
5
|
-
//! This code exists to solve three problems:
|
6
|
-
//!
|
7
|
-
//! - Branch targets for forward branches are not known until later, when we
|
8
|
-
//! emit code in a single pass through the instruction structs.
|
9
|
-
//!
|
10
|
-
//! - On many architectures, address references or offsets have limited range.
|
11
|
-
//! For example, on AArch64, conditional branches can only target code +/- 1MB
|
12
|
-
//! from the branch itself.
|
13
|
-
//!
|
14
|
-
//! - The lowering of control flow from the CFG-with-edges produced by
|
15
|
-
//! [BlockLoweringOrder](super::BlockLoweringOrder), combined with many empty
|
16
|
-
//! edge blocks when the register allocator does not need to insert any
|
17
|
-
//! spills/reloads/moves in edge blocks, results in many suboptimal branch
|
18
|
-
//! patterns. The lowering also pays no attention to block order, and so
|
19
|
-
//! two-target conditional forms (cond-br followed by uncond-br) can often by
|
20
|
-
//! avoided because one of the targets is the fallthrough. There are several
|
21
|
-
//! cases here where we can simplify to use fewer branches.
|
22
|
-
//!
|
23
|
-
//! This "buffer" implements a single-pass code emission strategy (with a later
|
24
|
-
//! "fixup" pass, but only through recorded fixups, not all instructions). The
|
25
|
-
//! basic idea is:
|
26
|
-
//!
|
27
|
-
//! - Emit branches as they are, including two-target (cond/uncond) compound
|
28
|
-
//! forms, but with zero offsets and optimistically assuming the target will be
|
29
|
-
//! in range. Record the "fixup" for later. Targets are denoted instead by
|
30
|
-
//! symbolic "labels" that are then bound to certain offsets in the buffer as
|
31
|
-
//! we emit code. (Nominally, there is a label at the start of every basic
|
32
|
-
//! block.)
|
33
|
-
//!
|
34
|
-
//! - As we do this, track the offset in the buffer at which the first label
|
35
|
-
//! reference "goes out of range". We call this the "deadline". If we reach the
|
36
|
-
//! deadline and we still have not bound the label to which an unresolved branch
|
37
|
-
//! refers, we have a problem!
|
38
|
-
//!
|
39
|
-
//! - To solve this problem, we emit "islands" full of "veneers". An island is
|
40
|
-
//! simply a chunk of code inserted in the middle of the code actually produced
|
41
|
-
//! by the emitter (e.g., vcode iterating over instruction structs). The emitter
|
42
|
-
//! has some awareness of this: it either asks for an island between blocks, so
|
43
|
-
//! it is not accidentally executed, or else it emits a branch around the island
|
44
|
-
//! when all other options fail (see `Inst::EmitIsland` meta-instruction).
|
45
|
-
//!
|
46
|
-
//! - A "veneer" is an instruction (or sequence of instructions) in an "island"
|
47
|
-
//! that implements a longer-range reference to a label. The idea is that, for
|
48
|
-
//! example, a branch with a limited range can branch to a "veneer" instead,
|
49
|
-
//! which is simply a branch in a form that can use a longer-range reference. On
|
50
|
-
//! AArch64, for example, conditionals have a +/- 1 MB range, but a conditional
|
51
|
-
//! can branch to an unconditional branch which has a +/- 128 MB range. Hence, a
|
52
|
-
//! conditional branch's label reference can be fixed up with a "veneer" to
|
53
|
-
//! achieve a longer range.
|
54
|
-
//!
|
55
|
-
//! - To implement all of this, we require the backend to provide a `LabelUse`
|
56
|
-
//! type that implements a trait. This is nominally an enum that records one of
|
57
|
-
//! several kinds of references to an offset in code -- basically, a relocation
|
58
|
-
//! type -- and will usually correspond to different instruction formats. The
|
59
|
-
//! `LabelUse` implementation specifies the maximum range, how to patch in the
|
60
|
-
//! actual label location when known, and how to generate a veneer to extend the
|
61
|
-
//! range.
|
62
|
-
//!
|
63
|
-
//! That satisfies label references, but we still may have suboptimal branch
|
64
|
-
//! patterns. To clean up the branches, we do a simple "peephole"-style
|
65
|
-
//! optimization on the fly. To do so, the emitter (e.g., `Inst::emit()`)
|
66
|
-
//! informs the buffer of branches in the code and, in the case of conditionals,
|
67
|
-
//! the code that would have been emitted to invert this branch's condition. We
|
68
|
-
//! track the "latest branches": these are branches that are contiguous up to
|
69
|
-
//! the current offset. (If any code is emitted after a branch, that branch or
|
70
|
-
//! run of contiguous branches is no longer "latest".) The latest branches are
|
71
|
-
//! those that we can edit by simply truncating the buffer and doing something
|
72
|
-
//! else instead.
|
73
|
-
//!
|
74
|
-
//! To optimize branches, we implement several simple rules, and try to apply
|
75
|
-
//! them to the "latest branches" when possible:
|
76
|
-
//!
|
77
|
-
//! - A branch with a label target, when that label is bound to the ending
|
78
|
-
//! offset of the branch (the fallthrough location), can be removed altogether,
|
79
|
-
//! because the branch would have no effect).
|
80
|
-
//!
|
81
|
-
//! - An unconditional branch that starts at a label location, and branches to
|
82
|
-
//! another label, results in a "label alias": all references to the label bound
|
83
|
-
//! *to* this branch instruction are instead resolved to the *target* of the
|
84
|
-
//! branch instruction. This effectively removes empty blocks that just
|
85
|
-
//! unconditionally branch to the next block. We call this "branch threading".
|
86
|
-
//!
|
87
|
-
//! - A conditional followed by an unconditional, when the conditional branches
|
88
|
-
//! to the unconditional's fallthrough, results in (i) the truncation of the
|
89
|
-
//! unconditional, (ii) the inversion of the condition's condition, and (iii)
|
90
|
-
//! replacement of the conditional's target (using the original target of the
|
91
|
-
//! unconditional). This is a fancy way of saying "we can flip a two-target
|
92
|
-
//! conditional branch's taken/not-taken targets if it works better with our
|
93
|
-
//! fallthrough". To make this work, the emitter actually gives the buffer
|
94
|
-
//! *both* forms of every conditional branch: the true form is emitted into the
|
95
|
-
//! buffer, and the "inverted" machine-code bytes are provided as part of the
|
96
|
-
//! branch-fixup metadata.
|
97
|
-
//!
|
98
|
-
//! - An unconditional B preceded by another unconditional P, when B's label(s) have
|
99
|
-
//! been redirected to target(B), can be removed entirely. This is an extension
|
100
|
-
//! of the branch-threading optimization, and is valid because if we know there
|
101
|
-
//! will be no fallthrough into this branch instruction (the prior instruction
|
102
|
-
//! is an unconditional jump), and if we know we have successfully redirected
|
103
|
-
//! all labels, then this branch instruction is unreachable. Note that this
|
104
|
-
//! works because the redirection happens before the label is ever resolved
|
105
|
-
//! (fixups happen at island emission time, at which point latest-branches are
|
106
|
-
//! cleared, or at the end of emission), so we are sure to catch and redirect
|
107
|
-
//! all possible paths to this instruction.
|
108
|
-
//!
|
109
|
-
//! # Branch-optimization Correctness
|
110
|
-
//!
|
111
|
-
//! The branch-optimization mechanism depends on a few data structures with
|
112
|
-
//! invariants, which are always held outside the scope of top-level public
|
113
|
-
//! methods:
|
114
|
-
//!
|
115
|
-
//! - The latest-branches list. Each entry describes a span of the buffer
|
116
|
-
//! (start/end offsets), the label target, the corresponding fixup-list entry
|
117
|
-
//! index, and the bytes (must be the same length) for the inverted form, if
|
118
|
-
//! conditional. The list of labels that are bound to the start-offset of this
|
119
|
-
//! branch is *complete* (if any label has a resolved offset equal to `start`
|
120
|
-
//! and is not an alias, it must appear in this list) and *precise* (no label
|
121
|
-
//! in this list can be bound to another offset). No label in this list should
|
122
|
-
//! be an alias. No two branch ranges can overlap, and branches are in
|
123
|
-
//! ascending-offset order.
|
124
|
-
//!
|
125
|
-
//! - The labels-at-tail list. This contains all MachLabels that have been bound
|
126
|
-
//! to (whose resolved offsets are equal to) the tail offset of the buffer.
|
127
|
-
//! No label in this list should be an alias.
|
128
|
-
//!
|
129
|
-
//! - The label_offsets array, containing the bound offset of a label or
|
130
|
-
//! UNKNOWN. No label can be bound at an offset greater than the current
|
131
|
-
//! buffer tail.
|
132
|
-
//!
|
133
|
-
//! - The label_aliases array, containing another label to which a label is
|
134
|
-
//! bound or UNKNOWN. A label's resolved offset is the resolved offset
|
135
|
-
//! of the label it is aliased to, if this is set.
|
136
|
-
//!
|
137
|
-
//! We argue below, at each method, how the invariants in these data structures
|
138
|
-
//! are maintained (grep for "Post-invariant").
|
139
|
-
//!
|
140
|
-
//! Given these invariants, we argue why each optimization preserves execution
|
141
|
-
//! semantics below (grep for "Preserves execution semantics").
|
142
|
-
//!
|
143
|
-
//! # Avoiding Quadratic Behavior
|
144
|
-
//!
|
145
|
-
//! There are two cases where we've had to take some care to avoid
|
146
|
-
//! quadratic worst-case behavior:
|
147
|
-
//!
|
148
|
-
//! - The "labels at this branch" list can grow unboundedly if the
|
149
|
-
//! code generator binds many labels at one location. If the count
|
150
|
-
//! gets too high (defined by the `LABEL_LIST_THRESHOLD` constant), we
|
151
|
-
//! simply abort an optimization early in a way that is always correct
|
152
|
-
//! but is conservative.
|
153
|
-
//!
|
154
|
-
//! - The fixup list can interact with island emission to create
|
155
|
-
//! "quadratic island behvior". In a little more detail, one can hit
|
156
|
-
//! this behavior by having some pending fixups (forward label
|
157
|
-
//! references) with long-range label-use kinds, and some others
|
158
|
-
//! with shorter-range references that nonetheless still are pending
|
159
|
-
//! long enough to trigger island generation. In such a case, we
|
160
|
-
//! process the fixup list, generate veneers to extend some forward
|
161
|
-
//! references' ranges, but leave the other (longer-range) ones
|
162
|
-
//! alone. The way this was implemented put them back on a list and
|
163
|
-
//! resulted in quadratic behavior.
|
164
|
-
//!
|
165
|
-
//! To avoid this fixups are split into two lists: one "pending" list and one
|
166
|
-
//! final list. The pending list is kept around for handling fixups related to
|
167
|
-
//! branches so it can be edited/truncated. When an island is reached, which
|
168
|
-
//! starts processing fixups, all pending fixups are flushed into the final
|
169
|
-
//! list. The final list is a `BinaryHeap` which enables fixup processing to
|
170
|
-
//! only process those which are required during island emission, deferring
|
171
|
-
//! all longer-range fixups to later.
|
172
|
-
|
173
|
-
use crate::binemit::{Addend, CodeOffset, Reloc, StackMap};
|
174
|
-
use crate::ir::function::FunctionParameters;
|
175
|
-
use crate::ir::{ExternalName, Opcode, RelSourceLoc, SourceLoc, TrapCode};
|
176
|
-
use crate::isa::unwind::UnwindInst;
|
177
|
-
use crate::machinst::{
|
178
|
-
BlockIndex, MachInstLabelUse, TextSectionBuilder, VCodeConstant, VCodeConstants, VCodeInst,
|
179
|
-
};
|
180
|
-
use crate::trace;
|
181
|
-
use crate::{timing, VCodeConstantData};
|
182
|
-
use cranelift_control::ControlPlane;
|
183
|
-
use cranelift_entity::{entity_impl, PrimaryMap};
|
184
|
-
use smallvec::SmallVec;
|
185
|
-
use std::cmp::Ordering;
|
186
|
-
use std::collections::BinaryHeap;
|
187
|
-
use std::mem;
|
188
|
-
use std::string::String;
|
189
|
-
use std::vec::Vec;
|
190
|
-
|
191
|
-
#[cfg(feature = "enable-serde")]
|
192
|
-
use serde::{Deserialize, Serialize};
|
193
|
-
|
194
|
-
#[cfg(feature = "enable-serde")]
|
195
|
-
pub trait CompilePhase {
|
196
|
-
type MachSrcLocType: for<'a> Deserialize<'a> + Serialize + core::fmt::Debug + PartialEq + Clone;
|
197
|
-
type SourceLocType: for<'a> Deserialize<'a> + Serialize + core::fmt::Debug + PartialEq + Clone;
|
198
|
-
}
|
199
|
-
|
200
|
-
#[cfg(not(feature = "enable-serde"))]
|
201
|
-
pub trait CompilePhase {
|
202
|
-
type MachSrcLocType: core::fmt::Debug + PartialEq + Clone;
|
203
|
-
type SourceLocType: core::fmt::Debug + PartialEq + Clone;
|
204
|
-
}
|
205
|
-
|
206
|
-
/// Status of a compiled artifact that needs patching before being used.
|
207
|
-
#[derive(Clone, Debug, PartialEq)]
|
208
|
-
#[cfg_attr(feature = "enable-serde", derive(Serialize, Deserialize))]
|
209
|
-
pub struct Stencil;
|
210
|
-
|
211
|
-
/// Status of a compiled artifact ready to use.
|
212
|
-
#[derive(Clone, Debug, PartialEq)]
|
213
|
-
pub struct Final;
|
214
|
-
|
215
|
-
impl CompilePhase for Stencil {
|
216
|
-
type MachSrcLocType = MachSrcLoc<Stencil>;
|
217
|
-
type SourceLocType = RelSourceLoc;
|
218
|
-
}
|
219
|
-
|
220
|
-
impl CompilePhase for Final {
|
221
|
-
type MachSrcLocType = MachSrcLoc<Final>;
|
222
|
-
type SourceLocType = SourceLoc;
|
223
|
-
}
|
224
|
-
|
225
|
-
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
226
|
-
enum ForceVeneers {
|
227
|
-
Yes,
|
228
|
-
No,
|
229
|
-
}
|
230
|
-
|
231
|
-
/// A buffer of output to be produced, fixed up, and then emitted to a CodeSink
|
232
|
-
/// in bulk.
|
233
|
-
///
|
234
|
-
/// This struct uses `SmallVec`s to support small-ish function bodies without
|
235
|
-
/// any heap allocation. As such, it will be several kilobytes large. This is
|
236
|
-
/// likely fine as long as it is stack-allocated for function emission then
|
237
|
-
/// thrown away; but beware if many buffer objects are retained persistently.
|
238
|
-
pub struct MachBuffer<I: VCodeInst> {
|
239
|
-
/// The buffer contents, as raw bytes.
|
240
|
-
data: SmallVec<[u8; 1024]>,
|
241
|
-
/// Any relocations referring to this code. Note that only *external*
|
242
|
-
/// relocations are tracked here; references to labels within the buffer are
|
243
|
-
/// resolved before emission.
|
244
|
-
relocs: SmallVec<[MachReloc; 16]>,
|
245
|
-
/// Any trap records referring to this code.
|
246
|
-
traps: SmallVec<[MachTrap; 16]>,
|
247
|
-
/// Any call site records referring to this code.
|
248
|
-
call_sites: SmallVec<[MachCallSite; 16]>,
|
249
|
-
/// Any source location mappings referring to this code.
|
250
|
-
srclocs: SmallVec<[MachSrcLoc<Stencil>; 64]>,
|
251
|
-
/// Any stack maps referring to this code.
|
252
|
-
stack_maps: SmallVec<[MachStackMap; 8]>,
|
253
|
-
/// Any unwind info at a given location.
|
254
|
-
unwind_info: SmallVec<[(CodeOffset, UnwindInst); 8]>,
|
255
|
-
/// The current source location in progress (after `start_srcloc()` and
|
256
|
-
/// before `end_srcloc()`). This is a (start_offset, src_loc) tuple.
|
257
|
-
cur_srcloc: Option<(CodeOffset, RelSourceLoc)>,
|
258
|
-
/// Known label offsets; `UNKNOWN_LABEL_OFFSET` if unknown.
|
259
|
-
label_offsets: SmallVec<[CodeOffset; 16]>,
|
260
|
-
/// Label aliases: when one label points to an unconditional jump, and that
|
261
|
-
/// jump points to another label, we can redirect references to the first
|
262
|
-
/// label immediately to the second.
|
263
|
-
///
|
264
|
-
/// Invariant: we don't have label-alias cycles. We ensure this by,
|
265
|
-
/// before setting label A to alias label B, resolving B's alias
|
266
|
-
/// target (iteratively until a non-aliased label); if B is already
|
267
|
-
/// aliased to A, then we cannot alias A back to B.
|
268
|
-
label_aliases: SmallVec<[MachLabel; 16]>,
|
269
|
-
/// Constants that must be emitted at some point.
|
270
|
-
pending_constants: SmallVec<[VCodeConstant; 16]>,
|
271
|
-
/// Byte size of all constants in `pending_constants`.
|
272
|
-
pending_constants_size: CodeOffset,
|
273
|
-
/// Traps that must be emitted at some point.
|
274
|
-
pending_traps: SmallVec<[MachLabelTrap; 16]>,
|
275
|
-
/// Fixups that haven't yet been flushed into `fixup_records` below and may
|
276
|
-
/// be related to branches that are chomped. These all get added to
|
277
|
-
/// `fixup_records` during island emission.
|
278
|
-
pending_fixup_records: SmallVec<[MachLabelFixup<I>; 16]>,
|
279
|
-
/// The nearest upcoming deadline for entries in `pending_fixup_records`.
|
280
|
-
pending_fixup_deadline: CodeOffset,
|
281
|
-
/// Fixups that must be performed after all code is emitted.
|
282
|
-
fixup_records: BinaryHeap<MachLabelFixup<I>>,
|
283
|
-
/// Latest branches, to facilitate in-place editing for better fallthrough
|
284
|
-
/// behavior and empty-block removal.
|
285
|
-
latest_branches: SmallVec<[MachBranch; 4]>,
|
286
|
-
/// All labels at the current offset (emission tail). This is lazily
|
287
|
-
/// cleared: it is actually accurate as long as the current offset is
|
288
|
-
/// `labels_at_tail_off`, but if `cur_offset()` has grown larger, it should
|
289
|
-
/// be considered as empty.
|
290
|
-
///
|
291
|
-
/// For correctness, this *must* be complete (i.e., the vector must contain
|
292
|
-
/// all labels whose offsets are resolved to the current tail), because we
|
293
|
-
/// rely on it to update labels when we truncate branches.
|
294
|
-
labels_at_tail: SmallVec<[MachLabel; 4]>,
|
295
|
-
/// The last offset at which `labels_at_tail` is valid. It is conceptually
|
296
|
-
/// always describing the tail of the buffer, but we do not clear
|
297
|
-
/// `labels_at_tail` eagerly when the tail grows, rather we lazily clear it
|
298
|
-
/// when the offset has grown past this (`labels_at_tail_off`) point.
|
299
|
-
/// Always <= `cur_offset()`.
|
300
|
-
labels_at_tail_off: CodeOffset,
|
301
|
-
/// Metadata about all constants that this function has access to.
|
302
|
-
///
|
303
|
-
/// This records the size/alignment of all constants (not the actual data)
|
304
|
-
/// along with the last available label generated for the constant. This map
|
305
|
-
/// is consulted when constants are referred to and the label assigned to a
|
306
|
-
/// constant may change over time as well.
|
307
|
-
constants: PrimaryMap<VCodeConstant, MachBufferConstant>,
|
308
|
-
/// All recorded usages of constants as pairs of the constant and where the
|
309
|
-
/// constant needs to be placed within `self.data`. Note that the same
|
310
|
-
/// constant may appear in this array multiple times if it was emitted
|
311
|
-
/// multiple times.
|
312
|
-
used_constants: SmallVec<[(VCodeConstant, CodeOffset); 4]>,
|
313
|
-
/// Indicates when a patchable region is currently open, to guard that it's
|
314
|
-
/// not possible to nest patchable regions.
|
315
|
-
open_patchable: bool,
|
316
|
-
}
|
317
|
-
|
318
|
-
impl MachBufferFinalized<Stencil> {
|
319
|
-
/// Get a finalized machine buffer by applying the function's base source location.
|
320
|
-
pub fn apply_base_srcloc(self, base_srcloc: SourceLoc) -> MachBufferFinalized<Final> {
|
321
|
-
MachBufferFinalized {
|
322
|
-
data: self.data,
|
323
|
-
relocs: self.relocs,
|
324
|
-
traps: self.traps,
|
325
|
-
call_sites: self.call_sites,
|
326
|
-
srclocs: self
|
327
|
-
.srclocs
|
328
|
-
.into_iter()
|
329
|
-
.map(|srcloc| srcloc.apply_base_srcloc(base_srcloc))
|
330
|
-
.collect(),
|
331
|
-
stack_maps: self.stack_maps,
|
332
|
-
unwind_info: self.unwind_info,
|
333
|
-
alignment: self.alignment,
|
334
|
-
}
|
335
|
-
}
|
336
|
-
}
|
337
|
-
|
338
|
-
/// A `MachBuffer` once emission is completed: holds generated code and records,
|
339
|
-
/// without fixups. This allows the type to be independent of the backend.
|
340
|
-
#[derive(PartialEq, Debug, Clone)]
|
341
|
-
#[cfg_attr(
|
342
|
-
feature = "enable-serde",
|
343
|
-
derive(serde_derive::Serialize, serde_derive::Deserialize)
|
344
|
-
)]
|
345
|
-
pub struct MachBufferFinalized<T: CompilePhase> {
|
346
|
-
/// The buffer contents, as raw bytes.
|
347
|
-
pub(crate) data: SmallVec<[u8; 1024]>,
|
348
|
-
/// Any relocations referring to this code. Note that only *external*
|
349
|
-
/// relocations are tracked here; references to labels within the buffer are
|
350
|
-
/// resolved before emission.
|
351
|
-
pub(crate) relocs: SmallVec<[FinalizedMachReloc; 16]>,
|
352
|
-
/// Any trap records referring to this code.
|
353
|
-
pub(crate) traps: SmallVec<[MachTrap; 16]>,
|
354
|
-
/// Any call site records referring to this code.
|
355
|
-
pub(crate) call_sites: SmallVec<[MachCallSite; 16]>,
|
356
|
-
/// Any source location mappings referring to this code.
|
357
|
-
pub(crate) srclocs: SmallVec<[T::MachSrcLocType; 64]>,
|
358
|
-
/// Any stack maps referring to this code.
|
359
|
-
pub(crate) stack_maps: SmallVec<[MachStackMap; 8]>,
|
360
|
-
/// Any unwind info at a given location.
|
361
|
-
pub unwind_info: SmallVec<[(CodeOffset, UnwindInst); 8]>,
|
362
|
-
/// The requireed alignment of this buffer
|
363
|
-
pub alignment: u32,
|
364
|
-
}
|
365
|
-
|
366
|
-
const UNKNOWN_LABEL_OFFSET: CodeOffset = 0xffff_ffff;
|
367
|
-
const UNKNOWN_LABEL: MachLabel = MachLabel(0xffff_ffff);
|
368
|
-
|
369
|
-
/// Threshold on max length of `labels_at_this_branch` list to avoid
|
370
|
-
/// unbounded quadratic behavior (see comment below at use-site).
|
371
|
-
const LABEL_LIST_THRESHOLD: usize = 100;
|
372
|
-
|
373
|
-
/// A label refers to some offset in a `MachBuffer`. It may not be resolved at
|
374
|
-
/// the point at which it is used by emitted code; the buffer records "fixups"
|
375
|
-
/// for references to the label, and will come back and patch the code
|
376
|
-
/// appropriately when the label's location is eventually known.
|
377
|
-
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
378
|
-
pub struct MachLabel(u32);
|
379
|
-
entity_impl!(MachLabel);
|
380
|
-
|
381
|
-
impl MachLabel {
|
382
|
-
/// Get a label for a block. (The first N MachLabels are always reseved for
|
383
|
-
/// the N blocks in the vcode.)
|
384
|
-
pub fn from_block(bindex: BlockIndex) -> MachLabel {
|
385
|
-
MachLabel(bindex.index() as u32)
|
386
|
-
}
|
387
|
-
|
388
|
-
/// Get the numeric label index.
|
389
|
-
pub fn get(self) -> u32 {
|
390
|
-
self.0
|
391
|
-
}
|
392
|
-
|
393
|
-
/// Creates a string representing this label, for convenience.
|
394
|
-
pub fn to_string(&self) -> String {
|
395
|
-
format!("label{}", self.0)
|
396
|
-
}
|
397
|
-
}
|
398
|
-
|
399
|
-
impl Default for MachLabel {
|
400
|
-
fn default() -> Self {
|
401
|
-
UNKNOWN_LABEL
|
402
|
-
}
|
403
|
-
}
|
404
|
-
|
405
|
-
/// A stack map extent, when creating a stack map.
|
406
|
-
pub enum StackMapExtent {
|
407
|
-
/// The stack map starts at this instruction, and ends after the number of upcoming bytes
|
408
|
-
/// (note: this is a code offset diff).
|
409
|
-
UpcomingBytes(CodeOffset),
|
410
|
-
|
411
|
-
/// The stack map started at the given offset and ends at the current one. This helps
|
412
|
-
/// architectures where the instruction size has not a fixed length.
|
413
|
-
StartedAtOffset(CodeOffset),
|
414
|
-
}
|
415
|
-
|
416
|
-
/// Represents the beginning of an editable region in the [`MachBuffer`], while code emission is
|
417
|
-
/// still occurring. An [`OpenPatchRegion`] is closed by [`MachBuffer::end_patchable`], consuming
|
418
|
-
/// the [`OpenPatchRegion`] token in the process.
|
419
|
-
pub struct OpenPatchRegion(usize);
|
420
|
-
|
421
|
-
/// A region in the [`MachBuffer`] code buffer that can be edited prior to finalization. An example
|
422
|
-
/// of where you might want to use this is for patching instructions that mention constants that
|
423
|
-
/// won't be known until later: [`MachBuffer::start_patchable`] can be used to begin the patchable
|
424
|
-
/// region, instructions can be emitted with placeholder constants, and the [`PatchRegion`] token
|
425
|
-
/// can be produced by [`MachBuffer::end_patchable`]. Once the values of those constants are known,
|
426
|
-
/// the [`PatchRegion::patch`] function can be used to get a mutable buffer to the instruction
|
427
|
-
/// bytes, and the constants uses can be updated directly.
|
428
|
-
pub struct PatchRegion {
|
429
|
-
range: std::ops::Range<usize>,
|
430
|
-
}
|
431
|
-
|
432
|
-
impl PatchRegion {
|
433
|
-
/// Consume the patch region to yield a mutable slice of the [`MachBuffer`] data buffer.
|
434
|
-
pub fn patch<I: VCodeInst>(self, buffer: &mut MachBuffer<I>) -> &mut [u8] {
|
435
|
-
&mut buffer.data[self.range]
|
436
|
-
}
|
437
|
-
}
|
438
|
-
|
439
|
-
impl<I: VCodeInst> MachBuffer<I> {
|
440
|
-
/// Create a new section, known to start at `start_offset` and with a size limited to
|
441
|
-
/// `length_limit`.
|
442
|
-
pub fn new() -> MachBuffer<I> {
|
443
|
-
MachBuffer {
|
444
|
-
data: SmallVec::new(),
|
445
|
-
relocs: SmallVec::new(),
|
446
|
-
traps: SmallVec::new(),
|
447
|
-
call_sites: SmallVec::new(),
|
448
|
-
srclocs: SmallVec::new(),
|
449
|
-
stack_maps: SmallVec::new(),
|
450
|
-
unwind_info: SmallVec::new(),
|
451
|
-
cur_srcloc: None,
|
452
|
-
label_offsets: SmallVec::new(),
|
453
|
-
label_aliases: SmallVec::new(),
|
454
|
-
pending_constants: SmallVec::new(),
|
455
|
-
pending_constants_size: 0,
|
456
|
-
pending_traps: SmallVec::new(),
|
457
|
-
pending_fixup_records: SmallVec::new(),
|
458
|
-
pending_fixup_deadline: u32::MAX,
|
459
|
-
fixup_records: Default::default(),
|
460
|
-
latest_branches: SmallVec::new(),
|
461
|
-
labels_at_tail: SmallVec::new(),
|
462
|
-
labels_at_tail_off: 0,
|
463
|
-
constants: Default::default(),
|
464
|
-
used_constants: Default::default(),
|
465
|
-
open_patchable: false,
|
466
|
-
}
|
467
|
-
}
|
468
|
-
|
469
|
-
/// Current offset from start of buffer.
|
470
|
-
pub fn cur_offset(&self) -> CodeOffset {
|
471
|
-
self.data.len() as CodeOffset
|
472
|
-
}
|
473
|
-
|
474
|
-
/// Add a byte.
|
475
|
-
pub fn put1(&mut self, value: u8) {
|
476
|
-
self.data.push(value);
|
477
|
-
|
478
|
-
// Post-invariant: conceptual-labels_at_tail contains a complete and
|
479
|
-
// precise list of labels bound at `cur_offset()`. We have advanced
|
480
|
-
// `cur_offset()`, hence if it had been equal to `labels_at_tail_off`
|
481
|
-
// before, it is not anymore (and it cannot become equal, because
|
482
|
-
// `labels_at_tail_off` is always <= `cur_offset()`). Thus the list is
|
483
|
-
// conceptually empty (even though it is only lazily cleared). No labels
|
484
|
-
// can be bound at this new offset (by invariant on `label_offsets`).
|
485
|
-
// Hence the invariant holds.
|
486
|
-
}
|
487
|
-
|
488
|
-
/// Add 2 bytes.
|
489
|
-
pub fn put2(&mut self, value: u16) {
|
490
|
-
let bytes = value.to_le_bytes();
|
491
|
-
self.data.extend_from_slice(&bytes[..]);
|
492
|
-
|
493
|
-
// Post-invariant: as for `put1()`.
|
494
|
-
}
|
495
|
-
|
496
|
-
/// Add 4 bytes.
|
497
|
-
pub fn put4(&mut self, value: u32) {
|
498
|
-
let bytes = value.to_le_bytes();
|
499
|
-
self.data.extend_from_slice(&bytes[..]);
|
500
|
-
|
501
|
-
// Post-invariant: as for `put1()`.
|
502
|
-
}
|
503
|
-
|
504
|
-
/// Add 8 bytes.
|
505
|
-
pub fn put8(&mut self, value: u64) {
|
506
|
-
let bytes = value.to_le_bytes();
|
507
|
-
self.data.extend_from_slice(&bytes[..]);
|
508
|
-
|
509
|
-
// Post-invariant: as for `put1()`.
|
510
|
-
}
|
511
|
-
|
512
|
-
/// Add a slice of bytes.
|
513
|
-
pub fn put_data(&mut self, data: &[u8]) {
|
514
|
-
self.data.extend_from_slice(data);
|
515
|
-
|
516
|
-
// Post-invariant: as for `put1()`.
|
517
|
-
}
|
518
|
-
|
519
|
-
/// Reserve appended space and return a mutable slice referring to it.
|
520
|
-
pub fn get_appended_space(&mut self, len: usize) -> &mut [u8] {
|
521
|
-
let off = self.data.len();
|
522
|
-
let new_len = self.data.len() + len;
|
523
|
-
self.data.resize(new_len, 0);
|
524
|
-
&mut self.data[off..]
|
525
|
-
|
526
|
-
// Post-invariant: as for `put1()`.
|
527
|
-
}
|
528
|
-
|
529
|
-
/// Align up to the given alignment.
|
530
|
-
pub fn align_to(&mut self, align_to: CodeOffset) {
|
531
|
-
trace!("MachBuffer: align to {}", align_to);
|
532
|
-
assert!(
|
533
|
-
align_to.is_power_of_two(),
|
534
|
-
"{} is not a power of two",
|
535
|
-
align_to
|
536
|
-
);
|
537
|
-
while self.cur_offset() & (align_to - 1) != 0 {
|
538
|
-
self.put1(0);
|
539
|
-
}
|
540
|
-
|
541
|
-
// Post-invariant: as for `put1()`.
|
542
|
-
}
|
543
|
-
|
544
|
-
/// Begin a region of patchable code. There is one requirement for the
|
545
|
-
/// code that is emitted: It must not introduce any instructions that
|
546
|
-
/// could be chomped (branches are an example of this). In other words,
|
547
|
-
/// you must not call [`MachBuffer::add_cond_branch`] or
|
548
|
-
/// [`MachBuffer::add_uncond_branch`] between calls to this method and
|
549
|
-
/// [`MachBuffer::end_patchable`].
|
550
|
-
pub fn start_patchable(&mut self) -> OpenPatchRegion {
|
551
|
-
assert!(!self.open_patchable, "Patchable regions may not be nested");
|
552
|
-
self.open_patchable = true;
|
553
|
-
OpenPatchRegion(usize::try_from(self.cur_offset()).unwrap())
|
554
|
-
}
|
555
|
-
|
556
|
-
/// End a region of patchable code, yielding a [`PatchRegion`] value that
|
557
|
-
/// can be consumed later to produce a one-off mutable slice to the
|
558
|
-
/// associated region of the data buffer.
|
559
|
-
pub fn end_patchable(&mut self, open: OpenPatchRegion) -> PatchRegion {
|
560
|
-
// No need to assert the state of `open_patchable` here, as we take
|
561
|
-
// ownership of the only `OpenPatchable` value.
|
562
|
-
self.open_patchable = false;
|
563
|
-
let end = usize::try_from(self.cur_offset()).unwrap();
|
564
|
-
PatchRegion { range: open.0..end }
|
565
|
-
}
|
566
|
-
|
567
|
-
/// Allocate a `Label` to refer to some offset. May not be bound to a fixed
|
568
|
-
/// offset yet.
|
569
|
-
pub fn get_label(&mut self) -> MachLabel {
|
570
|
-
let l = self.label_offsets.len() as u32;
|
571
|
-
self.label_offsets.push(UNKNOWN_LABEL_OFFSET);
|
572
|
-
self.label_aliases.push(UNKNOWN_LABEL);
|
573
|
-
trace!("MachBuffer: new label -> {:?}", MachLabel(l));
|
574
|
-
MachLabel(l)
|
575
|
-
|
576
|
-
// Post-invariant: the only mutation is to add a new label; it has no
|
577
|
-
// bound offset yet, so it trivially satisfies all invariants.
|
578
|
-
}
|
579
|
-
|
580
|
-
/// Reserve the first N MachLabels for blocks.
|
581
|
-
pub fn reserve_labels_for_blocks(&mut self, blocks: usize) {
|
582
|
-
trace!("MachBuffer: first {} labels are for blocks", blocks);
|
583
|
-
debug_assert!(self.label_offsets.is_empty());
|
584
|
-
self.label_offsets.resize(blocks, UNKNOWN_LABEL_OFFSET);
|
585
|
-
self.label_aliases.resize(blocks, UNKNOWN_LABEL);
|
586
|
-
|
587
|
-
// Post-invariant: as for `get_label()`.
|
588
|
-
}
|
589
|
-
|
590
|
-
/// Registers metadata in this `MachBuffer` about the `constants` provided.
|
591
|
-
///
|
592
|
-
/// This will record the size/alignment of all constants which will prepare
|
593
|
-
/// them for emission later on.
|
594
|
-
pub fn register_constants(&mut self, constants: &VCodeConstants) {
|
595
|
-
for (c, val) in constants.iter() {
|
596
|
-
self.register_constant(&c, val);
|
597
|
-
}
|
598
|
-
}
|
599
|
-
|
600
|
-
/// Similar to [`MachBuffer::register_constants`] but registers a
|
601
|
-
/// single constant metadata. This function is useful in
|
602
|
-
/// situations where not all constants are known at the time of
|
603
|
-
/// emission.
|
604
|
-
pub fn register_constant(&mut self, constant: &VCodeConstant, data: &VCodeConstantData) {
|
605
|
-
let c2 = self.constants.push(MachBufferConstant {
|
606
|
-
upcoming_label: None,
|
607
|
-
align: data.alignment(),
|
608
|
-
size: data.as_slice().len(),
|
609
|
-
});
|
610
|
-
assert_eq!(*constant, c2);
|
611
|
-
}
|
612
|
-
|
613
|
-
/// Completes constant emission by iterating over `self.used_constants` and
|
614
|
-
/// filling in the "holes" with the constant values provided by `constants`.
|
615
|
-
///
|
616
|
-
/// Returns the alignment required for this entire buffer. Alignment starts
|
617
|
-
/// at the ISA's minimum function alignment and can be increased due to
|
618
|
-
/// constant requirements.
|
619
|
-
fn finish_constants(&mut self, constants: &VCodeConstants) -> u32 {
|
620
|
-
let mut alignment = I::function_alignment().minimum;
|
621
|
-
for (constant, offset) in mem::take(&mut self.used_constants) {
|
622
|
-
let constant = constants.get(constant);
|
623
|
-
let data = constant.as_slice();
|
624
|
-
self.data[offset as usize..][..data.len()].copy_from_slice(data);
|
625
|
-
alignment = constant.alignment().max(alignment);
|
626
|
-
}
|
627
|
-
alignment
|
628
|
-
}
|
629
|
-
|
630
|
-
/// Returns a label that can be used to refer to the `constant` provided.
|
631
|
-
///
|
632
|
-
/// This will automatically defer a new constant to be emitted for
|
633
|
-
/// `constant` if it has not been previously emitted. Note that this
|
634
|
-
/// function may return a different label for the same constant at
|
635
|
-
/// different points in time. The label is valid to use only from the
|
636
|
-
/// current location; the MachBuffer takes care to emit the same constant
|
637
|
-
/// multiple times if needed so the constant is always in range.
|
638
|
-
pub fn get_label_for_constant(&mut self, constant: VCodeConstant) -> MachLabel {
|
639
|
-
let MachBufferConstant {
|
640
|
-
align,
|
641
|
-
size,
|
642
|
-
upcoming_label,
|
643
|
-
} = self.constants[constant];
|
644
|
-
if let Some(label) = upcoming_label {
|
645
|
-
return label;
|
646
|
-
}
|
647
|
-
|
648
|
-
let label = self.get_label();
|
649
|
-
trace!(
|
650
|
-
"defer constant: eventually emit {size} bytes aligned \
|
651
|
-
to {align} at label {label:?}",
|
652
|
-
);
|
653
|
-
self.pending_constants.push(constant);
|
654
|
-
self.pending_constants_size += size as u32;
|
655
|
-
self.constants[constant].upcoming_label = Some(label);
|
656
|
-
label
|
657
|
-
}
|
658
|
-
|
659
|
-
/// Bind a label to the current offset. A label can only be bound once.
|
660
|
-
pub fn bind_label(&mut self, label: MachLabel, ctrl_plane: &mut ControlPlane) {
|
661
|
-
trace!(
|
662
|
-
"MachBuffer: bind label {:?} at offset {}",
|
663
|
-
label,
|
664
|
-
self.cur_offset()
|
665
|
-
);
|
666
|
-
debug_assert_eq!(self.label_offsets[label.0 as usize], UNKNOWN_LABEL_OFFSET);
|
667
|
-
debug_assert_eq!(self.label_aliases[label.0 as usize], UNKNOWN_LABEL);
|
668
|
-
let offset = self.cur_offset();
|
669
|
-
self.label_offsets[label.0 as usize] = offset;
|
670
|
-
self.lazily_clear_labels_at_tail();
|
671
|
-
self.labels_at_tail.push(label);
|
672
|
-
|
673
|
-
// Invariants hold: bound offset of label is <= cur_offset (in fact it
|
674
|
-
// is equal). If the `labels_at_tail` list was complete and precise
|
675
|
-
// before, it is still, because we have bound this label to the current
|
676
|
-
// offset and added it to the list (which contains all labels at the
|
677
|
-
// current offset).
|
678
|
-
|
679
|
-
self.optimize_branches(ctrl_plane);
|
680
|
-
|
681
|
-
// Post-invariant: by `optimize_branches()` (see argument there).
|
682
|
-
}
|
683
|
-
|
684
|
-
/// Lazily clear `labels_at_tail` if the tail offset has moved beyond the
|
685
|
-
/// offset that it applies to.
|
686
|
-
fn lazily_clear_labels_at_tail(&mut self) {
|
687
|
-
let offset = self.cur_offset();
|
688
|
-
if offset > self.labels_at_tail_off {
|
689
|
-
self.labels_at_tail_off = offset;
|
690
|
-
self.labels_at_tail.clear();
|
691
|
-
}
|
692
|
-
|
693
|
-
// Post-invariant: either labels_at_tail_off was at cur_offset, and
|
694
|
-
// state is untouched, or was less than cur_offset, in which case the
|
695
|
-
// labels_at_tail list was conceptually empty, and is now actually
|
696
|
-
// empty.
|
697
|
-
}
|
698
|
-
|
699
|
-
/// Resolve a label to an offset, if known. May return `UNKNOWN_LABEL_OFFSET`.
|
700
|
-
pub(crate) fn resolve_label_offset(&self, mut label: MachLabel) -> CodeOffset {
|
701
|
-
let mut iters = 0;
|
702
|
-
while self.label_aliases[label.0 as usize] != UNKNOWN_LABEL {
|
703
|
-
label = self.label_aliases[label.0 as usize];
|
704
|
-
// To protect against an infinite loop (despite our assurances to
|
705
|
-
// ourselves that the invariants make this impossible), assert out
|
706
|
-
// after 1M iterations. The number of basic blocks is limited
|
707
|
-
// in most contexts anyway so this should be impossible to hit with
|
708
|
-
// a legitimate input.
|
709
|
-
iters += 1;
|
710
|
-
assert!(iters < 1_000_000, "Unexpected cycle in label aliases");
|
711
|
-
}
|
712
|
-
self.label_offsets[label.0 as usize]
|
713
|
-
|
714
|
-
// Post-invariant: no mutations.
|
715
|
-
}
|
716
|
-
|
717
|
-
/// Emit a reference to the given label with the given reference type (i.e.,
|
718
|
-
/// branch-instruction format) at the current offset. This is like a
|
719
|
-
/// relocation, but handled internally.
|
720
|
-
///
|
721
|
-
/// This can be called before the branch is actually emitted; fixups will
|
722
|
-
/// not happen until an island is emitted or the buffer is finished.
|
723
|
-
pub fn use_label_at_offset(&mut self, offset: CodeOffset, label: MachLabel, kind: I::LabelUse) {
|
724
|
-
trace!(
|
725
|
-
"MachBuffer: use_label_at_offset: offset {} label {:?} kind {:?}",
|
726
|
-
offset,
|
727
|
-
label,
|
728
|
-
kind
|
729
|
-
);
|
730
|
-
|
731
|
-
// Add the fixup, and update the worst-case island size based on a
|
732
|
-
// veneer for this label use.
|
733
|
-
let fixup = MachLabelFixup {
|
734
|
-
label,
|
735
|
-
offset,
|
736
|
-
kind,
|
737
|
-
};
|
738
|
-
self.pending_fixup_deadline = self.pending_fixup_deadline.min(fixup.deadline());
|
739
|
-
self.pending_fixup_records.push(fixup);
|
740
|
-
|
741
|
-
// Post-invariant: no mutations to branches/labels data structures.
|
742
|
-
}
|
743
|
-
|
744
|
-
/// Inform the buffer of an unconditional branch at the given offset,
|
745
|
-
/// targetting the given label. May be used to optimize branches.
|
746
|
-
/// The last added label-use must correspond to this branch.
|
747
|
-
/// This must be called when the current offset is equal to `start`; i.e.,
|
748
|
-
/// before actually emitting the branch. This implies that for a branch that
|
749
|
-
/// uses a label and is eligible for optimizations by the MachBuffer, the
|
750
|
-
/// proper sequence is:
|
751
|
-
///
|
752
|
-
/// - Call `use_label_at_offset()` to emit the fixup record.
|
753
|
-
/// - Call `add_uncond_branch()` to make note of the branch.
|
754
|
-
/// - Emit the bytes for the branch's machine code.
|
755
|
-
///
|
756
|
-
/// Additional requirement: no labels may be bound between `start` and `end`
|
757
|
-
/// (exclusive on both ends).
|
758
|
-
pub fn add_uncond_branch(&mut self, start: CodeOffset, end: CodeOffset, target: MachLabel) {
|
759
|
-
debug_assert!(
|
760
|
-
!self.open_patchable,
|
761
|
-
"Branch instruction inserted within a patchable region"
|
762
|
-
);
|
763
|
-
assert!(self.cur_offset() == start);
|
764
|
-
debug_assert!(end > start);
|
765
|
-
assert!(!self.pending_fixup_records.is_empty());
|
766
|
-
let fixup = self.pending_fixup_records.len() - 1;
|
767
|
-
self.lazily_clear_labels_at_tail();
|
768
|
-
self.latest_branches.push(MachBranch {
|
769
|
-
start,
|
770
|
-
end,
|
771
|
-
target,
|
772
|
-
fixup,
|
773
|
-
inverted: None,
|
774
|
-
labels_at_this_branch: self.labels_at_tail.clone(),
|
775
|
-
});
|
776
|
-
|
777
|
-
// Post-invariant: we asserted branch start is current tail; the list of
|
778
|
-
// labels at branch is cloned from list of labels at current tail.
|
779
|
-
}
|
780
|
-
|
781
|
-
/// Inform the buffer of a conditional branch at the given offset,
|
782
|
-
/// targetting the given label. May be used to optimize branches.
|
783
|
-
/// The last added label-use must correspond to this branch.
|
784
|
-
///
|
785
|
-
/// Additional requirement: no labels may be bound between `start` and `end`
|
786
|
-
/// (exclusive on both ends).
|
787
|
-
pub fn add_cond_branch(
|
788
|
-
&mut self,
|
789
|
-
start: CodeOffset,
|
790
|
-
end: CodeOffset,
|
791
|
-
target: MachLabel,
|
792
|
-
inverted: &[u8],
|
793
|
-
) {
|
794
|
-
debug_assert!(
|
795
|
-
!self.open_patchable,
|
796
|
-
"Branch instruction inserted within a patchable region"
|
797
|
-
);
|
798
|
-
assert!(self.cur_offset() == start);
|
799
|
-
debug_assert!(end > start);
|
800
|
-
assert!(!self.pending_fixup_records.is_empty());
|
801
|
-
debug_assert!(inverted.len() == (end - start) as usize);
|
802
|
-
let fixup = self.pending_fixup_records.len() - 1;
|
803
|
-
let inverted = Some(SmallVec::from(inverted));
|
804
|
-
self.lazily_clear_labels_at_tail();
|
805
|
-
self.latest_branches.push(MachBranch {
|
806
|
-
start,
|
807
|
-
end,
|
808
|
-
target,
|
809
|
-
fixup,
|
810
|
-
inverted,
|
811
|
-
labels_at_this_branch: self.labels_at_tail.clone(),
|
812
|
-
});
|
813
|
-
|
814
|
-
// Post-invariant: we asserted branch start is current tail; labels at
|
815
|
-
// branch list is cloned from list of labels at current tail.
|
816
|
-
}
|
817
|
-
|
818
|
-
fn truncate_last_branch(&mut self) {
|
819
|
-
debug_assert!(
|
820
|
-
!self.open_patchable,
|
821
|
-
"Branch instruction truncated within a patchable region"
|
822
|
-
);
|
823
|
-
|
824
|
-
self.lazily_clear_labels_at_tail();
|
825
|
-
// Invariants hold at this point.
|
826
|
-
|
827
|
-
let b = self.latest_branches.pop().unwrap();
|
828
|
-
assert!(b.end == self.cur_offset());
|
829
|
-
|
830
|
-
// State:
|
831
|
-
// [PRE CODE]
|
832
|
-
// Offset b.start, b.labels_at_this_branch:
|
833
|
-
// [BRANCH CODE]
|
834
|
-
// cur_off, self.labels_at_tail -->
|
835
|
-
// (end of buffer)
|
836
|
-
self.data.truncate(b.start as usize);
|
837
|
-
self.pending_fixup_records.truncate(b.fixup);
|
838
|
-
while let Some(last_srcloc) = self.srclocs.last_mut() {
|
839
|
-
if last_srcloc.end <= b.start {
|
840
|
-
break;
|
841
|
-
}
|
842
|
-
if last_srcloc.start < b.start {
|
843
|
-
last_srcloc.end = b.start;
|
844
|
-
break;
|
845
|
-
}
|
846
|
-
self.srclocs.pop();
|
847
|
-
}
|
848
|
-
// State:
|
849
|
-
// [PRE CODE]
|
850
|
-
// cur_off, Offset b.start, b.labels_at_this_branch:
|
851
|
-
// (end of buffer)
|
852
|
-
//
|
853
|
-
// self.labels_at_tail --> (past end of buffer)
|
854
|
-
let cur_off = self.cur_offset();
|
855
|
-
self.labels_at_tail_off = cur_off;
|
856
|
-
// State:
|
857
|
-
// [PRE CODE]
|
858
|
-
// cur_off, Offset b.start, b.labels_at_this_branch,
|
859
|
-
// self.labels_at_tail:
|
860
|
-
// (end of buffer)
|
861
|
-
//
|
862
|
-
// resolve_label_offset(l) for l in labels_at_tail:
|
863
|
-
// (past end of buffer)
|
864
|
-
|
865
|
-
trace!(
|
866
|
-
"truncate_last_branch: truncated {:?}; off now {}",
|
867
|
-
b,
|
868
|
-
cur_off
|
869
|
-
);
|
870
|
-
|
871
|
-
// Fix up resolved label offsets for labels at tail.
|
872
|
-
for &l in &self.labels_at_tail {
|
873
|
-
self.label_offsets[l.0 as usize] = cur_off;
|
874
|
-
}
|
875
|
-
// Old labels_at_this_branch are now at cur_off.
|
876
|
-
self.labels_at_tail
|
877
|
-
.extend(b.labels_at_this_branch.into_iter());
|
878
|
-
|
879
|
-
// Post-invariant: this operation is defined to truncate the buffer,
|
880
|
-
// which moves cur_off backward, and to move labels at the end of the
|
881
|
-
// buffer back to the start-of-branch offset.
|
882
|
-
//
|
883
|
-
// latest_branches satisfies all invariants:
|
884
|
-
// - it has no branches past the end of the buffer (branches are in
|
885
|
-
// order, we removed the last one, and we truncated the buffer to just
|
886
|
-
// before the start of that branch)
|
887
|
-
// - no labels were moved to lower offsets than the (new) cur_off, so
|
888
|
-
// the labels_at_this_branch list for any other branch need not change.
|
889
|
-
//
|
890
|
-
// labels_at_tail satisfies all invariants:
|
891
|
-
// - all labels that were at the tail after the truncated branch are
|
892
|
-
// moved backward to just before the branch, which becomes the new tail;
|
893
|
-
// thus every element in the list should remain (ensured by `.extend()`
|
894
|
-
// above).
|
895
|
-
// - all labels that refer to the new tail, which is the start-offset of
|
896
|
-
// the truncated branch, must be present. The `labels_at_this_branch`
|
897
|
-
// list in the truncated branch's record is a complete and precise list
|
898
|
-
// of exactly these labels; we append these to labels_at_tail.
|
899
|
-
// - labels_at_tail_off is at cur_off after truncation occurs, so the
|
900
|
-
// list is valid (not to be lazily cleared).
|
901
|
-
//
|
902
|
-
// The stated operation was performed:
|
903
|
-
// - For each label at the end of the buffer prior to this method, it
|
904
|
-
// now resolves to the new (truncated) end of the buffer: it must have
|
905
|
-
// been in `labels_at_tail` (this list is precise and complete, and
|
906
|
-
// the tail was at the end of the truncated branch on entry), and we
|
907
|
-
// iterate over this list and set `label_offsets` to the new tail.
|
908
|
-
// None of these labels could have been an alias (by invariant), so
|
909
|
-
// `label_offsets` is authoritative for each.
|
910
|
-
// - No other labels will be past the end of the buffer, because of the
|
911
|
-
// requirement that no labels be bound to the middle of branch ranges
|
912
|
-
// (see comments to `add_{cond,uncond}_branch()`).
|
913
|
-
// - The buffer is truncated to just before the last branch, and the
|
914
|
-
// fixup record referring to that last branch is removed.
|
915
|
-
}
|
916
|
-
|
917
|
-
/// Performs various optimizations on branches pointing at the current label.
|
918
|
-
pub fn optimize_branches(&mut self, ctrl_plane: &mut ControlPlane) {
|
919
|
-
if ctrl_plane.get_decision() {
|
920
|
-
return;
|
921
|
-
}
|
922
|
-
|
923
|
-
self.lazily_clear_labels_at_tail();
|
924
|
-
// Invariants valid at this point.
|
925
|
-
|
926
|
-
trace!(
|
927
|
-
"enter optimize_branches:\n b = {:?}\n l = {:?}\n f = {:?}",
|
928
|
-
self.latest_branches,
|
929
|
-
self.labels_at_tail,
|
930
|
-
self.pending_fixup_records
|
931
|
-
);
|
932
|
-
|
933
|
-
// We continue to munch on branches at the tail of the buffer until no
|
934
|
-
// more rules apply. Note that the loop only continues if a branch is
|
935
|
-
// actually truncated (or if labels are redirected away from a branch),
|
936
|
-
// so this always makes progress.
|
937
|
-
while let Some(b) = self.latest_branches.last() {
|
938
|
-
let cur_off = self.cur_offset();
|
939
|
-
trace!("optimize_branches: last branch {:?} at off {}", b, cur_off);
|
940
|
-
// If there has been any code emission since the end of the last branch or
|
941
|
-
// label definition, then there's nothing we can edit (because we
|
942
|
-
// don't move code once placed, only back up and overwrite), so
|
943
|
-
// clear the records and finish.
|
944
|
-
if b.end < cur_off {
|
945
|
-
break;
|
946
|
-
}
|
947
|
-
|
948
|
-
// If the "labels at this branch" list on this branch is
|
949
|
-
// longer than a threshold, don't do any simplification,
|
950
|
-
// and let the branch remain to separate those labels from
|
951
|
-
// the current tail. This avoids quadratic behavior (see
|
952
|
-
// #3468): otherwise, if a long string of "goto next;
|
953
|
-
// next:" patterns are emitted, all of the labels will
|
954
|
-
// coalesce into a long list of aliases for the current
|
955
|
-
// buffer tail. We must track all aliases of the current
|
956
|
-
// tail for correctness, but we are also allowed to skip
|
957
|
-
// optimization (removal) of any branch, so we take the
|
958
|
-
// escape hatch here and let it stand. In effect this
|
959
|
-
// "spreads" the many thousands of labels in the
|
960
|
-
// pathological case among an actual (harmless but
|
961
|
-
// suboptimal) instruction once per N labels.
|
962
|
-
if b.labels_at_this_branch.len() > LABEL_LIST_THRESHOLD {
|
963
|
-
break;
|
964
|
-
}
|
965
|
-
|
966
|
-
// Invariant: we are looking at a branch that ends at the tail of
|
967
|
-
// the buffer.
|
968
|
-
|
969
|
-
// For any branch, conditional or unconditional:
|
970
|
-
// - If the target is a label at the current offset, then remove
|
971
|
-
// the conditional branch, and reset all labels that targetted
|
972
|
-
// the current offset (end of branch) to the truncated
|
973
|
-
// end-of-code.
|
974
|
-
//
|
975
|
-
// Preserves execution semantics: a branch to its own fallthrough
|
976
|
-
// address is equivalent to a no-op; in both cases, nextPC is the
|
977
|
-
// fallthrough.
|
978
|
-
if self.resolve_label_offset(b.target) == cur_off {
|
979
|
-
trace!("branch with target == cur off; truncating");
|
980
|
-
self.truncate_last_branch();
|
981
|
-
continue;
|
982
|
-
}
|
983
|
-
|
984
|
-
// If latest is an unconditional branch:
|
985
|
-
//
|
986
|
-
// - If the branch's target is not its own start address, then for
|
987
|
-
// each label at the start of branch, make the label an alias of the
|
988
|
-
// branch target, and remove the label from the "labels at this
|
989
|
-
// branch" list.
|
990
|
-
//
|
991
|
-
// - Preserves execution semantics: an unconditional branch's
|
992
|
-
// only effect is to set PC to a new PC; this change simply
|
993
|
-
// collapses one step in the step-semantics.
|
994
|
-
//
|
995
|
-
// - Post-invariant: the labels that were bound to the start of
|
996
|
-
// this branch become aliases, so they must not be present in any
|
997
|
-
// labels-at-this-branch list or the labels-at-tail list. The
|
998
|
-
// labels are removed form the latest-branch record's
|
999
|
-
// labels-at-this-branch list, and are never placed in the
|
1000
|
-
// labels-at-tail list. Furthermore, it is correct that they are
|
1001
|
-
// not in either list, because they are now aliases, and labels
|
1002
|
-
// that are aliases remain aliases forever.
|
1003
|
-
//
|
1004
|
-
// - If there is a prior unconditional branch that ends just before
|
1005
|
-
// this one begins, and this branch has no labels bound to its
|
1006
|
-
// start, then we can truncate this branch, because it is entirely
|
1007
|
-
// unreachable (we have redirected all labels that make it
|
1008
|
-
// reachable otherwise). Do so and continue around the loop.
|
1009
|
-
//
|
1010
|
-
// - Preserves execution semantics: the branch is unreachable,
|
1011
|
-
// because execution can only flow into an instruction from the
|
1012
|
-
// prior instruction's fallthrough or from a branch bound to that
|
1013
|
-
// instruction's start offset. Unconditional branches have no
|
1014
|
-
// fallthrough, so if the prior instruction is an unconditional
|
1015
|
-
// branch, no fallthrough entry can happen. The
|
1016
|
-
// labels-at-this-branch list is complete (by invariant), so if it
|
1017
|
-
// is empty, then the instruction is entirely unreachable. Thus,
|
1018
|
-
// it can be removed.
|
1019
|
-
//
|
1020
|
-
// - Post-invariant: ensured by truncate_last_branch().
|
1021
|
-
//
|
1022
|
-
// - If there is a prior conditional branch whose target label
|
1023
|
-
// resolves to the current offset (branches around the
|
1024
|
-
// unconditional branch), then remove the unconditional branch,
|
1025
|
-
// and make the target of the unconditional the target of the
|
1026
|
-
// conditional instead.
|
1027
|
-
//
|
1028
|
-
// - Preserves execution semantics: previously we had:
|
1029
|
-
//
|
1030
|
-
// L1:
|
1031
|
-
// cond_br L2
|
1032
|
-
// br L3
|
1033
|
-
// L2:
|
1034
|
-
// (end of buffer)
|
1035
|
-
//
|
1036
|
-
// by removing the last branch, we have:
|
1037
|
-
//
|
1038
|
-
// L1:
|
1039
|
-
// cond_br L2
|
1040
|
-
// L2:
|
1041
|
-
// (end of buffer)
|
1042
|
-
//
|
1043
|
-
// we then fix up the records for the conditional branch to
|
1044
|
-
// have:
|
1045
|
-
//
|
1046
|
-
// L1:
|
1047
|
-
// cond_br.inverted L3
|
1048
|
-
// L2:
|
1049
|
-
//
|
1050
|
-
// In the original code, control flow reaches L2 when the
|
1051
|
-
// conditional branch's predicate is true, and L3 otherwise. In
|
1052
|
-
// the optimized code, the same is true.
|
1053
|
-
//
|
1054
|
-
// - Post-invariant: all edits to latest_branches and
|
1055
|
-
// labels_at_tail are performed by `truncate_last_branch()`,
|
1056
|
-
// which maintains the invariants at each step.
|
1057
|
-
|
1058
|
-
if b.is_uncond() {
|
1059
|
-
// Set any label equal to current branch's start as an alias of
|
1060
|
-
// the branch's target, if the target is not the branch itself
|
1061
|
-
// (i.e., an infinite loop).
|
1062
|
-
//
|
1063
|
-
// We cannot perform this aliasing if the target of this branch
|
1064
|
-
// ultimately aliases back here; if so, we need to keep this
|
1065
|
-
// branch, so break out of this loop entirely (and clear the
|
1066
|
-
// latest-branches list below).
|
1067
|
-
//
|
1068
|
-
// Note that this check is what prevents cycles from forming in
|
1069
|
-
// `self.label_aliases`. To see why, consider an arbitrary start
|
1070
|
-
// state:
|
1071
|
-
//
|
1072
|
-
// label_aliases[L1] = L2, label_aliases[L2] = L3, ..., up to
|
1073
|
-
// Ln, which is not aliased.
|
1074
|
-
//
|
1075
|
-
// We would create a cycle if we assigned label_aliases[Ln]
|
1076
|
-
// = L1. Note that the below assignment is the only write
|
1077
|
-
// to label_aliases.
|
1078
|
-
//
|
1079
|
-
// By our other invariants, we have that Ln (`l` below)
|
1080
|
-
// resolves to the offset `b.start`, because it is in the
|
1081
|
-
// set `b.labels_at_this_branch`.
|
1082
|
-
//
|
1083
|
-
// If L1 were already aliased, through some arbitrarily deep
|
1084
|
-
// chain, to Ln, then it must also resolve to this offset
|
1085
|
-
// `b.start`.
|
1086
|
-
//
|
1087
|
-
// By checking the resolution of `L1` against this offset,
|
1088
|
-
// and aborting this branch-simplification if they are
|
1089
|
-
// equal, we prevent the below assignment from ever creating
|
1090
|
-
// a cycle.
|
1091
|
-
if self.resolve_label_offset(b.target) != b.start {
|
1092
|
-
let redirected = b.labels_at_this_branch.len();
|
1093
|
-
for &l in &b.labels_at_this_branch {
|
1094
|
-
trace!(
|
1095
|
-
" -> label at start of branch {:?} redirected to target {:?}",
|
1096
|
-
l,
|
1097
|
-
b.target
|
1098
|
-
);
|
1099
|
-
self.label_aliases[l.0 as usize] = b.target;
|
1100
|
-
// NOTE: we continue to ensure the invariant that labels
|
1101
|
-
// pointing to tail of buffer are in `labels_at_tail`
|
1102
|
-
// because we already ensured above that the last branch
|
1103
|
-
// cannot have a target of `cur_off`; so we never have
|
1104
|
-
// to put the label into `labels_at_tail` when moving it
|
1105
|
-
// here.
|
1106
|
-
}
|
1107
|
-
// Maintain invariant: all branches have been redirected
|
1108
|
-
// and are no longer pointing at the start of this branch.
|
1109
|
-
let mut_b = self.latest_branches.last_mut().unwrap();
|
1110
|
-
mut_b.labels_at_this_branch.clear();
|
1111
|
-
|
1112
|
-
if redirected > 0 {
|
1113
|
-
trace!(" -> after label redirects, restarting loop");
|
1114
|
-
continue;
|
1115
|
-
}
|
1116
|
-
} else {
|
1117
|
-
break;
|
1118
|
-
}
|
1119
|
-
|
1120
|
-
let b = self.latest_branches.last().unwrap();
|
1121
|
-
|
1122
|
-
// Examine any immediately preceding branch.
|
1123
|
-
if self.latest_branches.len() > 1 {
|
1124
|
-
let prev_b = &self.latest_branches[self.latest_branches.len() - 2];
|
1125
|
-
trace!(" -> more than one branch; prev_b = {:?}", prev_b);
|
1126
|
-
// This uncond is immediately after another uncond; we
|
1127
|
-
// should have already redirected labels to this uncond away
|
1128
|
-
// (but check to be sure); so we can truncate this uncond.
|
1129
|
-
if prev_b.is_uncond()
|
1130
|
-
&& prev_b.end == b.start
|
1131
|
-
&& b.labels_at_this_branch.is_empty()
|
1132
|
-
{
|
1133
|
-
trace!(" -> uncond follows another uncond; truncating");
|
1134
|
-
self.truncate_last_branch();
|
1135
|
-
continue;
|
1136
|
-
}
|
1137
|
-
|
1138
|
-
// This uncond is immediately after a conditional, and the
|
1139
|
-
// conditional's target is the end of this uncond, and we've
|
1140
|
-
// already redirected labels to this uncond away; so we can
|
1141
|
-
// truncate this uncond, flip the sense of the conditional, and
|
1142
|
-
// set the conditional's target (in `latest_branches` and in
|
1143
|
-
// `fixup_records`) to the uncond's target.
|
1144
|
-
if prev_b.is_cond()
|
1145
|
-
&& prev_b.end == b.start
|
1146
|
-
&& self.resolve_label_offset(prev_b.target) == cur_off
|
1147
|
-
{
|
1148
|
-
trace!(" -> uncond follows a conditional, and conditional's target resolves to current offset");
|
1149
|
-
// Save the target of the uncond (this becomes the
|
1150
|
-
// target of the cond), and truncate the uncond.
|
1151
|
-
let target = b.target;
|
1152
|
-
let data = prev_b.inverted.clone().unwrap();
|
1153
|
-
self.truncate_last_branch();
|
1154
|
-
|
1155
|
-
// Mutate the code and cond branch.
|
1156
|
-
let off_before_edit = self.cur_offset();
|
1157
|
-
let prev_b = self.latest_branches.last_mut().unwrap();
|
1158
|
-
let not_inverted = SmallVec::from(
|
1159
|
-
&self.data[(prev_b.start as usize)..(prev_b.end as usize)],
|
1160
|
-
);
|
1161
|
-
|
1162
|
-
// Low-level edit: replaces bytes of branch with
|
1163
|
-
// inverted form. cur_off remains the same afterward, so
|
1164
|
-
// we do not need to modify label data structures.
|
1165
|
-
self.data.truncate(prev_b.start as usize);
|
1166
|
-
self.data.extend_from_slice(&data[..]);
|
1167
|
-
|
1168
|
-
// Save the original code as the inversion of the
|
1169
|
-
// inverted branch, in case we later edit this branch
|
1170
|
-
// again.
|
1171
|
-
prev_b.inverted = Some(not_inverted);
|
1172
|
-
self.pending_fixup_records[prev_b.fixup].label = target;
|
1173
|
-
trace!(" -> reassigning target of condbr to {:?}", target);
|
1174
|
-
prev_b.target = target;
|
1175
|
-
debug_assert_eq!(off_before_edit, self.cur_offset());
|
1176
|
-
continue;
|
1177
|
-
}
|
1178
|
-
}
|
1179
|
-
}
|
1180
|
-
|
1181
|
-
// If we couldn't do anything with the last branch, then break.
|
1182
|
-
break;
|
1183
|
-
}
|
1184
|
-
|
1185
|
-
self.purge_latest_branches();
|
1186
|
-
|
1187
|
-
trace!(
|
1188
|
-
"leave optimize_branches:\n b = {:?}\n l = {:?}\n f = {:?}",
|
1189
|
-
self.latest_branches,
|
1190
|
-
self.labels_at_tail,
|
1191
|
-
self.pending_fixup_records
|
1192
|
-
);
|
1193
|
-
}
|
1194
|
-
|
1195
|
-
fn purge_latest_branches(&mut self) {
|
1196
|
-
// All of our branch simplification rules work only if a branch ends at
|
1197
|
-
// the tail of the buffer, with no following code; and branches are in
|
1198
|
-
// order in latest_branches; so if the last entry ends prior to
|
1199
|
-
// cur_offset, then clear all entries.
|
1200
|
-
let cur_off = self.cur_offset();
|
1201
|
-
if let Some(l) = self.latest_branches.last() {
|
1202
|
-
if l.end < cur_off {
|
1203
|
-
trace!("purge_latest_branches: removing branch {:?}", l);
|
1204
|
-
self.latest_branches.clear();
|
1205
|
-
}
|
1206
|
-
}
|
1207
|
-
|
1208
|
-
// Post-invariant: no invariant requires any branch to appear in
|
1209
|
-
// `latest_branches`; it is always optional. The list-clear above thus
|
1210
|
-
// preserves all semantics.
|
1211
|
-
}
|
1212
|
-
|
1213
|
-
/// Emit a trap at some point in the future with the specified code and
|
1214
|
-
/// stack map.
|
1215
|
-
///
|
1216
|
-
/// This function returns a [`MachLabel`] which will be the future address
|
1217
|
-
/// of the trap. Jumps should refer to this label, likely by using the
|
1218
|
-
/// [`MachBuffer::use_label_at_offset`] method, to get a relocation
|
1219
|
-
/// patched in once the address of the trap is known.
|
1220
|
-
///
|
1221
|
-
/// This will batch all traps into the end of the function.
|
1222
|
-
pub fn defer_trap(&mut self, code: TrapCode, stack_map: Option<StackMap>) -> MachLabel {
|
1223
|
-
let label = self.get_label();
|
1224
|
-
self.pending_traps.push(MachLabelTrap {
|
1225
|
-
label,
|
1226
|
-
code,
|
1227
|
-
stack_map,
|
1228
|
-
loc: self.cur_srcloc.map(|(_start, loc)| loc),
|
1229
|
-
});
|
1230
|
-
label
|
1231
|
-
}
|
1232
|
-
|
1233
|
-
/// Is an island needed within the next N bytes?
|
1234
|
-
pub fn island_needed(&self, distance: CodeOffset) -> bool {
|
1235
|
-
let deadline = match self.fixup_records.peek() {
|
1236
|
-
Some(fixup) => fixup.deadline().min(self.pending_fixup_deadline),
|
1237
|
-
None => self.pending_fixup_deadline,
|
1238
|
-
};
|
1239
|
-
deadline < u32::MAX && self.worst_case_end_of_island(distance) > deadline
|
1240
|
-
}
|
1241
|
-
|
1242
|
-
/// Returns the maximal offset that islands can reach if `distance` more
|
1243
|
-
/// bytes are appended.
|
1244
|
-
///
|
1245
|
-
/// This is used to determine if veneers need insertions since jumps that
|
1246
|
-
/// can't reach past this point must get a veneer of some form.
|
1247
|
-
fn worst_case_end_of_island(&self, distance: CodeOffset) -> CodeOffset {
|
1248
|
-
// Assume that all fixups will require veneers and that the veneers are
|
1249
|
-
// the worst-case size for each platform. This is an over-generalization
|
1250
|
-
// to avoid iterating over the `fixup_records` list or maintaining
|
1251
|
-
// information about it as we go along.
|
1252
|
-
let island_worst_case_size = ((self.fixup_records.len() + self.pending_fixup_records.len())
|
1253
|
-
as u32)
|
1254
|
-
* (I::LabelUse::worst_case_veneer_size())
|
1255
|
-
+ self.pending_constants_size
|
1256
|
-
+ (self.pending_traps.len() * I::TRAP_OPCODE.len()) as u32;
|
1257
|
-
self.cur_offset()
|
1258
|
-
.saturating_add(distance)
|
1259
|
-
.saturating_add(island_worst_case_size)
|
1260
|
-
}
|
1261
|
-
|
1262
|
-
/// Emit all pending constants and required pending veneers.
|
1263
|
-
///
|
1264
|
-
/// Should only be called if `island_needed()` returns true, i.e., if we
|
1265
|
-
/// actually reach a deadline. It's not necessarily a problem to do so
|
1266
|
-
/// otherwise but it may result in unnecessary work during emission.
|
1267
|
-
pub fn emit_island(&mut self, distance: CodeOffset, ctrl_plane: &mut ControlPlane) {
|
1268
|
-
self.emit_island_maybe_forced(ForceVeneers::No, distance, ctrl_plane);
|
1269
|
-
}
|
1270
|
-
|
1271
|
-
/// Same as `emit_island`, but an internal API with a `force_veneers`
|
1272
|
-
/// argument to force all veneers to always get emitted for debugging.
|
1273
|
-
fn emit_island_maybe_forced(
|
1274
|
-
&mut self,
|
1275
|
-
force_veneers: ForceVeneers,
|
1276
|
-
distance: CodeOffset,
|
1277
|
-
ctrl_plane: &mut ControlPlane,
|
1278
|
-
) {
|
1279
|
-
// We're going to purge fixups, so no latest-branch editing can happen
|
1280
|
-
// anymore.
|
1281
|
-
self.latest_branches.clear();
|
1282
|
-
|
1283
|
-
// End the current location tracking since anything emitted during this
|
1284
|
-
// function shouldn't be attributed to whatever the current source
|
1285
|
-
// location is.
|
1286
|
-
//
|
1287
|
-
// Note that the current source location, if it's set right now, will be
|
1288
|
-
// restored at the end of this island emission.
|
1289
|
-
let cur_loc = self.cur_srcloc.map(|(_, loc)| loc);
|
1290
|
-
if cur_loc.is_some() {
|
1291
|
-
self.end_srcloc();
|
1292
|
-
}
|
1293
|
-
|
1294
|
-
let forced_threshold = self.worst_case_end_of_island(distance);
|
1295
|
-
|
1296
|
-
// First flush out all traps/constants so we have more labels in case
|
1297
|
-
// fixups are applied against these labels.
|
1298
|
-
//
|
1299
|
-
// Note that traps are placed first since this typically happens at the
|
1300
|
-
// end of the function and for disassemblers we try to keep all the code
|
1301
|
-
// contiguously together.
|
1302
|
-
for MachLabelTrap {
|
1303
|
-
label,
|
1304
|
-
code,
|
1305
|
-
stack_map,
|
1306
|
-
loc,
|
1307
|
-
} in mem::take(&mut self.pending_traps)
|
1308
|
-
{
|
1309
|
-
// If this trap has source information associated with it then
|
1310
|
-
// emit this information for the trap instruction going out now too.
|
1311
|
-
if let Some(loc) = loc {
|
1312
|
-
self.start_srcloc(loc);
|
1313
|
-
}
|
1314
|
-
self.align_to(I::LabelUse::ALIGN);
|
1315
|
-
self.bind_label(label, ctrl_plane);
|
1316
|
-
self.add_trap(code);
|
1317
|
-
if let Some(map) = stack_map {
|
1318
|
-
let extent = StackMapExtent::UpcomingBytes(I::TRAP_OPCODE.len() as u32);
|
1319
|
-
self.add_stack_map(extent, map);
|
1320
|
-
}
|
1321
|
-
self.put_data(I::TRAP_OPCODE);
|
1322
|
-
if loc.is_some() {
|
1323
|
-
self.end_srcloc();
|
1324
|
-
}
|
1325
|
-
}
|
1326
|
-
|
1327
|
-
for constant in mem::take(&mut self.pending_constants) {
|
1328
|
-
let MachBufferConstant { align, size, .. } = self.constants[constant];
|
1329
|
-
let label = self.constants[constant].upcoming_label.take().unwrap();
|
1330
|
-
self.align_to(align);
|
1331
|
-
self.bind_label(label, ctrl_plane);
|
1332
|
-
self.used_constants.push((constant, self.cur_offset()));
|
1333
|
-
self.get_appended_space(size);
|
1334
|
-
}
|
1335
|
-
|
1336
|
-
// Either handle all pending fixups because they're ready or move them
|
1337
|
-
// onto the `BinaryHeap` tracking all pending fixups if they aren't
|
1338
|
-
// ready.
|
1339
|
-
assert!(self.latest_branches.is_empty());
|
1340
|
-
for fixup in mem::take(&mut self.pending_fixup_records) {
|
1341
|
-
if self.should_apply_fixup(&fixup, forced_threshold) {
|
1342
|
-
self.handle_fixup(fixup, force_veneers, forced_threshold);
|
1343
|
-
} else {
|
1344
|
-
self.fixup_records.push(fixup);
|
1345
|
-
}
|
1346
|
-
}
|
1347
|
-
self.pending_fixup_deadline = u32::MAX;
|
1348
|
-
while let Some(fixup) = self.fixup_records.peek() {
|
1349
|
-
trace!("emit_island: fixup {:?}", fixup);
|
1350
|
-
|
1351
|
-
// If this fixup shouldn't be applied, that means its label isn't
|
1352
|
-
// defined yet and there'll be remaining space to apply a veneer if
|
1353
|
-
// necessary in the future after this island. In that situation
|
1354
|
-
// because `fixup_records` is sorted by deadline this loop can
|
1355
|
-
// exit.
|
1356
|
-
if !self.should_apply_fixup(fixup, forced_threshold) {
|
1357
|
-
break;
|
1358
|
-
}
|
1359
|
-
|
1360
|
-
let fixup = self.fixup_records.pop().unwrap();
|
1361
|
-
self.handle_fixup(fixup, force_veneers, forced_threshold);
|
1362
|
-
}
|
1363
|
-
|
1364
|
-
if let Some(loc) = cur_loc {
|
1365
|
-
self.start_srcloc(loc);
|
1366
|
-
}
|
1367
|
-
}
|
1368
|
-
|
1369
|
-
fn should_apply_fixup(&self, fixup: &MachLabelFixup<I>, forced_threshold: CodeOffset) -> bool {
|
1370
|
-
let label_offset = self.resolve_label_offset(fixup.label);
|
1371
|
-
label_offset != UNKNOWN_LABEL_OFFSET || fixup.deadline() < forced_threshold
|
1372
|
-
}
|
1373
|
-
|
1374
|
-
fn handle_fixup(
|
1375
|
-
&mut self,
|
1376
|
-
fixup: MachLabelFixup<I>,
|
1377
|
-
force_veneers: ForceVeneers,
|
1378
|
-
forced_threshold: CodeOffset,
|
1379
|
-
) {
|
1380
|
-
let MachLabelFixup {
|
1381
|
-
label,
|
1382
|
-
offset,
|
1383
|
-
kind,
|
1384
|
-
} = fixup;
|
1385
|
-
let start = offset as usize;
|
1386
|
-
let end = (offset + kind.patch_size()) as usize;
|
1387
|
-
let label_offset = self.resolve_label_offset(label);
|
1388
|
-
|
1389
|
-
if label_offset != UNKNOWN_LABEL_OFFSET {
|
1390
|
-
// If the offset of the label for this fixup is known then
|
1391
|
-
// we're going to do something here-and-now. We're either going
|
1392
|
-
// to patch the original offset because it's an in-bounds jump,
|
1393
|
-
// or we're going to generate a veneer, patch the fixup to jump
|
1394
|
-
// to the veneer, and then keep going.
|
1395
|
-
//
|
1396
|
-
// If the label comes after the original fixup, then we should
|
1397
|
-
// be guaranteed that the jump is in-bounds. Otherwise there's
|
1398
|
-
// a bug somewhere because this method wasn't called soon
|
1399
|
-
// enough. All forward-jumps are tracked and should get veneers
|
1400
|
-
// before their deadline comes and they're unable to jump
|
1401
|
-
// further.
|
1402
|
-
//
|
1403
|
-
// Otherwise if the label is before the fixup, then that's a
|
1404
|
-
// backwards jump. If it's past the maximum negative range
|
1405
|
-
// then we'll emit a veneer that to jump forward to which can
|
1406
|
-
// then jump backwards.
|
1407
|
-
let veneer_required = if label_offset >= offset {
|
1408
|
-
assert!((label_offset - offset) <= kind.max_pos_range());
|
1409
|
-
false
|
1410
|
-
} else {
|
1411
|
-
(offset - label_offset) > kind.max_neg_range()
|
1412
|
-
};
|
1413
|
-
trace!(
|
1414
|
-
" -> label_offset = {}, known, required = {} (pos {} neg {})",
|
1415
|
-
label_offset,
|
1416
|
-
veneer_required,
|
1417
|
-
kind.max_pos_range(),
|
1418
|
-
kind.max_neg_range()
|
1419
|
-
);
|
1420
|
-
|
1421
|
-
if (force_veneers == ForceVeneers::Yes && kind.supports_veneer()) || veneer_required {
|
1422
|
-
self.emit_veneer(label, offset, kind);
|
1423
|
-
} else {
|
1424
|
-
let slice = &mut self.data[start..end];
|
1425
|
-
trace!("patching in-range!");
|
1426
|
-
kind.patch(slice, offset, label_offset);
|
1427
|
-
}
|
1428
|
-
} else {
|
1429
|
-
// If the offset of this label is not known at this time then
|
1430
|
-
// that means that a veneer is required because after this
|
1431
|
-
// island the target can't be in range of the original target.
|
1432
|
-
assert!(forced_threshold - offset > kind.max_pos_range());
|
1433
|
-
self.emit_veneer(label, offset, kind);
|
1434
|
-
}
|
1435
|
-
}
|
1436
|
-
|
1437
|
-
/// Emits a "veneer" the `kind` code at `offset` to jump to `label`.
|
1438
|
-
///
|
1439
|
-
/// This will generate extra machine code, using `kind`, to get a
|
1440
|
-
/// larger-jump-kind than `kind` allows. The code at `offset` is then
|
1441
|
-
/// patched to jump to our new code, and then the new code is enqueued for
|
1442
|
-
/// a fixup to get processed at some later time.
|
1443
|
-
fn emit_veneer(&mut self, label: MachLabel, offset: CodeOffset, kind: I::LabelUse) {
|
1444
|
-
// If this `kind` doesn't support a veneer then that's a bug in the
|
1445
|
-
// backend because we need to implement support for such a veneer.
|
1446
|
-
assert!(
|
1447
|
-
kind.supports_veneer(),
|
1448
|
-
"jump beyond the range of {:?} but a veneer isn't supported",
|
1449
|
-
kind,
|
1450
|
-
);
|
1451
|
-
|
1452
|
-
// Allocate space for a veneer in the island.
|
1453
|
-
self.align_to(I::LabelUse::ALIGN);
|
1454
|
-
let veneer_offset = self.cur_offset();
|
1455
|
-
trace!("making a veneer at {}", veneer_offset);
|
1456
|
-
let start = offset as usize;
|
1457
|
-
let end = (offset + kind.patch_size()) as usize;
|
1458
|
-
let slice = &mut self.data[start..end];
|
1459
|
-
// Patch the original label use to refer to the veneer.
|
1460
|
-
trace!(
|
1461
|
-
"patching original at offset {} to veneer offset {}",
|
1462
|
-
offset,
|
1463
|
-
veneer_offset
|
1464
|
-
);
|
1465
|
-
kind.patch(slice, offset, veneer_offset);
|
1466
|
-
// Generate the veneer.
|
1467
|
-
let veneer_slice = self.get_appended_space(kind.veneer_size() as usize);
|
1468
|
-
let (veneer_fixup_off, veneer_label_use) =
|
1469
|
-
kind.generate_veneer(veneer_slice, veneer_offset);
|
1470
|
-
trace!(
|
1471
|
-
"generated veneer; fixup offset {}, label_use {:?}",
|
1472
|
-
veneer_fixup_off,
|
1473
|
-
veneer_label_use
|
1474
|
-
);
|
1475
|
-
// Register a new use of `label` with our new veneer fixup and
|
1476
|
-
// offset. This'll recalculate deadlines accordingly and
|
1477
|
-
// enqueue this fixup to get processed at some later
|
1478
|
-
// time.
|
1479
|
-
self.use_label_at_offset(veneer_fixup_off, label, veneer_label_use);
|
1480
|
-
}
|
1481
|
-
|
1482
|
-
fn finish_emission_maybe_forcing_veneers(
|
1483
|
-
&mut self,
|
1484
|
-
force_veneers: ForceVeneers,
|
1485
|
-
ctrl_plane: &mut ControlPlane,
|
1486
|
-
) {
|
1487
|
-
while !self.pending_constants.is_empty()
|
1488
|
-
|| !self.pending_traps.is_empty()
|
1489
|
-
|| !self.fixup_records.is_empty()
|
1490
|
-
|| !self.pending_fixup_records.is_empty()
|
1491
|
-
{
|
1492
|
-
// `emit_island()` will emit any pending veneers and constants, and
|
1493
|
-
// as a side-effect, will also take care of any fixups with resolved
|
1494
|
-
// labels eagerly.
|
1495
|
-
self.emit_island_maybe_forced(force_veneers, u32::MAX, ctrl_plane);
|
1496
|
-
}
|
1497
|
-
|
1498
|
-
// Ensure that all labels have been fixed up after the last island is emitted. This is a
|
1499
|
-
// full (release-mode) assert because an unresolved label means the emitted code is
|
1500
|
-
// incorrect.
|
1501
|
-
assert!(self.fixup_records.is_empty());
|
1502
|
-
assert!(self.pending_fixup_records.is_empty());
|
1503
|
-
}
|
1504
|
-
|
1505
|
-
/// Finish any deferred emissions and/or fixups.
|
1506
|
-
pub fn finish(
|
1507
|
-
mut self,
|
1508
|
-
constants: &VCodeConstants,
|
1509
|
-
ctrl_plane: &mut ControlPlane,
|
1510
|
-
) -> MachBufferFinalized<Stencil> {
|
1511
|
-
let _tt = timing::vcode_emit_finish();
|
1512
|
-
|
1513
|
-
self.finish_emission_maybe_forcing_veneers(ForceVeneers::No, ctrl_plane);
|
1514
|
-
|
1515
|
-
let alignment = self.finish_constants(constants);
|
1516
|
-
|
1517
|
-
// Resolve all labels to their offsets.
|
1518
|
-
let finalized_relocs = self
|
1519
|
-
.relocs
|
1520
|
-
.iter()
|
1521
|
-
.map(|reloc| FinalizedMachReloc {
|
1522
|
-
offset: reloc.offset,
|
1523
|
-
kind: reloc.kind,
|
1524
|
-
addend: reloc.addend,
|
1525
|
-
target: match &reloc.target {
|
1526
|
-
RelocTarget::ExternalName(name) => {
|
1527
|
-
FinalizedRelocTarget::ExternalName(name.clone())
|
1528
|
-
}
|
1529
|
-
RelocTarget::Label(label) => {
|
1530
|
-
FinalizedRelocTarget::Func(self.resolve_label_offset(*label))
|
1531
|
-
}
|
1532
|
-
},
|
1533
|
-
})
|
1534
|
-
.collect();
|
1535
|
-
|
1536
|
-
let mut srclocs = self.srclocs;
|
1537
|
-
srclocs.sort_by_key(|entry| entry.start);
|
1538
|
-
|
1539
|
-
MachBufferFinalized {
|
1540
|
-
data: self.data,
|
1541
|
-
relocs: finalized_relocs,
|
1542
|
-
traps: self.traps,
|
1543
|
-
call_sites: self.call_sites,
|
1544
|
-
srclocs,
|
1545
|
-
stack_maps: self.stack_maps,
|
1546
|
-
unwind_info: self.unwind_info,
|
1547
|
-
alignment,
|
1548
|
-
}
|
1549
|
-
}
|
1550
|
-
|
1551
|
-
/// Add an external relocation at the given offset from current offset.
|
1552
|
-
pub fn add_reloc_at_offset<T: Into<RelocTarget> + Clone>(
|
1553
|
-
&mut self,
|
1554
|
-
offset: CodeOffset,
|
1555
|
-
kind: Reloc,
|
1556
|
-
target: &T,
|
1557
|
-
addend: Addend,
|
1558
|
-
) {
|
1559
|
-
let target: RelocTarget = target.clone().into();
|
1560
|
-
// FIXME(#3277): This should use `I::LabelUse::from_reloc` to optionally
|
1561
|
-
// generate a label-use statement to track whether an island is possibly
|
1562
|
-
// needed to escape this function to actually get to the external name.
|
1563
|
-
// This is most likely to come up on AArch64 where calls between
|
1564
|
-
// functions use a 26-bit signed offset which gives +/- 64MB. This means
|
1565
|
-
// that if a function is 128MB in size and there's a call in the middle
|
1566
|
-
// it's impossible to reach the actual target. Also, while it's
|
1567
|
-
// technically possible to jump to the start of a function and then jump
|
1568
|
-
// further, island insertion below always inserts islands after
|
1569
|
-
// previously appended code so for Cranelift's own implementation this
|
1570
|
-
// is also a problem for 64MB functions on AArch64 which start with a
|
1571
|
-
// call instruction, those won't be able to escape.
|
1572
|
-
//
|
1573
|
-
// Ideally what needs to happen here is that a `LabelUse` is
|
1574
|
-
// transparently generated (or call-sites of this function are audited
|
1575
|
-
// to generate a `LabelUse` instead) and tracked internally. The actual
|
1576
|
-
// relocation would then change over time if and when a veneer is
|
1577
|
-
// inserted, where the relocation here would be patched by this
|
1578
|
-
// `MachBuffer` to jump to the veneer. The problem, though, is that all
|
1579
|
-
// this still needs to end up, in the case of a singular function,
|
1580
|
-
// generating a final relocation pointing either to this particular
|
1581
|
-
// relocation or to the veneer inserted. Additionally
|
1582
|
-
// `MachBuffer` needs the concept of a label which will never be
|
1583
|
-
// resolved, so `emit_island` doesn't trip over not actually ever
|
1584
|
-
// knowning what some labels are. Currently the loop in
|
1585
|
-
// `finish_emission_maybe_forcing_veneers` would otherwise infinitely
|
1586
|
-
// loop.
|
1587
|
-
//
|
1588
|
-
// For now this means that because relocs aren't tracked at all that
|
1589
|
-
// AArch64 functions have a rough size limits of 64MB. For now that's
|
1590
|
-
// somewhat reasonable and the failure mode is a panic in `MachBuffer`
|
1591
|
-
// when a relocation can't otherwise be resolved later, so it shouldn't
|
1592
|
-
// actually result in any memory unsafety or anything like that.
|
1593
|
-
self.relocs.push(MachReloc {
|
1594
|
-
offset: self.data.len() as CodeOffset + offset,
|
1595
|
-
kind,
|
1596
|
-
target,
|
1597
|
-
addend,
|
1598
|
-
});
|
1599
|
-
}
|
1600
|
-
|
1601
|
-
/// Add an external relocation at the current offset.
|
1602
|
-
pub fn add_reloc<T: Into<RelocTarget> + Clone>(
|
1603
|
-
&mut self,
|
1604
|
-
kind: Reloc,
|
1605
|
-
target: &T,
|
1606
|
-
addend: Addend,
|
1607
|
-
) {
|
1608
|
-
self.add_reloc_at_offset(0, kind, target, addend);
|
1609
|
-
}
|
1610
|
-
|
1611
|
-
/// Add a trap record at the current offset.
|
1612
|
-
pub fn add_trap(&mut self, code: TrapCode) {
|
1613
|
-
self.traps.push(MachTrap {
|
1614
|
-
offset: self.data.len() as CodeOffset,
|
1615
|
-
code,
|
1616
|
-
});
|
1617
|
-
}
|
1618
|
-
|
1619
|
-
/// Add a call-site record at the current offset.
|
1620
|
-
pub fn add_call_site(&mut self, opcode: Opcode) {
|
1621
|
-
debug_assert!(
|
1622
|
-
opcode.is_call(),
|
1623
|
-
"adding call site info for a non-call instruction."
|
1624
|
-
);
|
1625
|
-
self.call_sites.push(MachCallSite {
|
1626
|
-
ret_addr: self.data.len() as CodeOffset,
|
1627
|
-
opcode,
|
1628
|
-
});
|
1629
|
-
}
|
1630
|
-
|
1631
|
-
/// Add an unwind record at the current offset.
|
1632
|
-
pub fn add_unwind(&mut self, unwind: UnwindInst) {
|
1633
|
-
self.unwind_info.push((self.cur_offset(), unwind));
|
1634
|
-
}
|
1635
|
-
|
1636
|
-
/// Set the `SourceLoc` for code from this offset until the offset at the
|
1637
|
-
/// next call to `end_srcloc()`.
|
1638
|
-
/// Returns the current [CodeOffset] and [RelSourceLoc].
|
1639
|
-
pub fn start_srcloc(&mut self, loc: RelSourceLoc) -> (CodeOffset, RelSourceLoc) {
|
1640
|
-
let cur = (self.cur_offset(), loc);
|
1641
|
-
self.cur_srcloc = Some(cur);
|
1642
|
-
cur
|
1643
|
-
}
|
1644
|
-
|
1645
|
-
/// Mark the end of the `SourceLoc` segment started at the last
|
1646
|
-
/// `start_srcloc()` call.
|
1647
|
-
pub fn end_srcloc(&mut self) {
|
1648
|
-
let (start, loc) = self
|
1649
|
-
.cur_srcloc
|
1650
|
-
.take()
|
1651
|
-
.expect("end_srcloc() called without start_srcloc()");
|
1652
|
-
let end = self.cur_offset();
|
1653
|
-
// Skip zero-length extends.
|
1654
|
-
debug_assert!(end >= start);
|
1655
|
-
if end > start {
|
1656
|
-
self.srclocs.push(MachSrcLoc { start, end, loc });
|
1657
|
-
}
|
1658
|
-
}
|
1659
|
-
|
1660
|
-
/// Add stack map metadata for this program point: a set of stack offsets
|
1661
|
-
/// (from SP upward) that contain live references.
|
1662
|
-
///
|
1663
|
-
/// The `offset_to_fp` value is the offset from the nominal SP (at which the `stack_offsets`
|
1664
|
-
/// are based) and the FP value. By subtracting `offset_to_fp` from each `stack_offsets`
|
1665
|
-
/// element, one can obtain live-reference offsets from FP instead.
|
1666
|
-
pub fn add_stack_map(&mut self, extent: StackMapExtent, stack_map: StackMap) {
|
1667
|
-
let (start, end) = match extent {
|
1668
|
-
StackMapExtent::UpcomingBytes(insn_len) => {
|
1669
|
-
let start_offset = self.cur_offset();
|
1670
|
-
(start_offset, start_offset + insn_len)
|
1671
|
-
}
|
1672
|
-
StackMapExtent::StartedAtOffset(start_offset) => {
|
1673
|
-
let end_offset = self.cur_offset();
|
1674
|
-
debug_assert!(end_offset >= start_offset);
|
1675
|
-
(start_offset, end_offset)
|
1676
|
-
}
|
1677
|
-
};
|
1678
|
-
trace!("Adding stack map for offsets {start:#x}..{end:#x}: {stack_map:?}");
|
1679
|
-
self.stack_maps.push(MachStackMap {
|
1680
|
-
offset: start,
|
1681
|
-
offset_end: end,
|
1682
|
-
stack_map,
|
1683
|
-
});
|
1684
|
-
}
|
1685
|
-
}
|
1686
|
-
|
1687
|
-
impl<T: CompilePhase> MachBufferFinalized<T> {
|
1688
|
-
/// Get a list of source location mapping tuples in sorted-by-start-offset order.
|
1689
|
-
pub fn get_srclocs_sorted(&self) -> &[T::MachSrcLocType] {
|
1690
|
-
&self.srclocs[..]
|
1691
|
-
}
|
1692
|
-
|
1693
|
-
/// Get the total required size for the code.
|
1694
|
-
pub fn total_size(&self) -> CodeOffset {
|
1695
|
-
self.data.len() as CodeOffset
|
1696
|
-
}
|
1697
|
-
|
1698
|
-
/// Return the code in this mach buffer as a hex string for testing purposes.
|
1699
|
-
pub fn stringify_code_bytes(&self) -> String {
|
1700
|
-
// This is pretty lame, but whatever ..
|
1701
|
-
use std::fmt::Write;
|
1702
|
-
let mut s = String::with_capacity(self.data.len() * 2);
|
1703
|
-
for b in &self.data {
|
1704
|
-
write!(&mut s, "{:02X}", b).unwrap();
|
1705
|
-
}
|
1706
|
-
s
|
1707
|
-
}
|
1708
|
-
|
1709
|
-
/// Get the code bytes.
|
1710
|
-
pub fn data(&self) -> &[u8] {
|
1711
|
-
// N.B.: we emit every section into the .text section as far as
|
1712
|
-
// the `CodeSink` is concerned; we do not bother to segregate
|
1713
|
-
// the contents into the actual program text, the jumptable and the
|
1714
|
-
// rodata (constant pool). This allows us to generate code assuming
|
1715
|
-
// that these will not be relocated relative to each other, and avoids
|
1716
|
-
// having to designate each section as belonging in one of the three
|
1717
|
-
// fixed categories defined by `CodeSink`. If this becomes a problem
|
1718
|
-
// later (e.g. because of memory permissions or similar), we can
|
1719
|
-
// add this designation and segregate the output; take care, however,
|
1720
|
-
// to add the appropriate relocations in this case.
|
1721
|
-
|
1722
|
-
&self.data[..]
|
1723
|
-
}
|
1724
|
-
|
1725
|
-
/// Get the list of external relocations for this code.
|
1726
|
-
pub fn relocs(&self) -> &[FinalizedMachReloc] {
|
1727
|
-
&self.relocs[..]
|
1728
|
-
}
|
1729
|
-
|
1730
|
-
/// Get the list of trap records for this code.
|
1731
|
-
pub fn traps(&self) -> &[MachTrap] {
|
1732
|
-
&self.traps[..]
|
1733
|
-
}
|
1734
|
-
|
1735
|
-
/// Get the stack map metadata for this code.
|
1736
|
-
pub fn stack_maps(&self) -> &[MachStackMap] {
|
1737
|
-
&self.stack_maps[..]
|
1738
|
-
}
|
1739
|
-
|
1740
|
-
/// Get the list of call sites for this code.
|
1741
|
-
pub fn call_sites(&self) -> &[MachCallSite] {
|
1742
|
-
&self.call_sites[..]
|
1743
|
-
}
|
1744
|
-
}
|
1745
|
-
|
1746
|
-
/// Metadata about a constant.
|
1747
|
-
struct MachBufferConstant {
|
1748
|
-
/// A label which has not yet been bound which can be used for this
|
1749
|
-
/// constant.
|
1750
|
-
///
|
1751
|
-
/// This is lazily created when a label is requested for a constant and is
|
1752
|
-
/// cleared when a constant is emitted.
|
1753
|
-
upcoming_label: Option<MachLabel>,
|
1754
|
-
/// Required alignment.
|
1755
|
-
align: CodeOffset,
|
1756
|
-
/// The byte size of this constant.
|
1757
|
-
size: usize,
|
1758
|
-
}
|
1759
|
-
|
1760
|
-
/// A trap that is deferred to the next time an island is emitted for either
|
1761
|
-
/// traps, constants, or fixups.
|
1762
|
-
struct MachLabelTrap {
|
1763
|
-
/// This label will refer to the trap's offset.
|
1764
|
-
label: MachLabel,
|
1765
|
-
/// The code associated with this trap.
|
1766
|
-
code: TrapCode,
|
1767
|
-
/// An optional stack map to associate with this trap.
|
1768
|
-
stack_map: Option<StackMap>,
|
1769
|
-
/// An optional source location to assign for this trap.
|
1770
|
-
loc: Option<RelSourceLoc>,
|
1771
|
-
}
|
1772
|
-
|
1773
|
-
/// A fixup to perform on the buffer once code is emitted. Fixups always refer
|
1774
|
-
/// to labels and patch the code based on label offsets. Hence, they are like
|
1775
|
-
/// relocations, but internal to one buffer.
|
1776
|
-
#[derive(Debug)]
|
1777
|
-
struct MachLabelFixup<I: VCodeInst> {
|
1778
|
-
/// The label whose offset controls this fixup.
|
1779
|
-
label: MachLabel,
|
1780
|
-
/// The offset to fix up / patch to refer to this label.
|
1781
|
-
offset: CodeOffset,
|
1782
|
-
/// The kind of fixup. This is architecture-specific; each architecture may have,
|
1783
|
-
/// e.g., several types of branch instructions, each with differently-sized
|
1784
|
-
/// offset fields and different places within the instruction to place the
|
1785
|
-
/// bits.
|
1786
|
-
kind: I::LabelUse,
|
1787
|
-
}
|
1788
|
-
|
1789
|
-
impl<I: VCodeInst> MachLabelFixup<I> {
|
1790
|
-
fn deadline(&self) -> CodeOffset {
|
1791
|
-
self.offset.saturating_add(self.kind.max_pos_range())
|
1792
|
-
}
|
1793
|
-
}
|
1794
|
-
|
1795
|
-
impl<I: VCodeInst> PartialEq for MachLabelFixup<I> {
|
1796
|
-
fn eq(&self, other: &Self) -> bool {
|
1797
|
-
self.deadline() == other.deadline()
|
1798
|
-
}
|
1799
|
-
}
|
1800
|
-
|
1801
|
-
impl<I: VCodeInst> Eq for MachLabelFixup<I> {}
|
1802
|
-
|
1803
|
-
impl<I: VCodeInst> PartialOrd for MachLabelFixup<I> {
|
1804
|
-
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
|
1805
|
-
Some(self.cmp(other))
|
1806
|
-
}
|
1807
|
-
}
|
1808
|
-
|
1809
|
-
impl<I: VCodeInst> Ord for MachLabelFixup<I> {
|
1810
|
-
fn cmp(&self, other: &Self) -> Ordering {
|
1811
|
-
other.deadline().cmp(&self.deadline())
|
1812
|
-
}
|
1813
|
-
}
|
1814
|
-
|
1815
|
-
/// A relocation resulting from a compilation.
|
1816
|
-
#[derive(Clone, Debug, PartialEq)]
|
1817
|
-
#[cfg_attr(
|
1818
|
-
feature = "enable-serde",
|
1819
|
-
derive(serde_derive::Serialize, serde_derive::Deserialize)
|
1820
|
-
)]
|
1821
|
-
pub struct MachRelocBase<T> {
|
1822
|
-
/// The offset at which the relocation applies, *relative to the
|
1823
|
-
/// containing section*.
|
1824
|
-
pub offset: CodeOffset,
|
1825
|
-
/// The kind of relocation.
|
1826
|
-
pub kind: Reloc,
|
1827
|
-
/// The external symbol / name to which this relocation refers.
|
1828
|
-
pub target: T,
|
1829
|
-
/// The addend to add to the symbol value.
|
1830
|
-
pub addend: i64,
|
1831
|
-
}
|
1832
|
-
|
1833
|
-
type MachReloc = MachRelocBase<RelocTarget>;
|
1834
|
-
|
1835
|
-
/// A relocation resulting from a compilation.
|
1836
|
-
pub type FinalizedMachReloc = MachRelocBase<FinalizedRelocTarget>;
|
1837
|
-
|
1838
|
-
/// A Relocation target
|
1839
|
-
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
1840
|
-
pub enum RelocTarget {
|
1841
|
-
/// Points to an [ExternalName] outside the current function.
|
1842
|
-
ExternalName(ExternalName),
|
1843
|
-
/// Points to a [MachLabel] inside this function.
|
1844
|
-
/// This is different from [MachLabelFixup] in that both the relocation and the
|
1845
|
-
/// label will be emitted and are only resolved at link time.
|
1846
|
-
///
|
1847
|
-
/// There is no reason to prefer this over [MachLabelFixup] unless the ABI requires it.
|
1848
|
-
Label(MachLabel),
|
1849
|
-
}
|
1850
|
-
|
1851
|
-
impl From<ExternalName> for RelocTarget {
|
1852
|
-
fn from(name: ExternalName) -> Self {
|
1853
|
-
Self::ExternalName(name)
|
1854
|
-
}
|
1855
|
-
}
|
1856
|
-
|
1857
|
-
impl From<MachLabel> for RelocTarget {
|
1858
|
-
fn from(label: MachLabel) -> Self {
|
1859
|
-
Self::Label(label)
|
1860
|
-
}
|
1861
|
-
}
|
1862
|
-
|
1863
|
-
/// A Relocation target
|
1864
|
-
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
1865
|
-
#[cfg_attr(
|
1866
|
-
feature = "enable-serde",
|
1867
|
-
derive(serde_derive::Serialize, serde_derive::Deserialize)
|
1868
|
-
)]
|
1869
|
-
pub enum FinalizedRelocTarget {
|
1870
|
-
/// Points to an [ExternalName] outside the current function.
|
1871
|
-
ExternalName(ExternalName),
|
1872
|
-
/// Points to a [CodeOffset] from the start of the current function.
|
1873
|
-
Func(CodeOffset),
|
1874
|
-
}
|
1875
|
-
|
1876
|
-
impl FinalizedRelocTarget {
|
1877
|
-
/// Returns a display for the current [FinalizedRelocTarget], with extra context to prettify the
|
1878
|
-
/// output.
|
1879
|
-
pub fn display<'a>(&'a self, params: Option<&'a FunctionParameters>) -> String {
|
1880
|
-
match self {
|
1881
|
-
FinalizedRelocTarget::ExternalName(name) => format!("{}", name.display(params)),
|
1882
|
-
FinalizedRelocTarget::Func(offset) => format!("func+{offset}"),
|
1883
|
-
}
|
1884
|
-
}
|
1885
|
-
}
|
1886
|
-
|
1887
|
-
/// A trap record resulting from a compilation.
|
1888
|
-
#[derive(Clone, Debug, PartialEq)]
|
1889
|
-
#[cfg_attr(
|
1890
|
-
feature = "enable-serde",
|
1891
|
-
derive(serde_derive::Serialize, serde_derive::Deserialize)
|
1892
|
-
)]
|
1893
|
-
pub struct MachTrap {
|
1894
|
-
/// The offset at which the trap instruction occurs, *relative to the
|
1895
|
-
/// containing section*.
|
1896
|
-
pub offset: CodeOffset,
|
1897
|
-
/// The trap code.
|
1898
|
-
pub code: TrapCode,
|
1899
|
-
}
|
1900
|
-
|
1901
|
-
/// A call site record resulting from a compilation.
|
1902
|
-
#[derive(Clone, Debug, PartialEq)]
|
1903
|
-
#[cfg_attr(
|
1904
|
-
feature = "enable-serde",
|
1905
|
-
derive(serde_derive::Serialize, serde_derive::Deserialize)
|
1906
|
-
)]
|
1907
|
-
pub struct MachCallSite {
|
1908
|
-
/// The offset of the call's return address, *relative to the containing section*.
|
1909
|
-
pub ret_addr: CodeOffset,
|
1910
|
-
/// The call's opcode.
|
1911
|
-
pub opcode: Opcode,
|
1912
|
-
}
|
1913
|
-
|
1914
|
-
/// A source-location mapping resulting from a compilation.
|
1915
|
-
#[derive(PartialEq, Debug, Clone)]
|
1916
|
-
#[cfg_attr(
|
1917
|
-
feature = "enable-serde",
|
1918
|
-
derive(serde_derive::Serialize, serde_derive::Deserialize)
|
1919
|
-
)]
|
1920
|
-
pub struct MachSrcLoc<T: CompilePhase> {
|
1921
|
-
/// The start of the region of code corresponding to a source location.
|
1922
|
-
/// This is relative to the start of the function, not to the start of the
|
1923
|
-
/// section.
|
1924
|
-
pub start: CodeOffset,
|
1925
|
-
/// The end of the region of code corresponding to a source location.
|
1926
|
-
/// This is relative to the start of the section, not to the start of the
|
1927
|
-
/// section.
|
1928
|
-
pub end: CodeOffset,
|
1929
|
-
/// The source location.
|
1930
|
-
pub loc: T::SourceLocType,
|
1931
|
-
}
|
1932
|
-
|
1933
|
-
impl MachSrcLoc<Stencil> {
|
1934
|
-
fn apply_base_srcloc(self, base_srcloc: SourceLoc) -> MachSrcLoc<Final> {
|
1935
|
-
MachSrcLoc {
|
1936
|
-
start: self.start,
|
1937
|
-
end: self.end,
|
1938
|
-
loc: self.loc.expand(base_srcloc),
|
1939
|
-
}
|
1940
|
-
}
|
1941
|
-
}
|
1942
|
-
|
1943
|
-
/// Record of stack map metadata: stack offsets containing references.
|
1944
|
-
#[derive(Clone, Debug, PartialEq)]
|
1945
|
-
#[cfg_attr(
|
1946
|
-
feature = "enable-serde",
|
1947
|
-
derive(serde_derive::Serialize, serde_derive::Deserialize)
|
1948
|
-
)]
|
1949
|
-
pub struct MachStackMap {
|
1950
|
-
/// The code offset at which this stack map applies.
|
1951
|
-
pub offset: CodeOffset,
|
1952
|
-
/// The code offset just past the "end" of the instruction: that is, the
|
1953
|
-
/// offset of the first byte of the following instruction, or equivalently,
|
1954
|
-
/// the start offset plus the instruction length.
|
1955
|
-
pub offset_end: CodeOffset,
|
1956
|
-
/// The stack map itself.
|
1957
|
-
pub stack_map: StackMap,
|
1958
|
-
}
|
1959
|
-
|
1960
|
-
/// Record of branch instruction in the buffer, to facilitate editing.
|
1961
|
-
#[derive(Clone, Debug)]
|
1962
|
-
struct MachBranch {
|
1963
|
-
start: CodeOffset,
|
1964
|
-
end: CodeOffset,
|
1965
|
-
target: MachLabel,
|
1966
|
-
fixup: usize,
|
1967
|
-
inverted: Option<SmallVec<[u8; 8]>>,
|
1968
|
-
/// All labels pointing to the start of this branch. For correctness, this
|
1969
|
-
/// *must* be complete (i.e., must contain all labels whose resolved offsets
|
1970
|
-
/// are at the start of this branch): we rely on being able to redirect all
|
1971
|
-
/// labels that could jump to this branch before removing it, if it is
|
1972
|
-
/// otherwise unreachable.
|
1973
|
-
labels_at_this_branch: SmallVec<[MachLabel; 4]>,
|
1974
|
-
}
|
1975
|
-
|
1976
|
-
impl MachBranch {
|
1977
|
-
fn is_cond(&self) -> bool {
|
1978
|
-
self.inverted.is_some()
|
1979
|
-
}
|
1980
|
-
fn is_uncond(&self) -> bool {
|
1981
|
-
self.inverted.is_none()
|
1982
|
-
}
|
1983
|
-
}
|
1984
|
-
|
1985
|
-
/// Implementation of the `TextSectionBuilder` trait backed by `MachBuffer`.
|
1986
|
-
///
|
1987
|
-
/// Note that `MachBuffer` was primarily written for intra-function references
|
1988
|
-
/// of jumps between basic blocks, but it's also quite usable for entire text
|
1989
|
-
/// sections and resolving references between functions themselves. This
|
1990
|
-
/// builder interprets "blocks" as labeled functions for the purposes of
|
1991
|
-
/// resolving labels internally in the buffer.
|
1992
|
-
pub struct MachTextSectionBuilder<I: VCodeInst> {
|
1993
|
-
buf: MachBuffer<I>,
|
1994
|
-
next_func: usize,
|
1995
|
-
force_veneers: ForceVeneers,
|
1996
|
-
}
|
1997
|
-
|
1998
|
-
impl<I: VCodeInst> MachTextSectionBuilder<I> {
|
1999
|
-
/// Creates a new text section builder which will have `num_funcs` functions
|
2000
|
-
/// pushed into it.
|
2001
|
-
pub fn new(num_funcs: usize) -> MachTextSectionBuilder<I> {
|
2002
|
-
let mut buf = MachBuffer::new();
|
2003
|
-
buf.reserve_labels_for_blocks(num_funcs);
|
2004
|
-
MachTextSectionBuilder {
|
2005
|
-
buf,
|
2006
|
-
next_func: 0,
|
2007
|
-
force_veneers: ForceVeneers::No,
|
2008
|
-
}
|
2009
|
-
}
|
2010
|
-
}
|
2011
|
-
|
2012
|
-
impl<I: VCodeInst> TextSectionBuilder for MachTextSectionBuilder<I> {
|
2013
|
-
fn append(
|
2014
|
-
&mut self,
|
2015
|
-
labeled: bool,
|
2016
|
-
func: &[u8],
|
2017
|
-
align: u32,
|
2018
|
-
ctrl_plane: &mut ControlPlane,
|
2019
|
-
) -> u64 {
|
2020
|
-
// Conditionally emit an island if it's necessary to resolve jumps
|
2021
|
-
// between functions which are too far away.
|
2022
|
-
let size = func.len() as u32;
|
2023
|
-
if self.force_veneers == ForceVeneers::Yes || self.buf.island_needed(size) {
|
2024
|
-
self.buf
|
2025
|
-
.emit_island_maybe_forced(self.force_veneers, size, ctrl_plane);
|
2026
|
-
}
|
2027
|
-
|
2028
|
-
self.buf.align_to(align);
|
2029
|
-
let pos = self.buf.cur_offset();
|
2030
|
-
if labeled {
|
2031
|
-
self.buf.bind_label(
|
2032
|
-
MachLabel::from_block(BlockIndex::new(self.next_func)),
|
2033
|
-
ctrl_plane,
|
2034
|
-
);
|
2035
|
-
self.next_func += 1;
|
2036
|
-
}
|
2037
|
-
self.buf.put_data(func);
|
2038
|
-
u64::from(pos)
|
2039
|
-
}
|
2040
|
-
|
2041
|
-
fn resolve_reloc(&mut self, offset: u64, reloc: Reloc, addend: Addend, target: usize) -> bool {
|
2042
|
-
crate::trace!(
|
2043
|
-
"Resolving relocation @ {offset:#x} + {addend:#x} to target {target} of kind {reloc:?}"
|
2044
|
-
);
|
2045
|
-
let label = MachLabel::from_block(BlockIndex::new(target));
|
2046
|
-
let offset = u32::try_from(offset).unwrap();
|
2047
|
-
match I::LabelUse::from_reloc(reloc, addend) {
|
2048
|
-
Some(label_use) => {
|
2049
|
-
self.buf.use_label_at_offset(offset, label, label_use);
|
2050
|
-
true
|
2051
|
-
}
|
2052
|
-
None => false,
|
2053
|
-
}
|
2054
|
-
}
|
2055
|
-
|
2056
|
-
fn force_veneers(&mut self) {
|
2057
|
-
self.force_veneers = ForceVeneers::Yes;
|
2058
|
-
}
|
2059
|
-
|
2060
|
-
fn finish(&mut self, ctrl_plane: &mut ControlPlane) -> Vec<u8> {
|
2061
|
-
// Double-check all functions were pushed.
|
2062
|
-
assert_eq!(self.next_func, self.buf.label_offsets.len());
|
2063
|
-
|
2064
|
-
// Finish up any veneers, if necessary.
|
2065
|
-
self.buf
|
2066
|
-
.finish_emission_maybe_forcing_veneers(self.force_veneers, ctrl_plane);
|
2067
|
-
|
2068
|
-
// We don't need the data any more, so return it to the caller.
|
2069
|
-
mem::take(&mut self.buf.data).into_vec()
|
2070
|
-
}
|
2071
|
-
}
|
2072
|
-
|
2073
|
-
// We use an actual instruction definition to do tests, so we depend on the `arm64` feature here.
|
2074
|
-
#[cfg(all(test, feature = "arm64"))]
|
2075
|
-
mod test {
|
2076
|
-
use cranelift_entity::EntityRef as _;
|
2077
|
-
|
2078
|
-
use super::*;
|
2079
|
-
use crate::ir::UserExternalNameRef;
|
2080
|
-
use crate::isa::aarch64::inst::xreg;
|
2081
|
-
use crate::isa::aarch64::inst::{BranchTarget, CondBrKind, EmitInfo, Inst};
|
2082
|
-
use crate::machinst::{MachInstEmit, MachInstEmitState};
|
2083
|
-
use crate::settings;
|
2084
|
-
|
2085
|
-
fn label(n: u32) -> MachLabel {
|
2086
|
-
MachLabel::from_block(BlockIndex::new(n as usize))
|
2087
|
-
}
|
2088
|
-
fn target(n: u32) -> BranchTarget {
|
2089
|
-
BranchTarget::Label(label(n))
|
2090
|
-
}
|
2091
|
-
|
2092
|
-
#[test]
|
2093
|
-
fn test_elide_jump_to_next() {
|
2094
|
-
let info = EmitInfo::new(settings::Flags::new(settings::builder()));
|
2095
|
-
let mut buf = MachBuffer::new();
|
2096
|
-
let mut state = <Inst as MachInstEmit>::State::default();
|
2097
|
-
let constants = Default::default();
|
2098
|
-
|
2099
|
-
buf.reserve_labels_for_blocks(2);
|
2100
|
-
buf.bind_label(label(0), state.ctrl_plane_mut());
|
2101
|
-
let inst = Inst::Jump { dest: target(1) };
|
2102
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2103
|
-
buf.bind_label(label(1), state.ctrl_plane_mut());
|
2104
|
-
let buf = buf.finish(&constants, state.ctrl_plane_mut());
|
2105
|
-
assert_eq!(0, buf.total_size());
|
2106
|
-
}
|
2107
|
-
|
2108
|
-
#[test]
|
2109
|
-
fn test_elide_trivial_jump_blocks() {
|
2110
|
-
let info = EmitInfo::new(settings::Flags::new(settings::builder()));
|
2111
|
-
let mut buf = MachBuffer::new();
|
2112
|
-
let mut state = <Inst as MachInstEmit>::State::default();
|
2113
|
-
let constants = Default::default();
|
2114
|
-
|
2115
|
-
buf.reserve_labels_for_blocks(4);
|
2116
|
-
|
2117
|
-
buf.bind_label(label(0), state.ctrl_plane_mut());
|
2118
|
-
let inst = Inst::CondBr {
|
2119
|
-
kind: CondBrKind::NotZero(xreg(0)),
|
2120
|
-
taken: target(1),
|
2121
|
-
not_taken: target(2),
|
2122
|
-
};
|
2123
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2124
|
-
|
2125
|
-
buf.bind_label(label(1), state.ctrl_plane_mut());
|
2126
|
-
let inst = Inst::Jump { dest: target(3) };
|
2127
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2128
|
-
|
2129
|
-
buf.bind_label(label(2), state.ctrl_plane_mut());
|
2130
|
-
let inst = Inst::Jump { dest: target(3) };
|
2131
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2132
|
-
|
2133
|
-
buf.bind_label(label(3), state.ctrl_plane_mut());
|
2134
|
-
|
2135
|
-
let buf = buf.finish(&constants, state.ctrl_plane_mut());
|
2136
|
-
assert_eq!(0, buf.total_size());
|
2137
|
-
}
|
2138
|
-
|
2139
|
-
#[test]
|
2140
|
-
fn test_flip_cond() {
|
2141
|
-
let info = EmitInfo::new(settings::Flags::new(settings::builder()));
|
2142
|
-
let mut buf = MachBuffer::new();
|
2143
|
-
let mut state = <Inst as MachInstEmit>::State::default();
|
2144
|
-
let constants = Default::default();
|
2145
|
-
|
2146
|
-
buf.reserve_labels_for_blocks(4);
|
2147
|
-
|
2148
|
-
buf.bind_label(label(0), state.ctrl_plane_mut());
|
2149
|
-
let inst = Inst::CondBr {
|
2150
|
-
kind: CondBrKind::Zero(xreg(0)),
|
2151
|
-
taken: target(1),
|
2152
|
-
not_taken: target(2),
|
2153
|
-
};
|
2154
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2155
|
-
|
2156
|
-
buf.bind_label(label(1), state.ctrl_plane_mut());
|
2157
|
-
let inst = Inst::Nop4;
|
2158
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2159
|
-
|
2160
|
-
buf.bind_label(label(2), state.ctrl_plane_mut());
|
2161
|
-
let inst = Inst::Udf {
|
2162
|
-
trap_code: TrapCode::Interrupt,
|
2163
|
-
};
|
2164
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2165
|
-
|
2166
|
-
buf.bind_label(label(3), state.ctrl_plane_mut());
|
2167
|
-
|
2168
|
-
let buf = buf.finish(&constants, state.ctrl_plane_mut());
|
2169
|
-
|
2170
|
-
let mut buf2 = MachBuffer::new();
|
2171
|
-
let mut state = Default::default();
|
2172
|
-
let inst = Inst::TrapIf {
|
2173
|
-
kind: CondBrKind::NotZero(xreg(0)),
|
2174
|
-
trap_code: TrapCode::Interrupt,
|
2175
|
-
};
|
2176
|
-
inst.emit(&[], &mut buf2, &info, &mut state);
|
2177
|
-
let inst = Inst::Nop4;
|
2178
|
-
inst.emit(&[], &mut buf2, &info, &mut state);
|
2179
|
-
|
2180
|
-
let buf2 = buf2.finish(&constants, state.ctrl_plane_mut());
|
2181
|
-
|
2182
|
-
assert_eq!(buf.data, buf2.data);
|
2183
|
-
}
|
2184
|
-
|
2185
|
-
#[test]
|
2186
|
-
fn test_island() {
|
2187
|
-
let info = EmitInfo::new(settings::Flags::new(settings::builder()));
|
2188
|
-
let mut buf = MachBuffer::new();
|
2189
|
-
let mut state = <Inst as MachInstEmit>::State::default();
|
2190
|
-
let constants = Default::default();
|
2191
|
-
|
2192
|
-
buf.reserve_labels_for_blocks(4);
|
2193
|
-
|
2194
|
-
buf.bind_label(label(0), state.ctrl_plane_mut());
|
2195
|
-
let inst = Inst::CondBr {
|
2196
|
-
kind: CondBrKind::NotZero(xreg(0)),
|
2197
|
-
taken: target(2),
|
2198
|
-
not_taken: target(3),
|
2199
|
-
};
|
2200
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2201
|
-
|
2202
|
-
buf.bind_label(label(1), state.ctrl_plane_mut());
|
2203
|
-
while buf.cur_offset() < 2000000 {
|
2204
|
-
if buf.island_needed(0) {
|
2205
|
-
buf.emit_island(0, state.ctrl_plane_mut());
|
2206
|
-
}
|
2207
|
-
let inst = Inst::Nop4;
|
2208
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2209
|
-
}
|
2210
|
-
|
2211
|
-
buf.bind_label(label(2), state.ctrl_plane_mut());
|
2212
|
-
let inst = Inst::Nop4;
|
2213
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2214
|
-
|
2215
|
-
buf.bind_label(label(3), state.ctrl_plane_mut());
|
2216
|
-
let inst = Inst::Nop4;
|
2217
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2218
|
-
|
2219
|
-
let buf = buf.finish(&constants, state.ctrl_plane_mut());
|
2220
|
-
|
2221
|
-
assert_eq!(2000000 + 8, buf.total_size());
|
2222
|
-
|
2223
|
-
let mut buf2 = MachBuffer::new();
|
2224
|
-
let mut state = Default::default();
|
2225
|
-
let inst = Inst::CondBr {
|
2226
|
-
kind: CondBrKind::NotZero(xreg(0)),
|
2227
|
-
|
2228
|
-
// This conditionally taken branch has a 19-bit constant, shifted
|
2229
|
-
// to the left by two, giving us a 21-bit range in total. Half of
|
2230
|
-
// this range positive so the we should be around 1 << 20 bytes
|
2231
|
-
// away for our jump target.
|
2232
|
-
//
|
2233
|
-
// There are two pending fixups by the time we reach this point,
|
2234
|
-
// one for this 19-bit jump and one for the unconditional 26-bit
|
2235
|
-
// jump below. A 19-bit veneer is 4 bytes large and the 26-bit
|
2236
|
-
// veneer is 20 bytes large, which means that pessimistically
|
2237
|
-
// assuming we'll need two veneers. Currently each veneer is
|
2238
|
-
// pessimistically assumed to be the maximal size which means we
|
2239
|
-
// need 40 bytes of extra space, meaning that the actual island
|
2240
|
-
// should come 40-bytes before the deadline.
|
2241
|
-
taken: BranchTarget::ResolvedOffset((1 << 20) - 20 - 20),
|
2242
|
-
|
2243
|
-
// This branch is in-range so no veneers should be needed, it should
|
2244
|
-
// go directly to the target.
|
2245
|
-
not_taken: BranchTarget::ResolvedOffset(2000000 + 4 - 4),
|
2246
|
-
};
|
2247
|
-
inst.emit(&[], &mut buf2, &info, &mut state);
|
2248
|
-
|
2249
|
-
let buf2 = buf2.finish(&constants, state.ctrl_plane_mut());
|
2250
|
-
|
2251
|
-
assert_eq!(&buf.data[0..8], &buf2.data[..]);
|
2252
|
-
}
|
2253
|
-
|
2254
|
-
#[test]
|
2255
|
-
fn test_island_backward() {
|
2256
|
-
let info = EmitInfo::new(settings::Flags::new(settings::builder()));
|
2257
|
-
let mut buf = MachBuffer::new();
|
2258
|
-
let mut state = <Inst as MachInstEmit>::State::default();
|
2259
|
-
let constants = Default::default();
|
2260
|
-
|
2261
|
-
buf.reserve_labels_for_blocks(4);
|
2262
|
-
|
2263
|
-
buf.bind_label(label(0), state.ctrl_plane_mut());
|
2264
|
-
let inst = Inst::Nop4;
|
2265
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2266
|
-
|
2267
|
-
buf.bind_label(label(1), state.ctrl_plane_mut());
|
2268
|
-
let inst = Inst::Nop4;
|
2269
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2270
|
-
|
2271
|
-
buf.bind_label(label(2), state.ctrl_plane_mut());
|
2272
|
-
while buf.cur_offset() < 2000000 {
|
2273
|
-
let inst = Inst::Nop4;
|
2274
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2275
|
-
}
|
2276
|
-
|
2277
|
-
buf.bind_label(label(3), state.ctrl_plane_mut());
|
2278
|
-
let inst = Inst::CondBr {
|
2279
|
-
kind: CondBrKind::NotZero(xreg(0)),
|
2280
|
-
taken: target(0),
|
2281
|
-
not_taken: target(1),
|
2282
|
-
};
|
2283
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2284
|
-
|
2285
|
-
let buf = buf.finish(&constants, state.ctrl_plane_mut());
|
2286
|
-
|
2287
|
-
assert_eq!(2000000 + 12, buf.total_size());
|
2288
|
-
|
2289
|
-
let mut buf2 = MachBuffer::new();
|
2290
|
-
let mut state = Default::default();
|
2291
|
-
let inst = Inst::CondBr {
|
2292
|
-
kind: CondBrKind::NotZero(xreg(0)),
|
2293
|
-
taken: BranchTarget::ResolvedOffset(8),
|
2294
|
-
not_taken: BranchTarget::ResolvedOffset(4 - (2000000 + 4)),
|
2295
|
-
};
|
2296
|
-
inst.emit(&[], &mut buf2, &info, &mut state);
|
2297
|
-
let inst = Inst::Jump {
|
2298
|
-
dest: BranchTarget::ResolvedOffset(-(2000000 + 8)),
|
2299
|
-
};
|
2300
|
-
inst.emit(&[], &mut buf2, &info, &mut state);
|
2301
|
-
|
2302
|
-
let buf2 = buf2.finish(&constants, state.ctrl_plane_mut());
|
2303
|
-
|
2304
|
-
assert_eq!(&buf.data[2000000..], &buf2.data[..]);
|
2305
|
-
}
|
2306
|
-
|
2307
|
-
#[test]
|
2308
|
-
fn test_multiple_redirect() {
|
2309
|
-
// label0:
|
2310
|
-
// cbz x0, label1
|
2311
|
-
// b label2
|
2312
|
-
// label1:
|
2313
|
-
// b label3
|
2314
|
-
// label2:
|
2315
|
-
// nop
|
2316
|
-
// nop
|
2317
|
-
// b label0
|
2318
|
-
// label3:
|
2319
|
-
// b label4
|
2320
|
-
// label4:
|
2321
|
-
// b label5
|
2322
|
-
// label5:
|
2323
|
-
// b label7
|
2324
|
-
// label6:
|
2325
|
-
// nop
|
2326
|
-
// label7:
|
2327
|
-
// ret
|
2328
|
-
//
|
2329
|
-
// -- should become:
|
2330
|
-
//
|
2331
|
-
// label0:
|
2332
|
-
// cbz x0, label7
|
2333
|
-
// label2:
|
2334
|
-
// nop
|
2335
|
-
// nop
|
2336
|
-
// b label0
|
2337
|
-
// label6:
|
2338
|
-
// nop
|
2339
|
-
// label7:
|
2340
|
-
// ret
|
2341
|
-
|
2342
|
-
let info = EmitInfo::new(settings::Flags::new(settings::builder()));
|
2343
|
-
let mut buf = MachBuffer::new();
|
2344
|
-
let mut state = <Inst as MachInstEmit>::State::default();
|
2345
|
-
let constants = Default::default();
|
2346
|
-
|
2347
|
-
buf.reserve_labels_for_blocks(8);
|
2348
|
-
|
2349
|
-
buf.bind_label(label(0), state.ctrl_plane_mut());
|
2350
|
-
let inst = Inst::CondBr {
|
2351
|
-
kind: CondBrKind::Zero(xreg(0)),
|
2352
|
-
taken: target(1),
|
2353
|
-
not_taken: target(2),
|
2354
|
-
};
|
2355
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2356
|
-
|
2357
|
-
buf.bind_label(label(1), state.ctrl_plane_mut());
|
2358
|
-
let inst = Inst::Jump { dest: target(3) };
|
2359
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2360
|
-
|
2361
|
-
buf.bind_label(label(2), state.ctrl_plane_mut());
|
2362
|
-
let inst = Inst::Nop4;
|
2363
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2364
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2365
|
-
let inst = Inst::Jump { dest: target(0) };
|
2366
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2367
|
-
|
2368
|
-
buf.bind_label(label(3), state.ctrl_plane_mut());
|
2369
|
-
let inst = Inst::Jump { dest: target(4) };
|
2370
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2371
|
-
|
2372
|
-
buf.bind_label(label(4), state.ctrl_plane_mut());
|
2373
|
-
let inst = Inst::Jump { dest: target(5) };
|
2374
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2375
|
-
|
2376
|
-
buf.bind_label(label(5), state.ctrl_plane_mut());
|
2377
|
-
let inst = Inst::Jump { dest: target(7) };
|
2378
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2379
|
-
|
2380
|
-
buf.bind_label(label(6), state.ctrl_plane_mut());
|
2381
|
-
let inst = Inst::Nop4;
|
2382
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2383
|
-
|
2384
|
-
buf.bind_label(label(7), state.ctrl_plane_mut());
|
2385
|
-
let inst = Inst::Ret {};
|
2386
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2387
|
-
|
2388
|
-
let buf = buf.finish(&constants, state.ctrl_plane_mut());
|
2389
|
-
|
2390
|
-
let golden_data = vec![
|
2391
|
-
0xa0, 0x00, 0x00, 0xb4, // cbz x0, 0x14
|
2392
|
-
0x1f, 0x20, 0x03, 0xd5, // nop
|
2393
|
-
0x1f, 0x20, 0x03, 0xd5, // nop
|
2394
|
-
0xfd, 0xff, 0xff, 0x17, // b 0
|
2395
|
-
0x1f, 0x20, 0x03, 0xd5, // nop
|
2396
|
-
0xc0, 0x03, 0x5f, 0xd6, // ret
|
2397
|
-
];
|
2398
|
-
|
2399
|
-
assert_eq!(&golden_data[..], &buf.data[..]);
|
2400
|
-
}
|
2401
|
-
|
2402
|
-
#[test]
|
2403
|
-
fn test_handle_branch_cycle() {
|
2404
|
-
// label0:
|
2405
|
-
// b label1
|
2406
|
-
// label1:
|
2407
|
-
// b label2
|
2408
|
-
// label2:
|
2409
|
-
// b label3
|
2410
|
-
// label3:
|
2411
|
-
// b label4
|
2412
|
-
// label4:
|
2413
|
-
// b label1 // note: not label0 (to make it interesting).
|
2414
|
-
//
|
2415
|
-
// -- should become:
|
2416
|
-
//
|
2417
|
-
// label0, label1, ..., label4:
|
2418
|
-
// b label0
|
2419
|
-
let info = EmitInfo::new(settings::Flags::new(settings::builder()));
|
2420
|
-
let mut buf = MachBuffer::new();
|
2421
|
-
let mut state = <Inst as MachInstEmit>::State::default();
|
2422
|
-
let constants = Default::default();
|
2423
|
-
|
2424
|
-
buf.reserve_labels_for_blocks(5);
|
2425
|
-
|
2426
|
-
buf.bind_label(label(0), state.ctrl_plane_mut());
|
2427
|
-
let inst = Inst::Jump { dest: target(1) };
|
2428
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2429
|
-
|
2430
|
-
buf.bind_label(label(1), state.ctrl_plane_mut());
|
2431
|
-
let inst = Inst::Jump { dest: target(2) };
|
2432
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2433
|
-
|
2434
|
-
buf.bind_label(label(2), state.ctrl_plane_mut());
|
2435
|
-
let inst = Inst::Jump { dest: target(3) };
|
2436
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2437
|
-
|
2438
|
-
buf.bind_label(label(3), state.ctrl_plane_mut());
|
2439
|
-
let inst = Inst::Jump { dest: target(4) };
|
2440
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2441
|
-
|
2442
|
-
buf.bind_label(label(4), state.ctrl_plane_mut());
|
2443
|
-
let inst = Inst::Jump { dest: target(1) };
|
2444
|
-
inst.emit(&[], &mut buf, &info, &mut state);
|
2445
|
-
|
2446
|
-
let buf = buf.finish(&constants, state.ctrl_plane_mut());
|
2447
|
-
|
2448
|
-
let golden_data = vec![
|
2449
|
-
0x00, 0x00, 0x00, 0x14, // b 0
|
2450
|
-
];
|
2451
|
-
|
2452
|
-
assert_eq!(&golden_data[..], &buf.data[..]);
|
2453
|
-
}
|
2454
|
-
|
2455
|
-
#[test]
|
2456
|
-
fn metadata_records() {
|
2457
|
-
let mut buf = MachBuffer::<Inst>::new();
|
2458
|
-
let ctrl_plane = &mut Default::default();
|
2459
|
-
let constants = Default::default();
|
2460
|
-
|
2461
|
-
buf.reserve_labels_for_blocks(1);
|
2462
|
-
|
2463
|
-
buf.bind_label(label(0), ctrl_plane);
|
2464
|
-
buf.put1(1);
|
2465
|
-
buf.add_trap(TrapCode::HeapOutOfBounds);
|
2466
|
-
buf.put1(2);
|
2467
|
-
buf.add_trap(TrapCode::IntegerOverflow);
|
2468
|
-
buf.add_trap(TrapCode::IntegerDivisionByZero);
|
2469
|
-
buf.add_call_site(Opcode::Call);
|
2470
|
-
buf.add_reloc(
|
2471
|
-
Reloc::Abs4,
|
2472
|
-
&ExternalName::User(UserExternalNameRef::new(0)),
|
2473
|
-
0,
|
2474
|
-
);
|
2475
|
-
buf.put1(3);
|
2476
|
-
buf.add_reloc(
|
2477
|
-
Reloc::Abs8,
|
2478
|
-
&ExternalName::User(UserExternalNameRef::new(1)),
|
2479
|
-
1,
|
2480
|
-
);
|
2481
|
-
buf.put1(4);
|
2482
|
-
|
2483
|
-
let buf = buf.finish(&constants, ctrl_plane);
|
2484
|
-
|
2485
|
-
assert_eq!(buf.data(), &[1, 2, 3, 4]);
|
2486
|
-
assert_eq!(
|
2487
|
-
buf.traps()
|
2488
|
-
.iter()
|
2489
|
-
.map(|trap| (trap.offset, trap.code))
|
2490
|
-
.collect::<Vec<_>>(),
|
2491
|
-
vec![
|
2492
|
-
(1, TrapCode::HeapOutOfBounds),
|
2493
|
-
(2, TrapCode::IntegerOverflow),
|
2494
|
-
(2, TrapCode::IntegerDivisionByZero)
|
2495
|
-
]
|
2496
|
-
);
|
2497
|
-
assert_eq!(
|
2498
|
-
buf.call_sites()
|
2499
|
-
.iter()
|
2500
|
-
.map(|call_site| (call_site.ret_addr, call_site.opcode))
|
2501
|
-
.collect::<Vec<_>>(),
|
2502
|
-
vec![(2, Opcode::Call)]
|
2503
|
-
);
|
2504
|
-
assert_eq!(
|
2505
|
-
buf.relocs()
|
2506
|
-
.iter()
|
2507
|
-
.map(|reloc| (reloc.offset, reloc.kind))
|
2508
|
-
.collect::<Vec<_>>(),
|
2509
|
-
vec![(2, Reloc::Abs4), (3, Reloc::Abs8)]
|
2510
|
-
);
|
2511
|
-
}
|
2512
|
-
}
|